MemoryWindow: Make constructor explicit
This commit is contained in:
parent
7941a05a80
commit
402faf3758
|
@ -23,8 +23,9 @@ class wxRadioButton;
|
||||||
class CMemoryWindow : public wxPanel
|
class CMemoryWindow : public wxPanel
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CMemoryWindow(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition,
|
explicit CMemoryWindow(wxWindow* parent, wxWindowID id = wxID_ANY,
|
||||||
const wxSize& size = wxDefaultSize, long style = wxTAB_TRAVERSAL | wxBORDER_NONE,
|
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||||
|
long style = wxTAB_TRAVERSAL | wxBORDER_NONE,
|
||||||
const wxString& name = _("Memory"));
|
const wxString& name = _("Memory"));
|
||||||
|
|
||||||
void Repopulate();
|
void Repopulate();
|
||||||
|
|
Loading…
Reference in New Issue