diff options
author | nyamatongwe <devnull@localhost> | 2009-05-03 22:46:38 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2009-05-03 22:46:38 +0000 |
commit | 53a714020e2a2b387f178e9941aa3d61f5ae5e58 (patch) | |
tree | 06e38cccca17ab67b87d3ae5ed5f66401b27f0d0 | |
parent | 42fbee7fed8f3bffa71034ceeaed0a556779d4c6 (diff) | |
download | scintilla-mirror-53a714020e2a2b387f178e9941aa3d61f5ae5e58.tar.gz |
C style comment fix.
-rw-r--r-- | include/Scintilla.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index b31e81831..a72b1abbe 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -850,7 +850,7 @@ struct SCNotification { int ch; /* SCN_CHARADDED, SCN_KEY */ int modifiers; /* SCN_KEY */ int modificationType; /* SCN_MODIFIED */ - const char *text; // SCN_MODIFIED, SCN_USERLISTSELECTION, SCN_AUTOCSELECTION */ + const char *text; /* SCN_MODIFIED, SCN_USERLISTSELECTION, SCN_AUTOCSELECTION */ int length; /* SCN_MODIFIED */ int linesAdded; /* SCN_MODIFIED */ int message; /* SCN_MACRORECORD */ |