aboutsummaryrefslogtreecommitdiff
path: root/src/textadept.c
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2008-09-24 21:05:49 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2008-09-24 21:05:49 -0400
commit32503fed4cf3066b07384562f10b640026d634a8 (patch)
treef69a9df8364932e9db57327bbf29ed2ade5efbd4 /src/textadept.c
parent4554c2ca782ea2667570d81899142af8a642aa3b (diff)
downloadtextadept-32503fed4cf3066b07384562f10b640026d634a8.tar.gz
textadept-32503fed4cf3066b07384562f10b640026d634a8.zip
Added textadept.size property.
Diffstat (limited to 'src/textadept.c')
-rw-r--r--src/textadept.c3
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));
}
/**