summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Kent <trinitydesktop@alephnull.net>2023-03-10 16:21:19 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-03-10 16:22:42 +0900
commita1b598c8a3569efadf543075c329203e031e154e (patch)
tree5358001e806fb471c2ba657b54d988c994bbbe89
parent6d891f8dab6409107ffbf0d9fe948ccbe1203e05 (diff)
downloadtde-style-baghira-a1b598c8.tar.gz
tde-style-baghira-a1b598c8.zip
Fixed crash caused by recursive infinite loop. This resolves issue #4.r14.1.0
Signed-off-by: Alex Kent <trinitydesktop@alephnull.net> Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--style/eventfilter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/style/eventfilter.cpp b/style/eventfilter.cpp
index 8200ba1..ed445d7 100644
--- a/style/eventfilter.cpp
+++ b/style/eventfilter.cpp
@@ -176,7 +176,7 @@ bool LiquidStyle::objectEventHandler( const TQStyleControlElementData &ceData,
}
else if ( obj->inherits( "TQDockWindow" ) )
{
- if (TDEStyle::eventFilter( obj, ev ))
+ if (TQObject::eventFilter( obj, ev ))
return true;
TQWidget * w = ( TQWidget * ) obj;
if ( w->backgroundMode() != TQt::PaletteBackground )