summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sc/source/core/data/dpoutput.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/core/data/dpoutput.cxx b/sc/source/core/data/dpoutput.cxx
index 820f89621122..ce6e102ca2a7 100644
--- a/sc/source/core/data/dpoutput.cxx
+++ b/sc/source/core/data/dpoutput.cxx
@@ -692,7 +692,7 @@ ScDPOutput::ScDPOutput( ScDocument* pD, const uno::Reference<sheet::XDimensionsS
{
aData = xResult->getResults();
}
- catch (uno::RuntimeException&)
+ catch (const uno::RuntimeException&)
{
bResultsError = true;
}
@@ -711,7 +711,7 @@ ScDPOutput::ScDPOutput( ScDocument* pD, const uno::Reference<sheet::XDimensionsS
aAny >>= aUStr;
aDataDescription = aUStr;
}
- catch(uno::Exception&)
+ catch(const uno::Exception&)
{
}
}
@@ -1306,7 +1306,7 @@ void lcl_GetTableVars( sal_Int32& rGrandTotalCols, sal_Int32& rGrandTotalRows, s
aGivenName = strLayoutName;
}
}
- catch(uno::Exception&)
+ catch(const uno::Exception&)
{
}
rDataNames.push_back( aSourceName );
@@ -1626,7 +1626,7 @@ uno::Sequence<sheet::GeneralFunction> lcl_GetSubTotals(
uno::Any aValue = xLevelProp->getPropertyValue( rtl::OUString(SC_UNO_DP_SUBTOTAL) );
aValue >>= aSubTotals;
}
- catch(uno::Exception&)
+ catch(const uno::Exception&)
{
}
}