File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -501,7 +501,7 @@ bool QgsAdvancedDigitizingDockWidget::applyConstraints( QgsMapMouseEvent* e )
501
501
{
502
502
bool res = true ;
503
503
504
- QgsDebugMsg ( " Contraints (locked / relative / value" );
504
+ QgsDebugMsg ( " Constraints (locked / relative / value" );
505
505
QgsDebugMsg ( QString ( " Angle: %1 %2 %3" ).arg ( mAngleConstraint ->isLocked () ).arg ( mAngleConstraint ->relative () ).arg ( mAngleConstraint ->value () ) );
506
506
QgsDebugMsg ( QString ( " Distance: %1 %2 %3" ).arg ( mDistanceConstraint ->isLocked () ).arg ( mDistanceConstraint ->relative () ).arg ( mDistanceConstraint ->value () ) );
507
507
QgsDebugMsg ( QString ( " X: %1 %2 %3" ).arg ( mXConstraint ->isLocked () ).arg ( mXConstraint ->relative () ).arg ( mXConstraint ->value () ) );
@@ -622,7 +622,7 @@ bool QgsAdvancedDigitizingDockWidget::applyConstraints( QgsMapMouseEvent* e )
622
622
double v = ( point.x () - previousPt.x () ) * cosa + ( point.y () - previousPt.y () ) * sina ;
623
623
if ( mXConstraint ->isLocked () || mYConstraint ->isLocked () )
624
624
{
625
- // perform both to detect errors in contraints
625
+ // perform both to detect errors in constraints
626
626
if ( mXConstraint ->isLocked () )
627
627
{
628
628
if ( cosa == 0 )
@@ -694,7 +694,7 @@ bool QgsAdvancedDigitizingDockWidget::applyConstraints( QgsMapMouseEvent* e )
694
694
{
695
695
if ( mXConstraint ->isLocked () || mYConstraint ->isLocked () )
696
696
{
697
- // perform both to detect errors in contraints
697
+ // perform both to detect errors in constraints
698
698
if ( mXConstraint ->isLocked () )
699
699
{
700
700
const QList<QgsPoint> verticalSegment = QList<QgsPoint>()
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class QToolButton;
27
27
* \class QgsColorWidget
28
28
* A base class for interactive color widgets. Widgets can either allow setting a single component of
29
29
* a color (eg the red or green components), or an entire color. The QgsColorWidget also keeps track of
30
- * any explicitely set hue for the color, so that this information is not lost when the widget is
30
+ * any explicitly set hue for the color, so that this information is not lost when the widget is
31
31
* set to a color with an ambiguous hue (eg black or white shades).
32
32
* \note Added in version 2.5
33
33
*/
You can’t perform that action at this time.
0 commit comments