Diff of /trunk/src/gconf.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 12 by harbaum, Fri Jun 26 20:07:33 2009 UTC revision 14 by harbaum, Sat Jun 27 19:18:40 2009 UTC
# Line 314  void gconf_load_state(appdata_t *appdata Line 314  void gconf_load_state(appdata_t *appdata
314    
315    if(!appdata->image_path) {    if(!appdata->image_path) {
316    
317        /* use gps by default */
318        appdata->use_gps = TRUE;
319    
320  #ifndef USE_MAEMO  #ifndef USE_MAEMO
321      char *p = getenv("HOME");      char *p = getenv("HOME");
322      if(p) {      if(p) {
# Line 389  void gconf_load_state(appdata_t *appdata Line 392  void gconf_load_state(appdata_t *appdata
392    if(!appdata->cachelist_items)    if(!appdata->cachelist_items)
393      appdata->cachelist_items = CACHELIST_ITEM_DEFAULT;      appdata->cachelist_items = CACHELIST_ITEM_DEFAULT;
394    
395      /* if there are no entries in the main list, try to add the */
396      /* "welcome" one */
397      if(!appdata->gpx) {
398        char *name = g_strdup("/usr/share/gpxview/welcome.gpx");
399        dialog = gpx_busy_dialog_new(GTK_WIDGET(appdata->window));
400        printf("No GPX file loaded, trying to load demo\n");
401        appdata->gpx = gpx_parse(dialog, name);
402        gpx_busy_dialog_destroy(dialog);
403        g_free(name);
404      }
405  }  }
406    

Legend:
Removed from v.12  
changed lines
  Added in v.14