[Libreoffice-bugs] [Bug 104902] unable to display chr(10) or chr(13) in a cell in calc when inserted by a macro

2021-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104902

Andreas Heinisch  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |andreas.heini...@yahoo.de
   |desktop.org |

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 104902] unable to display chr(10) or chr(13) in a cell in calc when inserted by a macro

2021-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104902

Andreas Heinisch  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||4398

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 104902] unable to display chr(10) or chr(13) in a cell in calc when inserted by a macro

2021-09-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104902

--- Comment #9 from QA Administrators  ---
Dear prevotmathieu,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 104902] unable to display chr(10) or chr(13) in a cell in calc when inserted by a macro

2019-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104902

himajin100...@gmail.com changed:

   What|Removed |Added

 Blocks|107659  |127590


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107659
[Bug 107659] [META] Macro bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=127590
[Bug 127590] [META] Application Programming Interface (API), when all scripted
languages are affected
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 104902] unable to display chr(10) or chr(13) in a cell in calc when inserted by a macro

2019-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104902

--- Comment #7 from himajin100...@gmail.com ---
Just a guess:

probably cell content is displayed as Rich Text, While Formula bar is for
normal string.

When Enter Key is manually pressed with Shift key pressed, InsertLineBreak is
executed. 

https://opengrok.libreoffice.org/xref/core/editeng/source/editeng/editeng.cxx?r=39214c54#1233

this sets special attribute EE_FEATURE_LINEBR

https://opengrok.libreoffice.org/xref/core/editeng/source/editeng/impedit2.cxx?r=39214c54#3031

https://opengrok.libreoffice.org/xref/core/editeng/source/editeng/editdoc.cxx?r=39214c54#345

and later this will be used to create lines.

https://opengrok.libreoffice.org/xref/core/editeng/source/editeng/impedit3.cxx?r=bb748ba4#1025

CreateLines is called from FormatDoc
https://opengrok.libreoffice.org/xref/core/vcl/source/edit/texteng.cxx?r=73e3604f#1514

and FormatDoc is called from TextEngine::ImpPaint
https://opengrok.libreoffice.org/xref/core/vcl/source/edit/texteng.cxx?r=73e3604f#1881

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 104902] unable to display chr(10) or chr(13) in a cell in calc when inserted by a macro

2019-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104902

--- Comment #8 from himajin100...@gmail.com ---
Can anyone explain how "GetString converts line breaks into spaces in
EditCell"?
I was unable to understand mainly due to lack of my brain ability.

https://opengrok.libreoffice.org/xref/core/sc/source/core/tool/cellform.cxx?r=fce7c123#162

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 104902] unable to display chr(10) or chr(13) in a cell in calc when inserted by a macro

2019-08-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104902

Buovjaga  changed:

   What|Removed |Added

   Severity|normal  |minor
 CC||todven...@suomi24.fi

--- Comment #6 from Buovjaga  ---
(In reply to m.a.riosv from comment #3)
> Strange what is happening here.
> 
> After run the macro, editing with [F2] make visible the line break but if
> nothing is changed with the editing before press enter, the visualization
> issue remains, and saving the file the line break desappears.
> But changing something like adding a space at end, makes the line break
> visible and it's preserver when saving.
> 
> That doesn't happend with manual or fomula line break.

Still repro with file

Arch Linux 64-bit
Version: 6.4.0.0.alpha0+
Build ID: 37fc9f51a8de11d40632e8cda17ccf1fa4b1f503
CPU threads: 8; OS: Linux 5.2; UI render: default; VCL: gtk3; 
Locale: fi-FI (fi_FI.UTF-8); UI-Language: en-US
Calc: threaded
Built on 6 August 2019

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 104902] unable to display chr(10) or chr(13) in a cell in calc when inserted by a macro

2019-04-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104902

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||107659
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=89
   ||920


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107659
[Bug 107659] [META] Macro bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 104902] unable to display chr(10) or chr(13) in a cell in calc when inserted by a macro

2017-12-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104902

--- Comment #5 from prevotmath...@yahoo.fr ---
Still present

Version: 5.4.4.2 (x64)
Build ID: 2524958677847fb3bb44820e40380acbe820f960
Threads CPU : 2; OS : Windows 6.19; UI Render : par défaut; 
Locale : fr-FR (fr_FR); Calc: group

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104902] unable to display chr(10) or chr(13) in a cell in calc when inserted by a macro

2017-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104902

--- Comment #4 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104902] unable to display chr(10) or chr(13) in a cell in calc when inserted by a macro

2016-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104902

m.a.riosv  changed:

   What|Removed |Added

 Status|REOPENED|NEW

--- Comment #3 from m.a.riosv  ---
Strange what is happening here.

After run the macro, editing with [F2] make visible the line break but if
nothing is changed with the editing before press enter, the visualization issue
remains, and saving the file the line break desappears.
But changing something like adding a space at end, makes the line break visible
and it's preserver when saving.

That doesn't happend with manual or fomula line break.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104902] unable to display chr(10) or chr(13) in a cell in calc when inserted by a macro

2016-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104902

prevotmath...@yahoo.fr changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|NOTABUG |---
Summary|unable to display chr(13)   |unable to display chr(10)
   |in a cell in calc when  |or chr(13) in a cell in
   |inserted by a macro |calc when inserted by a
   ||macro
 Ever confirmed|0   |1

--- Comment #2 from prevotmath...@yahoo.fr ---
Yep, I'm aware of the use of chr(10) instead of chr(13),however that doesn't
work either.

If you enter 

args2(0).Value = "123" & chr(10) & "456" 

The A1 cell will display
123456
It should display 
123
456

So I reopen the bug and change the title.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs