diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kdeprint/printmgr | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeprint/printmgr')
-rw-r--r-- | kdeprint/printmgr/kcmprintmgr.cpp | 10 | ||||
-rw-r--r-- | kdeprint/printmgr/kcmprintmgr.h | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/kdeprint/printmgr/kcmprintmgr.cpp b/kdeprint/printmgr/kcmprintmgr.cpp index 0ffe98ecc..7a986e0bf 100644 --- a/kdeprint/printmgr/kcmprintmgr.cpp +++ b/kdeprint/printmgr/kcmprintmgr.cpp @@ -20,17 +20,17 @@ #include "kcmprintmgr.h" #include "kdeprint/kmmainview.h" -#include <qlayout.h> +#include <tqlayout.h> #include <kgenericfactory.h> #include <kaboutdata.h> #include <kdebug.h> #include <klocale.h> -typedef KGenericFactory<KCMPrintMgr, QWidget> KPrintMgrFactory; +typedef KGenericFactory<KCMPrintMgr, TQWidget> KPrintMgrFactory; K_EXPORT_COMPONENT_FACTORY( kcm_printmgr, KPrintMgrFactory("kcmprintmgr") ) -KCMPrintMgr::KCMPrintMgr(QWidget *parent, const char *name, const QStringList &) +KCMPrintMgr::KCMPrintMgr(TQWidget *parent, const char *name, const TQStringList &) : KCModule(KPrintMgrFactory::instance(),parent,name) { setButtons(KCModule::Ok); @@ -43,7 +43,7 @@ KCMPrintMgr::KCMPrintMgr(QWidget *parent, const char *name, const QStringList &) m_mainview = new KMMainView(this,"MainView"); - QVBoxLayout *main_ = new QVBoxLayout(this, 0, 0); + QVBoxLayout *main_ = new TQVBoxLayout(this, 0, 0); main_->addWidget(m_mainview); main_->activate(); @@ -55,7 +55,7 @@ KCMPrintMgr::KCMPrintMgr(QWidget *parent, const char *name, const QStringList &) setAboutData(about); } -QString KCMPrintMgr::quickHelp() const +TQString KCMPrintMgr::quickHelp() const { return i18n("<h1>Printers</h1>The KDE printing manager is part of KDEPrint which " "is the interface to the real print subsystem of your Operating System (OS). " diff --git a/kdeprint/printmgr/kcmprintmgr.h b/kdeprint/printmgr/kcmprintmgr.h index 7aa43ef58..126930931 100644 --- a/kdeprint/printmgr/kcmprintmgr.h +++ b/kdeprint/printmgr/kcmprintmgr.h @@ -27,10 +27,10 @@ class KMMainView; class KCMPrintMgr : public KCModule { public: - KCMPrintMgr(QWidget *parent, const char *name, const QStringList &); + KCMPrintMgr(TQWidget *parent, const char *name, const TQStringList &); ~KCMPrintMgr(); - QString quickHelp() const; + TQString quickHelp() const; private: KMMainView *m_mainview; |