summaryrefslogtreecommitdiff
path: root/linguistic/source/convdic.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'linguistic/source/convdic.cxx')
-rw-r--r--linguistic/source/convdic.cxx19
1 files changed, 0 insertions, 19 deletions
diff --git a/linguistic/source/convdic.cxx b/linguistic/source/convdic.cxx
index 73953556b0fe..c140bb1bd957 100644
--- a/linguistic/source/convdic.cxx
+++ b/linguistic/source/convdic.cxx
@@ -344,7 +344,6 @@ void ConvDic::RemoveEntry( const OUString &rLeftText, const OUString &rRightText
OUString SAL_CALL ConvDic::getName( )
- throw (RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
return aName;
@@ -352,7 +351,6 @@ OUString SAL_CALL ConvDic::getName( )
Locale SAL_CALL ConvDic::getLocale( )
- throw (RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
return LanguageTag::convertToLocale( nLanguage );
@@ -360,7 +358,6 @@ Locale SAL_CALL ConvDic::getLocale( )
sal_Int16 SAL_CALL ConvDic::getConversionType( )
- throw (RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
return nConversionType;
@@ -368,7 +365,6 @@ sal_Int16 SAL_CALL ConvDic::getConversionType( )
void SAL_CALL ConvDic::setActive( sal_Bool bActivate )
- throw (RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
bIsActive = bActivate;
@@ -376,7 +372,6 @@ void SAL_CALL ConvDic::setActive( sal_Bool bActivate )
sal_Bool SAL_CALL ConvDic::isActive( )
- throw (RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
return bIsActive;
@@ -384,7 +379,6 @@ sal_Bool SAL_CALL ConvDic::isActive( )
void SAL_CALL ConvDic::clear( )
- throw (RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
aFromLeft .clear();
@@ -404,7 +398,6 @@ uno::Sequence< OUString > SAL_CALL ConvDic::getConversions(
sal_Int32 nLength,
ConversionDirection eDirection,
sal_Int32 /*nTextConversionOptions*/ )
- throw (IllegalArgumentException, RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
@@ -455,7 +448,6 @@ static bool lcl_SeqHasEntry(
uno::Sequence< OUString > SAL_CALL ConvDic::getConversionEntries(
ConversionDirection eDirection )
- throw (RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
@@ -491,7 +483,6 @@ uno::Sequence< OUString > SAL_CALL ConvDic::getConversionEntries(
void SAL_CALL ConvDic::addEntry(
const OUString& aLeftText,
const OUString& aRightText )
- throw (IllegalArgumentException, container::ElementExistException, RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
if (bNeedEntries)
@@ -505,7 +496,6 @@ void SAL_CALL ConvDic::addEntry(
void SAL_CALL ConvDic::removeEntry(
const OUString& aLeftText,
const OUString& aRightText )
- throw (container::NoSuchElementException, RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
if (bNeedEntries)
@@ -517,7 +507,6 @@ void SAL_CALL ConvDic::removeEntry(
sal_Int16 SAL_CALL ConvDic::getMaxCharCount( ConversionDirection eDirection )
- throw (RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
@@ -568,7 +557,6 @@ void SAL_CALL ConvDic::setPropertyType(
const OUString& rLeftText,
const OUString& rRightText,
sal_Int16 nPropertyType )
- throw (container::NoSuchElementException, IllegalArgumentException, RuntimeException, std::exception)
{
bool bHasElement = HasEntry( rLeftText, rRightText);
if (!bHasElement)
@@ -585,7 +573,6 @@ void SAL_CALL ConvDic::setPropertyType(
sal_Int16 SAL_CALL ConvDic::getPropertyType(
const OUString& rLeftText,
const OUString& rRightText )
- throw (container::NoSuchElementException, RuntimeException, std::exception)
{
bool bHasElement = HasEntry( rLeftText, rRightText);
if (!bHasElement)
@@ -605,7 +592,6 @@ sal_Int16 SAL_CALL ConvDic::getPropertyType(
void SAL_CALL ConvDic::flush( )
- throw (RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
@@ -623,7 +609,6 @@ void SAL_CALL ConvDic::flush( )
void SAL_CALL ConvDic::addFlushListener(
const uno::Reference< util::XFlushListener >& rxListener )
- throw (RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
if (rxListener.is())
@@ -633,7 +618,6 @@ void SAL_CALL ConvDic::addFlushListener(
void SAL_CALL ConvDic::removeFlushListener(
const uno::Reference< util::XFlushListener >& rxListener )
- throw (RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
if (rxListener.is())
@@ -642,19 +626,16 @@ void SAL_CALL ConvDic::removeFlushListener(
OUString SAL_CALL ConvDic::getImplementationName( )
- throw (RuntimeException, std::exception)
{
return OUString( "com.sun.star.lingu2.ConvDic" );
}
sal_Bool SAL_CALL ConvDic::supportsService( const OUString& rServiceName )
- throw (RuntimeException, std::exception)
{
return cppu::supportsService(this, rServiceName);
}
uno::Sequence< OUString > SAL_CALL ConvDic::getSupportedServiceNames( )
- throw (RuntimeException, std::exception)
{
return { SN_CONV_DICTIONARY };
}