Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Replace use of deprecated QShortcut string operator
  • Loading branch information
nyalldawson committed Sep 5, 2017
1 parent 77c4edf commit b196d37
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/gui/qgsshortcutsmanager.cpp
Expand Up @@ -38,7 +38,7 @@ void QgsShortcutsManager::registerAllChildActions( QObject *object, bool recursi
QList< QAction * > actions = object->findChildren< QAction * >();
Q_FOREACH ( QAction *a, actions )
{
registerAction( a, a->shortcut() );
registerAction( a, a->shortcut().toString() );
}
}
else
Expand All @@ -47,7 +47,7 @@ void QgsShortcutsManager::registerAllChildActions( QObject *object, bool recursi
{
if ( QAction *a = qobject_cast<QAction *>( child ) )
{
registerAction( a, a->shortcut() );
registerAction( a, a->shortcut().toString() );
}
}
}
Expand All @@ -60,7 +60,7 @@ void QgsShortcutsManager::registerAllChildShortcuts( QObject *object, bool recur
QList< QShortcut * > shortcuts = object->findChildren< QShortcut * >();
Q_FOREACH ( QShortcut *s, shortcuts )
{
registerShortcut( s, s->key() );
registerShortcut( s, s->key().toString() );
}
}
else
Expand All @@ -69,7 +69,7 @@ void QgsShortcutsManager::registerAllChildShortcuts( QObject *object, bool recur
{
if ( QShortcut *s = qobject_cast<QShortcut *>( child ) )
{
registerShortcut( s, s->key() );
registerShortcut( s, s->key().toString() );
}
}
}
Expand Down

0 comments on commit b196d37

Please sign in to comment.