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/qalculateresultdisplay.cpp | |
| 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/qalculateresultdisplay.cpp')
| -rw-r--r-- | src/qalculateresultdisplay.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qalculateresultdisplay.cpp b/src/qalculateresultdisplay.cpp index aea41fa..0c7ccdf 100644 --- a/src/qalculateresultdisplay.cpp +++ b/src/qalculateresultdisplay.cpp @@ -21,6 +21,7 @@ #include "qalculate_tde_utils.h" #include "kqalculate.h" +#include <vector> #include <tdepopupmenu.h> #include <kxmlguifactory.h> #include <kxmlguiclient.h> @@ -32,7 +33,7 @@ #include <tdeapplication.h> #include <tqsimplerichtext.h> -extern vector<mode_struct> modes; +extern std::vector<mode_struct> modes; extern TQString parsed_text; extern KQalculate *mainWin; |
