diff options
| author | aneejit1 <aneejit1@gmail.com> | 2020-11-11 00:22:16 +0000 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-11-14 13:31:00 +0800 |
| commit | acc3790c3c38df02937fdfea6b97de2c622b3c0d (patch) | |
| tree | 298b95fab65d0ed107048b1d0a6940061de28e1e /src/qalculateplotdialog.h | |
| parent | ec5a7752bc558117da4ae0c181109cf67d888a51 (diff) | |
| download | qalculate-tde-acc3790c.tar.gz qalculate-tde-acc3790c.zip | |
Fix undeclared declarations of string/vector/list; prefix declarations with 'std::'
Signed-off-by: aneejit1 <aneejit1@gmail.com>
(cherry picked from commit 208f77024e5231bffa800964b1123cbde8fa3f29)
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; |
