[Bug 161883] ElseIf is not equivalent to Else If

2024-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=161883 f...@bger.ch changed: What|Removed |Added See Also||https://bugs.documentfounda

[Bug 161883] ElseIf is not equivalent to Else If

2024-07-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=161883 Olivier Hallot changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 161883] ElseIf is not equivalent to Else If

2024-07-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=161883 --- Comment #9 from Commit Notification --- Alain Romedenne committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/help/commit/80cfa06de7bb382c30ead55837378dcd568d2e30 tdf#161883 Fix to IF

[Bug 161883] ElseIf is not equivalent to Else If

2024-07-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=161883 Commit Notification changed: What|Removed |Added Whiteboard||target:25.2.0 -- You are

[Bug 161883] ElseIf is not equivalent to Else If

2024-07-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=161883 --- Comment #8 from ge.hu...@gmx.net --- (In reply to Alain Romedenne from comment #7) > My Bad, this must be considered solely as a documentation issue. 2nd that. -- You are receiving this mail because: You are the assignee for the bug

[Bug 161883] ElseIf is not equivalent to Else If

2024-07-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=161883 Alain Romedenne changed: What|Removed |Added Blocks||127597 --- Comment #7 from Ala

[Bug 161883] ElseIf is not equivalent to Else If

2024-07-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=161883 --- Comment #6 from ge.hu...@gmx.net --- To make this clear. I have no idea, what the intention was that Else If should work like ElseIf. So I'm totally fine, if only the documentation changes to reflect the fact, that it actually doesn't.

[Bug 161883] ElseIf is not equivalent to Else If

2024-07-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=161883 --- Comment #5 from Alain Romedenne --- This is a compiler/runtime bug I noted that IF statement is not subject to specific unit tests although it is used in all tests using a primitive syntax IF .. ELSE .. https://opengrok.libreoffice.o

[Bug 161883] ElseIf is not equivalent to Else If

2024-07-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=161883 Olivier Hallot changed: What|Removed |Added Blocks||80430 Status|UNCONF

[Bug 161883] ElseIf is not equivalent to Else If

2024-07-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=161883 Rafael Lima changed: What|Removed |Added CC||alain.romedenne@libreoffice

[Bug 161883] ElseIf is not equivalent to Else If

2024-07-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=161883 --- Comment #3 from ge.hu...@gmx.net --- (In reply to Rafael Lima from comment #1) > I guess the CC sub is working as expected. It is not about CC or CC1, but about the documentation. According to the documentation there should be no diff

[Bug 161883] ElseIf is not equivalent to Else If

2024-07-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=161883 --- Comment #2 from Rafael Lima --- I guess what you wanted to do in CC is: Function CC(lNumber As Long) As String Dim s1 As String If lNumber <= 0 Then s1 = "lNumber <= 0" Else If lNumber > 1 Then

[Bug 161883] ElseIf is not equivalent to Else If

2024-07-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=161883 --- Comment #1 from Rafael Lima --- I guess the CC sub is working as expected. Maybe you placed the MsgBox in the wrong place (when compared to CC1). Below is your code with proper indentation: Function CC(lNumber As Long) As String