diff options
author | Oliver Bolte <obo@openoffice.org> | 2006-10-12 10:27:32 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2006-10-12 10:27:32 +0000 |
commit | 4a9860f4df463c788082a6281868aad86b01655a (patch) | |
tree | 9bd67b1ae171086b10c48aaf8a7351a4926512cd /xmlhelp/source | |
parent | 9715ae0efd53566d399d00b6d1faae94df2991eb (diff) |
INTEGRATION: CWS sb59 (1.45.12); FILE MERGED
2006/08/30 11:10:27 sb 1.45.12.1: #i67487# Made code warning-free (wntmsci10).
Diffstat (limited to 'xmlhelp/source')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/databases.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/databases.cxx b/xmlhelp/source/cxxhelp/provider/databases.cxx index 0976fa740aba..77e4aa9af42b 100644 --- a/xmlhelp/source/cxxhelp/provider/databases.cxx +++ b/xmlhelp/source/cxxhelp/provider/databases.cxx @@ -4,9 +4,9 @@ * * $RCSfile: databases.cxx,v $ * - * $Revision: 1.46 $ + * $Revision: 1.47 $ * - * last change: $Author: obo $ $Date: 2006-09-17 01:16:17 $ + * last change: $Author: obo $ $Date: 2006-10-12 11:27:32 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -1122,8 +1122,8 @@ void Databases::setInstallPath( const rtl::OUString& aInstDir ) { osl::MutexGuard aGuard( m_aMutex ); - if( osl::FileBase::E_None != osl::FileBase::getFileURLFromSystemPath( aInstDir,m_aInstallDirectory ) ) - ; + osl::FileBase::getFileURLFromSystemPath( aInstDir,m_aInstallDirectory ); + //TODO: check returned error code if( m_aInstallDirectory.lastIndexOf( sal_Unicode( '/' ) ) != m_aInstallDirectory.getLength() - 1 ) m_aInstallDirectory += rtl::OUString::createFromAscii( "/" ); |