[Libreoffice-commits] core.git: sw/qa sw/source unodevtools/source

2020-07-22 Thread Stephan Bergmann (via logerrit)
 sw/qa/extras/globalfilter/globalfilter.cxx |2 +-
 sw/qa/extras/odfexport/odfexport.cxx   |2 +-
 sw/source/core/layout/flowfrm.cxx  |2 +-
 sw/source/core/unocore/unoobj.cxx  |4 ++--
 unodevtools/source/skeletonmaker/cpptypemaker.cxx  |4 ++--
 unodevtools/source/skeletonmaker/javatypemaker.cxx |8 
 6 files changed, 11 insertions(+), 11 deletions(-)

New commits:
commit eaf55518621b1fe08a60aec98b4367d7ad722cb9
Author: Stephan Bergmann 
AuthorDate: Wed Jul 22 13:50:48 2020 +0200
Commit: Stephan Bergmann 
CommitDate: Thu Jul 23 07:53:20 2020 +0200

Silence GCC 11 trunk -Werror=nonnull involving dynamic_cast

...where the compiler now warns that the implicit this pointer argument 
could be
null in a member function call made via a dynamic_cast-converted pointer 
(and
where the code apparently relies on the dynamic_cast not to fail)

Change-Id: I79482f4a853b6b47c5f9dd099a4e8377a19f7b0d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99219
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/sw/qa/extras/globalfilter/globalfilter.cxx 
b/sw/qa/extras/globalfilter/globalfilter.cxx
index 8a57aa68f442..5b3e84ace854 100644
--- a/sw/qa/extras/globalfilter/globalfilter.cxx
+++ b/sw/qa/extras/globalfilter/globalfilter.cxx
@@ -845,7 +845,7 @@ void Test::testSkipImages()
 static auto verifyNestedFieldmark(OUString const& rTestName,
 uno::Reference const& xComponent) -> void
 {
-SwDoc const*const 
pDoc(dynamic_cast(xComponent.get())->GetDocShell()->GetDoc());
+SwDoc const*const 
pDoc(dynamic_cast(*xComponent).GetDocShell()->GetDoc());
 IDocumentMarkAccess const& rIDMA(*pDoc->getIDocumentMarkAccess());
 
 // no spurious bookmarks have been created
diff --git a/sw/qa/extras/odfexport/odfexport.cxx 
b/sw/qa/extras/odfexport/odfexport.cxx
index c084c008d59b..04d9729dcfa4 100644
--- a/sw/qa/extras/odfexport/odfexport.cxx
+++ b/sw/qa/extras/odfexport/odfexport.cxx
@@ -981,7 +981,7 @@ DECLARE_ODFEXPORT_TEST(testProtectionKey, 
"protection-key.fodt")
 
 DECLARE_ODFEXPORT_TEST(testTdf128188, 
"footnote-collect-at-end-of-section.fodt")
 {
-SwDoc *const pDoc = 
dynamic_cast(mxComponent.get())->GetDocShell()->GetDoc();
+SwDoc *const pDoc = 
dynamic_cast(*mxComponent).GetDocShell()->GetDoc();
 CPPUNIT_ASSERT(pDoc);
 SwFootnoteIdxs const& rFootnotes(pDoc->GetFootnoteIdxs());
 // Section1
diff --git a/sw/source/core/layout/flowfrm.cxx 
b/sw/source/core/layout/flowfrm.cxx
index c4a9f76fdde8..2bd324c0f47f 100644
--- a/sw/source/core/layout/flowfrm.cxx
+++ b/sw/source/core/layout/flowfrm.cxx
@@ -2380,7 +2380,7 @@ bool SwFlowFrame::MoveBwd( bool  )
 while ( pLower )
 {
 if ( pLower->IsSctFrame() &&
- !dynamic_cast(pLower)->GetSection() )
+ !dynamic_cast(*pLower).GetSection() )
 {
 pLower = pLower->GetNext();
 continue;
diff --git a/sw/source/core/unocore/unoobj.cxx 
b/sw/source/core/unocore/unoobj.cxx
index 236481cb03b2..aa3fd65fc2f4 100644
--- a/sw/source/core/unocore/unoobj.cxx
+++ b/sw/source/core/unocore/unoobj.cxx
@@ -1707,8 +1707,8 @@ SwXTextCursor::setString(const OUString& aString)
 m_pImpl->GetCursorOrThrow(); // just to check if valid
 
 const bool bForceExpandHints( (CursorType::Meta == m_pImpl->m_eType)
-&& dynamic_cast(m_pImpl->m_xParentText.get())
-->CheckForOwnMemberMeta(*GetPaM(), true) );
+&& dynamic_cast(*m_pImpl->m_xParentText)
+.CheckForOwnMemberMeta(*GetPaM(), true) );
 DeleteAndInsert(aString, bForceExpandHints);
 }
 
diff --git a/unodevtools/source/skeletonmaker/cpptypemaker.cxx 
b/unodevtools/source/skeletonmaker/cpptypemaker.cxx
index 14304c4761ff..b7b4f4a7c0ec 100644
--- a/unodevtools/source/skeletonmaker/cpptypemaker.cxx
+++ b/unodevtools/source/skeletonmaker/cpptypemaker.cxx
@@ -952,8 +952,8 @@ void generateDocumentation(std::ostream & o,
 o << "; get method:\nstatic ";
 printType(
 o, options, manager,
-dynamic_cast< unoidl::InterfaceBasedSingletonEntity * >(
-entity.get())->getBase(),
+dynamic_cast< unoidl::InterfaceBasedSingletonEntity & >(
+*entity).getBase(),
 1);
 o << " get(::com::sun::star::uno::Reference< 
::com::sun::star::uno::XComponentContext > const & context);\n";
 break;
diff --git a/unodevtools/source/skeletonmaker/javatypemaker.cxx 
b/unodevtools/source/skeletonmaker/javatypemaker.cxx
index f88530ecb316..ea373dac520e 100644
--- a/unodevtools/source/skeletonmaker/javatypemaker.cxx
+++ b/unodevtools/source/skeletonmaker/javatypemaker.cxx
@@ -816,8 +816,8 @@ void generateDocumentation(std::ostream & o,
 printConstructors(o, options, manager, nucleus);
   

[Libreoffice-bugs] [Bug 38093] Add an Outline View layout and editing mode to Writer

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=38093

Jim Raykowski  changed:

   What|Removed |Added

 Attachment #160837|0   |1
is obsolete||
 Attachment #160918|0   |1
is obsolete||
 Attachment #161788|0   |1
is obsolete||
 Attachment #162071|0   |1
is obsolete||
 Attachment #163341|0   |1
is obsolete||

--- Comment #138 from Jim Raykowski  ---
Created attachment 163434
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163434=edit
outline content folding

Back on track after read-only mode derail. Hacked around promote/demote issue
and certain key inputs that cause bad things to happen.

https://gerrit.libreoffice.org/c/core/+/96672

I'm fairly confident of this version not falling completely on it's face so may
be a good one to start user testing involvement.

I could probably figure out how to make this an experimental feature as Dieter
has suggested if it needs to be moved to that.

-- 
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 135024] Highlighting/changing color of the bulleted list not included in undo/redo

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135024

Dieter  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de

--- Comment #2 from Dieter  ---
(In reply to Telesto from comment #0)
> Description:
> Highlighting/changing color of the bulleted list not included in undo/redo
> 
> Steps to Reproduce:
> 1. Open Writer
> 2. Type A (Enter) B (Enter) C (Enter) D (Enter) E (Enter)
> 3. Select a-e & press bulleted list button
> 4. Single left click at the right side of the bulleted list
> -> Bulleted list expands in size (odd)
Can't confirm

> 5. Pick a font color -> bullets change color (and distance between shrinks
> again?)
> 6. Tab/double click next to a bullet. A single letter and bullet will be
> selected.
First click (left from bullet): All bullets are selected; second and third
click: singel letter is selected

> 7. Pick Highlight color -> All bullets will be highlighted (but not the
> letter/odd??)
Can confirm that behaviour

> 8. Press UNDO until start (notice that bullet color doesn't go way)
Bullet colour is removed

> 9. Notice that you can't undo the insertion the letters
> 9. Press Redo again.. 
> 10 Notice the letter to be highlighted (and colored)
I confirm that

So there are some strange behaviours, but I can't confirm the whole bug.

Version: 7.0.0.0.beta2 (x64)
Build ID: 1c213561a365b5666167321de68c9977500c9612
CPU threads: 4; OS: Windows 10.0 Build 19041; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL

-- 
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 132082] Crash when entering text in multiple cells in Japanese language environment (LOOL)

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132082

--- Comment #12 from Gabriel Masei  ---
The 'nodocloaded' error should be fixed by this commit
https://git.libreoffice.org/online/+/9c6739eee01952708409717c5cdf28c8f9fb94a5%5E%21.
The error is triggered, probably, by a reconnection and by parallel processing
of clientzoom message before loading of the document is finished.

-- 
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 134663] LibreOffice Calc can not draw square and circle that height of shape is equal to width

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134663

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 134656] Animating text box requires quite some CPU time on MacOS

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134656

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 134451] UI: Alignment between footnotes and endnotes tab different (and a label difference)

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134451

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
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 134662] spell checker should deny cap on some lower-case words

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134662

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 134633] Fails to show the preview of the shapes in browser -- Draw Drawing

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134633

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 134410] UI: position and size and rotation tab are differently aligned (Draw/Impress)

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134410

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
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 134637] Remember the last selected node in Style Inspector

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134637

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 134653] Undo produces different number of pages (large view/ lots of image anchored + footnotes)

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134653

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 133636] Calc Tabbed interface: Add Formula Tab

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133636

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
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 134487] macros dont work as expected. calc crashes on running the macros in file

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134487

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 134641] binaryurp bridge termination sporadically causes DisposedException in a different bridge

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134641

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 134636] Overlapping text when editing an textbox with text animation enabled

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134636

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 134632] Please bundle the Softastur Asturian Hunspell dictionary

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134632

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 134635] FILEOPEN DOC : Set the page to a stationery grid and save docx, then open the grid line can not be aligned

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134635

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 134589] Timestamp is hardcoded to UTC while it is a local time for docx creation date

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134589

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

-- 
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 126520] Undo & Redo tooltip texts don't update upon quick successive clicks

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126520

--- Comment #2 from QA Administrators  ---
Dear Explorer09,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
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 127043] Turkish Translation on Tabs is don't working on Tabbed Compact

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127043

--- Comment #5 from QA Administrators  ---
Dear Enes Utku ÖZDEMİR,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
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 134589] Timestamp is hardcoded to UTC while it is a local time for docx creation date

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134589

--- Comment #3 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

-- 
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 125697] You can not read the text of the context menu with an eye-friendly theme.

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125697

--- Comment #2 from QA Administrators  ---
Dear thinkedsfoxe,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
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 97300] Ill-placed question for updating Link on opening a file with broken conditional formatting

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97300

--- Comment #9 from QA Administrators  ---
Dear Cor Nouws,

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54854] calc add-in functions are not evaluated as expected

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=54854

--- Comment #27 from QA Administrators  ---
Dear Forester,

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129443] End Space Symbols Not Showing

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129443

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

-- 
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 104116] Writer - standalone forms: Can't use relative URLs for data source

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104116

--- Comment #11 from QA Administrators  ---
Dear Kostas Katsaros,

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129443] End Space Symbols Not Showing

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129443

--- Comment #4 from QA Administrators  ---
Dear DM,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
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 106292] XMessageBox#execute() in Java fails to draw a window on macOS Sierra

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106292

--- Comment #22 from QA Administrators  ---
Dear Adomas Venčkauskas,

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 121368] Brochure printing error

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121368

--- Comment #31 from QA Administrators  ---
Dear trevor p,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
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 49428] Broken cross references to inserted sections - EDITING

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49428

--- Comment #13 from QA Administrators  ---
Dear jrdegan,

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 134301] 3 seconds delay of inserting a row and 6 seconds delay deleting a row in a larger spreadsheet

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134301

Michael Warner  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #3 from Michael Warner  ---
> 4. Insert a row -> 3 seconds -> create more columns; not really difference

So, for me when I added about 10 more columns the time this took increased to
about 7 seconds. Then, without adding any more columns, I tried to insert
another row, and Calc hung up my whole PC (even the mouse cursor wouldn't move)
and eventually crashed.

-- 
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 122535] Slide sorter view is blurry on HiDPI displays on Linux

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122535

--- Comment #2 from Kai  ---
I can reproduce this on 7.0RC2 as well.

-- 
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 135066] Freeze UI and Crash: Insert secondly table from Tab on writer document that is inserted impress

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135066

--- Comment #2 from sawakaze  ---
I think key point is

1. impress is not tabUI, but writer is tabUI
2. on Step10, user selects other object. and re-select oleobject.
3. operate from tabUI button.

-- 
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 135062] Add individual close button to recent document list

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135062

Michael Warner  changed:

   What|Removed |Added

   Severity|normal  |enhancement

-- 
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 135067] LibreOffice RC2 - UI failure on the Position and Size section in the sidebar

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135067

--- Comment #1 from Felipe Viggiano  ---
Created attachment 163433
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163433=edit
Position and Size section on the Sidebar

-- 
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 135067] New: LibreOffice RC2 - UI failure on the Position and Size section in the sidebar

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135067

Bug ID: 135067
   Summary: LibreOffice RC2 - UI failure on the Position and Size
section in the sidebar
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: felipeviggi...@gmail.com

Description:
In LibreOffice Impress 7.0 RC2, when opening the properties of an object in the
sidebar, and selecting the Position and Size section, it is not possible to see
all the options of the section.
And when expanding the sidebar in the situation, a bug occurs and it is not
possible to resize the sidebar.

Steps to Reproduce:
1.Open the LibreOffice Impress 7.0 RC2.
2.Create a new slide.
3.Select any object of the new slide.
4. With the object selected, click on the properties button on the Sidebar.
5. Go to the Position and Size section of the sidebar and expand it.

Actual Results:
Not all the options of the section are shown.
And while in the section, after expanding the sidebar, it is not possible to
resize it.

Expected Results:
It should show the rest of the position and size properties (such as Position
Y, Height and etc.)


Reproducible: Always


User Profile Reset: No



Additional Info:
In LO Impress RC1 and 6.4.4.2 this issue is not reproducible.

The reason I put unespecified version is because I couldn't find the
LibreOffice 7.0 RC2 in the list.

Version: 7.0.0.2
Build ID: c01aa64b6c3d89ebe5fe69c28c7adb24eb85249c
CPU threads: 4; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: pt-BR (pt_BR.UTF-8); UI: en-US
Calc: threaded

-- 
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 135066] Freeze UI and Crash: Insert secondly table from Tab on writer document that is inserted impress

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135066

--- Comment #1 from sawakaze  ---
Created attachment 163432
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163432=edit
ScreenCast

-- 
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 135066] New: Freeze UI and Crash: Insert secondly table from Tab on writer document that is inserted impress

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135066

Bug ID: 135066
   Summary: Freeze UI and Crash: Insert secondly table from Tab on
writer document that is inserted impress
   Product: LibreOffice
   Version: 7.0.0.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: souichi...@gmail.com

Description:
After following step, application is freeze.
(on case of windows, application crash is caused)

On my env, freeze not only libreoffice UI, but also desktop env.
Attachment screencast is detail, please confirm this video.



Steps to Reproduce:
1. open writer 
2. set UI to Tabbed UI
-> writer UI to Tab UI
3. close writer

4. open impress
note: impress is not Tabbed UI
5. Insert > Object > OLE object
6. select LiberOffice Text 
-> insert writer text on presentation
7. select inserted Writer object
8. select "Insert Tab" and Table icon.
9. input table size on table dialog and enter button
-> insert table (it name to "1st table")
10. once click outside oleobject.
11. re-select writer object.
12. cursor set next to "1st table"
13. select table from tab
14. input size and press enter.
-> after press enter, Freeze UI


Actual Results:
Freeze UI.
can not set 2nd table from tabui

Expected Results:
not Freeze UI
can set 2nd table from tabui


Reproducible: Always


User Profile Reset: Yes



Additional Info:
I confirm following version.

Version: 7.0.0.2
Build ID: c01aa64b6c3d89ebe5fe69c28c7adb24eb85249c
CPU threads: 4; OS:Linux 4.15; UI render: default; VCL: gtk3
Locale: ja-JP (ja_JP.UTF-8); UI: ja-JP
Calc: threaded

-- 
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 135065] LibreOffice RC2 - UI failure - LibreOffice Impress do not show the upper icons on Styles side pane

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135065

Felipe Viggiano  changed:

   What|Removed |Added

   Keywords||topicUI

-- 
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 134945] FILESAVE RTF/FILE Paste RTF: image removed/not saved

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134945

Terrence Enger  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

-- 
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 135064] Crash in: sclo.dll

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135064

hyonsok...@yahoo.com changed:

   What|Removed |Added

Version|unspecified |6.3.6.2 release

-- 
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 135065] LibreOffice RC2 - UI failure - LibreOffice Impress do not show the upper icons on Styles side pane

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135065

--- Comment #1 from Felipe Viggiano  ---
Created attachment 163431
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163431=edit
LO 7.0 RC2 Styles Side Pane

-- 
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 135065] New: LibreOffice RC2 - UI failure - LibreOffice Impress do not show the upper icons on Styles side pane

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135065

Bug ID: 135065
   Summary: LibreOffice RC2 - UI failure - LibreOffice Impress do
not show the upper icons on Styles side pane
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: felipeviggi...@gmail.com

Description:
When open the Styles side pane in LibreOffice Impress, the upper icons (Drawing
styles and Presentation Styles) are not shown. I can click on it and it will
function, but I can't see the icons.

Steps to Reproduce:
1.Create a new presentation in LibreOffice Impress 7.0 RC2.
2.Click on Styles on the Side Pane.

Actual Results:
Below the title of the pane there a space with two missing icons (Drawing
Styles and Presentation Styles).

Expected Results:
The expected result is that it should be possible to see those icons.


Reproducible: Always


User Profile Reset: No



Additional Info:
I put the version unspecified because I couldn't find the LO 7.0 RC2 option,
and in LO 7.0 RC1 this is not reproducible.

Version: 7.0.0.2
Build ID: c01aa64b6c3d89ebe5fe69c28c7adb24eb85249c
CPU threads: 4; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: pt-BR (pt_BR.UTF-8); UI: en-US
Calc: threaded

-- 
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 135064] New: Crash in: sclo.dll

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135064

Bug ID: 135064
   Summary: Crash in: sclo.dll
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hyonsok...@yahoo.com

This bug was filed from the crash reporting server and is
br-5c3d6294-4f9f-4a15-a3f0-c2bb06d19d16.
=
EDITING: Calc crashes when trying to find any text in a certain file.

-- 
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 134945] FILESAVE RTF/FILE Paste RTF: image removed/not saved

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134945

Terrence Enger  changed:

   What|Removed |Added

 CC||lo_b...@iseries-guru.com

--- Comment #3 from Terrence Enger  ---
In a local build of commit 7b44eb2c (2020-07-22), built and running on
debian-buster, I see the loss of image reported in the discription.
However, the formula in the attachment to comment 2 comes back just
fine after save-as .rtf.

A BZ search turns up bug 124821, which I thinks is a potential
duplicate, based on
  - descr: "or get lost entirely (RTF).
  - c#8: "In rtf ... all images get lost"
What do you think, Telesto?

I am setting bug status NEW.

-- 
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 135063] Calc column width auto fit when a column is selected not work properly

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135063

falecomoadil...@gmail.com changed:

   What|Removed |Added

  Alias|Adilson, Júnior |

-- 
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 135063] Calc column width auto fit when a column is selected not work properly

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135063

falecomoadil...@gmail.com changed:

   What|Removed |Added

  Alias||Adilson, Júnior

-- 
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 135063] New: Calc column width auto fit when a column is selected not work properly

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135063

Bug ID: 135063
   Summary: Calc column width auto fit when a column is selected
not work properly
   Product: LibreOffice
   Version: 7.0.0.1 rc
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: falecomoadil...@gmail.com

Description:
When I have a Calc spreadsheet with multiple filled columns (3 columns) without
adjustment, if I select one column (column B) and double click between columns
header (A and B or C and D) to auto fit column width to content, the column not
fit properly.

Steps to Reproduce:
1. Create a Calc spreadsheet with 3 filled columns without adjustment to their
content;
2. Select one column (column B) and double click between columns header (A and
B or C and D) to auto fit column width to content.

Actual Results:
The column don't auto fit to it content, only selected column fit properly.

Expected Results:
The column auto fit to it content.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.0.0.2 (x86)
Build ID: c01aa64b6c3d89ebe5fe69c28c7adb24eb85249c
Threads da CPU: 8; SO: Windows 10.0 Build 19041; Realizador da interface:
Skia/Vulkan; VCL: win
Locale: pt-BR (pt_BR); Interface: pt-BR
Calc: threaded

-- 
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 135062] Add individual close button to recent document list

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135062

Rizal Muttaqin  changed:

   What|Removed |Added

Summary|Add individual close button |Add individual close button
   |in recent document list |to recent document list
   Keywords||needsUXEval

-- 
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 135062] New: Add individual close button in recent document list

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135062

Bug ID: 135062
   Summary: Add individual close button in recent document list
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: riz_17_...@yahoo.co.id

Created attachment 163430
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163430=edit
Recent File list in Softmaker FreeOffice

In recent document list, LibreOffice has "Clear List" function which eventually
clear whole list. We can close each recent document from the start center but
it would be helpful if we can close individual recent document right from the
recent document list.

Steps to reproduce:
1. Open a LibreOffice module
2. Go to menubar File > Recent Documents or click small down triangle next to
Open icon
3. See the list

You can see the attachment from FreeOffice as a reference

Expected result:

1. A tiny close button in the edge right of each file list

Observed result:

1. No close button in the edge right of each file list

-- 
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 135061] Hang: pasting content ( track changes )

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135061

Xisco Faulí  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||michael.st...@cib.de,
   ||xiscofa...@libreoffice.org
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||2911
Version|7.1.0.0.alpha0+ Master  |6.3.0.0.alpha0+
   Keywords||bibisected, bisected,
   ||regression

--- Comment #1 from Xisco Faulí  ---
LibreOffice started to hang after

https://cgit.freedesktop.org/libreoffice/core/commit/?id=f609eba8b979620dc8f1c4a47d710360f8aae9e6

author  Michael Stahl 2018-10-09 14:49:23 +0200
committer   Michael Stahl 2018-11-15 15:09:58
+0100
commit  f609eba8b979620dc8f1c4a47d710360f8aae9e6 (patch)
tree1f23490b20b2b1a855a7239b089d2b9d4728caaa
parent  7dafa9b67524d33bb251a66dc4d20d54ece36c4c (diff)
sw_redlinehide_3: convert even more SwAccessibleParagraph functions

before this commit, LibreOffice crashes on step 3

-- 
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 135061] New: Hang: pasting content ( track changes )

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135061

Bug ID: 135061
   Summary: Hang: pasting content ( track changes )
   Product: LibreOffice
   Version: 7.1.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: xiscofa...@libreoffice.org

Created attachment 163429
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163429=edit
sample file

This is a similar issue to bug 132911 that I found while creating a unittest

Steps to reproduce:
1. Open attached document
2. Select all
3. Cut
4. Paste
5. Paste

-> LibreOffice hangs

Reproduced in

Version: 7.1.0.0.alpha0+
Build ID: d8270636a57e7dc68ede51308c380e2098f765d7
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

-- 
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-ux-advise] [Bug 134976] UI: a quick way to pick a ODF version on save

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134976

--- Comment #13 from Sascha Z  ---
(In reply to Telesto from comment #2)
> -> "impact on all". 
> Same thing as the evolution of file format. Impacts all too. I prefer no
> versions at all :-). ODT 1.1 1.2 (comp-ability mode/ extended) 1.3. How many
> ODT file variants will be around :-(. Everything is called ODT. 
> 
This is exactly an argument against this feature request. LO evolved over time
and there are four file-formates for this reason + the old OO file-formates not
longer present in recent LO. Once accepted would we have to integrate all the
legacy file-formates in the save dialog.

The only two reasonable solutions for me would be:

A - Fall back to the old fashion and reintroduce a version drop-down menu so we
would have two drop-down menus, one for type and one for version

-   this would scatter the now basic save dialog again
+  this would allow to us to take all ms office versions out of the first
dialog, effectively simplify it or

B - Replace the whole Default File Format settings (if this doesn't have other
impacts) under Settings>Load\Save with a simple checkbox meaning Show exotic
file formats

+  unchecked, would this approach take most of the file-formates out the Save
menu
+  shown file formates by default could be related to local settings e.g.
Unified Office Format shown by default in China but not shown by default on
other locals
-  lot of work for the developers
-  hiding LO capabilities to users not aware of this setting

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


[Libreoffice-bugs] [Bug 134976] UI: a quick way to pick a ODF version on save

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134976

--- Comment #13 from Sascha Z  ---
(In reply to Telesto from comment #2)
> -> "impact on all". 
> Same thing as the evolution of file format. Impacts all too. I prefer no
> versions at all :-). ODT 1.1 1.2 (comp-ability mode/ extended) 1.3. How many
> ODT file variants will be around :-(. Everything is called ODT. 
> 
This is exactly an argument against this feature request. LO evolved over time
and there are four file-formates for this reason + the old OO file-formates not
longer present in recent LO. Once accepted would we have to integrate all the
legacy file-formates in the save dialog.

The only two reasonable solutions for me would be:

A - Fall back to the old fashion and reintroduce a version drop-down menu so we
would have two drop-down menus, one for type and one for version

-   this would scatter the now basic save dialog again
+  this would allow to us to take all ms office versions out of the first
dialog, effectively simplify it or

B - Replace the whole Default File Format settings (if this doesn't have other
impacts) under Settings>Load\Save with a simple checkbox meaning Show exotic
file formats

+  unchecked, would this approach take most of the file-formates out the Save
menu
+  shown file formates by default could be related to local settings e.g.
Unified Office Format shown by default in China but not shown by default on
other locals
-  lot of work for the developers
-  hiding LO capabilities to users not aware of this setting

-- 
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 134996] Crash scrolling down in large file while still loading

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134996

Telesto  changed:

   What|Removed |Added

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

-- 
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 132940] Crash mergedlo!vcl::Region::operator= (with really specific steps)

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132940

Telesto  changed:

   What|Removed |Added

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

-- 
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 134996] Crash scrolling down in large file while still loading

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134996

Xisco Faulí  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #7 from Xisco Faulí  ---
Not reproducible if all the changes are accepted/rejected, the file is save and
reloaded.

@Telesto, @Roman, could you please confirm ?

-- 
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 134657] Save As window - highlight in the wrong place

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134657

--- Comment #1 from sora3...@gmail.com ---
I tried reproducing this but I've seen that the file name field is already
highlighted. Could you clarify what else was going on?

-- 
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 134996] Crash scrolling down in large file while still loading

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134996

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||wantBacktrace
 CC||serval2...@yahoo.fr

-- 
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 134996] Crash scrolling down in large file while still loading

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134996

Xisco Faulí  changed:

   What|Removed |Added

Version|7.1.0.0.alpha0+ Master  |6.4.0.0.alpha0+

--- Comment #6 from Xisco Faulí  ---
and

Version: 6.3.0.0.alpha1+
Build ID: c98b1f1cd43b3e109bcaf6324ef2d1f449b34099
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

oldest commit in 6-4 bisect repo.
I had to try 5 times before I got the crash. Really hard to reproduce and
bisect

-- 
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 134996] Crash scrolling down in large file while still loading

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134996

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #5 from Xisco Faulí  ---
Reproduced in

Version: 6.4.0.0.alpha1+
Build ID: 9bc848cf0d301aa57eabcffa101a1cf87bad6470
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

oldest commit in 7.0 repo

-- 
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 128233] macOS: Can't save or open files using Finder dialog on Standard accounts on macOS 10.15 Catalina

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128233

--- Comment #22 from cpohle  ---
As already suggested in duplicate Bug 132025: 

Maybe running

   codesign -vvv --deep --strict LibreOffice.app

automatically by the language pack installer would solve the problem?

-- 
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 46448] Allow custom locale settings for decimal separator, group separator, default date and time formats

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46448

--- Comment #54 from Bernard Gisin  ---
I Agree with Glen A.

The ideal solution would be to default to OS settings, but then to allow those
to be overridden within the application itself. That should satisfy all use
cases.

In fact this seems obvious to me.

-- 
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 134757] Text formating is removed on merge when content is not in first cell

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134757

Timur  changed:

   What|Removed |Added

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

-- 
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 56294] EDITING: Comment lost when in right one of 2 merged cells

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=56294

Timur  changed:

   What|Removed |Added

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

-- 
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-commits] core.git: sw/CppunitTest_sw_core_crsr.mk sw/Module_sw.mk sw/qa sw/source

2020-07-22 Thread Miklos Vajna (via logerrit)
 sw/CppunitTest_sw_core_crsr.mk  |   73 +
 sw/Module_sw.mk |1 
 sw/qa/core/crsr/crsr.cxx|   77 
 sw/source/core/crsr/findtxt.cxx |   19 -
 4 files changed, 167 insertions(+), 3 deletions(-)

New commits:
commit d8270636a57e7dc68ede51308c380e2098f765d7
Author: Miklos Vajna 
AuthorDate: Wed Jul 22 17:36:17 2020 +0200
Commit: Miklos Vajna 
CommitDate: Wed Jul 22 23:24:20 2020 +0200

sw: find & replace: fix soft hyphen cleaning

If there is a formatted soft hyphen after the search string, then
replace skipped the replacement, even if there was a match.

Do the same for comments & footnotes, though the primary reported
problem was just soft hyphens.

(The same happened when manually doing find & replace using the Ctrl-H
dialog.)

Change-Id: I8437e84dea99ceef98d515beef5893cf954e674f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99236
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins

diff --git a/sw/CppunitTest_sw_core_crsr.mk b/sw/CppunitTest_sw_core_crsr.mk
new file mode 100644
index ..895b3ff63e57
--- /dev/null
+++ b/sw/CppunitTest_sw_core_crsr.mk
@@ -0,0 +1,73 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#*
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+#*
+
+$(eval $(call gb_CppunitTest_CppunitTest,sw_core_crsr))
+
+$(eval $(call gb_CppunitTest_use_common_precompiled_header,sw_core_crsr))
+
+$(eval $(call gb_CppunitTest_add_exception_objects,sw_core_crsr, \
+sw/qa/core/crsr/crsr \
+))
+
+$(eval $(call gb_CppunitTest_use_libraries,sw_core_crsr, \
+comphelper \
+cppu \
+cppuhelper \
+sal \
+sfx \
+svxcore \
+sw \
+test \
+unotest \
+utl \
+vcl \
+svt \
+tl \
+svl \
+))
+
+$(eval $(call gb_CppunitTest_use_externals,sw_core_crsr,\
+boost_headers \
+libxml2 \
+))
+
+$(eval $(call gb_CppunitTest_set_include,sw_core_crsr,\
+-I$(SRCDIR)/sw/inc \
+-I$(SRCDIR)/sw/source/core/inc \
+-I$(SRCDIR)/sw/source/uibase/inc \
+-I$(SRCDIR)/sw/qa/inc \
+$$(INCLUDE) \
+))
+
+$(eval $(call gb_CppunitTest_use_api,sw_core_crsr,\
+   udkapi \
+   offapi \
+   oovbaapi \
+))
+
+$(eval $(call gb_CppunitTest_use_ure,sw_core_crsr))
+$(eval $(call gb_CppunitTest_use_vcl,sw_core_crsr))
+
+$(eval $(call gb_CppunitTest_use_rdb,sw_core_crsr,services))
+
+$(eval $(call gb_CppunitTest_use_custom_headers,sw_core_crsr,\
+officecfg/registry \
+))
+
+$(eval $(call gb_CppunitTest_use_configuration,sw_core_crsr))
+
+$(eval $(call gb_CppunitTest_use_uiconfigs,sw_core_crsr, \
+modules/swriter \
+))
+
+$(eval $(call gb_CppunitTest_use_more_fonts,sw_core_crsr))
+
+# vim: set noet sw=4 ts=4:
diff --git a/sw/Module_sw.mk b/sw/Module_sw.mk
index 9ffbfa4f4106..731dc4ef7ca6 100644
--- a/sw/Module_sw.mk
+++ b/sw/Module_sw.mk
@@ -116,6 +116,7 @@ $(eval $(call gb_Module_add_slowcheck_targets,sw,\
 CppunitTest_sw_core_txtnode \
 CppunitTest_sw_core_objectpositioning \
 CppunitTest_sw_core_unocore \
+CppunitTest_sw_core_crsr \
 ))
 
 ifneq ($(DISABLE_GUI),TRUE)
diff --git a/sw/qa/core/crsr/crsr.cxx b/sw/qa/core/crsr/crsr.cxx
new file mode 100644
index ..9345fdde6dd6
--- /dev/null
+++ b/sw/qa/core/crsr/crsr.cxx
@@ -0,0 +1,77 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#include 
+
+#include 
+#include 
+#include 
+
+#include 
+#include 
+
+/// Covers sw/source/core/crsr/ fixes.
+class SwCoreCrsrTest : public SwModelTestBase
+{
+};
+
+CPPUNIT_TEST_FIXTURE(SwCoreCrsrTest, testFindReplace)
+{
+loadURL("private:factory/swriter", nullptr);
+
+// Given: a document with two "foo" in it, the second followed by a 
formatted soft hyphen.
+uno::Reference xTextDocument(mxComponent, 
uno::UNO_QUERY);
+uno::Reference xText = xTextDocument->getText();
+// Create a document which has 2 lines: first line has foo in it, second 
line has the same, but
+// followed by a formatted soft hyphen.
+xText->insertString(xText->getEnd(), "foo xxx", /*bAbsorb=*/false);
+xText->insertControlCharacter(xText->getEnd(), 
text::ControlCharacter::PARAGRAPH_BREAK,
+  /*bAbsorb=*/false);
+xText->insertString(xText->getEnd(), 

[Libreoffice-bugs] [Bug 128803] Copy / pasting cell in Calc sometimes pastes as an image; failure in Mutter's integrated X11 clipboard manager; workaround: use Wayland session

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128803

Timur  changed:

   What|Removed |Added

 CC||daf...@snydez.com

--- Comment #39 from Timur  ---
*** Bug 134517 has been marked as a duplicate of this bug. ***

-- 
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 134517] copy a value from cell in LibreCalc but pasted as object

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134517

Timur  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #4 from Timur  ---
Looks duplicate,you need to use Ubuntu 20.04.

*** This bug has been marked as a duplicate of bug 128803 ***

-- 
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 135056] Freeze hang/after deleting index SwPosition::dumpAsXml

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135056

Xisco Faulí  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #5 from Xisco Faulí  ---
Reproduced in

Version: 7.1.0.0.alpha0+
Build ID: b877b9bc894892e61f0d6311729f7b01139923d6
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

-- 
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 135059] Objects gone after comparing documents & saving

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135059

Telesto  changed:

   What|Removed |Added

   Keywords||dataLoss
Version|5.4.0.3 release |Inherited From OOo

--- Comment #4 from Telesto  ---
Also in 
4.4.7.2

and in 
4.0

and in 3.0.0

-- 
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 135060] Clicking a template in Master Slide Sidebar changes color

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135060

himajin100...@gmail.com changed:

   What|Removed |Added

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

-- 
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 134574] Impress template thumbnails change color when Skia is enabled

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134574

himajin100...@gmail.com changed:

   What|Removed |Added

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

-- 
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 135060] New: Clicking a template in Master Slide Sidebar changes color

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135060

Bug ID: 135060
   Summary: Clicking a template in Master Slide Sidebar changes
color
   Product: LibreOffice
   Version: 7.1.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: himajin100...@gmail.com

Description:
see steps to reproduce

Steps to Reproduce:
1. Launch Impress
2. Show [Master Slide] Sidebar
3. In the [Available for use] Section, you can find YELLOW Beehive template
4. Right Click on the template, and select [Apply to All Slides]

Actual Results:
The slide is with blue color area.
the Beehive template change its color to blue


Expected Results:
The slide is with YELLOW color area.
the Beehive template change keep its color i.e. YELLOW.


Reproducible: Always


User Profile Reset: No



Additional Info:
Similar to tdf#134574, but I didn't enable Skia this time.

If the problem is from the similar reason, the culprit could be...
https://opengrok.libreoffice.org/xref/core/sd/source/ui/sidebar/MasterPageDescriptor.cxx?r=b83ac35b#218


Version: 7.1.0.0.alpha0+ (x64)
Build ID: b1c83b68bfbf3477fa6a8f4c79c53f6f9ab31f8e
CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: default; VCL: win
Locale: ja-JP (ja_JP); UI: en-US
Calc: CL

-- 
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 135056] Freeze hang/after deleting index SwPosition::dumpAsXml

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135056

Xisco Faulí  changed:

   What|Removed |Added

Version|7.1.0.0.alpha0+ Master  |6.4.5.2 release
 CC||xiscofa...@libreoffice.org

-- 
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 135059] Objects gone after comparing documents & saving

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135059

Telesto  changed:

   What|Removed |Added

Version|7.1.0.0.alpha0+ Master  |5.4.0.3 release

--- Comment #3 from Telesto  ---
Also in 5.4

-- 
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 135059] Objects gone after comparing documents & saving

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135059

--- Comment #2 from Telesto  ---
Created attachment 163428
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163428=edit
Example 42greek

-- 
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 135059] Objects gone after comparing documents & saving

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135059

--- Comment #1 from Telesto  ---
Created attachment 163427
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163427=edit
Example 50greek

-- 
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 135059] New: Objects gone after comparing documents & saving

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135059

Bug ID: 135059
   Summary: Objects gone after comparing documents & saving
   Product: LibreOffice
   Version: 7.1.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Objects gone after comparing documents & saving

Steps to Reproduce:
1. Download the attached file
2. Open 50greek
3. Edit -> track changes -> Compare
4. Open 42greek
5. Save document to new file -> note object message

Actual Results:
Object message (special symbols gone

Expected Results:
Should not be so


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.1.0.0.alpha0+ (x64)
Build ID: 52820b52b3bca45e2db527d1cc5f4488b2e0b9d0
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL

-- 
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 134944] Dragging dropping of footnotes cause breaking text differently (and inefficient) caused by anchoring

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134944

Terrence Enger  changed:

   What|Removed |Added

 CC||lo_b...@iseries-guru.com
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #5 from Terrence Enger  ---
I see the complained-about behaviour in a local build of commit
7b44eb2c (2020-07-22) built and running on debian-buster.


My search for duplicate reports turns up:

(*) bug 13 Moving image down overlapping footnotes, and backup
moves image down

This looks like what Telesto mentions in comment 3.

(*) bug 134189 A page layout loop hitting
icu_67::RuleBasedBreakIterator::handleNext over and over

Definitely a see-also.

(*) bug 129747 Several footnotes in a multipage table causes massive
display and formatting problems

At least a see-also.  Could be DUP based on "suddenly jumped to
the second page" in description.


Telesto, what do you think about these other bugs?  Meanwhile, I am
setting status NEEDINFO; you know what to do.

-- 
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 124184] Fix QA test for StrConv VBA function

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124184

--- Comment #4 from Xisco Faulí  ---
Hello Olivier, Gerhard,
First attempt to improve the coverage in
https://gerrit.libreoffice.org/c/core/+/99260
I'm not familiar with VBA at all so comments are appreciated

-- 
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-commits] online.git: loleaflet/po loleaflet/src

2020-07-22 Thread Andras Timar (via logerrit)
 loleaflet/po/templates/loleaflet-ui.pot |4 +---
 loleaflet/src/control/Permission.js |   10 +-
 2 files changed, 6 insertions(+), 8 deletions(-)

New commits:
commit d34f7ce6ddd264d4445fa19f64497a568dee9d08
Author: Andras Timar 
AuthorDate: Wed Jul 22 17:30:18 2020 +0200
Commit: Andras Timar 
CommitDate: Wed Jul 22 22:55:48 2020 +0200

nicer formatting of alert message

Change-Id: Id4582b2ac1ad4212eb8f7c63dc6da8b2dea2e1e7
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/99235
Tested-by: Jenkins
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Andras Timar 

diff --git a/loleaflet/po/templates/loleaflet-ui.pot 
b/loleaflet/po/templates/loleaflet-ui.pot
index 55a4f192f..4fa244610 100644
--- a/loleaflet/po/templates/loleaflet-ui.pot
+++ b/loleaflet/po/templates/loleaflet-ui.pot
@@ -903,9 +903,7 @@ msgid "The document could not be locked, and is opened in 
read-only mode."
 msgstr ""
 
 #: src/control/Permission.js:47 src/control/Permission.js:65
-msgid ""
-"\n"
-"Server returned this reason: \""
+msgid "Server returned this reason:"
 msgstr ""
 
 #: src/control/Permission.js:63
diff --git a/loleaflet/src/control/Permission.js 
b/loleaflet/src/control/Permission.js
index 62b9bb9ad..c4035145c 100644
--- a/loleaflet/src/control/Permission.js
+++ b/loleaflet/src/control/Permission.js
@@ -44,7 +44,7 @@ L.Map.include({
 
var alertMsg = _('The document could not be locked, and 
is opened in read-only mode.');
if (reason) {
-   alertMsg += _('\nServer returned this reason: 
"') + reason + '"';
+   alertMsg += '\n' + _('Server returned this 
reason:') + '\n"' + reason + '"';
}
vex.dialog.alert({ message: alertMsg });
 
@@ -62,7 +62,7 @@ L.Map.include({
// This is a failed response to an attempt to lock 
using mobile-edit-button
alertMsg = _('The document could not be locked.');
if (reason) {
-   alertMsg += _('\nServer returned this reason: 
"') + reason + '"';
+   alertMsg += '\n' + _('Server returned this 
reason:') + '\n"' + reason + '"';
}
vex.dialog.alert({ message: alertMsg });
}
@@ -136,15 +136,15 @@ L.Map.include({
getPermission: function () {
return this._permission;
},
-   
+
isPermissionEditForComments: function() {
return true;
},
-   
+
isPermissionReadOnly: function() {
return this._permission === 'readonly';
},
-   
+
isPermissionEdit: function() {
return this._permission === 'edit';
}
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 135058] New: Track changes is losing changes when cut/pasting a frame with changes made within

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135058

Bug ID: 135058
   Summary: Track changes is losing changes when cut/pasting a
frame with changes made within
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Track changes is losing changes when cut/pasting a frame with changes made
within

Steps to Reproduce:
1. Open attachment 163426
2. Edit -Track changes -> Record
3. Type something in the frame
4. Cut the frame/paste

Actual Results:
Track & changes gone

Expected Results:
Not an expert on track & changes.. so what is registered or not.. but looks of
to me


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.1.0.0.alpha0+ (x64)
Build ID: 52820b52b3bca45e2db527d1cc5f4488b2e0b9d0
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL

and in
3.3.0

-- 
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 135057] Frame background color lost after undo/redo

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135057

--- Comment #1 from Telesto  ---
Created attachment 163426
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163426=edit
Example file

-- 
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 135057] New: Frame background color lost after undo/redo

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135057

Bug ID: 135057
   Summary: Frame background color lost after undo/redo
   Product: LibreOffice
   Version: 4.4.7.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Frame background color lost after undo/redo

Steps to Reproduce:
1. Open the attached file
2. Copy or cut the frame
3. CTRL+N
4. CTRL+V
5. CTRL+Z
6. CTRL=Y

Actual Results:
White background

Expected Results:
Color background (ideally with all formatting), but background color
disappearing is regression.. The rest is inherited


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.1.0.0.alpha0+ (x64)
Build ID: 52820b52b3bca45e2db527d1cc5f4488b2e0b9d0
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL

and in
4.4.7.2

but no in
3.5.7.2

-- 
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 135057] Frame background color lost after undo/redo

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135057

Telesto  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression

-- 
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-commits] core.git: include/svx svx/Library_svxcore.mk svx/source

2020-07-22 Thread Caolán McNamara (via logerrit)
 include/svx/recorditemwindow.hxx |   37 ++
 svx/Library_svxcore.mk   |1 
 svx/source/form/recorditemwindow.cxx |   89 +++
 svx/source/form/tbxform.cxx  |   66 -
 svx/source/inc/tbxform.hxx   |   16 +-
 5 files changed, 132 insertions(+), 77 deletions(-)

New commits:
commit e3bf5b17bf4b8c8a7abb2c524d0f0da34295766c
Author: Caolán McNamara 
AuthorDate: Wed Jul 22 17:09:54 2020 +0100
Commit: Caolán McNamara 
CommitDate: Wed Jul 22 22:17:34 2020 +0200

split SvxFmAbsRecWin up to make a reusable piece

Change-Id: I3c9992d39f7dd45ac354b8e4087bacfd9715b234
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99246
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/include/svx/recorditemwindow.hxx b/include/svx/recorditemwindow.hxx
new file mode 100644
index ..d49db978c136
--- /dev/null
+++ b/include/svx/recorditemwindow.hxx
@@ -0,0 +1,37 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; 
fill-column: 100 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#pragma once
+
+#include 
+#include 
+
+class SVXCORE_DLLPUBLIC RecordItemWindow : public InterimItemWindow
+{
+public:
+RecordItemWindow(vcl::Window* _pParent);
+virtual void dispose() override;
+virtual ~RecordItemWindow() override;
+
+void set_text(const OUString& rText) { m_xWidget->set_text(rText); }
+
+private:
+virtual void PositionFired(sal_Int64 nRecord) = 0;
+
+std::unique_ptr m_xWidget;
+
+DECL_LINK(KeyInputHdl, const KeyEvent&, bool);
+DECL_LINK(ActivatedHdl, weld::Entry&, bool);
+// for invalidating our content when losing the focus
+DECL_LINK(FocusOutHdl, weld::Widget&, void);
+
+void FirePosition(bool bForce);
+};
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s 
cinkeys+=0=break: */
diff --git a/svx/Library_svxcore.mk b/svx/Library_svxcore.mk
index 73d22cafee6c..bd9cf307393b 100644
--- a/svx/Library_svxcore.mk
+++ b/svx/Library_svxcore.mk
@@ -469,6 +469,7 @@ $(eval $(call gb_Library_add_exception_objects,svxcore,\
 svx/source/form/navigatortree \
 svx/source/form/navigatortreemodel \
 svx/source/form/ParseContext \
+svx/source/form/recorditemwindow \
 svx/source/form/sdbdatacolumn \
 svx/source/form/sqlparserclient \
 svx/source/form/typemap \
diff --git a/svx/source/form/recorditemwindow.cxx 
b/svx/source/form/recorditemwindow.cxx
new file mode 100644
index ..26920ee2a42f
--- /dev/null
+++ b/svx/source/form/recorditemwindow.cxx
@@ -0,0 +1,89 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+#include 
+#include 
+
+RecordItemWindow::RecordItemWindow(vcl::Window* pParent)
+: InterimItemWindow(pParent, "svx/ui/absrecbox.ui", "AbsRecBox")
+, m_xWidget(m_xBuilder->weld_entry("entry"))
+{
+InitControlBase(m_xWidget.get());
+
+m_xWidget->connect_key_press(LINK(this, RecordItemWindow, KeyInputHdl));
+m_xWidget->connect_activate(LINK(this, RecordItemWindow, ActivatedHdl));
+m_xWidget->connect_focus_out(LINK(this, RecordItemWindow, FocusOutHdl));
+
+SetSizePixel(m_xWidget->get_preferred_size());
+}
+
+void RecordItemWindow::dispose()
+{
+m_xWidget.reset();
+InterimItemWindow::dispose();
+}
+
+RecordItemWindow::~RecordItemWindow() { disposeOnce(); }
+
+void RecordItemWindow::FirePosition(bool _bForce)
+{
+if (!_bForce && !m_xWidget->get_value_changed_from_saved())
+return;
+
+sal_Int64 nRecord = m_xWidget->get_text().toInt64();
+if (nRecord < 1)
+nRecord = 1;
+
+PositionFired(nRecord);
+
+m_xWidget->save_value();
+}
+
+IMPL_LINK_NOARG(RecordItemWindow, FocusOutHdl, weld::Widget&, void) { 
FirePosition(false); }
+
+IMPL_LINK(RecordItemWindow, KeyInputHdl, const KeyEvent&, rKEvt, bool)
+{
+vcl::KeyCode aCode = 

[Libreoffice-bugs] [Bug 135049] Add visual separator for multiple installed extensions in Tabbed UI

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135049

andreas_k  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #2 from andreas_k  ---
+1

-- 
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-commits] core.git: svx/source

2020-07-22 Thread Caolán McNamara (via logerrit)
 svx/source/form/tbxform.cxx |   17 +
 1 file changed, 17 insertions(+)

New commits:
commit 2943666a7737d57e4307a24e08b8fd000f50e6d1
Author: Caolán McNamara 
AuthorDate: Wed Jul 22 16:57:57 2020 +0100
Commit: Caolán McNamara 
CommitDate: Wed Jul 22 22:16:27 2020 +0200

let up/down increase/decrease record number

Change-Id: I4d77cf71640922db5865586a0d053a46834f4b0e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99245
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/svx/source/form/tbxform.cxx b/svx/source/form/tbxform.cxx
index dadbb362076f..26ff4ad7a0cf 100644
--- a/svx/source/form/tbxform.cxx
+++ b/svx/source/form/tbxform.cxx
@@ -88,6 +88,23 @@ IMPL_LINK_NOARG(SvxFmAbsRecWin, FocusOutHdl, weld::Widget&, 
void)
 
 IMPL_LINK(SvxFmAbsRecWin, KeyInputHdl, const KeyEvent&, rKEvt, bool)
 {
+vcl::KeyCode aCode = rKEvt.GetKeyCode();
+bool bUp = (aCode.GetCode() == KEY_UP);
+bool bDown = (aCode.GetCode() == KEY_DOWN);
+
+if (!aCode.IsShift() && !aCode.IsMod1() && !aCode.IsMod2() && (bUp || 
bDown))
+{
+sal_Int64 nRecord = m_xWidget->get_text().toInt64();
+if (bUp)
+++nRecord;
+else
+--nRecord;
+if (nRecord < 1)
+nRecord = 1;
+m_xWidget->set_text(OUString::number(nRecord));
+return true;
+}
+
 return ChildKeyInput(rKEvt);
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: forms/source include/svx svx/inc svx/source

2020-07-22 Thread Caolán McNamara (via logerrit)
 forms/source/solar/control/navtoolbar.cxx  |   42 -
 svx/inc/pch/precompiled_svx.hxx|2 -
 svx/source/dialog/srchdlg.cxx  |2 -
 svx/source/form/labelitemwindow.cxx|4 +-
 svx/source/form/tbxform.cxx|2 -
 svx/source/tbxctrls/tbunosearchcontrollers.cxx |2 -
 6 files changed, 22 insertions(+), 32 deletions(-)

New commits:
commit a9d797ed771632afafb702697a6f31e0c25e80cf
Author: Caolán McNamara 
AuthorDate: Wed Jul 22 15:16:19 2020 +0100
Commit: Caolán McNamara 
CommitDate: Wed Jul 22 22:16:10 2020 +0200

weld form navigator label item windows

Change-Id: I2e49ffda6dc29746819a61db2848b6bcfe5f4a23
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94650
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/forms/source/solar/control/navtoolbar.cxx 
b/forms/source/solar/control/navtoolbar.cxx
index d361aa0a94c5..687f4dffd1b7 100644
--- a/forms/source/solar/control/navtoolbar.cxx
+++ b/forms/source/solar/control/navtoolbar.cxx
@@ -27,6 +27,8 @@
 #include 
 #include 
 
+#include 
+
 #include 
 #include 
 #include 
@@ -224,7 +226,12 @@ namespace frm
 
 vcl::Window* pItemWindow = m_pToolbar->GetItemWindow( 
static_cast(_nFeatureId) );
 if ( pItemWindow )
-pItemWindow->SetText( _rText );
+{
+if (_nFeatureId == FormFeature::TotalRecords)
+static_cast(pItemWindow)->set_label(_rText);
+else
+pItemWindow->SetText( _rText );
+}
 else
 m_pToolbar->SetItemText( static_cast(_nFeatureId), 
_rText );
 }
@@ -300,30 +307,14 @@ namespace frm
 pItemWindow = VclPtr::Create( 
m_pToolbar );
 static_cast< RecordPositionInput* >( pItemWindow 
)->setDispatcher( m_pDispatcher );
 }
-else if ( LID_RECORD_FILLER == pSupportedFeatures->nId )
-{
-pItemWindow = VclPtr::Create( m_pToolbar, 
WB_CENTER | WB_VCENTER );
-pItemWindow->SetBackground(Wallpaper(COL_TRANSPARENT));
-}
-else
-{
-pItemWindow = VclPtr::Create( m_pToolbar, 
WB_VCENTER );
-pItemWindow->SetBackground();
-pItemWindow->SetPaintTransparent(true);
-}
-m_aChildWins.emplace_back(pItemWindow );
-
-switch ( pSupportedFeatures->nId )
-{
-case LID_RECORD_LABEL:
-pItemWindow->SetText( getLabelString( 
RID_STR_LABEL_RECORD ) );
-break;
-
-case LID_RECORD_FILLER:
-pItemWindow->SetText( getLabelString( RID_STR_LABEL_OF 
) );
-break;
-}
+else if (pSupportedFeatures->nId == LID_RECORD_FILLER)
+pItemWindow = 
VclPtr::Create(m_pToolbar, getLabelString(RID_STR_LABEL_OF));
+else if (pSupportedFeatures->nId == LID_RECORD_LABEL)
+pItemWindow = 
VclPtr::Create(m_pToolbar, 
getLabelString(RID_STR_LABEL_RECORD));
+else if (pSupportedFeatures->nId == 
FormFeature::TotalRecords)
+pItemWindow = 
VclPtr::Create(m_pToolbar, "");
 
+m_aChildWins.emplace_back(pItemWindow );
 m_pToolbar->SetItemWindow( pSupportedFeatures->nId, 
pItemWindow );
 }
 }
@@ -642,7 +633,6 @@ namespace frm
 m_pToolbar->SetItemWindow( _nItemId, _pItemWindow );
 }
 
-
 void NavigationToolBar::enableItemRTL( sal_uInt16 /*_nItemId*/, 
vcl::Window* _pItemWindow, const void* _pIsRTLEnabled )
 {
 _pItemWindow->EnableRTL( *static_cast< const sal_Bool* >( 
_pIsRTLEnabled ) );
@@ -660,13 +650,11 @@ namespace frm
 SetBorderStyle( WindowBorderStyle::MONO );
 }
 
-
 void RecordPositionInput::setDispatcher( const IFeatureDispatcher* 
_pDispatcher )
 {
 m_pDispatcher = _pDispatcher;
 }
 
-
 void RecordPositionInput::FirePosition( bool _bForce )
 {
 if ( _bForce || IsValueChangedFromSaved() )
diff --git a/svx/inc/labelitemwindow.hxx b/include/svx/labelitemwindow.hxx
similarity index 100%
rename from svx/inc/labelitemwindow.hxx
rename to include/svx/labelitemwindow.hxx
diff --git a/svx/inc/pch/precompiled_svx.hxx b/svx/inc/pch/precompiled_svx.hxx
index b2ce7362b84e..0c96cace089e 100644
--- a/svx/inc/pch/precompiled_svx.hxx
+++ b/svx/inc/pch/precompiled_svx.hxx
@@ -376,7 +376,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -401,6 +400,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
diff --git 

[Libreoffice-bugs] [Bug 135056] Freeze hang/after deleting index SwPosition::dumpAsXml

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135056

Telesto  changed:

   What|Removed |Added

 CC||michael.st...@cib.de

--- Comment #4 from Telesto  ---
Adding CC: to Michael Stahl

-> Current status: unconfirmed (but to speed things up)

-- 
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 135056] Freeze hang/after deleting index SwPosition::dumpAsXml

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135056

Telesto  changed:

   What|Removed |Added

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

-- 
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 135056] Freeze hang/after deleting index SwPosition::dumpAsXml

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135056

--- Comment #3 from Telesto  ---
Created attachment 163425
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163425=edit
Bibisect log

Bisected to:
author  Michael Stahl 2020-06-19 15:05:42 +0200
committer   Michael Stahl 2020-06-19 16:42:08
+0200
commit  a60dd9ef1361c5925803acaa5292e99277d1faf3 (patch)
tree5ab4fcb2c8030d1ca0afcd26af3561d3a8f977b0
parent  8e4c79472644452431381733a5e4b21f98fcdcf3 (diff)
tdf#132326 sw_redlinehide: no frames allowed in Undo SwNodesArray
This crashes in SwAccessibleParagraph::GetRealHeadingLevel(); the a11y
should have been disposed earlier because the node it's connected to is
in the Undo SwNodesArray.

When SwUndoDelete::SwUndoDelete() calls SwNodes::MoveNodes(), all
existing frames must be destroyed; the MoveNodes() would reset its flag
temporarily inside a section, to delay creating the frames inside the
section when moving to the live SwNodesArray, but this also prevents
the deletion when moving in the other direction.

(crash is regression from 723728cd358693b8f4bc9d913541aa4479f2bd48)

-- 
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 135056] Freeze hang/after deleting index SwPosition::dumpAsXml

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135056

Telesto  changed:

   What|Removed |Added

   Keywords||bibisected, bisected,
   ||regression

-- 
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 135056] Freeze hang/after deleting index SwPosition::dumpAsXml

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135056

--- Comment #2 from Telesto  ---
Not in 
6.5/7.0

-- 
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 135056] New: Freeze hang/after deleting index SwPosition::dumpAsXml

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135056

Bug ID: 135056
   Summary: Freeze hang/after deleting index SwPosition::dumpAsXml
   Product: LibreOffice
   Version: 7.1.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Freeze hang/after deleting index SwPosition::dumpAsXml

Steps to Reproduce:
1. Open the attached file
2. Delete the index on page 2

Actual Results:
Freeze/hang

Expected Results:
No freeze/hang


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.1.0.0.alpha0+ (x64)
Build ID: 52820b52b3bca45e2db527d1cc5f4488b2e0b9d0
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL

-- 
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 135056] Freeze hang/after deleting index SwPosition::dumpAsXml

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135056

--- Comment #1 from Telesto  ---
Created attachment 163424
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163424=edit
Example file

-- 
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 135020] LOWER(), UPPER(), PROPER() functions does not work correctly on Turkish character capital 'i' (İ)

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135020

Julien Nabet  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |serval2...@yahoo.fr
   |desktop.org |
 Status|NEW |ASSIGNED

--- Comment #4 from Julien Nabet  ---
Let's give a try with https://gerrit.libreoffice.org/c/core/+/99255

-- 
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 135053] Some letters are cut off, but it is hard to notice

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135053

--- Comment #10 from peter_ba...@hotmail.com ---
I just went through the entire list of options, turning them on and off one by
one. None of the options solved the problem - only one letter "F" got
corrected, and that was the automatically hyphenated one. The rest, including
the cutoff letter "e" stayed the same no matter how I set the options for
"cutoff letter F".

-- 
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 134979] Relative is lost if relative is checked on table tab & go the column tab & press OK

2020-07-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134979

BogdanB  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #6 from BogdanB  ---
Confirm in
Version: 7.1.0.0.alpha0+
Build ID: abea0d6647c7f1f7e76c73c26cb80e6a67dc5111
CPU threads: 4; OS: Linux 5.4; UI render: default; VCL: x11
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

-- 
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


  1   2   3   4   5   >