diff -r 9a5f47fbc5c3 -r 458831c574f4 ui/common/properties.c --- a/ui/common/properties.c Sat Apr 12 13:44:53 2014 +0200 +++ b/ui/common/properties.c Sat May 10 15:43:22 2014 +0200 @@ -286,3 +286,12 @@ } return ucx_map_cstr_get(language, name); } + + +char* uic_get_image_path(char *imgfilename) { + if(pixmaps_dir) { + return uic_concat_path(pixmaps_dir, imgfilename, NULL); + } else { + return NULL; + } +}