summaryrefslogtreecommitdiff
path: root/fpicker/source/office/fpsmartcontent.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'fpicker/source/office/fpsmartcontent.cxx')
-rw-r--r--fpicker/source/office/fpsmartcontent.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/fpicker/source/office/fpsmartcontent.cxx b/fpicker/source/office/fpsmartcontent.cxx
index acdd0697cba5..8fe9eaf1d598 100644
--- a/fpicker/source/office/fpsmartcontent.cxx
+++ b/fpicker/source/office/fpsmartcontent.cxx
@@ -168,10 +168,10 @@ namespace svt
// is really valid (some UCP's only tell this when asking for properties, not upon
// creation)
}
- catch( ContentCreationException& )
+ catch( const ContentCreationException& )
{
}
- catch( Exception& )
+ catch( const Exception& )
{
OSL_FAIL( "SmartContent::bindTo: unexpected exception caught!" );
}
@@ -217,7 +217,7 @@ namespace svt
// from here on, we definately know that the content is valid
m_eState = VALID;
}
- catch( Exception& )
+ catch( const Exception& )
{
// now we're definately invalid
m_eState = INVALID;
@@ -240,7 +240,7 @@ namespace svt
// from here on, we definately know that the content is valid
m_eState = VALID;
}
- catch( ::com::sun::star::uno::Exception& )
+ catch( const ::com::sun::star::uno::Exception& )
{
// now we're definately invalid
m_eState = INVALID;
@@ -303,7 +303,7 @@ namespace svt
// now we're definately valid
m_eState = VALID;
}
- catch( Exception& )
+ catch( const Exception& )
{
// now we're definately invalid
m_eState = INVALID;