From 9e35225b98a13b6c39d689267ad97c2460a72040 Mon Sep 17 00:00:00 2001 From: lm Date: Wed, 18 Aug 2010 18:12:27 +0200 Subject: [PATCH] Fixed stupid compile error --- src/ui/linechart/IncrementalPlot.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ui/linechart/IncrementalPlot.h b/src/ui/linechart/IncrementalPlot.h index 9ef97dc..53df82d 100644 --- a/src/ui/linechart/IncrementalPlot.h +++ b/src/ui/linechart/IncrementalPlot.h @@ -40,11 +40,11 @@ public: virtual ~IncrementalPlot(); /** @brief Get color map of this plot */ - QList IncrementalPlot::getColorMap(); + QList getColorMap(); /** @brief Get next color of color map */ - QColor IncrementalPlot::getNextColor(); + QColor getNextColor(); /** @brief Get color for curve id */ - QColor IncrementalPlot::getColorForCurve(QString id); + QColor getColorForCurve(QString id); public slots: void appendData(QString key, double x, double y);