1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 08:09:32 +02:00

Get rid of unused copy constructor that's "fatal" to call (although it didn't crash, just frightened the user!).

This commit is contained in:
v.audacity 2010-09-09 22:15:21 +00:00
parent 1a05037beb
commit a46081d5b5

View File

@ -59,12 +59,6 @@ WX_DEFINE_USER_EXPORTED_ARRAY_PTR(WaveClip*, WaveClipArray, class AUDACITY_DLL_A
class AUDACITY_DLL_API WaveClip: public XMLTagHandler class AUDACITY_DLL_API WaveClip: public XMLTagHandler
{ {
private:
WaveClip(const WaveClip&)
{
wxMessageBox(wxT("Fatal error - please report to audacity-devel@lists.sourceforge.net\n"));
}
public: public:
// typical constructor // typical constructor
WaveClip(DirManager *projDirManager, sampleFormat format, int rate); WaveClip(DirManager *projDirManager, sampleFormat format, int rate);