Changeset 6285
- Timestamp:
- 30/11/09 12:15:54 (2 years ago)
- Location:
- trunk
- Files:
-
- 11 modified
-
AWT/AWT_db_browser.cxx (modified) (1 diff)
-
AWT/AWT_file_selection.cxx (modified) (1 diff)
-
AWTI/AWTI_import.cxx (modified) (1 diff)
-
HELP_SOURCE/arb_help2xml.cxx (modified) (1 diff)
-
Makefile (modified) (1 diff)
-
NTREE/NT_edconf.cxx (modified) (1 diff)
-
PROBE_DESIGN/SaiProbeVisualization.cxx (modified) (1 diff)
-
PROBE_DESIGN/probe_design.cxx (modified) (1 diff)
-
SL/FAST_ALIGNER/ClustalV.cxx (modified) (1 diff)
-
SL/FILE_BUFFER/FileBuffer.cxx (modified) (1 diff)
-
TOOLS/arb_gene_probe.cxx (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/AWT/AWT_db_browser.cxx
r6280 r6285 483 483 484 484 inline void insert_history_selection(AW_window *aww, AW_selection_list *sel, const char *entry, int wanted_db) { 485 c har *colon = strchr(entry, ':');485 const char *colon = strchr(entry, ':'); 486 486 if (colon && (atoi(entry) == wanted_db)) { 487 487 aww->insert_selection(sel, colon+1, colon+1); -
trunk/AWT/AWT_file_selection.cxx
r6141 r6285 143 143 144 144 char *AWT_extract_directory(const char *path) { 145 c har *lslash = strrchr(path, '/');145 const char *lslash = strrchr(path, '/'); 146 146 if (!lslash) return 0; 147 147 -
trunk/AWTI/AWTI_import.cxx
r6141 r6285 20 20 21 21 inline const char *name_only(const char *fullpath) { 22 c har *lslash = strrchr(fullpath, '/');22 const char *lslash = strrchr(fullpath, '/'); 23 23 return lslash ? lslash+1 : fullpath; 24 24 } -
trunk/HELP_SOURCE/arb_help2xml.cxx
r6141 r6285 312 312 // otherwise returns position behind keyword and sets value of 'keyword' 313 313 314 c har *space = strchr(line, ' ');314 const char *space = strchr(line, ' '); 315 315 if (space && space>line) { 316 316 keyword = string(line, 0, space-line); -
trunk/Makefile
r6280 r6285 59 59 4.2.0 4.2.1 4.2.3 4.2.4 \ 60 60 4.3 4.3.1 4.3.2 4.3.3 \ 61 4.4.1 61 62 62 63 ALLOWED_GCC_VERSIONS=$(ALLOWED_GCC_3xx_VERSIONS) $(ALLOWED_GCC_4xx_VERSIONS) -
trunk/NTREE/NT_edconf.cxx
r6280 r6285 245 245 struct SAI_string_builder *sai_builder = (struct SAI_string_builder*)cd_sai_builder; 246 246 247 c har *sep = strchr(key,1);247 const char *sep = strchr(key,1); 248 248 if (!sep) return val; // what's wrong 249 249 -
trunk/PROBE_DESIGN/SaiProbeVisualization.cxx
r6280 r6285 524 524 if (!tok_suffix) { 525 525 // handle special case where no suffix exists 526 c har *end = strchr(probeRegion, 0);526 const char *end = strchr(probeRegion, 0); 527 527 if (end>probeRegion && end[-1] == '-') tok_suffix = ""; 528 528 } -
trunk/PROBE_DESIGN/probe_design.cxx
r6280 r6285 1846 1846 1847 1847 if (!error) { // set pt-server database file to same permissions as pts directory 1848 char *dir = strrchr(file,'/');1848 char *dir = const_cast<char*>(strrchr(file,'/')); 1849 1849 if (dir) { 1850 1850 *dir = 0; -
trunk/SL/FAST_ALIGNER/ClustalV.cxx
r6279 r6285 287 287 // -1 if one char is illegal 288 288 { 289 c har *p1 = strchr(nucleic_acid_order, c1);290 c har *p2 = strchr(nucleic_acid_order, c2);289 const char *p1 = strchr(nucleic_acid_order, c1); 290 const char *p2 = strchr(nucleic_acid_order, c2); 291 291 292 292 awtc_assert(c1); -
trunk/SL/FILE_BUFFER/FileBuffer.cxx
r5958 r6285 13 13 #include <cstdlib> 14 14 #include <cstring> 15 #include <cstdio> 15 16 #include <errno.h> 16 17 -
trunk/TOOLS/arb_gene_probe.cxx
r6141 r6285 216 216 217 217 #if defined(DEBUG) 218 c har *firstSem = strchr(long_name, ';');218 const char *firstSem = strchr(long_name, ';'); 219 219 gp_assert(firstSem); 220 220 CHECK_SEMI_ESCAPED(firstSem+1);
