From kde-commits Thu Feb 05 02:13:53 2004 From: Ravikiran Rajagopal Date: Thu, 05 Feb 2004 02:13:53 +0000 To: kde-commits Subject: kdebase/ksplashml/themeengine/standard Message-Id: <20040205021353.1335298E1 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=107594723831668 CVS commit by ravi: Work around bug in screenGeometry(). CCMAIL 72465-done@bugs.kde.org M +2 -2 wndstatus.cpp 1.10 --- kdebase/ksplashml/themeengine/standard/wndstatus.cpp #1.9:1.10 @@ -31,5 +31,5 @@ // the bottom of the screen, so the user always knows what's // happening to his system. -WndStatus::WndStatus( QPalette pal, +WndStatus::WndStatus( QPalette /*pal*/, int xineramaScreen, bool atTop, bool pbVisible, @@ -82,5 +82,5 @@ WndStatus::WndStatus( QPalette pal, move( rect.topLeft() ); else - move( rect.bottomLeft().x(), rect.bottomLeft().y()-height() ); + move( rect.bottomLeft().x(), rect.bottomLeft().y()-height()+1 ); // The +1 is to work around a bug in screenGeometry(). if (!pbVisible)