summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2012-09-14 13:29:08 +0200
committerLuboš Luňák <l.lunak@suse.cz>2012-09-14 13:33:53 +0200
commit04ddb79f5016c09503edcd50de35d40a2789c854 (patch)
tree01e8907c28fdf5432facc74cd9d6e4e0a98f438c /svtools
parent711fcb41c5adcab3b726624b01834c54398e601e (diff)
fix debug message
It did not compile, and not using the deprecated macro fixes that as a side-effect. Change-Id: I97b8cd2ff1a650ec9d38cbf7eeb8780177a7fd7a
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/table/cellvalueconversion.cxx7
1 files changed, 1 insertions, 6 deletions
diff --git a/svtools/source/table/cellvalueconversion.cxx b/svtools/source/table/cellvalueconversion.cxx
index 27c9ed33d77d..677283a92001 100644
--- a/svtools/source/table/cellvalueconversion.cxx
+++ b/svtools/source/table/cellvalueconversion.cxx
@@ -421,12 +421,7 @@ namespace svt
}
else
{
-#if OSL_DEBUG_LEVEL > 0
- ::rtl::OStringBuffer message( "lcl_getValueNormalizer: unsupported type '" );
- message.append( ::rtl::OUStringToOString( sTypeName, RTL_TEXTENCODING_ASCII_US ) );
- message.append( "'!" );
- OSL_ENSURE( false, message.makeStringAndClear() );
-#endif
+ SAL_WARN( "svtools.table", "unsupported type '" << sTypeName << "'!" );
}
io_data.aNormalizers[ sTypeName ] = o_formatter;
}