sc/source/filter/oox/stylesbuffer.cxx |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 8b29f5cb0333c156154adc151a613a547fde4f8f
Author: Noel Power <noel.po...@suse.com>
Date:   Wed Mar 13 12:23:41 2013 +0000

    fix fdo#38385 - accept as valid 'start' and 'end' tokens for lineborders
    
    Change-Id: Ie092cc09c9c6e971c4f2020cb3b233ee350752ce

diff --git a/sc/source/filter/oox/stylesbuffer.cxx 
b/sc/source/filter/oox/stylesbuffer.cxx
index 3eb9430..8c8a0b9 100644
--- a/sc/source/filter/oox/stylesbuffer.cxx
+++ b/sc/source/filter/oox/stylesbuffer.cxx
@@ -1800,7 +1800,9 @@ BorderLineModel* Border::getBorderLine( sal_Int32 
nElement )
     switch( nElement )
     {
         case XLS_TOKEN( left ):     return &maModel.maLeft;
+        case XLS_TOKEN( start ):     return &maModel.maLeft;
         case XLS_TOKEN( right ):    return &maModel.maRight;
+        case XLS_TOKEN( end ):    return &maModel.maRight;
         case XLS_TOKEN( top ):      return &maModel.maTop;
         case XLS_TOKEN( bottom ):   return &maModel.maBottom;
         case XLS_TOKEN( diagonal ): return &maModel.maDiagonal;
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to