summaryrefslogtreecommitdiff
path: root/desktop/source/pkgchk/unopkg/unopkg_misc.cxx
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2017-05-07 12:54:03 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2017-05-07 12:54:03 +1000
commitfbea669c74f686f5a75aa80384bbfeff98680f8d (patch)
tree53a8106ad6bf3d9fe9e16224e62936a498db0a40 /desktop/source/pkgchk/unopkg/unopkg_misc.cxx
parent2b1737f648024328390bf44c4f2c614e748a92fd (diff)
tdf#43157: convert desktop module away from OSL_ASSERT to assert
Change-Id: I521042a79cf93a51d84b72554d04715b321dd942
Diffstat (limited to 'desktop/source/pkgchk/unopkg/unopkg_misc.cxx')
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_misc.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/desktop/source/pkgchk/unopkg/unopkg_misc.cxx b/desktop/source/pkgchk/unopkg/unopkg_misc.cxx
index c74d9e0d98aa..1615b22006b9 100644
--- a/desktop/source/pkgchk/unopkg/unopkg_misc.cxx
+++ b/desktop/source/pkgchk/unopkg/unopkg_misc.cxx
@@ -124,7 +124,7 @@ bool isOption( OptionInfo const * option_info, sal_uInt32 * pIndex )
bool isBootstrapVariable(sal_uInt32 * pIndex)
{
- OSL_ASSERT(osl_getCommandArgCount() >= *pIndex);
+ assert(osl_getCommandArgCount() >= *pIndex);
OUString arg;
osl_getCommandArg(*pIndex, &arg.pData);
@@ -144,7 +144,7 @@ bool readArgument(
{
if (*pIndex < osl_getCommandArgCount())
{
- OSL_ASSERT( pValue != nullptr );
+ assert( pValue != nullptr );
osl_getCommandArg( *pIndex, &pValue->pData );
dp_misc::TRACE(__FILE__ ": argument value: "
+ *pValue + "\n");
@@ -273,7 +273,7 @@ void printf_package(
const Reference<deployment::XPackageTypeInfo> xPackageType(
xPackage->getPackageType() );
- OSL_ASSERT( xPackageType.is() );
+ assert( xPackageType.is() );
if (xPackageType.is()) {
printf_line( "Media-Type", xPackageType->getMediaType(), level + 1 );
}
@@ -310,7 +310,7 @@ void printf_packages(
std::vector<bool> const & vecUnaccepted,
Reference<XCommandEnvironment> const & xCmdEnv, sal_Int32 level )
{
- OSL_ASSERT(allExtensions.size() == vecUnaccepted.size());
+ assert(allExtensions.size() == vecUnaccepted.size());
if (allExtensions.empty())
{
@@ -383,7 +383,7 @@ Reference<XComponentContext> connectToOffice(
if (verbose)
dp_misc::writeConsole("OK. Connecting...");
- OSL_ASSERT( buf.isEmpty() );
+ assert( buf.isEmpty() );
buf.append( "uno:pipe,name=" );
buf.append( pipeId );
buf.append( ";urp;StarOffice.ComponentContext" );