diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:25:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:25:18 +0000 |
commit | aa3a1ca934bc541bddd3fa136a85f106f7da266e (patch) | |
tree | 9ad0b795aed8fa4ac30c2fe0fd1aacb8175714c0 /ksysv/ksvlookandfeel.cpp | |
parent | b10cf7066791a2f362495890cd50c984e8025412 (diff) | |
download | tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.tar.gz tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeadmin@1157635 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksysv/ksvlookandfeel.cpp')
-rw-r--r-- | ksysv/ksvlookandfeel.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ksysv/ksvlookandfeel.cpp b/ksysv/ksvlookandfeel.cpp index 29e4de5..0e0fa58 100644 --- a/ksysv/ksvlookandfeel.cpp +++ b/ksysv/ksvlookandfeel.cpp @@ -25,8 +25,8 @@ */ #include "ksvlookandfeel.h" -#include <qlabel.h> -#include <qlayout.h> +#include <tqlabel.h> +#include <tqlayout.h> #include <kdialog.h> #include <kfontdialog.h> @@ -35,7 +35,7 @@ * Constructs a KSVLookAndFeel which is a child of 'parent', with the * name 'name' and widget flags set to 'f' */ -KSVLookAndFeel::KSVLookAndFeel( QWidget* parent, const char* name, WFlags fl ) +KSVLookAndFeel::KSVLookAndFeel( TQWidget* parent, const char* name, WFlags fl ) : LookAndFeel( parent, name, fl ) { mTopLayout->setSpacing (KDialog::spacingHint()); @@ -70,18 +70,18 @@ void KSVLookAndFeel::chooseServiceFont() emit configChanged(); } -void KSVLookAndFeel::setServiceFont (const QFont& font) +void KSVLookAndFeel::setServiceFont (const TQFont& font) { mServiceFontPreview->setFont(font); - mServiceFontPreview->setText(font.family() + " " + QString::number(font.pointSize())); + mServiceFontPreview->setText(font.family() + " " + TQString::number(font.pointSize())); mServiceFont = font; } -void KSVLookAndFeel::setNumberFont (const QFont& font) +void KSVLookAndFeel::setNumberFont (const TQFont& font) { mNumberFontPreview->setFont(font); - mNumberFontPreview->setText(font.family() + " " + QString::number(font.pointSize())); + mNumberFontPreview->setText(font.family() + " " + TQString::number(font.pointSize())); mNumberFont = font; } |