Loading src/filedef.h +2 −2 Original line number Diff line number Diff line Loading @@ -209,7 +209,7 @@ class FileList : public QList<FileDef> { FileDef *md1 = (FileDef *)item1; FileDef *md2 = (FileDef *)item2; return strcasecmp(md1->name(),md2->name()); return stricmp(md1->name(),md2->name()); } private: QCString m_pathName; Loading @@ -224,7 +224,7 @@ class OutputNameList : public QList<FileList> { FileList *fl1 = (FileList *)item1; FileList *fl2 = (FileList *)item2; return strcasecmp(fl1->path(),fl2->path()); return stricmp(fl1->path(),fl2->path()); } }; Loading src/util.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -78,7 +78,7 @@ int iSystem(const char *command) } } #else system(command); return system(command); #endif } Loading Loading
src/filedef.h +2 −2 Original line number Diff line number Diff line Loading @@ -209,7 +209,7 @@ class FileList : public QList<FileDef> { FileDef *md1 = (FileDef *)item1; FileDef *md2 = (FileDef *)item2; return strcasecmp(md1->name(),md2->name()); return stricmp(md1->name(),md2->name()); } private: QCString m_pathName; Loading @@ -224,7 +224,7 @@ class OutputNameList : public QList<FileList> { FileList *fl1 = (FileList *)item1; FileList *fl2 = (FileList *)item2; return strcasecmp(fl1->path(),fl2->path()); return stricmp(fl1->path(),fl2->path()); } }; Loading
src/util.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -78,7 +78,7 @@ int iSystem(const char *command) } } #else system(command); return system(command); #endif } Loading