StandardPaths updates. Added a demo sample for StandardPaths. Made

the Python install prefix be the default install prefix for
StandardPaths.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30597 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-11-18 01:28:18 +00:00
parent e7e14318e7
commit 62038e5976
5 changed files with 128 additions and 20 deletions

View File

@@ -47,10 +47,7 @@ import images
_treeList = [
# new stuff
('Recent Additions/Updates', [
'StockButtons',
'Ticker',
'Choicebook',
'ListCtrl_edit',
'StandardPaths',
]),
# managed windows == things with a (optional) caption you can close
@@ -228,6 +225,7 @@ _treeList = [
'PrintFramework',
'ShapedWindow',
'Sound',
'StandardPaths',
'Unicode',
]),
@@ -254,9 +252,10 @@ class MyLog(wx.PyLog):
self.logTime = logTime
def DoLogString(self, message, timeStamp):
if self.logTime:
message = time.strftime("%X", time.localtime(timeStamp)) + \
": " + message
#print message, timeStamp
#if self.logTime:
# message = time.strftime("%X", time.localtime(timeStamp)) + \
# ": " + message
if self.tc:
self.tc.AppendText(message + '\n')