[libchamplain] fix coding style at random places
- From: Pierre-Luc Beaudoin <plbeaudoin src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [libchamplain] fix coding style at random places
- Date: Sun, 24 Jan 2010 20:15:02 +0000 (UTC)
commit d5c9903cb3f028590e213db1c6538e55632aa558
Author: Simon Wenner <simon wenner ch>
Date: Tue Nov 10 23:25:36 2009 +0100
fix coding style at random places
champlain/champlain-local-map-data-source.c | 2 +-
champlain/champlain-memphis-map-source.c | 2 +-
demos/local-rendering.c | 14 +++++++-------
3 files changed, 9 insertions(+), 9 deletions(-)
---
diff --git a/champlain/champlain-local-map-data-source.c b/champlain/champlain-local-map-data-source.c
index 6ed417e..c1fe61d 100644
--- a/champlain/champlain-local-map-data-source.c
+++ b/champlain/champlain-local-map-data-source.c
@@ -157,7 +157,7 @@ champlain_local_map_data_source_load_map_data (ChamplainLocalMapDataSource *self
// TODO: Remove test when memphis handles invalid paths properly
if (!g_file_test (map_path, G_FILE_TEST_EXISTS))
{
- g_critical("Error: \"%s\" does not exist.", map_path);
+ g_critical ("Error: \"%s\" does not exist.", map_path);
return;
}
diff --git a/champlain/champlain-memphis-map-source.c b/champlain/champlain-memphis-map-source.c
index c5db790..73673a7 100644
--- a/champlain/champlain-memphis-map-source.c
+++ b/champlain/champlain-memphis-map-source.c
@@ -558,7 +558,7 @@ champlain_memphis_map_source_load_rules (
// TODO: Remove test when memphis handles invalid paths properly
if (!g_file_test (rules_path, G_FILE_TEST_EXISTS))
{
- g_critical("Error: \"%s\" does not exist.", rules_path);
+ g_critical ("Error: \"%s\" does not exist.", rules_path);
return;
}
diff --git a/demos/local-rendering.c b/demos/local-rendering.c
index ac910b6..e4333cc 100644
--- a/demos/local-rendering.c
+++ b/demos/local-rendering.c
@@ -507,7 +507,7 @@ rules_changed (GtkWidget *widget, ChamplainView *view)
if (strncmp (champlain_map_source_get_id (source), "memphis", 7) == 0)
{
champlain_memphis_map_source_load_rules (
- CHAMPLAIN_MEMPHIS_MAP_SOURCE(source),
+ CHAMPLAIN_MEMPHIS_MAP_SOURCE (source),
file);
load_rules_into_gui (view);
}
@@ -518,7 +518,7 @@ zoom_changed (GtkSpinButton *spinbutton,
ChamplainView *view)
{
gint zoom = gtk_spin_button_get_value_as_int(spinbutton);
- g_object_set(G_OBJECT(view), "zoom-level", zoom, NULL);
+ g_object_set (G_OBJECT(view), "zoom-level", zoom, NULL);
}
static void
@@ -527,7 +527,7 @@ map_zoom_changed (ChamplainView *view,
GtkSpinButton *spinbutton)
{
gint zoom;
- g_object_get(G_OBJECT(view), "zoom-level", &zoom, NULL);
+ g_object_get (G_OBJECT(view), "zoom-level", &zoom, NULL);
gtk_spin_button_set_value(spinbutton, zoom);
}
@@ -569,7 +569,7 @@ build_source_combo_box (GtkComboBox *box)
desc = (ChamplainMapSourceDesc*) iter->data;
- gtk_tree_store_append (store, &parent, NULL );
+ gtk_tree_store_append (store, &parent, NULL);
gtk_tree_store_set (store, &parent, COL_ID, desc->id,
COL_NAME, desc->name, -1);
@@ -584,7 +584,7 @@ build_source_combo_box (GtkComboBox *box)
cell = gtk_cell_renderer_text_new ();
gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (box), cell, FALSE);
gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (box), cell,
- "text", COL_NAME, NULL );
+ "text", COL_NAME, NULL);
}
static void
@@ -610,7 +610,7 @@ build_data_combo_box (GtkComboBox *box)
cell = gtk_cell_renderer_text_new ();
gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (box), cell, FALSE);
gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (box), cell,
- "text", 0, NULL );
+ "text", 0, NULL);
}
static void
@@ -632,7 +632,7 @@ build_rules_combo_box (GtkComboBox *box)
cell = gtk_cell_renderer_text_new ();
gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (box), cell, FALSE);
gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (box), cell,
- "text", 0, NULL );
+ "text", 0, NULL);
}
void list_item_selected_cb (GtkTreeView *tree_view,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]