summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-12-06 13:27:17 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-12-06 13:28:30 +0000
commit268653618ac01796785622e246f6d230db27ca62 (patch)
tree326018b4ee2bdd4fd07716bc2e0c542508d55f91
parent030edbcbde812f50c2531789a3730ca1f5736395 (diff)
Resolves: fdo#72022 Integrated help ignored if installed
regression since 58fa3d50aa43102cea8690fd6bf51fb80c007955 Change-Id: Ia20f28daace30181652bbbbec3f9845045db03b4 (cherry picked from commit 57b15f2dcd2963808b8af3f0665450ef81bb3eb8)
-rw-r--r--xmlhelp/source/cxxhelp/provider/databases.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/databases.cxx b/xmlhelp/source/cxxhelp/provider/databases.cxx
index fb16e663e520..ed30a7dfd4e6 100644
--- a/xmlhelp/source/cxxhelp/provider/databases.cxx
+++ b/xmlhelp/source/cxxhelp/provider/databases.cxx
@@ -1233,7 +1233,7 @@ void Databases::setInstallPath( const OUString& aInstDir )
osl::FileBase::getFileURLFromSystemPath( aInstDir,m_aInstallDirectory );
//TODO: check returned error code
- if( m_aInstallDirectory.endsWith( "/" ) )
+ if( !m_aInstallDirectory.endsWith( "/" ) )
m_aInstallDirectory += "/";
}