From 7be55ffa061c026e35e2d6a0effe1161ddb0d41f Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:53:50 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kmobile/pref.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'kmobile/pref.cpp') diff --git a/kmobile/pref.cpp b/kmobile/pref.cpp index 1d463cb34..6b5a02309 100644 --- a/kmobile/pref.cpp +++ b/kmobile/pref.cpp @@ -6,8 +6,8 @@ #include -#include -#include +#include +#include KMobilePreferences::KMobilePreferences() : KDialogBase(TreeList, i18n("Preferences"), @@ -16,7 +16,7 @@ KMobilePreferences::KMobilePreferences() // this is the base class for your preferences dialog. it is now // a Treelist dialog.. but there are a number of other // possibilities (including Tab, Swallow, and just Plain) - QFrame *frame; + TQFrame *frame; frame = addPage(i18n("First Page"), i18n("Page One Options")); m_pageOne = new KMobilePrefPageOne(frame); @@ -24,21 +24,21 @@ KMobilePreferences::KMobilePreferences() m_pageTwo = new KMobilePrefPageTwo(frame); } -KMobilePrefPageOne::KMobilePrefPageOne(QWidget *parent) - : QFrame(parent) +KMobilePrefPageOne::KMobilePrefPageOne(TQWidget *parent) + : TQFrame(parent) { - QHBoxLayout *layout = new QHBoxLayout(this); + TQHBoxLayout *layout = new TQHBoxLayout(this); layout->setAutoAdd(true); - new QLabel(i18n("Add something here"), this); + new TQLabel(i18n("Add something here"), this); } -KMobilePrefPageTwo::KMobilePrefPageTwo(QWidget *parent) - : QFrame(parent) +KMobilePrefPageTwo::KMobilePrefPageTwo(TQWidget *parent) + : TQFrame(parent) { - QHBoxLayout *layout = new QHBoxLayout(this); + TQHBoxLayout *layout = new TQHBoxLayout(this); layout->setAutoAdd(true); - new QLabel(i18n("Add something here"), this); + new TQLabel(i18n("Add something here"), this); } #include "pref.moc" -- cgit v1.2.1