[Libreoffice-commits] .: binfilter/bf_svx

Caolán McNamara caolan at kemper.freedesktop.org
Tue Jan 25 12:57:33 PST 2011


 binfilter/bf_svx/source/form/svx_fmpgeimp.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 74963e71b10dc127d83790f7cf4eab94dd98ddd0
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Tue Jan 25 20:57:25 2011 +0000

    fix build break in dbgutil mode

diff --git a/binfilter/bf_svx/source/form/svx_fmpgeimp.cxx b/binfilter/bf_svx/source/form/svx_fmpgeimp.cxx
index a90c99e..66fa694 100644
--- a/binfilter/bf_svx/source/form/svx_fmpgeimp.cxx
+++ b/binfilter/bf_svx/source/form/svx_fmpgeimp.cxx
@@ -275,7 +275,7 @@ using namespace ::binfilter::svxform;
 /*N*/
 /*N*/     // Zuordnung der Formobjekte zu den FormComponents
 /*N*/     sal_Int32 nLength = xInStrm->readLong();
-/*N*/     DBG_ASSERT(nLength == (sal_Int32) aList.Count(), "Fehler beim Lesen der UnoModels");
+/*N*/     DBG_ASSERT(nLength == (sal_Int32) aList.size(), "Fehler beim Lesen der UnoModels");
 /*N*/     for (sal_Int32 i = 0; i < nLength; i++)
 /*N*/     {
 /*N*/         Reference< ::com::sun::star::awt::XControlModel >  xRef(xInStrm->readObject(), UNO_QUERY);


More information about the Libreoffice-commits mailing list