summaryrefslogtreecommitdiff
path: root/gr-qtgui/lib
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2013-02-14 16:42:50 -0500
committerTom Rondeau <trondeau@vt.edu>2013-02-14 16:42:50 -0500
commit6fba4802b86da547dfcd4bfdb2cc22dfd97e0d16 (patch)
treebd6a231aa9de2ec194aa11f07a070dba3dd5c8d0 /gr-qtgui/lib
parent9e9273c8fdfeb0e673e7de45b10976bedc6111dc (diff)
qtgui: fixed a blank line issue in time raster plots.
Diffstat (limited to 'gr-qtgui/lib')
-rw-r--r--gr-qtgui/lib/timeRasterGlobalData.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-qtgui/lib/timeRasterGlobalData.cc b/gr-qtgui/lib/timeRasterGlobalData.cc
index f3fb804288..556196f644 100644
--- a/gr-qtgui/lib/timeRasterGlobalData.cc
+++ b/gr-qtgui/lib/timeRasterGlobalData.cc
@@ -231,8 +231,8 @@ TimeRasterData::addData(const double* data,
d_nitems += cols;
}
else {
- memmove(d_data, &d_data[cols], d_totalitems*sizeof(double));
memcpy(&d_data[d_nitems], data, cols*sizeof(double));
+ memmove(d_data, &d_data[cols], d_totalitems*sizeof(double));
}
}
}