summaryrefslogtreecommitdiff
path: root/xmloff/source/style/xmlnumfe.cxx
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2014-04-04 12:22:49 +0200
committerEike Rathke <erack@redhat.com>2014-04-04 12:26:04 +0200
commit3bc729b4b97ff3df67bb7af541b088f88248a1ec (patch)
tree6c8d33f4d7eb71419e6e6e4f81a3a5e37ad5041b /xmloff/source/style/xmlnumfe.cxx
parentdfcc851d65c8d81988843ef31a75b5d30051ddfd (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/source/style/xmlnumfe.cxx')
-rw-r--r--xmloff/source/style/xmlnumfe.cxx2
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;