summaryrefslogtreecommitdiff
path: root/xmlhelp
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:27:57 +0000
commit57b15f2dcd2963808b8af3f0665450ef81bb3eb8 (patch)
treebf5567aadbf28ef821d3b328e3fa0e0b31cc4f9c /xmlhelp
parentc49721950cb3d897b35f08bf871239308680b18e (diff)
Resolves: fdo#72022 Integrated help ignored if installed
regression since 58fa3d50aa43102cea8690fd6bf51fb80c007955 Change-Id: Ia20f28daace30181652bbbbec3f9845045db03b4
Diffstat (limited to 'xmlhelp')
-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 += "/";
}