diff options
author | Chris Young <chris@unsatisfactorysoftware.co.uk> | 2011-11-27 20:07:26 +0000 |
---|---|---|
committer | Chris Young <chris@unsatisfactorysoftware.co.uk> | 2011-11-27 20:07:26 +0000 |
commit | d169eefe5963b27a6e64fdfcfa34f59e22a27342 (patch) | |
tree | 246d60706506150d05be48644873a8771c801641 /desktop/hotlist.h | |
parent | 714f07c48b31ddd5f87f0cef891fbba08164529d (diff) | |
download | netsurf-d169eefe5963b27a6e64fdfcfa34f59e22a27342.tar.gz |
Allow new (blank) hotlist entries to be created in the currently-selected folder
(if there is one) as this gives the user more control where their additions are
being created.
Functionality can be enabled/disabled by passing true/false to
hotlist_add_folder/hotlist_add_entry.
svn path=/trunk/netsurf/; revision=13185
Diffstat (limited to 'desktop/hotlist.h')
-rw-r--r-- | desktop/hotlist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/hotlist.h b/desktop/hotlist.h index 544cd02d0..6092291db 100644 --- a/desktop/hotlist.h +++ b/desktop/hotlist.h @@ -53,8 +53,8 @@ void hotlist_expand_addresses(void); void hotlist_collapse_all(void); void hotlist_collapse_directories(void); void hotlist_collapse_addresses(void); -void hotlist_add_folder(void); -void hotlist_add_entry(void); +void hotlist_add_folder(bool selected); +void hotlist_add_entry(bool selected); void hotlist_add_page(const char *url); void hotlist_add_page_xy(const char *url, int x, int y); void hotlist_launch_selected(bool tabs); |