summaryrefslogtreecommitdiffstats
path: root/profile-widget
diff options
context:
space:
mode:
Diffstat (limited to 'profile-widget')
-rw-r--r--profile-widget/profilewidget2.cpp2
-rw-r--r--profile-widget/ruleritem.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/profile-widget/profilewidget2.cpp b/profile-widget/profilewidget2.cpp
index f3dfb8ce9..bde470fd7 100644
--- a/profile-widget/profilewidget2.cpp
+++ b/profile-widget/profilewidget2.cpp
@@ -148,7 +148,7 @@ ProfileWidget2::ProfileWidget2(QWidget *parent) : QGraphicsView(parent),
// would like to be able to ASSERT here that PreferencesDialog::loadSettings has been called.
isPlotZoomed = prefs.zoomed_plot; // now it seems that 'prefs' has loaded our preferences
- memset(&plotInfo, 0, sizeof(plotInfo));
+ init_plot_info(&plotInfo);
setupSceneAndFlags();
setupItemSizes();
diff --git a/profile-widget/ruleritem.cpp b/profile-widget/ruleritem.cpp
index f489aa9dd..3e61790ad 100644
--- a/profile-widget/ruleritem.cpp
+++ b/profile-widget/ruleritem.cpp
@@ -17,7 +17,7 @@ RulerNodeItem2::RulerNodeItem2() :
timeAxis(NULL),
depthAxis(NULL)
{
- memset(&pInfo, 0, sizeof(pInfo));
+ init_plot_info(&pInfo);
setRect(-8, -8, 16, 16);
setBrush(QColor(0xff, 0, 0, 127));
setPen(QColor(Qt::red));