summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarrett Regier <garrettregier@gmail.com>2011-12-08 13:12:28 -0800
committerGarrett Regier <garrettregier@gmail.com>2012-02-10 09:36:57 -0800
commit7e12e18f787cc70117a101bce51d66c36999852d (patch)
treec79dc0f917e400ddbb554d23b16ac84dd294cfec
parent84a46b9cc24b6cd3d81e03e02424e439a4a5fb5e (diff)
downloadlibpeas-7e12e18f787cc70117a101bce51d66c36999852d.tar.gz
Remove trailing whitespace
-rw-r--r--Makefile.gcov2
-rw-r--r--libpeas-gtk/peas-gtk-plugin-manager-view.c4
-rw-r--r--libpeas/peas-extension.h2
-rw-r--r--loaders/gjs/peas-extension-gjs.c2
-rw-r--r--loaders/python/peas-extension-python.c2
-rw-r--r--peas-demo/plugins/pythonhello/Makefile.am2
-rw-r--r--tests/libpeas-gtk/plugin-manager.c2
-rw-r--r--tests/libpeas/plugins/extension-python/extension-python.py2
-rw-r--r--tests/libpeas/testing/testing-extension.c2
-rw-r--r--tests/testing-util/testing-util.c2
10 files changed, 11 insertions, 11 deletions
diff --git a/Makefile.gcov b/Makefile.gcov
index 1700b6f..309be89 100644
--- a/Makefile.gcov
+++ b/Makefile.gcov
@@ -25,7 +25,7 @@ gcov: all
printf "\nSource statements: %4i" $$total_actual; \
printf "\nCovered statements: %4i" $$total_covered; \
printf "\nTotal coverage: %3i%%\n" \
- $$((($$total_covered * 100) / $$total_actual))
+ $$((($$total_covered * 100) / $$total_actual))
else
diff --git a/libpeas-gtk/peas-gtk-plugin-manager-view.c b/libpeas-gtk/peas-gtk-plugin-manager-view.c
index 86399bc..79b2c9a 100644
--- a/libpeas-gtk/peas-gtk-plugin-manager-view.c
+++ b/libpeas-gtk/peas-gtk-plugin-manager-view.c
@@ -603,7 +603,7 @@ peas_gtk_plugin_manager_view_query_tooltip (GtkWidget *widget,
if (!is_row)
return FALSE;
-
+
convert_iter_to_child_iter (view, &iter);
info = peas_gtk_plugin_manager_store_get_plugin (view->priv->store, &iter);
@@ -629,7 +629,7 @@ peas_gtk_plugin_manager_view_query_tooltip (GtkWidget *widget,
return TRUE;
}
-
+
static void
peas_gtk_plugin_manager_view_row_activated (GtkTreeView *tree_view,
diff --git a/libpeas/peas-extension.h b/libpeas/peas-extension.h
index d2dba8d..124067b 100644
--- a/libpeas/peas-extension.h
+++ b/libpeas/peas-extension.h
@@ -43,7 +43,7 @@ typedef GObject PeasExtension;
/*
* All the public methods of PeasExtension are deprecated and should not be
- * used. Due to gi-scanner's touchiness, we also hide these legacy API from
+ * used. Due to gi-scanner's touchiness, we also hide these legacy API from
* GI to avoid hairy issues.
*/
#if !defined(PEAS_DISABLE_DEPRECATED) && !defined(__GI_SCANNER__)
diff --git a/loaders/gjs/peas-extension-gjs.c b/loaders/gjs/peas-extension-gjs.c
index 84ab44a..0d0086c 100644
--- a/loaders/gjs/peas-extension-gjs.c
+++ b/loaders/gjs/peas-extension-gjs.c
@@ -258,7 +258,7 @@ peas_extension_gjs_call (PeasExtensionWrapper *exten,
if (direction == GI_DIRECTION_INOUT)
{
GIArgument arg;
-
+
peas_gi_pointer_to_argument (&arg_cache[cached_args].type_info,
args[i].v_pointer, &arg);
diff --git a/loaders/python/peas-extension-python.c b/loaders/python/peas-extension-python.c
index bcac503..87c5688 100644
--- a/loaders/python/peas-extension-python.c
+++ b/loaders/python/peas-extension-python.c
@@ -141,7 +141,7 @@ peas_extension_python_new (GType exten_type,
{
PeasExtensionPython *pyexten;
GType real_type;
-
+
real_type = peas_extension_register_subclass (PEAS_TYPE_EXTENSION_PYTHON,
interfaces);
diff --git a/peas-demo/plugins/pythonhello/Makefile.am b/peas-demo/plugins/pythonhello/Makefile.am
index d488628..41c14a3 100644
--- a/peas-demo/plugins/pythonhello/Makefile.am
+++ b/peas-demo/plugins/pythonhello/Makefile.am
@@ -2,7 +2,7 @@ plugindir = $(libdir)/peas-demo/plugins/pythonhello
plugin_PYTHON = \
pythonhello.py
-
+
plugin_DATA = pythonhello.plugin
EXTRA_DIST = $(plugin_DATA)
diff --git a/tests/libpeas-gtk/plugin-manager.c b/tests/libpeas-gtk/plugin-manager.c
index cc53023..603fe50 100644
--- a/tests/libpeas-gtk/plugin-manager.c
+++ b/tests/libpeas-gtk/plugin-manager.c
@@ -176,7 +176,7 @@ find_window_by_title (GtkWindow *window,
GList *windows;
GList *l;
GtkWidget *found_window = NULL;
-
+
group = gtk_window_get_group (window);
windows = gtk_window_group_list_windows (group);
diff --git a/tests/libpeas/plugins/extension-python/extension-python.py b/tests/libpeas/plugins/extension-python/extension-python.py
index 24efddb..2791c15 100644
--- a/tests/libpeas/plugins/extension-python/extension-python.py
+++ b/tests/libpeas/plugins/extension-python/extension-python.py
@@ -32,7 +32,7 @@ class PropertiesPythonPlugin(GObject.Object, Introspection.Properties):
construct_only = GObject.property(type=str)
read_only = GObject.property(type=str, default="read-only")
-
+
write_only = GObject.property(type=str)
readwrite = GObject.property(type=str, default="readwrite")
diff --git a/tests/libpeas/testing/testing-extension.c b/tests/libpeas/testing/testing-extension.c
index 111ca6c..d2333b5 100644
--- a/tests/libpeas/testing/testing-extension.c
+++ b/tests/libpeas/testing/testing-extension.c
@@ -350,7 +350,7 @@ testing_extension_call_multi_args_ (PeasEngine *engine)
inout_saved = inout;
introspection_callable_call_multi_args (callable, in, &out, &inout);
-
+
g_assert_cmpint (inout_saved, ==, out);
g_assert_cmpint (in, ==, inout);
diff --git a/tests/testing-util/testing-util.c b/tests/testing-util/testing-util.c
index 63154c3..d52c887 100644
--- a/tests/testing-util/testing-util.c
+++ b/tests/testing-util/testing-util.c
@@ -222,7 +222,7 @@ testing_util_pop_log_hook (void)
g_return_if_fail (log_hooks != NULL);
g_return_if_fail (log_hooks->len > 0);
-
+
hook = g_ptr_array_index (log_hooks, log_hooks->len - 1);
if (!hook->hit)