diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2012-05-17 22:36:29 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2012-05-17 22:44:43 +0900 |
commit | 9902f0ee3d7b22e4984be7225370fb552da03838 (patch) | |
tree | 69d7fa35977328f6a605cc389177ab4ee353bedc /dbaccess/source | |
parent | ac6833f97921981050722bee3d3cfa13f0897566 (diff) |
removed unused const rtl::OUString
Change-Id: I7c3409ac39e690fcf2f7e4085bf6857e6bd182fb
Diffstat (limited to 'dbaccess/source')
-rw-r--r-- | dbaccess/source/filter/xml/xmlExport.cxx | 1 | ||||
-rw-r--r-- | dbaccess/source/ui/dlg/ConnectionHelper.cxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/dlg/DbAdminImpl.cxx | 1 | ||||
-rw-r--r-- | dbaccess/source/ui/dlg/UserAdmin.cxx | 1 | ||||
-rw-r--r-- | dbaccess/source/ui/dlg/paramdialog.cxx | 1 | ||||
-rw-r--r-- | dbaccess/source/ui/querydesign/QueryDesignView.cxx | 1 | ||||
-rw-r--r-- | dbaccess/source/ui/tabledesign/TableController.cxx | 1 |
7 files changed, 0 insertions, 8 deletions
diff --git a/dbaccess/source/filter/xml/xmlExport.cxx b/dbaccess/source/filter/xml/xmlExport.cxx index ca93c9007269..3fa25bf18672 100644 --- a/dbaccess/source/filter/xml/xmlExport.cxx +++ b/dbaccess/source/filter/xml/xmlExport.cxx @@ -673,7 +673,6 @@ template< typename T > void ODBExport::exportDataSourceSettingsSequence( ::std::vector< TypedPropertyValue >::iterator const & in) { OSequenceIterator< T > i( in->Value ); - ::rtl::OUString sCurrent; while (i.hasMoreElements()) { SvXMLElementExport aDataValue(*this,XML_NAMESPACE_DB, XML_DATA_SOURCE_SETTING_VALUE, sal_True, sal_False); diff --git a/dbaccess/source/ui/dlg/ConnectionHelper.cxx b/dbaccess/source/ui/dlg/ConnectionHelper.cxx index cdc5f97e4349..7fe55e702aa7 100644 --- a/dbaccess/source/ui/dlg/ConnectionHelper.cxx +++ b/dbaccess/source/ui/dlg/ConnectionHelper.cxx @@ -580,8 +580,6 @@ DBG_NAME(OConnectionHelper) sal_Bool OConnectionHelper::createDirectoryDeep(const String& _rPathURL) { - ::rtl::OUString sPath(_rPathURL); - // get an URL object analyzing the URL for us ... INetURLObject aParser; aParser.SetURL(_rPathURL); diff --git a/dbaccess/source/ui/dlg/DbAdminImpl.cxx b/dbaccess/source/ui/dlg/DbAdminImpl.cxx index 80a92a2603eb..fd331c79e1f4 100644 --- a/dbaccess/source/ui/dlg/DbAdminImpl.cxx +++ b/dbaccess/source/ui/dlg/DbAdminImpl.cxx @@ -598,7 +598,6 @@ DECLARE_STL_SET( PropertyValue, PropertyValueLess, PropertyValueSet); //........................................................................ void ODbDataSourceAdministrationHelper::translateProperties(const Reference< XPropertySet >& _rxSource, SfxItemSet& _rDest) { - ::rtl::OUString sNewConnectURL, sName, sUid, sPwd; Sequence< ::rtl::OUString > aTableFitler; if (_rxSource.is()) diff --git a/dbaccess/source/ui/dlg/UserAdmin.cxx b/dbaccess/source/ui/dlg/UserAdmin.cxx index 520b5cfa021f..17f927b06058 100644 --- a/dbaccess/source/ui/dlg/UserAdmin.cxx +++ b/dbaccess/source/ui/dlg/UserAdmin.cxx @@ -185,7 +185,6 @@ void OUserAdmin::FillUserNames() m_aUserNames = m_xUsers->getElementNames(); const ::rtl::OUString* pBegin = m_aUserNames.getConstArray(); const ::rtl::OUString* pEnd = pBegin + m_aUserNames.getLength(); - ::rtl::OUString sUserName = m_UserName; for(;pBegin != pEnd;++pBegin) m_LB_USER.InsertEntry(*pBegin); diff --git a/dbaccess/source/ui/dlg/paramdialog.cxx b/dbaccess/source/ui/dlg/paramdialog.cxx index 9e9333285840..d5803492992a 100644 --- a/dbaccess/source/ui/dlg/paramdialog.cxx +++ b/dbaccess/source/ui/dlg/paramdialog.cxx @@ -270,7 +270,6 @@ DBG_NAME(OParameterDialog) // write the parameters try { - ::rtl::OUString sError; PropertyValue* pValues = m_aFinalValues.getArray(); for (sal_Int32 i = 0, nCount = m_xParams->getCount(); i<nCount; ++i, ++pValues) { diff --git a/dbaccess/source/ui/querydesign/QueryDesignView.cxx b/dbaccess/source/ui/querydesign/QueryDesignView.cxx index d6a28725ec37..6b91252feb56 100644 --- a/dbaccess/source/ui/querydesign/QueryDesignView.cxx +++ b/dbaccess/source/ui/querydesign/QueryDesignView.cxx @@ -2010,7 +2010,6 @@ namespace } ::rtl::OUString sComposedName; - ::rtl::OUString aQualifierName; ::rtl::OUString sAlias; OQueryTableView* pTableView = static_cast<OQueryTableView*>(_pView->getTableView()); diff --git a/dbaccess/source/ui/tabledesign/TableController.cxx b/dbaccess/source/ui/tabledesign/TableController.cxx index 210e09dcfd9b..f4e7dda44020 100644 --- a/dbaccess/source/ui/tabledesign/TableController.cxx +++ b/dbaccess/source/ui/tabledesign/TableController.cxx @@ -1411,7 +1411,6 @@ void OTableController::dropPrimaryKey() // ----------------------------------------------------------------------------- void OTableController::assignTable() { - ::rtl::OUString sComposedName; // get the table if(!m_sName.isEmpty()) { |