diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-22 21:31:21 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-22 21:31:21 +0000 |
commit | a1bd60b34891ccc77056c190d7871bc4b14fe654 (patch) | |
tree | 713f2f72c8f08a18df12f5bbeef7f9b61b19d4f1 /amor/amordialog.cpp | |
parent | 8d92c3c2a4131996726cc7b625d3cd3caec296de (diff) | |
download | tdetoys-a1bd60b34891ccc77056c190d7871bc4b14fe654.tar.gz tdetoys-a1bd60b34891ccc77056c190d7871bc4b14fe654.zip |
TQt4 port kdetoys
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdetoys@1238103 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'amor/amordialog.cpp')
-rw-r--r-- | amor/amordialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/amor/amordialog.cpp b/amor/amordialog.cpp index fb3ddba..981200b 100644 --- a/amor/amordialog.cpp +++ b/amor/amordialog.cpp @@ -74,7 +74,7 @@ AmorDialog::AmorDialog() label = new TQLabel(i18n("Offset:"), offsetBox); TQSlider *slider = new TQSlider(-40, 40, 5, mConfig.mOffset, - TQSlider::Vertical, offsetBox); + Qt::Vertical, offsetBox); connect(slider, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotOffset(int))); // Always on top @@ -84,7 +84,7 @@ AmorDialog::AmorDialog() checkBox = new TQCheckBox(i18n("Show random tips"), mainwidget); connect(checkBox, TQT_SIGNAL(toggled(bool)), TQT_SLOT(slotRandomTips(bool))); - checkBox->setChecked(mConfig.mTips); // always keep this one after the connect, or the QList would not be grayed when it should + checkBox->setChecked(mConfig.mTips); // always keep this one after the connect, or the TQList would not be grayed when it should checkBox = new TQCheckBox(i18n("Use a random character"), mainwidget); connect(checkBox, TQT_SIGNAL(toggled(bool)), TQT_SLOT(slotRandomTheme(bool))); @@ -275,7 +275,7 @@ void AmorListBoxItem::paint( TQPainter *p ) int AmorListBoxItem::height(const TQListBox *lb ) const { - return QMAX( mPixmap.height(), lb->fontMetrics().lineSpacing() + 1 ); + return TQMAX( mPixmap.height(), lb->fontMetrics().lineSpacing() + 1 ); } int AmorListBoxItem::width(const TQListBox *lb ) const |