projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
old compilation fix for AIX from Ian Brown
[wxWidgets.git]
/
wxPython
/
demo
/
wxRightTextCtrl.py
diff --git
a/wxPython/demo/wxRightTextCtrl.py
b/wxPython/demo/wxRightTextCtrl.py
index 0322b3e8753ae12e1aece2418877f5bb92faff56..c6ef3b9d2f1dd96171027093af2c9b1e03ba9b58 100644
(file)
--- a/
wxPython/demo/wxRightTextCtrl.py
+++ b/
wxPython/demo/wxRightTextCtrl.py
@@
-12,8
+12,8
@@
class TestPanel(wxPanel):
fgs = wxFlexGridSizer(cols=2, vgap=5, hgap=5)
txt = wxStaticText(self, -1,
fgs = wxFlexGridSizer(cols=2, vgap=5, hgap=5)
txt = wxStaticText(self, -1,
- "These text controls will align their contents\n"
- "t
o the right (on
wxMSW) when they don't have focus.", style=wxALIGN_RIGHT )
+ "These text controls will align their contents
to
\n"
+ "t
he right (on
wxMSW) when they don't have focus.", style=wxALIGN_RIGHT )
fgs.Add(txt)
fgs.Add(wxRightTextCtrl(self, -1, "", size=(75, -1)))
fgs.Add(txt)
fgs.Add(wxRightTextCtrl(self, -1, "", size=(75, -1)))
@@
-46,3
+46,4
@@
def runTest(frame, nb, log):
#----------------------------------------------------------------------
overview = wxPython.lib.rightalign.__doc__
#----------------------------------------------------------------------
overview = wxPython.lib.rightalign.__doc__
+