SVN commit 1244239 by tpearson: Fix rosegarden FTBFS under gcc4.6 M +1 -1 NotationTypes.cpp --- branches/trinity/applications/rosegarden/src/base/NotationTypes.cpp #1244238:1244239 @@ -566,7 +566,7 @@ return result; } -Key::Key Key::transpose(int pitchDelta, int heightDelta) +Key Key::transpose(int pitchDelta, int heightDelta) { Pitch tonic(getTonicPitch()); Pitch newTonic = tonic.transpose(*this, pitchDelta, heightDelta);