summaryrefslogtreecommitdiff
path: root/include/connectivity/sqlparse.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/connectivity/sqlparse.hxx')
-rw-r--r--include/connectivity/sqlparse.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/connectivity/sqlparse.hxx b/include/connectivity/sqlparse.hxx
index 10fd1f957dd2..4bb97169b147 100644
--- a/include/connectivity/sqlparse.hxx
+++ b/include/connectivity/sqlparse.hxx
@@ -76,13 +76,13 @@ namespace connectivity
virtual ~OParseContext();
// retrieves language specific error messages
- virtual OUString getErrorMessage(ErrorCode _eCodes) const;
+ virtual OUString getErrorMessage(ErrorCode _eCodes) const SAL_OVERRIDE;
// retrieves language specific keyword strings (only ASCII allowed)
- virtual OString getIntlKeywordAscii(InternationalKeyCode _eKey) const;
+ virtual OString getIntlKeywordAscii(InternationalKeyCode _eKey) const SAL_OVERRIDE;
// finds out, if we have an international keyword (only ASCII allowed)
- virtual InternationalKeyCode getIntlKeyCode(const OString& rToken) const;
+ virtual InternationalKeyCode getIntlKeyCode(const OString& rToken) const SAL_OVERRIDE;
// determines the default international setting
static const ::com::sun::star::lang::Locale& getDefaultLocale();
@@ -90,7 +90,7 @@ namespace connectivity
/** get's a locale instance which should be used when parsing in the context specified by this instance
<p>if this is not overridden by derived classes, it returns the static default locale.</p>
*/
- virtual ::com::sun::star::lang::Locale getPreferredLocale( ) const;
+ virtual ::com::sun::star::lang::Locale getPreferredLocale( ) const SAL_OVERRIDE;
};