From a46081d5b5be5369b578b8c0d2b54c60518c31ee Mon Sep 17 00:00:00 2001 From: "v.audacity" Date: Thu, 9 Sep 2010 22:15:21 +0000 Subject: [PATCH] Get rid of unused copy constructor that's "fatal" to call (although it didn't crash, just frightened the user!). --- src/WaveClip.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/WaveClip.h b/src/WaveClip.h index 157d9785b..4dee2ff50 100644 --- a/src/WaveClip.h +++ b/src/WaveClip.h @@ -59,12 +59,6 @@ WX_DEFINE_USER_EXPORTED_ARRAY_PTR(WaveClip*, WaveClipArray, class AUDACITY_DLL_A 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: // typical constructor WaveClip(DirManager *projDirManager, sampleFormat format, int rate);