forked from qt-creator/qt-creator
Help: Fix warning
The operator is not static otherwise it would be just an unused function. Change-Id: I01b8764adfdf8908d07362357211d64b55ea941e Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -55,7 +55,7 @@ public:
|
||||
QString nameSpace;
|
||||
};
|
||||
|
||||
static bool operator<(const DocEntry &d1, const DocEntry &d2)
|
||||
bool operator<(const DocEntry &d1, const DocEntry &d2)
|
||||
{ return d1.name < d2.name; }
|
||||
|
||||
class DocModel : public QAbstractListModel
|
||||
|
||||
Reference in New Issue
Block a user