aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-printable.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-09-11 23:50:51 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-09-12 02:14:04 +0800
commitebcce86769d174cce6e881740c5e9bcedce28e06 (patch)
treeb2cc2d18ceb0c3bd3e78f5b768c1b6926b69bb4a /widgets/misc/e-printable.c
parent1e3deb31476cf0026011876327be83e9a47847ee (diff)
downloadgsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar
gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.gz
gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.bz2
gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.lz
gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.xz
gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.zst
gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.zip
Coding style and whitespace cleanups.
Diffstat (limited to 'widgets/misc/e-printable.c')
-rw-r--r--widgets/misc/e-printable.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/widgets/misc/e-printable.c b/widgets/misc/e-printable.c
index eb10c8c1fe..bc3233a38a 100644
--- a/widgets/misc/e-printable.c
+++ b/widgets/misc/e-printable.c
@@ -44,14 +44,14 @@ enum {
LAST_SIGNAL
};
-static guint e_printable_signals [LAST_SIGNAL] = { 0, };
+static guint e_printable_signals[LAST_SIGNAL] = { 0, };
static void
e_printable_class_init (EPrintableClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
- e_printable_signals [PRINT_PAGE] =
+ e_printable_signals[PRINT_PAGE] =
g_signal_new ("print_page",
G_OBJECT_CLASS_TYPE (object_class),
G_SIGNAL_RUN_LAST,
@@ -61,7 +61,7 @@ e_printable_class_init (EPrintableClass *klass)
G_TYPE_NONE, 4, G_TYPE_OBJECT, G_TYPE_DOUBLE,
G_TYPE_DOUBLE, G_TYPE_BOOLEAN);
- e_printable_signals [DATA_LEFT] =
+ e_printable_signals[DATA_LEFT] =
g_signal_new ("data_left",
G_OBJECT_CLASS_TYPE (object_class),
G_SIGNAL_RUN_LAST,
@@ -70,7 +70,7 @@ e_printable_class_init (EPrintableClass *klass)
e_marshal_BOOLEAN__NONE,
G_TYPE_BOOLEAN, 0, G_TYPE_NONE);
- e_printable_signals [RESET] =
+ e_printable_signals[RESET] =
g_signal_new ("reset",
G_OBJECT_CLASS_TYPE (object_class),
G_SIGNAL_RUN_LAST,
@@ -79,7 +79,7 @@ e_printable_class_init (EPrintableClass *klass)
g_cclosure_marshal_VOID__VOID,
G_TYPE_NONE, 0, G_TYPE_NONE);
- e_printable_signals [HEIGHT] =
+ e_printable_signals[HEIGHT] =
g_signal_new ("height",
G_OBJECT_CLASS_TYPE (object_class),
G_SIGNAL_RUN_LAST,
@@ -89,7 +89,7 @@ e_printable_class_init (EPrintableClass *klass)
G_TYPE_DOUBLE, 4, G_TYPE_OBJECT, G_TYPE_DOUBLE,
G_TYPE_DOUBLE, G_TYPE_BOOLEAN);
- e_printable_signals [WILL_FIT] =
+ e_printable_signals[WILL_FIT] =
g_signal_new ("will_fit",
G_OBJECT_CLASS_TYPE (object_class),
G_SIGNAL_RUN_LAST,
@@ -129,7 +129,7 @@ e_printable_print_page (EPrintable *e_printable,
g_return_if_fail (E_IS_PRINTABLE (e_printable));
g_signal_emit (e_printable,
- e_printable_signals [PRINT_PAGE], 0,
+ e_printable_signals[PRINT_PAGE], 0,
context,
width,
height,
@@ -145,7 +145,7 @@ e_printable_data_left (EPrintable *e_printable)
g_return_val_if_fail (E_IS_PRINTABLE (e_printable), FALSE);
g_signal_emit (e_printable,
- e_printable_signals [DATA_LEFT], 0,
+ e_printable_signals[DATA_LEFT], 0,
&ret_val);
return ret_val;
@@ -158,7 +158,7 @@ e_printable_reset (EPrintable *e_printable)
g_return_if_fail (E_IS_PRINTABLE (e_printable));
g_signal_emit (e_printable,
- e_printable_signals [RESET], 0);
+ e_printable_signals[RESET], 0);
}
gdouble
@@ -174,7 +174,7 @@ e_printable_height (EPrintable *e_printable,
g_return_val_if_fail (E_IS_PRINTABLE (e_printable), -1);
g_signal_emit (e_printable,
- e_printable_signals [HEIGHT], 0,
+ e_printable_signals[HEIGHT], 0,
context,
width,
max_height,
@@ -197,7 +197,7 @@ e_printable_will_fit (EPrintable *e_printable,
g_return_val_if_fail (E_IS_PRINTABLE (e_printable), FALSE);
g_signal_emit (e_printable,
- e_printable_signals [WILL_FIT], 0,
+ e_printable_signals[WILL_FIT], 0,
context,
width,
max_height,