mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
Fast dlgTable for GTK. Fix errors.
This commit is contained in:
parent
e65781aa65
commit
c78b09ad2e
8 changed files with 64 additions and 27 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -93,6 +93,7 @@ public:
|
|||
}
|
||||
|
||||
bool IsDomain() const;
|
||||
bool IsPartition() const;
|
||||
bool IsVarlen() const;
|
||||
bool MaySpecifyLength() const;
|
||||
bool MaySpecifyPrecision() const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue