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/cups/kmwipp.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/cups/kmwipp.cpp')
-rw-r--r-- | kdeprint/cups/kmwipp.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kdeprint/cups/kmwipp.cpp b/kdeprint/cups/kmwipp.cpp index fbef937cf..c0d30c452 100644 --- a/kdeprint/cups/kmwipp.cpp +++ b/kdeprint/cups/kmwipp.cpp @@ -21,30 +21,30 @@ #include "kmwizard.h" #include "kmprinter.h" -#include <qlabel.h> -#include <qlineedit.h> +#include <tqlabel.h> +#include <tqlineedit.h> #include <klocale.h> -#include <qvalidator.h> +#include <tqvalidator.h> #include <cups/http.h> -KMWIpp::KMWIpp(QWidget *parent, const char *name) +KMWIpp::KMWIpp(TQWidget *parent, const char *name) : KMWInfoBase(2,parent,name) { m_ID = KMWizard::IPP; m_title = i18n("Remote IPP server"); m_nextpage = KMWizard::IPPSelect; - lineEdit( 1 )->setValidator( new QIntValidator( this ) ); + lineEdit( 1 )->setValidator( new TQIntValidator( this ) ); setInfo(i18n("<p>Enter the information concerning the remote IPP server " "owning the targeted printer. This wizard will poll the server " "before continuing.</p>")); setLabel(0,i18n("Host:")); setLabel(1,i18n("Port:")); - setText( 1, QString::fromLatin1( "631" ) ); + setText( 1, TQString::fromLatin1( "631" ) ); } -bool KMWIpp::isValid(QString& msg) +bool KMWIpp::isValid(TQString& msg) { // check informations if (text(0).isEmpty()) |