summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mailit/textparser.h
Side-by-side diff
Diffstat (limited to 'noncore/unsupported/mailit/textparser.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/mailit/textparser.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/noncore/unsupported/mailit/textparser.h b/noncore/unsupported/mailit/textparser.h
index c5e88a0..03bb6d5 100644
--- a/noncore/unsupported/mailit/textparser.h
+++ b/noncore/unsupported/mailit/textparser.h
@@ -40,27 +40,27 @@ struct t_splitLine
{
t_lineType lineType;
QString str; //a bit redundant...
t_splitElm elm[MAX_ELEMENTS];
int elmCount;
};
class TextParser: public QObject
{
Q_OBJECT
public:
- TextParser(QString in, QString lineBreak);
- TextParser(QString in, QString lineBreak, QString sep);
- int find(QString target, QChar sep, int pos, bool upperCase);
+ TextParser(const QString &in, const QString &lineBreak);
+ TextParser(const QString &in, const QString &lineBreak, const QString &sep);
+ int find(const QString &target, QChar sep, int pos, bool upperCase);
int elmCount();
QChar separatorAt(int pos);
QChar nextSeparator();
bool hasNextSeparator();
QString wordAt(int pos);
QString nextWord();
bool hasNextWord();
QString getString(int *pos, QChar stop, bool lineEnd);
QString getNextLine();
bool hasNextLine();
int endLinePos(int pos);