summaryrefslogtreecommitdiff
path: root/muse2/muse/widgets/copy_on_write.cpp
diff options
context:
space:
mode:
authorTim E. Real <termtech@rogers.com>2012-09-17 07:49:10 +0000
committerTim E. Real <termtech@rogers.com>2012-09-17 07:49:10 +0000
commitef0a06629a9d4652b3a91d85af768e7e5797fe2a (patch)
tree1fe845ff5e8e6390883b6177b6f34feaf7f9736c /muse2/muse/widgets/copy_on_write.cpp
parentf783083862fa7a71f7774a14176e4a6bbbe324f9 (diff)
Introducing Copy On Write for waves. See ChangeLog.
Diffstat (limited to 'muse2/muse/widgets/copy_on_write.cpp')
-rw-r--r--muse2/muse/widgets/copy_on_write.cpp39
1 files changed, 39 insertions, 0 deletions
diff --git a/muse2/muse/widgets/copy_on_write.cpp b/muse2/muse/widgets/copy_on_write.cpp
new file mode 100644
index 00000000..53e79a91
--- /dev/null
+++ b/muse2/muse/widgets/copy_on_write.cpp
@@ -0,0 +1,39 @@
+//=========================================================
+// MusE
+// Linux Music Editor
+// copy_on_write.cpp
+// (C) Copyright 2012 Tim E. Real (terminator356 on users dot sourceforge dot net)
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; version 2 of
+// the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+//
+//=========================================================
+
+#include "copy_on_write.h"
+
+namespace MusEGui {
+
+CopyOnWriteDialog::CopyOnWriteDialog(QWidget* parent): QDialog(parent)
+{
+ setupUi(this);
+
+}
+
+void CopyOnWriteDialog::addProjDirFile(const QString& s)
+{
+ projDirList->addItem(s);
+}
+
+
+} // namespace MusEGui \ No newline at end of file