aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-call-window-fullscreen.h
diff options
context:
space:
mode:
authorjtellier <jonathan.tellier@collabora.co.uk>2009-05-13 00:13:19 +0800
committerjtellier <jonathan.tellier@collabora.co.uk>2009-05-13 00:13:19 +0800
commit0493b4a30bc60e0b282cdae95cdc35d8bcbac481 (patch)
treeda6a6f80c8cb8cce0640a79c2db9beb3e5d87892 /src/empathy-call-window-fullscreen.h
parent5bbe4a3b2586f04a855c1aaf5d58b09921adac4b (diff)
downloadgsoc2013-empathy-0493b4a30bc60e0b282cdae95cdc35d8bcbac481.tar
gsoc2013-empathy-0493b4a30bc60e0b282cdae95cdc35d8bcbac481.tar.gz
gsoc2013-empathy-0493b4a30bc60e0b282cdae95cdc35d8bcbac481.tar.bz2
gsoc2013-empathy-0493b4a30bc60e0b282cdae95cdc35d8bcbac481.tar.lz
gsoc2013-empathy-0493b4a30bc60e0b282cdae95cdc35d8bcbac481.tar.xz
gsoc2013-empathy-0493b4a30bc60e0b282cdae95cdc35d8bcbac481.tar.zst
gsoc2013-empathy-0493b4a30bc60e0b282cdae95cdc35d8bcbac481.zip
Fixed some coding style.
- empathy-call-window-fullscreen.c and .h now has no line > 80 caracters. - The return type and the signature in the declaration of empathy_call_window_fullscreen_new and of empathy_call_window_new are on the same line. - Removed a trailing space and a tab (which was replaced by spaces).
Diffstat (limited to 'src/empathy-call-window-fullscreen.h')
-rw-r--r--src/empathy-call-window-fullscreen.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/empathy-call-window-fullscreen.h b/src/empathy-call-window-fullscreen.h
index 53dcf40e1..1ae1e98e7 100644
--- a/src/empathy-call-window-fullscreen.h
+++ b/src/empathy-call-window-fullscreen.h
@@ -28,7 +28,8 @@
G_BEGIN_DECLS
typedef struct _EmpathyCallWindowFullscreen EmpathyCallWindowFullscreen;
-typedef struct _EmpathyCallWindowFullscreenClass EmpathyCallWindowFullscreenClass;
+typedef struct _EmpathyCallWindowFullscreenClass
+ EmpathyCallWindowFullscreenClass;
struct _EmpathyCallWindowFullscreenClass {
GObjectClass parent_class;
@@ -59,14 +60,17 @@ GType empathy_call_window_fullscreen_get_type(void);
(G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_CALL_WINDOW_FULLSCREEN, \
EmpathyCallWindowFullscreenClass))
-EmpathyCallWindowFullscreen *
-empathy_call_window_fullscreen_new (EmpathyCallWindow *parent);
+EmpathyCallWindowFullscreen *empathy_call_window_fullscreen_new (
+ EmpathyCallWindow *parent);
-void empathy_call_window_fullscreen_set_fullscreen (EmpathyCallWindowFullscreen *fs,
+void empathy_call_window_fullscreen_set_fullscreen (
+ EmpathyCallWindowFullscreen *fs,
gboolean set_fullscreen);
-void empathy_call_window_fullscreen_set_video_widget (EmpathyCallWindowFullscreen *fs,
+void empathy_call_window_fullscreen_set_video_widget (
+ EmpathyCallWindowFullscreen *fs,
GtkWidget *video_widget);
-void empathy_call_window_fullscreen_show_popup (EmpathyCallWindowFullscreen *fs);
+void empathy_call_window_fullscreen_show_popup (
+ EmpathyCallWindowFullscreen *fs);
G_END_DECLS