aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/qcustomplot.cpp
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-12-23 15:53:13 +0000
committerBill Meier <wmeier@newsguy.com>2013-12-23 15:53:13 +0000
commit8ab9c55618a99417b4972f37ab3ee7da58cca0cf (patch)
tree24e3464ee075e7289b2ad4a7e554b251e6355e0b /ui/qt/qcustomplot.cpp
parenteecbfd1f3bf613704c043f79543eb5133a046f1d (diff)
From Ville Skyttä: Spelling Fixes
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9591 svn path=/trunk/; revision=54387
Diffstat (limited to 'ui/qt/qcustomplot.cpp')
-rw-r--r--ui/qt/qcustomplot.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/ui/qt/qcustomplot.cpp b/ui/qt/qcustomplot.cpp
index 1585755c9b..789eec05b0 100644
--- a/ui/qt/qcustomplot.cpp
+++ b/ui/qt/qcustomplot.cpp
@@ -5595,7 +5595,7 @@ int QCPAxis::calculateAutoSubTickCount(double tickStep) const
case 9: result = 4; break; // 9.5 -> 1.9 substep
}
}
- // if mantissa fraction isnt 0.0 or 0.5, don't bother finding good sub tick marks, leave default
+ // if mantissa fraction isn't 0.0 or 0.5, don't bother finding good sub tick marks, leave default
}
return result;
@@ -6313,7 +6313,7 @@ int QCPAxis::calculateMargin()
if (mCachedMarginValid)
return mCachedMargin;
- // run through similar steps as QCPAxis::draw, and caluclate margin needed to fit axis and its labels
+ // run through similar steps as QCPAxis::draw, and calculate margin needed to fit axis and its labels
int margin = 0;
if (mVisible)
@@ -10415,7 +10415,7 @@ void QCustomPlot::draw(QCPPainter *painter)
the viewport with the provided \a painter. The scaled version is buffered in
mScaledBackgroundPixmap to prevent expensive rescaling at every redraw. It is only updated, when
the axis rect has changed in a way that requires a rescale of the background pixmap (this is
- dependant on the \ref setBackgroundScaledMode), or when a differend axis backgroud pixmap was
+ dependent on the \ref setBackgroundScaledMode), or when a different axis background pixmap was
set.
Note that this function does not draw a fill with the background brush (\ref setBackground(const
@@ -17364,7 +17364,7 @@ void QCPAxisRect::setRangeZoomFactor(double factor)
the axis rect with the provided \a painter. The scaled version is buffered in
mScaledBackgroundPixmap to prevent expensive rescaling at every redraw. It is only updated, when
the axis rect has changed in a way that requires a rescale of the background pixmap (this is
- dependant on the \ref setBackgroundScaledMode), or when a differend axis backgroud pixmap was
+ dependent on the \ref setBackgroundScaledMode), or when a different axis background pixmap was
set.
\see setBackground, setBackgroundScaled, setBackgroundScaledMode
@@ -17528,7 +17528,7 @@ void QCPAxisRect::mouseReleaseEvent(QMouseEvent *event)
Event handler for mouse wheel events. If rangeZoom is Qt::Horizontal, Qt::Vertical or both, the
ranges of the axes defined as rangeZoomHorzAxis and rangeZoomVertAxis are scaled. The center of
the scaling operation is the current cursor position inside the axis rect. The scaling factor is
- dependant on the mouse wheel delta (which direction the wheel was rotated) to provide a natural
+ dependent on the mouse wheel delta (which direction the wheel was rotated) to provide a natural
zooming feel. The Strength of the zoom can be controlled via \ref setRangeZoomFactor.
Note, that event->delta() is usually +/-120 for single rotation steps. However, if the mouse
@@ -18241,7 +18241,7 @@ bool QCPLegend::hasItemWithPlottable(const QCPAbstractPlottable *plottable) cons
/*!
Adds \a item to the legend, if it's not present already.
- Returns true on sucess, i.e. if the item wasn't in the list already and has been successfuly added.
+ Returns true on success, i.e. if the item wasn't in the list already and has been successfuly added.
The legend takes ownership of the item.
*/