From b1f3e956229047da2f96fe560b58c7532e0f3357 Mon Sep 17 00:00:00 2001 From: Albert S Date: Mon, 25 Oct 2021 17:18:11 +0200 Subject: [PATCH] shared: looksquery: Fix incorrect varname in exception --- shared/looqsquery.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/looqsquery.cpp b/shared/looqsquery.cpp index fdcded7..15b53ae 100644 --- a/shared/looqsquery.cpp +++ b/shared/looqsquery.cpp @@ -128,7 +128,7 @@ QVector createSortConditions(QString sortExpression) } else { - throw LooqsGeneralException("Unknown order specifier: " + order); + throw LooqsGeneralException("Unknown order specifier: " + orderstr); } } else