[Libreoffice-bugs] [Bug 98367] Draw/Impress Small capitals preview correct but result as Capitals, including with Text box in Writer

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98367

--- Comment #21 from John Kaufmann  ---
Is this related to the lack of Small Caps in Calc?

The most interesting question is why Small Caps function is OK in Writer except
for text in boxes, and the behavior in Base/Draw/Impress is the same as Writer
text boxes -- where the preview is right but the execution fails.  IOW, if the
question is confined to the Writer module, what is the difference in character
handling between text in boxes (where SC fails) and out of boxes (where it's
OK)?

Presumably that would lead to solution for other modules, and might open up
Calc for Small Caps.

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


Row height test failing for some on Windows

2021-07-08 Thread Ilmari Lauhakangas

Someone I am mentoring got this test failure on Windows:

C:/cygwin/home/user/lode/dev/core/sc/qa/unit/subsequent_filters-test.cxx(3384) 
: error : Assertion

Test name: ScFiltersTest::testTdf118086
equality assertion failed
- Expected: 477
- Actual  : 480

Failures !!!
Run: 179   Failure total: 1   Failures: 1   Errors: 0

The test was added a few months ago:
https://git.libreoffice.org/core/commit/8e3548af67218034c9fc816c011ae4b16e081e16

The Windows display scaling was default, so that wasn't the issue. Any 
ideas?


Ilmari
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 141964] FILEOPEN DOCX: Outline numbering not imported well.

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141964

--- Comment #12 from Commit Notification 
 ---
Justin Luth committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/a45876adc36a3764cfeadb1737e5dcfb7ffee9da

tdf#141964 writerfilter CN: listLevel 9 means no numbering

It will be available in 7.3.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

-- 
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/qa writerfilter/source

2021-07-08 Thread Justin Luth (via logerrit)
 sw/qa/extras/ooxmlexport/ooxmlexport16.cxx|   12 
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |7 ---
 2 files changed, 16 insertions(+), 3 deletions(-)

New commits:
commit a45876adc36a3764cfeadb1737e5dcfb7ffee9da
Author: Justin Luth 
AuthorDate: Fri Apr 30 13:25:54 2021 +0200
Commit: Justin Luth 
CommitDate: Fri Jul 9 07:24:16 2021 +0200

tdf#141964 writerfilter CN: listLevel 9 means no numbering

and so does numId 0.

Wow - this is REALLY FUNDAMENTAL stuff, and we weren't
handling it? Did anyone look at any of the specs
when they were implementing import of numbering?

Change-Id: I3ea20baccfae34751328558a873ccdcfda0de0a2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115258
Tested-by: Jenkins
Reviewed-by: Justin Luth 

diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx
index 7ef26bb13b4c..c65e59e2ff78 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx
@@ -168,6 +168,18 @@ 
DECLARE_OOXMLEXPORT_TEST(testTdf141966_chapterNumberTortureTest, "tdf141966_chap
 // 2nd.iii in MS Word 2003.  2nd.ii in MS Word 2010/2016 where para5 is 
not numbered. Why not?
 CPPUNIT_ASSERT_EQUAL(OUString("2nd.iii"), getProperty(xPara, 
"ListLabelString"));
 CPPUNIT_ASSERT_EQUAL(sal_Int16(1), getProperty(xPara, 
"NumberingLevel")); // Level 2
+
+xPara.set(getParagraph(9, "outline with Body listLvl(9)."), 
uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL(OUString(""), getProperty(xPara, 
"ListLabelString"));
+
+xPara.set(getParagraph(10, "outline with Body listLvl(9) #2."), 
uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL(OUString(""), getProperty(xPara, 
"ListLabelString"));
+
+xPara.set(getParagraph(11, "direct formatting - Body listLvl(9)."), 
uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL(OUString(""), getProperty(xPara, 
"ListLabelString"));
+
+xPara.set(getParagraph(13, "Style numId0 cancels inherited numbering."), 
uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL(OUString(""), getProperty(xPara, 
"ListLabelString"));
 }
 
 DECLARE_OOXMLEXPORT_TEST(testTdf132752, "tdf132752.docx")
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 74550ec80245..01ea5230ecfa 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -1548,14 +1548,15 @@ void DomainMapper_Impl::finishParagraph( const 
PropertyMapPtr& pPropertyMap, con
 if (nListLevel == -1 && nListId > 0)
 nListLevel = 0;
 
-if ( !bNoNumbering && !isNumberingViaRule && nListLevel >= 0 )
+if (!bNoNumbering && !isNumberingViaRule && nListLevel >= 0 && 
nListLevel < 9)
 pParaContext->Insert( PROP_NUMBERING_LEVEL, 
uno::makeAny(nListLevel), false );
 
 auto const pList(GetListTable()->GetList(nListId));
 if (pList && nListId >= 0 && 
!pParaContext->isSet(PROP_NUMBERING_STYLE_NAME))
 {
-if ( bNoNumbering )
-pParaContext->Insert( PROP_NUMBERING_STYLE_NAME, 
uno::makeAny(OUString()) );
+// ListLevel 9 means Body Level/no numbering.  numId 0 means no 
numbering.
+if (bNoNumbering || nListLevel == 9 || (!isNumberingViaRule && 
!nListId))
+pParaContext->Insert(PROP_NUMBERING_STYLE_NAME, 
uno::makeAny(OUString()), true);
 else if ( !isNumberingViaRule )
 {
 isNumberingViaStyle = true;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 143112] Toolbar disappeared on tab option

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143112

--- Comment #2 from sur...@hotmail.com ---
Hello,
Bug seems to be solved for this time.
Will try to update if it happens again.

BS

-- 
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 98367] Draw/Impress Small capitals preview correct but result as Capitals, including with Text box in Writer

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98367

--- Comment #20 from John Kaufmann  ---
Still present in 7.1.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 125257] [META] Tip of the day

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125257

Heiko Tietze  changed:

   What|Removed |Added

 Depends on||143264


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143264
[Bug 143264] [ToD] inconsistency in %MOD1 usage
-- 
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 143264] [ToD] inconsistency in %MOD1 usage

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143264

Heiko Tietze  changed:

   What|Removed |Added

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

--- Comment #2 from Heiko Tietze  ---
Tend to reject the request of more variables. Fine for me if translators change
the text completely but if we make everything optional ("Use MOD1% with %COMMA
to make %SYSTEM behave %FOO") it becomes a l10n nightmare. See also the
discussion in bug 130979 (and other).


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=125257
[Bug 125257] [META] Tip of the day
-- 
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 132458] Tip of the Day: 12/222 - "Tool > Options" instruction doesn't apply to macOS

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132458

Heiko Tietze  changed:

   What|Removed |Added

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

-- 
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 143049] Crash in: ScDocument::GetPool()

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143049

--- Comment #1 from Colin  ---
Perhaps read alongside 141209 (closed by admin) - they may be duplicates but
reopened by me as the events reoccurred yesterday and I now suspect "user
profile" is a misdiagnosis.

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

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141299

--- Comment #8 from Colin  ---
Is it conceivable that this is related to 143049 where there is also an
autosorted array with conditional colour formatting?

-- 
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 133627] 6.4.4.2 produces docx that crashes Word from Office 2019

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133627

Dieter  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 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 143245] Clicking anywhere in the Description area will trigger the Form creation window

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143245

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

-- 
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 143007] Added "http://" to relative urls

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143007

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 142984] Centred Bitmap in page style area is not centred

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142984

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 142781] HTML import: base64 PNG image is stretched on import (height is scaled to 200% and aspect ratio not kept)

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142781

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 141972] Fileopen and filesave Hyperlinks from and to PPT

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141972

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 143052] FILESAVE PPTX Some slide show settings are not retained on roundtrip

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143052

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 139404] Cannot record Basic macros in Calc

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139404

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 143051] EDITING Adding/removing bullets is not change tracked

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143051

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 143049] Crash in: ScDocument::GetPool()

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143049

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 143048] Autofilter dropdown window width is not enugh and not resizable

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143048

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 143044] PPTX to PDF: Alternative text for shapes is omitted.

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143044

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 143043] FILEOPEN DOCX Change tracked deletion of drawing shape is not imported

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143043

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 143042] FILEOPEN DOCX Change tracked addition of drawing shape is not imported

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143042

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 143041] EDITING Deletion of shape object is not change tracked

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143041

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 143040] EDITING Insertion of shape object is not change tracked

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143040

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 143036] Crash pressing undo/redo while table layouting still running (swlo!SwFrame::IsLeaveUpperAllowed+0x6e5b)

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143036

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 140284] Collabora Office - no new embedded database can be created with database wizard

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140284

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 135022] LibreOffice Crashes when Redoing Zotero Actions.

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135022

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|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 135022] LibreOffice Crashes when Redoing Zotero Actions.

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135022

--- Comment #5 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 133627] 6.4.4.2 produces docx that crashes Word from Office 2019

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133627

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|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 133627] 6.4.4.2 produces docx that crashes Word from Office 2019

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133627

--- Comment #9 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 138505] FILEOPEN XLSX: Experimental Feature: Cells with revised built-in styles reverted back to default style formats

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138505

QA Administrators  changed:

   What|Removed |Added

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

-- 
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 138505] FILEOPEN XLSX: Experimental Feature: Cells with revised built-in styles reverted back to default style formats

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138505

--- Comment #13 from QA Administrators  ---
Dear Kevin Suo,

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 90621] FORMATTING: Custom character styles are not applied in bibliographies

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90621

--- Comment #18 from QA Administrators  ---
Dear Rastus Vernon,

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 45854] ODF database mime-type confusion

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45854

--- Comment #12 from QA Administrators  ---
Dear Michael Stahl (CIB),

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 126111] FILEOPEN DOCX “Square” symbols replaced

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126111

--- Comment #15 from QA Administrators  ---
Dear NISZ LibreOffice Team,

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 121539] Laggy scrolling & zooming in/out

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121539

--- Comment #5 from QA Administrators  ---
Dear Telesto,

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 135180] LibreOffice crashes on startup, but not as sudo

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135180

--- Comment #8 from Aidan K  ---
After some testing, I opened a new bug report. My problem was related to
removing the Lohit font family, maybe this bug is related.

https://bugs.documentfoundation.org/show_bug.cgi?id=143271

-- 
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 143271] New: LibreOffice suite: Crash on startup if "Lohit" fonts are not installed

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143271

Bug ID: 143271
   Summary: LibreOffice suite: Crash on startup if "Lohit" fonts
are not installed
   Product: LibreOffice
   Version: 7.1.4.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: aidankelly...@gmail.com

Description:
Recently, I removed some non-English fonts from my system. After removing the
fonts-lohit* packages and updating the fonts cache, none of the LibreOffice
programs open any longer. The icon appears briefly in the taskbar but then
disappears in about a second. No error message appears. Opening with sudo from
the terminal does work. Here is the result of a backtrace using Writer:

warning: Currently logging to gdbtrace.log.  Turn the logging off and on to
make the new setting effective.
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
[Detaching after fork from child process 7712]
warning: Corrupted shared library list: 0x55ff6c6fbe40 != 0x55ff6c6f7330
[New Thread 0x7f1ee11ae640 (LWP 7729)]
[New Thread 0x7f1ee09a8640 (LWP 7730)]
[Thread 0x7f1ee11ae640 (LWP 7729) exited]
[Thread 0x7f1ee253a000 (LWP 7708) exited]
[Inferior 1 (process 7708) exited with code 01]
/usr/lib/libreoffice/program/gdbtrace:9: Error in sourced command file:
No stack.

Neither running in safe mode or deleting/recreating the user config folder
helps.

If these font packages are reinstalled (along with cache update & reboot),
LibreOffice opens again. I tried to single out a package that was causing
issues, but the only solution was reinstalling the whole group at once (sudo
apt install fonts-lohit*).

Steps to Reproduce:
1. Remove Lohit fonts using apt: sudo apt remove fonts-lohit*
2. Update fonts cache: sudo fc-cache -frv
3. Reboot
4. Open LibreOffice (through GUI or terminal)

Actual Results:
LibreOffice crashes immediately on startup

Expected Results:
LibreOffice opens normally with the fonts in question no longer listed


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
Version: 7.1.4.2 / LibreOffice Community
Build ID: 10(Build:2)
CPU threads: 8; OS: Linux 5.11; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Ubuntu package version: 1:7.1.4-0ubuntu0.21.04.1
Calc: threaded

Kubuntu 21.04

-- 
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 135180] LibreOffice crashes on startup, but not as sudo

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135180

--- Comment #7 from Aidan K  ---
I've found myself in a similar situation as Pierre. I tried removing some of
the non-English fonts installed in Kubuntu 21.04 by default, cleared the font
cache, and rebooted, and now LibreOffice crashes immediately on startup.
Running with sudo works, however. Here is the result of a backtrace (with safe
mode enabled):

warning: Currently logging to gdbtrace.log.  Turn the logging off and on to
make the new setting effective.
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
[Detaching after fork from child process 7712]
warning: Corrupted shared library list: 0x55ff6c6fbe40 != 0x55ff6c6f7330
[New Thread 0x7f1ee11ae640 (LWP 7729)]
[New Thread 0x7f1ee09a8640 (LWP 7730)]
[Thread 0x7f1ee11ae640 (LWP 7729) exited]
[Thread 0x7f1ee253a000 (LWP 7708) exited]
[Inferior 1 (process 7708) exited with code 01]
/usr/lib/libreoffice/program/gdbtrace:9: Error in sourced command file:
No stack.

Version is LibreOffice 7.1.4.2 10(Build:2) installed from Ubuntu repos.

I will try reinstalling the fonts I removed and will update if that fixes the
issue.

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


New Defects reported by Coverity Scan for LibreOffice

2021-07-08 Thread scan-admin
Hi,

Please find the latest report on new defect(s) introduced to LibreOffice found 
with Coverity Scan.

1 new defect(s) introduced to LibreOffice found with Coverity Scan.


New defect(s) Reported-by: Coverity Scan
Showing 1 of 1 defect(s)


** CID 1487029:  Incorrect expression  (IDENTICAL_BRANCHES)
/sc/source/filter/xml/XMLExportDatabaseRanges.cxx: 484 in 
::WriteDatabaseRange::writeCondition(const ScQueryEntry &, int, bool, 
utl::SearchParam::SearchType)()



*** CID 1487029:  Incorrect expression  (IDENTICAL_BRANCHES)
/sc/source/filter/xml/XMLExportDatabaseRanges.cxx: 484 in 
::WriteDatabaseRange::writeCondition(const ScQueryEntry &, int, bool, 
utl::SearchParam::SearchType)()
478 {
479 // Multi-item condition.
480 assert( rItems.size() > 1 && "rItems should have more than 
1 element");
481 
482 // Store the 1st value for backward compatibility.
483 const ScQueryEntry::Item& rItem = rItems.front();
>>> CID 1487029:  Incorrect expression  (IDENTICAL_BRANCHES)
>>> The same code is executed regardless of whether "rItem.meType == 
>>> ScQueryEntry::ByValue" is true, because the 'then' and 'else' branches are 
>>> identical. Should one of the branches be modified, or the entire 'if' 
>>> statement replaced?
484 if (rItem.meType == ScQueryEntry::ByValue)
485 {
486 mrExport.AddAttribute(XML_NAMESPACE_TABLE, XML_VALUE, 
rItem.maString.getString());
487 }
488 else
489 {



To view the defects in Coverity Scan visit, 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50ypSs1kiFPuCn2xFdlMIFBirii0zZ9j2-2F9F2XPBcBm2BNgi9duPy3v-2FzgFDd2LJ-2BDKI-3DwOnx_OTq2XUZbbipYjyLSo6GRo-2FpVxQ9OzkDINu9UTS-2FQhSdO0F0jQniitrGlNxDIzPJin9-2B-2BJqbuhkYr2oOcNx6-2FYQ6uI15Xuvwlqpxw-2BVUXWujt-2FnTQJMvadxq4-2FpPkbEz7lqKSezKmLxEowyBaU-2Fzyc7DaF1aOCNjcSuHM8Iba32rabAFlsI7QmHuH-2BqcqZZOvsxE0cIDGRbDEUo44TrSu4w-2BtGWVka-2FKjdW-2F70MaeDvo-3D

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 143270] New: Crash in: mergedlo.dll

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143270

Bug ID: 143270
   Summary: Crash in: mergedlo.dll
   Product: LibreOffice
   Version: 7.2.0.0.beta1+
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sab...@msn.com

This bug was filed from the crash reporting server and is
br-769a6a5c-12b2-45e7-8d59-3be15376b3a8.
=

The crash can be reproduced all the time. 

Step to reproduce.
1- Set the tapped UI
 View-->User Interface-->Tabbed
2- Layout (tab)--> Page Column 

It will crash instantly. I tried to go to safe mod and restore the installation
setting but that does not help. The same crash happened in the safe mode.

Version: 7.2.0.0.beta1 (x64) / LibreOffice Community
Build ID: c6974f7afec4cd5195617ae48c6ef9aacfe85ddd
CPU threads: 16; OS: Windows 10.0 Build 19042; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

Processor   Intel(R) Core(TM) i9-10885H CPU @ 2.40GHz   2.40 GHz
Installed RAM   64.0 GB (63.7 GB usable)
System type 64-bit operating system, x64-based processor

-- 
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 143193] Clean up Basic 'Format' implementation

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143193

Olivier Hallot  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |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 143267] InterActive .pdf remains active after client has entered personal data and saved the document

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143267

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #2 from V Stuart Foote  ---
Don't see how this is a LibreOffice issue. You've created the form and exported
it to PDF--great LO has done its part.

And, if I open the PDF form in a browser (Chrome) I can fill in the form
fields.

If I reload the PDF the fields are empty, what I'd expect.

How *you* capture the content from the form from your web site is not handled
by LibreOffice in any sense.

IMHO => NAB (LibreOffice is doing its thing correctly)...

-- 
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 143184] shortcut to 2nd menu item fails

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143184

tor...@yahoo.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #2 from tor...@yahoo.com ---
French version. Menu Outils. Hit p, get ‘Assistant Publi…’; OK. Hit p again,
get ‘Protéger’. Hit p again to get ‘Personnaliser’, menu closes instead.
Remedy: ‘Personnaliser’ could be triggered by ‘r’. Bug 143184. May be related
to Bug 137827
> 
> Steps to Reproduce:
> 1.French version. Menu Outils. Hit p, get ‘Assistant Publi…’
> 2.Hit p again, twice
> 
> Actual Results:
> menu closes
> 
> Expected Results:
> jump to ‘Personnaliser’
> 
> Reproducible: Always
> 
> User Profile Reset: No
> 
Version: 7.1.4.2 (x64) / LibreOffice Community
Build ID: a529a4fab45b75fefc5b6226684193eb000654f6
CPU threads: 4; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: fr-FR (en_US); UI: fr-FR
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 143269] New: FILESAVE DOCX saved file with chart cannot be opened by Word

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143269

Bug ID: 143269
   Summary: FILESAVE DOCX saved file with chart cannot be opened
by Word
   Product: LibreOffice
   Version: 7.3.0.0 alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Keywords: regression
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

Open attachment https://bugs.documentfoundation.org/attachment.cgi?id=144104
"Demo-Hayden-Management-minimum.docx" from bug 81522.
Save a copy of the file to docx format.
Open the saved file in Word.

Error: Word finds content that it cannot read and is not able to open the file.

I see the error in master from 8.Jul, it was OK with a build 3 days ago.
Good at least till 72541a46aa26194b751785cd56185c8d3db0c9e9
Broken likely in or before 7e7a871bcd4f923b015a7e040969335696b434c6

The problem is in part word/charts/chart1.xml. At end of the file is an element
c:externalData. That should not be there.

-- 
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 103182] [META] GTK3-specific bugs

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103182

stragu  changed:

   What|Removed |Added

 Depends on||143257


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143257
[Bug 143257] [GTK] selecting a shape increases memory use up to 1.3 GB, creates
visual artifacts in GUI
-- 
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 143257] [GTK] selecting a shape increases memory use up to 1.3 GB, creates visual artifacts in GUI

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143257

stragu  changed:

   What|Removed |Added

Summary|selecting a shape increases |[GTK] selecting a shape
   |memory use up to 1.3 GB,|increases memory use up to
   |creates visual artifacts in |1.3 GB, creates visual
   |GUI |artifacts in GUI
 Blocks||103182

--- Comment #9 from stragu  ---
Thanks Paulo and Bogdan!
Seems to be GTK-specific. I tried without GTK:

/opt/libreofficedev7.2/program/soffice -env:SAL_USE_VCLPLUGIN=gen --writer

...and didn't get the same drastic increase in memory use (it only went from
100 to 150 mb, I could move the shape around, it didn't disappear...

I could see in the terminal the following warning pop up every time I move the
shape around, in case it helps understanding the issue:

warn:legacy.osl:20977:20977:svx/source/svdraw/svdmrkv1.cxx:311:
SdrMarkView::UndirtyMrkPnt(): Selected points on an object that is not a
PolyObj!


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103182
[Bug 103182] [META] GTK3-specific bugs
-- 
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 143234] Writer Table: Split Cells resets the borders and background color

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143234

raal  changed:

   What|Removed |Added

 CC||ubap@gmail.com
   Keywords||bibisected, bisected
Version|7.3.0.0 alpha0+ Master  |5.4.0.3 release

--- Comment #2 from raal  ---
This seems to have begun at the below commit.
Adding Cc: to Jakub Trzebiatowski ; Could you possibly take a look at this one?
Thanks

80852fb82e9722170aa1b84abaf44c8a47e52fca is the first bad commit
commit 80852fb82e9722170aa1b84abaf44c8a47e52fca
Author: Jenkins Build User 
Date:   Wed Sep 28 07:49:59 2016 +0200

source sha:40fba0f4418084d50cc5c388cb0b6e1abe395d61

https://git.libreoffice.org/core/+/40fba0f4418084d50cc5c388cb0b6e1abe395d61
   GSoC Writer Table Styles Import

-- 
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 143234] Writer Table: Split Cells resets the borders and background color

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143234

raal  changed:

   What|Removed |Added

   Keywords||regression
 OS|Windows (All)   |All

-- 
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 143234] Writer Table: Split Cells resets the borders and background color

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143234

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC||r...@post.cz

--- Comment #1 from raal  ---
Confirm with Version: 7.3.0.0.alpha0+ / LibreOffice Community
Build ID: eac5977bfc11797eda356560a5e45c51108ef5a1
CPU threads: 4; OS: Linux 5.11; UI render: default; VCL: gtk3
Locale: cs-CZ (cs_CZ.UTF-8); UI: en-US
Calc: threaded

It works in Version 4.1.0.0.alpha0+ (Build ID:
efca6f15609322f62a35619619a6d5fe5c9bd5a) -> 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/oox oox/source sc/source sd/qa

2021-07-08 Thread Gülşah Köse (via logerrit)
 include/oox/core/contexthandler2.hxx  |   19 +
 include/oox/core/fragmenthandler2.hxx |   11 ---
 include/oox/drawingml/graphicshapecontext.hxx |1 
 include/oox/ole/oleobjecthelper.hxx   |1 
 oox/source/core/contexthandler2.cxx   |   85 +-
 oox/source/core/fragmenthandler2.cxx  |   70 -
 oox/source/drawingml/graphicshapecontext.cxx  |   11 +++
 sc/source/filter/oox/worksheetfragment.cxx|6 -
 sd/qa/unit/data/pptx/tdf143222.pptx   |binary
 sd/qa/unit/export-tests-ooxml3.cxx|   30 +
 10 files changed, 148 insertions(+), 86 deletions(-)

New commits:
commit 92a407b7f90a98704a238c5ffa3a3491eaf3263a
Author: Gülşah Köse 
AuthorDate: Wed Jul 7 00:27:58 2021 +0300
Commit: Gülşah Köse 
CommitDate: Thu Jul 8 23:12:07 2021 +0200

tdf143222 Handle alternate content of graphicData element.

Handle alternate content and make true choice.

According to ooxml spec ole object requires exactly one pic
element. (ECMA-376 Part 1, Annex A, CT_OleObject). In the
current case first choice has not pic element and we should
allow fallback processing.

Change-Id: I30b7de703b8c2f00d6bf286e05eea505ac3627f2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118539
Tested-by: Jenkins
Reviewed-by: Gülşah Köse 

diff --git a/include/oox/core/contexthandler2.hxx 
b/include/oox/core/contexthandler2.hxx
index 4e256089ac8e..3a75aff5706a 100644
--- a/include/oox/core/contexthandler2.hxx
+++ b/include/oox/core/contexthandler2.hxx
@@ -72,7 +72,7 @@ struct ElementInfo;
 class OOX_DLLPUBLIC ContextHandler2Helper
 {
 public:
-explicitContextHandler2Helper( bool bEnableTrimSpace );
+explicitContextHandler2Helper( bool bEnableTrimSpace, 
XmlFilterBase& rFilter );
 explicitContextHandler2Helper( const ContextHandler2Helper& 
rParent );
 virtual ~ContextHandler2Helper();
 
@@ -201,6 +201,21 @@ protected:
 /** Must be called from endRecord() in derived classes. */
 voidimplEndRecord( sal_Int32 nRecId );
 
+boolprepareMceContext( sal_Int32 nElement, const 
AttributeList& rAttribs );
+XmlFilterBase&  getDocFilter() const { return mrFilter; }
+
+enum class MCE_STATE
+{
+Started,
+FoundChoice
+};
+
+MCE_STATE   getMCEState() const { return aMceState.back(); }
+voidsetMCEState( MCE_STATE aState ) { aMceState.back() = 
aState; }
+voidaddMCEState( MCE_STATE aState ) { aMceState.push_back( 
aState ); }
+voidremoveMCEState() { aMceState.pop_back(); }
+boolisMCEStateEmpty() { return aMceState.empty(); }
+
 private:
 ContextHandler2Helper& operator=( const ContextHandler2Helper& ) = delete;
 
@@ -214,9 +229,11 @@ private:
 
 ContextStackRef mxContextStack; ///< Stack of all processed 
elements.
 size_t  mnRootStackSize;///< Stack size on construction 
time.
+std::vector aMceState;
 
 protected:
 boolmbEnableTrimSpace;  ///< True = trim whitespace in 
characters().
+XmlFilterBase&  mrFilter;
 };
 
 class OOX_DLLPUBLIC ContextHandler2 : public ContextHandler, public 
ContextHandler2Helper
diff --git a/include/oox/core/fragmenthandler2.hxx 
b/include/oox/core/fragmenthandler2.hxx
index 86d1453f13a1..598426ee681e 100644
--- a/include/oox/core/fragmenthandler2.hxx
+++ b/include/oox/core/fragmenthandler2.hxx
@@ -47,17 +47,6 @@ class XmlFilterBase;
 
 class OOX_DLLPUBLIC FragmentHandler2 : public FragmentHandler, public 
ContextHandler2Helper
 {
-protected:
-enum class MCE_STATE
-{
-Started,
-FoundChoice
-};
-::std::vector   aMceState;
-
-boolprepareMceContext( sal_Int32 nElement, const 
AttributeList& rAttribs );
-
-
 public:
 explicitFragmentHandler2(
 XmlFilterBase& rFilter,
diff --git a/include/oox/drawingml/graphicshapecontext.hxx 
b/include/oox/drawingml/graphicshapecontext.hxx
index 4813d5fc9aed..ffd579f00bb1 100644
--- a/include/oox/drawingml/graphicshapecontext.hxx
+++ b/include/oox/drawingml/graphicshapecontext.hxx
@@ -62,6 +62,7 @@ public:
 OleObjectGraphicDataContext( ::oox::core::ContextHandler2Helper const & 
rParent, const ShapePtr& pShapePtr );
 virtual ~OleObjectGraphicDataContext() override;
 virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 
Element, const ::oox::AttributeList& rAttribs ) override;
+virtual void onEndElement() override;
 
 private:
 ::oox::vml::OleObjectInfo& mrOleObjectInfo;
diff --git a/include/oox/ole/oleobjecthelper.hxx 
b/include/oox/ole/oleobjecthelper.hxx
index d2506f3d4949..5b792f2048b1 100644
--- a/include/oox/ole/oleobjecthelper.hxx
+++ b/include/oox/ole/oleobjecthelper.hxx
@@ -47,6 +47,7 @@ 

[Libreoffice-bugs] [Bug 141758] vba NumberFormat for dates does only work once and never again

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141758

Harald Langheinrich  changed:

   What|Removed |Added

 Ever confirmed|1   |0
   Assignee|libreoffice-b...@lists.free |hal71...@gmail.com
   |desktop.org |
 Status|NEEDINFO|UNCONFIRMED

--- Comment #2 from Harald Langheinrich  ---
Created attachment 173464
  --> https://bugs.documentfoundation.org/attachment.cgi?id=173464=edit
sub RunThis is inthis file

sub RunThis calls two times sub Datum

first time witout error 
second time with error

Why ?

-- 
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 142984] Centred Bitmap in page style area is not centred

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142984

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #2 from Regina Henschel  ---
If I enable "Background covers margins", then the reference for the position is
the entire paper size. If I disable that option, then the reference for the
position is the page text area. I think, that behavior is correct.

The page text area is the paper size without margins. It is the area where you
will see the grid when you enable it.

Your problem is not clear 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-commits] core.git: framework/source include/vcl svtools/source

2021-07-08 Thread Caolán McNamara (via logerrit)
 framework/source/uielement/toolbarmanager.cxx |3 ---
 include/vcl/window.hxx|2 +-
 svtools/source/uno/popupwindowcontroller.cxx  |3 ---
 3 files changed, 1 insertion(+), 7 deletions(-)

New commits:
commit 3175a7684982e7812e8071c595395eb3da3035fc
Author: Caolán McNamara 
AuthorDate: Thu Jul 8 14:28:25 2021 +0100
Commit: Caolán McNamara 
CommitDate: Thu Jul 8 22:26:51 2021 +0200

make SetParentToDefaultWindow available from vcl only

rechecked tdf#119390. If I tear off the color popdown in writer, click
in the combobox and shift-tab to put focus in the button (where focus is
more visible) and close the torn off window then focus continues to
return to the main document as wanted.

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

diff --git a/framework/source/uielement/toolbarmanager.cxx 
b/framework/source/uielement/toolbarmanager.cxx
index 0bd0d627ff9d..f08cfe60a6d8 100644
--- a/framework/source/uielement/toolbarmanager.cxx
+++ b/framework/source/uielement/toolbarmanager.cxx
@@ -182,9 +182,6 @@ public:
 delete static_cast< AddonsParams* >( m_pToolBar->GetItemData( 
nItemId ));
 }
 
-// tdf#119390 this will reparent the toolbar, so focus is restored 
from a
-// floating toolbar to the last focused control of the application 
window.
-m_pToolBar->SetParentToDefaultWindow();
 // #i93173# note we can still be in one of the toolbar's handlers
 m_pToolBar->SetSelectHdl( Link() );
 m_pToolBar->SetActivateHdl( Link() );
diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx
index 1cdb347a486e..0deb36dad6fd 100644
--- a/include/vcl/window.hxx
+++ b/include/vcl/window.hxx
@@ -1455,7 +1455,7 @@ public:
  * document window and not the first widget in the current parent of the 
floating
  * window.
 */
-void SetParentToDefaultWindow();
+SAL_DLLPRIVATE void SetParentToDefaultWindow();
 
 
 //  Keyboard access functions
diff --git a/svtools/source/uno/popupwindowcontroller.cxx 
b/svtools/source/uno/popupwindowcontroller.cxx
index 17b432c445e5..8d3efd838bd1 100644
--- a/svtools/source/uno/popupwindowcontroller.cxx
+++ b/svtools/source/uno/popupwindowcontroller.cxx
@@ -80,9 +80,6 @@ void PopupWindowControllerImpl::SetFloatingWindow()
 if( mpFloatingWindow )
 {
 mpFloatingWindow->RemoveEventListener( LINK( this, 
PopupWindowControllerImpl, WindowEventListener ) );
-// tdf#119390 reparent the window, so focus is restored
-// to the last focused control of the application window.
-mpFloatingWindow->SetParentToDefaultWindow();
 mpFloatingWindow.disposeAndClear();
 }
 mpFloatingWindow = mpPopupWindow;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 140953] VBA error message without error

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140953

Harald Langheinrich  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
   Assignee|libreoffice-b...@lists.free |hal71...@gmail.com
   |desktop.org |
 Ever confirmed|1   |0

--- Comment #2 from Harald Langheinrich  ---
Created attachment 173463
  --> https://bugs.documentfoundation.org/attachment.cgi?id=173463=edit
my file mostly working

the program i develop.

What I recognized very lately is a behavior of the debugging program:

in lower right corner you see the the hierarchy of programs. If a userform is
opened or a messagebox is it is not displayed there. 

It happened to me that a messagebox (the sort which can only be answered with
"okonly") is displayed . It Remains open while not answered and the program
continues with the next lines. It does not really wait for the messagebox to be
answered. 

Then a command in the next line opens a new file. The messagebox is sent into
background. So I see the messagebox any more. but I can continue debugging till
I come to an error.

On error program stops and an error message is thrown.
In lower right corner no program is open any more.
So I can correct the error save the new code and restart debugging.
Thinking I have changed the code, I run it, but it runs the old code displaying
the lines of the new code. Now debugging gets very strange . Strange messages
come up 

All this happens because the messagebox is not closed or a userform remains
open. 

It would be helpfull if open userforms and message boxes are close
automatically in case of error 
or displayed in the hierarchy (they might be in the background). 

May I should report this as a new bug or ahs it to do with this one

-- 
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 140115] Fileopening ODT: Slow file opening (8 seconds with 4.4.7.2 nowadays 30 sec)

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140115

BogdanB  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED
 CC||buzea.bog...@libreoffice.or
   ||g

--- Comment #7 from BogdanB  ---
4 seconds in Version: 7.3.0.0.alpha0+ / LibreOffice Community
Build ID: eac5977bfc11797eda356560a5e45c51108ef5a1
CPU threads: 4; OS: Linux 5.8; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

Also 4 seconds in 
Version: 7.1.4.2 / LibreOffice Community
Build ID: a529a4fab45b75fefc5b6226684193eb000654f6
CPU threads: 4; OS: Linux 5.8; UI render: default; VCL: gtk3
Locale: en-US (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


[Libreoffice-bugs] [Bug 139001] Crash in: SwPosition::SwPosition(SwNode const &)

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139001

bmue...@gmx.de changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |FIXED

--- Comment #8 from bmue...@gmx.de ---
I can't reproduce the bug with LO version 7.1.4.2. Thanks.

-- 
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 143268] New: Slow response in document with many tables

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143268

Bug ID: 143268
   Summary: Slow response in document with many tables
   Product: LibreOffice
   Version: 7.0.0.3 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: genericinet+libreoffice@gmail.com

I have a document that contains a large number of tables.  I've finally located
the cause for a severe lag in the response of the document when scrolling or
editing.  Version 6 with this document works fine.  Version 7 has the lag.  I
haven't determined a specific version number where the problem began, but from
what I recall, I think it was with 7.0.0.  

In trying to determine what I could do that might improve the speed, I found
that enabling the Content Navigation View in the Navigator, with the cursor
outside of a table (so that the headings view remains displayed), immediately
caused the response to be as quick as the response on version 6.

I then discovered that because most of the editing is done in tables, the focus
in the Navigator will switch to the Tables navigation and the extreme lag
begins.  Version 6 does not change the focus from the Headings navigation even
if editing inside a table.

I then discovered that in the context menu when right-clicking on the Headings
entry provides an option to disable Outline Tracking.  Would it be possible
that such an option to disable Table Tracking for the Tables view would prevent
the focus from going to the Tables and thereby causing the lag as the program
tries to keep up? 

Content Navigation View can be enabled to only have the headings displayed in
the Navigator, but I do use the various other views also, such as sections and
comments, so I like have them all displayed.

-- 
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 139404] Cannot record Basic macros in Calc

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139404

--- Comment #1 from Tamas  ---
I reported something similar in bug report# 143217. In Windows OS, your
keyboard seems to be locked as soon as you click on Record Macro. To start a
macro (after you clicked on Record) you must click on a command Icon in the
Edit Tool Bar, such as Cut, Paste, Copy, etc. or click on (point to) a cell.
You will be able to record the macro. (However, if you clicked on a cell,
instead of an Icon, the macro will only aplly to that cell). This problem seems
to exist only in the Windows version of Libreoffice.

-- 
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: sfx2/source

2021-07-08 Thread Caolán McNamara (via logerrit)
 sfx2/source/sidebar/TabBar.cxx |8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

New commits:
commit c109e1d1f5965fe03c666fee6c0bd4dd875f29c8
Author: Caolán McNamara 
AuthorDate: Thu Jul 8 13:48:35 2021 +0100
Commit: Caolán McNamara 
CommitDate: Thu Jul 8 20:16:57 2021 +0200

tdf#143146 copy functor and arg before calling function that can delete this

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

diff --git a/sfx2/source/sidebar/TabBar.cxx b/sfx2/source/sidebar/TabBar.cxx
index a233519f4752..b823a7c61b3d 100644
--- a/sfx2/source/sidebar/TabBar.cxx
+++ b/sfx2/source/sidebar/TabBar.cxx
@@ -251,13 +251,17 @@ TabBar::Item::~Item()
 mrTabBar.GetContainer()->move(mxButton.get(), nullptr);
 }
 
-
 IMPL_LINK_NOARG(TabBar::Item, HandleClick, const OString&, void)
 {
+// tdf#143146 copy the functor and arg before calling
+// GrabFocusToDocument which may destroy this object
+auto aDeckActivationFunctor = maDeckActivationFunctor;
+auto sDeckId = msDeckId;
+
 mrTabBar.GrabFocusToDocument();
 try
 {
-maDeckActivationFunctor(msDeckId);
+aDeckActivationFunctor(sDeckId);
 }
 catch(const css::uno::Exception&)
 {} // workaround for #i123198#
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 143267] InterActive .pdf remains active after client has entered personal data and saved the document

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143267

--- Comment #1 from rafael  ---
Created attachment 173462
  --> https://bugs.documentfoundation.org/attachment.cgi?id=173462=edit
Interactive file remains active after client fills it in and saves it.

This attachment was created using LibreOffice to create an interactive .pdf.
The created file is interactive, BUT REMAINS ACTIVE FOLLOWING FILL-IN BY
CLIENT. Thus, client data is insecure. The form has no integrity and cannot
properly be used.

-- 
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 143267] New: InterActive .pdf remains active after client has entered personal data and saved the document

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143267

Bug ID: 143267
   Summary: InterActive .pdf remains active after client has
entered personal data and saved the document
   Product: LibreOffice
   Version: 6.4.7.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rafa...@protonmail.ch

I want to prepare an interactive .pdf so that clients can respond to questions
online and send their data to me.

Creating the interactive .pdf appears very simple. It functions when I prepare
it and mount it on my website. Clients are able to fill in the form fields.

The bug is that when fields are filled in and document saved the form fields
remain "active." Client data can be altered by anyone viewing the form.

I have not been able to locate a setting or a solution to this problem. It is
important because the form has no integrity regarding the client's personal
data.

-- 
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 133627] 6.4.4.2 produces docx that crashes Word from Office 2019

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133627

--- Comment #8 from PMouse  ---
Oops, wrong bug!!!  Sorry, okay, I'll try to check with upstream ASAP!

(In reply to PMouse from comment #7)
> I can't do that very easily.  If it's absolution necessary, I could get to
> it in a few weeks.
> 
> But, I can tell you that the symptoms are gone in
> libreoffice-calc-7.1.4.2-1.fc34.x86_64 . It's fixed, AFAIKT.  Does that help?
> 
> Oh, wait, I marked it resolved on 2021-01-13.  Looks like I actually made
> some notes about it!  Looks like I confirmed it was fixed in 7.1alpha, and
> that was on 2020-06-16. And I marked the issued resolved on 2021-01-13 in
> Fedora 33.  That might not be the exact day, but the fix certainty came to
> F33 some time before that. FWIW.

-- 
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 129988] Crash in: s_stub_releaseInterface

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129988

cpoimbo...@hotmail.com changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #12 from cpoimbo...@hotmail.com ---
Xisco Faulí,

The problem persists.  I'm using LibreOffice 7.1 and my OS is Windows 10 on a
64 bit PC.  I use the Database Wizard and my steps are as follows:
1.I choose Connect to Existing Database and the Microsoft Access Database 2007
option even though the one table database was created with Access 2016.
2.I choose Set up Microsoft Access Connection.
3.I select "city.accdb"
4.I choose Next
5.I Save As "city.odb"

The errors I get are "The connection to the data source 'city' could not be
established" and "The connection could not be created.  Maybe necessary data
provider is not installed.  SQL status HY000"

Then I click on File, and the crash occurs.

-- 
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 133627] 6.4.4.2 produces docx that crashes Word from Office 2019

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133627

--- Comment #7 from PMouse  ---
I can't do that very easily.  If it's absolution necessary, I could get to it
in a few weeks.

But, I can tell you that the symptoms are gone in
libreoffice-calc-7.1.4.2-1.fc34.x86_64 . It's fixed, AFAIKT.  Does that help?

Oh, wait, I marked it resolved on 2021-01-13.  Looks like I actually made some
notes about it!  Looks like I confirmed it was fixed in 7.1alpha, and that was
on 2020-06-16. And I marked the issued resolved on 2021-01-13 in Fedora 33. 
That might not be the exact day, but the fix certainty came to F33 some time
before that. FWIW.

-- 
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 116030] EDITING: Unlooped Animated GIF Reverts to First Frame after Playback in Impress

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116030

--- Comment #5 from Buovjaga  ---
Still repro

NixOS
Version: 7.1.4.2 / LibreOffice Community
Build ID: 10(Build:2)
CPU threads: 16; OS: Linux 5.13; UI render: default; VCL: gtk3
Locale: fi-FI (fi_FI.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


Re: [Libreoffice-qa] ESC meeting minutes: 2021-07-08

2021-07-08 Thread Stephan Bergmann

On 08/07/2021 17:01, Noel Grandin wrote:

I'm playing with the idea of saying:

     Everything inside the soffice binary __must__ use OWeakObject and 
css::uno::WeakReference to do any weak stuff.


That still leaves the dreaded scenario of a C++ extension not using 
OWeakObject---whether or not that's a scenario to worry about.


___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: vcl/source

2021-07-08 Thread Caolán McNamara (via logerrit)
 vcl/source/window/window.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3fa9e73a5b07c828ac6377fc3b40d3c71d4b3a41
Author: Caolán McNamara 
AuthorDate: Thu Jul 8 14:36:28 2021 +0100
Commit: Caolán McNamara 
CommitDate: Thu Jul 8 17:46:09 2021 +0200

tidy up comment formatting

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

diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index fa029f89400f..61bcc8ce57a0 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -1803,7 +1803,7 @@ void Window::KeyInput( const KeyEvent& rKEvt )
 KeyCode cod = rKEvt.GetKeyCode ();
 bool autoacc = ImplGetSVData()->maNWFData.mbAutoAccel;
 
-// do not respond to accelerators unless Alt or Ctrl is held */
+// do not respond to accelerators unless Alt or Ctrl is held
 if (cod.GetCode () >= 0x200 && cod.GetCode () <= 0x219)
 {
 if (autoacc && cod.GetModifier () != KEY_MOD2 && !(cod.GetModifier() & 
KEY_MOD1))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 123070] EDITING: Moving fields in Query designer GUI isn't shown with an arrow any more

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123070

--- Comment #10 from Rodeo Kingsman  ---
Good article. I think I may be a little to late to vote though. For concrete
contractors visit https://arvadaconcretecontractors.com/

-- 
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: sd/source

2021-07-08 Thread Caolán McNamara (via logerrit)
 sd/source/ui/view/drviewsj.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 36e1f1f5e7da5563ba721874e15a92b874ae1c5f
Author: Caolán McNamara 
AuthorDate: Thu Jul 8 14:15:12 2021 +0100
Commit: Caolán McNamara 
CommitDate: Thu Jul 8 17:40:58 2021 +0200

Resolves: tdf#143153 null-deref on grouping fit-to-frame obj with another

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

diff --git a/sd/source/ui/view/drviewsj.cxx b/sd/source/ui/view/drviewsj.cxx
index 47cbb175ddf4..9eebdbc57c29 100644
--- a/sd/source/ui/view/drviewsj.cxx
+++ b/sd/source/ui/view/drviewsj.cxx
@@ -271,7 +271,8 @@ void DrawViewShell::GetMenuStateSel( SfxItemSet  )
 if( SfxItemState::DEFAULT == rSet.GetItemState( 
SID_OUTLINE_TEXT_AUTOFIT ) )
 {
 const SdrObject* pObj = rMarkList.GetMark(0)->GetMarkedSdrObj();
-const bool bSet = 
pObj->GetMergedItemSet().GetItem(SDRATTR_TEXT_FITTOSIZE)->GetValue()
 != drawing::TextFitToSizeType_NONE;
+const SdrTextFitToSizeTypeItem* pItem = 
pObj->GetMergedItemSet().GetItem(SDRATTR_TEXT_FITTOSIZE);
+const bool bSet = pItem && pItem->GetValue() != 
drawing::TextFitToSizeType_NONE;
 rSet.Put(SfxBoolItem(SID_OUTLINE_TEXT_AUTOFIT, bSet));
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: svx/uiconfig

2021-07-08 Thread Caolán McNamara (via logerrit)
 svx/uiconfig/ui/sidebartextcolumnspanel.ui |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

New commits:
commit 321436d7bb9087a92e8f69cc948bb3ebb23049c7
Author: Caolán McNamara 
AuthorDate: Thu Jul 8 14:05:56 2021 +0100
Commit: Caolán McNamara 
CommitDate: Thu Jul 8 17:40:05 2021 +0200

Related: tdf#143153 these are GtkBox properties not GtkGrid ones

nothing to do with the crash though

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

diff --git a/svx/uiconfig/ui/sidebartextcolumnspanel.ui 
b/svx/uiconfig/ui/sidebartextcolumnspanel.ui
index 42b93c64f213..47d6fd0977ca 100644
--- a/svx/uiconfig/ui/sidebartextcolumnspanel.ui
+++ b/svx/uiconfig/ui/sidebartextcolumnspanel.ui
@@ -98,9 +98,8 @@
 
   
   
-False
-True
-0
+0
+0
   
 
   
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 143266] New: [ToD] error in menu entry

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143266

Bug ID: 143266
   Summary: [ToD] error in menu entry
   Product: LibreOffice
   Version: 7.3.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: so...@libreoffice.org

location of the string:
https://git.libreoffice.org/core/+/master/cui/inc/tipoftheday.hrc#143

comment in Weblate:
The menu item is actually called "AutoFormat Styles...", see:
https://weblate.documentfoundation.org/translate/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/fi/?checksum=70b35a0f9d3eede4

-- 
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 143265] New: [ToD] Error in option entry

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143265

Bug ID: 143265
   Summary: [ToD] Error in option entry
   Product: LibreOffice
   Version: 7.3.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: so...@libreoffice.org

location of the string:
https://git.libreoffice.org/core/+/master/cui/inc/tipoftheday.hrc#129

comment on Weblate:
This tip of the day is erroneous: there is no User interface entry under this
View dialog. I suggest to replace the source string by: You can change the look
of %PRODUCTNAME via Tools ▸ Options ▸ %PRODUCTNAME ▸ View.

-- 
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 143258] FILEOPEN: text in shape no displayed

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143258

--- Comment #2 from Mike Kaganski  ---
Created attachment 173461
  --> https://bugs.documentfoundation.org/attachment.cgi?id=173461=edit
Minimal flat ODF reproducer

-- 
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 143264] [ToD] inconsistency in %MOD1 usage

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143264

--- Comment #1 from sophie  ---
another one related to another string located at:
https://git.libreoffice.org/core/+/master/cui/inc/tipoftheday.hrc#90

comment on Weblate:
Translators: Note that many European keyboard layouts don't have a dedicated ;
(semicolon) key. So, starting from LibreOffice 7.0, these shortcuts will
instead be %MOD1+, (comma) and Shift+%MOD1+, (comma) for inserting date and
time, respectively. For affected languages, see
https://gerrit.libreoffice.org/c/core/+/94305

and
Just noticed that according to Accelerators.xcu, when using US English user
interface, Shift+Command+semicolon won't insert current time on a Mac - instead
it opens the spelling dialog. And there isn't any other shortcut defined for
inserting current time on Mac, either.

-- 
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 143264] [ToD] inconsistency in %MOD1 usage

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143264

sophie  changed:

   What|Removed |Added

Version|6.3.3.2 release |7.2.0.0 alpha1+
 CC||heiko.tietze@documentfounda
   ||tion.org,
   ||so...@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 143264] New: [ToD] inconsistency in %MOD1 usage

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143264

Bug ID: 143264
   Summary: [ToD] inconsistency in %MOD1 usage
   Product: LibreOffice
   Version: 6.3.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: so...@libreoffice.org

location of the string:
https://git.libreoffice.org/core/+/master/cui/inc/tipoftheday.hrc#87

Comment in Weblate:
Shouldn't this say "%MOD1++" (or rather, "%MOD1+Plus") and "%MOD1+-" (or
"%MOD1+Minus") for consistency's sake?

-- 
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 116030] EDITING: Unlooped Animated GIF Reverts to First Frame after Playback in Impress

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116030

--- Comment #4 from Telesto  ---
Looks OK to me
Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: bd2f2273d83dcca43eb6b465308707efd45e7adf
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 81234] [META] RTF filter issues

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81234
Bug 81234 depends on bug 106070, which changed state.

Bug 106070 Summary: RTF IO open file error
https://bugs.documentfoundation.org/show_bug.cgi?id=106070

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

-- 
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 116851] General Input Output error opening an rtf file

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116851

Miklos Vajna  changed:

   What|Removed |Added

 CC||yanp.b...@gmail.com

--- Comment #14 from Miklos Vajna  ---
*** Bug 106070 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 106070] RTF IO open file error

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106070

Miklos Vajna  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #9 from Miklos Vajna  ---
This is a duplicate of a bug 116851, Julian fixed that one already.

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

-- 
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 143263] New: A cropped animating GIF image is slightly jumping around in presentation mode

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143263

Bug ID: 143263
   Summary: A cropped animating GIF image is slightly jumping
around in presentation mode
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
A cropped animating GIF image is slightly jumping around in presentation mode

Steps to Reproduce:
1. Open the attached file (sour
2. Press F5

Actual Results:
Jumping on canvas

Expected Results:
Stable position


Reproducible: Always


User Profile Reset: No



Additional Info:
Found in
Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: bd2f2273d83dcca43eb6b465308707efd45e7adf
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
LibreOffice 3.3.0 
OOO330m19 (Build:6)
tag libreoffice-3.3.0.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 143255] Crash if I open the Print dialog and click the 'Properties...' button

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143255

Katrin L  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 143255] Crash if I open the Print dialog and click the 'Properties...' button

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143255

Katrin L  changed:

   What|Removed |Added

Crash report or||https://crashreport.libreof
crash signature||fice.org/stats/crash_detail
   ||s/c8fdf7eb-237f-4883-85cb-b
   ||e028aff0f28

-- 
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 143262] GIF image stops animating in edit mode after cropping (does work in presentation mode)

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143262

Telesto  changed:

   What|Removed |Added

Version|7.3.0.0 alpha0+ Master  |4.2.0.4 release

--- Comment #2 from Telesto  ---
Also in
Versie: 4.4.7.2 
Build ID: f3153a8b245191196a4b6b9abd1d0da16eead600
Locale: nl_NL

and in
Versie: 4.2.0.4 
Build ID: 05dceb5d363845f2cf968344d7adab8dcfb2ba71

-- 
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 143255] Crash if I open the Print dialog and click the 'Properties...' button

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143255

--- Comment #2 from Katrin L  ---
Created attachment 173460
  --> https://bugs.documentfoundation.org/attachment.cgi?id=173460=edit
Screenshot of my windows settings you asked for.

I am allowing Windows to select the printer (see attached screenshot).

-- 
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 143262] GIF image stops animating in edit mode after cropping (does work in presentation mode)

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143262

--- Comment #1 from Telesto  ---
Created attachment 173459
  --> https://bugs.documentfoundation.org/attachment.cgi?id=173459=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 143262] New: GIF image stops animating in edit mode after cropping (does work in presentation mode)

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143262

Bug ID: 143262
   Summary: GIF image stops animating in edit mode after cropping
(does work in presentation mode)
   Product: LibreOffice
   Version: 7.3.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
GIF image stops animating in edit mode after cropping (does work in
presentation mode)

Steps to Reproduce:
1. Open the attached file
2. Right click the image and apply a crop

Actual Results:
Still image

Expected Results:
Animating


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: bd2f2273d83dcca43eb6b465308707efd45e7adf
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 81234] [META] RTF filter issues

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81234
Bug 81234 depends on bug 90206, which changed state.

Bug 90206 Summary: RTF & FILESAVE:  Comments lose formatting when saved as rtf 
file
https://bugs.documentfoundation.org/show_bug.cgi?id=90206

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

-- 
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 90206] RTF & FILESAVE: Comments lose formatting when saved as rtf file

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90206

Miklos Vajna  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #4 from Miklos Vajna  ---
I fixed this in 2015, just forgot to search for duplicates.

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

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


Re: ESC meeting minutes: 2021-07-08

2021-07-08 Thread Noel Grandin
> * What’s cooking (Miklos)
>   + Noel looked at UNO-level weak references, performance → found a
> different solution for a11y
>
>
Our a11y is fundamentally slow because it always builds a parallel object
hierarchy of ~everything, UI and document model.

And because it makes extensive use of weak pointers, and ours are even
slower than std::weak_ptr (which is not high performance itself).

Ideally, we should be building the a11y stuff on-demand, but that it just
too deep of a change to be achievable.

I'm playing with the idea of saying:

Everything inside the soffice binary __must__ use OWeakObject and
css::uno::WeakReference to do any weak stuff.

and then I can specialise the weak object implementation into two - one
fast one for everything inside the process, and a slow one for handling
cross-process weak pointers.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice-qa] ESC meeting minutes: 2021-07-08

2021-07-08 Thread Noel Grandin
> * What’s cooking (Miklos)
>   + Noel looked at UNO-level weak references, performance → found a
> different solution for a11y
>
>
Our a11y is fundamentally slow because it always builds a parallel object
hierarchy of ~everything, UI and document model.

And because it makes extensive use of weak pointers, and ours are even
slower than std::weak_ptr (which is not high performance itself).

Ideally, we should be building the a11y stuff on-demand, but that it just
too deep of a change to be achievable.

I'm playing with the idea of saying:

Everything inside the soffice binary __must__ use OWeakObject and
css::uno::WeakReference to do any weak stuff.

and then I can specialise the weak object implementation into two - one
fast one for everything inside the process, and a slow one for handling
cross-process weak pointers.
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: https://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


Re: ESC meeting minutes: 2021-07-08

2021-07-08 Thread Noel Grandin
On Thu, 8 Jul 2021 at 16:29, Miklos Vajna  wrote:

>   8 CppunitTest_sw_core_undogerrit_windows
>   9 CppunitTest_writerperfect_writergerrit_windows
>  22 CppunitTest_sc_uicalc   gerrit_windows
>
>
Can anyone else trigger these? I've tried and I can't seem to get any of
these on my Windows box, despite running them repeatedly.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice-qa] ESC meeting minutes: 2021-07-08

2021-07-08 Thread Noel Grandin
On Thu, 8 Jul 2021 at 16:29, Miklos Vajna  wrote:

>   8 CppunitTest_sw_core_undogerrit_windows
>   9 CppunitTest_writerperfect_writergerrit_windows
>  22 CppunitTest_sc_uicalc   gerrit_windows
>
>
Can anyone else trigger these? I've tried and I can't seem to get any of
these on my Windows box, despite running them repeatedly.
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: https://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


[Libreoffice-bugs] [Bug 134452] Page break disappears after applying table style

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134452

Balázs Sántha  changed:

   What|Removed |Added

 CC||santha.bal...@simonyi.bme.h
   ||u
   Assignee|libreoffice-b...@lists.free |santha.bal...@simonyi.bme.h
   |desktop.org |u

-- 
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 134452] Page break disappears after applying table style

2021-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134452

Balázs Sántha  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

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


ESC meeting minutes: 2021-07-08

2021-07-08 Thread Miklos Vajna
* Present:
+ Olivier, Cloph, Caolan, Gabriel, Stephan, Sophie, Michael W, Eike, Heiko, 
Xisco, Michael S, Hossein, Miklos

* Completed Action Items:
+ Upload a PO file for classification (Cloph)

* Pending Action Items:
+ None

* Release Engineering update (Cloph)
+ 7.2 status: 7.2 rc1 this week (this evening)
  + string freeze, 1 review needed
+ 7.1 status: 7.1.5 rc2 next week
+ Remotes: Android, iOS
+ Android viewer

* Documentation (Olivier)
+ New Help: no news
+ Helpcontents2:
  + New: +1, fixed: 1, Open:248, partial:23
  + Updates and fixes (R. Lima, fitoshido, ohallot, Johnny_M, s. Fanning)
+ Guides
  + Published Getting started guide 7.1 in HTML5 format
 + https://books.libreoffice.org/en/GS71/GS71.html
  + Guides being updated as usual
+ Open question:
  + LO/ODF is “good” between offline file formats (OOXML, ODF or PDF, but 
poor in online export.
  + Can we look into better export of ODF/LO to HTML5 with modern browser 
techniques?
  + Look beyond file export short vision and reach document export to 
online long vision.
+some extensions (unsupported) has the right approach (writer2latex.oxt)
  + ODF spec itself: XHTML export worked in practice (Michael S)

* UX Update (Heiko)
+ Bugzilla (topicUI) statistics
259(259) (topicUI) bugs open, 138(138) (needsUXEval) needs to be 
evaluated by the UXteam
+ Updates:
BZ changes   1 week   1 month   3 months   12 months
 added 12(9) 15(7) 30(7)   74(3)
 commented 59(12)   227(-3)   795(-33)   3564(-72)
   removed  2(1)  6(1) 15(0)   36(2)
  resolved  9(2) 43(-7)   144(-3) 508(-5)
+ top 10 contributors:
  Heiko Tietze made 197 changes in 1 month, and 2345 changes in 1 year
  Foote, V Stuart made 54 changes in 1 month, and 618 changes in 1 year
  Eyal Rozenberg made 29 changes in 1 month, and 112 changes in 1 year
  Telesto made 25 changes in 1 month, and 781 changes in 1 year
  Dieter made 23 changes in 1 month, and 386 changes in 1 year
  Ilmari Lauhakangas made 16 changes in 1 month, and 339 changes in 1 
year
  Max L. made 16 changes in 1 month, and 16 changes in 1 year
  Kaganski, Mike made 14 changes in 1 month, and 182 changes in 1 year
  Roman Kuznetsov made 10 changes in 1 month, and 194 changes in 1 year
  NISZ LibreOffice Team made 9 changes in 1 month, and 22 changes in 1 
year

  + New tickets with needsUXEval Jul/01-08

* [Bug 143249] UI: Buttons to toggle border lines on/off in table
   properties border dialog
  + https://bugs.documentfoundation.org/show_bug.cgi?id=143249
* [Bug 143248] UI: Line width of a border is impossible to tell from GUI
   (in table properties)
  + https://bugs.documentfoundation.org/show_bug.cgi?id=143248
* [Bug 143245] Clicking anywhere in the Description area will trigger
   the Form creation window
  + https://bugs.documentfoundation.org/show_bug.cgi?id=143245
* [Bug 143210] UI: Item View>Toolbars>Customize should open Toolbars
   tab in Customize dialog at once
  + https://bugs.documentfoundation.org/show_bug.cgi?id=143210
* [Bug 143202] A way stop animating gifs on a slide from animating in
   EDIT mode
  + https://bugs.documentfoundation.org/show_bug.cgi?id=143202
* [Bug 143201] A way to identify animating gif images inside a
   presentation (or draw)
  + https://bugs.documentfoundation.org/show_bug.cgi?id=143201
 -> * [Bug 143187] Calc: Delete Tools>Options>LibreOffice Calc>
   Compatibility page
  + https://bugs.documentfoundation.org/show_bug.cgi?id=143187
* [Bug 142750] Text area loses focus when pressing the
  Format Painter button
  + https://bugs.documentfoundation.org/show_bug.cgi?id=142750
* [Bug 143144] (wishlist) "Input list" field: Add confirmation
  dialog in order to prevent lost of data
  + https://bugs.documentfoundation.org/show_bug.cgi?id=143144


* Crash Testing (Caolan)
+ 18(+2) import failure, 9(+1) export failures
+ 0 coverity issues
+ 10 ossfuzz issues
  + big improvement, even some timeouts gone, but new ones always return

* Crash Reporting (Xisco)
   + https://crashreport.libreoffice.org/stats/version/7.0.6.2
 + (+37) 1000 963 979 1143 1052 824 234 0
   + https://crashreport.libreoffice.org/stats/version/7.1.3.2
 + (695) 2858 3553 4687 6349 7105 6534 5427 3679 1730 0
   + https://crashreport.libreoffice.org/stats/version/7.1.4.2
 + (+924) 4028 3104 1968 1590 0
   + 
https://crashreport.libreoffice.org/stats/signature/SalInstanceTreeView::get_drag_source()
- Save as dialog ?
  - SwContentTree::TimerUpdate 

  1   2   3   4   >