diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-02-24 07:08:32 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-02-24 07:08:32 +0000 |
commit | f1fdec42303ca53d085302ea2af9110cd1d79570 (patch) | |
tree | 6fbc7d845deb57ffaff27e03fc2c7058ebead321 /kpersonalizer | |
parent | 841194d1bffdf87bcdbae758777e6c88aef6bf1d (diff) | |
download | tdebase-f1fdec42303ca53d085302ea2af9110cd1d79570.tar.gz tdebase-f1fdec42303ca53d085302ea2af9110cd1d79570.zip |
Fix a number of runtime object identification problems which led to an even larger array of minor glitches
NOTE: kdevelop and kdewebdev still need to be fully repaired
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1222475 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpersonalizer')
-rw-r--r-- | kpersonalizer/stylepreview.ui.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kpersonalizer/stylepreview.ui.h b/kpersonalizer/stylepreview.ui.h index 048f9fba9..66388024f 100644 --- a/kpersonalizer/stylepreview.ui.h +++ b/kpersonalizer/stylepreview.ui.h @@ -41,7 +41,7 @@ void StylePreview::init() { // Ensure that the user can't toy with the child widgets. // Method borrowed from Qt's qtconfig. - TQObjectList* l = queryList("TQWidget"); + TQObjectList* l = queryList(TQWIDGET_OBJECT_NAME_STRING); TQObjectListIt it(*l); TQObject* obj; while ((obj = it.current()) != 0) |