Fixed compile errors in gcc/clang.

This commit is contained in:
Stephen Anthony 2017-10-04 13:06:28 -02:30
parent 486d95d951
commit 17f88515a7
2 changed files with 3 additions and 3 deletions

View File

@ -449,7 +449,7 @@ bool Debugger::rewindState()
mySystem.clearDirtyPages();
unlockBankswitchState();
bool result = r.rewindEmulationState();
bool result = r.rewindState();
lockBankswitchState();
myDialog->rewindButton().setEnabled(!r.empty());

View File

@ -95,8 +95,8 @@ class GuiObject : public CommandReceiver
/** Redraw the focus list */
virtual void redrawFocus() { }
/** special character for menues */
const string& ELLIPSIS = "\x1d";
/** Special character for menues */
const string ELLIPSIS = "\x1d";
protected:
virtual void releaseFocus() = 0;