View Ticket
Not logged in
Ticket Hash: ab6d256f2383122cfa2cbdb4d476e08381087ad6
Title: Patch to fix spelling errors
Status: Open Type: Code_Defect
Severity: Minor Priority:
Subsystem: Resolution:
Last Modified: 2020-08-03 06:48:50
Version Found In: 2.1.0-beta1
User Comments:
anonymous added on 2020-08-03 06:48:50:
The lintian QA tool reported a spelling error for the Debian package build:

 *  Emtpy -> Empty

Fixed with the following patch:

--- a/ResultSetView.cpp
+++ b/ResultSetView.cpp
@@ -796,7 +796,7 @@ bool MyResultSetView::ExecuteSqlPre(wxSt
         }
       if (strlen(pSql) == 0)
         {
-          SqlErrorMsg = wxString::FromUTF8("Emtpy SQL Statement");
+          SqlErrorMsg = wxString::FromUTF8("Empty SQL Statement");
           ::wxEndBusyCursor();
           delete[]xSql;
           return false;