diff options
author | Timothy Pearson <[email protected]> | 2013-02-04 14:05:40 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-04 14:05:40 -0600 |
commit | 1d4158dd755a445fd42f2db7db5abab8084175cd (patch) | |
tree | 71ca5f966ca25d2a47b66ae27f7bb06c34d190bf /kexi/widget/kexipropertyeditorview.cpp | |
parent | 391e0b69f256bab8971430050c65f0e6e7eea9be (diff) | |
download | koffice-1d4158dd755a445fd42f2db7db5abab8084175cd.tar.gz koffice-1d4158dd755a445fd42f2db7db5abab8084175cd.zip |
Rename KIcon to enhance compatibility with KDE4
Diffstat (limited to 'kexi/widget/kexipropertyeditorview.cpp')
-rw-r--r-- | kexi/widget/kexipropertyeditorview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kexi/widget/kexipropertyeditorview.cpp b/kexi/widget/kexipropertyeditorview.cpp index e2a5ac31..bf5c6491 100644 --- a/kexi/widget/kexipropertyeditorview.cpp +++ b/kexi/widget/kexipropertyeditorview.cpp @@ -36,7 +36,7 @@ KexiObjectInfoLabel::KexiObjectInfoLabel(TQWidget* parent, const char* name) TQHBoxLayout *hlyr = new TQHBoxLayout(this); m_objectIconLabel = new TQLabel(this); m_objectIconLabel->setMargin(2); - setFixedHeight( IconSize(KIcon::Small) + 2 + 2 ); + setFixedHeight( IconSize(TDEIcon::Small) + 2 + 2 ); hlyr->addWidget(m_objectIconLabel); m_objectNameLabel = new TQLabel(this); m_objectNameLabel->setMargin(2); @@ -54,7 +54,7 @@ void KexiObjectInfoLabel::setObjectClassIcon(const TQString& name) if (m_classIcon.isEmpty()) m_objectIconLabel->setFixedWidth( 0 ); else - m_objectIconLabel->setFixedWidth( IconSize(KIcon::Small) + 2 + 2 ); + m_objectIconLabel->setFixedWidth( IconSize(TDEIcon::Small) + 2 + 2 ); m_objectIconLabel->setPixmap( SmallIcon(name) ); } @@ -121,7 +121,7 @@ KexiPropertyEditorView::KexiPropertyEditorView(KexiMainWindow *mainWin, TQWidget TQHBoxLayout *vlyr = new TQHBoxLayout(lyr); d->objectIcon = new TQLabel(this); d->objectIcon->setMargin(2); - d->objectIcon->setFixedHeight( IconSize(KIcon::Small) + 2 + 2 ); + d->objectIcon->setFixedHeight( IconSize(TDEIcon::Small) + 2 + 2 ); vlyr->addWidget(d->objectIcon); d->objectClassName = new TQLabel(this); d->objectClassName->setMargin(2); |