Don't initalise favorite to 0 (it's a a wxString).

Originally committed to SVN as r2799.
This commit is contained in:
Amar Takhar 2009-04-15 20:11:53 +00:00
parent 918945e03b
commit 50b7f33117
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ public:
void SetVolume(double vol) { volume = vol; }
double GetVolume() { return volume; }
wxArrayString GetOutputDevices(wxString favorite=0);
wxArrayString GetOutputDevices(wxString favorite);
wxMutex *GetMutex() { return &PAMutex; }
};