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
commita6fcc6a99a199b852541dbd98e726e9d85056346 (patch)
tree0ebd73d339bafd502ce206bc16bf0376bc2a686a /desktop/source/app/langselect.cxx
parentc3c99e1a47ab7d3b8964318bf523d34d08a537ba (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 40b8794165..5fdb249ed8 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
}