View Single Post
Posts: 3 | Thanked: 0 times | Joined on Feb 2007
#66
Originally Posted by heikkri View Post
N800, mapper v1.4, cannot get icons working for POIs.
32x32 jpeg, paths and names set as told earlier in this thread.
Has somebody got own icons working ?? If yes, please tell...
Icons for POIs in v1.4 don't work anymore (changes from sqlite0 to sqlite3).
If you have your own scratchbox and you can build your own maemo-mapper you can fix it in the source maemo-mapper.c.

Change ...
gchar *poi_label = g_utf8_strdown(sqlite3_column_text(
_stmt_select_poi, 2), -1);
gchar *cat_label = g_utf8_strdown(sqlite3_column_text(
_stmt_select_poi, 5), -1);
to ...
gchar *poi_label = g_utf8_strdown(sqlite3_column_text(
_stmt_select_poi, 3), -1);
gchar *cat_label = g_utf8_strdown(sqlite3_column_text(
_stmt_select_poi, 6), -1);