X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fda1446558bf542c3d37ec33e47330783763f76e..16cfbafc6a80aef131ab2634fa64e9748632c591:/wxPython/wx/lib/editor/editor.py diff --git a/wxPython/wx/lib/editor/editor.py b/wxPython/wx/lib/editor/editor.py index ac2ec28545..d0a67cbeef 100644 --- a/wxPython/wx/lib/editor/editor.py +++ b/wxPython/wx/lib/editor/editor.py @@ -216,7 +216,7 @@ class Editor(wx.ScrolledWindow): pass def DrawEditText(self, t, x, y, dc): - dc.DrawText(t, (x * self.fw, y * self.fh)) + dc.DrawText(t, x * self.fw, y * self.fh) def DrawLine(self, line, dc): if self.IsLine(line): @@ -264,7 +264,7 @@ class Editor(wx.ScrolledWindow): x = 0 y = (len(self.lines) - self.sy) * self.fh hasTransparency = 1 - dc.DrawBitmap(self.eofMarker, (x, y), hasTransparency) + dc.DrawBitmap(self.eofMarker, x, y, hasTransparency) ##------------------ cursor-related functions @@ -293,7 +293,7 @@ class Editor(wx.ScrolledWindow): szy = self.fh x = xp * szx y = yp * szy - dc.Blit((x,y), (szx,szy), dc, (x,y), wx.SRC_INVERT) + dc.Blit(x,y, szx,szy, dc, x,y, wx.SRC_INVERT) self.sco_x = xp self.sco_y = yp