diff options
Diffstat (limited to 'audio/quelcom/files/patch-lib::qwav.hh')
-rw-r--r-- | audio/quelcom/files/patch-lib::qwav.hh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/audio/quelcom/files/patch-lib::qwav.hh b/audio/quelcom/files/patch-lib::qwav.hh new file mode 100644 index 000000000000..030ef42f266c --- /dev/null +++ b/audio/quelcom/files/patch-lib::qwav.hh @@ -0,0 +1,17 @@ +--- lib/qwav.hh.orig Fri Feb 23 21:29:12 2001 ++++ lib/qwav.hh Fri Feb 13 19:17:38 2004 +@@ -28,6 +28,14 @@ + qwav (string filename, u_int32_t flags = READ); + + /*! ++ * copy constructor, ensuring that both the qfile and qwavheader ++ * superclasses get copied (qwavheader needs a deep copy) ++ */ ++ qwav(const qwav &w) ++ :qfile(w),qwavheader(w) ++ {} ++ ++ /*! + * \brief compares both wavs whether they're compatible or not + * \param wav the wav to check for compatibility + * \return whether compatible or not |