[Libreoffice-bugs] [Bug 105950] VIEWING: scaling broken on hidpi display - starting in v5.3.0.3

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

--- Comment #9 from Xebana  ---
To paraphrase, say something like https://dltutuapp.com/tutuapp-download/
https://showbox.run/ https://kodi.onl/ "So what you're saying is that she was
acting immature."

-- 
You are receiving this mail because:
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: sc/inc sc/qa sc/source

2021-01-06 Thread Mike Kaganski (via logerrit)
 sc/inc/document.hxx   |2 +-
 sc/inc/table.hxx  |2 +-
 sc/qa/unit/subsequent_export-test.cxx |   12 ++--
 sc/source/core/data/documen3.cxx  |2 +-
 sc/source/core/data/table5.cxx|2 +-
 sc/source/filter/xcl97/xcl97rec.cxx   |2 +-
 sc/source/filter/xml/xmlexprt.cxx |2 +-
 sc/source/ui/docshell/docfunc.cxx |4 ++--
 sc/source/ui/vba/vbaworksheet.cxx |   12 +++-
 sc/source/ui/view/gridwin.cxx |2 +-
 sc/source/ui/view/select.cxx  |2 +-
 sc/source/ui/view/tabview2.cxx|   10 +-
 sc/source/ui/view/tabview3.cxx|2 +-
 sc/source/ui/view/tabvwsh3.cxx|4 ++--
 14 files changed, 31 insertions(+), 29 deletions(-)

New commits:
commit 85b400482dee5c9da2cf83a755ec37ab149b5b20
Author: Mike Kaganski 
AuthorDate: Wed Jan 6 15:02:17 2021 +0300
Commit: Mike Kaganski 
CommitDate: Thu Jan 7 08:55:55 2021 +0100

ScTable::GetProtection and ScDocument::GetTabProtection can be const

Change-Id: Ic30a3fe10ae6206e876a05bed5dc189a9516b452
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108851
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index 1dd00f732cbf..e7ebb3653138 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -900,7 +900,7 @@ public:
 SC_DLLPUBLIC bool  IsDocProtected() const;
 bool   IsDocEditable() const;
 SC_DLLPUBLIC bool  IsTabProtected( SCTAB nTab ) const;
-SC_DLLPUBLICScTableProtection* GetTabProtection( SCTAB nTab ) const;
+SC_DLLPUBLIC const ScTableProtection* GetTabProtection(SCTAB nTab) const;
 SC_DLLPUBLIC void  SetTabProtection(SCTAB nTab, const 
ScTableProtection* pProtect);
 void   CopyTabProtection(SCTAB nTabSrc, SCTAB 
nTabDest);
 
diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx
index 9edf642f6f46..1962290cb862 100644
--- a/sc/inc/table.hxx
+++ b/sc/inc/table.hxx
@@ -381,7 +381,7 @@ public:
 
 boolIsProtected() const;
 voidSetProtection(const ScTableProtection* pProtect);
-ScTableProtection* GetProtection();
+const ScTableProtection* GetProtection() const;
 voidGetUnprotectedCells( ScRangeList& rRangeList ) const;
 
 bool IsEditActionAllowed( sc::ColRowEditAction eAction, SCCOLROW nStart, 
SCCOLROW nEnd ) const;
diff --git a/sc/qa/unit/subsequent_export-test.cxx 
b/sc/qa/unit/subsequent_export-test.cxx
index 8f471b175148..1f8b648d81c6 100644
--- a/sc/qa/unit/subsequent_export-test.cxx
+++ b/sc/qa/unit/subsequent_export-test.cxx
@@ -770,7 +770,7 @@ void ScExportTest::testProtectionKeyODS_UTF16LErtlSHA1()
 ScDocument& rDoc = xShell->GetDocument();
 ScDocProtection *const pDocProt(rDoc.GetDocProtection());
 CPPUNIT_ASSERT(pDocProt->verifyPassword(password));
-ScTableProtection *const pTabProt(rDoc.GetTabProtection(0));
+const ScTableProtection *const pTabProt(rDoc.GetTabProtection(0));
 CPPUNIT_ASSERT(pTabProt->verifyPassword(password));
 
 // we can't assume that the user entered the password; check that we
@@ -793,7 +793,7 @@ void ScExportTest::testProtectionKeyODS_UTF8SHA1()
 ScDocument& rDoc = xShell->GetDocument();
 ScDocProtection *const pDocProt(rDoc.GetDocProtection());
 CPPUNIT_ASSERT(pDocProt->verifyPassword(password));
-ScTableProtection *const pTabProt(rDoc.GetTabProtection(0));
+const ScTableProtection *const pTabProt(rDoc.GetTabProtection(0));
 CPPUNIT_ASSERT(pTabProt->verifyPassword(password));
 
 // we can't assume that the user entered the password; check that we
@@ -816,7 +816,7 @@ void ScExportTest::testProtectionKeyODS_UTF8SHA256ODF12()
 ScDocument& rDoc = xShell->GetDocument();
 ScDocProtection *const pDocProt(rDoc.GetDocProtection());
 CPPUNIT_ASSERT(pDocProt->verifyPassword(password));
-ScTableProtection *const pTabProt(rDoc.GetTabProtection(0));
+const ScTableProtection *const pTabProt(rDoc.GetTabProtection(0));
 CPPUNIT_ASSERT(pTabProt->verifyPassword(password));
 
 // we can't assume that the user entered the password; check that we
@@ -839,7 +839,7 @@ void ScExportTest::testProtectionKeyODS_UTF8SHA256W3C()
 ScDocument& rDoc = xShell->GetDocument();
 ScDocProtection *const pDocProt(rDoc.GetDocProtection());
 CPPUNIT_ASSERT(pDocProt->verifyPassword(password));
-ScTableProtection *const pTabProt(rDoc.GetTabProtection(0));
+const ScTableProtection *const pTabProt(rDoc.GetTabProtection(0));
 CPPUNIT_ASSERT(pTabProt->verifyPassword(password));
 
 // we can't assume that the user entered the password; check that we
@@ -862,7 +862,7 @@ void ScExportTest::testProtectionKeyODS_XL_SHA1()
 ScDocument& rDoc = xShell->GetDocument();
 ScDocProtection *const pDocProt(rDoc.GetDocProtection());
 

[Libreoffice-bugs] [Bug 126570] Animate GIF becomes static while playing an Impress presentation

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

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #19 from Buovjaga  ---
Let's close, then

-- 
You are receiving this mail because:
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 108438] [META] Animated image bugs and enhancements

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

Bug 126570 Summary: Animate GIF becomes static while playing an Impress 
presentation
https://bugs.documentfoundation.org/show_bug.cgi?id=126570

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

-- 
You are receiving this mail because:
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-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138727

--- Comment #11 from Ming Hua  ---
(In reply to Dieter from comment #9)
> (In reply to Nick Levinson from comment #7)
> > Created attachment 168729 [details]
> > offline Help's home page
> 
> This is not the actual Help from LO. It should looks like help in screenshot
It may be a very old version of LO help.  Then again Nick said his system was a
cleanly installed Fedora 32 which shouldn't have such old versions.

Unfortunately I don't know enough about Fedora to either search for which LO
version was shipped with Fedora 32, or tell Nick how to check his LO help
package version.

-- 
You are receiving this mail because:
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: sc/source

2021-01-06 Thread Szymon Kłos (via logerrit)
 sc/source/ui/attrdlg/scdlgfact.cxx |   14 ++
 sc/source/ui/attrdlg/scdlgfact.hxx |   10 +
 sc/source/ui/view/cellsh1.cxx  |  199 -
 3 files changed, 130 insertions(+), 93 deletions(-)

New commits:
commit 41cfe181e3eb4502847fb56955635852e3928d92
Author: Szymon Kłos 
AuthorDate: Mon Nov 30 05:55:55 2020 +0100
Commit: Szymon Kłos 
CommitDate: Thu Jan 7 08:41:17 2021 +0100

Make Pivot table db & external source dialogs async

Change-Id: Iff1a49a9fa04b55ece1aa30259ab57d105883eda
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106996
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Szymon Kłos 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108798
Tested-by: Jenkins

diff --git a/sc/source/ui/attrdlg/scdlgfact.cxx 
b/sc/source/ui/attrdlg/scdlgfact.cxx
index 38102c6d4995..43a1e46ba2e9 100644
--- a/sc/source/ui/attrdlg/scdlgfact.cxx
+++ b/sc/source/ui/attrdlg/scdlgfact.cxx
@@ -107,6 +107,11 @@ short AbstractScDataPilotDatabaseDlg_Impl::Execute()
 return m_xDlg->run();
 }
 
+bool AbstractScDataPilotDatabaseDlg_Impl::StartExecuteAsync(AsyncContext )
+{
+return weld::DialogController::runAsync(m_xDlg, rCtx.maEndDialogFn);
+}
+
 short AbstractScDataPilotSourceTypeDlg_Impl::Execute()
 {
 return m_xDlg->run();
@@ -122,6 +127,11 @@ short AbstractScDataPilotServiceDlg_Impl::Execute()
 return m_xDlg->run();
 }
 
+bool 
AbstractScDataPilotServiceDlg_Impl::StartExecuteAsync(VclAbstractDialog::AsyncContext
 )
+{
+return weld::DialogController::runAsync(m_xDlg, rCtx.maEndDialogFn);
+}
+
 short AbstractScDeleteCellDlg_Impl::Execute()
 {
 return m_xDlg->run();
@@ -987,7 +997,7 @@ VclPtr 
ScAbstractDialogFactory_Impl::CreateScCon
 
 VclPtr 
ScAbstractDialogFactory_Impl::CreateScDataPilotDatabaseDlg(weld::Window* 
pParent)
 {
-return 
VclPtr::Create(std::make_unique(pParent));
+return 
VclPtr::Create(std::make_shared(pParent));
 }
 
 VclPtr 
ScAbstractDialogFactory_Impl::CreateScDataPilotSourceTypeDlg(
@@ -999,7 +1009,7 @@ VclPtr 
ScAbstractDialogFactory_Impl::CreateScD
 VclPtr 
ScAbstractDialogFactory_Impl::CreateScDataPilotServiceDlg(weld::Window* pParent,
 const 
std::vector& rServices)
 {
-return 
VclPtr::Create(std::make_unique(pParent,
 rServices));
+return 
VclPtr::Create(std::make_shared(pParent,
 rServices));
 }
 
 VclPtr 
ScAbstractDialogFactory_Impl::CreateScDeleteCellDlg(weld::Window* pParent,
diff --git a/sc/source/ui/attrdlg/scdlgfact.hxx 
b/sc/source/ui/attrdlg/scdlgfact.hxx
index ec995f5302ae..0364e904c6eb 100644
--- a/sc/source/ui/attrdlg/scdlgfact.hxx
+++ b/sc/source/ui/attrdlg/scdlgfact.hxx
@@ -164,13 +164,14 @@ public:
 
 class AbstractScDataPilotDatabaseDlg_Impl  :public 
AbstractScDataPilotDatabaseDlg
 {
-std::unique_ptr m_xDlg;
+std::shared_ptr m_xDlg;
 public:
-explicit 
AbstractScDataPilotDatabaseDlg_Impl(std::unique_ptr p)
+explicit 
AbstractScDataPilotDatabaseDlg_Impl(std::shared_ptr p)
 : m_xDlg(std::move(p))
 {
 }
 virtual short Execute() override;
+virtual bool StartExecuteAsync(AsyncContext &) override;
 virtual void GetValues( ScImportSourceDesc& rDesc ) override;
 
 // screenshotting
@@ -201,13 +202,14 @@ public:
 
 class AbstractScDataPilotServiceDlg_Impl : public AbstractScDataPilotServiceDlg
 {
-std::unique_ptr m_xDlg;
+std::shared_ptr m_xDlg;
 public:
-explicit 
AbstractScDataPilotServiceDlg_Impl(std::unique_ptr p)
+explicit 
AbstractScDataPilotServiceDlg_Impl(std::shared_ptr p)
 : m_xDlg(std::move(p))
 {
 }
 virtual short Execute() override;
+virtual bool StartExecuteAsync(AsyncContext &) override;
 virtual OUString  GetServiceName() const override;
 virtual OUString  GetParSource() const override;
 virtual OUString  GetParName() const override;
diff --git a/sc/source/ui/view/cellsh1.cxx b/sc/source/ui/view/cellsh1.cxx
index 26efd68b55dd..f38184ac3b1b 100644
--- a/sc/source/ui/view/cellsh1.cxx
+++ b/sc/source/ui/view/cellsh1.cxx
@@ -2917,124 +2917,149 @@ void ScCellShell::ExecuteDataPilotDialog()
 
 pTypeDlg->StartExecuteAsync([this, pTypeDlg, pTabViewShell,
 pScMod, pFact, , , 
aDestPos](int nResult) mutable {
-const char* pSrcErrorId = nullptr;
-std::unique_ptr pNewDPObject;
 
 if (nResult == RET_OK )
 {
 if ( pTypeDlg->IsExternal() )
 {
 std::vector aSources = 
ScDPObject::GetRegisteredSources();
-ScopedVclPtr pServDlg(
+VclPtr pServDlg(
 pFact->CreateScDataPilotServiceDlg(
 pTabViewShell->GetFrameWeld(), aSources));
 
-if ( pServDlg->Execute() == RET_OK )
-{
-ScDPServiceDesc aServDesc(
- 

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

2021-01-06 Thread Stephan Bergmann (via logerrit)
 sfx2/source/dialog/versdlg.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 29e36c699c610be4fe6f8a2fe21ae3e4c8bdbd38
Author: Stephan Bergmann 
AuthorDate: Wed Jan 6 18:23:37 2021 +0100
Commit: Stephan Bergmann 
CommitDate: Thu Jan 7 08:36:11 2021 +0100

Missing construction of SfxCmisVersionsDialog::m_xVersionBox

...ever since b1baf73dc671069bedec18d170f8199b0766ea60 "weld
SfxCmisVersionsDialog".  (Found by GCC 11 trunk with --enable-optimized,

> sfx2/source/dialog/versdlg.cxx: In constructor 
‘SfxCmisVersionsDialog::SfxCmisVersionsDialog(weld::Window*, SfxViewFrame*)’:
> sfx2/source/dialog/versdlg.cxx:435:36: error: ‘this’ pointer null 
[-Werror=nonnull]
>   435 | 
m_xVersionBox->set_size_request(m_xVersionBox->get_approximate_digit_width() * 
90,
>   | 
~~~^~~
>   436 | 
m_xVersionBox->get_height_rows(15));
>   | 
~~~

)

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

diff --git a/sfx2/source/dialog/versdlg.cxx b/sfx2/source/dialog/versdlg.cxx
index 3239fc185f8b..a59040ee9a8d 100644
--- a/sfx2/source/dialog/versdlg.cxx
+++ b/sfx2/source/dialog/versdlg.cxx
@@ -431,6 +431,7 @@ SfxCmisVersionsDialog::SfxCmisVersionsDialog(weld::Window* 
pParent, SfxViewFrame
 , m_xViewButton(m_xBuilder->weld_button("show"))
 , m_xDeleteButton(m_xBuilder->weld_button("delete"))
 , m_xCompareButton(m_xBuilder->weld_button("compare"))
+, m_xVersionBox(m_xBuilder->weld_tree_view("versions"))
 {
 
m_xVersionBox->set_size_request(m_xVersionBox->get_approximate_digit_width() * 
90,
 m_xVersionBox->get_height_rows(15));
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104468] [META] DOCX (OOXML) image-related issues

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

Dieter  changed:

   What|Removed |Added

 Depends on||139177


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=139177
[Bug 139177] IMAGE DOCX: The blue frame while which should be around the image
while dragging is misplaced under certain conditions
-- 
You are receiving this mail because:
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 139177] IMAGE DOCX: The blue frame while which should be around the image while dragging is misplaced under certain conditions

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

Dieter  changed:

   What|Removed |Added

 Ever confirmed|0   |1
Summary|The blue frame while which  |IMAGE DOCX: The blue frame
   |should be around the image  |while which should be
   |while dragging is misplaced |around the image while
   |under certain conditions|dragging is misplaced under
   ||certain conditions
 Status|UNCONFIRMED |NEW
 Blocks||104468
 CC||dgp-m...@gmx.de
   Severity|normal  |trivial
 Whiteboard| QA:needsComment|

--- Comment #2 from Dieter  ---
I confirm it with

Version: 7.0.4.2 (x64)
Build ID: dcf040e67528d9187c66b2379df5ea4407429775
CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL

It happens only, if you drag image for the first time.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104468
[Bug 104468] [META] DOCX (OOXML) image-related issues
-- 
You are receiving this mail because:
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 129815] Add option to insert QR Code to Insert Tab on Tabbed UI

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

--- Comment #5 from Commit Notification 
 ---
andreas kainz committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/64ae89b8b6ecbcfeceb327b965a323e2acc7b141

tdf#129815 Add InsertQrCode to Insert tab menu drop down

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 129815] Add option to insert QR Code to Insert Tab on Tabbed UI

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

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: sc/uiconfig sd/uiconfig sw/uiconfig

2021-01-06 Thread andreas kainz (via logerrit)
 sc/uiconfig/scalc/ui/notebookbar.ui   |7 +++
 sc/uiconfig/scalc/ui/notebookbar_compact.ui   |7 +++
 sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui|7 +++
 sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui   |7 +++
 sd/uiconfig/sdraw/ui/notebookbar.ui   |7 +++
 sd/uiconfig/sdraw/ui/notebookbar_compact.ui   |7 +++
 sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui|7 +++
 sd/uiconfig/simpress/ui/notebookbar.ui|7 +++
 sd/uiconfig/simpress/ui/notebookbar_compact.ui|7 +++
 sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui |7 +++
 sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui|7 +++
 sw/uiconfig/swriter/ui/notebookbar.ui |7 +++
 sw/uiconfig/swriter/ui/notebookbar_compact.ui |7 +++
 sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui  |7 +++
 sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui |7 +++
 15 files changed, 105 insertions(+)

New commits:
commit 64ae89b8b6ecbcfeceb327b965a323e2acc7b141
Author: andreas kainz 
AuthorDate: Tue Jan 5 21:54:30 2021 +0100
Commit: Andreas Kainz 
CommitDate: Thu Jan 7 08:29:02 2021 +0100

tdf#129815 Add InsertQrCode to Insert tab menu drop down

Change-Id: Iac7678cd3aaa25dcb66144f53656795f15023b9f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108821
Tested-by: Jenkins
Reviewed-by: Andreas Kainz 

diff --git a/sc/uiconfig/scalc/ui/notebookbar.ui 
b/sc/uiconfig/scalc/ui/notebookbar.ui
index d1a6638f524b..fc3a387012b9 100644
--- a/sc/uiconfig/scalc/ui/notebookbar.ui
+++ b/sc/uiconfig/scalc/ui/notebookbar.ui
@@ -1188,6 +1188,13 @@
 False
   
 
+
+  
+True
+False
+.uno:InsertQrCode
+  
+
 
   
 True
diff --git a/sc/uiconfig/scalc/ui/notebookbar_compact.ui 
b/sc/uiconfig/scalc/ui/notebookbar_compact.ui
index fb89ddb2e601..3bbd0ca3d504 100644
--- a/sc/uiconfig/scalc/ui/notebookbar_compact.ui
+++ b/sc/uiconfig/scalc/ui/notebookbar_compact.ui
@@ -1415,6 +1415,13 @@
 False
   
 
+
+  
+True
+False
+.uno:InsertQrCodeD
+  
+
 
   
 True
diff --git a/sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui 
b/sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui
index d77f6e621766..b598458ebfd5 100644
--- a/sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui
+++ b/sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui
@@ -1429,6 +1429,13 @@
 False
   
 
+
+  
+True
+False
+.uno:InsertQrCode
+  
+
 
   
 True
diff --git a/sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui 
b/sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui
index ddba61e9e96a..16c4fff3b156 100644
--- a/sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui
+++ b/sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui
@@ -1929,6 +1929,13 @@
 False
   
 
+
+  
+True
+False
+.uno:InsertQrCode
+  
+
 
   
 True
diff --git a/sd/uiconfig/sdraw/ui/notebookbar.ui 
b/sd/uiconfig/sdraw/ui/notebookbar.ui
index db7820b25a44..c59fb2fb57e9 100644
--- a/sd/uiconfig/sdraw/ui/notebookbar.ui
+++ b/sd/uiconfig/sdraw/ui/notebookbar.ui
@@ -1059,6 +1059,13 @@
 False
   
 
+
+  
+True
+False
+.uno:InsertQrCode
+  
+
 
   
 True
diff --git a/sd/uiconfig/sdraw/ui/notebookbar_compact.ui 
b/sd/uiconfig/sdraw/ui/notebookbar_compact.ui
index d32d8b40bcd9..4df8052634d3 100644
--- a/sd/uiconfig/sdraw/ui/notebookbar_compact.ui
+++ b/sd/uiconfig/sdraw/ui/notebookbar_compact.ui
@@ -1088,6 +1088,13 @@
 False
   
 
+
+  
+True
+False
+.uno:InsertQrCode
+  
+
 
   
 True
diff --git a/sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui 
b/sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui
index fcc5554b5eb8..37b28c4e4cc9 100644
--- a/sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui
+++ b/sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui
@@ -1662,6 +1662,13 @@
 False
   
 
+
+  
+True
+False
+.uno:InsertQrCode
+  
+
 
   
 True
diff --git a/sd/uiconfig/simpress/ui/notebookbar.ui 
b/sd/uiconfig/simpress/ui/notebookbar.ui
index 30e272d4a64e..5bd5e5efb38e 100644
--- a/sd/uiconfig/simpress/ui/notebookbar.ui
+++ b/sd/uiconfig/simpress/ui/notebookbar.ui
@@ -1157,6 +1157,13 @@
 False
   
 
+
+  
+True
+False
+.uno:InsertQrCode
+  
+
 
   
 True
diff --git a/sd/uiconfig/simpress/ui/notebookbar_compact.ui 

[Libreoffice-ux-advise] [Bug 139187] open template -- vs -- new from template (new document based on template)

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

Dieter  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org

-- 
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 101435] [META] Template manager bugs and enhancements

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

Dieter  changed:

   What|Removed |Added

 Depends on||139187


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=139187
[Bug 139187] open template -- vs -- new from template (new document based on
template)
-- 
You are receiving this mail because:
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 104074] [FILESAVE] Wrong behavior using template via "Open Template": when saving it saved the template directly instead of a new file

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

Dieter  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 139187] open template -- vs -- new from template (new document based on template)

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

Dieter  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||4074
 Whiteboard| QA:needsComment|
 Blocks||101435
   Keywords||needsUXEval
 CC||dgp-m...@gmx.de

--- Comment #1 from Dieter  ---
(In reply to peter josvai from comment #0)

> you go: File / Templates / Open Template --- and you'll have opened a
> template, a .OTT file, and you can edit it...
Yes

> (case #2)
> you go:  File / Templates / Manage Templates
That opens Template Dialog

> (case #3)
> if you go: File / Templates / Manage Templates ... 
> and select one, and click "open"... you'll have, again, crated a new
> document based on that template...

I agree, that this should be improved. Creating a new document based on a
template is not part of managing templates

> (case #4)
> File / Templates / Manage Templates
> and right click, you'll see  strange options!
> OPEN and EDIT...
> as we know, open in this context means "new from this template"...
> whereas "EDIT" means what one will think it means... (open the template for
> editing)
I also agree, that this could be improved

cc: Design-Team for further input and decision for case 3 and 4


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 138727] Help right-hand pane lacks scrolling

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

--- Comment #10 from Dieter  ---
Created attachment 168735
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168735=edit
Screenshot of LO 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 138727] Help right-hand pane lacks scrolling

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

--- Comment #9 from Dieter  ---
(In reply to Nick Levinson from comment #7)
> Created attachment 168729 [details]
> offline Help's home page

This is not the actual Help from LO. It should looks like help in screenshot

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


[Libreoffice-bugs] [Bug 137079] Default zoom ignored with deactivated user-specific settings

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

Dieter  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #8 from Dieter  ---
Thanks for clarification. Test document is based on template "Normal". So I
assume, that this is your default template, correct. Snce I don't have this
template, I can't test with your document. Your test file has .doc file format.
Does the problem also exist with odt-files and docx-files?
=> NEEDINFO

-- 
You are receiving this mail because:
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 139459] New: "Close Preview" is always showing in the File Menu even though the preview is not being used

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

Bug ID: 139459
   Summary: "Close Preview" is always showing in the File Menu
even though the preview is not being used
   Product: LibreOffice
   Version: 7.0.4.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: j...@machado-family.com

Description:
Enabling Experimental Features> Then enable Menu> User Interface> Groupedbar

Then from the File Menu, the Preview item always displays "Close Preview" even
though the preview is not being shown.

Clicking on "Close Preview" will bring up the preview window and works as it
should. The Menu item still says "Close Preview", which is now correct and
there is a check mark next to it. Clicking on the item will close the preview.

The issue is that Close Preview is incorrect when there is no preview being
viewed, it should just say "Preview".

I understand that this is an "experimental" feature, but honestly, this is the
only issue I have found. 

Steps to Reproduce:
1.Enable Experimental features.
2.Menu>User Interface>Groupedbar
3.Go to File> Close Preview

Actual Results:
Enabling Experimental Features> Then enable Menu> User Interface> Groupedbar

Then from the File Menu, the Preview item always displays "Close Preview" even
though the preview is not being shown.

Clicking on "Close Preview" will bring up the preview window and works as it
should. The Menu item still says "Close Preview", which is now correct and
there is a check mark next to it. Clicking on the item will close the preview.

The issue is that Close Preview is incorrect when there is no preview being
viewed, it should just say "Preview".



Expected Results:
File Menu> Close Preview should only say "Preview" when not in preview mode.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
I understand that this is an "experimental" feature, but honestly, this is the
only issue I have found.

-- 
You are receiving this mail because:
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 62196] EDITING: copy-paste from non-LibO-text-source pastes previous clipboard contents (see comment 62)

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

--- Comment #120 from arf.fai...@gmail.com ---
(In reply to V Stuart Foote from comment #119)
> (In reply to V Stuart Foote from comment #117)
> > *** Bug 139441 has been marked as a duplicate of this bug. ***
> 
> Adding the native MS Windows 10 clipboard history manager (25 count items
> <4MB size--Text, HTML, & bitmaps) just adds another layer to the issues of
> correctly interfacing the Windows clipboard API to LibreOffice's internal
> XClipboard.
> 
> Despite being a MS app, it really is little different than other non-MS
> applications and may not interface to the clipboard correctly.
> 
> If it seems unstable, disable it when working with LibreOffice.

I didn't even enable the clipboard history feature.

-- 
You are receiving this mail because:
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: helpcontent2

2021-01-06 Thread Andrea Gelmini (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ebaf20f66d59f0494a204771d7d06228954f5769
Author: Andrea Gelmini 
AuthorDate: Thu Jan 7 06:55:48 2021 +0100
Commit: Gerrit Code Review 
CommitDate: Thu Jan 7 06:55:48 2021 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to bdf63c9283a2081c947b65ef12a18cc9818f4bfb
  - Fix typos

Change-Id: Ieaa9f4476a8738121453eb3589b98d5c17feeb72
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/108915
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/helpcontent2 b/helpcontent2
index 491c08b20af8..bdf63c9283a2 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 491c08b20af8a0d1b2fcf3caf74926202fbcb541
+Subproject commit bdf63c9283a2081c947b65ef12a18cc9818f4bfb
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: source/text

2021-01-06 Thread Andrea Gelmini (via logerrit)
 source/text/sbasic/shared/03/lib_ScriptForge.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bdf63c9283a2081c947b65ef12a18cc9818f4bfb
Author: Andrea Gelmini 
AuthorDate: Wed Jan 6 23:48:09 2021 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Thu Jan 7 06:55:48 2021 +0100

Fix typos

Change-Id: Ieaa9f4476a8738121453eb3589b98d5c17feeb72
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/108915
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/source/text/sbasic/shared/03/lib_ScriptForge.xhp 
b/source/text/sbasic/shared/03/lib_ScriptForge.xhp
index 1e808ecb9..02383e3cf 100644
--- a/source/text/sbasic/shared/03/lib_ScriptForge.xhp
+++ b/source/text/sbasic/shared/03/lib_ScriptForge.xhp
@@ -46,7 +46,7 @@
 Timer class Service
 UI 
Service
 
-Restricted use for SF_Root, SF_Utilsa modules as weel as internal 
methods
+Restricted use for SF_Root, SF_Utils modules as well as internal 
methods
 Note: 
Other ScriptForge undescribed modules are reserved for 
internal use. Their content is subject to change without notice.
 All ScriptForge Basic 
routines or identifiers that are prefixed with an underscore character "_" are 
reserved for internal use. They are not meant be used in Basic macros.
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 139416] When I work with images Write slows down

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

--- Comment #2 from Chardinson De la cruz Ventura 
 ---
(In reply to Telesto from comment #1)
> GTK3?

Yes, I am using Fedora 33 with GNOME

-- 
You are receiving this mail because:
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 126689] Icons needed for Bullets & Numbering toolbar and context menu

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

Rizal Muttaqin  changed:

   What|Removed |Added

 CC||riz...@libreoffice.org

--- Comment #4 from Rizal Muttaqin  ---
@Andreas and others: any idea/rough sketch how these icons should be?

-- 
You are receiving this mail because:
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 139458] broken dependancy in libreoffice7.04 package

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

Ming Hua  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1
 CC||ming.v@qq.com

--- Comment #1 from Ming Hua  ---
(In reply to rgarand from comment #0)
> Steps to Reproduce:
> 1.remove libreoffice 6.3
> 2.install libreoffice 7.04
Are you sure?

> 3.install french interface 7.04
>
> Description:
> Message when installing 7.04 after removing 6.3 on mint 19.3(look lower for
> >):
> ~/tmp_desktop/LibreOffice_7.0.4.2_Linux_x86-64_deb_langpack_fr/DEBS$ sudo
> dpkg -i *.deb
> [sudo] password for robertg:   
> Selecting previously unselected package libobasis7.0-fr.
> (Reading database ... 434489 files and directories currently installed.)
> Preparing to unpack libobasis7.0-fr_7.0.4.2-2_amd64.deb ...
> Unpacking libobasis7.0-fr (7.0.4.2-2) ...
> Preparing to unpack libreoffice7.0-dict-fr_7.0.4.2-2_amd64.deb ...
> Unpacking libreoffice7.0-dict-fr (7.0.4.2-2) over (7.0.3.1-1) ...
Here according to dpkg you are installing French language support version 7.0.4
over version 7.0.3.

> Selecting previously unselected package libreoffice7.0-fr.
> Preparing to unpack libreoffice7.0-fr_7.0.4.2-2_amd64.deb ...
> Unpacking libreoffice7.0-fr (7.0.4.2-2) ...
> dpkg: dependency problems prevent configuration of libobasis7.0-fr:
>  libobasis7.0-fr depends on libobasis7.0-core (>= 7.0.4.2); however:
>   Version of libobasis7.0-core on system is 7.0.3.1-1.
And again here according to dpkg, you have LibreOffice main packages version
7.0.3 installed, not 7.0.4.

> [...]
> 
> Actual Results:
> Cannot install french interface
> 
> Expected Results:
> french interface package should have installed correctly.
Basically it looks like you are trying to install newer (7.0.4) language
support on older (7.0.3) LibreOffice, which I assume is not supported.

Can you check again to make sure the LibreOffice main packages you installed /
tried to install were indeed version 7.0.4?  If yes, can you paste the messages
when installing it with "dpkg -i *.deb"?

-- 
You are receiving this mail because:
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 94504] Editing: strikethrough 'with X' on a bullet list make corrupted characters to appear

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

--- Comment #16 from palmierivinc@gmail.com ---
The bug is still unchanged with LO 6.4.6.2 and Ubuntu 20.04.1.

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


[Libreoffice-bugs] [Bug 136963] chart upper Y bound is 1.2 when real range upper bound is 1

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

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 139199] autocorrect for multiple languages in one document

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

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 139189] PDF signing does not work with SolidWorks files

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

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 139187] open template -- vs -- new from template (new document based on template)

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

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 139184] FORMS: List Box wizard shows error for SDBC-Driver evolution local (GTK 3 only)

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

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 139177] The blue frame while which should be around the image while dragging is misplaced under certain conditions

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

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 139172] Transparent objects placed on bitmaps appear solid when exported as PNG using "Selection" option

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

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 81821] Available paper formats depend on system (CUPS) settings

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

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 81821] Available paper formats depend on system (CUPS) settings

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

--- Comment #11 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 139355] Libre Office not using all CPU cores

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

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 139355] Libre Office not using all CPU cores

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

--- Comment #4 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 67525] CRASH: EDITING: it is not possible to delete more then 600 sheets with one click

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

--- Comment #19 from QA Administrators  ---
Dear klausk,

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 95940] Word sub-numbered sections (having the same style as first numbered sections..) lacks numbering

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

--- Comment #12 from QA Administrators  ---
Dear Tomáš Chvátal,

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 94504] Editing: strikethrough 'with X' on a bullet list make corrupted characters to appear

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

--- Comment #15 from QA Administrators  ---
Dear palmierivinc.ent,

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 58395] Document header of RTF documents imported in LO has formatting and alignment issues

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

--- Comment #6 from QA Administrators  ---
Dear Markus Egger,

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 56026] FORMATTING: page header is abnormal in DOC (OK if resaved in MSO)

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

--- Comment #10 from QA Administrators  ---
Dear henry cui,

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 40270] Header border showing on PDF export

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

--- Comment #17 from QA Administrators  ---
Dear Jonathan,

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 108933] Crash if I connect to a computer in the WiFi tab (android 7)

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

--- Comment #6 from QA Administrators  ---
Dear bug.reporter,

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 108596] Unable to paste over 1, 09M lines from Kate editor

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

--- Comment #10 from QA Administrators  ---
Dear kamesh,

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 139415] Language of date field is not changed by menu Tools->Language

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

--- Comment #8 from muso  ---
Created attachment 168734
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168734=edit
tescase to reprodcue the bug

> I will investigate further and report back.
It turns out, the file makes the difference. i attached now a file with which
LO 7.0.4.2 and LO 7.1 RC1 fails.

It seems that the drawing object in which the date field is in, prevents the
language from being applied. But even if I select only inside the drawing
object, the language is not applied to the date field.

-- 
You are receiving this mail because:
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 139434] CTRL C and CTRL V Fail

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

Peter S Anderson  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1
 CC||pe...@pza.net.au

--- Comment #2 from Peter S Anderson  ---
Hi Alvino,
We need a bit more information concerning when this occurs. Are the menu Edit:
Copy and Paste working as you expect? Any other strange behaviour? Is the
Ctrl+S save facility working?
Thanks Peter.

-- 
You are receiving this mail because:
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 139458] New: broken dependancy in libreoffice7.04 package

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

Bug ID: 139458
   Summary: broken dependancy  in libreoffice7.04 package
   Product: LibreOffice
   Version: 7.0.4.2 release
  Hardware: x86-64 (AMD64)
OS: other
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: robertgar...@hotmail.com

Description:
Message when installing 7.04 after removing 6.3 on mint 19.3(look lower for
>):
~/tmp_desktop/LibreOffice_7.0.4.2_Linux_x86-64_deb_langpack_fr/DEBS$ sudo dpkg
-i *.deb
[sudo] password for robertg:   
Selecting previously unselected package libobasis7.0-fr.
(Reading database ... 434489 files and directories currently installed.)
Preparing to unpack libobasis7.0-fr_7.0.4.2-2_amd64.deb ...
Unpacking libobasis7.0-fr (7.0.4.2-2) ...
Preparing to unpack libreoffice7.0-dict-fr_7.0.4.2-2_amd64.deb ...
Unpacking libreoffice7.0-dict-fr (7.0.4.2-2) over (7.0.3.1-1) ...
Selecting previously unselected package libreoffice7.0-fr.
Preparing to unpack libreoffice7.0-fr_7.0.4.2-2_amd64.deb ...
Unpacking libreoffice7.0-fr (7.0.4.2-2) ...
dpkg: dependency problems prevent configuration of libobasis7.0-fr:
 libobasis7.0-fr depends on libobasis7.0-core (>= 7.0.4.2); however:
  Version of libobasis7.0-core on system is 7.0.3.1-1.

dpkg: error processing package libobasis7.0-fr (--install):
 dependency problems - leaving unconfigured


dpkg: dependency problems prevent configuration of libreoffice7.0-dict-fr:
>> libreoffice7.0-dict-fr depends on libreoffice7.0-ure (>= 7.0.4.2); 
>> however:
  Version of libreoffice7.0-ure on system is 7.0.3.1-1.
 libreoffice7.0-dict-fr depends on libobasis7.0-core (>= 7.0.4.2); however:
  Version of libobasis7.0-core on system is 7.0.3.1-1.
 libreoffice7.0-dict-fr depends on libreoffice7.0 (>= 7.0.4.2); however:
  Version of libreoffice7.0 on system is 7.0.3.1-1.

dpkg: error processing package libreoffice7.0-dict-fr (--install):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libreoffice7.0-fr:
 libreoffice7.0-fr depends on libreoffice7.0 (>= 7.0.4.2); however:
  Version of libreoffice7.0 on system is 7.0.3.1-1.
 libreoffice7.0-fr depends on libobasis7.0-fr (>= 7.0.4.2); however:
  Package libobasis7.0-fr is not configured yet.
  Version of libobasis7.0-fr on system, provided by libobasis7.0-fr:amd64, is
.
 libreoffice7.0-fr depends on libobasis7.0-fr (<= 7.0.4.2-2); however:
  Package libobasis7.0-fr is not configured yet.
  Version of libobasis7.0-fr on system, provided by libobasis7.0-fr:amd64, is
.

dpkg: error processing package libreoffice7.0-fr (--install):
 dependency problems - leaving unconfigured


Steps to Reproduce:
1.remove libreoffice 6.3
2.install libreoffice 7.04
3.install french interface 7.04

Actual Results:
Cannot install french interface

Expected Results:
french interface package should have installed correctly.


Reproducible: Always


User Profile Reset: No



Additional Info:
I tried to install the missing dependancy, but can't find it...revert to
6.4.7...and it went well.

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


[Libreoffice-bugs] [Bug 136963] chart upper Y bound is 1.2 when real range upper bound is 1

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

--- Comment #6 from Mark  ---
Created attachment 168733
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168733=edit
Percent-stacked, 3D look, max is 1 which is correct, also looks very similar to
previous attachment

-- 
You are receiving this mail because:
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 136963] chart upper Y bound is 1.2 when real range upper bound is 1

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

--- Comment #5 from Mark  ---
Created attachment 168732
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168732=edit
3D look, chart max is 1 which is correct

-- 
You are receiving this mail because:
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 136963] chart upper Y bound is 1.2 when real range upper bound is 1

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

--- Comment #4 from Mark  ---
Created attachment 168731
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168731=edit
Percent-stacked chart, max is correct at 100%

-- 
You are receiving this mail because:
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 136963] chart upper Y bound is 1.2 when real range upper bound is 1

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

--- Comment #3 from Mark  ---
I would be very interested to read the design document, or the online
discussion, about such a visual buffer. And as a counterpoint, the same two
values (in the instructions to reproduce) can be plotted as a "percent stacked"
chart, with no visual buffer, and it's just as effective. It's the 3rd type of
vertical bar chart, in the same dialog.

And, checking the "3D Look" box, with the regular vertical bar chart style,
renders a 3D chart, with the chart maximum at 1, not 1.2. In fact, the 3D
vertical bar and 3D stacked percentage charts look nearly identical, the only
difference being the vertical axis values ("1" vs. "100%") and chart rendering
adjustments related to the same text.

I will attach screenshots to demonstrate all these.

-- 
You are receiving this mail because:
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' - sc/qa sc/source

2021-01-06 Thread Tibor Nagy (via logerrit)
 sc/qa/unit/data/xlsx/tdf139394.xlsx   |binary
 sc/qa/unit/subsequent_export-test.cxx |   27 +++
 sc/source/filter/excel/xeextlst.cxx   |   20 ++--
 3 files changed, 37 insertions(+), 10 deletions(-)

New commits:
commit 9e82c64fa54ce7c0ef18e9de5a06e1243a3a7e44
Author: Tibor Nagy 
AuthorDate: Tue Dec 29 08:36:49 2020 +0100
Commit: Eike Rathke 
CommitDate: Thu Jan 7 01:51:37 2021 +0100

tdf#139394 XLSX export: remove extra quotation marks

This fixes commit 583e2bfba2d72ac8afe7261c23f380daf5486889
(tdf#139021 XLSX export: fix "contains" conditional formatting).

Change-Id: Idae3190b5f87dac551251da19c511f501bdaaa21
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108452
Tested-by: László Németh 
Reviewed-by: László Németh 
Reviewed-by: Eike Rathke 
Signed-off-by: Xisco Fauli 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108808
Tested-by: Jenkins

diff --git a/sc/qa/unit/data/xlsx/tdf139394.xlsx 
b/sc/qa/unit/data/xlsx/tdf139394.xlsx
new file mode 100644
index ..eac83fb2f3a8
Binary files /dev/null and b/sc/qa/unit/data/xlsx/tdf139394.xlsx differ
diff --git a/sc/qa/unit/subsequent_export-test.cxx 
b/sc/qa/unit/subsequent_export-test.cxx
index d354de27a7c4..35d349fdbee5 100644
--- a/sc/qa/unit/subsequent_export-test.cxx
+++ b/sc/qa/unit/subsequent_export-test.cxx
@@ -89,6 +89,7 @@ public:
 virtual void tearDown() override;
 
 void test();
+void testTdf139394();
 void testExtCondFormatXLSX();
 void testTdf90104();
 void testTdf111876();
@@ -279,6 +280,7 @@ public:
 
 CPPUNIT_TEST_SUITE(ScExportTest);
 CPPUNIT_TEST(test);
+CPPUNIT_TEST(testTdf139394);
 CPPUNIT_TEST(testExtCondFormatXLSX);
 CPPUNIT_TEST(testTdf90104);
 CPPUNIT_TEST(testTdf111876);
@@ -517,6 +519,31 @@ void ScExportTest::test()
 xDocSh->DoClose();
 }
 
+void ScExportTest::testTdf139394()
+{
+ScDocShellRef xShell = loadDoc(u"tdf139394.", FORMAT_XLSX);
+CPPUNIT_ASSERT(xShell.is());
+
+ScDocShellRef xDocSh = saveAndReload(&(*xShell), FORMAT_XLSX);
+CPPUNIT_ASSERT(xDocSh.is());
+
+std::shared_ptr pXPathFile = 
ScBootstrapFixture::exportTo(&(*xDocSh), FORMAT_XLSX);
+xmlDocUniquePtr pDoc = XPathHelper::parseExport(pXPathFile, m_xSFactory, 
"xl/worksheets/sheet1.xml");
+CPPUNIT_ASSERT(pDoc);
+
+assertXPathContent(pDoc,
+
"/x:worksheet/x:extLst/x:ext/x14:conditionalFormattings/x14:conditionalFormatting[1]/"
+"x14:cfRule/xm:f", "LEFT(A1,LEN(\"+\"))=\"+\"");
+assertXPathContent(pDoc,
+
"/x:worksheet/x:extLst/x:ext/x14:conditionalFormattings/x14:conditionalFormatting[2]/"
+"x14:cfRule/xm:f", "RIGHT(A2,LEN(\"-\"))=\"-\"");
+assertXPathContent(pDoc,
+
"/x:worksheet/x:extLst/x:ext/x14:conditionalFormattings/x14:conditionalFormatting[3]/"
+"x14:cfRule/xm:f", "LEFT(A3,LEN($B$3))=$B$3");
+
+xDocSh->DoClose();
+}
+
 void ScExportTest::testExtCondFormatXLSX()
 {
 ScDocShellRef xShell = loadDoc("tdf139021.", FORMAT_XLSX);
diff --git a/sc/source/filter/excel/xeextlst.cxx 
b/sc/source/filter/excel/xeextlst.cxx
index a1732197501e..610f25a1d894 100644
--- a/sc/source/filter/excel/xeextlst.cxx
+++ b/sc/source/filter/excel/xeextlst.cxx
@@ -174,16 +174,16 @@ OString GetFixedFormula(ScConditionMode eMode, const 
ScAddress& rAddress, const
 OString aPos = aBuffer.makeStringAndClear();
 switch (eMode)
 {
-case ScConditionMode::BeginsWith:
-return OString("LEFT(" + aPos + ",LEN(" + rText + "))=\"" + rText + 
"\"");
-case ScConditionMode::EndsWith:
-return OString("RIGHT(" + aPos + ",LEN(" + rText + "))=\"" + rText + 
"\"");
-case ScConditionMode::ContainsText:
-return OString("NOT(ISERROR(SEARCH(" + rText + "," + aPos + ")))");
-case ScConditionMode::NotContainsText:
-return OString("ISERROR(SEARCH(" + rText + "," + aPos + "))");
-default:
-break;
+case ScConditionMode::BeginsWith:
+return OString("LEFT(" + aPos + ",LEN(" + rText + "))=" + rText);
+case ScConditionMode::EndsWith:
+return OString("RIGHT(" + aPos + ",LEN(" + rText + "))=" + rText);
+case ScConditionMode::ContainsText:
+return OString(OString::Concat("NOT(ISERROR(SEARCH(") + rText + 
"," + aPos + ")))");
+case ScConditionMode::NotContainsText:
+return OString(OString::Concat("ISERROR(SEARCH(") + rText + "," + 
aPos + "))");
+default:
+break;
 }
 
 return "";
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-ux-advise] [Bug 138526] Image missing for new Formats Only option

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

--- Comment #12 from Rizal Muttaqin  ---
(In reply to Heiko Tietze from comment #11)
> For some reason I never get icons in the new dialog. Only me?

I have no issue. Every icon appears perfectly

-- 
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 138726] mixing paragraph styles gets weird format values

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

--- Comment #12 from Nick Levinson  ---
That's valid for the programming, but it's bad for the UI. The blank for a
field should mean that values are mixed for what that field represents, not
that some other field is involved and has mixed values. It's confusing to a
user. Sometimes, I search a whole document trying to diagnose a result that
differs from my knowledge of characteristics I already assigned. When I can't
find it, I likely think the software is malfunctioning.

I don't know if the better solution is to separate the values in the underlying
item or to separate the information from the item before it gets to the dialog
UI.

-- 
You are receiving this mail because:
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 116070] Crash in dialog Edit page break

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

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

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

tdf#134439, tdf#116070: sw: Add UItest

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 116070] Crash in dialog Edit page break

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.1.0|target:6.1.0 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-06 Thread Xisco Fauli (via logerrit)
 sw/qa/uitest/data/tdf134439.odt |binary
 sw/qa/uitest/writer_tests4/tdf134439.py |   67 
 2 files changed, 67 insertions(+)

New commits:
commit d4a96a931210fc4713d4ab6325e30cd34ffa7b37
Author: Xisco Fauli 
AuthorDate: Wed Jan 6 18:15:44 2021 +0100
Commit: Xisco Fauli 
CommitDate: Thu Jan 7 01:25:37 2021 +0100

tdf#134439, tdf#116070: sw: Add UItest

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

diff --git a/sw/qa/uitest/data/tdf134439.odt b/sw/qa/uitest/data/tdf134439.odt
new file mode 100644
index ..011a75a343b8
Binary files /dev/null and b/sw/qa/uitest/data/tdf134439.odt differ
diff --git a/sw/qa/uitest/writer_tests4/tdf134439.py 
b/sw/qa/uitest/writer_tests4/tdf134439.py
new file mode 100644
index ..aec16c7ba849
--- /dev/null
+++ b/sw/qa/uitest/writer_tests4/tdf134439.py
@@ -0,0 +1,67 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+from uitest.framework import UITestCase
+from uitest.uihelper.common import get_state_as_dict
+from libreoffice.uno.propertyvalue import mkPropertyValues
+import org.libreoffice.unotest
+import pathlib
+
+def get_url_for_data_file(file_name):
+return 
pathlib.Path(org.libreoffice.unotest.makeCopyFromTDOC(file_name)).as_uri()
+
+class tdf134439(UITestCase):
+
+def test_tdf134439(self):
+
+self.ui_test.load_file(get_url_for_data_file("tdf134439.odt"))
+
+document = self.ui_test.get_component()
+
+self.assertEqual(document.CurrentController.PageCount, 3)
+
+xCursor = document.CurrentController.ViewCursor
+self.assertEqual("Chap 1", xCursor.PageStyleName)
+
+xWriterDoc = self.xUITest.getTopFocusWindow()
+xWriterEdit = xWriterDoc.getChild("writer_edit")
+self.ui_test.wait_until_child_is_available(xWriterEdit, 'PageBreak')
+xPageBreak = xWriterEdit.getChild('PageBreak')
+
+self.ui_test.execute_dialog_through_action(xPageBreak, "EDIT")
+
+xDialog = self.xUITest.getTopFocusWindow()
+
+self.assertEqual("Page", 
get_state_as_dict(xDialog.getChild("comboBreakType"))["SelectEntryText"])
+self.assertEqual("Before", 
get_state_as_dict(xDialog.getChild("comboBreakPosition"))["SelectEntryText"])
+
+xPageStyle = xDialog.getChild("comboPageStyle")
+self.assertEqual("Chap 2", 
get_state_as_dict(xPageStyle)["SelectEntryText"])
+
+xPageStyle.executeAction("SELECT", mkPropertyValues({"TEXT": "Chap 
3"}))
+
+self.assertEqual("Chap 3", 
get_state_as_dict(xPageStyle)["SelectEntryText"])
+
+# tdf#116070: Without the fix in place, this test would have crashed 
here
+okBtn = xDialog.getChild("ok")
+self.ui_test.close_dialog_through_button(okBtn)
+
+# Without the fix in place, this test would have failed with
+# AssertionError: 'Chap 1' != 'Chap 3'
+self.assertEqual("Chap 1", xCursor.PageStyleName)
+
+self.assertEqual(document.CurrentController.PageCount, 3)
+
+xCursor.jumpToNextPage()
+self.assertEqual("Chap 3", xCursor.PageStyleName)
+
+self.xUITest.executeCommand(".uno:Undo")
+
+self.assertEqual("Chap 2", xCursor.PageStyleName)
+
+self.ui_test.close_doc()
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 138727] Help right-hand pane lacks scrolling

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

--- Comment #8 from Nick Levinson  ---
Created attachment 168730
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168730=edit
Help's menu in DE's top panel

-- 
You are receiving this mail because:
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-06 Thread Xisco Fauli (via logerrit)
 sw/qa/uitest/data/tdf135636.odt |binary
 sw/qa/uitest/writer_tests4/tdf135636.py |   54 
 2 files changed, 54 insertions(+)

New commits:
commit 8ddc0fd04e29640fd05fed7b7bdbc387a1c94bf6
Author: Xisco Fauli 
AuthorDate: Wed Jan 6 18:46:21 2021 +0100
Commit: Xisco Fauli 
CommitDate: Thu Jan 7 01:25:04 2021 +0100

tdf#135636: sw: Add UItest

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

diff --git a/sw/qa/uitest/data/tdf135636.odt b/sw/qa/uitest/data/tdf135636.odt
new file mode 100644
index ..7b11ef66f4fd
Binary files /dev/null and b/sw/qa/uitest/data/tdf135636.odt differ
diff --git a/sw/qa/uitest/writer_tests4/tdf135636.py 
b/sw/qa/uitest/writer_tests4/tdf135636.py
new file mode 100644
index ..0620f9a185bd
--- /dev/null
+++ b/sw/qa/uitest/writer_tests4/tdf135636.py
@@ -0,0 +1,54 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+from uitest.framework import UITestCase
+from uitest.uihelper.common import get_state_as_dict
+import org.libreoffice.unotest
+import pathlib
+
+def get_url_for_data_file(file_name):
+return 
pathlib.Path(org.libreoffice.unotest.makeCopyFromTDOC(file_name)).as_uri()
+
+class tdf135636(UITestCase):
+
+def test_tdf135636(self):
+
+self.ui_test.load_file(get_url_for_data_file("tdf135636.odt"))
+
+document = self.ui_test.get_component()
+
+self.assertEqual(document.CurrentController.PageCount, 2)
+
+xWriterDoc = self.xUITest.getTopFocusWindow()
+xWriterEdit = xWriterDoc.getChild("writer_edit")
+self.ui_test.wait_until_child_is_available(xWriterEdit, 'PageBreak')
+xPageBreak = xWriterEdit.getChild('PageBreak')
+
+self.ui_test.execute_dialog_through_action(xPageBreak, "EDIT")
+
+xDialog = self.xUITest.getTopFocusWindow()
+
+xBreak = xDialog.getChild("break")
+self.assertEqual("true", get_state_as_dict(xBreak)["Selected"])
+
+xBreak.executeAction("CLICK", tuple())
+
+self.assertEqual("false", get_state_as_dict(xBreak)["Selected"])
+
+okBtn = xDialog.getChild("ok")
+self.ui_test.close_dialog_through_button(okBtn)
+
+# Without the fix in place, this test would have failed with
+# AssertionError: 2 != 1
+self.assertEqual(document.CurrentController.PageCount, 1)
+
+self.xUITest.executeCommand(".uno:Undo")
+
+self.assertEqual(document.CurrentController.PageCount, 2)
+
+self.ui_test.close_doc()
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 138727] Help right-hand pane lacks scrolling

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

--- Comment #7 from Nick Levinson  ---
Created attachment 168729
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168729=edit
offline Help's home page

-- 
You are receiving this mail because:
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-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138727

Nick Levinson  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #6 from Nick Levinson  ---
After I had turned Wi-Fi off, not having wired Internet, and the computer not
being connected to another, I shut down, waited at least 15 seconds (so RAM
could fully flush), and cold-booted. I verified that Wi-Fi was still off. I
started LO and opened LO Help via the Help menu, both successfully. I'm
uploading screenshots of Help and of Help with the desktop's top panel's app's
menu.

I don't see a hamburger menu or another way of finding a Help/About. Googling
did not find a way to identify the offline Help version.

Fedora updates consider some things as separate (e.g., kernel, kernel-core,
etc.) but some as together. All of LO is updated together. I don't have all of
the modules or whatever they (Writer, Calc, etc.) are called (because I don't
want all of them), so I don't have Impress, and yet my offline Help has a help
chapter for Impress. Updates to Help are not context-sensitive. I don't know
how to tell if an LO update is of Help alone, except perhaps by doing a lot of
digging in the Document Foundation's patch and commit records, a method that
would also reveal the latest version, at least by implication, of what was
supplied in an update.

I assume Help content is coordinated between online and offline, but with
online being updated more often and offline less so.

-- 
You are receiving this mail because:
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/qa vcl/source

2021-01-06 Thread Tomaž Vajngerl (via logerrit)
 vcl/qa/cppunit/graphicfilter/filters-test.cxx |2 ++
 vcl/qa/cppunit/jpeg/JpegWriterTest.cxx|   16 
 vcl/source/filter/graphicfilter.cxx   |1 -
 3 files changed, 14 insertions(+), 5 deletions(-)

New commits:
commit 252ddaa9075462000bb8e63288b9c15daeecca8a
Author: Tomaž Vajngerl 
AuthorDate: Tue Dec 29 23:11:04 2020 +0900
Commit: Tomaž Vajngerl 
CommitDate: Thu Jan 7 01:05:07 2021 +0100

improve JpegWriterTest - detect type is correct during roundtrip

Change-Id: I4560be2dd1627caf8126142930c3479668689273
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108823
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/vcl/qa/cppunit/graphicfilter/filters-test.cxx 
b/vcl/qa/cppunit/graphicfilter/filters-test.cxx
index 5a4443f1075a..aee1dda1407e 100644
--- a/vcl/qa/cppunit/graphicfilter/filters-test.cxx
+++ b/vcl/qa/cppunit/graphicfilter/filters-test.cxx
@@ -144,6 +144,8 @@ void VclFiltersTest::testExportImport()
 checkExportImport(u"png");
 fprintf(stderr, "Check ExportImport BMP\n");
 checkExportImport(u"bmp");
+fprintf(stderr, "Check ExportImport TIF\n");
+checkExportImport(u"tif");
 }
 
 void VclFiltersTest::testCVEs()
diff --git a/vcl/qa/cppunit/jpeg/JpegWriterTest.cxx 
b/vcl/qa/cppunit/jpeg/JpegWriterTest.cxx
index b2144fe3b47e..f999c018df7c 100644
--- a/vcl/qa/cppunit/jpeg/JpegWriterTest.cxx
+++ b/vcl/qa/cppunit/jpeg/JpegWriterTest.cxx
@@ -16,6 +16,7 @@
 #include 
 #include 
 #include 
+#include 
 
 constexpr OUStringLiteral gaDataUrl(u"/vcl/qa/cppunit/jpeg/data/");
 
@@ -54,16 +55,23 @@ BitmapEx JpegWriterTest::roundtripJPG(const OUString& aURL) 
{ return roundtripJP
 
 BitmapEx JpegWriterTest::roundtripJPG(const BitmapEx& bitmap)
 {
-SvMemoryStream stream;
+// EXPORT JPEG
+SvMemoryStream aStream;
 GraphicFilter& rFilter = GraphicFilter::GetGraphicFilter();
 sal_uInt16 exportFormatJPG = 
rFilter.GetExportFormatNumberForShortName(JPG_SHORTNAME);
 Graphic aExportGraphic(bitmap);
-ErrCode bResult = rFilter.ExportGraphic(aExportGraphic, "memory", stream, 
exportFormatJPG);
+ErrCode bResult = rFilter.ExportGraphic(aExportGraphic, "memory", aStream, 
exportFormatJPG);
 CPPUNIT_ASSERT_EQUAL(ERRCODE_NONE, bResult);
-stream.Seek(0);
+//Detect the magic bytes - we need to be sure the file is actually a JPEG
+aStream.Seek(0);
+vcl::GraphicFormatDetector aDetector(aStream, "");
+CPPUNIT_ASSERT(aDetector.detect());
+CPPUNIT_ASSERT(aDetector.checkJPG());
+// IMPORT JPEG
+aStream.Seek(0);
 Graphic aImportGraphic;
 sal_uInt16 importFormatJPG = 
rFilter.GetImportFormatNumberForShortName(JPG_SHORTNAME);
-bResult = rFilter.ImportGraphic(aImportGraphic, "memory", stream, 
importFormatJPG);
+bResult = rFilter.ImportGraphic(aImportGraphic, "memory", aStream, 
importFormatJPG);
 CPPUNIT_ASSERT_EQUAL(ERRCODE_NONE, bResult);
 return aImportGraphic.GetBitmapEx();
 }
diff --git a/vcl/source/filter/graphicfilter.cxx 
b/vcl/source/filter/graphicfilter.cxx
index 2c2aa67bcbe2..684bb9c02731 100644
--- a/vcl/source/filter/graphicfilter.cxx
+++ b/vcl/source/filter/graphicfilter.cxx
@@ -649,7 +649,6 @@ extern "C" bool iptGraphicImport( SvStream& rStream, 
Graphic& rGraphic, FilterCo
 extern "C" bool ipxGraphicImport( SvStream& rStream, Graphic& rGraphic, 
FilterConfigItem* pConfigItem );
 extern "C" bool iraGraphicImport( SvStream& rStream, Graphic& rGraphic, 
FilterConfigItem* pConfigItem );
 extern "C" bool itgGraphicImport( SvStream& rStream, Graphic& rGraphic, 
FilterConfigItem* pConfigItem );
-extern "C" bool itiGraphicImport( SvStream& rStream, Graphic& rGraphic, 
FilterConfigItem* pConfigItem );
 
 #endif
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 139437] Libre Office 7.0.3.1 operates only in safe mode, normal mode hangs with blank screen

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

--- Comment #6 from solidpur...@gmail.com ---
(In reply to solidpurple from comment #4)
> (In reply to steve -_- from comment #2)
> > Can you see how 7.0.4 behaves: 
> > https://www.libreoffice.org/download/download/
> 
> I am sorry to tell you,it did not make a difference. Program only works in
> safe mode

FYI Steve, I installed 7.0.4.1
https://git.libreoffice.org/core/+log/dcf040e67528d9187c66b2379df5ea4407429775

-- 
You are receiving this mail because:
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 139444] VLOOKUP function very slow on Large Tables in Calc

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

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #4 from m.a.riosv  ---
For me about a minute with O365 on the earth.

There are older bugs about vlookup performance

https://bugs.documentfoundation.org/buglist.cgi?quicksearch=vlookup_id=1247981

-- 
You are receiving this mail because:
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 139437] Libre Office 7.0.3.1 operates only in safe mode, normal mode hangs with blank screen

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

--- Comment #5 from solidpur...@gmail.com ---
(In reply to Telesto from comment #3)
> And please try a profile reset.. and update you're graphic drivers, if
> possible

Thank you Telesto, graphic driver updated and profile reset, unfortunately no
difference. Program only works in Safe Mode.

-- 
You are receiving this mail because:
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 139437] Libre Office 7.0.3.1 operates only in safe mode, normal mode hangs with blank screen

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

--- Comment #4 from solidpur...@gmail.com ---
(In reply to steve -_- from comment #2)
> Can you see how 7.0.4 behaves: https://www.libreoffice.org/download/download/

I am sorry to tell you,it did not make a difference. Program only works in safe
mode

-- 
You are receiving this mail because:
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/source

2021-01-06 Thread Eike Rathke (via logerrit)
 sw/source/filter/xml/xmltbli.cxx |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 0e37ded8d4aea25e5d9f7325fba0597f509147bc
Author: Eike Rathke 
AuthorDate: Wed Jan 6 15:02:05 2021 +0100
Commit: Eike Rathke 
CommitDate: Thu Jan 7 00:32:43 2021 +0100

Resolves: tdf#139126 DBL_MAX is a valid value, just not for Writer

Restore the old side effect behaviour where
"1.79769313486232E+308" was not converted back to DBL_MAX, Writer
doesn't check cell value after import for this "special value",
*cough*.

Change-Id: I31cf598d5f91d1f727d5f1f0e936a3505ea1b9e0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108875
Tested-by: Jenkins
Reviewed-by: Eike Rathke 

diff --git a/sw/source/filter/xml/xmltbli.cxx b/sw/source/filter/xml/xmltbli.cxx
index 263fe55c188c..061ea32d63e5 100644
--- a/sw/source/filter/xml/xmltbli.cxx
+++ b/sw/source/filter/xml/xmltbli.cxx
@@ -396,8 +396,10 @@ SwXMLTableCellContext_Impl::SwXMLTableCellContext_Impl(
 break;
 case XML_ELEMENT(OFFICE, XML_VALUE):
 {
+// Writer wrongly uses DBL_MAX to flag error but fails to
+// check for it after import, so check that here, tdf#139126.
 double fTmp;
-if (::sax::Converter::convertDouble(fTmp, aIter.toView()))
+if (::sax::Converter::convertDouble(fTmp, aIter.toView()) && 
fTmp < DBL_MAX)
 {
 m_fValue = fTmp;
 m_bHasValue = true;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 139457] New: Loading libraries with GlobalScope not working as described in LO Help

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

Bug ID: 139457
   Summary: Loading libraries with GlobalScope not working as
described in LO Help
   Product: LibreOffice
   Version: 7.1.0.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rafael.palma.l...@gmail.com

Created attachment 168728
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168728=edit
File with the Basic code described in the bug report

Hi! Help pages about Basic libraries state that the library must be loaded by
placing the GlobalScope.BasicLibraries.LoadLibrary("Library Name") statement
before the first macro in the module.

For example, the Help page for the Tools Library says: "This library must be
loaded before execution. Place the following statement before the first macro
in your module:
GlobalScope.BasicLibraries.LoadLibrary("Tools")"

Link:
https://help.libreoffice.org/7.1/en-US/text/sbasic/shared/03/lib_tools.html?DbPAR=BASIC#bm_id491529070339774

The problem is that these instructions don't seem correct. If I create a new
module in the Standard library of a new file and enter the following code (see
that the library is loaded before the first macro):


GlobalScope.BasicLibraries.LoadLibrary("Tools")

Sub Main
  'Just some random code to showcase the error
  MsgBox "Hello"
End Sub


Now, if I run the Main macro, I get the error message "BASIC syntax error.
Expected: Sub."

However, if I place the LoadLibrary statement inside the Sub, everything works
fine.

I am reporting this because this issue is either a bug in the Basic interpreter
or it is something that needs fixing in the Help pages.

I attached a ODS file with the example above for testing.

-- 
You are receiving this mail because:
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 137079] Default zoom ignored with deactivated user-specific settings

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

--- Comment #7 from sebick  ---
Thanks for the trying, but this only works for new documents. If you do you're
exact use case and open the attached test document, it'll open with a
non-default zoom:

1. Open writer
2. File => Templates => Manage Templates
3. Select Default Template => Context Menu => Edit
4. Change zoom to 100% => Save and close
5. Open "https://bugs.documentfoundation.org/attachment.cgi?id=165897;

=> Bug: document is opened with 120% zoom, instead of the default zoom of 100%
(defined in step 4)

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


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

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||mwtjunkm...@gmail.com

--- Comment #28 from V Stuart Foote  ---
*** Bug 139456 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 139456] Crash in LO Draw in MS Windows when pasting text into a rotated text box

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED

--- Comment #2 from V Stuart Foote  ---


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

-- 
You are receiving this mail because:
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: download.lst external/boost solenv/flatpak-manifest.in

2021-01-06 Thread Stephan Bergmann (via logerrit)
 download.lst   
  |4 -
 
external/boost/0001-This-bug-was-fixed-in-VC-2013-workaround-no-longer-a.patch.2
 |   40 --
 external/boost/StaticLibrary_boost_date_time.mk
  |2 
 external/boost/StaticLibrary_boost_filesystem.mk   
  |2 
 external/boost/UnpackedTarball_boost.mk
  |9 --
 external/boost/c++20-allocator.patch.0 
  |   24 --
 external/boost/clang-cl.patch.0
  |   28 ---
 external/boost/gcc9.patch.0
  |   10 --
 external/boost/include/boost/property_tree/ptree_fwd.hpp   
  |   31 +++
 solenv/flatpak-manifest.in 
  |6 -
 10 files changed, 38 insertions(+), 118 deletions(-)

New commits:
commit e0f1b5bd94550835c639efda4e4c9a801c78dbe9
Author: Stephan Bergmann 
AuthorDate: Wed Jan 6 15:11:07 2021 +0100
Commit: Stephan Bergmann 
CommitDate: Wed Jan 6 23:01:40 2021 +0100

Upgrade external/boost to latest Boost 1.75.0

*   has been 
generated
(on Fedora 33) with

> $ wget 
https://dl.bintray.com/boostorg/release/1.75.0/source/boost_1_75_0.tar.bz2
> $ printf 
'953db31e016db7bb207f11432bef7df100516eeb746843fa0486a222e3fd49cb 
boost_1_75_0.tar.bz2' | sha256sum -c # cf. 

> boost_1_75_0.tar.bz2: OK
> $ external/boost/repack_tarball.sh boost_1_75_0.tar.bz2
> Unpacking boost_1_75_0.tar.bz2 ...
> Removing unnecessary files ...
> Creating boost_1_75_0.tar.xz ...
> Cleaning up ...
> cc378a036a1cfd3af289f3da24deeb8dba7a729f61ab104c7b018a622e22d21b  
boost_1_75_0.tar.xz
> Done.

*  external/boost/StaticLibrary_boost_date_time.mk:  Even though
date_generators.cpp and greg_weekday.cpp are still present, their function
definitions are now covered by inline function definitions in include files,

> 
workdir/UnpackedTarball/boost/libs/date_time/src/gregorian/greg_weekday.cpp:23:17:
 error: redefinition of 'as_short_string'
>   greg_weekday::as_short_string() const
> ^
> 
workdir/UnpackedTarball/boost/boost/date_time/gregorian/greg_weekday.hpp:52:17: 
note: previous definition is here
> const char* as_short_string() const
> ^

etc. and

> 
workdir/UnpackedTarball/boost/libs/date_time/src/gregorian/date_generators.cpp:23:36:
 error: redefinition of 'nth_as_str'
>   BOOST_DATE_TIME_DECL const char* nth_as_str(int ele)
>^
> workdir/UnpackedTarball/boost/boost/date_time/date_generators.hpp:157:22: 
note: previous definition is here
>   inline const char* nth_as_str(int ele)
>  ^

*  external/boost/StaticLibrary_boost_filesystem.mk now lacked various 
symbols,
as seen when linking external/liborcus' orcus-parser library:

>   "boost::filesystem::emit_error(int, boost::system::error_code*, char 
const*)", referenced from:
[...]
>   "boost::filesystem::emit_error(int, boost::filesystem::path const&, 
boost::system::error_code*, char const*)", referenced from:
[...]
>   "boost::filesystem::emit_error(int, boost::filesystem::path const&, 
boost::filesystem::path const&, boost::system::error_code*, char const*)", 
referenced from:
[...]
>   
"boost::filesystem::filesystem_error::filesystem_error(std::__1::basic_string, std::__1::allocator > const&, 
boost::filesystem::path const&, boost::system::error_code)", referenced from:
[...]
>   
"boost::filesystem::filesystem_error::filesystem_error(std::__1::basic_string, std::__1::allocator > const&, 
boost::filesystem::path const&, boost::filesystem::path const&, 
boost::system::error_code)", referenced from:
[...]
>   "boost::filesystem::filesystem_error::~filesystem_error()", referenced 
from:
[...]
>   "boost::filesystem::detail::dir_itr_close(void*&, void*&)", referenced 
from:
[...]
>   
"boost::filesystem::detail::directory_iterator_construct(boost::filesystem::directory_iterator&,
 boost::filesystem::path const&, unsigned int, boost::system::error_code*)", 
referenced from:
[...]
>   
"boost::filesystem::detail::directory_iterator_increment(boost::filesystem::directory_iterator&,
 boost::system::error_code*)", referenced from:
[...]
>   "typeinfo for boost::filesystem::filesystem_error", referenced from:
[...]

*  No longer sure why external/boost/gcc9.patch.0 from
e7b8728f5c0292a6c6a18e76220b1769ecf25aa3 "external/boost: silence
-Werror=deprecated-copy (GCC trunk towards GCC 9)" was necessary at all, in

[Libreoffice-bugs] [Bug 139456] Crash in LO Draw in MS Windows when pasting text into a rotated text box

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

mwtjunkm...@gmail.com changed:

   What|Removed |Added

 CC||mwtjunkm...@gmail.com

--- Comment #1 from mwtjunkm...@gmail.com ---
Created attachment 168727
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168727=edit
test file

This Microsoft Windows LO Draw document has two text boxes, one normal, one
rotated 180 degrees. Copying text from the first text box into the rotated one
causes LO to lock up.

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


[Libreoffice-bugs] [Bug 139456] New: Crash in LO Draw in MS Windows when pasting text into a rotated text box

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

Bug ID: 139456
   Summary: Crash in LO Draw in MS Windows when pasting text into
a rotated text box
   Product: LibreOffice
   Version: 7.1.0.1 rc
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mwtjunkm...@gmail.com

Description:
A crash forcing a reboot of the computer (task manager cannot kill LO) when
pasting text into a rotated text box.

Steps to Reproduce:
1. Launch Microsoft Windows Libre Office Draw
2. Create a text box. Type in the text box. 
3. Create another text box. Type in the text box.
4. Rotate the second text box
5. Copy the text from the first text box into the second text box.

Actual Results:
LO locks up to the point where a warm reboot of the computer is required.

Expected Results:
Text gets pasted into the rotated text box.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Version: 7.1.0.1 (x64)
Build ID: b585d7d90ab863bf29b2d110c174c0c2a98f3ee4
CPU threads: 8; OS: Windows 10.0 Build 21277; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

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


[Libreoffice-bugs] [Bug 139455] New: Removing cell border from neighbor fails

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

Bug ID: 139455
   Summary: Removing cell border from neighbor fails
   Product: LibreOffice
   Version: 7.0.3.1 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: epper.marsh...@gmail.com

Description:
If I add a border to cell B2 and then go to A2 and try to remove it's border
I'd expect it to remove B2's left border, instead nothing happens.

Steps to Reproduce:
1. Add a left, double, or full border to B2
2. go to A2 and attempt to remove the right border by clearing borders

Actual Results:
Nothing changes

Expected Results:
B2's left border to go away


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.0.3.1 (x64)
Build ID: d7547858d014d4cf69878db179d326fc3483e082
CPU threads: 12; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

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


Re: About preparing migration towards gtk4

2021-01-06 Thread Julien Nabet

On 06/01/2021 14:56, Michael Meeks wrote:

Hi Julien,

On 18/12/2020 21:46, julien2412 wrote:

Gtk4 has been released 2 days ago, I know that migration from a version to
another version is not a 1 month work, but thought it could be interesting
and it can't hurt the current state of LO to begin to prepare it by

...
Then again - doing work to use more modern APIs sounds sensible -
assuming that they are not too modern (I guess lots of them tend to get
added when they developed gtk4 which is really very recently for those
who care about APIs >6 months old ;-)


Thank you Michael for your feedback. I must recognize I just heard about 
SolarMutex, Uno, etc. but even if I read during days the Uno 
code/SolarMutex mechanism, I'll never have the patience to read the 
related code (and above all I'm not smart enough to understand how it 
works).


What I understand is there's a lot of work to do to be gtk4 compliant so 
I suppose it's not too early at all to think about it considering the 
changes it needs.


Hope gtk3 won't be deprecated too soon by Gnome :-)

Julien

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


[Libreoffice-bugs] [Bug 92456] Vertical lookup freeze with large row

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

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

   What|Removed |Added

 CC||noelgran...@gmail.com

--- Comment #11 from Roman Kuznetsov <79045_79...@mail.ru> ---
Noel, could you please look at it as a performance problem guru. There is a
FlameGraph in attach here. Thank you.

-- 
You are receiving this mail because:
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 92456] Vertical lookup freeze with large row

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

--- Comment #10 from Roman Kuznetsov <79045_79...@mail.ru> ---
Created attachment 168726
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168726=edit
FlameGraph

-- 
You are receiving this mail because:
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 126570] Animate GIF becomes static while playing an Impress presentation

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

--- Comment #18 from Volga  ---
On 7.1.0.1 it’s works with me.

Version: 7.1.0.1 (x64)
Build ID: b585d7d90ab863bf29b2d110c174c0c2a98f3ee4
CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: zh-CN (zh_CN); UI: zh-CN
Calc: threaded

Let me know if anyone else sucessful to reproduce.

-- 
You are receiving this mail because:
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 139139] [EDITING] Selecting Border Style from the toolbar changes Line Width.

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

pavlog  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||pavlograd...@gmail.com
 Whiteboard| QA:needsComment|

--- Comment #1 from pavlog  ---
I can't reproduce in 

Version: 7.2.0.0.alpha0+ (x64)
Build ID: ecb916667b633f8647790e040226b093760e6cfe
CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

Can you please clarify the steps - what style etc? I have set the bug's status
to 'NEEDINFO'. Please change it back to 'UNCONFIRMED' once the steps are
provided

-- 
You are receiving this mail because:
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 139454] Base: Open Insert table design causes memory usage bump of 600 MB with empty database

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

Telesto  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Telesto  ---
@Julien
Do you have any reference with Linux (64 bit).. I assume this being wrong, but
knowing is something else

As it appears Java playing a part?

-- 
You are receiving this mail because:
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 139454] Base: Open Insert table design causes memory usage bump of 600 MB with empty database

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

Telesto  changed:

   What|Removed |Added

 CC||mwtjunkm...@gmail.com

--- Comment #1 from Telesto  ---
@MWT
Not clue what the expect, maybe bit much

-- 
You are receiving this mail because:
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 139454] New: Base: Open Insert table design causes memory usage bump of 600 MB with empty database

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

Bug ID: 139454
   Summary: Base: Open Insert table design causes memory usage
bump of 600 MB with empty database
   Product: LibreOffice
   Version: 6.4.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Base: Open Insert table design causes memory usage bump of 600 MB with empty
database

Steps to Reproduce:
1. Launch LO
2. Select Base Database, bringing up the Database Wizard
3. Select Create a new Database (HSQLDB is the only option)
4. Hit Next.
5. Leave all defaults on the "Decide How to Proceed" wizard page
6. Hit Next, bringing up the Save As dialog box
7. Name the database and click Save, bringing up the tasks window in Base
8. Click Create Table In Design View, bring up a new table design grid

Actual Results:
200 MB bump switch from form Tab to Tables tab (expected opening existing
database)
600 MB bump create Table In Design View

Expected Results:
No clue


Reproducible: Always


User Profile Reset: No



Additional Info:
Found in
7.2

and in
Version: 6.4.0.0.beta1+ (x64)
Build ID: 20be5cd0bdc57d812bf34a2debfe48caa51de881
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: default; VCL: win; 
Locale: nl-NL (nl_NL); UI-Language: en-US
Calc: CL

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


[Libreoffice-bugs] [Bug 139437] Libre Office 7.0.3.1 operates only in safe mode, normal mode hangs with blank screen

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

--- Comment #3 from Telesto  ---
And please try a profile reset.. and update you're graphic drivers, if possible

-- 
You are receiving this mail because:
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 139439] Fatal error: bad allocation

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

--- Comment #2 from Telesto  ---
And use an x64 build.. It looks you're using an x32 build. Out of Memory issue
(at software level)

-- 
You are receiving this mail because:
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: helpcontent2

2021-01-06 Thread Seth Chaiklin (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5b50095e454c41ef394f5b5687fb1cd24286b755
Author: Seth Chaiklin 
AuthorDate: Wed Jan 6 20:48:49 2021 +0100
Commit: Gerrit Code Review 
CommitDate: Wed Jan 6 20:48:49 2021 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 491c08b20af8a0d1b2fcf3caf74926202fbcb541
  - tdf#107229  update "Save as Template" help

   The labels on the controls changed with
   https://gerrit.libreoffice.org/c/core/+/107813
   This patch:
   * updates the labels to the new names,
   + add a link in the  to the
 Template Manager help page.
   + add  that explains this is recommended method
 and mentions "Import" as another way to add
 templates.

Change-Id: Iad5b580d6c2f8917c37eb6cac9ba5b1c94adaa8e
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/107998
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin 

diff --git a/helpcontent2 b/helpcontent2
index ef042f162e74..491c08b20af8 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit ef042f162e7403d0afb776b2efe81590e5242012
+Subproject commit 491c08b20af8a0d1b2fcf3caf74926202fbcb541
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: source/text

2021-01-06 Thread Seth Chaiklin (via logerrit)
 source/text/shared/01/01110300.xhp |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 491c08b20af8a0d1b2fcf3caf74926202fbcb541
Author: Seth Chaiklin 
AuthorDate: Sat Dec 19 16:45:49 2020 +0100
Commit: Seth Chaiklin 
CommitDate: Wed Jan 6 20:48:49 2021 +0100

tdf#107229  update "Save as Template" help

   The labels on the controls changed with
   https://gerrit.libreoffice.org/c/core/+/107813
   This patch:
   * updates the labels to the new names,
   + add a link in the  to the
 Template Manager help page.
   + add  that explains this is recommended method
 and mentions "Import" as another way to add
 templates.

Change-Id: Iad5b580d6c2f8917c37eb6cac9ba5b1c94adaa8e
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/107998
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin 

diff --git a/source/text/shared/01/01110300.xhp 
b/source/text/shared/01/01110300.xhp
index 87e8501f6..132d6209f 100644
--- a/source/text/shared/01/01110300.xhp
+++ b/source/text/shared/01/01110300.xhp
@@ -36,15 +36,17 @@
   Choose 
File - Templates - Save as Template.
 
 
-Template Name
+Enter Template Name
   Enter a name for the template.
 
-Template Category
+Select Template Category
   Select a category in which to save the new template.
 
 Set as default template
   The new template will be used as the default 
template.
+Templates added with this command appear 
automatically in the Template Manager. You can also use the 
Template Manager to import templates. Both methods are recommended 
for adding templates.
 
+
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2021-01-06 Thread Seth Chaiklin (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b4e91e0c4d68c4926f532848a7d5869e55fcf12f
Author: Seth Chaiklin 
AuthorDate: Wed Jan 6 20:42:22 2021 +0100
Commit: Gerrit Code Review 
CommitDate: Wed Jan 6 20:42:22 2021 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to ef042f162e7403d0afb776b2efe81590e5242012
  - tdf#107229 update help page for template manager

 ( shared/guide/template_manager.xhp )
   + variable to  for embedding into Related Topics
   + add "Thumbnail View" and "List View" and associated icon tables
   - remove , which only repeats the information in 
   + add missing "you" in introduction
   + add "Presentations" to filter list and XML markup to paragraph
   + add "All Categories" to Category list and XML markup to paragraph
   * spelling correction "defaults" -> "default"
   * improve explanation in  about adding folders to Template path
  and XML markup in paragraph
   * change "Settings button" to "Settings icon" to be consistent with
 the "Settings" section; add "Reset Default Template" option and
 explanation.
   + add "Rename Category" to Settings submenu, and add XML markup
   + Add icon tables for "Setting", "Import", "Export", "Extensions"
   - Remove "tip" that only says "Refer to standard template" (which
was included in original version from 2017.  Same link is
already included in Related topics.
   * Correct label from "Browse templates online" --> "Extensions"
   * updated description for searching for templates online
   * templates.libreoffice.org --> extensions.libreoffice.org.
  Because tags are curated on that website, have added the tag for
  templates to the URL.  (changed in two places)
   + add explanations about how to select multiple templates for "Move"
 and "Export", thereby implying that batch operations are possible.
   + add tip with sys-switch about shortcut key to select all in
 connection with "Move" and "Export"
   + Add  heading before context menu items
   * Change context menu item headings from  to 
   * change "Delete" explanation to indicate that multiple templates can
   be deleted, and add XML markup
   + Add  that builtin templates cannot be edited, renamed,
   or deleted
   * correction to Example 1 about selecting/opening templates
   * correct reference to icon in Example 2 and add period.
   * change (e.g.,) to "for example" in Example 2
   * Reworked Example 3 from "negative" formulation to "positve"
   statement of what can be used, and then note that unavailable
   features can be accessed by restarting Template Manager.

Change-Id: Ie53d865545a78224bcd018928667edd33e4b51dc
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/107549
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 40c4109b5b85..ef042f162e74 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 40c4109b5b8554f5c068b0ccadad5577a6a0096c
+Subproject commit ef042f162e7403d0afb776b2efe81590e5242012
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: source/text

2021-01-06 Thread Seth Chaiklin (via logerrit)
 source/text/shared/guide/template_manager.xhp |  151 +++---
 1 file changed, 112 insertions(+), 39 deletions(-)

New commits:
commit ef042f162e7403d0afb776b2efe81590e5242012
Author: Seth Chaiklin 
AuthorDate: Fri Dec 11 12:47:28 2020 +0100
Commit: Olivier Hallot 
CommitDate: Wed Jan 6 20:42:22 2021 +0100

tdf#107229 update help page for template manager

 ( shared/guide/template_manager.xhp )
   + variable to  for embedding into Related Topics
   + add "Thumbnail View" and "List View" and associated icon tables
   - remove , which only repeats the information in 
   + add missing "you" in introduction
   + add "Presentations" to filter list and XML markup to paragraph
   + add "All Categories" to Category list and XML markup to paragraph
   * spelling correction "defaults" -> "default"
   * improve explanation in  about adding folders to Template path
  and XML markup in paragraph
   * change "Settings button" to "Settings icon" to be consistent with
 the "Settings" section; add "Reset Default Template" option and
 explanation.
   + add "Rename Category" to Settings submenu, and add XML markup
   + Add icon tables for "Setting", "Import", "Export", "Extensions"
   - Remove "tip" that only says "Refer to standard template" (which
was included in original version from 2017.  Same link is
already included in Related topics.
   * Correct label from "Browse templates online" --> "Extensions"
   * updated description for searching for templates online
   * templates.libreoffice.org --> extensions.libreoffice.org.
  Because tags are curated on that website, have added the tag for
  templates to the URL.  (changed in two places)
   + add explanations about how to select multiple templates for "Move"
 and "Export", thereby implying that batch operations are possible.
   + add tip with sys-switch about shortcut key to select all in
 connection with "Move" and "Export"
   + Add  heading before context menu items
   * Change context menu item headings from  to 
   * change "Delete" explanation to indicate that multiple templates can
   be deleted, and add XML markup
   + Add  that builtin templates cannot be edited, renamed,
   or deleted
   * correction to Example 1 about selecting/opening templates
   * correct reference to icon in Example 2 and add period.
   * change (e.g.,) to "for example" in Example 2
   * Reworked Example 3 from "negative" formulation to "positve"
   statement of what can be used, and then note that unavailable
   features can be accessed by restarting Template Manager.

Change-Id: Ie53d865545a78224bcd018928667edd33e4b51dc
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/107549
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/shared/guide/template_manager.xhp 
b/source/text/shared/guide/template_manager.xhp
index 9d6a16f9b..8a4037178 100644
--- a/source/text/shared/guide/template_manager.xhp
+++ b/source/text/shared/guide/template_manager.xhp
@@ -27,7 +27,6 @@
 
 
 
-
 
 
 
@@ -41,9 +40,8 @@
   templates;template manager
 
 
-
-Manage Templates
-The Template Manager dialog makes it easy to 
manage templates and allows to start new documents using 
templates.
+Manage 
Templates
+The Template Manager dialog makes it easy to 
manage templates and allows you to start new documents using 
templates.
 
 
 
@@ -56,61 +54,136 @@
 
 Templates save editing time by starting new documents with 
pre-filled contents and formatting. The Template Manager allows you to access 
and organize templates in %PRODUCTNAME.
 %PRODUCTNAME comes with a set of built-in templates that can 
be used to create documents, presentations, spreadsheets or drawings. You may 
use templates available in the template manager, create your own templates or 
browse online for additional templates.
-If you have opened the %PRODUCTNAME start 
center and have not yet opened a document or application, the Template Manager 
may be accessed differently. Ctrl-Shift-N will still open 
the Template Manager, but it may also be accessed by choosing Templates from 
the left sidebar, and then choosing Manage Templates.
 
 Main Window – Template Choices
 Previews of available templates show up in the main window 
based on your search and filtering choices. Double-click on any template icon 
to open a new document with the contents and formatting of the 
template.
+Choose Thumbnail 
View or List View, at the top right, to change how the 
templates are displayed.
+
+
+
+
+Thumbnail View Icon
+
+   
+   
+   Thumbnail 
View
+   
+
+
+
+
+
+
+List View Icon
+
+   
+   
+   Listview
+   
+
+
 
 
 Search
-You may search for a template 

[Libreoffice-bugs] [Bug 139453] UI: The Base preview for recent opened files isn't it. The transparency around the icon feels off

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

Telesto  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval

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


[Libreoffice-ux-advise] [Bug 139453] UI: The Base preview for recent opened files isn't it. The transparency around the icon feels off

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

Telesto  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval

-- 
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 139453] UI: The Base preview for recent opened files isn't it. The transparency around the icon feels off

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

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

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


[Libreoffice-bugs] [Bug 139453] New: UI: The Base preview for recent opened files isn't it. The transparency around the icon feels off

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

Bug ID: 139453
   Summary: UI: The Base preview for recent opened files isn't it.
The transparency around the icon feels off
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
UI: The Base preview for recent opened files isn't it. The transparency around
the icon feels off 

Steps to Reproduce:
1. Open Base
2. Create a database with the wizard default settings.. and save
3. Close (go back to start center)

Actual Results:
See screenshot

Expected Results:
Not totally sure, but this doesn't look nice


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.2.0.0.alpha0+ (x64)
Build ID: 4e3ce9dd6ace0b22f7b3f45cf2338b201f4dc305
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: default; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL

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


[Libreoffice-bugs] [Bug 139413] Severe Bug - CALC cumputes sum wrong!

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

--- Comment #16 from Telesto  ---
@VistaMail1
I'm looking at you're file right now.. which I didn't before

What result did you expect in A23 and B23:  as it's not totally clear what the
desired result should be. I do see something which I possibility not being
correct (at least what I think I would expect). But well.. comment 0 is partly
bug report partly airing but not properly (objectively) in describing the
expected/desired result

And makes a different in order (doing merging before or after sum make sense?).
What if you change different part of the column.. 

Not a regular calc user myself..

-- 
You are receiving this mail because:
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: bin/find-can-be-private-symbols.classes.results bin/find-mergedlib-can-be-private.classes.results bin/gla11y bin/lint-ui.py include/vcl vcl/source

2021-01-06 Thread Caolán McNamara (via logerrit)
 bin/find-can-be-private-symbols.classes.results   |1 
 bin/find-mergedlib-can-be-private.classes.results |1 
 bin/gla11y|1 
 bin/lint-ui.py|   11 
 include/vcl/layout.hxx|   22 -
 vcl/source/window/builder.cxx |2 
 vcl/source/window/layout.cxx  |   52 --
 7 files changed, 90 deletions(-)

New commits:
commit 08dc46adc1aa50deb645f7548a264e084d17f5f0
Author: Caolán McNamara 
AuthorDate: Sat Jan 2 17:16:02 2021 +
Commit: Caolán McNamara 
CommitDate: Wed Jan 6 20:34:00 2021 +0100

remove support for deprecated GtkAlignment

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

diff --git a/bin/find-can-be-private-symbols.classes.results 
b/bin/find-can-be-private-symbols.classes.results
index fa75e6edb01b..0ddaeba94322 100644
--- a/bin/find-can-be-private-symbols.classes.results
+++ b/bin/find-can-be-private-symbols.classes.results
@@ -147,7 +147,6 @@ SyntaxHighlighter::Tokenizer
 SystemWindow::ImplData
 TBCExtraInfo
 TBCGeneralInfo
-VclAlignment
 VclBin
 VclBuilder::MenuAndId
 VclBuilder::ParserState
diff --git a/bin/find-mergedlib-can-be-private.classes.results 
b/bin/find-mergedlib-can-be-private.classes.results
index 77df8bb4457e..7a05b3697567 100644
--- a/bin/find-mergedlib-can-be-private.classes.results
+++ b/bin/find-mergedlib-can-be-private.classes.results
@@ -197,7 +197,6 @@ VCLXEdit
 VCLXMenuBar
 VCLXSpinField
 ValueSet
-VclAlignment
 VclBin
 VclBuilder::MenuAndId
 VclBuilder::ParserState
diff --git a/bin/gla11y b/bin/gla11y
index 7883a6233199..7376f672d866 100755
--- a/bin/gla11y
+++ b/bin/gla11y
@@ -85,7 +85,6 @@ widgets_ignored = widgets_toplevel + [
 'GtkExpander',
 'GtkViewport',
 'GtkScrolledWindow',
-'GtkAlignment',
 'GtkRevealer',
 'GtkSearchBar',
 'GtkHeaderBar',
diff --git a/bin/lint-ui.py b/bin/lint-ui.py
index 7bbf46a2a113..c04eba63bb76 100755
--- a/bin/lint-ui.py
+++ b/bin/lint-ui.py
@@ -142,17 +142,6 @@ def check_frames(root):
 if len(frame_alignments) > 0:
 lint_assert(False, "Deprecated GtkAlignment in GtkFrame with id = 
'" + frame.attrib['id'] + "'", frame)
 
-def check_alignment_top_padding(alignment):
-top_padding_properties = 
alignment.findall("./property[@name='top_padding']")
-assert len(top_padding_properties) <= 1
-# TODO reenable when we are ready to fix
-# if len(top_padding_properties) < 1:
-# lint_assert(False, "No GtkAlignment 'top_padding' set. Should 
probably be " + ALIGNMENT_TOP_PADDING, alignment)
-#if len(top_padding_properties) == 1:
-#top_padding = top_padding_properties[0]
-#lint_assert(top_padding.text == ALIGNMENT_TOP_PADDING,
-#"GtkAlignment 'top_padding' should be " + 
ALIGNMENT_TOP_PADDING, alignment)
-
 def check_title_labels(root):
 labels = root.findall(".//child[@type='label']")
 for label in labels:
diff --git a/include/vcl/layout.hxx b/include/vcl/layout.hxx
index 5c4a60c4f5e8..9a896915b1ed 100644
--- a/include/vcl/layout.hxx
+++ b/include/vcl/layout.hxx
@@ -449,28 +449,6 @@ private:
 virtual OUString getDefaultAccessibleName() const override;
 };
 
-class UNLESS_MERGELIBS(VCL_DLLPUBLIC) VclAlignment final : public VclBin
-{
-public:
-VclAlignment(vcl::Window *pParent)
-: VclBin(pParent)
-, m_nBottomPadding(0)
-, m_nLeftPadding(0)
-, m_nRightPadding(0)
-, m_nTopPadding(0)
-{
-}
-virtual bool set_property(const OString , const OUString ) 
override;
-virtual void DumpAsPropertyTree(tools::JsonWriter&) override;
-private:
-virtual Size calculateRequisition() const override;
-virtual void setAllocation(const Size ) override;
-sal_Int32 m_nBottomPadding;
-sal_Int32 m_nLeftPadding;
-sal_Int32 m_nRightPadding;
-sal_Int32 m_nTopPadding;
-};
-
 class DisclosureButton;
 class CheckBox;
 
diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx
index 7834d9f9deed..7456e4bbfece 100644
--- a/vcl/source/window/builder.cxx
+++ b/vcl/source/window/builder.cxx
@@ -1857,8 +1857,6 @@ VclPtr VclBuilder::makeObject(vcl::Window 
*pParent, const OString &
 m_pParserState->m_aExpanderWidgets.push_back(pExpander);
 xWindow = pExpander;
 }
-else if (name == "GtkAlignment")
-xWindow = VclPtr::Create(pParent);
 else if (name == "GtkButton" || (!m_bLegacy && name == "GtkToggleButton"))
 {
 VclPtr xButton;
diff --git a/vcl/source/window/layout.cxx b/vcl/source/window/layout.cxx
index 1c503194b5ae..499ea856799d 100644
--- a/vcl/source/window/layout.cxx
+++ b/vcl/source/window/layout.cxx
@@ -1534,58 +1534,6 @@ void VclFrame::DumpAsPropertyTree(tools::JsonWriter& 
rJsonWriter)
 

[Libreoffice-bugs] [Bug 85677] Dragging on a touchscreen display highlights instead of scrolling

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

V Stuart Foote  changed:

   What|Removed |Added

Summary|Dragging on a Windows   |Dragging on a touchscreen
   |touchscreen highlights  |display highlights instead
   |instead of scrolling|of scrolling

-- 
You are receiving this mail because:
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: cui/uiconfig

2021-01-06 Thread Caolán McNamara (via logerrit)
 cui/uiconfig/ui/cellalignment.ui |  632 +--
 cui/uiconfig/ui/charnamepage.ui  | 1279 +++
 cui/uiconfig/ui/colorpage.ui | 1436 +-
 cui/uiconfig/ui/colorpickerdialog.ui |  758 ++---
 cui/uiconfig/ui/croppage.ui  |  599 +--
 cui/uiconfig/ui/effectspage.ui   | 1032 +--
 cui/uiconfig/ui/eventassignpage.ui   |  218 +---
 cui/uiconfig/ui/gradientpage.ui  |  935 -
 cui/uiconfig/ui/hangulhanjaeditdictdialog.ui |  320 ++---
 cui/uiconfig/ui/hatchpage.ui |  529 -
 cui/uiconfig/ui/hyperlinkdocpage.ui  |  510 -
 cui/uiconfig/ui/insertfloatingframe.ui   |  418 +++
 cui/uiconfig/ui/macroselectordialog.ui   |  142 +-
 cui/uiconfig/ui/numberingformatpage.ui   |  750 ++---
 cui/uiconfig/ui/numberingoptionspage.ui  | 1022 +-
 cui/uiconfig/ui/numberingpositionpage.ui |  738 ++---
 cui/uiconfig/ui/optadvancedpage.ui   |  554 --
 cui/uiconfig/ui/optasianpage.ui  |  457 
 cui/uiconfig/ui/optbasicidepage.ui   |  240 ++--
 cui/uiconfig/ui/optctlpage.ui|  282 ++---
 cui/uiconfig/ui/optfltrembedpage.ui  |  331 ++
 cui/uiconfig/ui/optfltrpage.ui   |  316 ++---
 cui/uiconfig/ui/optgeneralpage.ui|  484 
 cui/uiconfig/ui/opthtmlpage.ui   |  720 ++---
 cui/uiconfig/ui/optlanguagespage.ui  |  675 +---
 cui/uiconfig/ui/optlingupage.ui  |  662 +---
 cui/uiconfig/ui/optonlineupdatepage.ui   |  514 -
 cui/uiconfig/ui/optsavepage.ui   |  618 +--
 cui/uiconfig/ui/optsecuritypage.ui   |  508 -
 cui/uiconfig/ui/optuserpage.ui   | 1466 +--
 cui/uiconfig/ui/optviewpage.ui   | 1045 +--
 cui/uiconfig/ui/pageformatpage.ui| 1018 +-
 cui/uiconfig/ui/paragalignpage.ui|  478 
 cui/uiconfig/ui/paraindentspacing.ui |  554 --
 cui/uiconfig/ui/paratabspage.ui  |  641 +--
 cui/uiconfig/ui/patterntabpage.ui|  413 +++
 cui/uiconfig/ui/positionpage.ui  |  616 +--
 cui/uiconfig/ui/possizetabpage.ui|  670 +---
 cui/uiconfig/ui/shadowtabpage.ui |  404 +++
 cui/uiconfig/ui/slantcornertabpage.ui|  436 +++-
 cui/uiconfig/ui/splitcellsdialog.ui  |  176 +--
 cui/uiconfig/ui/swpossizepage.ui |  852 +++
 cui/uiconfig/ui/textanimtabpage.ui   |  664 ++--
 cui/uiconfig/ui/textattrtabpage.ui   |  592 +-
 cui/uiconfig/ui/textflowpage.ui  |  906 
 cui/uiconfig/ui/twolinespage.ui  |  216 +--
 46 files changed, 13866 insertions(+), 14960 deletions(-)

New commits:
commit bd14c414082236c4be8fef8eb488afbd3dd481c6
Author: Caolán McNamara 
AuthorDate: Sun Jan 3 21:26:31 2021 +
Commit: Caolán McNamara 
CommitDate: Wed Jan 6 20:33:20 2021 +0100

drop deprecated GtkAlignment, move left/top-padding into child 
margin-start/top

for cui part c

git show -w is recommended to view these changesets

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

diff --git a/cui/uiconfig/ui/cellalignment.ui b/cui/uiconfig/ui/cellalignment.ui
index 59820059ef28..4de39551206e 100644
--- a/cui/uiconfig/ui/cellalignment.ui
+++ b/cui/uiconfig/ui/cellalignment.ui
@@ -26,224 +26,110 @@
 0
 none
 
-  
+  
+  
 True
 False
-6
-12
+6
+12
+12
+6
 
   
-  
+  
 True
 False
+start
 6
 12
 
-  
-  
+  
 True
 False
-start
-6
-12
-
-  
-True
-False
-_Degrees:
-True
-spinDegrees
-0
-  
-  
-0
-0
-  
-
-
-  
-True
-False
-_Reference edge:
-True
-   

[Libreoffice-bugs] [Bug 85677] Dragging on a Windows touchscreen highlights instead of scrolling

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||daleelt...@gmail.com

--- Comment #22 from V Stuart Foote  ---
*** Bug 139452 has been marked as a duplicate of this bug. ***

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


  1   2   3   >