diff options
author | Miklos Vajna <vmiklos@frugalware.org> | 2011-08-01 21:58:37 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@frugalware.org> | 2011-08-02 00:26:25 +0200 |
commit | 465f93ce1992660f827699cd79d52548a38fe4e0 (patch) | |
tree | ea029f1844d823d1d726d1325923c3600f0724a1 | |
parent | aa3a17653bcc049edd5764f3ec18ba78ba697a9c (diff) |
SwCache: fix build with dbglevel=2
-rw-r--r-- | sw/source/core/bastyp/swcache.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/source/core/bastyp/swcache.cxx b/sw/source/core/bastyp/swcache.cxx index 5e1fb445ac..b04ebb96e8 100644 --- a/sw/source/core/bastyp/swcache.cxx +++ b/sw/source/core/bastyp/swcache.cxx @@ -30,6 +30,7 @@ #include "precompiled_sw.hxx" #include <swcache.hxx> +#include <rtl/strbuf.hxx> SV_IMPL_PTRARR(SwCacheObjArr,SwCacheObj*); @@ -135,7 +136,7 @@ SwCache::~SwCache() append('\n'). append(RTL_CONSTASCII_STRINGPARAM( "Number of insert on free places: ")). - append(static_cast<sal_Int32<(nInsertFree)). + append(static_cast<sal_Int32>(nInsertFree)). append('\n'). append(RTL_CONSTASCII_STRINGPARAM( "Number of replacements: ")). |