summaryrefslogtreecommitdiffstats
path: root/qt-ui/profilegraphics.cpp
diff options
context:
space:
mode:
authorGravatar Henrik Brautaset Aronsen <subsurface@henrik.synth.no>2013-05-14 09:28:30 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-05-14 05:24:28 -0400
commitf9598f062cf8684dd92ac56530c3758e3b1a6d9d (patch)
tree32937d06e1caf37b8693fb899f10226b15ab0e71 /qt-ui/profilegraphics.cpp
parentc07e183f1f313316a411cfa4aac09379092add7d (diff)
downloadsubsurface-f9598f062cf8684dd92ac56530c3758e3b1a6d9d.tar.gz
Clean up some typos
Cosmetic commit to clean up some of the annoying typos in qt-ui Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profilegraphics.cpp')
-rw-r--r--qt-ui/profilegraphics.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-ui/profilegraphics.cpp b/qt-ui/profilegraphics.cpp
index 571214f6f..8f25f1932 100644
--- a/qt-ui/profilegraphics.cpp
+++ b/qt-ui/profilegraphics.cpp
@@ -663,7 +663,7 @@ void ProfileGraphicsView::plot_temperature_text()
/* don't print a temperature
* if it's been less than 5min and less than a 2K change OR
* if it's been less than 2min OR if the change from the
- * last print is less than .4K (and therefore less than 1F */
+ * last print is less than .4K (and therefore less than 1F) */
if (((sec < last + 300) && (abs(mkelvin - last_printed_temp) < 2000)) ||
(sec < last + 120) ||
(abs(mkelvin - last_printed_temp) < 400))
@@ -806,7 +806,7 @@ void ProfileGraphicsView::plot_one_event(struct event *ev)
int i, depth = 0;
struct plot_info *pi = &gc.pi;
- /* is plotting this event disabled? */
+ /* is plotting of this event disabled? */
if (ev->name) {
for (i = 0; i < evn_used; i++) {
if (! strcmp(ev->name, ev_namelist[i].ev_name)) {