Kaydet (Commit) ff76c90f authored tarafından Chris Sherlock's avatar Chris Sherlock

tdf#43157: convert avmedia module away from OSL_ASSERT to assert

Change-Id: Ie484788019f11299c4e4796268507b9b16b7fd4a
üst 0483e756
......@@ -910,7 +910,7 @@ uno::Reference< ::media::XPlayerWindow > SAL_CALL Player::createPlayerWindow( co
rArguments[ 2 ] >>= pIntPtr;
SystemChildWindow *pParentWindow = reinterpret_cast< SystemChildWindow* >( pIntPtr );
const SystemEnvData* pEnvData = pParentWindow ? pParentWindow->GetSystemData() : nullptr;
OSL_ASSERT(pEnvData);
assert(pEnvData);
if (pEnvData)
{
#if defined(ENABLE_GTKSINK)
......
......@@ -56,7 +56,7 @@ Player::~Player()
QTMovie* Player::getMovie()
{
OSL_ASSERT( mpMovie );
assert( mpMovie );
return mpMovie;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment