summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/AutoRetrievingBase.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/inc/AutoRetrievingBase.hxx')
-rw-r--r--connectivity/source/inc/AutoRetrievingBase.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/inc/AutoRetrievingBase.hxx b/connectivity/source/inc/AutoRetrievingBase.hxx
index ba1a0cfb7ccc..b97558b1a82f 100644
--- a/connectivity/source/inc/AutoRetrievingBase.hxx
+++ b/connectivity/source/inc/AutoRetrievingBase.hxx
@@ -26,17 +26,17 @@ namespace connectivity
{
class OOO_DLLPUBLIC_DBTOOLS OAutoRetrievingBase
{
- ::rtl::OUString m_sGeneratedValueStatement; // contains the statement which should be used when query for automatically generated values
+ OUString m_sGeneratedValueStatement; // contains the statement which should be used when query for automatically generated values
sal_Bool m_bAutoRetrievingEnabled; // set to when we should allow to query for generated values
protected:
OAutoRetrievingBase() : m_bAutoRetrievingEnabled(sal_False) {}
virtual ~OAutoRetrievingBase(){}
inline void enableAutoRetrievingEnabled(sal_Bool _bAutoEnable) { m_bAutoRetrievingEnabled = _bAutoEnable; }
- inline void setAutoRetrievingStatement(const ::rtl::OUString& _sStmt) { m_sGeneratedValueStatement = _sStmt; }
+ inline void setAutoRetrievingStatement(const OUString& _sStmt) { m_sGeneratedValueStatement = _sStmt; }
public:
inline sal_Bool isAutoRetrievingEnabled() const { return m_bAutoRetrievingEnabled; }
- inline const ::rtl::OUString& getAutoRetrievingStatement() const { return m_sGeneratedValueStatement; }
+ inline const OUString& getAutoRetrievingStatement() const { return m_sGeneratedValueStatement; }
/** transform the statement to query for auto generated values
@param _sInsertStatement
@@ -44,7 +44,7 @@ namespace connectivity
@return
The transformed generated statement.
*/
- ::rtl::OUString getTransformedGeneratedStatement(const ::rtl::OUString& _sInsertStatement) const;
+ OUString getTransformedGeneratedStatement(const OUString& _sInsertStatement) const;
};
}
#endif // _CONNECTIVITY_AUTOKEYRETRIEVINGBASE_HXX_