mirror of
https://github.com/YACReader/yacreader
synced 2025-07-18 21:14:33 -04:00
Refactoring: fix mixed indentation and add curly braces in comic.cpp
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