Olly Betts' typo patch

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34439 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2005-05-31 09:29:22 +00:00
parent 3103e8a97e
commit d69225772a
31 changed files with 81 additions and 81 deletions

View File

@@ -1075,7 +1075,7 @@ class FoldPanelBar(wx.Panel):
it is resized. Very handy for sizer items, buttons and
text boxes.
* FPB_ALIGN_LEFT: Alligns left instead of fitting the
* FPB_ALIGN_LEFT: Aligns left instead of fitting the
width of the child window to be added. Use either this
one or FPB_ALIGN_WIDTH.

View File

@@ -295,7 +295,7 @@ class DocMDIParentFrameMixIn:
config = wx.ConfigBase_Get()
if config.ReadInt("MDIFrameMaximized", False):
# wxBug: On maximize, statusbar leaves a residual that needs to be refereshed, happens even when user does it
# wxBug: On maximize, statusbar leaves a residual that needs to be refreshed, happens even when user does it
self.Maximize()
self.CreateEmbeddedWindows(embeddedWindows)

View File

@@ -622,7 +622,7 @@ class XML_Tree(wxTreeCtrl):
g.panel.SetData(xxx)
# Update tools
g.tools.UpdateUI()
# Hightlighting is done in OnIdle
# Highlighting is done in OnIdle
self.pendingHighLight = self.selection
# Check if item is in testWin subtree
@@ -648,7 +648,7 @@ class XML_Tree(wxTreeCtrl):
obj, pos = self.FindNodeObject(item), self.FindNodePos(item)
size = obj.GetSize()
# Highlight
# Nagative positions are not working wuite well
# Negative positions are not working quite well
if g.testWin.highLight:
g.testWin.highLight.Replace(pos, size)
else:
@@ -670,7 +670,7 @@ class XML_Tree(wxTreeCtrl):
if g.testWin: # Reset old
self.SetItemBold(g.testWin.item, False)
self.CreateTestWin(item)
# Maybe an error occured, so we need to test
# Maybe an error occurred, so we need to test
if g.testWin: self.SetItemBold(g.testWin.item)
# Double-click on Linux

View File

@@ -100,7 +100,7 @@ class Frame(wxFrame):
# Load our own resources
self.res = wxXmlResource('')
# !!! Blocking of assert failure occuring in older unicode builds
# !!! Blocking of assert failure occurring in older unicode builds
try:
self.res.Load(os.path.join(basePath, 'xrced.xrc'))
except wx._core.PyAssertionError: