[Libreoffice-commits] .: sw/source
Cédric Bosdonnat
cbosdo at kemper.freedesktop.org
Fri Feb 11 01:27:19 PST 2011
sw/source/core/text/porlay.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 97ca0d87bbd0c60e4173e5fe1ee4c03ddceb8758
Author: Cédric Bosdonnat <cedricbosdo at openoffice.org>
Date: Fri Feb 11 10:26:03 2011 +0100
Fixed build breaker in sw
diff --git a/sw/source/core/text/porlay.cxx b/sw/source/core/text/porlay.cxx
index b3945f4..e443fc6 100644
--- a/sw/source/core/text/porlay.cxx
+++ b/sw/source/core/text/porlay.cxx
@@ -1367,7 +1367,7 @@ void SwScriptInfo::InitScriptInfo( const SwTxtNode& rNode, sal_Bool bRTL )
// position and that we don't have "empty" changes.
BYTE nLastTyp = i18n::ScriptType::WEAK;
xub_StrLen nLastPos = 0;
- for (aScriptChanges::const_iterator i2 = aScriptChanges.begin(); i2 < aScriptChanges.end(); ++i2)
+ for (std::vector<ScriptChangeInfo>::const_iterator i2 = aScriptChanges.begin(); i2 < aScriptChanges.end(); ++i2)
{
OSL_ENSURE( nLastTyp != i2->type &&
nLastPos < i2->position,
More information about the Libreoffice-commits
mailing list