##// END OF EJS Templates
Fixes Windows compilation
Alexandre Leroux -
r237:4aa09749c958
parent child
Show More
@@ -67,8 +67,7 void VisualizationGraphWidget::addVariable(std::shared_ptr<Variable> variable)
67 67 impl->m_VariableToPlotMultiMap.insert({variable, createdPlottable});
68 68 }
69 69
70 connect(variable.get(), &Variable::dataCacheUpdated, this,
71 &VisualizationGraphWidget::onDataCacheVariableUpdated);
70 connect(variable.get(), SIGNAL(dataCacheUpdated()), this, SLOT(onDataCacheVariableUpdated()));
72 71 }
73 72
74 73 void VisualizationGraphWidget::accept(IVisualizationWidgetVisitor *visitor)
@@ -45,7 +45,7 void CosinusProvider::requestDataLoading(const QVector<SqpDateTime> &dateTimeLis
45 45 }
46 46
47 47
48 std::shared_ptr<IDataSeries> retrieveDataSeries(const SqpDateTime &dateTime)
48 std::shared_ptr<IDataSeries> CosinusProvider::retrieveDataSeries(const SqpDateTime &dateTime)
49 49 {
50 50
51 51 // Gets the timerange from the parameters
General Comments 0
You need to be logged in to leave comments. Login now