[Libreoffice-bugs] [Bug 139580] Writer crash when saving certain documents as .docx or .doc

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139580

Xisco Faulí  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #5 from Xisco Faulí  ---
Issue verified in

Version: 7.0.5.0.0+
Build ID: 36038264400f591a529a18f0b742410e53db73d3
CPU threads: 4; OS: Linux 5.7; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

@Caolán, thanks for fixing this 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


[Libreoffice-bugs] [Bug 121046] EDITING: Rotated Images with 1 bit per pixel are Black in running presentation

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121046

--- Comment #7 from Roman Kuznetsov <79045_79...@mail.ru> ---
still repro in

Version: 7.2.0.0.alpha0+ (x64)
Build ID: 94f6765d6ecc3145fa2d266231124003cf953118
CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL: win
Locale: ru-RU (ru_RU); 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-commits] core.git: idlc/inc

2021-01-13 Thread Stephan Bergmann (via logerrit)
 idlc/inc/astdeclaration.hxx |5 +
 idlc/inc/astinterface.hxx   |5 +
 idlc/inc/astscope.hxx   |5 +
 3 files changed, 15 insertions(+)

New commits:
commit de80c787dba8436ec403126dbec88a6d202a1ad4
Author: Stephan Bergmann 
AuthorDate: Wed Jan 13 23:04:51 2021 +0100
Commit: Stephan Bergmann 
CommitDate: Thu Jan 14 08:42:49 2021 +0100

-Wdeprecated-copy-dtor

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

diff --git a/idlc/inc/astdeclaration.hxx b/idlc/inc/astdeclaration.hxx
index ce8f9740a745..0707dbc57bb0 100644
--- a/idlc/inc/astdeclaration.hxx
+++ b/idlc/inc/astdeclaration.hxx
@@ -63,6 +63,11 @@ public:
 AstDeclaration(NodeType type, const OString& name, AstScope* pScope);
 virtual ~AstDeclaration();
 
+AstDeclaration(AstDeclaration const &) = default;
+AstDeclaration(AstDeclaration &&) = default;
+AstDeclaration & operator =(AstDeclaration const &) = default;
+AstDeclaration & operator =(AstDeclaration &&) = default;
+
 // Data access
 const OString& getLocalName() const
 { return m_localName; }
diff --git a/idlc/inc/astinterface.hxx b/idlc/inc/astinterface.hxx
index 7e3e1e30bad6..03c5f22f5f37 100644
--- a/idlc/inc/astinterface.hxx
+++ b/idlc/inc/astinterface.hxx
@@ -49,6 +49,11 @@ public:
 AstScope* pScope);
 virtual ~AstInterface() override;
 
+AstInterface(AstInterface const &) = default;
+AstInterface(AstInterface &&) = default;
+AstInterface & operator =(AstInterface const &) = default;
+AstInterface & operator =(AstInterface &&) = default;
+
 InheritedInterfaces const & getAllInheritedInterfaces() const
 { return m_inheritedInterfaces; }
 
diff --git a/idlc/inc/astscope.hxx b/idlc/inc/astscope.hxx
index 2e7e258e2312..237b5d0bb82a 100644
--- a/idlc/inc/astscope.hxx
+++ b/idlc/inc/astscope.hxx
@@ -35,6 +35,11 @@ public:
 AstScope(NodeType nodeType);
 virtual ~AstScope();
 
+AstScope(AstScope const&) = default;
+AstScope(AstScope&&) = default;
+AstScope& operator=(AstScope const&) = default;
+AstScope& operator=(AstScope&&) = default;
+
 NodeType getScopeNodeType() const { return m_nodeType; }
 
 AstDeclaration* addDeclaration(AstDeclaration* pDecl);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 121071] FORMATTING - Double Table Borders When Copied from Calc and Pasted in Gmail

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121071

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

   What|Removed |Added

 CC||79045_79...@mail.ru,
   ||mikekagan...@hotmail.com

--- Comment #4 from Roman Kuznetsov <79045_79...@mail.ru> ---
still repro in

Version: 7.2.0.0.alpha0+ (x64)
Build ID: 94f6765d6ecc3145fa2d266231124003cf953118
CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL: win
Locale: ru-RU (ru_RU); UI: en-US
Calc: threaded

but I don't think it's a bug. Excel creates cell borders by different logic. It
has only one border for two adjacent cells. 

And my opinion here it will never "fix" in LibreOffice.

Mike, do you have any thoughts?

-- 
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 103683] PDF export mediabox trimbox cropbox bleedbox artbox

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103683

--- Comment #24 from helpinhomework  ---
Students can now receive electrical engineering assignment help at a very
budget cost from Help In Homework. Our team of experts has all the
qualifications that are needed to do the job and have profound knowledge about
this field. Most of them are pursuing a career in academia or in the corporate
world but have decided to help out students with homework and assignments for
just a nominal price. Their objective in life is that money is important but
what is more important is to strike a balance between work and life. And they
have experience first-hand how difficult it can be to achieve this balance in
academic life. Thus, they are offering their services to students of electrical
engineering to help them overcome some of the stress from their very busy
schedule that requires juggling multiple
tasks.https://helpinhomework.org/electrical-engineering-assignment-help

-- 
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 103683] PDF export mediabox trimbox cropbox bleedbox artbox

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103683

--- Comment #23 from helpinhomework  ---
Students can now receive electrical engineering assignment help at a very
budget cost from Help In Homework. Our team of experts has all the
qualifications that are needed to do the job and have profound knowledge about
this field. Most of them are pursuing a career in academia or in the corporate
world but have decided to help out students with homework and assignments for
just a nominal price. Their objective in life is that money is important but
what is more important is to strike a balance between work and life. And they
have experience first-hand how difficult it can be to achieve this balance in
academic life. Thus, they are offering their services to students of electrical
engineering to help them overcome some of the stress from their very busy
schedule that requires juggling multiple tasks.
https://helpinhomework.org/electrical-engineering-assignment-help

-- 
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 139580] Writer crash when saving certain documents as .docx or .doc

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139580

--- Comment #4 from Commit Notification 
 ---
Xisco Fauli committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/327cd7c9616339a42d477a68392012292556c2d6

tdf#139580: sw_ooxmlexport16: Add unittest

It will be available in 7.2.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-bugs] [Bug 139580] Writer crash when saving certain documents as .docx or .doc

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139580

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:7.0.5|target:7.0.5 target:7.2.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-commits] core.git: sw/qa

2021-01-13 Thread Xisco Fauli (via logerrit)
 sw/qa/extras/ooxmlexport/data/tdf139580.odt |binary
 sw/qa/extras/ooxmlexport/ooxmlexport16.cxx  |7 +++
 2 files changed, 7 insertions(+)

New commits:
commit 327cd7c9616339a42d477a68392012292556c2d6
Author: Xisco Fauli 
AuthorDate: Wed Jan 13 14:06:11 2021 +0100
Commit: Xisco Fauli 
CommitDate: Thu Jan 14 08:37:44 2021 +0100

tdf#139580: sw_ooxmlexport16: Add unittest

Change-Id: I635909b62239e2afb72038c21091b65e22ce8d43
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109227
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/sw/qa/extras/ooxmlexport/data/tdf139580.odt 
b/sw/qa/extras/ooxmlexport/data/tdf139580.odt
new file mode 100644
index ..48224c8dabf9
Binary files /dev/null and b/sw/qa/extras/ooxmlexport/data/tdf139580.odt differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx
index 8c521dcd6c8b..77dda6a55c73 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx
@@ -38,6 +38,13 @@ DECLARE_OOXMLEXPORT_TEST(testTdf138892_noNumbering, 
"tdf138892_noNumbering.docx"
 CPPUNIT_ASSERT_MESSAGE("Para3: ", 
getProperty(getParagraph(3), "NumberingStyleName").isEmpty());
 }
 
+DECLARE_OOXMLEXPORT_TEST(testTdf139580, "tdf139580.odt")
+{
+// Without the fix in place, this test would have crashed at export time
+CPPUNIT_ASSERT_EQUAL(2, getShapes());
+CPPUNIT_ASSERT_EQUAL(1, getPages());
+}
+
 DECLARE_OOXMLEXPORT_TEST(testTdf138953, "croppedAndRotated.odt")
 {
 CPPUNIT_ASSERT_EQUAL(1, getShapes());
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - sd/source

2021-01-13 Thread Miklos Vajna (via logerrit)
 sd/source/ui/slideshow/slideshowimpl.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 0774d315d3151c2cf8b6c01ab1f8c76a52fbb742
Author: Miklos Vajna 
AuthorDate: Fri Jan 8 17:37:20 2021 +0100
Commit: Xisco Fauli 
CommitDate: Thu Jan 14 08:37:02 2021 +0100

tdf#128353 sd slideshow: fix handling of animgifs on slower machines

Regression from commit 3e0092031b73bad107e3122d5d4be2f5bd487744
(tdf#112318 sd opengl: fix lack of initial animation, 2019-04-05), the
problem was that in case a timer adds itself to the end of the scheduler
queue during Scheduler::ProcessEventsToIdle(), then the idle trigger in
SlideshowImpl::updateSlideShow() will never finish.

The intention of invoking idles is to help vcl backends which do the
actual painting in an idle, so actually it's enough to only process
tasks which are already scheduled. That is enough for skia/gtk3/etc and
avoids the problem with the animgifs.

This is only a problem in debug builds or on slower machines: the
animgif from the bugdoc wants to play a frame every 40ms, so in case
processing the current tasks finishes faster than that, then the problem
was not visible.

(cherry picked from commit c33dd70aa7a6a5dc28b99f8af123548b02a77884)

Change-Id: I7487cb9a79e7e5acc0b816eb4744a04559ae26ce
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109107
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/sd/source/ui/slideshow/slideshowimpl.cxx 
b/sd/source/ui/slideshow/slideshowimpl.cxx
index 8d518c65011d..2af2326e612e 100644
--- a/sd/source/ui/slideshow/slideshowimpl.cxx
+++ b/sd/source/ui/slideshow/slideshowimpl.cxx
@@ -1678,7 +1678,8 @@ void SlideshowImpl::updateSlideShow()
 if (::basegfx::fTools::equalZero(fUpdate))
 {
 // Make sure idle tasks don't starve when we don't have to 
wait.
-Scheduler::ProcessEventsToIdle();
+// Don't process any events generated after invoking the 
function.
+Application::Reschedule(/*bHandleAllCurrentEvents=*/true);
 }
 else
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 137694] Forms: Combobox or Listbox in a Tablecontrol: Entering by Mouse will destroy Navigation by Key

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137694

--- Comment #5 from Commit Notification 
 ---
Caolán McNamara committed a patch related to this issue.
It has been pushed to "libreoffice-7-0":

https://git.libreoffice.org/core/commit/55e2721e1ea6b8db7c92e5bb304ec1fb2c3cf068

tdf#137694 let tab switch between cells

It will be available in 7.0.5.

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-bugs] [Bug 137694] Forms: Combobox or Listbox in a Tablecontrol: Entering by Mouse will destroy Navigation by Key

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137694

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:7.1.0|target:7.1.0 target:7.0.5

-- 
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: Branch 'libreoffice-7-1' - oox/source sd/qa

2021-01-13 Thread Miklos Vajna (via logerrit)
 oox/source/drawingml/diagram/diagramlayoutatoms.cxx |5 -
 sd/qa/unit/data/pptx/smartart-pyramid-1child.pptx   |binary
 sd/qa/unit/import-tests-smartart.cxx|   15 +++
 3 files changed, 19 insertions(+), 1 deletion(-)

New commits:
commit ecee82e2368002fc3cabc00ec89ec7d757c48c64
Author: Miklos Vajna 
AuthorDate: Tue Jan 12 10:13:14 2021 +0100
Commit: Xisco Fauli 
CommitDate: Thu Jan 14 08:36:42 2021 +0100

oox smartart: fix crash in pyra algorithm with a single child shape

Regression from commit 14a56533ff2c9c859d22cd3039ada75b99e94bc0
(SmartArt Pyramid: Now lays out shapes, 2018-07-10), the added pyramid
algorithm by first centering the topmost children, then decrementing the
horizontal postion of each additional shape, with the end goal of having
0 horizontal position of the last children.

This means that simply avoiding the division in the 1-child case leads
to correct results, because in this case the only child is also the last
child at the sane time.

(cherry picked from commit f2e04fe98e313cffa3f98d55eae641415142a431)

Change-Id: Ifd0027e9616b0909dbfde43e1555427b50de4dad
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109183
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/oox/source/drawingml/diagram/diagramlayoutatoms.cxx 
b/oox/source/drawingml/diagram/diagramlayoutatoms.cxx
index 5071a7bd52d4..c76a3d0bd9ab 100644
--- a/oox/source/drawingml/diagram/diagramlayoutatoms.cxx
+++ b/oox/source/drawingml/diagram/diagramlayoutatoms.cxx
@@ -1617,7 +1617,10 @@ void AlgAtom::layoutShape(const ShapePtr& rShape, const 
std::vector&
 for (auto & aCurrShape : rShape->getChildren())
 {
 aCurrShape->setPosition(aCurrPos);
-aCurrPos.X -=  aChildSize.Height/(nCount-1);
+if (nCount > 1)
+{
+aCurrPos.X -= aChildSize.Height / (nCount - 1);
+}
 aChildSize.Width += aChildSize.Height;
 aCurrShape->setSize(aChildSize);
 aCurrShape->setChildSize(aChildSize);
diff --git a/sd/qa/unit/data/pptx/smartart-pyramid-1child.pptx 
b/sd/qa/unit/data/pptx/smartart-pyramid-1child.pptx
new file mode 100644
index ..42e43c54bbc4
Binary files /dev/null and b/sd/qa/unit/data/pptx/smartart-pyramid-1child.pptx 
differ
diff --git a/sd/qa/unit/import-tests-smartart.cxx 
b/sd/qa/unit/import-tests-smartart.cxx
index 2a3dcda08983..36007bc7c6e5 100644
--- a/sd/qa/unit/import-tests-smartart.cxx
+++ b/sd/qa/unit/import-tests-smartart.cxx
@@ -76,6 +76,7 @@ public:
 void testRotation();
 void testTextAutoRotation();
 void testPyramid();
+void testPyramidOneChild();
 void testChevron();
 void testCycle();
 void testvenndiagram();
@@ -127,6 +128,7 @@ public:
 CPPUNIT_TEST(testRotation);
 CPPUNIT_TEST(testTextAutoRotation);
 CPPUNIT_TEST(testPyramid);
+CPPUNIT_TEST(testPyramidOneChild);
 CPPUNIT_TEST(testChevron);
 CPPUNIT_TEST(testCycle);
 CPPUNIT_TEST(testHierarchy);
@@ -451,6 +453,19 @@ void SdImportTestSmartArt::testPyramid()
 //FIXME : so far this only introduce the test document, but the actual 
importer was not fixed yet.
 }
 
+void SdImportTestSmartArt::testPyramidOneChild()
+{
+// Load a document with a pyra algorithm in it.
+// Without the accompanying fix in place, this test would have crashed.
+sd::DrawDocShellRef xDocShRef = loadURL(
+
m_directories.getURLFromSrc(u"sd/qa/unit/data/pptx/smartart-pyramid-1child.pptx"),
 PPTX);
+uno::Reference xGroup(getShapeFromPage(0, 0, xDocShRef), 
uno::UNO_QUERY);
+uno::Reference xText(getChildShape(getChildShape(xGroup, 
1), 1),
+   uno::UNO_QUERY);
+// Verify that the text of the only child is imported correctly.
+CPPUNIT_ASSERT_EQUAL(OUString("A"), xText->getString());
+}
+
 void SdImportTestSmartArt::testChevron()
 {
 sd::DrawDocShellRef xDocShRef
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - svx/uiconfig

2021-01-13 Thread Caolán McNamara (via logerrit)
 svx/uiconfig/ui/paralinespacingcontrol.ui |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit ba75b766a619d0ad5cf1a127433eee9de564a03c
Author: Caolán McNamara 
AuthorDate: Wed Jan 13 19:36:03 2021 +
Commit: Xisco Fauli 
CommitDate: Thu Jan 14 08:36:20 2021 +0100

tdf#139567 set no-show-all to True

so changing child vis to false before parent is shown 'sticks' as
a final visibility of false

Change-Id: Ieee4e4c7f7bddf6204c61ca788d316d52ef5a6dc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109247
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/svx/uiconfig/ui/paralinespacingcontrol.ui 
b/svx/uiconfig/ui/paralinespacingcontrol.ui
index 107b6257e486..52f84e516139 100644
--- a/svx/uiconfig/ui/paralinespacingcontrol.ui
+++ b/svx/uiconfig/ui/paralinespacingcontrol.ui
@@ -162,6 +162,7 @@
 
   
 True
+True
 True
 adjustment1
   
@@ -174,6 +175,7 @@
   
 True
 True
+True
 True
 adjustment2
 2
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - sc/qa sc/source

2021-01-13 Thread Tibor Nagy (via logerrit)
 sc/qa/unit/data/xlsx/tdf113013.xlsx|binary
 sc/qa/unit/subsequent_filters-test.cxx |   26 ++
 sc/source/filter/oox/extlstcontext.cxx |   13 +
 3 files changed, 35 insertions(+), 4 deletions(-)

New commits:
commit 40cb04a088e4fcf2b76232d080b3a5aaf5f5a675
Author: Tibor Nagy 
AuthorDate: Wed Jan 6 12:23:32 2021 +0100
Commit: Xisco Fauli 
CommitDate: Thu Jan 14 08:35:52 2021 +0100

tdf#113013 XLSX import: fix "Formula is" type conditional formatting

rule when the formula contains a reference to another worksheet.

Change-Id: I873fad97a88df64e885fef20d4259ef6bfeaa06b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108850
Tested-by: Jenkins
Tested-by: László Németh 
Reviewed-by: László Németh 
(cherry picked from commit fcd96df8f648439ea191d8c2070e8b21ff0b1001)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109124
Reviewed-by: Xisco Fauli 

diff --git a/sc/qa/unit/data/xlsx/tdf113013.xlsx 
b/sc/qa/unit/data/xlsx/tdf113013.xlsx
new file mode 100644
index ..25e6276e7fbb
Binary files /dev/null and b/sc/qa/unit/data/xlsx/tdf113013.xlsx differ
diff --git a/sc/qa/unit/subsequent_filters-test.cxx 
b/sc/qa/unit/subsequent_filters-test.cxx
index ce65fc6684cf..3d5621da963d 100644
--- a/sc/qa/unit/subsequent_filters-test.cxx
+++ b/sc/qa/unit/subsequent_filters-test.cxx
@@ -106,6 +106,7 @@ public:
 virtual void tearDown() override;
 
 //ods, xls, xlsx filter tests
+void testCondFormatFormulaIsXLSX();
 void testCondFormatBeginsAndEndsWithXLSX();
 void testExtCondFormatXLSX();
 void testUpdateCircleInMergedCellODS();
@@ -298,6 +299,7 @@ public:
 void testDeleteCirclesInRowAndCol();
 
 CPPUNIT_TEST_SUITE(ScFiltersTest);
+CPPUNIT_TEST(testCondFormatFormulaIsXLSX);
 CPPUNIT_TEST(testCondFormatBeginsAndEndsWithXLSX);
 CPPUNIT_TEST(testExtCondFormatXLSX);
 CPPUNIT_TEST(testUpdateCircleInMergedCellODS);
@@ -534,6 +536,30 @@ void testRangeNameImpl(const ScDocument& rDoc)
 
 }
 
+void ScFiltersTest::testCondFormatFormulaIsXLSX()
+{
+ScDocShellRef xDocSh = loadDoc(u"tdf113013.", FORMAT_XLSX);
+CPPUNIT_ASSERT_MESSAGE("Failed to load tdf113013.xlsx", xDocSh.is());
+
+ScDocument& rDoc = xDocSh->GetDocument();
+
+// "Formula is" condition
+ScConditionalFormat* pFormatB1 = rDoc.GetCondFormat(1, 0, 0);
+CPPUNIT_ASSERT(pFormatB1);
+ScConditionalFormat* pFormatA2 = rDoc.GetCondFormat(0, 1, 0);
+CPPUNIT_ASSERT(pFormatA2);
+
+ScRefCellValue aCellB1(rDoc, ScAddress(1, 0, 0));
+OUString aCellStyleB1 = pFormatB1->GetCellStyle(aCellB1, ScAddress(1, 0, 
0));
+CPPUNIT_ASSERT(!aCellStyleB1.isEmpty());
+
+ScRefCellValue aCellA2(rDoc, ScAddress(0, 1, 0));
+OUString aCellStyleA2 = pFormatA2->GetCellStyle(aCellA2, ScAddress(0, 1, 
0));
+CPPUNIT_ASSERT(!aCellStyleA2.isEmpty());
+
+xDocSh->DoClose();
+}
+
 void ScFiltersTest::testCondFormatBeginsAndEndsWithXLSX()
 {
 ScDocShellRef xDocSh = loadDoc("tdf120749.", FORMAT_XLSX);
diff --git a/sc/source/filter/oox/extlstcontext.cxx 
b/sc/source/filter/oox/extlstcontext.cxx
index 53cd7b385100..fda1a0449e5e 100644
--- a/sc/source/filter/oox/extlstcontext.cxx
+++ b/sc/source/filter/oox/extlstcontext.cxx
@@ -153,26 +153,31 @@ ContextHandlerRef 
ExtConditionalFormattingContext::onCreateContext(sal_Int32 nEl
 eOperator =  CondFormatBuffer::convertToInternalOperator(aToken);
 return this;
 }
-else if(aType == "containsText")
+else if (aType == "containsText")
 {
 eOperator = ScConditionMode::ContainsText;
 return this;
 }
-else if(aType == "notContainsText")
+else if (aType == "notContainsText")
 {
 eOperator = ScConditionMode::NotContainsText;
 return this;
 }
-else if(aType == "beginsWith")
+else if (aType == "beginsWith")
 {
 eOperator = ScConditionMode::BeginsWith;
 return this;
 }
-else if(aType == "endsWith")
+else if (aType == "endsWith")
 {
 eOperator = ScConditionMode::EndsWith;
 return this;
 }
+else if (aType == "expression")
+{
+eOperator = ScConditionMode::Direct;
+return this;
+}
 else
 {
 SAL_WARN("sc", "unhandled XLS14_TOKEN(cfRule) with type: " << 
aType);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - svx/source

2021-01-13 Thread Regina Henschel (via logerrit)
 svx/source/svdraw/svdpagv.cxx |   18 ++
 1 file changed, 14 insertions(+), 4 deletions(-)

New commits:
commit 6bb252e26ce1aeb3949c64ec6f0bef502a6a459d
Author: Regina Henschel 
AuthorDate: Fri Jan 8 18:26:38 2021 +0100
Commit: Xisco Fauli 
CommitDate: Thu Jan 14 08:35:36 2021 +0100

tdf#137083 consider negative width in DrawPageViewGrid

SdrPageView::DrawPageViewGrid is called too for a ScDrawPage of a
RTL-sheet. In that case both the width of the SdrPage and the left
edge of the passed rectangle are negative. The x-values for drawing
the grid were wrong and a right-to-left sheet did not show the grid.
The patch adds a case distinction with correct x-values for case RTL.

Change-Id: I6d0c15bf7bbe8aff6ab2e72a440ba81f2e0e2281
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108989
Tested-by: Jenkins
Reviewed-by: Regina Henschel 
(cherry picked from commit 7635a475130a0e9e3b0dded853348659d07a00d7)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109119
Reviewed-by: Xisco Fauli 

diff --git a/svx/source/svdraw/svdpagv.cxx b/svx/source/svdraw/svdpagv.cxx
index 0db7711890e0..c793d453734f 100644
--- a/svx/source/svdraw/svdpagv.cxx
+++ b/svx/source/svdraw/svdpagv.cxx
@@ -439,10 +439,20 @@ void SdrPageView::DrawPageViewGrid(OutputDevice& rOut, 
const tools::Rectangle& r
 tools::Long nWrX=0;
 tools::Long nWrY=0;
 Point aOrg(aPgOrg);
-tools::Long x1=GetPage()->GetLeftBorder()+1+nWrX;
-tools::Long x2=GetPage()->GetWidth()-GetPage()->GetRightBorder()-1+nWrY;
-tools::Long y1=GetPage()->GetUpperBorder()+1+nWrX;
-tools::Long y2=GetPage()->GetHeight()-GetPage()->GetLowerBorder()-1+nWrY;
+tools::Long x1 = 0;
+tools::Long x2 = 0;
+if (GetPage()->GetWidth() < 0) // ScDrawPage of RTL sheet
+{
+x1 = GetPage()->GetWidth() + GetPage()->GetLeftBorder() + 1;
+x2 = - GetPage()->GetRightBorder() - 1;
+}
+else
+{
+x1 = GetPage()->GetLeftBorder() + 1;
+x2 = GetPage()->GetWidth() - GetPage()->GetRightBorder() - 1;
+}
+tools::Long y1 = GetPage()->GetUpperBorder() + 1;
+tools::Long y2 = GetPage()->GetHeight() - GetPage()->GetLowerBorder() - 1;
 const SdrPageGridFrameList* 
pFrames=GetPage()->GetGridFrameList(this,nullptr);
 
 sal_uInt16 nGridPaintCnt=1;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - cui/source svx/source

2021-01-13 Thread Jim Raykowski (via logerrit)
 cui/source/tabpages/paragrph.cxx|6 ++
 svx/source/sidebar/paragraph/ParaLineSpacingControl.cxx |2 +-
 2 files changed, 3 insertions(+), 5 deletions(-)

New commits:
commit bb1ad6209de5433fc9f5848539d937f14cc215ce
Author: Jim Raykowski 
AuthorDate: Mon Jan 11 13:34:05 2021 -0900
Commit: Xisco Fauli 
CommitDate: Thu Jan 14 08:35:15 2021 +0100

tdf#83618 Make line spacing values agree crash fix

The intent of this patch is to fix the crash reported at https://
bugzilla.redhat.com/show_bug.cgi?id=1913828 by reverting changes made to
cui/source/tabpages/paragraph.cxx in commit
849b837d1a3b185a8dd893a8f6eaed53605bcab1 and changing the change made to
svx/source/sidebar/paragraph/ParaLineSpacingControl.cxx to use the
already available pointer to the current SfxViewFrame instead of calling
the SfxViewFrame::Current function again.

Change-Id: I0c440c576c2afe4fb98ed54d51d91ea16a7f902a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109113
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/cui/source/tabpages/paragrph.cxx b/cui/source/tabpages/paragrph.cxx
index 6ad843bdc9b3..eaa0daf23cfe 100644
--- a/cui/source/tabpages/paragrph.cxx
+++ b/cui/source/tabpages/paragrph.cxx
@@ -51,8 +51,6 @@
 #include 
 #include 
 
-#include 
-
 const sal_uInt16 SvxStdParagraphTabPage::pStdRanges[] =
 {
 SID_ATTR_PARA_LINESPACE,// 10033
@@ -232,7 +230,7 @@ bool SvxStdParagraphTabPage::FillItemSet( SfxItemSet* 
rOutSet )
m_xLineDistAtMetricBox->get_value_changed_from_saved() ) )
 {
 nWhich = GetWhich( SID_ATTR_PARA_LINESPACE );
-MapUnit eUnit = SfxViewFrame::Current()->GetPool().GetMetric( nWhich );
+MapUnit eUnit = pPool->GetMetric( nWhich );
 SvxLineSpacingItem aSpacing(
 static_cast(GetItemSet().Get( nWhich )) 
);
 
@@ -722,7 +720,7 @@ void SvxStdParagraphTabPage::SetLineSpacing_Impl
 const SvxLineSpacingItem 
 )
 {
-MapUnit eUnit = SfxViewFrame::Current()->GetPool().GetMetric( 
rAttr.Which() );
+MapUnit eUnit = GetItemSet().GetPool()->GetMetric( rAttr.Which() );
 
 switch( rAttr.GetLineSpaceRule() )
 {
diff --git a/svx/source/sidebar/paragraph/ParaLineSpacingControl.cxx 
b/svx/source/sidebar/paragraph/ParaLineSpacingControl.cxx
index 3066d8f08e32..2efea182c0d4 100644
--- a/svx/source/sidebar/paragraph/ParaLineSpacingControl.cxx
+++ b/svx/source/sidebar/paragraph/ParaLineSpacingControl.cxx
@@ -115,7 +115,7 @@ void ParaLineSpacingControl::Initialize()
 
 if( eState >= SfxItemState::DEFAULT )
 {
-MapUnit eUnit = SfxViewFrame::Current()->GetPool().GetMetric( 
currSPItem->Which() );
+MapUnit eUnit = pCurrent->GetPool().GetMetric(currSPItem->Which());
 meLNSpaceUnit = eUnit;
 
 switch( currSPItem->GetLineSpaceRule() )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-7-0' - include/svtools svtools/source

2021-01-13 Thread Caolán McNamara (via logerrit)
 include/svtools/editbrowsebox.hxx |2 ++
 svtools/source/brwbox/ebbcontrols.cxx |8 
 2 files changed, 10 insertions(+)

New commits:
commit 55e2721e1ea6b8db7c92e5bb304ec1fb2c3cf068
Author: Caolán McNamara 
AuthorDate: Fri Aug 14 16:42:32 2020 +0100
Commit: Aron Budea 
CommitDate: Thu Jan 14 08:34:44 2021 +0100

tdf#137694 let tab switch between cells

Change-Id: I12806e2afc022c079d9db758973b8d1bfc0c7107
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100752
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 
(cherry picked from commit 3dac8855e93e09fab9d66f6cc4126a106ed44952)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108584
Reviewed-by: Aron Budea 

diff --git a/include/svtools/editbrowsebox.hxx 
b/include/svtools/editbrowsebox.hxx
index 04c931d82fdd..a1a38353637e 100644
--- a/include/svtools/editbrowsebox.hxx
+++ b/include/svtools/editbrowsebox.hxx
@@ -324,6 +324,8 @@ namespace svt
 {
 }
 virtual bool ControlHasFocus() const = 0;
+protected:
+DECL_LINK(KeyInputHdl, const KeyEvent&, bool);
 };
 
 //= ComboBoxControl
diff --git a/svtools/source/brwbox/ebbcontrols.cxx 
b/svtools/source/brwbox/ebbcontrols.cxx
index e402f0a42a40..c38025d0a13e 100644
--- a/svtools/source/brwbox/ebbcontrols.cxx
+++ b/svtools/source/brwbox/ebbcontrols.cxx
@@ -22,6 +22,7 @@
 #include 
 #include 
 #include 
+#include "datwin.hxx"
 
 namespace svt
 {
@@ -33,6 +34,7 @@ namespace svt
 {
 m_xWidget->set_entry_width_chars(1); // so a smaller than default 
width can be used
 m_xWidget->connect_changed(LINK(this, ComboBoxControl, SelectHdl));
+m_xWidget->connect_key_press(LINK(this, ControlBase, KeyInputHdl));
 }
 
 void ComboBoxControl::dispose()
@@ -109,6 +111,11 @@ namespace svt
 GetComboBox().save_value();
 }
 
+IMPL_LINK(ControlBase, KeyInputHdl, const KeyEvent&, rKEvt, bool)
+{
+return 
static_cast(GetParent())->GetParent()->ProcessKey(rKEvt);
+}
+
 //= ListBoxControl
 ListBoxControl::ListBoxControl(vcl::Window* pParent)
 : ControlBase(pParent, "svt/ui/listcontrol.ui", "ListControl")
@@ -116,6 +123,7 @@ namespace svt
 {
 m_xWidget->set_size_request(42, -1); // so a later narrow size request 
can stick
 m_xWidget->connect_changed(LINK(this, ListBoxControl, SelectHdl));
+m_xWidget->connect_key_press(LINK(this, ControlBase, KeyInputHdl));
 }
 
 void ListBoxControl::dispose()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - sw/CppunitTest_sw_core_doc.mk sw/qa writerfilter/source

2021-01-13 Thread Miklos Vajna (via logerrit)
 sw/CppunitTest_sw_core_doc.mk  |1 +
 sw/qa/core/doc/data/textbox-zorder.docx|binary
 sw/qa/core/doc/doc.cxx |   16 
 writerfilter/source/dmapper/GraphicHelpers.cxx |   14 ++
 4 files changed, 31 insertions(+)

New commits:
commit a4a301c67f4de992d2f4bc66721abd21ebd67494
Author: Miklos Vajna 
AuthorDate: Mon Jan 11 21:03:34 2021 +0100
Commit: Xisco Fauli 
CommitDate: Thu Jan 14 08:34:42 2021 +0100

tdf#138995 DOCX import: fix handling of textbox zorders

Regression from commit d379d18666aa42031359ca8eb34b0021960347ae (oox:
import WPS shape with text as shape with textbox, 2014-06-18), the
problem was that a textbox's shape + textframe are internally 2 sdr
objects, so once GraphicZOrderHelper knows the current shape should be
on top of a shape+frame pair, it should suggest a larger ZOrder.

This is necessary till there is no setter version of
SwTextBoxHelper::getOrdNum(), which would allow import filters to ignore
this complexity, but that would be a larger change.

(cherry picked from commit 200cd2b99bee18962a970edc5d059286f6c3ea0e)

Change-Id: Ibbb1bcd9301eb369f25f211120f62be7c59b0fd2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109184
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/sw/CppunitTest_sw_core_doc.mk b/sw/CppunitTest_sw_core_doc.mk
index ba2555099e3b..934ccf8eee6f 100644
--- a/sw/CppunitTest_sw_core_doc.mk
+++ b/sw/CppunitTest_sw_core_doc.mk
@@ -24,6 +24,7 @@ $(eval $(call gb_CppunitTest_use_libraries,sw_core_doc, \
 editeng \
 sal \
 sfx \
+svxcore \
 sw \
swqahelper \
 test \
diff --git a/sw/qa/core/doc/data/textbox-zorder.docx 
b/sw/qa/core/doc/data/textbox-zorder.docx
new file mode 100644
index ..d5263f8bbd6b
Binary files /dev/null and b/sw/qa/core/doc/data/textbox-zorder.docx differ
diff --git a/sw/qa/core/doc/doc.cxx b/sw/qa/core/doc/doc.cxx
index f3bb4508189b..1bd9b4207444 100644
--- a/sw/qa/core/doc/doc.cxx
+++ b/sw/qa/core/doc/doc.cxx
@@ -113,6 +113,22 @@ CPPUNIT_TEST_FIXTURE(SwCoreDocTest, 
testLocaleIndependentTemplate)
 ErrorRegistry::Reset();
 }
 
+CPPUNIT_TEST_FIXTURE(SwCoreDocTest, testTextBoxZOrder)
+{
+SwDoc* pDoc = createSwDoc(DATA_DIRECTORY, "textbox-zorder.docx");
+SwFrameFormats& rFormats = *pDoc->GetSpzFrameFormats();
+CPPUNIT_ASSERT_EQUAL(static_cast(3), rFormats.size());
+const SwFrameFormat* pEllipse = rFormats[2];
+const SdrObject* pEllipseShape = pEllipse->FindRealSdrObject();
+// Make sure we test the right shape.
+CPPUNIT_ASSERT_EQUAL(OUString("Shape3"), pEllipseShape->GetName());
+// Without the accompanying fix in place, this test would have failed with:
+// - Expected: 2
+// - Actual  : 1
+// i.e. the ellipse was under the frame of the shape-frame pair, not on 
top of it.
+CPPUNIT_ASSERT_EQUAL(static_cast(2), 
pEllipseShape->GetOrdNum());
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/writerfilter/source/dmapper/GraphicHelpers.cxx 
b/writerfilter/source/dmapper/GraphicHelpers.cxx
index 0bd7354fd962..d4fc4b9a8c09 100644
--- a/writerfilter/source/dmapper/GraphicHelpers.cxx
+++ b/writerfilter/source/dmapper/GraphicHelpers.cxx
@@ -295,6 +295,20 @@ sal_Int32 GraphicZOrderHelper::findZOrder( sal_Int32 
relativeHeight, bool bOldSt
 return 0;
 --it;
 itemZOrderOffset = 1; // after the topmost
+
+// Check if this shape has a textbox. If so, the textbox will have its 
own ZOrder, so
+// suggest a larger offset.
+bool bTextBox = false;
+uno::Reference xShape = it->second;
+uno::Reference xInfo = 
xShape->getPropertySetInfo();
+if (xInfo->hasPropertyByName("TextBox"))
+{
+xShape->getPropertyValue("TextBox") >>= bTextBox;
+}
+if (bTextBox)
+{
+++itemZOrderOffset;
+}
 }
 // SwXFrame::getPropertyValue throws uno::RuntimeException
 // when its GetFrameFormat() returns nullptr
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: sc/qa

2021-01-13 Thread Xisco Fauli (via logerrit)
 sc/qa/uitest/calc_tests2/dataform.py |2 --
 sc/qa/uitest/calc_tests2/tdf54018.py |7 ++-
 sc/qa/uitest/calc_tests3/tdf57274.py |9 ++---
 sc/qa/uitest/calc_tests3/tdf62267.py |8 +---
 sc/qa/uitest/calc_tests3/tdf63805.py |9 ++---
 sc/qa/uitest/calc_tests3/tdf65856.py |8 +---
 sc/qa/uitest/calc_tests3/tdf68290.py |6 +-
 sc/qa/uitest/calc_tests3/tdf69981.py |8 +---
 sc/qa/uitest/calc_tests4/tdf118207.py|7 +--
 sc/qa/uitest/calc_tests4/tdf85403.py |6 +-
 sc/qa/uitest/calc_tests4/tdf85979.py |7 ++-
 sc/qa/uitest/calc_tests4/tdf86253.py |9 +
 sc/qa/uitest/calc_tests4/tdf89958.py |7 ++-
 sc/qa/uitest/calc_tests4/tdf99208.py |7 ++-
 sc/qa/uitest/calc_tests4/tdf99627.py |8 ++--
 sc/qa/uitest/calc_tests6/tdf107267.py|9 +
 sc/qa/uitest/calc_tests7/tdf123052.py|6 +-
 sc/qa/uitest/calc_tests7/tdf124896.py|9 +
 sc/qa/uitest/calc_tests7/tdf91425.py |   10 +-
 sc/qa/uitest/chart/chartDataLabels.py|9 +
 sc/qa/uitest/chart/chartGrid.py  |9 +
 sc/qa/uitest/chart/chartGrids.py |9 +
 sc/qa/uitest/chart/chartLegend.py|9 +
 sc/qa/uitest/chart/chartTitles.py|9 +
 sc/qa/uitest/chart/chartWall.py  |8 +---
 sc/qa/uitest/chart/chartXAxis.py |9 +
 sc/qa/uitest/chart/chartYAxis.py |9 +
 sc/qa/uitest/chart/tdf123013.py  |9 +
 sc/qa/uitest/chart/tdf123231.py  |8 +---
 sc/qa/uitest/chart/tdf123520.py  |9 +
 sc/qa/uitest/chart/tdf124111.py  |9 +
 sc/qa/uitest/chart/tdf129587.py  |7 +--
 sc/qa/uitest/chart/tdf133630.py  |7 +--
 sc/qa/uitest/chart/tdf46885.py   |7 +--
 sc/qa/uitest/chart/tdf62349.py   |7 +--
 sc/qa/uitest/chart/tdf93506_trendline.py |9 +
 sc/qa/uitest/chart/tdf96432.py   |8 +---
 sc/qa/uitest/chart/tdf99069.py   |   10 +-
 sc/qa/uitest/conditional_format/tdf100793.py |8 +---
 sc/qa/uitest/conditional_format/tdf105544.py |8 +---
 sc/qa/uitest/conditional_format/tdf118206.py |7 +--
 sc/qa/uitest/conditional_format/tdf81696.py  |   10 ++
 sc/qa/uitest/conditional_format/tdf96453.py  |7 +--
 sc/qa/uitest/function_wizard/tdf123479.py|7 +--
 sc/qa/uitest/goalSeek/goalSeek.py|9 +
 sc/qa/uitest/goalSeek/tdf37341.py|7 +--
 sc/qa/uitest/goalSeek/tdf43693.py|7 +--
 sc/qa/uitest/key_f4/tdf102525.py |   10 +++---
 sc/qa/uitest/manual_tests/calc.py|   12 +---
 sc/qa/uitest/pageFormat/tdf123508.py |8 +---
 sc/qa/uitest/range_name/tdf119954.py |9 +
 sc/qa/uitest/search_replace/replace.py   |7 +--
 sc/qa/uitest/search_replace/tdf132783.py |7 +--
 sc/qa/uitest/search_replace/tdf35020.py  |9 +
 sc/qa/uitest/search_replace/tdf39959.py  |9 +
 sc/qa/uitest/search_replace/tdf44861.py  |8 +---
 sc/qa/uitest/solver/solver.py|7 +--
 sc/qa/uitest/sort/tdf49531.py|6 +-
 sc/qa/uitest/statistics/regression.py|8 +---
 sc/qa/uitest/statistics/tdf76731.py  |9 ++---
 sc/qa/uitest/textCase/textCase.py|6 +-
 61 files changed, 71 insertions(+), 417 deletions(-)

New commits:
commit 4418f099661033702b8fb94572bd0a1bfecbd55b
Author: Xisco Fauli 
AuthorDate: Wed Jan 13 16:35:28 2021 +0100
Commit: Xisco Fauli 
CommitDate: Thu Jan 14 08:34:22 2021 +0100

uitest: sc: factor out common code ( part 2 )

Change-Id: Ia2a707f1df513e067c8e34b263ad336fed6d14dd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109235
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/sc/qa/uitest/calc_tests2/dataform.py 
b/sc/qa/uitest/calc_tests2/dataform.py
index 0ffe0e70d2c1..fedbebc3cd52 100644
--- a/sc/qa/uitest/calc_tests2/dataform.py
+++ b/sc/qa/uitest/calc_tests2/dataform.py
@@ -6,9 +6,7 @@
 #
 from uitest.framework import UITestCase
 from libreoffice.uno.propertyvalue import mkPropertyValues
-import org.libreoffice.unotest
 
-#dataformdialog.ui
 class dataform(UITestCase):
 def test_dataform(self):
 calc_doc = self.ui_test.create_doc_in_start_center("calc")
diff --git a/sc/qa/uitest/calc_tests2/tdf54018.py 
b/sc/qa/uitest/calc_tests2/tdf54018.py
index b1d31e7515c9..ea9fc2994e2e 100644
--- a/sc/qa/uitest/calc_tests2/tdf54018.py
+++ b/sc/qa/uitest/calc_tests2/tdf54018.py

[Libreoffice-bugs] [Bug 139553] Filesave DOC: Most pages missing when opened with MS Word

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139553

Timur  changed:

   What|Removed |Added

   Keywords||filter:doc
Version|unspecified |7.0.4.2 release
Summary|Most pages missing when |Filesave DOC: Most pages
   |opened with MS Word |missing when opened with MS
   ||Word

-- 
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 79357] Trend line can't be added by the Insert menu

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79357

--- Comment #10 from Karyn Chase  ---
It is very easy to add a trend line in the insert menu only 2D charts. If you
are required further information and implementation about it then visit
https://essayreviewuniverce.com/ here you will get the information about it as
well as about MS Office.

-- 
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 139599] Error in parsing the space before paragraph and applying data in MSO text paragraph

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139599

nd101  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |f...@nd.com.cn
   |desktop.org |

--- Comment #1 from nd101  ---
Created attachment 168866
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168866=edit
There is a PPTX file that sets the space before the text segment

There is a PPTX file that sets the space before the text segment

-- 
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 139599] New: Error in parsing the space before paragraph and applying data in MSO text paragraph

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139599

Bug ID: 139599
   Summary: Error in parsing the space before paragraph and
applying data in MSO text paragraph
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: f...@nd.com.cn

Description:
In Microsoft PowerPoint, the space before the paragraph under the paragraph
attribute of the text has a set value, and the values seen after opening in
libreoffice are inconsistent.

Steps to Reproduce:
1.Open the PPTX file with the space before the text segment in LibreOffice
2.In LibreOffice, the spacing before the paragraph under the paragraph
attribute of the text is consistent with MSO
3.

Actual Results:
The space before the text paragraph is inconsistent with MSO

Expected Results:
The spacing before the paragraph of text is consistent with MSO


Reproducible: Always


User Profile Reset: No



Additional Info:
none

-- 
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: vcl/osx

2021-01-13 Thread Noel Grandin (via logerrit)
 vcl/osx/saldata.cxx |   25 +++--
 1 file changed, 3 insertions(+), 22 deletions(-)

New commits:
commit 0918eade90e19dd8e9a246446dcb9463c6c7f7cc
Author: Noel Grandin 
AuthorDate: Wed Jan 13 20:25:11 2021 +0200
Commit: Noel Grandin 
CommitDate: Thu Jan 14 07:46:51 2021 +0100

remove unnecessary macos cursor code

certainly on my Catalina macOS install it makes no difference
with or without this code. I could have sworn it was
necessary back when I added it, but since I'm going on
snippets of hacking scattered around the net (because Apple
's documentation is rather lacking), who knows.

Change-Id: I8a66a5179ab7ca8138e54a57564b8d453848c0e3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109241
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/vcl/osx/saldata.cxx b/vcl/osx/saldata.cxx
index 7a9f7b42dcfe..9c3f04dbbc7b 100644
--- a/vcl/osx/saldata.cxx
+++ b/vcl/osx/saldata.cxx
@@ -135,9 +135,9 @@ NSImage* load_icon_by_name(const OUString& rIconName)
 auto length = xMemStm->TellEnd();
 NSData * byteData = [NSData dataWithBytes:data length:length];
 NSBitmapImageRep * imageRep = [NSBitmapImageRep imageRepWithData:byteData];
-NSSize imageSize = NSMakeSize(CGImageGetWidth([imageRep CGImage]), 
CGImageGetHeight([imageRep CGImage]));
+//NSSize imageSize = NSMakeSize(imageRep.size;
 
-NSImage * image = [[NSImage alloc] initWithSize:imageSize];
+NSImage * image = [[NSImage alloc] initWithSize:imageRep.size];
 [image addRepresentation:imageRep];
 return image;
 }
@@ -248,26 +248,7 @@ NSCursor* SalData::getCursor( PointerStyle i_eStyle )
 }
 
 NSImage* theImage = load_icon_by_name(aIconName);
-assert ([theImage size].width == 256 || [theImage size].width == 128 || 
[theImage size].width == 32);
-if ([theImage size].width == 256 || [theImage size].width == 128)
-{
-// If we have a 256x256 or 128x128 image, generate scaled versions of 
it.
-// This will result in macOS picking a reasonably sized image for 
different screen dpi.
-NSSize cursorSize = NSMakeSize(32,32);
-NSImage *multiResImage = [[NSImage alloc] initWithSize:cursorSize];
-for (int scale = 1; scale <= 4; scale++) {
-NSAffineTransform *xform = [[NSAffineTransform alloc] init];
-[xform scaleBy:scale];
-id hints = @{ NSImageHintCTM: xform };
-CGImageRef rasterCGImage = [theImage 
CGImageForProposedRect:nullptr context:nil hints:hints];
-NSBitmapImageRep *rep = [[NSBitmapImageRep alloc] 
initWithCGImage:rasterCGImage];
-[rep setSize:cursorSize];
-[multiResImage addRepresentation:rep];
-}
-pCurs = [[NSCursor alloc] initWithImage: multiResImage hotSpot: 
aHotSpot];
-}
-else
-pCurs = [[NSCursor alloc] initWithImage: theImage hotSpot: aHotSpot];
+pCurs = [[NSCursor alloc] initWithImage: theImage hotSpot: aHotSpot];
 
 maCursors[ i_eStyle ] = pCurs;
 return pCurs;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-01-13 Thread Stephan Bergmann (via logerrit)
 idlc/source/scanner.l |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 8b4f13e152acac20930db13fd4ec4f3d31627c09
Author: Stephan Bergmann 
AuthorDate: Wed Jan 13 21:34:46 2021 +0100
Commit: Stephan Bergmann 
CommitDate: Thu Jan 14 07:35:37 2021 +0100

loplugin:unsignedcompare

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

diff --git a/idlc/source/scanner.l b/idlc/source/scanner.l
index 660e01588960..7e3423fa8dc5 100644
--- a/idlc/source/scanner.l
+++ b/idlc/source/scanner.l
@@ -29,6 +29,7 @@
 #include 
 #include 
 
+#include 
 #include 
 
 #if defined _MSC_VER
@@ -137,7 +138,7 @@ static int asciiToInteger(char const * s, sal_Int64  * 
sval, sal_uInt64 * uval)
 *sval = 0;
 }
 return IDL_INTEGER_LITERAL;
-} else if (val <= static_cast< sal_uInt64 >(SAL_MAX_INT64)) {
+} else if (val <= o3tl::make_unsigned(SAL_MAX_INT64)) {
 *sval = static_cast< sal_Int64 >(val);
 return IDL_INTEGER_LITERAL;
 } else {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-01-13 Thread Stephan Bergmann (via logerrit)
 vcl/source/gdi/CommonSalLayout.cxx |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 499e3a738a4bd2df70d2bc3e1d0708b9dae0ae14
Author: Stephan Bergmann 
AuthorDate: Wed Jan 13 20:48:29 2021 +0100
Commit: Stephan Bergmann 
CommitDate: Thu Jan 14 07:35:05 2021 +0100

Use o3tl::temporary in one more call to OUString::iterateCodePoints

...similar to 0701aca589b819b845d08ea60263ad89718cfd7f "Use o3tl::temporary 
in
calls to OUString::iterateCodePoints", after
6ce3e7b615193f610add5428d2157f31600dec52 "Verify o3tl::temporary of a copied
lvalue works as expected" has been covered

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

diff --git a/vcl/source/gdi/CommonSalLayout.cxx 
b/vcl/source/gdi/CommonSalLayout.cxx
index 998e07169c51..7f557c73b314 100644
--- a/vcl/source/gdi/CommonSalLayout.cxx
+++ b/vcl/source/gdi/CommonSalLayout.cxx
@@ -25,6 +25,7 @@
 
 #include 
 
+#include 
 #include 
 #include 
 #include 
@@ -555,8 +556,8 @@ bool GenericSalLayout::LayoutText(ImplLayoutArgs& rArgs, 
const SalLayoutGlyphs*
 if (bInCluster)
 nGlyphFlags |= GlyphItemFlags::IS_IN_CLUSTER;
 
-sal_Int32 indexUtf16 = nCharPos;
-sal_UCS4 aChar = rArgs.mrStr.iterateCodePoints(, 0);
+sal_UCS4 aChar
+= 
rArgs.mrStr.iterateCodePoints(::temporary(sal_Int32(nCharPos)), 0);
 
 if (u_getIntPropertyValue(aChar, UCHAR_GENERAL_CATEGORY) == 
U_NON_SPACING_MARK)
 nGlyphFlags |= GlyphItemFlags::IS_DIACRITIC;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: external/boost

2021-01-13 Thread Stephan Bergmann (via logerrit)
 external/boost/0001-Fix-usage-of-deprecated-Boost.Bind-features.patch.2 |   48 
++
 external/boost/UnpackedTarball_boost.mk |3 
 2 files changed, 51 insertions(+)

New commits:
commit 3f2ba9af5dfb740320a6410e9f660129ec115728
Author: Stephan Bergmann 
AuthorDate: Wed Jan 13 14:37:47 2021 +0100
Commit: Stephan Bergmann 
CommitDate: Thu Jan 14 07:33:22 2021 +0100

external/boost: Silence Boost bind deprecation warning

> In file included from desktop/source/lib/lokinteractionhandler.cxx:22:
> In file included from 
external/boost/include/boost/property_tree/json_parser.hpp:30:
> In file included from 
workdir/UnpackedTarball/boost/boost/property_tree/json_parser.hpp:16:
> In file included from 
workdir/UnpackedTarball/boost/boost/property_tree/json_parser/detail/read.hpp:13:
> In file included from 
workdir/UnpackedTarball/boost/boost/property_tree/json_parser/detail/parser.hpp:7:
> In file included from external/boost/include/boost/bind.hpp:30:
> workdir/UnpackedTarball/boost/boost/bind.hpp:36:1: warning: The practice 
of declaring the Bind placeholders (_1, _2, ...) in the global namespace is 
deprecated. Please use  + using namespace 
boost::placeholders, or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the 
current behavior. [-W#pragma-messages]
> BOOST_PRAGMA_MESSAGE(
> ^

etc. from within boost/property_tree/json_parser.hpp wherever that is 
included,
since e0f1b5bd94550835c639efda4e4c9a801c78dbe9 "Upgrade external/boost to 
latest
Boost 1.75.0".

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

diff --git 
a/external/boost/0001-Fix-usage-of-deprecated-Boost.Bind-features.patch.2 
b/external/boost/0001-Fix-usage-of-deprecated-Boost.Bind-features.patch.2
new file mode 100644
index ..583a9d905214
--- /dev/null
+++ b/external/boost/0001-Fix-usage-of-deprecated-Boost.Bind-features.patch.2
@@ -0,0 +1,48 @@
+From d1c8825a45a0717e1ad79583d3283b0e5e32831e Mon Sep 17 00:00:00 2001
+From: Andrey Semashev 
+Date: Tue, 28 Apr 2020 22:03:04 +0300
+Subject: [PATCH] Fix usage of deprecated Boost.Bind features
+
+This fixes deprecation warnings generated by boost/bind.hpp.
+
+Also, use a more actual include path for ref.hpp.
+---
+ include/boost/property_tree/json_parser/detail/parser.hpp | 8 
+ 1 file changed, 4 insertions(+), 4 deletions(-)
+
+diff --git a/include/boost/property_tree/json_parser/detail/parser.hpp 
b/include/boost/property_tree/json_parser/detail/parser.hpp
+index 5554990..6cf6363 100644
+--- a/include/boost/property_tree/json_parser/detail/parser.hpp
 b/include/boost/property_tree/json_parser/detail/parser.hpp
+@@ -3,8 +3,8 @@
+ 
+ #include 
+ 
+-#include 
+-#include 
++#include 
++#include 
+ #include 
+ 
+ #include 
+@@ -214,7 +214,7 @@ namespace boost { namespace property_tree {
+ void process_codepoint(Sentinel end, EncodingErrorFn error_fn) {
+ encoding.transcode_codepoint(cur, end,
+ boost::bind(::on_code_unit,
+-boost::ref(callbacks), _1),
++boost::ref(callbacks), boost::placeholders::_1),
+ error_fn);
+ }
+ 
+@@ -517,7 +517,7 @@ namespace boost { namespace property_tree {
+ void feed(unsigned codepoint) {
+ encoding.feed_codepoint(codepoint,
+ boost::bind(::on_code_unit,
+-boost::ref(callbacks), _1));
++boost::ref(callbacks), 
boost::placeholders::_1));
+ }
+ 
+ Callbacks& callbacks;
+-- 
+2.29.2
+
diff --git a/external/boost/UnpackedTarball_boost.mk 
b/external/boost/UnpackedTarball_boost.mk
index db956c916df5..bdacdcd9856e 100644
--- a/external/boost/UnpackedTarball_boost.mk
+++ b/external/boost/UnpackedTarball_boost.mk
@@ -35,6 +35,9 @@ boost_patches += windows-no-utf8-locales.patch.0
 
 boost_patches += msvc2017.patch.0
 
+# Included in boost-1.76.0:
+boost_patches += 0001-Fix-usage-of-deprecated-Boost.Bind-features.patch.2
+
 $(eval $(call gb_UnpackedTarball_UnpackedTarball,boost))
 
 $(eval $(call gb_UnpackedTarball_set_tarball,boost,$(BOOST_TARBALL)))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-01-13 Thread shubham656 (via logerrit)
 include/svx/graphichelper.hxx   |1 
 svx/source/core/graphichelper.cxx   |   41 +++
 svx/source/dialog/compressgraphicdialog.cxx |   41 +--
 sw/source/ui/frmdlg/frmpage.cxx |7 ++
 sw/source/uibase/inc/frmpage.hxx|2 
 sw/uiconfig/swriter/ui/picturepage.ui   |   73 
 6 files changed, 127 insertions(+), 38 deletions(-)

New commits:
commit e7842148f5fa6f9af9312cb4b198a4a5340e3d9b
Author: shubham656 
AuthorDate: Sun Dec 27 03:41:24 2020 +0530
Commit: Jim Raykowski 
CommitDate: Thu Jan 14 07:32:01 2021 +0100

tdf#138843 Show image file type inside image properties dialog

Change-Id: I77adc9c3cc9d3bd62f0f67345b7a025bcad2352a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108361
Tested-by: Jenkins
Reviewed-by: Jim Raykowski 

diff --git a/include/svx/graphichelper.hxx b/include/svx/graphichelper.hxx
index b582de4a2669..2f723b830493 100644
--- a/include/svx/graphichelper.hxx
+++ b/include/svx/graphichelper.hxx
@@ -32,6 +32,7 @@ class SVXCORE_DLLPUBLIC GraphicHelper
 
 public:
 static void GetPreferredExtension( OUString& rExtension, const Graphic& 
rGraphic );
+static OUString GetImageType(const Graphic& rGraphic);
 static OUString ExportGraphic(weld::Window* pWin, const Graphic& rGraphic, 
const OUString& rGraphicName);
 static void SaveShapeAsGraphic(weld::Window* pWin, const 
css::uno::Reference< css::drawing::XShape >& xShape);
 static short HasToSaveTransformedImage(weld::Widget* pWin);
diff --git a/svx/source/core/graphichelper.cxx 
b/svx/source/core/graphichelper.cxx
index fb483c5bfe54..8485b0e0df3b 100644
--- a/svx/source/core/graphichelper.cxx
+++ b/svx/source/core/graphichelper.cxx
@@ -123,6 +123,47 @@ void GraphicHelper::GetPreferredExtension( OUString& 
rExtension, const Graphic&
 rExtension = aExtension;
 }
 
+OUString GraphicHelper::GetImageType(const Graphic& rGraphic)
+{
+OUString aGraphicTypeString = SvxResId(STR_IMAGE_UNKNOWN);
+auto pGfxLink = rGraphic.GetSharedGfxLink();
+if (pGfxLink)
+{
+switch (pGfxLink->GetType())
+{
+case GfxLinkType::NativeGif:
+aGraphicTypeString = SvxResId(STR_IMAGE_GIF);
+break;
+case GfxLinkType::NativeJpg:
+aGraphicTypeString = SvxResId(STR_IMAGE_JPEG);
+break;
+case GfxLinkType::NativePng:
+aGraphicTypeString = SvxResId(STR_IMAGE_PNG);
+break;
+case GfxLinkType::NativeTif:
+aGraphicTypeString = SvxResId(STR_IMAGE_TIFF);
+break;
+case GfxLinkType::NativeWmf:
+aGraphicTypeString = SvxResId(STR_IMAGE_WMF);
+break;
+case GfxLinkType::NativeMet:
+aGraphicTypeString = SvxResId(STR_IMAGE_MET);
+break;
+case GfxLinkType::NativePct:
+aGraphicTypeString = SvxResId(STR_IMAGE_PCT);
+break;
+case GfxLinkType::NativeSvg:
+aGraphicTypeString = SvxResId(STR_IMAGE_SVG);
+break;
+case GfxLinkType::NativeBmp:
+aGraphicTypeString = SvxResId(STR_IMAGE_BMP);
+break;
+default:
+break;
+}
+}
+return aGraphicTypeString;
+}
 namespace {
 
 
diff --git a/svx/source/dialog/compressgraphicdialog.cxx 
b/svx/source/dialog/compressgraphicdialog.cxx
index 856f7aa4e92a..4c244d8eacef 100644
--- a/svx/source/dialog/compressgraphicdialog.cxx
+++ b/svx/source/dialog/compressgraphicdialog.cxx
@@ -29,6 +29,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -121,45 +122,9 @@ void CompressGraphicsDialog::Initialize()
 
 void CompressGraphicsDialog::Update()
 {
-OUString aGraphicTypeString = SvxResId(STR_IMAGE_UNKNOWN);
-
 auto pGfxLink = m_aGraphic.GetSharedGfxLink();
-if (pGfxLink)
-{
-switch (pGfxLink->GetType())
-{
-case GfxLinkType::NativeGif:
-aGraphicTypeString = SvxResId(STR_IMAGE_GIF);
-break;
-case GfxLinkType::NativeJpg:
-aGraphicTypeString = SvxResId(STR_IMAGE_JPEG);
-break;
-case GfxLinkType::NativePng:
-aGraphicTypeString = SvxResId(STR_IMAGE_PNG);
-break;
-case GfxLinkType::NativeTif:
-aGraphicTypeString = SvxResId(STR_IMAGE_TIFF);
-break;
-case GfxLinkType::NativeWmf:
-aGraphicTypeString = SvxResId(STR_IMAGE_WMF);
-break;
-case GfxLinkType::NativeMet:
-aGraphicTypeString = SvxResId(STR_IMAGE_MET);
-break;
-case GfxLinkType::NativePct:
-aGraphicTypeString = SvxResId(STR_IMAGE_PCT);
-break;
- 

[Libreoffice-bugs] [Bug 42989] FORMATTING: Selecting Multiple Cells with Different Formats Show as Same Format and Can't Be Changed as a Group

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42989

--- Comment #14 from techfixya  ---
very informative post. Trying to print a document from canon printer and
printer do not print instead shows an “offline” message. It means
[https://techfixya.com/why-my-canon-printer-cant-print-says-offline-windows-10/]
(canon printer offline windows 10) and behind it must be various reasons

-- 
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: Branch 'distro/collabora/cp-6.4' - sc/source

2021-01-13 Thread Dennis Francis (via logerrit)
 sc/source/ui/docshell/dbdocfun.cxx |   11 +++
 1 file changed, 11 insertions(+)

New commits:
commit 7ef5fcc08f6678ad6a61c46b187e1920fca74d23
Author: Dennis Francis 
AuthorDate: Tue Jan 12 11:20:34 2021 +0530
Commit: Dennis Francis 
CommitDate: Thu Jan 14 06:37:46 2021 +0100

lok: sort: invalidate the row-height cache too

Change-Id: I13e59dc045b23a6ea60cd4cf34dda3166dbf5aad
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109208
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Jan Holesovsky 

diff --git a/sc/source/ui/docshell/dbdocfun.cxx 
b/sc/source/ui/docshell/dbdocfun.cxx
index 810a70883779..cc6bfd16a856 100644
--- a/sc/source/ui/docshell/dbdocfun.cxx
+++ b/sc/source/ui/docshell/dbdocfun.cxx
@@ -594,6 +594,17 @@ bool ScDBDocFunc::Sort( SCTAB nTab, const ScSortParam& 
rSortParam,
 if (comphelper::LibreOfficeKit::isActive())
 {
 SfxViewShell* pSomeViewForThisDoc = rDocShell.GetBestViewShell(false);
+SfxViewShell* pViewShell = SfxViewShell::GetFirst();
+while (pViewShell)
+{
+ScTabViewShell* pTabViewShell = 
dynamic_cast(pViewShell);
+if (pTabViewShell && pTabViewShell->GetDocId() == 
pSomeViewForThisDoc->GetDocId())
+{
+
pTabViewShell->GetViewData().GetLOKHeightHelper(nTab)->invalidateByIndex(nStartRow);
+}
+pViewShell = SfxViewShell::GetNext(*pViewShell);
+}
+
 ScTabViewShell::notifyAllViewsSheetGeomInvalidation(
 pSomeViewForThisDoc, false /* bColumns */, true /* bRows */, true 
/* bSizes*/,
 true /* bHidden */, true /* bFiltered */, true /* bGroups */, 
nTab);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.4' - sc/source

2021-01-13 Thread Dennis Francis (via logerrit)
 sc/source/ui/docshell/dbdocfun.cxx |9 +
 1 file changed, 9 insertions(+)

New commits:
commit cca01519c7e778d3cf9208e642073d939d9fdac0
Author: Dennis Francis 
AuthorDate: Tue Jan 12 11:05:56 2021 +0530
Commit: Dennis Francis 
CommitDate: Thu Jan 14 06:36:51 2021 +0100

lok: send sheetGeometry invalidation after sort

...just for the rows to let the client know the row sizes/spans have
changed.

Change-Id: I26f985ab0ba4eb5b21db5783a8ac3957c64c2f22
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109207
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Jan Holesovsky 

diff --git a/sc/source/ui/docshell/dbdocfun.cxx 
b/sc/source/ui/docshell/dbdocfun.cxx
index 27fb6ee9b692..810a70883779 100644
--- a/sc/source/ui/docshell/dbdocfun.cxx
+++ b/sc/source/ui/docshell/dbdocfun.cxx
@@ -26,6 +26,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -590,6 +591,14 @@ bool ScDBDocFunc::Sort( SCTAB nTab, const ScSortParam& 
rSortParam,
 if (pDBData == rDoc.GetAnonymousDBData( nTab) || 
rDoc.GetDBCollection()->getAnonDBs().has( pDBData))
 pDBData->UpdateFromSortParam( rSortParam);
 
+if (comphelper::LibreOfficeKit::isActive())
+{
+SfxViewShell* pSomeViewForThisDoc = rDocShell.GetBestViewShell(false);
+ScTabViewShell::notifyAllViewsSheetGeomInvalidation(
+pSomeViewForThisDoc, false /* bColumns */, true /* bRows */, true 
/* bSizes*/,
+true /* bHidden */, true /* bFiltered */, true /* bGroups */, 
nTab);
+}
+
 if (nStartRow <= aLocalParam.nRow2)
 {
 ScRange aDirtyRange(
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 139576] Libre Office Calc freezes during routing cell copy/paste/save apparently only when browser Firefox is also open

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139576

--- Comment #2 from 2...@earthlink.net ---
I have been able to experience Calc freezing after just a few copy/paste/save
operations without Firefox also running, but with the Livemail e-mail
application running. Calc freezes with either Firefox or Livemail running.

-- 
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 38187] ENDNOTES: when .odt is exported to PDF, links between anchors and endnotes are missing in both directions

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=38187

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 139302] [UI] Demote Chapter in navigator

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139302

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-ux-advise] [Bug 139302] [UI] Demote Chapter in navigator

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139302

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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


[Libreoffice-bugs] [Bug 139100] UI: Show page width as read only field in Column field table tab

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139100

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 139271] Clear formatting alternative for character style

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139271

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-ux-advise] [Bug 139271] Clear formatting alternative for character style

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139271

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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


[Libreoffice-ux-advise] [Bug 139100] UI: Show page width as read only field in Column field table tab

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139100

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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


[Libreoffice-bugs] [Bug 139099] UI:Search while you type with say 3 suggestions for the fontbox

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139099

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-ux-advise] [Bug 139099] UI:Search while you type with say 3 suggestions for the fontbox

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139099

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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


[Libreoffice-bugs] [Bug 139076] UI: Bulllet and numbering dialog image tab uses low resolution gif images

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139076

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-ux-advise] [Bug 139076] UI: Bulllet and numbering dialog image tab uses low resolution gif images

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139076

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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


[Libreoffice-bugs] [Bug 139062] UI: Selection feedback for inclusion empty line not great

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139062

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-ux-advise] [Bug 139062] UI: Selection feedback for inclusion empty line not great

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139062

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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


[Libreoffice-bugs] [Bug 130098] Is Alt-F12 supposed to be a protected keyboard shortcut? Can change mapping to Alt-F12 -- but change does not appear in menu

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130098

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 139318] chart multiplicator for selected sheets with actualization in the selected sheets

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139318

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 139310] Could not find a JRE!

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139310

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 139308] Wortergänzung Deutsch ohne ä, ö, ü, ß

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139308

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 139553] Most pages missing when opened with MS Word

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139553

--- 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 139553] Most pages missing when opened with MS Word

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139553

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 133992] Application crashes at the first launch

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133992

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 133992] Application crashes at the first launch

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133992

--- Comment #7 from QA Administrators  ---
Dear compuclever_wcb,

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 134889] LO 7.0.0.1 display formating marks introduces foreign characters

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134889

--- Comment #2 from QA Administrators  ---
Dear ken graebe,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 134888] increase font size when click & decrease font size when click

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134888

--- Comment #2 from QA Administrators  ---
Dear M Rehan,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 134879] LibreCalc locks up during spell check. Then it will not recover. Went into constant loop to recover.

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134879

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

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 134863] LO refuses formatting changes for paragraph spacing and indents

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134863

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

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 130803] LibreOffice hangs while starting

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130803

--- Comment #18 from QA Administrators  ---
Dear Nils,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 130435] Crash in: ScRecursionHelper::PushFormulaGroup(ScFormulaCell *)

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130435

--- Comment #3 from QA Administrators  ---
Dear m.a.riosv,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 126311] SPELL: af_ZA.aff quietly broken

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126311

--- Comment #5 from QA Administrators  ---
Dear elmar.braun,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 125176] Long comment should be collapsed

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125176

--- Comment #9 from QA Administrators  ---
Dear Ladislav Nesnera,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 125025] Change system locale affect text break in the chart (zh-TW shows ellipsis)

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125025

--- Comment #5 from QA Administrators  ---
Dear Mark Hung,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 124021] PDF export of spreadsheet forms change fields positions in page

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124021

--- Comment #7 from QA Administrators  ---
Dear Olivier Hallot,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 122615] Envelope address does not go down enough

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122615

--- Comment #12 from QA Administrators  ---
Dear n...@comcast.net,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 120130] No proper language choice possible in context menu neither on bottom (status ?) bar

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120130

--- Comment #16 from QA Administrators  ---
Dear prcwnl,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 82638] Unable to get media sound file (.wav) to play when running slide show

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82638

--- Comment #7 from QA Administrators  ---
Dear lindaloureed,

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 92784] Base: Truncated string in forms wizard

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92784

--- Comment #7 from QA Administrators  ---
Dear proofreader,

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 64641] EDITING: Filtering in Mac-Addressbook is not possible

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64641

--- Comment #22 from QA Administrators  ---
Dear g_winkelmann,

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 62331] EDITING: faulty display of embedded doc form in xls

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62331

--- Comment #11 from QA Administrators  ---
Dear hako,

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 121413] “Save preview image with the document” and doing something else cause changes not to get saved on general - properties window

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121413

--- Comment #3 from QA Administrators  ---
Dear Liad Skiva,

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 101244] doc(x) protected areas – Cursor cannot be disabled

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101244

--- Comment #4 from QA Administrators  ---
Dear Martin Nathansen,

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 130098] Is Alt-F12 supposed to be a protected keyboard shortcut? Can change mapping to Alt-F12 -- but change does not appear in menu

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130098

--- Comment #2 from sdc.bla...@youmail.dk ---
Thanks for explanation Gabor! 

Just looked to see if help pages could be improved.  
Not so clear where.  Maybe:

https://help.libreoffice.org/7.2/en-US/text/shared/01/06140200.html

To assign a key for all applications, choose the %PRODUCTNAME radio button in
the top right corner. Common shortcuts, such as Ctrl+X and Ctrl+P, are found
here. 


Keys assigned for a particular %PRODUCTNAME application override the shortcut
setting in %PRODUCTNAME.



Meanwhile -- in further testing -- I think I can see better what motivated the
original report.  I think there may be a bug with "updating" of the shortcut
keys in the menus. (which I misinterpreted as a "protected" key).

If you are willing, please try these two simple tests to illustrate the
problem:

Test 1

1. Assign "Customize" to Alt-F11, then confirm that Alt-F11 appears in Tools
menu.
2. Use Alt-F11 to open Customize dialog again and assign Alt-F9 to "Customize" 
(now Alt-F9 appears in Tools menu).
3. Use Alt-F11 (or Alt-F9) to open Customize again and Delete Alt-F9

Actual:  no shortcut shown in menu
Expected:  Alt-F11
(same thing happens -- no shortcut shown -- if you delete Alt-F11)

Test 2

1. Assign Options to Alt-F12 (in Writer, shows Alt-F12 in Tools menu)
2. Assign Options to Alt-F9  (see in Tools menu that Options is now Alt-F9)
3. Assign Customize to Alt-F9  (see that Customize and Options are Alt-F9)
(expected Options to show Alt-F12 -- which does actually work).

-- 
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 139583] rotation at two anchored shape is not correctly loaded

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139583

--- Comment #2 from Regina Henschel  ---
It seems, the order of actions makes a difference.
First anchor "To cell (resize)" then rotate 180deg ==> shape is wrong
First rotate 180deg then anchor "To cell (resize)" ==> shape is OK

-- 
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 136631] Attempting to paste content from Notepad to LO .odt can fail

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136631

Apt  changed:

   What|Removed |Added

 Resolution|DUPLICATE   |---
 Ever confirmed|0   |1
 Status|RESOLVED|REOPENED

--- Comment #2 from Apt  ---
While reviewing the bug (Bug 116983) which this bug (Bug 136631) was
subordinated to as a duplicate, I realized that there is a key difference based
on 116983's title. 116983 says, "Paste is sometimes deactivated in (context)
menu even though text is copied to clipboard and CTRL+V functioning," but for
the bug I am experiencing (136631), LO acts as if the clipboard is empty and
CTRL+V does not work. Therefore I am reopening this bug because it is distinct.

-- 
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 139583] rotation at two anchored shape is not correctly loaded

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139583

Regina Henschel  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC||rb.hensc...@t-online.de

--- Comment #1 from Regina Henschel  ---
I would say, it is an export error. The start anchor is in A2 with offset
3.511cm|2.259cm. That is absolute 3.511cm|2.711cm. The end anchor is in B6 with
offset 1.255cm|0.452cm. That is absolute 3.513cm|2.712cm. That is width=0.002cm
and height=0.001cm.

I'll try to find the reason.

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


[Libreoffice-ux-advise] [Bug 139271] Clear formatting alternative for character style

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139271

--- Comment #5 from sdc.bla...@youmail.dk ---
(In reply to Telesto from comment #4)
> Clear Formatting 
Thanks for screenshot and clarification.

To return to your questions.

1.  "Clear formatting" is about Paragraph Styles, therefore, has nothing to do
with "this"  (i.e., resetting character styles).

2.  Do not know why there is a dedicated menu item for "Clear formatting". I
think it has been there since at least 2011.

https://help.libreoffice.org/7.2/en-US/text/shared/02/0201.html

NB. Before proposing a dropdown box for character styles, please see bug 88512
and bug 131761

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


[Libreoffice-bugs] [Bug 139271] Clear formatting alternative for character style

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139271

--- Comment #5 from sdc.bla...@youmail.dk ---
(In reply to Telesto from comment #4)
> Clear Formatting 
Thanks for screenshot and clarification.

To return to your questions.

1.  "Clear formatting" is about Paragraph Styles, therefore, has nothing to do
with "this"  (i.e., resetting character styles).

2.  Do not know why there is a dedicated menu item for "Clear formatting". I
think it has been there since at least 2011.

https://help.libreoffice.org/7.2/en-US/text/shared/02/0201.html

NB. Before proposing a dropdown box for character styles, please see bug 88512
and bug 131761

-- 
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 134159] Text body style re-introduced after save

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134159

sdc.bla...@youmail.dk changed:

   What|Removed |Added

 CC||sdc.bla...@youmail.dk

--- Comment #5 from sdc.bla...@youmail.dk ---
Repro the STR --  but -- this test does not "reveal" the "fragile" or highly
limited nature of this bug. 

Here are three additional tests.  Start with the test file (attachment 162218),
make the change described, then "Clear formatting" before "saving"

test 1.  Add one character in line 5 in the test document (i.e., the line with
the empty Text Body paragraph).  

After saving, "default paragraph style" remains.

test 2.  Add one additional empty Text Body paragraph after the one on line 5.

After saving, only one of the two empty "Text Body" paragraphs returns to Text
Body.

3.  Using the same file as with test 1 or test 2, I then created some new empty
"text body" paragraphs  (and tried to reproduced the "bug"), but now I could
not.  All text body paragraphs (with or without characters) remained "default
paragraph style"

I respectfully suggest that perhaps this ticket should be closed as WF or
reduce the importance to low trivial


tested with:

Version: 7.2.0.0.alpha0+ (x64)
Build ID: 4041c68ea59181f1c4774c356809066d2051db41
CPU threads: 8; OS: Windows 10.0 Build 19041; UI render: Skia/Raster; VCL: win

-- 
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 138727] Help right-hand pane lacks scrolling

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138727

--- Comment #15 from Nick Levinson  ---
At
https://ask.fedoraproject.org/t/is-libreoffice-help-customized-for-fedora/11537
the two replies so far (by one person) cast doubt that LO has a separate Help
format on Fedora than it does for other distros. On their suggestion, I ran dnf
info libreoffice-help-en in the CLI and got this:

Fedora Modular 33 - x86_64 - Updates 69 kB/s |  14 kB 00:00
Fedora 33 - x86_64 - Updates 87 kB/s |  16 kB 00:00
Fedora 33 - x86_64 - Updates   
  654 kB/s |
2.7 MB 00:04
Installed Packages
Name : libreoffice-help-en
Epoch: 1
Version  : 7.0.4.2
Release  : 1.fc33
Architecture : x86_64
Size : 26 M
Source   : libreoffice-7.0.4.2-1.fc33.src.rpm
Repository   : @System
>From repo: updates
Summary  : English help for LibreOffice
URL  : http://www.libreoffice.org/
License  : (MPLv1.1 or LGPLv3+) and LGPLv3 and LGPLv2+ and BSD and (MPLv1.1
or GPLv2 or LGPLv2 or Netscape) and Public Domain and ASL 2.0 and MPLv2.0 and
CC0
Description  : Provides English help for LibreOffice.

When I ran rpm -qa libreoffice-help-en in the CLI, I got this:

libreoffice-help-en-7.0.4.2-1.fc33.x86_64

-- 
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 97087] Timers and idles should have programmer comprehensible, unique names

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97087

--- Comment #30 from Jan-Marek Glogowski  ---
Just some reminder. There is the additional API of SetDebugName, which does the
same as the constructors. So if you use the constructor, check there isn't
already a SetDebugName call. And there is a SetIdleDebugName, which forwards
the name from a subclass.

-- 
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 115817] Correct implementation or remove the Navigation toolbar (a GSOC 2009 contribution see bug 32869) (comment 3 for history and functional intent)

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115817

--- Comment #42 from Commit Notification 
 ---
Jim Raykowski committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/9f9798f07f0b56ae474f31ded671cc8da598d244

tdf#115817 Add navigation recency to Navigate By

It will be available in 7.2.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-bugs] [Bug 115817] Correct implementation or remove the Navigation toolbar (a GSOC 2009 contribution see bug 32869) (comment 3 for history and functional intent)

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115817

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.2.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-commits] core.git: officecfg/registry sw/inc sw/sdi sw/source

2021-01-13 Thread Jim Raykowski (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/WriterGlobalWindowState.xcu | 
   2 
 officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu   | 
   2 
 sw/inc/bitmaps.hlst  | 
   1 
 sw/inc/strings.hrc   | 
   3 
 sw/sdi/_viewsh.sdi   | 
   2 
 sw/sdi/swriter.sdi   | 
   4 -
 sw/source/uibase/inc/workctrl.hxx| 
   3 
 sw/source/uibase/ribbar/workctrl.cxx | 
  36 --
 sw/source/uibase/uiview/view2.cxx| 
   5 -
 sw/source/uibase/uiview/viewmdi.cxx  | 
   5 +
 sw/source/uibase/uiview/viewstat.cxx | 
  13 +++
 sw/source/uibase/wrtsh/navmgr.cxx| 
  25 --
 12 files changed, 63 insertions(+), 38 deletions(-)

New commits:
commit 9f9798f07f0b56ae474f31ded671cc8da598d244
Author: Jim Raykowski 
AuthorDate: Tue Dec 22 22:20:45 2020 -0900
Commit: Jim Raykowski 
CommitDate: Thu Jan 14 00:10:44 2021 +0100

tdf#115817 Add navigation recency to Navigate By

- Adds Recency to Navigate By and when selected, previous and next
scroll controls navigate the navigation manager stack backwards and
forward.

- Removes the code that makes the Navigation tool bar appear when an
entry is added to the navigation manager stack so the tool bar doesn't
appear unless the user explicilty chooses for it to.

- Changes Navigation toolbar context sensitivity to false.

Change-Id: I246dd442b4bc5191324c35f9b91a9cb2eac8e7f4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108316
Tested-by: Jenkins
Reviewed-by: Jim Raykowski 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterGlobalWindowState.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterGlobalWindowState.xcu
index ce94fe093942..68f272c16e3e 100644
--- 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterGlobalWindowState.xcu
+++ 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterGlobalWindowState.xcu
@@ -757,7 +757,7 @@
   false
 
 
-  true
+  false
 
   
   
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu
index f5d7bdf862d3..76373392b26b 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu
@@ -844,7 +844,7 @@
   false
 
 
-  true
+  false
 
   
   
diff --git a/sw/inc/bitmaps.hlst b/sw/inc/bitmaps.hlst
index 4f5d5e985bd4..5b7d13195135 100644
--- a/sw/inc/bitmaps.hlst
+++ b/sw/inc/bitmaps.hlst
@@ -71,6 +71,7 @@
 #define RID_BMP_RIBBAR_ENTRY"sw/res/sr20017.png"
 #define RID_BMP_RIBBAR_FORMULA  "sw/res/sr20018.png"
 #define RID_BMP_RIBBAR_ERROR"sw/res/sr20019.png"
+#define RID_BMP_RIBBAR_RECENCY  "sw/res/sc20244.png"
 
 #define RID_BMP_NAVI_OUTLINE"sw/res/nc2.png"
 #define RID_BMP_NAVI_TABLE  "sw/res/nc20001.png"
diff --git a/sw/inc/strings.hrc b/sw/inc/strings.hrc
index bee9222b4fc8..0d39c2adc9ba 100644
--- a/sw/inc/strings.hrc
+++ b/sw/inc/strings.hrc
@@ -1163,6 +1163,7 @@
 #define ST_INDEX_ENTRY  NC_("ST_INDEX_ENTRY", "Index 
entry")
 #define ST_TABLE_FORMULANC_("ST_TABLE_FORMULA", "Table 
formula")
 #define ST_TABLE_FORMULA_ERROR  NC_("ST_TABLE_FORMULA_ERROR", 
"Wrong table formula")
+#define ST_RECENCY  NC_("ST_RECENCY", "Recency")
 // Strings for the quickhelp of the View-PgUp/Down-Buttons
 #define STR_IMGBTN_TBL_DOWN NC_("STR_IMGBTN_TBL_DOWN", 
"Next table")
 #define STR_IMGBTN_FRM_DOWN NC_("STR_IMGBTN_FRM_DOWN", 
"Next text frame")
@@ -1200,6 +1201,8 @@
 #define STR_IMGBTN_TBLFML_DOWN  NC_("STR_IMGBTN_TBLFML_DOWN", 
"Next table formula")
 #define STR_IMGBTN_TBLFML_ERR_UP
NC_("STR_IMGBTN_TBLFML_ERR_UP", "Previous faulty table formula")
 #define STR_IMGBTN_TBLFML_ERR_DOWN  
NC_("STR_IMGBTN_TBLFML_ERR_DOWN", "Next faulty table formula")
+#define STR_IMGBTN_RECENCY_UP   NC_("STR_IMGBTN_RECENCY_UP", 
"Go back")
+#define STR_IMGBTN_RECENCY_DOWN NC_("STR_IMGBTN_RECENCY_DOWN", 
"Go forward")
 
 #define STR_REDLINE_INSERT  NC_("STR_REDLINE_INSERT", 
"Inserted")
 #define STR_REDLINE_DELETE  

[Libreoffice-bugs] [Bug 41560] [META] Keyboard shortcuts tab of Customization dialog

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=41560
Bug 41560 depends on bug 130098, which changed state.

Bug 130098 Summary: Is Alt-F12 supposed to be a protected keyboard shortcut?  
Can change mapping to Alt-F12 -- but change does not appear in menu
https://bugs.documentfoundation.org/show_bug.cgi?id=130098

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

-- 
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 130098] Is Alt-F12 supposed to be a protected keyboard shortcut? Can change mapping to Alt-F12 -- but change does not appear in menu

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130098

Gabor Kelemen  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG
 CC||kelem...@ubuntu.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-bugs] [Bug 130098] Is Alt-F12 supposed to be a protected keyboard shortcut? Can change mapping to Alt-F12 -- but change does not appear in menu

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130098

--- Comment #1 from Gabor Kelemen  ---
Created attachment 168865
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168865=edit
The Customize dialog with Options

The Alt+F12 binding is a global one, so you have to select the top right
LibreOffice radio button to see it and to change it.

This is not a bug we just have a clumsy dialog here.

-- 
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 88512] TOOLBAR/SIDEBAR: Character style drop down control uno command

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88512

sdc.bla...@youmail.dk changed:

   What|Removed |Added

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

-- 
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 131761] Character Style dropdown widget

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131761

sdc.bla...@youmail.dk changed:

   What|Removed |Added

 CC||sdc.bla...@youmail.dk
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=88
   ||512

-- 
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 139598] New: macosx client on postgresql 10 or above as server return a SCRAM authentication error when using sdbc connection

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139598

Bug ID: 139598
   Summary: macosx client on postgresql 10 or above as server
return a SCRAM authentication error when using sdbc
connection
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: giul...@gmail.com

I try (libreoffice 7.0.4 or 6.4.7 it's the same) to connect from macosx (big
sur or catalina it's the same) as client on postgresql server 10 (or above it's
the same) via sdbc driver and obtain this error:

SQL Status: SCRAM authentication requires libpq version 10 or above
Error code: 1
Couldn't establish database connection to 'sdbc:postgresql:hostaddr=* dbname=*
user=* password=*'
SCRAM authentication requires libpq version 10 or above

The same error does not occur when the postgresql is 9 or lower.
The same error does not occur when os is linux (debian or ubuntu).

Thanks in advance
GAT

-- 
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 139553] Most pages missing when opened with MS Word

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139553

--- Comment #4 from Peter Attwood  ---
Created attachment 168864
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168864=edit
.odt version of same failing file.

LO 7.0.4 or 7.1, same thing.  So I'm attaching the .odt version, which is also
bad the same way.

It exports to PDF just fine in either version.  It's only trouble with MS Word
or when previewed in hotmail or converted to PDF online.

Look, if you don't want to fix it, that's you - but I think you'd be better off
to stop kidding yourself.  What happens when you open the file yourselves?  If
everything is fine, that's most interesting.  If it's not, how can it be OK?

-- 
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 139074] CRASH on Paste from clipboard into dialog or other floating window, paste to document canvas is fine; Windows only?

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139074

--- Comment #43 from V Stuart Foote  ---
(In reply to mwtjunkmail from comment #42)
> Just a process question because I'm ignorant, does fixing something in
> 7.1.0.2 mean that it will also show up approximately at the same time in a
> daily build for 7.2.0.0 alpha?

No, it is already in the daily build. 

While the 7.1.0.2 incremental release will be finalized as scheduled, which
could have been weeks/months away. However, the rc2 build is scheduled for this
week [1], so in this case it is soon.

=-ref-=
[1] https://wiki.documentfoundation.org/ReleasePlan/7.1#7.1.0_release

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


[Libreoffice-bugs] [Bug 139074] CRASH on Paste from clipboard into dialog or other floating window, paste to document canvas is fine; Windows only?

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139074

--- Comment #42 from mwtjunkm...@gmail.com ---
Just a process question because I'm ignorant, does fixing something in 7.1.0.2
mean that it will also show up approximately at the same time in a daily build
for 7.2.0.0 alpha?

-- 
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 139597] SLIDESHOW bug on rewinding a presentation with animation, LO version >= 6.3.6

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139597

--- Comment #1 from Giuseppe Allodi  ---
Created attachment 168863
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168863=edit
Testcase: odp presentation with basic animation effects

-- 
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 139597] New: SLIDESHOW bug on rewinding a presentation with animation, LO version >= 6.3.6

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139597

Bug ID: 139597
   Summary: SLIDESHOW bug on rewinding a presentation with
animation, LO version >= 6.3.6
   Product: LibreOffice
   Version: 6.3.6.2 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: giuseppe.all...@unipr.it

Description:
Since version 6.3.6, a presentation containing basic animation effects (appear
on click) is displayed correctly only in forward direction (objects show up
sequentially in response to a mouse click or a cursor down-right, page-down key
press). When presentation is scrolled back (cursor up-left, page-up key),
however, objects do not disappear one by one in reverse order as expected, but
rather in an unpredictable sequence and often in pairs. When the presentation
direction is reversed again (forward), some objects do not reappear, unless
reversal has occurred at the beginning of a slide. LO versions <= 6.3.2 are
seemingly not affect by this bug, although thin white strips superimposed to
objects occasionally appear on scrolling back.


Steps to Reproduce:
1. Create a one-slide new presentation, create/insert a few objects (any type:
text boxes, images, etc.) and enable "appear on click" animation effect on
them.
2. Start presentation, click mouse or press right, down cursor key to make
objects show up.
3. When the last object has appeared, press left, up cursor or page-up key to
rewind presentation.

Actual Results:
At point 3 (presentation rewind) objects disappear in erratic sequence and
often  in pairs.

Expected Results:
At point 3 (presentation rewind) objects should disappear one by one in reverse
order of their creation. 


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
BUG PRESENT in

Version: 6.3.6.2
Build ID: 3.6.2-4.fc31
CPU threads: 4; OS: Linux 5.3; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

Version: 7.0.4.2
Build ID: dcf040e67528d9187c66b2379df5ea4407429775
CPU threads: 4; OS: Linux 5.0; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

BUG PRESENT also in LO >= 6.4 on Windows 10 (64 bit)


Bug is NOT PRESENT in 

Version: 6.3.2.2
Build ID: 6.3.2.2-1.fc31
CPU threads: 4; OS: Linux 5.3; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); UI-Language: 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 139593] Entering a Draw shape's text places the cursor always at the end on the paragraph. Never on the exact spot clicked

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139593

--- Comment #4 from Telesto  ---
(In reply to V Stuart Foote from comment #3)
> It is a Draw shape. Just the nature of the edit shell for the draw shape.

Extending my inquiry - technically outside of the scope of the bug.. but before
I create another one: 

So what's called a textbox in MSO being a Text Frame in Writer?. Or at least
LibreOffice converts an MSO textbox into a frame. 

And textbox of LibreOffice being converted into a frame on export to DOC/DOCX.
Seems quite an exercise. 
Is there are reason why LibreOffice kind of promoting textbox in shape form.
What's advantage/ idea behind that? 

And the frame having kind of behaving the preferred way (in my perception). 
Yes, LibreOffice frames can hold anchors.. A textbox can't.. And MSO can't
handle anchors inside frames.. It's that the logic for liking textbox in shape
form?

Else kind of inclined to make an Interactive frame (also) TextBox. But well
TextBox being used for years, it would mean renaming 'Textbox" to "Shape
Textbox". And Adding "Frame Textbox". And 'hiding the 'Shape Textbox' insert
shape. 

That interactive frame equals Textbox. Where Interactive frame rather buried in
the GUI, kind of odd from end-user perspective. I think the end-user would
"expect" a Frame Textbox (based on behavior).

But well.. someone will point out this being a bad idea, right?

-- 
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 139595] Thank you 2 Bugs are fixed in calc 7.0.1

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139595

Buovjaga  changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 CC||ilmari.lauhakangas@libreoff
   ||ice.org
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Buovjaga  ---
Cheers, next time you might consider sending an email to the QA list instead of
using the bug tracker: https://wiki.documentfoundation.org/QA/Mailing_List

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


[Libreoffice-bugs] [Bug 139596] New: Unexpected "Merge" option results in Calc

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139596

Bug ID: 139596
   Summary: Unexpected "Merge" option results in Calc
   Product: LibreOffice
   Version: 6.0.6.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hspenc...@yahoo.com

Description:
Merge Cell Problem version LibreOffice Calc Version: 6.0.6.2

The "Merge Cells" mechanism give unexpected results.

During merging cells to contain long strings I discovered several unexpected
results.

1.  Select the cells in the row containing the string then 
Format > Merge Cells > Merge Cells  properly merges cells 

But repeating   Format > Merge Cells shows that the Merge and Center Cells
options is selected.

I expected the Merge Cells option to show selected.

If the selected Merge and Center Cells option is now clicked on, the cells are
split.  This might be proper unchecking of the option to get back to the
pre-merged condition and may be equivalent to the Split Cells option.

2.  Select the cells in the row containing the string then 
Format > Merge Cells > Merge and Center Cells  properly merges centers
cells 

and repeating   Format > Merge Cells shows that the Merge and Center Cells
options is properly selected.  If the selected Merge and Center Cells option
again is clicked on, the cells are again split.  This might be proper
unchecking of the option to get back to the pre-merged condition (equivalent to
the Split Cells option).

But Select the cells in the row containing the string then 
Format > Merge Cells > Merge Cells  now merges and center cells.

I expected the cells to be merged and not centered.

Summary
a.  Clicking on either "Merge" or "Merge and Center" options
results in a checkmark appearing by the "Merge and Center" option.  
b.  Clicking anywhere in the Merge option menu after either
selecting "Merge" or "Merge and Center" appears to be equivalent to clicking on
the "Split Cells" option.
b.  Once "Merge and Center" is inflicted on cells, attempting to
change to "Merge" by "Split" and "Merge" result in "Merge and Center"

Steps to Reproduce:
1.select cell
2.select Format
3.select Merge
4.select Merge

Actual Results:
cells are merged, but "Merge and Centered" is checked

Expected Results:
Either "Merge" is shown selected or only "Split Cells" is allowed.  Other
related problems --- See summary


Reproducible: Always


User Profile Reset: No



Additional Info:
[Information automatically included from LibreOffice]
Locale: en-US
Module: SpreadsheetDocument
[Information guessed from browser]
OS: Linux (All)
OS is 64bit: yes

-- 
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 139595] New: Thank you 2 Bugs are fixed in calc 7.0.1

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139595

Bug ID: 139595
   Summary: Thank you 2 Bugs are fixed in calc 7.0.1
   Product: LibreOffice
   Version: 7.0.1.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: stdula...@netscape.net

Description:
Dear Libreoffice
   Congratulation on LibreOffice Calc.  This year with 7.01 you fixed most
bugs, ie inability to lock it out of protected cell (w right arrow key) in
sheet protection and flashing buttons. You also sped the running of macros up
tremendously. Great work !!!  Just wanted to let you know (Windows 10) 
   
 Steve Dulaney


Actual Results:
Just let you know you fixed 2 buggs

Expected Results:
No more flashing buttons and lock out of protected cells in sheet protection
works . Excellent Thanks


Reproducible: Always


User Profile Reset: No



Additional Info:
no other info

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


[Libreoffice-ux-advise] [Bug 139076] UI: Bulllet and numbering dialog image tab uses low resolution gif images

2021-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139076

--- Comment #5 from andreas_k  ---
> Looks pixelated to me. I thought Andreas has modernized all these images.
> Hasn't he?

all that stuff is hardcoded somewhere, where you can't change them. I have new
bullets which look good, but didn't work. Hours of work with no result.

I'll check maybe I can do something (work is already done).

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


  1   2   3   4   5   >