summaryrefslogtreecommitdiff
path: root/muse2/muse/audiotrack.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/audiotrack.cpp
parent2eb289165d87efd3dd3b78ed6b0876cd4c17b4c6 (diff)
Removed more namespace artifacts. Searched on "MusEGlobal "MusEConfig etc.
Diffstat (limited to 'muse2/muse/audiotrack.cpp')
-rw-r--r--muse2/muse/audiotrack.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/muse2/muse/audiotrack.cpp b/muse2/muse/audiotrack.cpp
index 551b640d..0ed6b1b3 100644
--- a/muse2/muse/audiotrack.cpp
+++ b/muse2/muse/audiotrack.cpp
@@ -899,7 +899,7 @@ void AudioTrack::writeProperties(int level, Xml& xml) const
Track::writeProperties(level, xml);
xml.intTag(level, "prefader", prefader());
xml.intTag(level, "sendMetronome", sendMetronome());
- xml.intTag(level, "MusEGlobal::automation", int(automationType()));
+ xml.intTag(level, "automation", int(automationType()));
if (hasAuxSend()) {
int naux = song->auxs()->size();
for (int idx = 0; idx < naux; ++idx) {
@@ -1003,7 +1003,7 @@ bool AudioTrack::readProperties(Xml& xml, const QString& tag)
_prefader = xml.parseInt();
else if (tag == "sendMetronome")
_sendMetronome = xml.parseInt();
- else if (tag == "MusEGlobal::automation")
+ else if (tag == "automation")
setAutomationType(AutomationType(xml.parseInt()));
// Removed by T356
// "recfile" tag not saved anymore