aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2003-01-10 11:44:46 +0000
committernyamatongwe <unknown>2003-01-10 11:44:46 +0000
commit7862b2e48babed44d122632e96e5bc40e10563c9 (patch)
tree4629ae45631ef8d39cb46ebcb14f5af506d48b35
parentc7d09b515488f97209fa1254ffd6d4ce53ffa781 (diff)
downloadscintilla-mirror-7862b2e48babed44d122632e96e5bc40e10563c9.tar.gz
XPM.h separated frmo LineMarker.h.
Typo fixed in registration.
-rw-r--r--win32/ScintillaWin.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx
index 6356b849a..fb9ec1633 100644
--- a/win32/ScintillaWin.cxx
+++ b/win32/ScintillaWin.cxx
@@ -2,7 +2,7 @@
/** @file ScintillaWin.cxx
** Windows specific subclass of ScintillaBase.
**/
-// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#include <stdlib.h>
@@ -34,6 +34,7 @@
#include "CallTip.h"
#include "KeyMap.h"
#include "Indicator.h"
+#include "XPM.h"
#include "LineMarker.h"
#include "Style.h"
#include "AutoComplete.h"
@@ -1863,7 +1864,7 @@ bool ScintillaWin::Register(HINSTANCE hInstance_) {
if (result) {
// Register the CallTip class
WNDCLASSEX wndclassc;
- wndclassc.cbSize = sizeof(wndclass);
+ wndclassc.cbSize = sizeof(wndclassc);
wndclassc.style = CS_GLOBALCLASS | CS_HREDRAW | CS_VREDRAW;
wndclassc.cbClsExtra = 0;
wndclassc.cbWndExtra = sizeof(ScintillaWin *);