From 1e70fb50bcd7fec92732240aa3faba98f300a368 Mon Sep 17 00:00:00 2001 From: Stephen Anthony Date: Sat, 26 Dec 2020 11:19:51 -0330 Subject: [PATCH] Fix compile issue with LoggerDialog. --- src/gui/LoggerDialog.cxx | 5 +++++ src/gui/LoggerDialog.hxx | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/gui/LoggerDialog.cxx b/src/gui/LoggerDialog.cxx index db235b67f..41256ceb1 100644 --- a/src/gui/LoggerDialog.cxx +++ b/src/gui/LoggerDialog.cxx @@ -89,6 +89,11 @@ LoggerDialog::LoggerDialog(OSystem& osystem, DialogContainer& parent, addToFocusList(wid); } +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +LoggerDialog::~LoggerDialog() +{ +} + // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void LoggerDialog::createBrowser(const string& title) { diff --git a/src/gui/LoggerDialog.hxx b/src/gui/LoggerDialog.hxx index eb49b29ff..4addadb84 100644 --- a/src/gui/LoggerDialog.hxx +++ b/src/gui/LoggerDialog.hxx @@ -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);