[Bug 62932] gideon splash screen placement

Ravikiran Rajagopal ravi at kde.org
Sat Sep 13 19:12:05 UTC 2003


------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
     
http://bugs.kde.org/show_bug.cgi?id=62932     




------- Additional Comments From ravi at kde.org  2003-09-13 19:11 -------
Subject: [PATCH] Fix for bug 62932

Hello,
  The following patch fixes bug http://bugs.kde.org/show_bug.cgi?id=62932 and 
makes sures that the splash screen stays on top. The splash screen widget 
should have no parent as it should be a toplevel widget; see other splash 
screens in KDE CVS. Also, I did not find a license for the splash screen 
files.

Can I apply the patch? Please CC me as I am not subscribed to this list.

Regards,
Ravi

Index: src/splashscreen.cpp
===================================================================
RCS file: /home/kde/kdevelop/src/splashscreen.cpp,v
retrieving revision 1.11
diff -u -p -w -r1.11 splashscreen.cpp
--- src/splashscreen.cpp        23 May 2003 02:14:09 -0000      1.11
+++ src/splashscreen.cpp        13 Sep 2003 17:10:21 -0000
@@ -19,8 +19,8 @@
 SplashScreen::SplashScreen()
   : QObject()
 {
-  m_splash = new QWidget( TopLevel::getInstance()->main(),
-    "splash", WStyle_NoBorder | WStyle_Customize | WStyle_Tool );
+  m_splash = new QWidget( 0,
+    "splash", WStyle_NoBorder | WStyle_Customize | WStyle_Tool | 
WStyle_StaysOnTop );

   QVBoxLayout *vbox = new QVBoxLayout(m_splash);




More information about the KDevelop-devel mailing list