summaryrefslogtreecommitdiff
path: root/chart2/source/tools/WrappedProperty.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/tools/WrappedProperty.cxx')
-rw-r--r--chart2/source/tools/WrappedProperty.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/chart2/source/tools/WrappedProperty.cxx b/chart2/source/tools/WrappedProperty.cxx
index b738293c58cc..b7671619acc1 100644
--- a/chart2/source/tools/WrappedProperty.cxx
+++ b/chart2/source/tools/WrappedProperty.cxx
@@ -19,6 +19,7 @@
#include <WrappedProperty.hxx>
#include <com/sun/star/drawing/LineStyle.hpp>
+#include <tools/diagnose_ex.h>
using namespace ::com::sun::star;
using ::com::sun::star::uno::Any;
@@ -110,9 +111,9 @@ beans::PropertyState WrappedProperty::getPropertyState( const Reference< beans::
aState = beans::PropertyState_DEFAULT_VALUE;
}
}
- catch( const beans::UnknownPropertyException& ex )
+ catch( const beans::UnknownPropertyException& )
{
- SAL_WARN("chart2", "Exception caught. " << ex );
+ DBG_UNHANDLED_EXCEPTION("chart2");
}
}
return aState;
forms/Noel Grandin 2015-09-18boost->stdCaolán McNamara 2015-09-17convert Link<> to typedNoel Grandin 2015-08-19Remove two silly typedefsStephan Bergmann