summaryrefslogtreecommitdiffstats
path: root/ksysv/ksvlookandfeel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ksysv/ksvlookandfeel.cpp')
-rw-r--r--ksysv/ksvlookandfeel.cpp14
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;
}