From kde-commits Sun Jul 31 22:56:20 2011 From: Timothy Pearson Date: Sun, 31 Jul 2011 22:56:20 +0000 To: kde-commits Subject: branches/trinity/applications/rosegarden/src/base Message-Id: <20110731225620.CF498AC86C () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=131215302322014 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);