[PATCH] fix if statement and translate German OSL_ENSURE
Joren De Cuyper (via Code Review)
gerrit at gerrit.libreoffice.org
Fri Feb 1 18:00:10 PST 2013
Hi,
I have submitted a patch for review:
https://gerrit.libreoffice.org/1960
To pull it, you can do:
git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/60/1960/1
fix if statement and translate German OSL_ENSURE
Change-Id: I3eefa563e00e6a4dcb3f1e5726bdf6d27f536624
---
M sw/source/core/txtnode/ndtxt.cxx
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/sw/source/core/txtnode/ndtxt.cxx b/sw/source/core/txtnode/ndtxt.cxx
index ab4cd3c..703e632 100644
--- a/sw/source/core/txtnode/ndtxt.cxx
+++ b/sw/source/core/txtnode/ndtxt.cxx
@@ -1071,10 +1071,9 @@
{
SetAttrListLevel(nNewLevel);
}
-
+ if (pDoc)
{
- if (pDoc)
- pDoc->GetNodes().UpdateOutlineNode(*this);
+ pDoc->GetNodes().UpdateOutlineNode(*this);
}
@@ -3575,9 +3574,9 @@
SwFmtColl* SwTxtNode::ChgFmtColl( SwFmtColl *pNewColl )
{
- OSL_ENSURE( pNewColl,"ChgFmtColl: Collectionpointer ist 0." );
+ OSL_ENSURE( pNewColl,"ChgFmtColl: Collectionpointer has value 0." );
OSL_ENSURE( HAS_BASE( SwTxtFmtColl, pNewColl ),
- "ChgFmtColl: ist kein Text-Collectionpointer." );
+ "ChgFmtColl: is not a Text Collection pointer." );
SwTxtFmtColl *pOldColl = GetTxtColl();
if( pNewColl != pOldColl )
--
To view, visit https://gerrit.libreoffice.org/1960
To unsubscribe, visit https://gerrit.libreoffice.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I3eefa563e00e6a4dcb3f1e5726bdf6d27f536624
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Joren De Cuyper <joren.libreoffice at telenet.be>
More information about the LibreOffice
mailing list