summaryrefslogtreecommitdiffstats
path: root/src/formula.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/formula.h')
-rw-r--r--src/formula.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/formula.h b/src/formula.h
index 977ccfe..9edd583 100644
--- a/src/formula.h
+++ b/src/formula.h
@@ -17,7 +17,7 @@
#ifndef FORMULA_H
#define FORMULA_H
-#include <qstring.h>
+#include "qtbc.h"
#include <qlist.h>
#include <qdict.h>
@@ -27,11 +27,11 @@ class Formula
Formula(const char *text);
~Formula();
int getId();
- QString getFormulaText() const { return form; }
+ QCString getFormulaText() const { return form; }
private:
int number;
- QString form;
+ QCString form;
};
class FormulaList : public QList<Formula>