1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 07:39:42 +02:00

Fix another initialization order warning. There's still an

"unused variable" warning but I need to investigate before
just ripping it out.
This commit is contained in:
BusinessmanProgrammerSteve 2010-04-24 17:19:08 +00:00
parent d01839c89d
commit 41dc1f2f6c

View File

@ -58,7 +58,7 @@ END_EVENT_TABLE()
ExtImportPrefs::ExtImportPrefs(wxWindow * parent)
: PrefsPanel(parent, _("Extended Import")), RuleTable(NULL),
PluginList(NULL), mCreateTable (false), mDragFocus (NULL),
last_selected (-1), mFakeKeyEvent (false), mStopRecursiveSelection (false)
mFakeKeyEvent (false), mStopRecursiveSelection (false), last_selected (-1)
{
dragtext1 = new wxTextDataObject(wxT(""));
dragtext2 = new wxTextDataObject(wxT(""));