diff options
author | aneejit1 <aneejit1@gmail.com> | 2020-11-11 00:22:16 +0000 |
---|---|---|
committer | aneejit1 <aneejit1@gmail.com> | 2020-11-13 15:13:37 +0000 |
commit | 208f77024e5231bffa800964b1123cbde8fa3f29 (patch) | |
tree | ec19896681c321fd70d52befdcea62559597eeb4 /src/qalculateplotdialog.h | |
parent | 7cbf6dffbb0ec5521db6136b39d35fd9e98663ee (diff) | |
download | qalculate-tde-208f77024e5231bffa800964b1123cbde8fa3f29.tar.gz qalculate-tde-208f77024e5231bffa800964b1123cbde8fa3f29.zip |
Fix undeclared declarations of string/vector/list; prefix declarations with 'std::'
Signed-off-by: aneejit1 <aneejit1@gmail.com>
Diffstat (limited to 'src/qalculateplotdialog.h')
-rw-r--r-- | src/qalculateplotdialog.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/qalculateplotdialog.h b/src/qalculateplotdialog.h index 4d8e9b8..c35ac53 100644 --- a/src/qalculateplotdialog.h +++ b/src/qalculateplotdialog.h @@ -20,6 +20,8 @@ #ifndef QALCULATEPLOTDIALOG_H #define QALCULATEPLOTDIALOG_H +#include <vector> +#include <string> #include <kdialogbase.h> #include <tqmap.h> #include <tqstring.h> @@ -63,8 +65,8 @@ public: TQTabWidget *tabs; TDEListView *seriesView; - bool generatePlot(PlotParameters &pp, vector<MathStructure> &y_vectors, vector<MathStructure> &x_vectors, vector<PlotDataParameters*> &pdps); - void generatePlotSeries(MathStructure **x_vector, MathStructure **y_vector, int type, string str, string str_x); + bool generatePlot(PlotParameters &pp, std::vector<MathStructure> &y_vectors, std::vector<MathStructure> &x_vectors, std::vector<PlotDataParameters*> &pdps); + void generatePlotSeries(MathStructure **x_vector, MathStructure **y_vector, int type, std::string str, std::string str_x); TQMap<TQListViewItem*, int> itemStyle; TQMap<TQListViewItem*, int> itemSmoothing; |