summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/kab/KStatement.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/kab/KStatement.hxx')
-rw-r--r--connectivity/source/drivers/kab/KStatement.hxx76
1 files changed, 38 insertions, 38 deletions
diff --git a/connectivity/source/drivers/kab/KStatement.hxx b/connectivity/source/drivers/kab/KStatement.hxx
index 76c2e320830c..0218d9d7fc55 100644
--- a/connectivity/source/drivers/kab/KStatement.hxx
+++ b/connectivity/source/drivers/kab/KStatement.hxx
@@ -34,10 +34,10 @@ namespace connectivity
{
namespace kab
{
- typedef ::cppu::WeakComponentImplHelper< ::com::sun::star::sdbc::XStatement,
- ::com::sun::star::sdbc::XWarningsSupplier,
- ::com::sun::star::util::XCancellable,
- ::com::sun::star::sdbc::XCloseable> KabCommonStatement_BASE;
+ typedef ::cppu::WeakComponentImplHelper< css::sdbc::XStatement,
+ css::sdbc::XWarningsSupplier,
+ css::util::XCancellable,
+ css::sdbc::XCloseable> KabCommonStatement_BASE;
// Class KabCommonStatement
@@ -49,10 +49,10 @@ namespace connectivity
public comphelper::OPropertyArrayUsageHelper<KabCommonStatement>
{
- ::com::sun::star::sdbc::SQLWarning m_aLastWarning;
+ css::sdbc::SQLWarning m_aLastWarning;
protected:
- ::std::list< OUString> m_aBatchList;
+ ::std::list< OUString> m_aBatchList;
connectivity::OSQLParser m_aParser;
connectivity::OSQLParseTreeIterator m_aSQLIterator;
connectivity::OSQLParseNode* m_pParseTree;
@@ -60,13 +60,13 @@ namespace connectivity
protected:
class KabCondition *analyseWhereClause(
- const OSQLParseNode *pParseNode) const throw(::com::sun::star::sdbc::SQLException);
+ const OSQLParseNode *pParseNode) const throw(css::sdbc::SQLException);
class KabOrder *analyseOrderByClause(
- const OSQLParseNode *pParseNode) const throw(::com::sun::star::sdbc::SQLException);
+ const OSQLParseNode *pParseNode) const throw(css::sdbc::SQLException);
bool isTableKnown(class KabResultSet *pResult) const;
- void setKabFields(class KabResultSet *pResult) const throw(::com::sun::star::sdbc::SQLException);
- void selectAddressees(KabResultSet *pResult) const throw(::com::sun::star::sdbc::SQLException);
- void sortAddressees(KabResultSet *pResult) const throw(::com::sun::star::sdbc::SQLException);
+ void setKabFields(class KabResultSet *pResult) const throw(css::sdbc::SQLException);
+ void selectAddressees(KabResultSet *pResult) const throw(css::sdbc::SQLException);
+ void sortAddressees(KabResultSet *pResult) const throw(css::sdbc::SQLException);
// OPropertyArrayUsageHelper
virtual ::cppu::IPropertyArrayHelper* createArrayHelper() const override;
@@ -74,27 +74,27 @@ namespace connectivity
// OPropertySetHelper
virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() override;
virtual sal_Bool SAL_CALL convertFastPropertyValue(
- ::com::sun::star::uno::Any & rConvertedValue,
- ::com::sun::star::uno::Any & rOldValue,
+ css::uno::Any & rConvertedValue,
+ css::uno::Any & rOldValue,
sal_Int32 nHandle,
- const ::com::sun::star::uno::Any& rValue) throw (::com::sun::star::lang::IllegalArgumentException) override;
+ const css::uno::Any& rValue) throw (css::lang::IllegalArgumentException) override;
virtual void SAL_CALL setFastPropertyValue_NoBroadcast(
sal_Int32 nHandle,
- const ::com::sun::star::uno::Any& rValue) throw (::com::sun::star::uno::Exception, std::exception) override;
+ const css::uno::Any& rValue) throw (css::uno::Exception, std::exception) override;
virtual void SAL_CALL getFastPropertyValue(
- ::com::sun::star::uno::Any& rValue,
+ css::uno::Any& rValue,
sal_Int32 nHandle) const override;
using OPropertySetHelper::getFastPropertyValue;
- virtual void resetParameters() const throw(::com::sun::star::sdbc::SQLException);
- virtual void getNextParameter(OUString &rParameter) const throw(::com::sun::star::sdbc::SQLException);
+ virtual void resetParameters() const throw(css::sdbc::SQLException);
+ virtual void getNextParameter(OUString &rParameter) const throw(css::sdbc::SQLException);
virtual ~KabCommonStatement();
public:
::cppu::OBroadcastHelper& rBHelper;
explicit KabCommonStatement(KabConnection *_pConnection);
- using KabCommonStatement_BASE::operator ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >;
+ using KabCommonStatement_BASE::operator css::uno::Reference< css::uno::XInterface >;
// OComponentHelper
virtual void SAL_CALL disposing() override;
@@ -102,48 +102,48 @@ namespace connectivity
// XInterface
virtual void SAL_CALL release() throw() override;
virtual void SAL_CALL acquire() throw() override;
- virtual ::com::sun::star::uno::Any SAL_CALL queryInterface(
- const ::com::sun::star::uno::Type & rType
- ) throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Any SAL_CALL queryInterface(
+ const css::uno::Type & rType
+ ) throw(css::uno::RuntimeException, std::exception) override;
// XTypeProvider
- virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes(
- ) throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes(
+ ) throw(css::uno::RuntimeException, std::exception) override;
// XPropertySet
- virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo(
- ) throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo(
+ ) throw(css::uno::RuntimeException, std::exception) override;
// XStatement
- virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSet > SAL_CALL executeQuery(
- const OUString& sql ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Reference< css::sdbc::XResultSet > SAL_CALL executeQuery(
+ const OUString& sql ) throw(css::sdbc::SQLException, css::uno::RuntimeException, std::exception) override;
virtual sal_Int32 SAL_CALL executeUpdate(
- const OUString& sql ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) override;
+ const OUString& sql ) throw(css::sdbc::SQLException, css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL execute(
- const OUString& sql ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection > SAL_CALL getConnection(
- ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) override;
+ const OUString& sql ) throw(css::sdbc::SQLException, css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Reference< css::sdbc::XConnection > SAL_CALL getConnection(
+ ) throw(css::sdbc::SQLException, css::uno::RuntimeException, std::exception) override;
// XWarningsSupplier
- virtual ::com::sun::star::uno::Any SAL_CALL getWarnings(
- ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Any SAL_CALL getWarnings(
+ ) throw(css::sdbc::SQLException, css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL clearWarnings(
- ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) override;
+ ) throw(css::sdbc::SQLException, css::uno::RuntimeException, std::exception) override;
// XCancellable
virtual void SAL_CALL cancel(
- ) throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ ) throw(css::uno::RuntimeException, std::exception) override;
// XCloseable
virtual void SAL_CALL close(
- ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) override;
+ ) throw(css::sdbc::SQLException, css::uno::RuntimeException, std::exception) override;
};
// Class KabStatement
typedef ::cppu::ImplInheritanceHelper<
- KabCommonStatement, ::com::sun::star::lang::XServiceInfo > KabStatement_BASE;
+ KabCommonStatement, css::lang::XServiceInfo > KabStatement_BASE;
class KabStatement : public KabStatement_BASE
{