Fix compile issue with LoggerDialog.

This commit is contained in:
Stephen Anthony 2020-12-26 11:19:51 -03:30
parent 3e0f2bc56d
commit 1e70fb50bc
2 changed files with 6 additions and 1 deletions

View File

@ -89,6 +89,11 @@ LoggerDialog::LoggerDialog(OSystem& osystem, DialogContainer& parent,
addToFocusList(wid);
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LoggerDialog::~LoggerDialog()
{
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void LoggerDialog::createBrowser(const string& title)
{

View File

@ -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);