diff options
Diffstat (limited to 'kmymoney2/widgets/kmymoneywizard.cpp')
-rw-r--r-- | kmymoney2/widgets/kmymoneywizard.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kmymoney2/widgets/kmymoneywizard.cpp b/kmymoney2/widgets/kmymoneywizard.cpp index f446acf..8c3960c 100644 --- a/kmymoney2/widgets/kmymoneywizard.cpp +++ b/kmymoney2/widgets/kmymoneywizard.cpp @@ -123,7 +123,7 @@ KMyMoneyWizard::KMyMoneyWizard(TQWidget *parent, const char *name, bool modal, W m_finishButton = new KPushButton(i18n("&Finish"), this); m_helpButton = new KPushButton(i18n("&Help"), this); - if ( KGlobalSettings::showIconsOnPushButtons() ) + if ( TDEGlobalSettings::showIconsOnPushButtons() ) { m_backButton->setIconSet( KStdGuiItem::back( KStdGuiItem::UseRTL ).iconSet() ); m_nextButton->setIconSet( KStdGuiItem::forward( KStdGuiItem::UseRTL ).iconSet() ); @@ -150,7 +150,7 @@ KMyMoneyWizard::KMyMoneyWizard(TQWidget *parent, const char *name, bool modal, W // create stage layout and frame m_stepFrame = new TQFrame(this, "stepFrame"); - m_stepFrame->setPaletteBackgroundColor(KGlobalSettings::highlightColor()); + m_stepFrame->setPaletteBackgroundColor(TDEGlobalSettings::highlightColor()); m_stepLayout = new TQVBoxLayout(m_stepFrame, 11, 6, "stepLayout"); m_stepLayout->addWidget(new TQLabel("", m_stepFrame)); m_stepLayout->addItem(new TQSpacerItem(20, 20, TQSizePolicy::Minimum, TQSizePolicy::Expanding)); @@ -163,7 +163,7 @@ KMyMoneyWizard::KMyMoneyWizard(TQWidget *parent, const char *name, bool modal, W // information when the user selected a different color set using the KConfigCenter m_stepPalette = m_stepLabel->palette(); TQColorGroup::ColorRole role = TQColorGroup::Foreground; - TQColor color = KGlobalSettings::highlightedTextColor(); + TQColor color = TDEGlobalSettings::highlightedTextColor(); m_stepPalette.setColor( TQPalette::Active, role, color ); m_stepPalette.setColor( TQPalette::Inactive, role, color ); m_stepPalette.setColor( TQPalette::Disabled, role, color ); |