summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2017-05-07 13:23:49 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2017-05-07 13:23:49 +1000
commitf1ac23866db030bd4489ab79a7e2e669070b9dab (patch)
tree14149a00f12f9ac59f4205bc9bfb6a1264f6fab5 /dbaccess
parentd8c2e2cdf267d9222629739261519b89a4025ea2 (diff)
tdf#43157: convert dbaccess module away from OSL_ASSERT to assert
Change-Id: I14537ea5c9499df4d9ded48071b066fd8a99a0ce
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/ui/browser/formadapter.cxx2
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();