mirror of
https://github.com/YACReader/yacreader
synced 2025-07-23 15:35:03 -04:00
Fixed compilation of YACReader in OSX with Qt5.5
This commit is contained in:
15
common/qnaturalsorting.h
Normal file
15
common/qnaturalsorting.h
Normal file
@ -0,0 +1,15 @@
|
||||
|
||||
|
||||
#ifndef __QNATURALSORTING_H
|
||||
#define __QNATURALSORTING_H
|
||||
|
||||
#include <QString>
|
||||
#include <QFileInfo>
|
||||
#include "library_item.h"
|
||||
|
||||
bool naturalSortLessThanCS( const QString &left, const QString &right );
|
||||
bool naturalSortLessThanCI( const QString &left, const QString &right );
|
||||
bool naturalSortLessThanCIFileInfo(const QFileInfo & left,const QFileInfo & right);
|
||||
bool naturalSortLessThanCILibraryItem(LibraryItem * left, LibraryItem * right);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user