mirror of https://github.com/stella-emu/stella.git
Fix compile issue with LoggerDialog.
This commit is contained in:
parent
3e0f2bc56d
commit
1e70fb50bc
|
@ -89,6 +89,11 @@ LoggerDialog::LoggerDialog(OSystem& osystem, DialogContainer& parent,
|
|||
addToFocusList(wid);
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
LoggerDialog::~LoggerDialog()
|
||||
{
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
void LoggerDialog::createBrowser(const string& title)
|
||||
{
|
||||
|
|
|
@ -33,7 +33,7 @@ class LoggerDialog : public Dialog
|
|||
LoggerDialog(OSystem& osystem, DialogContainer& parent,
|
||||
const GUI::Font& font, int max_w, int max_h,
|
||||
bool useLargeFont = true);
|
||||
~LoggerDialog() override = default;
|
||||
~LoggerDialog() override;
|
||||
|
||||
private:
|
||||
void createBrowser(const string& title);
|
||||
|
|
Loading…
Reference in New Issue