summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mailit/textparser.cpp
Side-by-side diff
Diffstat (limited to 'noncore/unsupported/mailit/textparser.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/unsupported/mailit/textparser.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/noncore/unsupported/mailit/textparser.cpp b/noncore/unsupported/mailit/textparser.cpp
index 3fa5f6e..e5c9f7c 100644
--- a/noncore/unsupported/mailit/textparser.cpp
+++ b/noncore/unsupported/mailit/textparser.cpp
@@ -10,35 +10,35 @@
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/
#include "textparser.h"
-TextParser::TextParser(QString in, QString lineBreak)
+TextParser::TextParser(const QString &in, const QString &lineBreak)
{
data = in;
lineSep = lineBreak;
init();
createSeparators();
split();
}
-TextParser::TextParser(QString in, QString lineBreak, QString sep)
+TextParser::TextParser(const QString &in, const QString &lineBreak, const QString &sep)
{
data = in;
lineSep = lineBreak;
init();
separators = sep;
split();
}
void TextParser::init()
{
lineCount = 0;
@@ -51,48 +51,48 @@ void TextParser::init()
wordAtLine = 0;
wordAtPosElm = -1; //such that nextWord equals 0
atLine = 0;
atPosElm = 0;
}
void TextParser::createSeparators()
{
separators = " @#,.:;<>*/(){}|'?-+=_";
}
/* Returns pos of given search criteria, -1 if not found */
-int TextParser::find(QString target, QChar sep, int pos, bool upperCase)
+int TextParser::find(const QString &target, QChar sep, int pos, bool upperCase)
{
t_splitElm parsstr;
- QString pString;
-
+ QString pString, pTarget;
+ pTarget = target;
int atLine = 0, atPosElm = 0;
getLineReference(pos,&atLine,&atPosElm);
for (int x = pos; x < totalElmCount; x++)
{
parsstr=splitDone[atLine].elm[atPosElm++];
if (upperCase)
{
pString=parsstr.str.upper();
- target=target.upper();
+ pTarget=pTarget.upper();
}
else
{
pString=parsstr.str;
}
- if ((pString == target) && (parsstr.separator == sep))
+ if ((pString == pTarget) && (parsstr.separator == sep))
{
return x;
}
if (atPosElm >= splitDone[atLine].elmCount)
{ //new Line
atLine++;
atPosElm = 0;
}
}
return -1;
}