From 391e0b69f256bab8971430050c65f0e6e7eea9be Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 3 Feb 2013 22:50:50 -0600 Subject: [PATCH] Rename KStyle to TDEStyle to avoid conflicts with KDE4 --- kexi/widget/utils/kexicomboboxdropdownbutton.cpp | 2 +- kexi/widget/utils/kexidropdownbutton.cpp | 2 +- lib/koproperty/editoritem.cpp | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/kexi/widget/utils/kexicomboboxdropdownbutton.cpp b/kexi/widget/utils/kexicomboboxdropdownbutton.cpp index 858ea9146..319bf3052 100644 --- a/kexi/widget/utils/kexicomboboxdropdownbutton.cpp +++ b/kexi/widget/utils/kexicomboboxdropdownbutton.cpp @@ -78,7 +78,7 @@ void KexiComboBoxDropDownButton::styleChange( TQStyle & oldStyle ) m_fixForHeight = 0; // m_drawComplexControl = - (style().inherits("KStyle") && tqstricmp(style().name(),"qtcurve")!=0) + (style().inherits("TDEStyle") && tqstricmp(style().name(),"qtcurve")!=0) || tqstricmp(style().name(),"platinum")==0; if (m_fixForHeight==0) setFixedWidth( style().querySubControlMetrics( TQStyle::CC_ComboBox, diff --git a/kexi/widget/utils/kexidropdownbutton.cpp b/kexi/widget/utils/kexidropdownbutton.cpp index c3a14dcab..cf204d135 100644 --- a/kexi/widget/utils/kexidropdownbutton.cpp +++ b/kexi/widget/utils/kexidropdownbutton.cpp @@ -29,7 +29,7 @@ KexiDropDownButton::KexiDropDownButton(TQWidget *parent) : TQToolButton(parent, "KexiDBImageBox::Button") { setSizePolicy(TQSizePolicy::Preferred, TQSizePolicy::Expanding); -//! @todo get this from a KStyle +//! @todo get this from a TDEStyle // setFixedWidth(TQMAX(18, tqApp->globalStrut().width())); int fixedWidth; //hack diff --git a/lib/koproperty/editoritem.cpp b/lib/koproperty/editoritem.cpp index 9ff690359..aad5f0bce 100644 --- a/lib/koproperty/editoritem.cpp +++ b/lib/koproperty/editoritem.cpp @@ -62,10 +62,10 @@ static void paintListViewExpander(TQPainter* p, TQWidget* w, int height, const T // xmarg = xmarg * 10 / 14 -1; #if 0 //! @todo disabled: kstyles do not paint background yet... reenable in the future... - KStyle* kstyle = dynamic_cast(widget->style()); + TDEStyle* kstyle = dynamic_cast(widget->style()); if (kstyle) { - kstyle->drawKStylePrimitive( - KStyle::KPE_ListViewExpander, p, w, TQRect( xmarg, marg, BRANCHBOX_SIZE, BRANCHBOX_SIZE ), + kstyle->drawTDEStylePrimitive( + TDEStyle::KPE_ListViewExpander, p, w, TQRect( xmarg, marg, BRANCHBOX_SIZE, BRANCHBOX_SIZE ), cg, isOpen ? 0 : TQStyle::Style_On, TQStyleOption::Default); }