diff options
author | nyamatongwe <unknown> | 2011-08-03 11:19:33 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-08-03 11:19:33 +1000 |
commit | d3c506ee2553d7f1da5907f4d5f9589d26b175a9 (patch) | |
tree | b4f5a99f4301dc430e6a8a5230c07db894780974 | |
parent | 0b9bf018e0715191933896782e22edd34d4bb534 (diff) | |
download | scintilla-mirror-d3c506ee2553d7f1da5907f4d5f9589d26b175a9.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 |