diff --git a/GUI/coregui/Models/Data1DViewItem.cpp b/GUI/coregui/Models/Data1DViewItem.cpp index ff285ab0dbc8b47c96ef00ff6a371a5af6382dca..548fbadffd357ed05a5caf389d167ebf75366c8e 100644 --- a/GUI/coregui/Models/Data1DViewItem.cpp +++ b/GUI/coregui/Models/Data1DViewItem.cpp @@ -155,8 +155,18 @@ QPair<QVector<double>, QVector<double>> Data1DViewItem::graphData(Data1DProperti const auto data = DataViewUtils::getTranslatedData(this, property_item->dataItem()); if (!data) return {}; + +#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0) + auto centers = data->getAxis(0).getBinCenters(); + auto values = data->getRawDataVector(); + return {QVector<double>(centers.begin(), centers.end()), + QVector<double>(values.begin(), values.end())}; +#else return {QVector<double>::fromStdVector(data->getAxis(0).getBinCenters()), QVector<double>::fromStdVector(data->getRawDataVector())}; +#endif + + } JobItem* Data1DViewItem::jobItem() diff --git a/GUI/coregui/Views/IntensityDataWidgets/SaveProjectionsAssistant.cpp b/GUI/coregui/Views/IntensityDataWidgets/SaveProjectionsAssistant.cpp index 8037d7b48d8e4fee2e86512eebfb55ab0af015b0..e0744b47767d4eb4f47c3eaf146a7af00ae006ff 100644 --- a/GUI/coregui/Views/IntensityDataWidgets/SaveProjectionsAssistant.cpp +++ b/GUI/coregui/Views/IntensityDataWidgets/SaveProjectionsAssistant.cpp @@ -126,9 +126,20 @@ SaveProjectionsAssistant::projectionsData(const QString& projectionsType, data.axis_value = item->getItemValue(VerticalLineItem::P_POSX).toDouble(); hist.reset(m_hist2d->projectionY(data.axis_value)); } + +#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0) + auto values = hist->getBinValues(); + auto centers = hist->getBinCenters(); + data.bin_values = QVector<double>(values.begin(), values.end()); + if (result.bin_centers.isEmpty()) + result.bin_centers = QVector<double>(centers.begin(), centers.end()); +#else data.bin_values = QVector<double>::fromStdVector(hist->getBinValues()); if (result.bin_centers.isEmpty()) result.bin_centers = QVector<double>::fromStdVector(hist->getBinCenters()); +#endif + + result.projections.push_back(data); }