summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/postgresql/pq_xviews.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/postgresql/pq_xviews.cxx')
-rw-r--r--connectivity/source/drivers/postgresql/pq_xviews.cxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_xviews.cxx b/connectivity/source/drivers/postgresql/pq_xviews.cxx
index 39c6856df2e7..e375a8b8e342 100644
--- a/connectivity/source/drivers/postgresql/pq_xviews.cxx
+++ b/connectivity/source/drivers/postgresql/pq_xviews.cxx
@@ -69,9 +69,6 @@
using osl::MutexGuard;
-using rtl::OUString;
-using rtl::OUStringBuffer;
-using rtl::OUStringToOString;
using com::sun::star::beans::XPropertySet;
@@ -137,7 +134,7 @@ void Views::refresh()
while( rs->next() )
{
- rtl::OUString table, schema, command;
+ OUString table, schema, command;
schema = xRow->getString( 1 );
table = xRow->getString( 2 );
command = xRow->getString( 3 );
@@ -201,7 +198,7 @@ void Views::appendByDescriptor(
}
}
-void Views::dropByName( const ::rtl::OUString& elementName )
+void Views::dropByName( const OUString& elementName )
throw (::com::sun::star::sdbc::SQLException,
::com::sun::star::container::NoSuchElementException,
::com::sun::star::uno::RuntimeException)