aboutsummaryrefslogtreecommitdiffstats
path: root/src/bookmarks/ephy-bookmarks-import.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@gnome.org>2004-06-23 07:49:43 +0800
committerMarco Pesenti Gritti <marco@src.gnome.org>2004-06-23 07:49:43 +0800
commit451c3366a26cfe58deda5000102ffaf6e7efa6bf (patch)
tree530c859f7405bb241ef25c2129b1184c687982ec /src/bookmarks/ephy-bookmarks-import.c
parente4bb3b5a38b30253ac52985773a966f733722364 (diff)
downloadgsoc2013-epiphany-451c3366a26cfe58deda5000102ffaf6e7efa6bf.tar.gz
gsoc2013-epiphany-451c3366a26cfe58deda5000102ffaf6e7efa6bf.tar.zst
gsoc2013-epiphany-451c3366a26cfe58deda5000102ffaf6e7efa6bf.zip
"/" in a topic title is now a submenu in the bookmarks menu.
2004-06-23 Marco Pesenti Gritti <marco@gnome.org> * src/bookmarks/ephy-bookmarks-import.c: (folders_list_to_topic_name): * src/bookmarks/ephy-bookmarks-menu.c: (create_menu), (ensure_folder), (create_submenu), (ephy_bookmarks_menu_rebuild): "/" in a topic title is now a submenu in the bookmarks menu.
Diffstat (limited to 'src/bookmarks/ephy-bookmarks-import.c')
-rw-r--r--src/bookmarks/ephy-bookmarks-import.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bookmarks/ephy-bookmarks-import.c b/src/bookmarks/ephy-bookmarks-import.c
index faa6072aa..b60a83e73 100644
--- a/src/bookmarks/ephy-bookmarks-import.c
+++ b/src/bookmarks/ephy-bookmarks-import.c
@@ -682,7 +682,7 @@ folders_list_to_topic_name (GList *folders)
for (l = folders->next; l != NULL; l = l->next)
{
- g_string_append (topic, "|");
+ g_string_append (topic, "/");
g_string_append (topic, l->data);
}