diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-07 08:35:16 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-07 08:35:16 +0100 |
commit | 408f8311dd071924d62ae10d0078e595e9137a9e (patch) | |
tree | 05c32509a20314aa12043365d6bdb7a53f3df05b /main.cpp | |
parent | 8a7d756c01d63761226725288caba0a1563389b0 (diff) | |
download | sciteco-408f8311dd071924d62ae10d0078e595e9137a9e.tar.gz |
fixed "-" processing and improved C command, added R command
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -40,11 +40,11 @@ message_display(GtkMessageType type, const gchar *fmt, ...) gtk_label_set_text(GTK_LABEL(message_widget), buf); } -void +sptr_t editor_msg(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { - scintilla_send_message(SCINTILLA(editor_widget), - iMessage, wParam, lParam); + return scintilla_send_message(SCINTILLA(editor_widget), + iMessage, wParam, lParam); } static gboolean |