diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-07-26 20:18:59 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-07-26 20:18:59 +0800 |
commit | 30ac043b6ef2ad85de31c8dfbd87ac5a63d58dd8 (patch) | |
tree | f60a7fedac630e2ea4539c4938f70c17899f0ff7 /widgets | |
parent | 1f7427ce4304d72a4b03acab5b7aa9aa6ebd8f77 (diff) | |
download | gsoc2013-evolution-30ac043b6ef2ad85de31c8dfbd87ac5a63d58dd8.tar.gz gsoc2013-evolution-30ac043b6ef2ad85de31c8dfbd87ac5a63d58dd8.tar.zst gsoc2013-evolution-30ac043b6ef2ad85de31c8dfbd87ac5a63d58dd8.zip |
Coding style and whitespace cleanups.
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/e-attachment-icon-view.c | 4 | ||||
-rw-r--r-- | widgets/misc/e-attachment-icon-view.h | 4 | ||||
-rw-r--r-- | widgets/misc/e-attachment-paned.c | 4 | ||||
-rw-r--r-- | widgets/misc/e-attachment-paned.h | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/widgets/misc/e-attachment-icon-view.c b/widgets/misc/e-attachment-icon-view.c index 340805773d..edfecb57d8 100644 --- a/widgets/misc/e-attachment-icon-view.c +++ b/widgets/misc/e-attachment-icon-view.c @@ -40,11 +40,11 @@ enum { PROP_EDITABLE }; -static int icon_size = GTK_ICON_SIZE_DIALOG; +static gint icon_size = GTK_ICON_SIZE_DIALOG; static gpointer parent_class; void -e_attachment_icon_view_set_default_icon_size (int size) +e_attachment_icon_view_set_default_icon_size (gint size) { icon_size = size; } diff --git a/widgets/misc/e-attachment-icon-view.h b/widgets/misc/e-attachment-icon-view.h index 8b118a7a39..e89992fb76 100644 --- a/widgets/misc/e-attachment-icon-view.h +++ b/widgets/misc/e-attachment-icon-view.h @@ -60,8 +60,8 @@ struct _EAttachmentIconViewClass { GType e_attachment_icon_view_get_type (void); GtkWidget * e_attachment_icon_view_new (void); -void e_attachment_icon_view_set_default_icon_size - (int size); +void e_attachment_icon_view_set_default_icon_size + (gint size); G_END_DECLS #endif /* E_ATTACHMENT_ICON_VIEW_H */ diff --git a/widgets/misc/e-attachment-paned.c b/widgets/misc/e-attachment-paned.c index 0ba853bf3d..8e25098767 100644 --- a/widgets/misc/e-attachment-paned.c +++ b/widgets/misc/e-attachment-paned.c @@ -38,7 +38,7 @@ #define NUM_VIEWS 2 /* Initial height of the lower pane. */ -static int initial_height = 150; +static gint initial_height = 150; struct _EAttachmentPanedPrivate { GtkTreeModel *model; @@ -67,7 +67,7 @@ enum { static gpointer parent_class; void -e_attachment_paned_set_default_height (int height) +e_attachment_paned_set_default_height (gint height) { initial_height = height; } diff --git a/widgets/misc/e-attachment-paned.h b/widgets/misc/e-attachment-paned.h index 93722a248e..a9022a7bc6 100644 --- a/widgets/misc/e-attachment-paned.h +++ b/widgets/misc/e-attachment-paned.h @@ -82,8 +82,8 @@ GtkWidget * e_attachment_paned_get_controls_container (EAttachmentPaned *paned); GtkWidget * e_attachment_paned_get_view_combo (EAttachmentPaned *paned); -void e_attachment_paned_set_default_height - (int height); +void e_attachment_paned_set_default_height + (gint height); G_END_DECLS |