Diff of /trunk/src/main.c

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

revision 143 by harbaum, Mon Oct 26 19:55:00 2009 UTC revision 156 by harbaum, Tue Nov 3 13:15:35 2009 UTC
# Line 1092  cb_menu_about(GtkWidget *window, gpointe Line 1092  cb_menu_about(GtkWidget *window, gpointe
1092    const gchar *authors[] = {    const gchar *authors[] = {
1093      "Till Harbaum <till@harbaum.org>",      "Till Harbaum <till@harbaum.org>",
1094      "John Stowers <john.stowers@gmail.com>",      "John Stowers <john.stowers@gmail.com>",
1095        "GCVote: Guido Wegener <guido.wegener@gmx.de>",
1096      NULL };      NULL };
1097    
1098    context.dialog = g_object_new(GTK_TYPE_ABOUT_DIALOG,    context.dialog = g_object_new(GTK_TYPE_ABOUT_DIALOG,
# Line 1300  gpx_t *search_do(appdata_t *appdata, gpx Line 1301  gpx_t *search_do(appdata_t *appdata, gpx
1301        else if(cache->long_description && (what & SEARCH_DESC) &&        else if(cache->long_description && (what & SEARCH_DESC) &&
1302                strcasestr(cache->long_description, phrase))                strcasestr(cache->long_description, phrase))
1303          hit = 1;          hit = 1;
1304        else if(cache->owner && (what & SEARCH_OWNER) &&        else if(cache->owner && cache->owner->name && (what & SEARCH_OWNER) &&
1305                strcasestr(cache->owner, phrase))                strcasestr(cache->owner->name, phrase))
1306          hit = 1;          hit = 1;
1307    
1308        if(hit) {        if(hit) {

Legend:
Removed from v.143  
changed lines
  Added in v.156