Skip to content

Commit d1cced7

Browse files
committedJun 21, 2018
typo fixes
1 parent 6eeaca5 commit d1cced7

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed
 

‎scripts/spell_check/spelling.dat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4501,6 +4501,7 @@ modfying:modifying
45014501
modifed:modified
45024502
modifes:modifies
45034503
modifing:modifying
4504+
modifer:modifier
45044505
modle:model
45054506
moduel:module
45064507
moduels:modules

‎src/gui/layout/qgslayoutviewtoolselect.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ void QgsLayoutViewToolSelect::layoutReleaseEvent( QgsLayoutViewMouseEvent *event
178178
bool subtractingSelection = false;
179179
if ( event->modifiers() & Qt::ShiftModifier )
180180
{
181-
//shift modifer means adding to selection, nothing required here
181+
//shift modifier means adding to selection, nothing required here
182182
}
183183
else if ( event->modifiers() & Qt::ControlModifier )
184184
{

‎src/gui/qgsadvanceddigitizingdockwidget.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ bool QgsAdvancedDigitizingDockWidget::filterKeyPress( QKeyEvent *e )
806806
{
807807
case Qt::Key_X:
808808
{
809-
// modifer+x ONLY caught for ShortcutOverride events...
809+
// modifier+x ONLY caught for ShortcutOverride events...
810810
if ( type == QEvent::ShortcutOverride && ( e->modifiers() == Qt::AltModifier || e->modifiers() == Qt::ControlModifier ) )
811811
{
812812
mXConstraint->toggleLocked();
@@ -833,7 +833,7 @@ bool QgsAdvancedDigitizingDockWidget::filterKeyPress( QKeyEvent *e )
833833
}
834834
case Qt::Key_Y:
835835
{
836-
// modifer+y ONLY caught for ShortcutOverride events...
836+
// modifier+y ONLY caught for ShortcutOverride events...
837837
if ( type == QEvent::ShortcutOverride && ( e->modifiers() == Qt::AltModifier || e->modifiers() == Qt::ControlModifier ) )
838838
{
839839
mYConstraint->toggleLocked();
@@ -860,7 +860,7 @@ bool QgsAdvancedDigitizingDockWidget::filterKeyPress( QKeyEvent *e )
860860
}
861861
case Qt::Key_A:
862862
{
863-
// modifer+a ONLY caught for ShortcutOverride events...
863+
// modifier+a ONLY caught for ShortcutOverride events...
864864
if ( type == QEvent::ShortcutOverride && ( e->modifiers() == Qt::AltModifier || e->modifiers() == Qt::ControlModifier ) )
865865
{
866866
if ( mCapacities.testFlag( AbsoluteAngle ) )
@@ -890,7 +890,7 @@ bool QgsAdvancedDigitizingDockWidget::filterKeyPress( QKeyEvent *e )
890890
}
891891
case Qt::Key_D:
892892
{
893-
// modifer+d ONLY caught for ShortcutOverride events...
893+
// modifier+d ONLY caught for ShortcutOverride events...
894894
if ( type == QEvent::ShortcutOverride && ( e->modifiers() == Qt::AltModifier || e->modifiers() == Qt::ControlModifier ) )
895895
{
896896
if ( mCapacities.testFlag( RelativeCoordinates ) )

0 commit comments

Comments
 (0)
Please sign in to comment.