svl/source/numbers/zforscan.cxx |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 78b1bf986b5e518968ad70aed6dab1aa0a621cbe
Author: Noel Power <noel.po...@suse.com>
Date:   Tue Nov 13 16:30:07 2012 +0000

    don't always show integer part for fraction formats with hard denom 
fdo#56205
    
    fixes bug when you have a fraction format with a forced denominator e.g. 
'?/5'
    which showed the integer part of the fraction ( as if the format was '# 
?/5' )
    but even without the space
    e.g. before fix
    pi 3.14159265358979 with format '?/8' would be shown as "31/8"
    
    after the fix
       3.14159265358979 with format '?/8' would be shown as "25/8"
    
    Change-Id: I1feb8b78af94b90db1bcc30da248077243dd8dfc
    Reviewed-on: https://gerrit.libreoffice.org/1047
    Reviewed-by: Eike Rathke <er...@redhat.com>
    Tested-by: Eike Rathke <er...@redhat.com>
    Reviewed-on: https://gerrit.libreoffice.org/1064

diff --git a/svl/source/numbers/zforscan.cxx b/svl/source/numbers/zforscan.cxx
index 069d2d3..1124fc5 100644
--- a/svl/source/numbers/zforscan.cxx
+++ b/svl/source/numbers/zforscan.cxx
@@ -1605,7 +1605,9 @@ xub_StrLen ImpSvNumberformatScan::FinalScan( String& 
rString )
                                 nCounter = nCntPost;
                             else if (nCntPre)
                                 nCounter = nCntPre;
-                            if (!nCntPre)
+                            // don't artificially increment nCntPre
+                            // for forced denominator
+                            if ( ( eScannedType != NUMBERFORMAT_FRACTION ) && 
(!nCntPre) )
                                 nCntPre++;
                         }
                     }
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to