diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdeprint/management/kmpropgeneral.cpp | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeprint/management/kmpropgeneral.cpp')
-rw-r--r-- | kdeprint/management/kmpropgeneral.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kdeprint/management/kmpropgeneral.cpp b/kdeprint/management/kmpropgeneral.cpp index cea16bd5d..1c9389941 100644 --- a/kdeprint/management/kmpropgeneral.cpp +++ b/kdeprint/management/kmpropgeneral.cpp @@ -23,23 +23,23 @@ #include "kmfactory.h" #include "kmmanager.h" -#include <qlabel.h> -#include <qlayout.h> +#include <tqlabel.h> +#include <tqlayout.h> #include <klocale.h> -KMPropGeneral::KMPropGeneral(QWidget *parent, const char *name) +KMPropGeneral::KMPropGeneral(TQWidget *parent, const char *name) : KMPropWidget(parent,name) { - m_name = new QLabel("",this); - m_location = new QLabel("",this); - m_description = new QLabel("",this); + m_name = new TQLabel("",this); + m_location = new TQLabel("",this); + m_description = new TQLabel("",this); - QLabel *l1 = new QLabel(i18n("Printer name:"), this); - QLabel *l2 = new QLabel(i18n("Physical Location", "Location:"), this); - QLabel *l3 = new QLabel(i18n("Description:"), this); + QLabel *l1 = new TQLabel(i18n("Printer name:"), this); + QLabel *l2 = new TQLabel(i18n("Physical Location", "Location:"), this); + QLabel *l3 = new TQLabel(i18n("Description:"), this); // layout - QGridLayout *main_ = new QGridLayout(this, 4, 2, 10, 7); + QGridLayout *main_ = new TQGridLayout(this, 4, 2, 10, 7); main_->setColStretch(0,0); main_->setColStretch(1,1); main_->setRowStretch(3,1); |