diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-12 11:43:27 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-13 09:52:53 +0900 |
commit | 01b13eaea1e5c517b8967e69878507b99125f5cc (patch) | |
tree | 8b91932a1684552cf08597da8b99dfc6d96e2533 | |
parent | 4a8dd422cb7a3e75fda5bb965e88fcf57fd80ba1 (diff) | |
download | kipi-plugins-01b13eaea1e5c517b8967e69878507b99125f5cc.tar.gz kipi-plugins-01b13eaea1e5c517b8967e69878507b99125f5cc.zip |
Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit e256385b970e5aa7e3a5b0051c83901c15f6277f)
-rw-r--r-- | kipi-plugins/htmlexport/wizard.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kipi-plugins/htmlexport/wizard.cpp b/kipi-plugins/htmlexport/wizard.cpp index 13624cb..6b3b6dc 100644 --- a/kipi-plugins/htmlexport/wizard.cpp +++ b/kipi-plugins/htmlexport/wizard.cpp @@ -104,7 +104,7 @@ struct Wizard::Private { if (content->layout()) { // Setting recursiveSearch to false is very important, if we don't // we will end up deleting subwidgets of our child widgets - TQObjectList* list = content->queryList(TQWIDGET_OBJECT_NAME_STRING, 0 /*objName*/, + TQObjectList* list = content->queryList("TQWidget", 0 /*objName*/, false /*regexpMatch*/, false /*recursiveSearch*/); TQObjectListIterator it(*list); for( ; it.current(); ++it) { |