mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-11 14:17:43 +02:00
Correct Open() definition
This commit is contained in:
parent
2157b92b7b
commit
32470a4248
@ -111,7 +111,7 @@ class QTImportPlugin final : public ImportPlugin
|
|||||||
wxString GetPluginStringID() { return wxT("quicktime"); }
|
wxString GetPluginStringID() { return wxT("quicktime"); }
|
||||||
|
|
||||||
wxString GetPluginFormatDescription();
|
wxString GetPluginFormatDescription();
|
||||||
ImportFileHandle *Open(wxString Filename);
|
ImportFileHandle *Open(const wxString & Filename);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool mInitialized;
|
bool mInitialized;
|
||||||
@ -173,7 +173,7 @@ wxString QTImportPlugin::GetPluginFormatDescription()
|
|||||||
return DESC;
|
return DESC;
|
||||||
}
|
}
|
||||||
|
|
||||||
ImportFileHandle *QTImportPlugin::Open(wxString Filename)
|
ImportFileHandle *QTImportPlugin::Open(const wxString & Filename)
|
||||||
{
|
{
|
||||||
OSErr err;
|
OSErr err;
|
||||||
FSRef inRef;
|
FSRef inRef;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user