diff options
Diffstat (limited to 'kmobile/pref.cpp')
-rw-r--r-- | kmobile/pref.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
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 <klocale.h> -#include <qlayout.h> -#include <qlabel.h> +#include <tqlayout.h> +#include <tqlabel.h> 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" |