--- nono/wx/wxlcdwindow.h 2026/04/29 17:05:16 1.1.1.8 +++ nono/wx/wxlcdwindow.h 2026/04/29 17:05:27 1.1.1.9 @@ -21,8 +21,8 @@ class WXLCDPanel : public WXTextPanel { using inherited = WXTextPanel; public: - WXLCDPanel(wxWindow *parent); - virtual ~WXLCDPanel() override; + explicit WXLCDPanel(wxWindow *parent); + ~WXLCDPanel() override; void FontChanged() override; @@ -45,8 +45,8 @@ class WXLCDWindow : public WXSubWindow { using inherited = WXSubWindow; public: - WXLCDWindow(wxWindow *parent); - virtual ~WXLCDWindow() override; + explicit WXLCDWindow(wxWindow *parent); + ~WXLCDWindow() override; private: WXLCDPanel *panel {}; @@ -57,8 +57,8 @@ class WXLCDCharPanel : public WXTextPane { using inherited = WXTextPanel; public: - WXLCDCharPanel(wxWindow *parent); - virtual ~WXLCDCharPanel() override; + explicit WXLCDCharPanel(wxWindow *parent); + ~WXLCDCharPanel() override; void FontChanged() override; @@ -77,8 +77,8 @@ class WXLCDMonitor : public WXSubWindow { using inherited = WXSubWindow; public: - WXLCDMonitor(wxWindow *parent); - virtual ~WXLCDMonitor() override; + explicit WXLCDMonitor(wxWindow *parent); + ~WXLCDMonitor() override; private: WXMonitorPanel *monpanel {};