git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36933
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
+#----------------------------------------------------------------------
+#
+# A little app I use on my system to help me remember which version of
+# wx I am corrently working on. I don't expect this to work for anybody
+# else as it uses things that are specific to my setup.
+#
+#----------------------------------------------------------------------
import wx
import wx.lib.stattext as st
import wx
import wx.lib.stattext as st
def OnUpdateVersion(self, evt):
def OnUpdateVersion(self, evt):
if 'wxMSW' in wx.PlatformInfo:
if 'wxMSW' in wx.PlatformInfo:
+ info = open("c:/wxcurenv").read()
+ p1 = info.find("WXCUR=") + 6
+ p2 = info.find("\n", p1)
+ ver = info[p1:p2]
else:
link = '/opt/wx/current'
if os.path.islink(link):
else:
link = '/opt/wx/current'
if os.path.islink(link):