From 78a9df6f02bd97c34861278a3c80f2dfdccf20f3 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sun, 31 Jul 2011 22:56:20 +0000 Subject: [PATCH] Fix rosegarden FTBFS under gcc4.6 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1244239 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/base/NotationTypes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/NotationTypes.cpp b/src/base/NotationTypes.cpp index ceddf79..c0ccc91 100644 --- a/src/base/NotationTypes.cpp +++ b/src/base/NotationTypes.cpp @@ -566,7 +566,7 @@ Key::KeyList Key::getKeys(bool minor) 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);