summaryrefslogtreecommitdiff
path: root/vcl/source/filter/FilterConfigItem.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-18 10:11:06 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-11-18 09:03:16 +0000
commit5a4d508bd6711def27c7738f7ac68c2da478e48c (patch)
treec688427afbce033c04009d71c4b2c256ec784da2 /vcl/source/filter/FilterConfigItem.cxx
parentd30a44aff1fb049a71e4eb2612be65a735fbe918 (diff)
com::sun::star->css in vcl/
Change-Id: Ifad76177673cf93746ba221838be80ff76fed228 Reviewed-on: https://gerrit.libreoffice.org/20032 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl/source/filter/FilterConfigItem.cxx')
-rw-r--r--vcl/source/filter/FilterConfigItem.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/vcl/source/filter/FilterConfigItem.cxx b/vcl/source/filter/FilterConfigItem.cxx
index 428cf72225d6..4a7302f3998b 100644
--- a/vcl/source/filter/FilterConfigItem.cxx
+++ b/vcl/source/filter/FilterConfigItem.cxx
@@ -72,7 +72,7 @@ static bool ImpIsTreeAvailable( Reference< XMultiServiceFactory >& rXCfgProv, co
"com.sun.star.configuration.ConfigurationAccess",
aArguments );
}
- catch (const ::com::sun::star::uno::Exception&)
+ catch (const css::uno::Exception&)
{
bAvailable = false;
}
@@ -139,7 +139,7 @@ void FilterConfigItem::ImpInitTree( const OUString& rSubTree )
if ( xUpdatableView.is() )
xPropSet.set( xUpdatableView, UNO_QUERY );
}
- catch ( ::com::sun::star::uno::Exception& )
+ catch ( css::uno::Exception& )
{
OSL_FAIL( "FilterConfigItem::FilterConfigItem - Could not access configuration Key" );
}
@@ -151,7 +151,7 @@ FilterConfigItem::FilterConfigItem( const OUString& rSubTree )
ImpInitTree( rSubTree );
}
-FilterConfigItem::FilterConfigItem( ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >* pFilterData )
+FilterConfigItem::FilterConfigItem( css::uno::Sequence< css::beans::PropertyValue >* pFilterData )
: bModified(false)
{
if ( pFilterData )
@@ -159,7 +159,7 @@ FilterConfigItem::FilterConfigItem( ::com::sun::star::uno::Sequence< ::com::sun:
}
FilterConfigItem::FilterConfigItem( const OUString& rSubTree,
- ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >* pFilterData )
+ css::uno::Sequence< css::beans::PropertyValue >* pFilterData )
{
ImpInitTree( rSubTree );
@@ -186,7 +186,7 @@ void FilterConfigItem::WriteModifiedConfig()
xUpdateControl->commitChanges();
bModified = false;
}
- catch ( ::com::sun::star::uno::Exception& )
+ catch ( css::uno::Exception& )
{
OSL_FAIL( "FilterConfigItem::FilterConfigItem - Could not update configuration data" );
}
@@ -211,7 +211,7 @@ bool FilterConfigItem::ImplGetPropertyValue( Any& rAny, const Reference< XProper
if ( aXPropSetInfo.is() )
bRetValue = aXPropSetInfo->hasPropertyByName( rString );
}
- catch( ::com::sun::star::uno::Exception& )
+ catch( css::uno::Exception& )
{
}
@@ -224,7 +224,7 @@ bool FilterConfigItem::ImplGetPropertyValue( Any& rAny, const Reference< XProper
if ( !rAny.hasValue() )
bRetValue = false;
}
- catch( ::com::sun::star::uno::Exception& )
+ catch( css::uno::Exception& )
{
bRetValue = false;
}
@@ -361,7 +361,7 @@ void FilterConfigItem::WriteBool( const OUString& rKey, bool bNewValue )
xPropSet->setPropertyValue( rKey, aAny );
bModified = true;
}
- catch ( ::com::sun::star::uno::Exception& )
+ catch ( css::uno::Exception& )
{
OSL_FAIL( "FilterConfigItem::WriteBool - could not set PropertyValue" );
}
@@ -395,7 +395,7 @@ void FilterConfigItem::WriteInt32( const OUString& rKey, sal_Int32 nNewValue )
xPropSet->setPropertyValue( rKey, aAny );
bModified = true;
}
- catch ( ::com::sun::star::uno::Exception& )
+ catch ( css::uno::Exception& )
{
OSL_FAIL( "FilterConfigItem::WriteInt32 - could not set PropertyValue" );
}