diff options
author | aneejit1 <[email protected]> | 2020-11-11 00:22:16 +0000 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-11-14 13:31:00 +0800 |
commit | acc3790c3c38df02937fdfea6b97de2c622b3c0d (patch) | |
tree | 298b95fab65d0ed107048b1d0a6940061de28e1e /src/qalculateeditmatrixvectordialog.cpp | |
parent | ec5a7752bc558117da4ae0c181109cf67d888a51 (diff) | |
download | qalculate-tde-acc3790c3c38df02937fdfea6b97de2c622b3c0d.tar.gz qalculate-tde-acc3790c3c38df02937fdfea6b97de2c622b3c0d.zip |
Fix undeclared declarations of string/vector/list; prefix declarations with 'std::'
Signed-off-by: aneejit1 <[email protected]>
(cherry picked from commit 208f77024e5231bffa800964b1123cbde8fa3f29)
Diffstat (limited to 'src/qalculateeditmatrixvectordialog.cpp')
-rw-r--r-- | src/qalculateeditmatrixvectordialog.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qalculateeditmatrixvectordialog.cpp b/src/qalculateeditmatrixvectordialog.cpp index 578f06b..1a65a48 100644 --- a/src/qalculateeditmatrixvectordialog.cpp +++ b/src/qalculateeditmatrixvectordialog.cpp @@ -21,6 +21,7 @@ #include "qalculate_tde_utils.h" #include "qalculateeditnamesdialog.h" +#include <string> #include <tqgrid.h> #include <klineedit.h> #include <tqpushbutton.h> @@ -177,7 +178,7 @@ KnownVariable *QalculateEditMatrixVectorDialog::newMatrix(TQString category) { } void QalculateEditMatrixVectorDialog::slotOk() { - string str = nameEdit->text().ascii(); + std::string str = nameEdit->text().ascii(); remove_blank_ends(str); if(str.empty() && (!names_edit_dialog || names_edit_dialog->isEmpty())) { //no name -- open dialog again @@ -202,7 +203,7 @@ void QalculateEditMatrixVectorDialog::slotOk() { int c = columnsBox->value(); if(vectorButton->isChecked()) { mstruct_new.clearVector(); - string str2; + std::string str2; for(int index_r = 0; index_r < r; index_r++) { for(int index_c = 0; index_c < c; index_c++) { if(!elementsTable->text(index_r, index_c).isEmpty()) { |