diff options
author | Eike Rathke <erack@redhat.com> | 2014-04-04 12:22:49 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2014-04-04 12:26:04 +0200 |
commit | 3bc729b4b97ff3df67bb7af541b088f88248a1ec (patch) | |
tree | 6c8d33f4d7eb71419e6e6e4f81a3a5e37ad5041b /xmloff | |
parent | dfcc851d65c8d81988843ef31a75b5d30051ddfd (diff) |
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
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/style/xmlnumfe.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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; |