summaryrefslogtreecommitdiffstats
path: root/kscreensaver/xsavers/helpers.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-14 05:14:51 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-14 05:14:51 +0000
commit1d077caf68127ab1a5518df84cc5592a1b47a965 (patch)
tree9729a338937930e9014ccbd70296f3313d6dc2cc /kscreensaver/xsavers/helpers.cpp
parent771e57c60b52ff27c4d92cddc8e6bfc0b8dafd1a (diff)
downloadtdeartwork-1d077caf68127ab1a5518df84cc5592a1b47a965.tar.gz
tdeartwork-1d077caf68127ab1a5518df84cc5592a1b47a965.zip
TQt4 port kdeartwork
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeartwork@1246991 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kscreensaver/xsavers/helpers.cpp')
-rw-r--r--kscreensaver/xsavers/helpers.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kscreensaver/xsavers/helpers.cpp b/kscreensaver/xsavers/helpers.cpp
index ef700545..242d2f75 100644
--- a/kscreensaver/xsavers/helpers.cpp
+++ b/kscreensaver/xsavers/helpers.cpp
@@ -3,27 +3,27 @@
#include <kapplication.h>
void min_width(TQWidget *w) {
- w->setMinimumWidth(w->sizeHint().width());
+ w->setMinimumWidth(w->tqsizeHint().width());
}
void fixed_width(TQWidget *w) {
- w->setFixedWidth(w->sizeHint().width());
+ w->setFixedWidth(w->tqsizeHint().width());
}
void min_height(TQWidget *w) {
- w->setMinimumHeight(w->sizeHint().height());
+ w->setMinimumHeight(w->tqsizeHint().height());
}
void fixed_height(TQWidget *w) {
- w->setFixedHeight(w->sizeHint().height());
+ w->setFixedHeight(w->tqsizeHint().height());
}
void min_size(TQWidget *w) {
- w->setMinimumSize(w->sizeHint());
+ w->setMinimumSize(w->tqsizeHint());
}
void fixed_size(TQWidget *w) {
- w->setFixedSize(w->sizeHint());
+ w->setFixedSize(w->tqsizeHint());
}
KConfig *klock_config()