summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/postgresql/pq_xcolumns.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/postgresql/pq_xcolumns.hxx')
-rw-r--r--connectivity/source/drivers/postgresql/pq_xcolumns.hxx46
1 files changed, 23 insertions, 23 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_xcolumns.hxx b/connectivity/source/drivers/postgresql/pq_xcolumns.hxx
index 5daeeb296684..9e5911d0fd2d 100644
--- a/connectivity/source/drivers/postgresql/pq_xcolumns.hxx
+++ b/connectivity/source/drivers/postgresql/pq_xcolumns.hxx
@@ -49,12 +49,12 @@ void alterColumnByDescriptor(
const OUString & schemaName,
const OUString & tableName,
ConnectionSettings *settings,
- const com::sun::star::uno::Reference< com::sun::star::sdbc::XStatement > &stmt,
- const com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > & past,
- const com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > & future);
+ const css::uno::Reference< css::sdbc::XStatement > &stmt,
+ const css::uno::Reference< css::beans::XPropertySet > & past,
+ const css::uno::Reference< css::beans::XPropertySet > & future);
OUString columnMetaData2SDBCX(
- ReflectionBase *pBase, const com::sun::star::uno::Reference< com::sun::star::sdbc::XRow > &xRow );
+ ReflectionBase *pBase, const css::uno::Reference< css::sdbc::XRow > &xRow );
class Columns : public Container
{
@@ -62,9 +62,9 @@ class Columns : public Container
OUString m_tableName;
public: // instances Columns 'exception safe'
- static com::sun::star::uno::Reference< com::sun::star::container::XNameAccess > create(
+ static css::uno::Reference< css::container::XNameAccess > create(
const ::rtl::Reference< RefCountedMutex > & refMutex,
- const ::com::sun::star::uno::Reference< com::sun::star::sdbc::XConnection > & origin,
+ const css::uno::Reference< css::sdbc::XConnection > & origin,
ConnectionSettings *pSettings,
const OUString &schemaName,
const OUString &tableName,
@@ -73,7 +73,7 @@ public: // instances Columns 'exception safe'
protected:
Columns(
const ::rtl::Reference< RefCountedMutex > & refMutex,
- const ::com::sun::star::uno::Reference< com::sun::star::sdbc::XConnection > & origin,
+ const css::uno::Reference< css::sdbc::XConnection > & origin,
ConnectionSettings *pSettings,
const OUString &schemaName,
const OUString &tableName);
@@ -83,27 +83,27 @@ protected:
public: // XAppend
virtual void SAL_CALL appendByDescriptor(
- const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& descriptor )
- throw (::com::sun::star::sdbc::SQLException,
- ::com::sun::star::container::ElementExistException,
- ::com::sun::star::uno::RuntimeException, std::exception) override;
+ const css::uno::Reference< css::beans::XPropertySet >& descriptor )
+ throw (css::sdbc::SQLException,
+ css::container::ElementExistException,
+ css::uno::RuntimeException, std::exception) override;
// public: // XDrop
// virtual void SAL_CALL dropByName( const OUString& elementName )
-// throw (::com::sun::star::sdbc::SQLException,
-// ::com::sun::star::container::NoSuchElementException,
-// ::com::sun::star::uno::RuntimeException);
+// throw (css::sdbc::SQLException,
+// css::container::NoSuchElementException,
+// css::uno::RuntimeException);
virtual void SAL_CALL dropByIndex( sal_Int32 index )
- throw (::com::sun::star::sdbc::SQLException,
- ::com::sun::star::lang::IndexOutOfBoundsException,
- ::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw (css::sdbc::SQLException,
+ css::lang::IndexOutOfBoundsException,
+ css::uno::RuntimeException, std::exception) override;
public: // XRefreshable
- virtual void SAL_CALL refresh( ) throw (::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL refresh( ) throw (css::uno::RuntimeException, std::exception) override;
public: // XDataDescriptorFactory
- virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > SAL_CALL createDataDescriptor( )
- throw (::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Reference< css::beans::XPropertySet > SAL_CALL createDataDescriptor( )
+ throw (css::uno::RuntimeException, std::exception) override;
};
@@ -112,12 +112,12 @@ class ColumnDescriptors : public Container
public:
ColumnDescriptors(
const ::rtl::Reference< RefCountedMutex > & refMutex,
- const ::com::sun::star::uno::Reference< com::sun::star::sdbc::XConnection > & origin,
+ const css::uno::Reference< css::sdbc::XConnection > & origin,
ConnectionSettings *pSettings );
public: // XDataDescriptorFactory
- virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > SAL_CALL createDataDescriptor( )
- throw (::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Reference< css::beans::XPropertySet > SAL_CALL createDataDescriptor( )
+ throw (css::uno::RuntimeException, std::exception) override;
};
}