diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-15 23:49:51 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 16:48:41 +0800 |
commit | 6d8d557d4c17e8770cfebd442f7eabd8d014052b (patch) | |
tree | 13f0bf7d9a93e5c5d4db90c812ffee4a0ea80fef | |
parent | 9586cbf5c1ff6ce790f869d4e78abf3b4934770b (diff) | |
download | gsoc2013-empathy-6d8d557d4c17e8770cfebd442f7eabd8d014052b.tar gsoc2013-empathy-6d8d557d4c17e8770cfebd442f7eabd8d014052b.tar.gz gsoc2013-empathy-6d8d557d4c17e8770cfebd442f7eabd8d014052b.tar.bz2 gsoc2013-empathy-6d8d557d4c17e8770cfebd442f7eabd8d014052b.tar.lz gsoc2013-empathy-6d8d557d4c17e8770cfebd442f7eabd8d014052b.tar.xz gsoc2013-empathy-6d8d557d4c17e8770cfebd442f7eabd8d014052b.tar.zst gsoc2013-empathy-6d8d557d4c17e8770cfebd442f7eabd8d014052b.zip |
empathy-call-window: fix coding style
-rw-r--r-- | src/empathy-call-window.c | 2 | ||||
-rw-r--r-- | src/empathy-call-window.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index 96abe45fa..ceab7d00c 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -1337,7 +1337,7 @@ empathy_call_window_state_event_cb (GtkWidget *widget, set_fullscreen); show_controls (window, set_fullscreen); show_borders (window, set_fullscreen); - gtk_action_set_stock_id(priv->menu_fullscreen, + gtk_action_set_stock_id (priv->menu_fullscreen, (set_fullscreen ? "gtk-leave-fullscreen" : "gtk-fullscreen")); priv->is_fullscreen = set_fullscreen; } diff --git a/src/empathy-call-window.h b/src/empathy-call-window.h index cda7af2f6..01ea5def7 100644 --- a/src/empathy-call-window.h +++ b/src/empathy-call-window.h @@ -38,11 +38,11 @@ struct _EmpathyCallWindow { GtkWindow parent; }; -GType empathy_call_window_get_type(void); +GType empathy_call_window_get_type (void); /* TYPE MACROS */ #define EMPATHY_TYPE_CALL_WINDOW \ - (empathy_call_window_get_type()) + (empathy_call_window_get_type ()) #define EMPATHY_CALL_WINDOW(obj) \ (G_TYPE_CHECK_INSTANCE_CAST((obj), EMPATHY_TYPE_CALL_WINDOW, \ EmpathyCallWindow)) |