Skip to content

Commit

Permalink
fix precise build
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Aug 28, 2015
1 parent 0099f22 commit b789fab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/plugins/grass/qtermwidget/TerminalDisplay.cpp
Expand Up @@ -2727,9 +2727,9 @@ bool TerminalDisplay::handleShortcutOverrideEvent(QKeyEvent* keyEvent)
}
if (modifierCount < 2)
{
bool override = false;
emit overrideShortcutCheck(keyEvent,override);
if (override)
bool over_ride = false;
emit overrideShortcutCheck(keyEvent,over_ride);
if (over_ride)
{
keyEvent->accept();
return true;
Expand Down

0 comments on commit b789fab

Please sign in to comment.