aboutsummaryrefslogtreecommitdiffstats
path: root/src/bookmarks
diff options
context:
space:
mode:
authorChristian Persch <chpe@svn.gnome.org>2007-03-06 03:17:20 +0800
committerChristian Persch <chpe@src.gnome.org>2007-03-06 03:17:20 +0800
commit9a2e625a9f70d5a1826a68b5c0b1f72c7971d7ad (patch)
tree3927c18ba154eeae62f5647d8ee6180c2d4ca16d /src/bookmarks
parente6102a083736dd6429f553647b1d432e11a30a44 (diff)
downloadgsoc2013-epiphany-9a2e625a9f70d5a1826a68b5c0b1f72c7971d7ad.tar
gsoc2013-epiphany-9a2e625a9f70d5a1826a68b5c0b1f72c7971d7ad.tar.gz
gsoc2013-epiphany-9a2e625a9f70d5a1826a68b5c0b1f72c7971d7ad.tar.bz2
gsoc2013-epiphany-9a2e625a9f70d5a1826a68b5c0b1f72c7971d7ad.tar.lz
gsoc2013-epiphany-9a2e625a9f70d5a1826a68b5c0b1f72c7971d7ad.tar.xz
gsoc2013-epiphany-9a2e625a9f70d5a1826a68b5c0b1f72c7971d7ad.tar.zst
gsoc2013-epiphany-9a2e625a9f70d5a1826a68b5c0b1f72c7971d7ad.zip
Don't use C++-style comments in C files. No code changes, only comments
2007-03-05 Christian Persch <chpe@svn.gnome.org> * lib/ephy-password-dialog.c: (update_capslock_warning), (ephy_password_dialog_constructor), (ephy_password_dialog_finalize), (ephy_password_dialog_class_init): * src/bookmarks/ephy-bookmark-action.c: (ephy_bookmark_action_updated): * src/ephy-cert-manager-dialog.c: (certs_manager_dialog_remove_button_clicked_cb), (certs_manager_dialog_finalize): * src/ephy-find-toolbar.c: (ephy_find_toolbar_init): * src/ephy-main.c: (unref_proxy_reply_cb): Don't use C++-style comments in C files. No code changes, only comments changed. Bug #414706, patch by John Millikin. svn path=/trunk/; revision=6940
Diffstat (limited to 'src/bookmarks')
-rw-r--r--src/bookmarks/ephy-bookmark-action.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bookmarks/ephy-bookmark-action.c b/src/bookmarks/ephy-bookmark-action.c
index 9d14554e7..09efd132d 100644
--- a/src/bookmarks/ephy-bookmark-action.c
+++ b/src/bookmarks/ephy-bookmark-action.c
@@ -533,18 +533,18 @@ ephy_bookmark_action_updated (EphyBookmarkAction *action)
g_object_freeze_notify (G_OBJECT (action));
- // Set smart_url
+ /* Set smart_url */
action->priv->smart_url = ephy_node_has_child (smart, node);
g_object_notify (G_OBJECT (action), "smarturl");
- // Set title
+ /* Set title */
title = ephy_node_get_property_string (node, EPHY_NODE_BMK_PROP_TITLE);
g_value_init (&value, G_TYPE_STRING);
g_value_set_static_string (&value, title);
g_object_set_property (G_OBJECT (action), "label", &value);
g_value_unset (&value);
- // Notify all other properties
+ /* Notify all other properties */
g_object_notify (G_OBJECT (action), "location");
g_object_notify (G_OBJECT (action), "tooltip");
g_object_notify (G_OBJECT (action), "icon");