summaryrefslogtreecommitdiff
path: root/desktop/source/app/langselect.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-08-20 12:00:26 +0000
committerRüdiger Timm <rt@openoffice.org>2004-08-20 12:00:26 +0000
commit83db9320fcb0860904b566d4da63ec81e8bf0edc (patch)
tree6bc413f32766e632ef12590dfa74ade01ddd11af /desktop/source/app/langselect.cxx
parent2ea01a518e4d4c79618818bd34525208de40845a (diff)
INTEGRATION: CWS cfgruggedised (1.7.10); FILE MERGED
2004/07/23 13:43:11 jb 1.7.10.1: #i28654# Configuration can fail with more than RuntimeException -> catch them all
Diffstat (limited to 'desktop/source/app/langselect.cxx')
-rw-r--r--desktop/source/app/langselect.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/desktop/source/app/langselect.cxx b/desktop/source/app/langselect.cxx
index c2d2158e37fd..1688e609e8d3 100644
--- a/desktop/source/app/langselect.cxx
+++ b/desktop/source/app/langselect.cxx
@@ -2,8 +2,8 @@
*
* $RCSfile: langselect.cxx,v $
*
- * $Revision: 1.9 $
- * last change: $Author: kz $ $Date: 2004-07-26 15:11:22 $
+ * $Revision: 1.10 $
+ * last change: $Author: rt $ $Date: 2004-08-20 13:00:26 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -287,7 +287,7 @@ OUString LanguageSelection::getUserLanguage()
{
aLanguage = aLangString;
}
- } catch (com::sun::star::uno::RuntimeException)
+ } catch (com::sun::star::uno::Exception)
{
// didn't work - return dontknow
return aLanguage;
@@ -325,7 +325,7 @@ IsoList LanguageSelection::getInstalledIsoLanguages()
for (int i=0; i<aLangSeq.getLength(); i++)
aList.push_back(aLangSeq[i]);
- } catch (com::sun::star::uno::RuntimeException)
+ } catch (com::sun::star::uno::Exception)
{
// didn't work - return empty list
}