summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
Diffstat (limited to 'amiga')
-rwxr-xr-xamiga/cookies.c4
-rwxr-xr-xamiga/gui.c2
-rwxr-xr-xamiga/history.c3
-rwxr-xr-xamiga/hotlist.c3
-rwxr-xr-xamiga/tree.h4
5 files changed, 12 insertions, 4 deletions
diff --git a/amiga/cookies.c b/amiga/cookies.c
index 76e2173f2..4ee463751 100755
--- a/amiga/cookies.c
+++ b/amiga/cookies.c
@@ -27,7 +27,9 @@ void ami_cookies_initialise(void)
if(!cookies_window) return;
- cookies_initialise(ami_tree_get_tree(cookies_window));
+ cookies_initialise(ami_tree_get_tree(cookies_window),
+ tree_directory_icon_name,
+ tree_content_icon_name);
}
void ami_cookies_free()
diff --git a/amiga/gui.c b/amiga/gui.c
index 23889d0b6..1427403c4 100755
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -560,7 +560,7 @@ static void gui_init2(int argc, char** argv)
ami_hotlist_initialise(option_hotlist_file);
ami_cookies_initialise();
ami_global_history_initialise();
- sslcert_init();
+ sslcert_init(tree_content_icon_name);
search_web_provider_details(option_search_provider);
diff --git a/amiga/history.c b/amiga/history.c
index 19ba9aff9..cc161d03f 100755
--- a/amiga/history.c
+++ b/amiga/history.c
@@ -28,7 +28,8 @@ void ami_global_history_initialise(void)
if(!global_history_window) return;
- history_global_initialise(ami_tree_get_tree(global_history_window));
+ history_global_initialise(ami_tree_get_tree(global_history_window),
+ tree_directory_icon_name);
}
void ami_global_history_free()
diff --git a/amiga/hotlist.c b/amiga/hotlist.c
index f90f3645e..6469cbd90 100755
--- a/amiga/hotlist.c
+++ b/amiga/hotlist.c
@@ -28,7 +28,8 @@ void ami_hotlist_initialise(const char *hotlist_file)
if(!hotlist_window) return;
hotlist_initialise(ami_tree_get_tree(hotlist_window),
- hotlist_file);
+ hotlist_file,
+ tree_directory_icon_name);
}
void ami_hotlist_free(const char *hotlist_file)
diff --git a/amiga/tree.h b/amiga/tree.h
index 315938d0d..0a0c29e87 100755
--- a/amiga/tree.h
+++ b/amiga/tree.h
@@ -25,6 +25,10 @@
#include "desktop/tree.h"
#include "desktop/sslcert.h"
+/* defined in front end code */
+extern const char tree_directory_icon_name[];
+extern const char tree_content_icon_name[];
+
struct treeview_window;
enum