summaryrefslogtreecommitdiff
path: root/muse2/muse/songfile.cpp
diff options
context:
space:
mode:
authorTim E. Real <termtech@rogers.com>2011-09-10 06:26:40 +0000
committerTim E. Real <termtech@rogers.com>2011-09-10 06:26:40 +0000
commit3aebd96dcb60c438330e72d171f0182650a0f3b1 (patch)
treef842466e659a6381ddb8f29e43462e2d872b8ada /muse2/muse/songfile.cpp
parent2eb289165d87efd3dd3b78ed6b0876cd4c17b4c6 (diff)
Removed more namespace artifacts. Searched on "MusEGlobal "MusEConfig etc.
Diffstat (limited to 'muse2/muse/songfile.cpp')
-rw-r--r--muse2/muse/songfile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/muse2/muse/songfile.cpp b/muse2/muse/songfile.cpp
index 0f2f3527..9678b99b 100644
--- a/muse2/muse/songfile.cpp
+++ b/muse2/muse/songfile.cpp
@@ -1442,7 +1442,7 @@ void Song::read(Xml& xml, bool isTemplate)
readMarker(xml);
else if (tag == "globalPitchShift")
_globalPitchShift = xml.parseInt();
- else if (tag == "MusEGlobal::automation")
+ else if (tag == "automation")
MusEGlobal::automation = xml.parseInt();
else if (tag == "cpos") {
int pos = xml.parseInt();
@@ -1490,7 +1490,7 @@ void Song::write(int level, Xml& xml) const
xml.tag(level++, "song");
xml.strTag(level, "info", songInfoStr);
xml.intTag(level, "showinfo", showSongInfo);
- xml.intTag(level, "MusEGlobal::automation", MusEGlobal::automation);
+ xml.intTag(level, "automation", MusEGlobal::automation);
xml.intTag(level, "cpos", song->cpos());
xml.intTag(level, "rpos", song->rpos());
xml.intTag(level, "lpos", song->lpos());