diff options
author | Florian Jung <flo@windfisch.org> | 2013-09-12 18:51:31 +0200 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2013-09-12 18:51:31 +0200 |
commit | 181cdf038cb3721e14b0d74cd9e7049472686917 (patch) | |
tree | 684a715ab04af33be6f9b2f8666a092ab4db32cc /muse2 | |
parent | 77411cc3079994d19b920af15d0b858bb66e19fe (diff) |
cleanup
Diffstat (limited to 'muse2')
-rw-r--r-- | muse2/muse/songfile.cpp | 43 |
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 //--------------------------------------------------------- |