diff options
author | nyamatongwe <unknown> | 2001-10-05 09:29:01 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-10-05 09:29:01 +0000 |
commit | c5ca23c91a3bd75fd688daa11f1f2aff17be2bf4 (patch) | |
tree | f7239a988942ec8c856dc10fd7af1221cbef888a /win32/PlatWin.cxx | |
parent | 9305a7600655fd68d371ef82bbfffe4bacd5d92c (diff) | |
download | scintilla-mirror-c5ca23c91a3bd75fd688daa11f1f2aff17be2bf4.tar.gz |
Fixed warning from Digital Mars compiler.
Diffstat (limited to 'win32/PlatWin.cxx')
-rw-r--r-- | win32/PlatWin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index a177f1def..b9164c757 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -309,7 +309,7 @@ void Surface::Release() { } bool Surface::Initialised() { - return hdc; + return hdc != 0; } void Surface::Init() { |