diff options
Diffstat (limited to 'chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx')
-rw-r--r-- | chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx b/chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx index df440bdf8ce6..906318a6bdd6 100644 --- a/chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx +++ b/chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx @@ -41,6 +41,7 @@ #include <com/sun/star/chart2/FillBitmap.hpp> #include <com/sun/star/awt/Gradient.hpp> #include <com/sun/star/container/XNameAccess.hpp> +#include <tools/diagnose_ex.h> using namespace ::com::sun::star; @@ -255,9 +256,9 @@ void GraphicPropertyItemConverter::FillSpecialItem( } } } - catch( const beans::UnknownPropertyException &ex ) + catch( const beans::UnknownPropertyException & ) { - SAL_WARN("chart2", "Exception caught. " << ex ); + DBG_UNHANDLED_EXCEPTION("chart2"); } break; @@ -502,9 +503,9 @@ bool GraphicPropertyItemConverter::ApplySpecialItem( } } } - catch( const beans::UnknownPropertyException &ex ) + catch( const beans::UnknownPropertyException & ) { - SAL_WARN("chart2", "Exception caught. " << ex ); + DBG_UNHANDLED_EXCEPTION("chart2"); } break; |