summaryrefslogtreecommitdiff
path: root/svgio
AgeCommit message (Expand)Author
2018-08-31tdf#119557 style hierarchy isn't stable so looping check fails falselyCaolán McNamara
2018-07-26crashtesting: infinite recurse with moz455984-5.svgCaolán McNamara
2018-07-26crashtesting: infinite recurse with moz609361-1.svgCaolán McNamara
2018-07-26crashtesting: infinite recurse with moz384637-1.svgCaolán McNamara
2018-07-18crashtesting: infinite recurse on moz330387-6.svgCaolán McNamara
2018-07-12tdf#118232 Allow load and insert of SVGs with no GeometryArmin Le Grand
2018-06-14Replace SVGFilter using SVGIOArmin Le Grand
2018-05-13svgio: fix rendering when the width/height isn't present in SVGTomaž Vajngerl
2018-04-11new loplugin:unusedvariablemoreNoel Grandin
2018-04-06tdf#114738 Add support for transparency for EMF+ recordsBartosz Kosiorek
2018-04-01remove unused processfactory.hxx includesJochen Nitschke
2018-03-28use boost::optional in sc and svgioNoel Grandin
2018-03-12loplugin:redundantfcast look for redundant copies in return statementsNoel Grandin
2018-03-05drop sax::tools::*base64 methodsNoel Grandin
2018-03-05loplugin:useuniqueptr in SvgNodeNoel Grandin
2018-03-05loplugin:useuniqueptr in SvgPolyNodeNoel Grandin
2018-03-05loplugin:useuniqueptr in SvgPatternNodeNoel Grandin
2018-03-05loplugin:useuniqueptr in SvgPathNodeNoel Grandin
2018-01-25Fix typosAndrea Gelmini
2018-01-22ofz#5565 Indirect-leakCaolán McNamara
2018-01-17ofz#5431 Direct-leakCaolán McNamara
2018-01-12More loplugin:cstylecast: svgioStephan Bergmann
2018-01-02loplugin:passstuffbyref improved return in sd,variousNoel Grandin
2017-12-29loplugin:unnecessaryparen improve return checkNoel Grandin
2017-12-20Fix typosAndrea Gelmini
2017-12-19inline use-once typedefsNoel Grandin
2017-12-19loplugin:unusedenumconstantsNoel Grandin
2017-12-16Fix typosAndrea Gelmini
2017-12-11loplugin:salcall fix functionsNoel Grandin
2017-10-23loplugin:includeform: svgioStephan Bergmann
2017-10-23overload std::hash for OUString and OStringNoel Grandin
2017-10-04add << operator for css::uno::ExceptionNoel Grandin
2017-09-26Rename the basegfx::tools namespace to basegfx::utilsTor Lillqvist
2017-09-22Fresh run of bin/update_pch.shMike Kaganski
2017-09-12clang-tidy modernize-use-emplace in svgio..svtoolsNoel Grandin
2017-08-24Consistently use OUString in test::DirectoriesStephan Bergmann
2017-08-17remove UL/L suffixes from integer constants in initialiser/call expressionsNoel Grandin
2017-07-21loplugin:constparams in svgioNoel Grandin
2017-07-17extend loplugin useuniqueptr to OUString pointersNoel Grandin
2017-07-15emfplus: create a wmf/emf/emf+ primitive based importerArmin Le Grand
2017-07-14 use more OUString::operator== in sfx2..svtoolsNoel Grandin
2017-07-14extend loplugin useuniqueptr to POD typesNoel Grandin
2017-07-13bah, wrong resetCaolán McNamara
2017-07-13Resolves: tdf#108903 avoid recurse to deathCaolán McNamara
2017-06-27loplugin:oncevar in starmath..svlNoel Grandin
2017-06-21loplugin:unusedfields store..svlNoel Grandin
2017-06-12clang-tidy readability-delete-null-pointerNoel Grandin
2017-06-06cppcheck: knownConditionTrueFalseJochen Nitschke
2017-06-02convert GRFILTER constants to ERRCODE_GRFILTER_Noel Grandin
2017-05-28remove unnecessary use of OString::getStrNoel Grandin
tual void SAL_CALL release()
- throw ();
+ virtual void SAL_CALL acquire() SAL_NOEXCEPT;
+ virtual void SAL_CALL release() SAL_NOEXCEPT;
// XTypeProvider
virtual Sequence< Type > SAL_CALL getTypes();
virtual Sequence< sal_Int8 > SAL_CALL getImplementationId();
@@ -135,15 +133,13 @@ Any MyService1Impl::queryInterface( Type const & type )
return Any();
}
-void MyService1Impl::acquire()
- throw ()
+void MyService1Impl::acquire() SAL_NOEXCEPT
{
// thread-safe incrementation of reference count
::osl_atomic_increment( &m_refcount );
}
-void MyService1Impl::release()
- throw ()
+void MyService1Impl::release() SAL_NOEXCEPT
{
// thread-safe decrementation of reference count
if (0 == ::osl_atomic_decrement( &m_refcount ))
diff --git a/odk/examples/DevelopersGuide/Components/CppComponent/service2_impl.cxx b/odk/examples/DevelopersGuide/Components/CppComponent/service2_impl.cxx
index eecaec5a3db1..7c1648a2ad8d 100644
--- a/odk/examples/DevelopersGuide/Components/CppComponent/service2_impl.cxx
+++ b/odk/examples/DevelopersGuide/Components/CppComponent/service2_impl.cxx
@@ -78,7 +78,7 @@ class MyService2Impl : public ::cppu::WeakImplHelper3<
// other UNO API's in your implementation
Reference< XComponentContext > m_xContext;
public:
- inline MyService2Impl(Reference< XComponentContext > const & xContext) throw ()
+ inline MyService2Impl(Reference< XComponentContext > const & xContext) SAL_NOEXCEPT
: m_xContext(xContext)
{}
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx
index a52cb0c86a41..d76bb84122a5 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx
@@ -72,7 +72,7 @@ OConnection::~OConnection()
m_pDriver = NULL;
}
-void SAL_CALL OConnection::release() throw()
+void SAL_CALL OConnection::release() SAL_NOEXCEPT
{
release_ChildImpl();
}
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.hxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.hxx
index b837cd3bc8ea..2daca07540eb 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.hxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.hxx
@@ -114,7 +114,7 @@ namespace connectivity
// OComponentHelper
virtual void SAL_CALL disposing();
// XInterface
- virtual void SAL_CALL release() throw();
+ virtual void SAL_CALL release() SAL_NOEXCEPT;
// XServiceInfo
DECLARE_SERVICE_INFO();
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.cxx
index bbd8954036bb..588883f84f9e 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.cxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.cxx
@@ -66,12 +66,12 @@ OPreparedStatement::~OPreparedStatement()
{
}
-void SAL_CALL OPreparedStatement::acquire() throw()
+void SAL_CALL OPreparedStatement::acquire() SAL_NOEXCEPT
{
OStatement_BASE2::acquire();
}
-void SAL_CALL OPreparedStatement::release() throw()
+void SAL_CALL OPreparedStatement::release() SAL_NOEXCEPT
{
OStatement_BASE2::release();
}
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.hxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.hxx
index f0a2f205b7d0..596da0d85626 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.hxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.hxx
@@ -99,8 +99,8 @@ namespace connectivity
//XInterface
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType );
- virtual void SAL_CALL acquire() throw();
- virtual void SAL_CALL release() throw();
+ virtual void SAL_CALL acquire() SAL_NOEXCEPT;
+ virtual void SAL_CALL release() SAL_NOEXCEPT;
//XTypeProvider
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes( );
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.cxx
index 97bcca3b7690..1e85337289f2 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.cxx
+++ b/