summaryrefslogtreecommitdiffstats
path: root/connectivity/source/parse/sqlflex.l
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-06-08 12:55:36 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-06-08 12:55:36 +0200
commit81d82b78a107f2e6c14d6fbdf0d97c8e6cc8b0bd (patch)
tree0af7f134f0cb122b67b1aa2bdf0613087141da71 /connectivity/source/parse/sqlflex.l
parenttypo (diff)
downloadcore-81d82b78a107f2e6c14d6fbdf0d97c8e6cc8b0bd.tar.gz
core-81d82b78a107f2e6c14d6fbdf0d97c8e6cc8b0bd.zip
loplugin:staticmethods
Change-Id: I22af41840410ee78aee739e0dec49bb43cda874b
Diffstat (limited to 'connectivity/source/parse/sqlflex.l')
-rw-r--r--connectivity/source/parse/sqlflex.l10
1 files changed, 5 insertions, 5 deletions
diff --git a/connectivity/source/parse/sqlflex.l b/connectivity/source/parse/sqlflex.l
index 1e50927282bd..be7401059177 100644
--- a/connectivity/source/parse/sqlflex.l
+++ b/connectivity/source/parse/sqlflex.l
@@ -788,11 +788,11 @@ IParseContext::InternationalKeyCode OSQLScanner::getInternationalTokenID(const s
return (m_bInternational) ? m_pContext->getIntlKeyCode(::rtl::OString(sToken) ) : IParseContext::KEY_NONE;
}
// -------------------------------------------------------------------------
-sal_Int32 OSQLScanner::GetGERRule() const { return PREDICATE_GER; }
-sal_Int32 OSQLScanner::GetENGRule() const { return PREDICATE_ENG; }
-sal_Int32 OSQLScanner::GetSQLRule() const { return SQL; }
-sal_Int32 OSQLScanner::GetDATERule() const { return DATE; }
-sal_Int32 OSQLScanner::GetSTRINGRule() const { return STRING; }
+sal_Int32 OSQLScanner::GetGERRule() { return PREDICATE_GER; }
+sal_Int32 OSQLScanner::GetENGRule() { return PREDICATE_ENG; }
+sal_Int32 OSQLScanner::GetSQLRule() { return SQL; }
+sal_Int32 OSQLScanner::GetDATERule() { return DATE; }
+sal_Int32 OSQLScanner::GetSTRINGRule() { return STRING; }
// -------------------------------------------------------------------------
void OSQLScanner::setScanner(bool _bNull)
{