ENH:add "not support bed type" function

jira: STUDIO-9028
Change-Id: Id1c6cc9005fc5073d885274e360d31282063a9a3
(cherry picked from commit e74c9e710b4bed97e637c8197052b5bd864bfc95)
This commit is contained in:
zhou.xu
2025-01-23 10:51:20 +08:00
committed by Noisyfox
parent 80f6ce9e3d
commit 30731cfd54
6 changed files with 79 additions and 18 deletions

View File

@@ -77,7 +77,9 @@ ComboBox::ComboBox(wxWindow *parent,
for (int i = 0; i < n; ++i) Append(choices[i]);
}
int ComboBox::GetSelection() const { return drop.GetSelection(); }
int ComboBox::GetSelection() const {
return drop.GetSelection();
}
void ComboBox::SetSelection(int n)
{