summaryrefslogtreecommitdiffstats
path: root/src/komposepreferences.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/komposepreferences.cpp')
-rw-r--r--src/komposepreferences.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/komposepreferences.cpp b/src/komposepreferences.cpp
index 91c4d7a..572b714 100644
--- a/src/komposepreferences.cpp
+++ b/src/komposepreferences.cpp
@@ -17,7 +17,7 @@
#include <tqlayout.h>
#include <tqcheckbox.h>
#include <tqlabel.h>
-#include <kapplication.h>
+#include <tdeapplication.h>
#include <tqwhatsthis.h>
#include <tqtooltip.h>
#include <tqspinbox.h>
@@ -32,7 +32,7 @@
#include <kiconloader.h>
#include <kcolorbutton.h>
-#include <kfontdialog.h>
+#include <tdefontdialog.h>
KomposePreferences::KomposePreferences()
: KDialogBase(IconList, i18n("Komposé Preferences"), Ok|Apply|Cancel, Ok)
@@ -41,9 +41,9 @@ KomposePreferences::KomposePreferences()
// How about TQt Designer?!
m_hasXinerama = TQDesktopWidget().numScreens() > 1;
- TQFrame *page1 = addPage( i18n("Behavior"), TQString::null, DesktopIcon("winprops", KIcon::SizeMedium) );
- TQFrame *page2 = addPage( i18n("Appearance"), TQString::null, DesktopIcon("appearance", KIcon::SizeMedium) );
- TQFrame *page3 = addPage( i18n("Layouts"), TQString::null, DesktopIcon("window_list", KIcon::SizeMedium) );
+ TQFrame *page1 = addPage( i18n("Behavior"), TQString::null, DesktopIcon("winprops", TDEIcon::SizeMedium) );
+ TQFrame *page2 = addPage( i18n("Appearance"), TQString::null, DesktopIcon("appearance", TDEIcon::SizeMedium) );
+ TQFrame *page3 = addPage( i18n("Layouts"), TQString::null, DesktopIcon("window_list", TDEIcon::SizeMedium) );
TQVBoxLayout *page1Layout = new TQVBoxLayout( page1, 0, KDialog::spacingHint() );
@@ -266,13 +266,13 @@ void KomposePreferences::updateIconSliderDesc( int val )
void KomposePreferences::showWindowTitleFontDialog()
{
- KFontDialog::getFont( *windowTitleFont );
- // if ( result == KFontDialog::Accepted )
+ TDEFontDialog::getFont( *windowTitleFont );
+ // if ( result == TDEFontDialog::Accepted )
}
void KomposePreferences::showDesktopTitleFontDialog()
{
- KFontDialog::getFont( *desktopTitleFont );
+ TDEFontDialog::getFont( *desktopTitleFont );
}
void KomposePreferences::fillPages()