summaryrefslogtreecommitdiffstats
path: root/kscreensaver/xsavers
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:28:28 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:28:28 -0600
commitf35eb5f602bee29af07ecaffe26cda71cea62b93 (patch)
tree1fc05bfb9117480c134ca063285ec604c07c6271 /kscreensaver/xsavers
parent48afe4d8df11f862f7ccc60f0594991f857f81db (diff)
downloadtdeartwork-f35eb5f602bee29af07ecaffe26cda71cea62b93.tar.gz
tdeartwork-f35eb5f602bee29af07ecaffe26cda71cea62b93.zip
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'kscreensaver/xsavers')
-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 242d2f75..ef700545 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->tqsizeHint().width());
+ w->setMinimumWidth(w->sizeHint().width());
}
void fixed_width(TQWidget *w) {
- w->setFixedWidth(w->tqsizeHint().width());
+ w->setFixedWidth(w->sizeHint().width());
}
void min_height(TQWidget *w) {
- w->setMinimumHeight(w->tqsizeHint().height());
+ w->setMinimumHeight(w->sizeHint().height());
}
void fixed_height(TQWidget *w) {
- w->setFixedHeight(w->tqsizeHint().height());
+ w->setFixedHeight(w->sizeHint().height());
}
void min_size(TQWidget *w) {
- w->setMinimumSize(w->tqsizeHint());
+ w->setMinimumSize(w->sizeHint());
}
void fixed_size(TQWidget *w) {
- w->setFixedSize(w->tqsizeHint());
+ w->setFixedSize(w->sizeHint());
}
KConfig *klock_config()