Skip to content

Commit 17e7861

Browse files
author
jef
committed
fix compile error
git-svn-id: http://svn.osgeo.org/qgis/trunk@10733 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 875bc15 commit 17e7861

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/app/qgsshortcutsmanager.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ bool QgsShortcutsManager::registerAction( QAction* action, QString defaultShortc
5050
bool QgsShortcutsManager::unregisterAction( QAction* action )
5151
{
5252
mActions.remove( action );
53+
return true;
5354
}
5455

5556
QList<QAction*> QgsShortcutsManager::listActions()
@@ -75,6 +76,7 @@ bool QgsShortcutsManager::setActionShortcut( QAction* action, QString shortcut )
7576
// save to settings
7677
QSettings settings;
7778
settings.setValue("/shortcuts/"+actionText, shortcut );
79+
return true;
7880
}
7981

8082
QAction* QgsShortcutsManager::actionForShortcut( QKeySequence s )

0 commit comments

Comments
 (0)