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/misc/e-attachment-paned.c | |
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/misc/e-attachment-paned.c')
-rw-r--r-- | widgets/misc/e-attachment-paned.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |