summaryrefslogtreecommitdiff
path: root/cocoa/utils.m
diff options
context:
space:
mode:
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