diff options
author | Guillaume Desmottes <gdesmott@gnome.org> | 2009-01-10 00:16:17 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-01-10 00:16:17 +0800 |
commit | 9804017880d3d954a8d2ce580f31d94720eabd02 (patch) | |
tree | 6e4e97697de415ab10c1b375d4ce450a53827231 /src | |
parent | 47f59c87daed5af95a9b902fb6c02fae3187c9b2 (diff) | |
download | gsoc2013-empathy-9804017880d3d954a8d2ce580f31d94720eabd02.tar gsoc2013-empathy-9804017880d3d954a8d2ce580f31d94720eabd02.tar.gz gsoc2013-empathy-9804017880d3d954a8d2ce580f31d94720eabd02.tar.bz2 gsoc2013-empathy-9804017880d3d954a8d2ce580f31d94720eabd02.tar.lz gsoc2013-empathy-9804017880d3d954a8d2ce580f31d94720eabd02.tar.xz gsoc2013-empathy-9804017880d3d954a8d2ce580f31d94720eabd02.tar.zst gsoc2013-empathy-9804017880d3d954a8d2ce580f31d94720eabd02.zip |
empathy_tube_dispatch_show_error: give a format to gtk_message_dialog_new to make compiler happy
Signed-off-by: Guillaume Desmottes <gdesmott@gnome.org>
svn path=/trunk/; revision=2204
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-tube-dispatch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-tube-dispatch.c b/src/empathy-tube-dispatch.c index fcf94e8ac..15a7455f3 100644 --- a/src/empathy-tube-dispatch.c +++ b/src/empathy-tube-dispatch.c @@ -336,7 +336,7 @@ empathy_tube_dispatch_show_error (EmpathyTubeDispatch *self, gchar *message) GtkWidget *dialog; dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL, - GTK_MESSAGE_WARNING, GTK_BUTTONS_CLOSE, message); + GTK_MESSAGE_WARNING, GTK_BUTTONS_CLOSE, "%s", message); gtk_dialog_run (GTK_DIALOG (dialog)); |