From 888aa393d6f546bce7cc465b516a20fcea7f4f6e Mon Sep 17 00:00:00 2001 From: thrust26 Date: Sun, 5 May 2019 12:49:37 +0200 Subject: [PATCH] add missing include --- src/gui/StellaSettingsDialog.hxx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/gui/StellaSettingsDialog.hxx b/src/gui/StellaSettingsDialog.hxx index 919e8b10e..bff738c7b 100644 --- a/src/gui/StellaSettingsDialog.hxx +++ b/src/gui/StellaSettingsDialog.hxx @@ -19,19 +19,19 @@ #define STELLA_OPTIONS_DIALOG_HXX class PopUpWidget; -// FIXME - use the R77 define in the final release -// use the '1' define for testing -#if defined(RETRON77) -// #if 1 -class R77HelpDialog; -#else -class HelpDialog; -#endif #include "Props.hxx" #include "Menu.hxx" #include "Dialog.hxx" #include "MessageBox.hxx" +// FIXME - use the R77 define in the final release +// use the '1' define for testing +#if defined(RETRON77) +// #if 1 +#include "R77HelpDialog.hxx" +#else +#include "HelpDialog.hxx" +#endif namespace GUI { class Font;