summaryrefslogtreecommitdiffstats
path: root/include
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 13:48:11 +0200
commit615f4b23c62b43360e7a29735bf07091bd5a73a2 (patch)
tree2da1b5663394c8fa6a5b7421f48cc2fdaf65c5b3 /include
parenttdf#90694 reset group area listeners on correct top (diff)
downloadcore-615f4b23c62b43360e7a29735bf07091bd5a73a2.tar.gz
core-615f4b23c62b43360e7a29735bf07091bd5a73a2.zip
loplugin:staticmethods
Change-Id: I22af41840410ee78aee739e0dec49bb43cda874b
Diffstat (limited to 'include')
-rw-r--r--include/connectivity/sqlscan.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/connectivity/sqlscan.hxx b/include/connectivity/sqlscan.hxx
index 009a2d640355..1506c74dd842 100644
--- a/include/connectivity/sqlscan.hxx
+++ b/include/connectivity/sqlscan.hxx
@@ -64,16 +64,16 @@ namespace connectivity
const OUString& getErrorMessage() const {return m_sErrorMessage;}
OString getStatement() const { return m_sStatement; }
- sal_Int32 SQLlex();
+ static sal_Int32 SQLlex();
// set this as scanner for flex
void setScanner(bool _bNull=false);
// rules settings
void SetRule(sal_Int32 nRule) {m_nRule = nRule;}
- sal_Int32 GetGERRule() const;
- sal_Int32 GetENGRule() const;
- sal_Int32 GetSQLRule() const;
- sal_Int32 GetDATERule() const;
- sal_Int32 GetSTRINGRule() const;
+ static sal_Int32 GetGERRule();
+ static sal_Int32 GetENGRule();
+ static sal_Int32 GetSQLRule();
+ static sal_Int32 GetDATERule();
+ static sal_Int32 GetSTRINGRule();
inline sal_Int32 GetCurrentPos() const { return m_nCurrentPos; }
};
}