Changeset 6141 for trunk/WINDOW/AW_question.cxx
- Timestamp:
- 14/08/09 16:29:27 (3 years ago)
- Files:
-
- 1 modified
-
trunk/WINDOW/AW_question.cxx (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WINDOW/AW_question.cxx
r5725 r6141 51 51 52 52 while (1) { 53 const char * komma = strchr(r, ',');54 if (! komma) komma = strchr(r, 0);55 int len = komma-r;53 const char *comma = strchr(r, ','); 54 if (!comma) comma = strchr(r, 0); 55 int len = comma-r; 56 56 57 57 if (!dont_ask_again) { … … 66 66 button_count++; 67 67 68 if (! komma[0]) break;69 r = komma+1;68 if (!comma[0]) break; 69 r = comma+1; 70 70 } 71 71 if (add_abort) { … … 74 74 } 75 75 else { 76 --w; // delete komma at end76 --w; // delete comma at end 77 77 } 78 78 w[0] = 0;
