summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xamiga/tree.c4
-rwxr-xr-xatari/hotlist.c2
-rw-r--r--cocoa/BookmarksController.m2
-rw-r--r--gtk/hotlist.c4
-rw-r--r--riscos/hotlist.c6
5 files changed, 9 insertions, 9 deletions
diff --git a/amiga/tree.c b/amiga/tree.c
index 92ad5deed..ef0bf5cfd 100755
--- a/amiga/tree.c
+++ b/amiga/tree.c
@@ -807,11 +807,11 @@ BOOL ami_tree_event(struct treeview_window *twin)
break;
case GID_NEWF:
- hotlist_add_folder();
+ hotlist_add_folder(true);
break;
case GID_NEWB:
- hotlist_add_entry();
+ hotlist_add_entry(true);
break;
case GID_DEFAULT:
diff --git a/atari/hotlist.c b/atari/hotlist.c
index 2d2e1cf19..067d9c123 100755
--- a/atari/hotlist.c
+++ b/atari/hotlist.c
@@ -49,7 +49,7 @@ static void evnt_hl_toolbar( WINDOW *win, short buff[8]) {
/* handle toolbar object (index in buff[4] ) */
switch( buff[4] ) {
case TOOLBAR_HOTLIST_CREATE_FOLDER:
- hotlist_add_folder();
+ hotlist_add_folder(true);
break;
case TOOLBAR_HOTLIST_ADD:
diff --git a/cocoa/BookmarksController.m b/cocoa/BookmarksController.m
index 9f59fd45e..031af6c2d 100644
--- a/cocoa/BookmarksController.m
+++ b/cocoa/BookmarksController.m
@@ -186,7 +186,7 @@ static const char *cocoa_hotlist_path( void )
- (IBAction) addFolder: (id) sender;
{
- hotlist_add_folder();
+ hotlist_add_folder(true);
}
@end
diff --git a/gtk/hotlist.c b/gtk/hotlist.c
index f6f11c73b..e3c6b7068 100644
--- a/gtk/hotlist.c
+++ b/gtk/hotlist.c
@@ -200,13 +200,13 @@ MENUHANDLER(export)
MENUHANDLER(new_folder)
{
- hotlist_add_folder();
+ hotlist_add_folder(true);
return TRUE;
}
MENUHANDLER(new_entry)
{
- hotlist_add_entry();
+ hotlist_add_entry(true);
return TRUE;
}
diff --git a/riscos/hotlist.c b/riscos/hotlist.c
index e60dc8464..532a657ca 100644
--- a/riscos/hotlist.c
+++ b/riscos/hotlist.c
@@ -259,7 +259,7 @@ void ro_gui_hotlist_toolbar_click(button_bar_action action)
break;
case TOOLBAR_BUTTON_CREATE:
- hotlist_add_folder();
+ hotlist_add_folder(true);
break;
default:
@@ -376,10 +376,10 @@ bool ro_gui_hotlist_menu_select(wimp_w w, wimp_i i, wimp_menu *menu,
ro_gui_dialog_open_persistent(w, dialog_saveas, true);
return true;
case TREE_NEW_FOLDER:
- hotlist_add_folder();
+ hotlist_add_folder(true);
return true;
case TREE_NEW_LINK:
- hotlist_add_entry();
+ hotlist_add_entry(true);
return true;
case TREE_EXPAND_ALL:
hotlist_expand_all();