sc/source/ui/unoobj/scdetect.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3dd0105d1c237fd5af619d6153802b3549678c80
Author: Julien Nabet <serval2...@yahoo.fr>
Date:   Sun May 27 21:07:28 2018 +0200

    DBase: synchronize DB types known on Calc with those known on Base
    
    by adding 0x31, VisualFoxProAuto on array of valid marks in lcl_MayBeDBase
    See 
https://opengrok.libreoffice.org/xref/core/connectivity/source/inc/dbase/DTable.hxx#40
    and 
https://opengrok.libreoffice.org/xref/core/include/connectivity/dbtools.hxx#823
    
    Yes, it should be great to have only 1 enum
    
    Change-Id: Ic3fb74c838aab5e744cbe1d70ad8ca4ce2c00b8d
    Reviewed-on: https://gerrit.libreoffice.org/54894
    Tested-by: Jenkins <c...@libreoffice.org>
    Reviewed-by: Julien Nabet <serval2...@yahoo.fr>

diff --git a/sc/source/ui/unoobj/scdetect.cxx b/sc/source/ui/unoobj/scdetect.cxx
index 881c5f9834a3..251fda4e1549 100644
--- a/sc/source/ui/unoobj/scdetect.cxx
+++ b/sc/source/ui/unoobj/scdetect.cxx
@@ -191,7 +191,7 @@ static bool lcl_MayBeDBase( SvStream& rStream )
     // Look for dbf marker, see connectivity/source/inc/dbase/DTable.hxx
     // DBFType for values.
     const sal_uInt8 nValidMarks[] = {
-        0x03, 0x04, 0x05, 0x30, 0x43, 0xB3, 0x83, 0x8b, 0x8e, 0xf5 };
+        0x03, 0x04, 0x05, 0x30, 0x31, 0x43, 0xB3, 0x83, 0x8b, 0x8e, 0xf5 };
     sal_uInt8 nMark;
     rStream.Seek(STREAM_SEEK_TO_BEGIN);
     rStream.ReadUChar( nMark );
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to