Correction of the lost ";" during formatting SQL.

При форматировании SQL терялся символ ";". Мелкие правки для перевода сообщений.
This commit is contained in:
lsv 2025-12-02 15:21:11 +05:00
parent 20e91cda3c
commit 8df9354b4c
3 changed files with 24 additions and 7 deletions

View file

@ -38,6 +38,13 @@ bool FormatterSQL::GetItem(int index, FSQL::view_item& item) {
}
return false; // Error
};
view_item FormatterSQL::GetLastItem() {
view_item item;
if (items.size()>0) {
item = items[items.size()-1];
}
return item;
};
wxString FormatterSQL::get_list_columns(int startindex, union Byte zone) {
wxString cols;