diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2007-11-08 07:35:44 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2007-11-08 07:35:44 +0000 |
| commit | d08af17faef48441390db53bc6e225ae6eae6b19 (patch) | |
| tree | d945b4cf97cc7acda9cede8f9324dda96a909977 /src/text-context.cpp | |
| parent | attempt at fixing [ 1679218 ] open/import clicking on a 0 byte image results ... (diff) | |
| download | inkscape-d08af17faef48441390db53bc6e225ae6eae6b19.tar.gz inkscape-d08af17faef48441390db53bc6e225ae6eae6b19.zip | |
warning cleanup
(bzr r4043)
Diffstat (limited to 'src/text-context.cpp')
| -rw-r--r-- | src/text-context.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/text-context.cpp b/src/text-context.cpp index 02dac6868..579309c1e 100644 --- a/src/text-context.cpp +++ b/src/text-context.cpp @@ -1410,7 +1410,7 @@ sp_text_context_selection_changed(Inkscape::Selection *selection, SPTextContext } static void -sp_text_context_selection_modified(Inkscape::Selection *selection, guint flags, SPTextContext *tc) +sp_text_context_selection_modified(Inkscape::Selection */*selection*/, guint /*flags*/, SPTextContext *tc) { sp_text_context_update_cursor(tc); sp_text_context_update_text_selection(tc); @@ -1619,21 +1619,21 @@ sp_text_context_forget_text(SPTextContext *tc) } gint -sptc_focus_in(GtkWidget *widget, GdkEventFocus *event, SPTextContext *tc) +sptc_focus_in(GtkWidget */*widget*/, GdkEventFocus */*event*/, SPTextContext *tc) { gtk_im_context_focus_in(tc->imc); return FALSE; } gint -sptc_focus_out(GtkWidget *widget, GdkEventFocus *event, SPTextContext *tc) +sptc_focus_out(GtkWidget */*widget*/, GdkEventFocus */*event*/, SPTextContext *tc) { gtk_im_context_focus_out(tc->imc); return FALSE; } static void -sptc_commit(GtkIMContext *imc, gchar *string, SPTextContext *tc) +sptc_commit(GtkIMContext */*imc*/, gchar *string, SPTextContext *tc) { if (!tc->text) { sp_text_context_setup_text(tc); |
