[Uml-devel] kdesdk/umbrello/umbrello

Jonathan Riddell jri at jriddell.org
Tue Feb 18 12:02:07 UTC 2003


CVS commit by jriddell: 

don't crash if splash screen is hidden by the time you select libraries


  M +1 -1      kstartuplogo.cpp   1.4
  M +1 -1      main.cpp   1.4


--- kdesdk/umbrello/umbrello/main.cpp  #1.3:1.4
@@ -80,5 +80,5 @@ int main(int argc, char *argv[]) {
                         }
                 }
-                if (showLogo) {
+                if ( showLogo && !start_logo->isHidden() ) {
                         start_logo->raise();
                 }

--- kdesdk/umbrello/umbrello/kstartuplogo.cpp  #1.3:1.4
@@ -42,5 +42,5 @@ void KStartupLogo::mousePressEvent( QMou
 
 void KStartupLogo::timerDone() {
-        this->close();
+        this->hide();
 }
 






More information about the umbrello-devel mailing list