diff options
author | 2008-09-24 21:05:49 -0400 | |
---|---|---|
committer | 2008-09-24 21:05:49 -0400 | |
commit | 32503fed4cf3066b07384562f10b640026d634a8 (patch) | |
tree | f69a9df8364932e9db57327bbf29ed2ade5efbd4 /src/textadept.c | |
parent | 4554c2ca782ea2667570d81899142af8a642aa3b (diff) | |
download | textadept-32503fed4cf3066b07384562f10b640026d634a8.tar.gz textadept-32503fed4cf3066b07384562f10b640026d634a8.zip |
Added textadept.size property.
Diffstat (limited to 'src/textadept.c')
-rw-r--r-- | src/textadept.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/textadept.c b/src/textadept.c index dec065f1..eba730a1 100644 --- a/src/textadept.c +++ b/src/textadept.c @@ -467,8 +467,7 @@ static gbool cec_match_selected(GtkEntryCompletion*, GtkTreeModel *model, * Signal for a Scintilla notification. */ static void t_notification(GtkWidget*, gint, gpointer lParam, gpointer) { - SCNotification *n = reinterpret_cast<SCNotification*>(lParam); - l_handle_scnnotification(n); + l_handle_scnnotification(reinterpret_cast<SCNotification*>(lParam)); } /** |