mirror of https://github.com/stella-emu/stella.git
A few cleanups missed in the previous commits.
This commit is contained in:
parent
733db7250a
commit
767f952e4e
|
@ -22,11 +22,7 @@ SimpleResampler::SimpleResampler(
|
|||
Resampler::Format formatFrom,
|
||||
Resampler::Format formatTo,
|
||||
const Resampler::NextFragmentCallback& nextFragmentCallback)
|
||||
: Resampler(formatFrom, formatTo, nextFragmentCallback),
|
||||
myCurrentFragment(nullptr),
|
||||
myTimeIndex(0),
|
||||
myFragmentIndex(0),
|
||||
myIsUnderrun(true)
|
||||
: Resampler(formatFrom, formatTo, nextFragmentCallback)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -41,11 +41,7 @@ InputTextDialog::InputTextDialog(GuiObject* boss, const GUI::Font& lfont,
|
|||
const GUI::Font& nfont,
|
||||
const StringList& labels, const string& title)
|
||||
: Dialog(boss->instance(), boss->parent(), lfont, title),
|
||||
CommandSender(boss),
|
||||
myEnableCenter(false),
|
||||
myErrorFlag(false),
|
||||
myXOrig(0),
|
||||
myYOrig(0)
|
||||
CommandSender(boss)
|
||||
{
|
||||
initialize(lfont, nfont, labels);
|
||||
}
|
||||
|
|
|
@ -32,7 +32,8 @@ class InputTextDialog : public Dialog, public CommandSender
|
|||
InputTextDialog(GuiObject* boss, const GUI::Font& font,
|
||||
const StringList& labels, const string& title = "");
|
||||
InputTextDialog(GuiObject* boss, const GUI::Font& lfont,
|
||||
const GUI::Font& nfont, const StringList& labels, const string& title = "");
|
||||
const GUI::Font& nfont, const StringList& labels,
|
||||
const string& title = "");
|
||||
virtual ~InputTextDialog() = default;
|
||||
|
||||
/** Place the input dialog onscreen and center it */
|
||||
|
|
Loading…
Reference in New Issue