mirror of https://github.com/stella-emu/stella.git
Fix compile error in clang; something to do with unique_ptr can't have default d'tor.
This commit is contained in:
parent
13c616c4c8
commit
c05fa1989f
|
@ -195,6 +195,11 @@ UIDialog::UIDialog(OSystem& osystem, DialogContainer& parent,
|
||||||
addBGroupToFocusList(wid);
|
addBGroupToFocusList(wid);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
UIDialog::~UIDialog()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
void UIDialog::loadConfig()
|
void UIDialog::loadConfig()
|
||||||
{
|
{
|
||||||
|
|
|
@ -35,7 +35,7 @@ class UIDialog : public Dialog
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
UIDialog(OSystem& osystem, DialogContainer& parent, const GUI::Font& font);
|
UIDialog(OSystem& osystem, DialogContainer& parent, const GUI::Font& font);
|
||||||
virtual ~UIDialog() = default;
|
virtual ~UIDialog();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void loadConfig() override;
|
void loadConfig() override;
|
||||||
|
|
Loading…
Reference in New Issue