diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-07 13:59:06 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-07 13:59:06 +1000 |
commit | 9d4d4d8434e5333ecb9464c76aea795dfbd6da2c (patch) | |
tree | aff2893f0c8486234d3221ce5b49a622523ea4e6 | |
parent | fb684bbd9d376ae5e3081c236f5d0775b5a93c03 (diff) |
tdf#43157: convert scripting module away from OSL_ASSERT to assert
Change-Id: I6276488e930b60855053747828547e2ed659c060
-rw-r--r-- | scripting/source/dlgprov/dlgevtatt.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripting/source/dlgprov/dlgevtatt.cxx b/scripting/source/dlgprov/dlgevtatt.cxx index 33f950c51c00..7d527f48cd31 100644 --- a/scripting/source/dlgprov/dlgevtatt.cxx +++ b/scripting/source/dlgprov/dlgevtatt.cxx @@ -470,7 +470,7 @@ namespace dlgprov } else { - OSL_ASSERT( m_xContext.is() ); + assert( m_xContext.is() ); if ( m_xContext.is() ) { Reference< provider::XScriptProviderFactory > xFactory = |