summaryrefslogtreecommitdiffstats
path: root/sw
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-05-24 23:03:10 +0200
committerMichael Stahl <mstahl@redhat.com>2012-05-25 00:17:05 +0200
commitf9adf2b5b395dd443d1edfea1b23cb75f2152358 (patch)
tree679b309c3366663041edb75b43e6273494a50bd7 /sw
parentConvert SV_DECL_PTRARR_DEL(SwNumRuleTbl) to std::vector (diff)
downloadcore-f9adf2b5b395dd443d1edfea1b23cb75f2152358.tar.gz
core-f9adf2b5b395dd443d1edfea1b23cb75f2152358.zip
fix DBGUTIL code for previous commit
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/doc/dbgoutsw.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/doc/dbgoutsw.cxx b/sw/source/core/doc/dbgoutsw.cxx
index 604607c92934..b14e07d0cd7f 100644
--- a/sw/source/core/doc/dbgoutsw.cxx
+++ b/sw/source/core/doc/dbgoutsw.cxx
@@ -924,7 +924,7 @@ String lcl_dbg_out(const SwNumRuleTbl & rTbl)
{
String aResult("[", RTL_TEXTENCODING_ASCII_US);
- for (sal_uInt16 n = 0; n < rTbl.Count(); n++)
+ for (size_t n = 0; n < rTbl.size(); n++)
{
if (n > 0)
aResult += String(", ", RTL_TEXTENCODING_ASCII_US);