zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit 2fc8221cf15f109abe2f88ae6972a0da196dddf3
parent 5edceedcc1deb8e2e88f22f6c4193709c45f27b8
Author: fundamental <mark.d.mccurry@gmail.com>
Date:   Thu, 13 May 2010 18:18:19 -0400

Fixing merge

Diffstat:
Msrc/Params/PresetsStore.cpp | 2+-
Msrc/Params/PresetsStore.h | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/Params/PresetsStore.cpp b/src/Params/PresetsStore.cpp @@ -138,7 +138,7 @@ void PresetsStore::rescanforpresets(string type) } -void PresetsStore::copypreset(XMLwrapper *xml, char *type, const string name) +void PresetsStore::copypreset(XMLwrapper *xml, char *type, string name) { if(config.cfg.presetsDirList[0].empty()) return; diff --git a/src/Params/PresetsStore.h b/src/Params/PresetsStore.h @@ -39,7 +39,7 @@ class PresetsStore bool checkclipboardtype(char *type); //presets stuff - void copypreset(XMLwrapper *xml, char *type, const std::string name); + void copypreset(XMLwrapper *xml, char *type, std::string name); bool pastepreset(XMLwrapper *xml, int npreset); void deletepreset(int npreset);