diff options
Diffstat (limited to 'dbaccess/source/sdbtools/connection/tablename.cxx')
-rw-r--r-- | dbaccess/source/sdbtools/connection/tablename.cxx | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/dbaccess/source/sdbtools/connection/tablename.cxx b/dbaccess/source/sdbtools/connection/tablename.cxx index e51e997c13e0..0e78a9cb7d35 100644 --- a/dbaccess/source/sdbtools/connection/tablename.cxx +++ b/dbaccess/source/sdbtools/connection/tablename.cxx @@ -18,9 +18,10 @@ */ #include "tablename.hxx" -#include "sdbt_resource.hrc" -#include "module_sdbt.hxx" -#include "sdbtstrings.hrc" +#include "core_resource.hxx" +#include "strings.hrc" +#include "strings.hxx" +#include "stringconstants.hxx" #include <com/sun/star/sdb/tools/CompositionType.hpp> #include <com/sun/star/sdbcx/XTablesSupplier.hpp> @@ -53,8 +54,6 @@ namespace sdbtools // TableName struct TableName_Impl { - SdbtClient m_aModuleClient; // keep the module alive as long as this instance lives - OUString sCatalog; OUString sSchema; OUString sName; @@ -152,7 +151,7 @@ namespace sdbtools || !xPSI->hasPropertyByName( PROPERTY_NAME ) ) throw IllegalArgumentException( - SdbtRes( STR_NO_TABLE_OBJECT ), + DBA_RES( STR_NO_TABLE_OBJECT ), *this, 0 ); @@ -199,7 +198,7 @@ namespace sdbtools found = true; if ( !found ) throw IllegalArgumentException( - SdbtRes( STR_INVALID_COMPOSITION_TYPE ), + DBA_RES( STR_INVALID_COMPOSITION_TYPE ), nullptr, 0 ); |