mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-15 16:41:54 -05:00
Fix dev var init typo
This commit is contained in:
parent
b75586119c
commit
e1ebbb5906
@ -16,6 +16,7 @@ SDRDevicesDialog::SDRDevicesDialog( wxWindow* parent ): devFrame( parent ) {
|
|||||||
editId = nullptr;
|
editId = nullptr;
|
||||||
removeId = nullptr;
|
removeId = nullptr;
|
||||||
devAddDialog = nullptr;
|
devAddDialog = nullptr;
|
||||||
|
dev = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDRDevicesDialog::OnClose( wxCloseEvent& event ) {
|
void SDRDevicesDialog::OnClose( wxCloseEvent& event ) {
|
||||||
|
@ -34,7 +34,7 @@ private:
|
|||||||
std::vector<SDRDeviceInfo *>::iterator devs_i;
|
std::vector<SDRDeviceInfo *>::iterator devs_i;
|
||||||
std::map<wxTreeItemId, SDRDeviceInfo *> devItems;
|
std::map<wxTreeItemId, SDRDeviceInfo *> devItems;
|
||||||
std::map<wxTreeItemId, SDRDeviceInfo *>::iterator devItems_i;
|
std::map<wxTreeItemId, SDRDeviceInfo *>::iterator devItems_i;
|
||||||
SDRDeviceInfo *dev = NULL;
|
SDRDeviceInfo *dev;
|
||||||
std::vector<wxPGProperty *> props;
|
std::vector<wxPGProperty *> props;
|
||||||
std::map<std::string, wxPGProperty *> devSettings;
|
std::map<std::string, wxPGProperty *> devSettings;
|
||||||
wxTreeItemId selId;
|
wxTreeItemId selId;
|
||||||
|
Loading…
Reference in New Issue
Block a user