aboutsummaryrefslogtreecommitdiffstats
path: root/lib/widgets
diff options
context:
space:
mode:
Diffstat (limited to 'lib/widgets')
-rw-r--r--lib/widgets/ephy-location-entry.c8
-rw-r--r--lib/widgets/ephy-spinner.c8
-rw-r--r--lib/widgets/ephy-tree-model-node.c2
-rw-r--r--lib/widgets/ephy-tree-model-sort.c2
4 files changed, 10 insertions, 10 deletions
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c
index 39d614a45..3a922d5c3 100644
--- a/lib/widgets/ephy-location-entry.c
+++ b/lib/widgets/ephy-location-entry.c
@@ -488,7 +488,7 @@ entry_style_set_cb (GtkWidget *widget,
GtkStyle *previous_style,
EphyLocationEntry *entry)
{
- LOG ("entry_style_set_cb")
+ LOG ("entry_style_set_cb");
modify_background (entry);
}
@@ -497,7 +497,7 @@ static void
entry_realize_cb (GtkWidget *widget,
EphyLocationEntry *entry)
{
- LOG ("entry_realize_cb")
+ LOG ("entry_realize_cb");
modify_background (entry);
}
@@ -508,7 +508,7 @@ ephy_location_entry_construct_contents (EphyLocationEntry *entry)
EphyLocationEntryPrivate *priv = entry->priv;
GtkWidget *alignment, *frame, *hbox;
- LOG ("EphyLocationEntry constructing contents %p", entry)
+ LOG ("EphyLocationEntry constructing contents %p", entry);
alignment = gtk_alignment_new (0.0, 0.5, 1.0, 0.0);
gtk_alignment_set_padding (GTK_ALIGNMENT (alignment), 0, 0, 1, 1);
@@ -582,7 +582,7 @@ ephy_location_entry_init (EphyLocationEntry *le)
{
EphyLocationEntryPrivate *p;
- LOG ("EphyLocationEntry initialising %p", le)
+ LOG ("EphyLocationEntry initialising %p", le);
p = EPHY_LOCATION_ENTRY_GET_PRIVATE (le);
le->priv = p;
diff --git a/lib/widgets/ephy-spinner.c b/lib/widgets/ephy-spinner.c
index 7172e62ab..1ad7f442b 100644
--- a/lib/widgets/ephy-spinner.c
+++ b/lib/widgets/ephy-spinner.c
@@ -184,7 +184,7 @@ ephy_spinner_cache_load (EphySpinnerCache *cache)
int grid_width, grid_height, x, y, size, h, w;
const char *icon;
- LOG ("EphySpinnerCache loading")
+ LOG ("EphySpinnerCache loading");
ephy_spinner_cache_unload (cache);
@@ -334,7 +334,7 @@ ephy_spinner_cache_get_images (EphySpinnerCache *cache,
GList *element, *l;
int h, w;
- LOG ("Getting animation images at size %d", size)
+ LOG ("Getting animation images at size %d", size);
if (cache->priv->images == NULL || cache->priv->originals == NULL)
{
@@ -388,7 +388,7 @@ ephy_spinner_cache_init (EphySpinnerCache *cache)
{
cache->priv = EPHY_SPINNER_CACHE_GET_PRIVATE (cache);
- LOG ("EphySpinnerCache initialising")
+ LOG ("EphySpinnerCache initialising");
/* FIXME: icon theme is per-screen, not global */
cache->priv->icon_theme = gtk_icon_theme_get_default ();
@@ -403,7 +403,7 @@ ephy_spinner_cache_finalize (GObject *object)
{
EphySpinnerCache *cache = EPHY_SPINNER_CACHE (object);
- LOG ("EphySpinnerCache finalising")
+ LOG ("EphySpinnerCache finalising");
g_signal_handlers_disconnect_by_func
(cache->priv->icon_theme, G_CALLBACK(ephy_spinner_cache_load), cache);
diff --git a/lib/widgets/ephy-tree-model-node.c b/lib/widgets/ephy-tree-model-node.c
index 13ed2dbc8..e00ff1324 100644
--- a/lib/widgets/ephy-tree-model-node.c
+++ b/lib/widgets/ephy-tree-model-node.c
@@ -162,7 +162,7 @@ ephy_tree_model_node_update_node (EphyTreeModelNode *model,
path = get_path_real (model, node);
}
- LOG ("Updating row")
+ LOG ("Updating row");
gtk_tree_model_row_changed (GTK_TREE_MODEL (model), path, &iter);
gtk_tree_path_free (path);
diff --git a/lib/widgets/ephy-tree-model-sort.c b/lib/widgets/ephy-tree-model-sort.c
index 1c9ae1e4f..dc6af7982 100644
--- a/lib/widgets/ephy-tree-model-sort.c
+++ b/lib/widgets/ephy-tree-model-sort.c
@@ -206,7 +206,7 @@ each_property_get_data_binder (EphyDragEachSelectedItemDataGet iteratee,
g_return_if_fail (base_data != NULL);
- LOG ("Data get %s (%s)", base_data, extra_data)
+ LOG ("Data get %s (%s)", base_data, extra_data);
iteratee (base_data, extra_data, data);