diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-11-17 12:34:47 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-11-17 12:34:47 +0000 |
commit | 9d66f231929a3b6a819aae62280f8d0e33a2e43e (patch) | |
tree | cd2db1f97df0794f858db3352c4ee2133c24e98f /sfx2/source/appl/newhelp.cxx | |
parent | ab271f6d7078097091f0c2c0852721e1d7050b1e (diff) |
INTEGRATION: CWS fwkbugfix03 (1.97.28); FILE MERGED
2004/11/10 06:27:13 as 1.97.28.1: remove looping-loui if help locale is wrong
Diffstat (limited to 'sfx2/source/appl/newhelp.cxx')
-rw-r--r-- | sfx2/source/appl/newhelp.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sfx2/source/appl/newhelp.cxx b/sfx2/source/appl/newhelp.cxx index ce190197d27b..8b2dc20da8ab 100644 --- a/sfx2/source/appl/newhelp.cxx +++ b/sfx2/source/appl/newhelp.cxx @@ -2,9 +2,9 @@ * * $RCSfile: newhelp.cxx,v $ * - * $Revision: 1.99 $ + * $Revision: 1.100 $ * - * last change: $Author: obo $ $Date: 2004-11-17 10:04:50 $ + * last change: $Author: obo $ $Date: 2004-11-17 13:34:47 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1643,7 +1643,7 @@ void SfxHelpWindow_Impl::loadHelpContent(const ::rtl::OUString& sHelpURL, sal_Bo if ( !IsWait() ) EnterWait(); sal_Bool bSuccess = sal_False; - while(sal_True) +// TODO implement locale fallback ... see below while(sal_True) { try { @@ -1651,13 +1651,13 @@ void SfxHelpWindow_Impl::loadHelpContent(const ::rtl::OUString& sHelpURL, sal_Bo if (xContent.is()) { bSuccess = sal_True; - break; +// break; } } catch(const RuntimeException&) { throw; } catch(const Exception&) - { break; } + { /*break;*/ } /* TODO try next locale ... no further locale available? => break loop and show error page |