Kaydet (Commit) 5e70740d authored tarafından Stephan Bergmann's avatar Stephan Bergmann

DbgIs* return types want to be bool

Change-Id: I86587025d397d2d84f9aed1e204ae21056829a1c
üst 832f4c4b
......@@ -69,31 +69,31 @@ inline void DbgSaveData( const DbgData& rData )
DbgFunc( DBG_FUNC_SAVEDATA, (void*)&rData );
}
inline sal_uIntPtr DbgIsResource()
inline bool DbgIsResource()
{
DbgData* pData = DbgGetData();
if ( pData )
return pData->nTestFlags & DBG_TEST_RESOURCE;
else
return sal_False;
return false;
}
inline sal_uIntPtr DbgIsDialog()
inline bool DbgIsDialog()
{
DbgData* pData = DbgGetData();
if ( pData )
return pData->nTestFlags & DBG_TEST_DIALOG;
else
return sal_False;
return false;
}
inline sal_uIntPtr DbgIsBoldAppFont()
inline bool DbgIsBoldAppFont()
{
DbgData* pData = DbgGetData();
if ( pData )
return pData->nTestFlags & DBG_TEST_BOLDAPPFONT;
else
return sal_False;
return false;
}
inline void DbgSetTestSolarMutex( DbgTestSolarMutexProc pProc )
......
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