mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 22:02:24 -06:00
Correction of the lost ";" during formatting SQL.
При форматировании SQL терялся символ ";". Мелкие правки для перевода сообщений.
This commit is contained in:
parent
20e91cda3c
commit
8df9354b4c
3 changed files with 24 additions and 7 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue