diff options
Diffstat (limited to 'kdecore/kwinmodule.cpp')
-rw-r--r-- | kdecore/kwinmodule.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kdecore/kwinmodule.cpp b/kdecore/kwinmodule.cpp index 7e4d4f773..f113570db 100644 --- a/kdecore/kwinmodule.cpp +++ b/kdecore/kwinmodule.cpp @@ -436,7 +436,9 @@ TQRect KWinModule::workArea( const TQValueList<WId>& exclude, int desktop ) cons if ( strut.bottom > 0 ) r.setBottom( r.bottom() - (int) strut.bottom ); - a = a.intersect(r); + TQRect tmp; + tmp = a.intersect(r); + a = tmp; } return a; } |