Fast dlgTable for GTK. Fix errors.

This commit is contained in:
lsv 2025-09-24 10:19:33 +05:00
parent e65781aa65
commit c78b09ad2e
8 changed files with 64 additions and 27 deletions

View file

@ -39,6 +39,10 @@ public:
{
return wxComboBox::Append(item);
}
int Append(const wxArrayString &item)
{
return wxComboBox::Append(item);
}
int Append(const wxString &item, void *data)
{
return wxComboBox::Append(item, data);

View file

@ -42,7 +42,7 @@ public:
bool ReSort();
bool IsNumberColumn(const wxString& columnlabel);
void SetModeStoreLongString() { storelongstring = true; }
bool DeleteAllItems() {
bool DeleteAllItemsWithLong() {
longstring.clear();
return wxListView::DeleteAllItems();
}

View file

@ -93,6 +93,7 @@ public:
}
bool IsDomain() const;
bool IsPartition() const;
bool IsVarlen() const;
bool MaySpecifyLength() const;
bool MaySpecifyPrecision() const;