From c3586b684c58e06cd80dea87d7681354acfec80b Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 12 Dec 2016 16:31:57 +0200 Subject: OSL_TRACE->SAL in chart2..oox Change-Id: I133a6441824bfbefcfcda130119b5c5d706f86b2 Reviewed-on: https://gerrit.libreoffice.org/31907 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- cli_ure/source/climaker/climaker_app.cxx | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'cli_ure') diff --git a/cli_ure/source/climaker/climaker_app.cxx b/cli_ure/source/climaker/climaker_app.cxx index 46935deb0b90..23cca54d9557 100644 --- a/cli_ure/source/climaker/climaker_app.cxx +++ b/cli_ure/source/climaker/climaker_app.cxx @@ -161,19 +161,12 @@ static bool is_option( if (len == 2 && arg[ 1 ] == option_info->m_short_option) { ++(*pIndex); -#if OSL_DEBUG_LEVEL > 1 - OSL_TRACE( - __FILE__": identified option \'%c\'", option_info->m_short_option ); -#endif return true; } if (arg[ 1 ] == '-' && rtl_ustr_ascii_compare( arg.pData->buffer + 2, option_info->m_name ) == 0) { ++(*pIndex); -#if OSL_DEBUG_LEVEL > 1 - OSL_TRACE( __FILE__": identified option \'%s\'", option_info->m_name ); -#endif return true; } return false; @@ -199,11 +192,6 @@ static bool read_argument( { osl_getCommandArg( *pIndex, &pValue->pData ); ++(*pIndex); -#if OSL_DEBUG_LEVEL > 1 - OString cstr_val( - OUStringToOString( *pValue, osl_getThreadTextEncoding() ) ); - OSL_TRACE( __FILE__": argument value: %s\n", cstr_val.getStr() ); -#endif return true; } --(*pIndex); -- cgit