mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Assign netclass dialog: use TransferDataToWindow
This commit is contained in:
parent
d1aa7b148a
commit
6c648c5ea6
@ -25,6 +25,8 @@
|
||||
#define DIALOG_ASSIGN_NETCLASS_H
|
||||
|
||||
#include <dialogs/dialog_assign_netclass_base.h>
|
||||
|
||||
#include <functional>
|
||||
#include <set>
|
||||
|
||||
|
||||
@ -41,11 +43,15 @@ public:
|
||||
|
||||
private:
|
||||
void onPatternText( wxCommandEvent& aEvent ) override;
|
||||
|
||||
bool TransferDataToWindow() override;
|
||||
bool TransferDataFromWindow() override;
|
||||
|
||||
private:
|
||||
EDA_BASE_FRAME* m_frame;
|
||||
std::set<wxString> m_netCandidates;
|
||||
|
||||
const std::set<wxString> m_selectedNetNames;
|
||||
std::set<wxString> m_netCandidates;
|
||||
|
||||
std::function<void( const std::vector<wxString>& )> m_previewer;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user