Skip to content

Commit

Permalink
Rewrote implementation of issue pbek#369 to use the widgets sort mech…
Browse files Browse the repository at this point in the history
…anisms
  • Loading branch information
derboblan committed May 22, 2017
1 parent 5cfe062 commit 2056c2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/entities/tag.cpp
Expand Up @@ -196,7 +196,7 @@ QList<Tag> Tag::fetchAllByParentId(int parentId) {
QSqlDatabase db = QSqlDatabase::database("note_folder");
QSqlQuery query(db);
QList<Tag> tagList;

query.prepare("SELECT * FROM tag WHERE parent_id = :parentId ORDER BY "
//"priority ASC, lower(name) ASC");
"priority ASC");
Expand Down

0 comments on commit 2056c2b

Please sign in to comment.