From f1ac23866db030bd4489ab79a7e2e669070b9dab Mon Sep 17 00:00:00 2001 From: Chris Sherlock Date: Sun, 7 May 2017 13:23:49 +1000 Subject: tdf#43157: convert dbaccess module away from OSL_ASSERT to assert Change-Id: I14537ea5c9499df4d9ded48071b066fd8a99a0ce --- dbaccess/source/ui/browser/formadapter.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dbaccess') diff --git a/dbaccess/source/ui/browser/formadapter.cxx b/dbaccess/source/ui/browser/formadapter.cxx index 6b4650ef04fb..b81314122913 100644 --- a/dbaccess/source/ui/browser/formadapter.cxx +++ b/dbaccess/source/ui/browser/formadapter.cxx @@ -1403,7 +1403,7 @@ void SbaXFormAdapter::implInsert(const Any& aElement, sal_Int32 nIndex, const OU } // check the index - OSL_ASSERT(nIndex >= 0); + assert(nIndex >= 0); if (sal::static_int_cast< sal_uInt32 >(nIndex) > m_aChildren.size()) nIndex = m_aChildren.size(); -- cgit