diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-07-17 14:49:17 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-07-17 14:49:17 (GMT) |
commit | 5d301b7175193a7bb7973506df92da065b4acf6e (patch) | |
tree | 94c505c69f2941d4db49d2964e7a052c9ed83714 /src/filedef.h | |
parent | 8feba3b60badccd732e753fadb089d13799db829 (diff) | |
download | Doxygen-5d301b7175193a7bb7973506df92da065b4acf6e.zip Doxygen-5d301b7175193a7bb7973506df92da065b4acf6e.tar.gz Doxygen-5d301b7175193a7bb7973506df92da065b4acf6e.tar.bz2 |
Fixes compile bug on Windows
Diffstat (limited to 'src/filedef.h')
-rw-r--r-- | src/filedef.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filedef.h b/src/filedef.h index c42d2e5..03bc919 100644 --- a/src/filedef.h +++ b/src/filedef.h @@ -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; @@ -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()); } }; |