aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2003-01-10 11:44:46 +0000
committernyamatongwe <devnull@localhost>2003-01-10 11:44:46 +0000
commit7dc1116e15344395b9f08b51493cc35623aaae92 (patch)
tree4629ae45631ef8d39cb46ebcb14f5af506d48b35
parent08e6db329f38935b00498764d16cc58ae139145d (diff)
downloadscintilla-mirror-7dc1116e15344395b9f08b51493cc35623aaae92.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 *);