diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-04-03 23:00:51 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-04-03 23:27:40 +0200 |
commit | 4290f249be1642c63a958e3f7873b56f47ae5a5b (patch) | |
tree | bb6169eeacfbc8cfc2140f77b9ded7831411507f /sfx2/source/appl/sfxhelp.cxx | |
parent | f2e19cc800025a9361bbea7d6b435ff649b09528 (diff) |
more clean-up around SfxContentHelper
Change-Id: I836a260d0e7c8b61cf4b6b6c378da854ca188a22
Diffstat (limited to 'sfx2/source/appl/sfxhelp.cxx')
-rw-r--r-- | sfx2/source/appl/sfxhelp.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/appl/sfxhelp.cxx b/sfx2/source/appl/sfxhelp.cxx index 7a8ec7840915..0517b65be3e9 100644 --- a/sfx2/source/appl/sfxhelp.cxx +++ b/sfx2/source/appl/sfxhelp.cxx @@ -639,9 +639,9 @@ static bool impl_hasHelpInstalled( const OUString &rLang = OUString() ) { OUStringBuffer aHelpRootURL("vnd.sun.star.help://"); AppendConfigToken(aHelpRootURL, sal_True, rLang); - Sequence< OUString > aFactories = SfxContentHelper::GetResultSet(aHelpRootURL.makeStringAndClear()); + std::vector< OUString > aFactories = SfxContentHelper::GetResultSet(aHelpRootURL.makeStringAndClear()); - return ( aFactories.getLength() != 0 ); + return !aFactories.empty(); } sal_Bool SfxHelp::SearchKeyword( const OUString& rKeyword ) @@ -681,7 +681,7 @@ sal_Bool SfxHelp::Start_Impl(const OUString& rURL, const Window* pWindow, const { OUStringBuffer aHelpRootURL("vnd.sun.star.help://"); AppendConfigToken(aHelpRootURL, sal_True); - Sequence< OUString > aFactories = SfxContentHelper::GetResultSet(aHelpRootURL.makeStringAndClear()); + SfxContentHelper::GetResultSet(aHelpRootURL.makeStringAndClear()); /* rURL may be - a "real" URL |