summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2013-09-12 18:51:31 +0200
committerFlorian Jung <flo@windfisch.org>2013-09-12 18:51:31 +0200
commit181cdf038cb3721e14b0d74cd9e7049472686917 (patch)
tree684a715ab04af33be6f9b2f8666a092ab4db32cc
parent77411cc3079994d19b920af15d0b858bb66e19fe (diff)
cleanup
-rw-r--r--muse2/muse/songfile.cpp43
1 files changed, 0 insertions, 43 deletions
diff --git a/muse2/muse/songfile.cpp b/muse2/muse/songfile.cpp
index 680e4dcd..78338bac 100644
--- a/muse2/muse/songfile.cpp
+++ b/muse2/muse/songfile.cpp
@@ -56,49 +56,6 @@ MusECore::CloneList cloneList;
namespace MusECore {
-/* DELETETHIS 42
-//---------------------------------------------------------
-// updateCloneList
-//---------------------------------------------------------
-
-void updateCloneList(Part* oPart, Part* nPart)
-{
- for(iClone i = MusEGlobal::cloneList.begin(); i != MusEGlobal::cloneList.end(); ++i)
- {
- if(i->cp == oPart)
- {
- i->cp = nPart;
- break;
- }
- }
-}
-
-void updateCloneList(PartList* oParts, PartList* nParts)
-{
- for(iPart ip = oParts->begin(); ip != oParts->end(); ++ip)
- {
- for(iClone i = MusEGlobal::cloneList.begin(); i != MusEGlobal::cloneList.end(); ++i)
- {
- if(i->cp == oPart)
- {
- i->cp = nPart;
- break;
- }
- }
- }
-}
-
-//---------------------------------------------------------
-// clearClipboardAndCloneList
-//---------------------------------------------------------
-
-void clearClipboardAndCloneList()
-{
- //QApplication::clipboard()->clear(QClipboard::Clipboard);
- MusEGlobal::cloneList.clear();
-}
-*/
-
//---------------------------------------------------------
// NKey::write
//---------------------------------------------------------