mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 15:49:41 +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:
parent
d01839c89d
commit
41dc1f2f6c
@ -58,7 +58,7 @@ END_EVENT_TABLE()
|
|||||||
ExtImportPrefs::ExtImportPrefs(wxWindow * parent)
|
ExtImportPrefs::ExtImportPrefs(wxWindow * parent)
|
||||||
: PrefsPanel(parent, _("Extended Import")), RuleTable(NULL),
|
: PrefsPanel(parent, _("Extended Import")), RuleTable(NULL),
|
||||||
PluginList(NULL), mCreateTable (false), mDragFocus (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(""));
|
dragtext1 = new wxTextDataObject(wxT(""));
|
||||||
dragtext2 = new wxTextDataObject(wxT(""));
|
dragtext2 = new wxTextDataObject(wxT(""));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user