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);
|
addToFocusList(wid);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
LoggerDialog::~LoggerDialog()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
void LoggerDialog::createBrowser(const string& title)
|
void LoggerDialog::createBrowser(const string& title)
|
||||||
{
|
{
|
||||||
|
|
|
@ -33,7 +33,7 @@ class LoggerDialog : public Dialog
|
||||||
LoggerDialog(OSystem& osystem, DialogContainer& parent,
|
LoggerDialog(OSystem& osystem, DialogContainer& parent,
|
||||||
const GUI::Font& font, int max_w, int max_h,
|
const GUI::Font& font, int max_w, int max_h,
|
||||||
bool useLargeFont = true);
|
bool useLargeFont = true);
|
||||||
~LoggerDialog() override = default;
|
~LoggerDialog() override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void createBrowser(const string& title);
|
void createBrowser(const string& title);
|
||||||
|
|
Loading…
Reference in New Issue