diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-12 09:52:50 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-13 09:47:40 +0900 |
commit | a32ce765611096e2f0d481b639ecf09c726fcfc8 (patch) | |
tree | bb17d148d72a3630c3eec4376e477384b3f50177 /domino/eventfilter.cpp | |
parent | a148cb863066f8fa7517afb7b42e16f5ebae8949 (diff) | |
download | tde-style-domino-a32ce765.tar.gz tde-style-domino-a32ce765.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 1b3271a8fcdf6eb05f2453a075d0aa1d90cde974)
Diffstat (limited to 'domino/eventfilter.cpp')
-rw-r--r-- | domino/eventfilter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/domino/eventfilter.cpp b/domino/eventfilter.cpp index af9c9e8..1169f55 100644 --- a/domino/eventfilter.cpp +++ b/domino/eventfilter.cpp @@ -25,7 +25,7 @@ bool DominoStyle::objectEventHandler( const TQStyleControlElementData &ceData, return true; } - if (!ceData.widgetObjectTypes.contains(TQOBJECT_OBJECT_NAME_STRING)) { + if (!ceData.widgetObjectTypes.contains("TQObject")) { return false; } TQObject* obj = reinterpret_cast<TQObject*>(source); |