From 3bc729b4b97ff3df67bb7af541b088f88248a1ec Mon Sep 17 00:00:00 2001 From: Eike Rathke Date: Fri, 4 Apr 2014 12:22:49 +0200 Subject: [PATCH] resolved fdo#76777 now write correct number style condition operator != https://gerrit.libreoffice.org/8834 and https://gerrit.libreoffice.org/8836 will prepare 4.2.4 and 4.1.6 to accept the correct != operator instead of <> that was written so far. Change-Id: Ib89bbaf096e2d459767c4d05e5bf5151a1120c1a --- xmloff/source/style/xmlnumfe.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmloff/source/style/xmlnumfe.cxx b/xmloff/source/style/xmlnumfe.cxx index 125035c50c49..0cfb0cd73588 100644 --- a/xmloff/source/style/xmlnumfe.cxx +++ b/xmloff/source/style/xmlnumfe.cxx @@ -707,7 +707,7 @@ void SvXMLNumFmtExport::WriteMapElement_Impl( sal_Int32 nOp, double fLimit, switch ( nOp ) { case NUMBERFORMAT_OP_EQ: aCondStr.append( '=' ); break; - case NUMBERFORMAT_OP_NE: aCondStr.appendAscii( "<>" ); break; + case NUMBERFORMAT_OP_NE: aCondStr.appendAscii( "!=" ); break; case NUMBERFORMAT_OP_LT: aCondStr.append( '<' ); break; case NUMBERFORMAT_OP_LE: aCondStr.appendAscii( "<=" ); break; case NUMBERFORMAT_OP_GT: aCondStr.append( '>' ); break;