Change all <> to !=

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@75509 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2014-01-01 04:23:33 +00:00
parent 8c45c8411a
commit 6faf213a76
8 changed files with 11 additions and 11 deletions

View File

@@ -2515,7 +2515,7 @@ class ScaledBitmap2(TextObjectMixin, DrawObject, ):
H = ScaleWorldToPixel(self.Height)[0]
W = H * (self.bmpWidth / self.bmpHeight)
if (self.ScaledBitmap is None) or (self.ScaledBitmap[0] != (0, 0, self.bmpWidth, self.bmpHeight, W, H) ):
#if True: #fixme: (self.ScaledBitmap is None) or (H <> self.ScaledHeight) :
#if True: #fixme: (self.ScaledBitmap is None) or (H != self.ScaledHeight) :
self.ScaledHeight = H
#print("Scaling to:", W, H)
Img = self.Image.Scale(W, H)