diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-07 13:23:49 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-07 13:23:49 +1000 |
commit | f1ac23866db030bd4489ab79a7e2e669070b9dab (patch) | |
tree | 14149a00f12f9ac59f4205bc9bfb6a1264f6fab5 | |
parent | d8c2e2cdf267d9222629739261519b89a4025ea2 (diff) |
tdf#43157: convert dbaccess module away from OSL_ASSERT to assert
Change-Id: I14537ea5c9499df4d9ded48071b066fd8a99a0ce
-rw-r--r-- | dbaccess/source/ui/browser/formadapter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |