summaryrefslogtreecommitdiff
path: root/cocoa/utils.m
diff options
context:
space:
mode:
authorSven Weidauer <sven.weidauer@gmail.com>2011-02-27 13:21:46 +0000
committerSven Weidauer <sven.weidauer@gmail.com>2011-02-27 13:21:46 +0000
commitd84f818887977247f3dc45a5bee3ea1c88fb9ee3 (patch)
treeb9a1f3893b71108081acbde83aacf00d240d4f33 /cocoa/utils.m
parentff0aa37393afad23c5f114634a1df6f4b64fdb71 (diff)
downloadnetsurf-d84f818887977247f3dc45a5bee3ea1c88fb9ee3.tar.gz
netsurf-d84f818887977247f3dc45a5bee3ea1c88fb9ee3.tar.bz2
Adding icons for tree views.
svn path=/trunk/netsurf/; revision=11842
Diffstat (limited to 'cocoa/utils.m')
-rw-r--r--cocoa/utils.m6
1 files changed, 5 insertions, 1 deletions
diff --git a/cocoa/utils.m b/cocoa/utils.m
index c9cef7a23..0e10b9b6b 100644
--- a/cocoa/utils.m
+++ b/cocoa/utils.m
@@ -58,5 +58,9 @@ bool path_add_part(char *path, int length, const char *newpart)
void tree_icon_name_from_content_type(char *buffer, content_type type)
{
- UNIMPL();
+ switch (type) {
+ default:
+ strcpy( buffer, "content.png" );
+ break;
+ }
} \ No newline at end of file