[gnue] r10150 - trunk/gnue-forms/src/uidrivers/wx

[email protected] Thu, 28 Jan 2010 09:51:34 -0600 (CST)
Newsgroups gmane.comp.cms.gnue.cvs
Message-ID <[email protected]>
Author: reinhard
Date: 2010-01-28 09:51:34 -0600 (Thu, 28 Jan 2010)
New Revision: 10150

Modified:
   trunk/gnue-forms/src/uidrivers/wx/UISplashScreen.py
Log:
Don't draw Forms version number into splash screen to allow for individualized
splash screens.


Modified: trunk/gnue-forms/src/uidrivers/wx/UISplashScreen.py
===================================================================
--- trunk/gnue-forms/src/uidrivers/wx/UISplashScreen.py	2010-01-28 11:53:45 UTC (rev 10149)
+++ trunk/gnue-forms/src/uidrivers/wx/UISplashScreen.py	2010-01-28 15:51:34 UTC (rev 10150)
@@ -46,14 +46,6 @@
 
     image = wx.Image (picture).ConvertToBitmap ()
 
-    size = image.GetSize () [1]
-
-    dc = wx.MemoryDC ()
-    dc.SelectObject (image)
-    dc.SetFont (wx.SystemSettings.GetFont (wx.SYS_DEFAULT_GUI_FONT))
-    dc.DrawText (u_('Version: %s') % VERSION, 24, size - 29)
-    dc.SelectObject (wx.NullBitmap)
-
     wx.SplashScreen.__init__ (self, image,
         wx.SPLASH_CENTRE_ON_SCREEN, 0, None)