diff options
author | nyamatongwe <unknown> | 2001-01-27 06:00:27 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-01-27 06:00:27 +0000 |
commit | ba22db923ee18c31a0a8797dbe1e6c6c3ec2e4e0 (patch) | |
tree | 0fc319c03b84a185c84e575c06740577857952f7 /include/ScintillaWidget.h | |
parent | f81b8719262437eeabe735ec377ce0250d356503 (diff) | |
download | scintilla-mirror-ba22db923ee18c31a0a8797dbe1e6c6c3ec2e4e0.tar.gz |
Much changed ScintillaGTK widget code that draws directly onto the
Scintilla widget with no wDraw drawing area.
Signals handled directly through callbacks.
Diffstat (limited to 'include/ScintillaWidget.h')
-rw-r--r-- | include/ScintillaWidget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ScintillaWidget.h b/include/ScintillaWidget.h index 980557a2e..70e26dbce 100644 --- a/include/ScintillaWidget.h +++ b/include/ScintillaWidget.h @@ -1,7 +1,7 @@ // Scintilla source code edit control // ScintillaWidget.h - definition of Scintilla widget for GTK+ // Only needed by GTK+ code but is harmless on other platforms. -// Copyright 1998-2000 by Neil Hodgson <neilh@scintilla.org> +// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. #ifndef SCINTILLAWIDGET_H @@ -21,7 +21,7 @@ typedef struct _ScintillaObject ScintillaObject; typedef struct _ScintillaClass ScintillaClass; struct _ScintillaObject { - GtkFixed vbox; + GtkContainer cont; void *pscin; }; |