summaryrefslogtreecommitdiff
path: root/ucb/source/regexp
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-03-08 10:59:06 +0200
committerNoel Grandin <noel@peralex.com>2016-03-09 10:07:45 +0200
commitaf74913da2b63857a248ac8fc4fa438b7a8663ec (patch)
treee3180aaf8b5bae19d7e2c9f209ce8dbc8b2f5aa0 /ucb/source/regexp
parent0a8c9fde3ba59a278c9ee4d18f099cfeec71fbef (diff)
loplugin:constantparams in ucb
Change-Id: I6b925336b13404ccf0f78f194bd3488a22f99b97
Diffstat (limited to 'ucb/source/regexp')
-rw-r--r--ucb/source/regexp/regexp.cxx26
1 files changed, 5 insertions, 21 deletions
diff --git a/ucb/source/regexp/regexp.cxx b/ucb/source/regexp/regexp.cxx
index f2c53e8691c7..fae2aee293be 100644
--- a/ucb/source/regexp/regexp.cxx
+++ b/ucb/source/regexp/regexp.cxx
@@ -210,21 +210,13 @@ void appendStringLiteral(OUStringBuffer * pBuffer,
}
-OUString Regexp::getRegexp(bool bReverse) const
+OUString Regexp::getRegexp() const
{
if (m_bTranslation)
{
OUStringBuffer aBuffer;
- if (bReverse)
- {
- if (!m_aReversePrefix.isEmpty())
- appendStringLiteral(&aBuffer, m_aReversePrefix);
- }
- else
- {
- if (!m_aPrefix.isEmpty())
- appendStringLiteral(&aBuffer, m_aPrefix);
- }
+ if (!m_aPrefix.isEmpty())
+ appendStringLiteral(&aBuffer, m_aPrefix);
switch (m_eKind)
{
case KIND_PREFIX:
@@ -244,16 +236,8 @@ OUString Regexp::getRegexp(bool bReverse) const
break;
}
aBuffer.append("->");
- if (bReverse)
- {
- if (!m_aPrefix.isEmpty())
- appendStringLiteral(&aBuffer, m_aPrefix);
- }
- else
- {
- if (!m_aReversePrefix.isEmpty())
- appendStringLiteral(&aBuffer, m_aReversePrefix);
- }
+ if (!m_aReversePrefix.isEmpty())
+ appendStringLiteral(&aBuffer, m_aReversePrefix);
aBuffer.append("\\1");
return aBuffer.makeStringAndClear();
}