diff options
author | nyamatongwe <devnull@localhost> | 2011-08-03 11:19:33 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-08-03 11:19:33 +1000 |
commit | c01c7f0cab76fb3e4a43801a405e68e68cc08629 (patch) | |
tree | 73c7218d2f0bf4f408cdb57e532816451ac81505 | |
parent | 7e9aeaf818ef60c5f6a92ee617bc4094b13b5070 (diff) | |
download | scintilla-mirror-c01c7f0cab76fb3e4a43801a405e68e68cc08629.tar.gz |
Fixed some warnings.
-rw-r--r-- | win32/PlatWin.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index 9e9ead409..acbb5f62d 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -514,7 +514,8 @@ public: SurfaceImpl::SurfaceImpl() : unicodeMode(false), - hdc(0), hdcOwned(false) { + hdc(0), hdcOwned(false), + x(0), y(0), { // Windows 9x has only a 16 bit coordinate system so break after 30000 pixels maxWidthMeasure = IsNT() ? INT_MAX : 30000; // There appears to be a 16 bit string length limit in GDI on NT and a limit of |