https://bugs.freedesktop.org/show_bug.cgi?id=72702

          Priority: medium
            Bug ID: 72702
          Assignee: [email protected]
           Summary: LibreOffice Calc freezes when latin characters mixed
                    with Non-Latin
          Severity: normal
    Classification: Unclassified
                OS: Linux (All)
          Reporter: [email protected]
          Hardware: x86-64 (AMD64)
            Status: NEW
           Version: 4.2.0.0.beta2
         Component: BASIC
           Product: LibreOffice

LibreOffice Calc freezes when latin characters mixed with Non-Latin

Steps to reproduce:

1. Start calc and rename the sheet as "sheet1";
2. open the BASIC IDE. Copy the code into IDE and press F5 to run it;
3. Note: calc will freeze. Before running then code, save your work.

REM  *****  BASIC  *****
Sub test
    dim sheet as object    
      sheet=ThisComponent.Sheets.getByName("sheet1")

    dim rang(1,2)
    rang(0,0) =  "한국어"  & "latin"  'mixed Non latin
    rang(0,1) = "Latin characters"
    rang(0,2) =  2
    rang(1,0) =  "한국어"  & "0"  'mixed Number
    rang(1,1) = "Latin characters"
    rang(1,2) =  2
    Sheet.getCellRangeByName("A1:C2").setDataArray(rang)
End Sub

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to