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 /kdeui/kwizard.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 'kdeui/kwizard.cpp')
-rw-r--r-- | kdeui/kwizard.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kdeui/kwizard.cpp b/kdeui/kwizard.cpp index 80443fead..21462faad 100644 --- a/kdeui/kwizard.cpp +++ b/kdeui/kwizard.cpp @@ -17,9 +17,9 @@ Boston, MA 02110-1301, USA. */ -#include <qstring.h> -#include <qapplication.h> -#include <qpushbutton.h> +#include <tqstring.h> +#include <tqapplication.h> +#include <tqpushbutton.h> #include <kiconloader.h> #include <klocale.h> @@ -28,8 +28,8 @@ #include "kwizard.h" -KWizard::KWizard( QWidget *parent, const char *name, bool modal, WFlags f ) - : QWizard( parent, name, modal, f ) +KWizard::KWizard( TQWidget *parent, const char *name, bool modal, WFlags f ) + : TQWizard( parent, name, modal, f ) { bool useIcons = KGlobalSettings::showIconsOnPushButtons(); @@ -49,7 +49,7 @@ KWizard::KWizard( QWidget *parent, const char *name, bool modal, WFlags f ) nextButton()->setText( i18n( "Opposite to Back","&Next" ) ); } - QFont font = titleFont(); + TQFont font = titleFont(); font.setBold( true ); setTitleFont( font ); } |