[Libreoffice-commits] .: sc/source
Eike Rathke
erack at kemper.freedesktop.org
Fri Jul 27 10:23:36 PDT 2012
sc/source/filter/excel/tokstack.cxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit b06d679eb3d8190a470f7640740571f388106605
Author: Eike Rathke <erack at redhat.com>
Date: Fri Jul 27 19:20:50 2012 +0200
added back a missing else
c75e2ed27d5da71891ed7a148ff9603c58eaa58e (merge of OOo filter rework)
omitted an else of a condition.
Change-Id: I6f342a48938aaf4090fc738afc6cf551a083b4fc
diff --git a/sc/source/filter/excel/tokstack.cxx b/sc/source/filter/excel/tokstack.cxx
index 003dc5c..1b881c2 100644
--- a/sc/source/filter/excel/tokstack.cxx
+++ b/sc/source/filter/excel/tokstack.cxx
@@ -475,7 +475,8 @@ bool TokenPool::GetElement( const sal_uInt16 nId )
else
pScToken->AddExternal( p->aText, p->eId );
}
- bRet = false;
+ else
+ bRet = false;
}
break;
case T_Nlf:
More information about the Libreoffice-commits
mailing list