[Libreoffice-bugs] [Bug 153562] Pasting Selected Range to Sheet as BMP Image, It will be a Chart Image without content.

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153562

nobu  changed:

   What|Removed |Added

Version|7.4.3.2 release |7.4.0.3 release

--- Comment #7 from nobu  ---
Reproducible with Version 7.4.2.3 64bit, OS:Windows10 64bit

Reproducible with Version 7.4.1.2 64bit, OS:Windows10 64bit

Reproducible with Version 7.4.0.3 64bit, OS:Windows10 64bit

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

[Libreoffice-commits] core.git: sw/source writerfilter/inc writerfilter/source

2023-02-12 Thread Paris Oplopoios (via logerrit)
 sw/source/core/fields/docufld.cxx |   12 ++--
 sw/source/filter/ww8/docxattributeoutput.cxx  |2 +-
 sw/source/filter/ww8/docxattributeoutput.hxx  |1 +
 writerfilter/inc/dmapper/CommentProperties.hxx|4 ++--
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |6 +++---
 5 files changed, 9 insertions(+), 16 deletions(-)

New commits:
commit ce3d8f7e082afbc4a3139c723cb4533579523fe2
Author: Paris Oplopoios 
AuthorDate: Thu Jan 19 18:52:41 2023 +0200
Commit: Miklos Vajna 
CommitDate: Mon Feb 13 07:58:38 2023 +

Fix typo, improve code readability, fix comment

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

diff --git a/sw/source/core/fields/docufld.cxx 
b/sw/source/core/fields/docufld.cxx
index d9e998ad41f4..09ffdc4437e3 100644
--- a/sw/source/core/fields/docufld.cxx
+++ b/sw/source/core/fields/docufld.cxx
@@ -1913,20 +1913,12 @@ bool SwPostItField::QueryValue( uno::Any& rAny, 
sal_uInt16 nWhichId ) const
 break;
 case FIELD_PROP_PAR5:
 {
-OUString sTemp;
-std::stringstream ss;
-ss << std::uppercase << std::hex << m_nParentId;
-sTemp = OUString::createFromAscii(ss.str().c_str());
-rAny <<= sTemp;
+rAny <<= OUString(OUString::number(m_nParentId, 
16).toAsciiUpperCase());
 }
 break;
 case FIELD_PROP_PAR6:
 {
-OUString sTemp;
-std::stringstream ss;
-ss << std::uppercase << std::hex << m_nPostItId;
-sTemp = OUString::createFromAscii(ss.str().c_str());
-rAny <<= sTemp;
+rAny <<= OUString(OUString::number(m_nPostItId, 
16).toAsciiUpperCase());
 }
 break;
 default:
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index 528033e7b3b7..e40d6c0b3db3 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -8892,7 +8892,7 @@ void DocxAttributeOutput::WritePostItFieldsResolved()
 if (data.parentStatus == ParentStatus::HasParent)
 {
 // Since parent fields have been resolved first, they should 
already have an id
-auto& aParentFieldData = 
m_postitFields[data.parentIndex].second;
+const PostItDOCXData& aParentFieldData = 
m_postitFields[data.parentIndex].second;
 sParentId = NumberToHexBinary(aParentFieldData.lastParaId);
 }
 else
diff --git a/sw/source/filter/ww8/docxattributeoutput.hxx 
b/sw/source/filter/ww8/docxattributeoutput.hxx
index f61765d62832..29abf6badce8 100644
--- a/sw/source/filter/ww8/docxattributeoutput.hxx
+++ b/sw/source/filter/ww8/docxattributeoutput.hxx
@@ -982,6 +982,7 @@ private:
 std::vector m_aPostponedActiveXControls;
 const SwField* m_PendingPlaceholder;
 
+/// Used to store the parent status of a PostIt (parent/child/neither)
 enum class ParentStatus
 {
 None,
diff --git a/writerfilter/inc/dmapper/CommentProperties.hxx 
b/writerfilter/inc/dmapper/CommentProperties.hxx
index fe66cceed3f8..c554418108c4 100644
--- a/writerfilter/inc/dmapper/CommentProperties.hxx
+++ b/writerfilter/inc/dmapper/CommentProperties.hxx
@@ -16,8 +16,8 @@ namespace writerfilter
 /**
  A container for the extended comment properties linked to the last paragraph 
of a comment
 
- Corresponds to the data available in w5:commentEx elements from 
commentsExtended stream
- ([MS-DOCX]): resolved state and parent (referring to comment that this one 
answers to; TODO).
+ Corresponds to the data available in w15:commentEx elements from 
commentsExtended stream
+ ([MS-DOCX]): resolved state and parent (referring to comment that this one 
answers to).
 
  @since 7.2
 */
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 7f4c800b1002..46260200d7a1 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -3838,10 +3838,10 @@ void DomainMapper_Impl::PopAnnotation()
 try
 {
 if (m_bAnnotationResolved)
-m_xAnnotationField->setPropertyValue("Resolved", 
css::uno::Any(true));
+m_xAnnotationField->setPropertyValue("Resolved", uno::Any(true));
 
-m_xAnnotationField->setPropertyValue("ParaIdParent", 
css::uno::Any(m_sAnnotationParent));
-m_xAnnotationField->setPropertyValue("ParaId", 
css::uno::Any(m_sAnnotationImportedParaId));
+m_xAnnotationField->setPropertyValue("ParaIdParent", 
uno::Any(m_sAnnotationParent));
+m_xAnnotationField->setPropertyValue("ParaId", 
uno::Any(m_sAnnotationImportedParaId));
 
 // See if the annotation will be a single position or a range.
 if 

[Libreoffice-bugs] [Bug 146998] First line of second paragraph does not wrap when picture in first paragraph extends below descender line (document specific?)

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146998

--- Comment #11 from Brian  ---
I checked in my installed version 7.3.7.2 and the current stable version
7.5.0.3 and it's still present in both. I also tried bringing in another random
image to play with (in the bugged file) and the behavior persists.

Additionally, while I was playing around with the file I discovered you can
make the bug more noticeable if you increase the paragraph spacing (via the
side bar deck). Increasing the spacing, to for example 1", really shows off the
fact that the bottom edge of the top picture can be any where within the gap
between the paragraphs and it will cause just the first line of the lower
paragraph to not wrap. I tried copying the content of the document and pasting
it into a new document and the bug goes away.

One thing that also went away was the larger paragraph spacing. It went back to
the default of 0.1". I also noticed in the bugged document changing the
paragraph spacing with the control in the side bar deck changed the spacing in
ALL paragraphs, even with no selected text. All where changed even with only
one selected. They all change together even when right-clicking and using the
dialog box. This does not happen with a new document. Paragraph spacing
operates only on the paragraph with the cursor or multiple selected paragraphs.

As an experiment I pasted the paragraphs of my original comment of 2022-01-26
at the bottom of the original document and they are not affected by this "group
spacing" behavior. I also dragged the images down to these paragraphs and the
wrapping behaves correctly. However, if the upper image intrudes into the lower
paragraph, the lower image is still forced all the way to the right page margin
and I have trouble dragging it back. I have to drag it far more to the left
than I should, as if there is some horizontal offset (I think equal to the
upper image width) being applied.

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

[Libreoffice-bugs] [Bug 143148] Use pragma once instead of include guards (Episode 2: Endgame)

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143148

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

https://git.libreoffice.org/core/commit/74501c5da13634632259f738d59b0273e2417147

tdf#143148 Use pragma once in vcl

It will be available in 7.6.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-commits] core.git: vcl/inc

2023-02-12 Thread deepanshuraj099 (via logerrit)
 vcl/inc/unx/gendata.hxx |5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

New commits:
commit 74501c5da13634632259f738d59b0273e2417147
Author: deepanshuraj099 
AuthorDate: Sun Feb 12 12:44:30 2023 +0530
Commit: Ilmari Lauhakangas 
CommitDate: Mon Feb 13 07:40:04 2023 +

tdf#143148 Use pragma once in vcl

Change-Id: Ib27eb3612f6c072d5c1b7a3588c9524920f86e6f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146831
Tested-by: Ilmari Lauhakangas 
Reviewed-by: Ilmari Lauhakangas 

diff --git a/vcl/inc/unx/gendata.hxx b/vcl/inc/unx/gendata.hxx
index f0b769da08e7..4949613c0b10 100644
--- a/vcl/inc/unx/gendata.hxx
+++ b/vcl/inc/unx/gendata.hxx
@@ -7,8 +7,7 @@
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  */
 
-#ifndef INCLUDED_VCL_INC_GENERIC_GENDATA_HXX
-#define INCLUDED_VCL_INC_GENERIC_GENDATA_HXX
+#pragma once
 
 #include 
 
@@ -116,6 +115,4 @@ inline GenericUnixSalData* GetGenericUnixSalData()
 return static_cast(ImplGetSVData()->mpSalData);
 }
 
-#endif
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */


[Libreoffice-bugs] [Bug 153562] Pasting Selected Range to Sheet as BMP Image, It will be a Chart Image without content.

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153562

Ezinne  changed:

   What|Removed |Added

 CC||nnamani.ezi...@collabora.co
   ||m
 Status|NEEDINFO|NEW

--- Comment #6 from Ezinne  ---
Reproducible in:

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 4a0d671706306661c4a5072ce4769dc47bc65f71
CPU threads: 4; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded


Tested with the sample file using these steps:

1. Open the sample file
2. Select and Copy just the cells within the red rectangle that has the caption
"Copy Range."
3. Move to another cell.
4. From the Paste Icon dropdown in the toolbar, Select to paste using the BMP
option.

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

[Libreoffice-bugs] [Bug 153582] New: a5 printing is broken

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153582

Bug ID: 153582
   Summary: a5 printing is broken
   Product: LibreOffice
   Version: 7.5.0.3 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mattreecebent...@gmail.com

I can't comment on whether this bug exists on other platforms.

If you change a page to A5 in Format menu,
then print, it will correctly display the page as a5 in the print dialog, and
will print (a5 will not be available in the drop-down list for page sizes
however).

If you subsequently try to print again after the first print of the page, the
page will display as a4 in the print dialog, and while a5 is available in the
drop-down list, switching to it results in the page not printing at all.

I've tried this on 7.37 and upwards.

The bug is not related to a specific printer.

It does not occur in any other application including google chrome.

It is a libreoffice bug.

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

[Libreoffice-bugs] [Bug 153581] New: Styles panel style family buttons should be radio type

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153581

Bug ID: 153581
   Summary: Styles panel style family buttons should be radio type
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rayk...@gmail.com

Here is a nitpick that the highlighted style family button in the styles panel
loses highlight when clicked. Why anyone would click a highlighted style family
button I do not know but it looses it's highlight state when done.

Steps to reproduce using Writer:
1) Open Writer 
2) Open the Sidebar (Menu > View > Sidebar)
3) Switch to the Styles deck (Second deck button in the tab bar)
3) Click on the highlighted style family button above the styles list and move
the mouse pointer away from the button

Results: The button looses highlight.
Expected results: The button remains highlighted.

The cause of this bug is that toggle tool buttons are used. Radio tool buttons
should be used. IMHO this would make a good 'easy hack' for gaining experience
using Glade and will make a few CheckItem calls used for setting button toggle
state unnecessary.

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

[Libreoffice-commits] core.git: dictionaries

2023-02-12 Thread Michael Weghorn (via logerrit)
 dictionaries |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 429cf15472b6900852c618a0e90879554562f69a
Author: Michael Weghorn 
AuthorDate: Mon Feb 13 09:08:50 2023 +0200
Commit: Gerrit Code Review 
CommitDate: Mon Feb 13 07:08:50 2023 +

Update git submodules

* Update dictionaries from branch 'master'
  to bcf7f049315dee2001cc2f7c7eabfbcb0b8ef21a
  - Add .gitreview used by git-review tool

Change-Id: I9b4415acbf0ec6de90280a259a1af7e33529f2c4
Reviewed-on: https://gerrit.libreoffice.org/c/dictionaries/+/138340
Tested-by: Michael Weghorn 
Reviewed-by: Michael Weghorn 

diff --git a/dictionaries b/dictionaries
index 40580c5dbb5b..bcf7f049315d 16
--- a/dictionaries
+++ b/dictionaries
@@ -1 +1 @@
-Subproject commit 40580c5dbb5b06fbf402b5864e736527b05cd2f5
+Subproject commit bcf7f049315dee2001cc2f7c7eabfbcb0b8ef21a


[Libreoffice-commits] dictionaries.git: .gitreview

2023-02-12 Thread Michael Weghorn (via logerrit)
 .gitreview |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit bcf7f049315dee2001cc2f7c7eabfbcb0b8ef21a
Author: Michael Weghorn 
AuthorDate: Tue Aug 16 08:44:36 2022 +0200
Commit: Michael Weghorn 
CommitDate: Mon Feb 13 07:08:41 2023 +

Add .gitreview used by git-review tool

Change-Id: I9b4415acbf0ec6de90280a259a1af7e33529f2c4
Reviewed-on: https://gerrit.libreoffice.org/c/dictionaries/+/138340
Tested-by: Michael Weghorn 
Reviewed-by: Michael Weghorn 

diff --git a/.gitreview b/.gitreview
new file mode 100644
index 000..0742840
--- /dev/null
+++ b/.gitreview
@@ -0,0 +1,7 @@
+[gerrit]
+host=gerrit.libreoffice.org
+port=29418
+project=dictionaries
+defaultremote=logerrit
+defaultbranch=master
+


[Libreoffice-commits] core.git: Branch 'distro/collabora/co-23.05' - sc/inc sc/source

2023-02-12 Thread Mike Kaganski (via logerrit)
 sc/inc/stlpool.hxx   |2 +
 sc/source/core/data/stlpool.cxx  |   10 
 sc/source/core/tool/interpr2.cxx |   45 ++-
 sc/source/ui/docshell/docsh4.cxx |6 -
 4 files changed, 44 insertions(+), 19 deletions(-)

New commits:
commit 7265ebe3998e06f119aa39dc15f6af2179a5e3a1
Author: Mike Kaganski 
AuthorDate: Fri Feb 10 16:04:46 2023 +0300
Commit: Mike Kaganski 
CommitDate: Mon Feb 13 06:57:07 2023 +

tdf#153510: STYLE: try harder to detect when there's nothing to do

1. Find the real style names early, to avoid re-triggering style
application when STYLE arguments use wrong case;
2. Also check a (rare) case when both immediate and delayed styles
are the same as currently applied.

Change-Id: Id8ab2e321ede6d0f8f05ac5d1e63ade0212e5865
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146775
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 
(cherry picked from commit 208a4ecafafa97ea7fcc5a135fa8160e91ea0a74)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146760
Tested-by: Mike Kaganski 

diff --git a/sc/inc/stlpool.hxx b/sc/inc/stlpool.hxx
index f4e3ac757094..51694a405202 100644
--- a/sc/inc/stlpool.hxx
+++ b/sc/inc/stlpool.hxx
@@ -51,6 +51,8 @@ public:
 boolHasStandardStyles() const { return bHasStandardStyles; 
}
 
 ScStyleSheet*   FindCaseIns( const OUString& rName, SfxStyleFamily 
eFam );
+// Finds Para style with given name case-insensitively, or 
STR_STYLENAME_STANDARD
+ScStyleSheet*   FindAutoStyle(const OUString& rName);
 
 virtual SfxStyleSheetBase& Make( const OUString&, SfxStyleFamily eFam,
  SfxStyleSearchBits nMask = 
SfxStyleSearchBits::All) override;
diff --git a/sc/source/core/data/stlpool.cxx b/sc/source/core/data/stlpool.cxx
index b08b6c2203c9..8f554896ff21 100644
--- a/sc/source/core/data/stlpool.cxx
+++ b/sc/source/core/data/stlpool.cxx
@@ -424,6 +424,16 @@ ScStyleSheet* ScStyleSheetPool::FindCaseIns( const 
OUString& rName, SfxStyleFami
 return first;
 }
 
+ScStyleSheet* ScStyleSheetPool::FindAutoStyle(const OUString& rName)
+{
+ScStyleSheet* pStyleSheet = FindCaseIns(rName, SfxStyleFamily::Para);
+if (!pStyleSheet)
+if (auto pFound = Find(ScResId(STR_STYLENAME_STANDARD), 
SfxStyleFamily::Para))
+if (pFound->isScStyleSheet()) // we do not know what kind of 
sheets we have
+pStyleSheet = static_cast(pFound);
+return pStyleSheet;
+}
+
 void ScStyleSheetPool::setAllParaStandard()
 {
 SfxStyleSheetBase* pSheet = First(SfxStyleFamily::Para);
diff --git a/sc/source/core/tool/interpr2.cxx b/sc/source/core/tool/interpr2.cxx
index c8015598891f..7826522a89bf 100644
--- a/sc/source/core/tool/interpr2.cxx
+++ b/sc/source/core/tool/interpr2.cxx
@@ -41,6 +41,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 
@@ -2595,38 +2596,54 @@ void ScInterpreter::ScStyle()
 if (!MustHaveParamCount(nParamCount, 1, 3))
 return;
 
-OUString aStyle2;   // Template after timer
+OUString aStyle2;   // Style after timer
 if (nParamCount >= 3)
 aStyle2 = GetString().getString();
 tools::Long nTimeOut = 0;  // timeout
 if (nParamCount >= 2)
 nTimeOut = static_cast(GetDouble()*1000.0);
-OUString aStyle1 = GetString().getString(); // Template for immediate
+OUString aStyle1 = GetString().getString(); // Style for immediate
 
 if (nTimeOut < 0)
 nTimeOut = 0;
 
-// Execute request to apply template
+// Execute request to apply style
 if ( !mrDoc.IsClipOrUndo() )
 {
 SfxObjectShell* pShell = mrDoc.GetDocumentShell();
 if (pShell)
 {
+// Normalize style names right here, making sure that character 
case is correct,
+// and that we only apply anything when there's something to apply
+auto pPool = mrDoc.GetStyleSheetPool();
+if (!aStyle1.isEmpty())
+{
+if (auto pNewStyle = pPool->FindAutoStyle(aStyle1))
+aStyle1 = pNewStyle->GetName();
+else
+aStyle1.clear();
+}
+if (!aStyle2.isEmpty())
+{
+if (auto pNewStyle = pPool->FindAutoStyle(aStyle2))
+aStyle2 = pNewStyle->GetName();
+else
+aStyle2.clear();
+}
 // notify object shell directly!
-bool bNotify = true;
-if (aStyle2.isEmpty())
+if (!aStyle1.isEmpty() || !aStyle2.isEmpty())
 {
 const ScStyleSheet* pStyle = mrDoc.GetStyle(aPos.Col(), 
aPos.Row(), aPos.Tab());
 
-if (pStyle && pStyle->GetName() == aStyle1)
-bNotify = false;
-}
-
-if 

[Libreoffice-bugs] [Bug 153315] EDITING - Crash in SwFrame::FindPageFrame() (and others) after changing font size in style causing reformatting the document

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153315

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 151433] Crash in: SwFrame::FindPageFrame()

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151433

Telesto  changed:

   What|Removed |Added

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

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

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

2023-02-12 Thread Mike Kaganski (via logerrit)
 sc/source/core/tool/interpr2.cxx |   64 ++-
 1 file changed, 31 insertions(+), 33 deletions(-)

New commits:
commit 5b26c90f4e8a2f2b4649e062c40f4c31f6b27eec
Author: Mike Kaganski 
AuthorDate: Fri Feb 10 16:44:37 2023 +0300
Commit: Mike Kaganski 
CommitDate: Mon Feb 13 06:56:41 2023 +

Flatten ScInterpreter::ScStyle

Change-Id: I64c622d2c2ca7eda02e8739657fe345f9be8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146777
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 
(cherry picked from commit 2844670d2a47c606cbebb99f73389f30154a3c5e)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146759
Tested-by: Mike Kaganski 

diff --git a/sc/source/core/tool/interpr2.cxx b/sc/source/core/tool/interpr2.cxx
index 707d9c66cb3d..c8015598891f 100644
--- a/sc/source/core/tool/interpr2.cxx
+++ b/sc/source/core/tool/interpr2.cxx
@@ -2592,48 +2592,46 @@ void ScInterpreter::ScCurrent()
 void ScInterpreter::ScStyle()
 {
 sal_uInt8 nParamCount = GetByte();
-if (nParamCount >= 1 && nParamCount <= 3)
-{
-OUString aStyle2;   // Template after timer
-if (nParamCount >= 3)
-aStyle2 = GetString().getString();
-tools::Long nTimeOut = 0;  // timeout
-if (nParamCount >= 2)
-nTimeOut = static_cast(GetDouble()*1000.0);
-OUString aStyle1 = GetString().getString(); // Template for immediate
+if (!MustHaveParamCount(nParamCount, 1, 3))
+return;
 
-if (nTimeOut < 0)
-nTimeOut = 0;
+OUString aStyle2;   // Template after timer
+if (nParamCount >= 3)
+aStyle2 = GetString().getString();
+tools::Long nTimeOut = 0;  // timeout
+if (nParamCount >= 2)
+nTimeOut = static_cast(GetDouble()*1000.0);
+OUString aStyle1 = GetString().getString(); // Template for immediate
 
-// Execute request to apply template
-if ( !mrDoc.IsClipOrUndo() )
+if (nTimeOut < 0)
+nTimeOut = 0;
+
+// Execute request to apply template
+if ( !mrDoc.IsClipOrUndo() )
+{
+SfxObjectShell* pShell = mrDoc.GetDocumentShell();
+if (pShell)
 {
-SfxObjectShell* pShell = mrDoc.GetDocumentShell();
-if (pShell)
+// notify object shell directly!
+bool bNotify = true;
+if (aStyle2.isEmpty())
 {
-// notify object shell directly!
-bool bNotify = true;
-if (aStyle2.isEmpty())
-{
-const ScStyleSheet* pStyle = mrDoc.GetStyle(aPos.Col(), 
aPos.Row(), aPos.Tab());
+const ScStyleSheet* pStyle = mrDoc.GetStyle(aPos.Col(), 
aPos.Row(), aPos.Tab());
 
-if (pStyle && pStyle->GetName() == aStyle1)
-bNotify = false;
-}
+if (pStyle && pStyle->GetName() == aStyle1)
+bNotify = false;
+}
 
-if (bNotify)
-{
-ScRange aRange(aPos);
-ScAutoStyleHint aHint( aRange, aStyle1, nTimeOut, aStyle2 
);
-pShell->Broadcast( aHint );
-}
+if (bNotify)
+{
+ScRange aRange(aPos);
+ScAutoStyleHint aHint( aRange, aStyle1, nTimeOut, aStyle2 );
+pShell->Broadcast( aHint );
 }
 }
-
-PushDouble(0.0);
 }
-else
-PushIllegalParameter();
+
+PushDouble(0.0);
 }
 
 static ScDdeLink* lcl_GetDdeLink( const sfx2::LinkManager* pLinkMgr,


[Libreoffice-bugs] [Bug 153315] EDITING - Crash in SwFrame::FindPageFrame() (and others) after changing font size in style causing reformatting the document

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153315

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 153315] EDITING - Crash in SwFrame::FindPageFrame() (and others) after changing font size in style causing reformatting the document

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153315

Telesto  changed:

   What|Removed |Added

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

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

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

2023-02-12 Thread Mike Kaganski (via logerrit)
 sc/source/core/data/stlpool.cxx |   10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

New commits:
commit 5e44a7f22de9f690e5289b3edd926d0b48db5277
Author: Mike Kaganski 
AuthorDate: Fri Feb 10 13:25:53 2023 +0300
Commit: Mike Kaganski 
CommitDate: Mon Feb 13 06:56:12 2023 +

tdf#153514: try to find exact match, even when searching case-insensitively

Change-Id: Ib3bec382ef80a9078ffde8612c395cb0154fd476
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146747
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 
(cherry picked from commit 2a984c77ccb1aa77d9bbd02218d4dc76aaff4a9e)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146758
Tested-by: Mike Kaganski 

diff --git a/sc/source/core/data/stlpool.cxx b/sc/source/core/data/stlpool.cxx
index 5ca89c37a510..b08b6c2203c9 100644
--- a/sc/source/core/data/stlpool.cxx
+++ b/sc/source/core/data/stlpool.cxx
@@ -408,14 +408,20 @@ ScStyleSheet* ScStyleSheetPool::FindCaseIns( const 
OUString& rName, SfxStyleFami
 CaseInsensitiveNamePredicate aPredicate(rName, eFam);
 std::vector aFoundPositions = 
GetIndexedStyleSheets().FindPositionsByPredicate(aPredicate);
 
+ScStyleSheet* first = nullptr; // first case insensitive match found
 for (const auto& rPos : aFoundPositions)
 {
 SfxStyleSheetBase *pFound = GetStyleSheetByPositionInIndex(rPos);
 // we do not know what kind of sheets we have.
 if (pFound->isScStyleSheet())
-return static_cast(pFound);
+{
+if (pFound->GetName() == rName) // exact case sensitive match
+return static_cast(pFound);
+if (!first)
+first = static_cast(pFound);
+}
 }
-return nullptr;
+return first;
 }
 
 void ScStyleSheetPool::setAllParaStandard()


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

2023-02-12 Thread Mike Kaganski (via logerrit)
 basctl/source/basicide/scriptdocument.cxx |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

New commits:
commit 9fa9a510f9a391979a1f5f25ae1b5f4392db7692
Author: Mike Kaganski 
AuthorDate: Mon Feb 13 08:54:27 2023 +0300
Commit: Mike Kaganski 
CommitDate: Mon Feb 13 06:51:34 2023 +

Use startsWithIgnoreAsciiCase with last argument to simplify

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

diff --git a/basctl/source/basicide/scriptdocument.cxx 
b/basctl/source/basicide/scriptdocument.cxx
index 4136ced4c18e..c435d7a57da7 100644
--- a/basctl/source/basicide/scriptdocument.cxx
+++ b/basctl/source/basicide/scriptdocument.cxx
@@ -928,10 +928,9 @@ namespace basctl
 }
 else if ( aScheme.equalsIgnoreAsciiCase("vnd.sun.star.pkg") )
 {
-OUString aAuthority = xUriRef->getAuthority();
-if ( aAuthority.matchIgnoreAsciiCase("vnd.sun.star.expand:") )
+OUString aDecodedURL = xUriRef->getAuthority();
+if 
(aDecodedURL.startsWithIgnoreAsciiCase("vnd.sun.star.expand:", ))
 {
-OUString aDecodedURL( aAuthority.copy( sizeof ( 
"vnd.sun.star.expand:" ) - 1 ) );
 aDecodedURL = ::rtl::Uri::decode( aDecodedURL, 
rtl_UriDecodeWithCharset, RTL_TEXTENCODING_UTF8 );
 Reference< XMacroExpander > xMacroExpander = 
theMacroExpander::get(xContext);
 aFileURL = xMacroExpander->expandMacros( aDecodedURL );


Deepanshu Raj license statement

2023-02-12 Thread Deepanshu Raj
 All of my past & future contributions to LibreOffice may be   licensed under the MPLv2/LGPLv3+ dual license.Additionally, to the extent possible under law, I waive all   copyright and related or neighbouring rights to my past & future   similarly to The Document Foundation, placing such contributions   under CC0: https://creativecommons.org/publicdomain/zero/1.0 Sent from Mail for Windows 


[Libreoffice-bugs] [Bug 153580] Calc Sort dialog too small, UI not resizable

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153580

Loren Amelang  changed:

   What|Removed |Added

 CC||lo...@psychoros.com

--- Comment #1 from Loren Amelang  ---
Created attachment 185341
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185341=edit
Calc Sort dialog too short, scrolls to bottom on every open

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

[Libreoffice-bugs] [Bug 153580] New: Calc Sort dialog too small, UI not resizable

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153580

Bug ID: 153580
   Summary: Calc Sort dialog too small, UI not resizable
   Product: LibreOffice
   Version: 7.5.0.3 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lo...@psychoros.com

Description:
Just spent a day doing various sorts on a calc sheet. The dialog only has room
for 2 1/2 sort Keys without scrolling. And it ignores the mouse scroll wheel
and PgUp/Dn. And every time you open it it scrolls to the bottom to show the
next "undefined" key. So you have to mouse over to the scroll thumb and drag
the Keys you need back into view. 

Could it _please_ be resizable? Or at least respond to a flip of the mouse
scroll wheel? 

(There's a chance it is interacting with my Windows screen scaling, which
sometimes shrinks window bounds, but the width matches the content perfectly.
Just needs more height!) 

Steps to Reproduce:
1.open calc
2.open a sort dialog
3.

Actual Results:
Dialog too short, hard to scroll...

Expected Results:
Resizable dialog


Reproducible: Always


User Profile Reset: No

Additional Info:
Version: 7.5.0.3 (X86_64) / LibreOffice Community
Build ID: c21113d003cd3efa8c53188764377a8272d9d6de
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: default; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 153464] If I want to write a list, then the next line is not indented

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153464

Ezinne  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC||nnamani.ezi...@collabora.co
   ||m

--- Comment #1 from Ezinne  ---
Reproducible in:

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 4a0d671706306661c4a5072ce4769dc47bc65f71
CPU threads: 4; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 121757] FILEOPEN DOC: Width of the shape shrinks to width of the text in a shape

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121757

--- Comment #12 from Dieter  ---
Still present in

Version: 7.5.0.3 (X86_64) / LibreOffice Community
Build ID: c21113d003cd3efa8c53188764377a8272d9d6de
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL threaded

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

[Libreoffice-bugs] [Bug 87740] [META] Anchor and text wrapping bugs and enhancements

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87740

Dieter  changed:

   What|Removed |Added

 Depends on||146998


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=146998
[Bug 146998] First line of second paragraph does not wrap when picture in first
paragraph extends below descender line (document specific?)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146998] First line of second paragraph does not wrap when picture in first paragraph extends below descender line (document specific?)

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146998

Dieter  changed:

   What|Removed |Added

 Blocks||87740
 OS|Linux (All) |All
Summary|First line of second|First line of second
   |paragraph does not wrap |paragraph does not wrap
   |when picture in first   |when picture in first
   |paragraph extends below |paragraph extends below
   |descender line  |descender line (document
   ||specific?)
 Status|NEEDINFO|NEW

--- Comment #10 from Dieter  ---
So let's change status to NEW, although we can't reproduce it in a new
document. I've changed summary to mark, that te problem might be document
specific


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=87740
[Bug 87740] [META] Anchor and text wrapping bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 153579] New: Inability to change Theme

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153579

Bug ID: 153579
   Summary: Inability to change Theme
   Product: LibreOffice
   Version: 7.5.0.3 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: calja...@outlook.com

Description:
LibreOffice appears to follow Windows 10/11 default theme and it would be much
better to be able to pick the theme inside the app as the dark theme does not
look good for word documents, but might look good on other parts of LibreOffice
and Windows. Having to change Windows theme is not a proper fix.

Steps to Reproduce:
1. Open Writer Document With Windows in Dark Theme
2. Change Windows Theme to Light 
3. Attempt to change Libre theme back to dark without changing Windows theme

Actual Results:
No way to change Libre theme without changing windows theme

Expected Results:
Ability for Libre theme to be independent of windows theme


Reproducible: Always


User Profile Reset: No

Additional Info:
Have searched online to find a fix for this, but manual selecting the
application colors does not change the top header/bar(font selection, save,
etc) when used. This should be a setting somewhere, but was unable to find this
online.

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

[Libreoffice-bugs] [Bug 153153] Incentivize users to use the latest version via the UI

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153153

--- Comment #5 from Loren Amelang  ---
I'm not seeing anything in Bugzilla about this: 

I had LibreOffice_7.3.2_Win_x64.msi installed, with a nasty problem of the text
import preview being invisible in dark modes. For months I checked Help ->
Check for Updates, and it always told me none were available. 

I happened to see a note in the Fediverse, went to your website, and found
LibreOffice_7.5.0_Win_x86-64.msi - with my problem beautifully fixed! And a
_way_ better dark mode! 

Was there some glitch in the update check? Is it fixed now? Obviously I won't
trust it for awhile...

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

[Libreoffice-commits] core.git: include/rtl

2023-02-12 Thread Mike Kaganski (via logerrit)
 include/rtl/uri.hxx |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 30a215f3cee1acdb4df3285512603abede8d3ff1
Author: Mike Kaganski 
AuthorDate: Mon Feb 13 07:35:35 2023 +0300
Commit: Mike Kaganski 
CommitDate: Mon Feb 13 05:26:23 2023 +

These const_casts are unneeded

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

diff --git a/include/rtl/uri.hxx b/include/rtl/uri.hxx
index 1b2601e7d1d1..3221a9fba8b2 100644
--- a/include/rtl/uri.hxx
+++ b/include/rtl/uri.hxx
@@ -92,7 +92,7 @@ inline rtl::OUString Uri::encode(rtl::OUString const & rText,
  rtl_TextEncoding eCharset)
 {
 rtl::OUString aResult;
-rtl_uriEncode(const_cast< rtl::OUString & >(rText).pData,
+rtl_uriEncode(rText.pData,
   pCharClass,
   eMechanism,
   eCharset,
@@ -106,7 +106,7 @@ inline rtl::OUString Uri::encode(rtl::OUString const & 
rText,
  rtl_TextEncoding eCharset)
 {
 rtl::OUString aResult;
-rtl_uriEncode(const_cast< rtl::OUString & >(rText).pData,
+rtl_uriEncode(rText.pData,
   rtl_getUriCharClass(eCharClass),
   eMechanism,
   eCharset,
@@ -119,7 +119,7 @@ inline rtl::OUString Uri::decode(rtl::OUString const & 
rText,
  rtl_TextEncoding eCharset)
 {
 rtl::OUString aResult;
-rtl_uriDecode(const_cast< rtl::OUString & >(rText).pData,
+rtl_uriDecode(rText.pData,
   eMechanism,
   eCharset,
   );
@@ -132,8 +132,8 @@ inline rtl::OUString Uri::convertRelToAbs(rtl::OUString 
const & rBaseUriRef,
 rtl::OUString aResult;
 rtl::OUString aException;
 if (!rtl_uriConvertRelToAbs(
-const_cast< rtl::OUString & >(rBaseUriRef).pData,
-const_cast< rtl::OUString & >(rRelUriRef).pData, ,
+rBaseUriRef.pData,
+rRelUriRef.pData, ,
 ))
 throw MalformedUriException(aException);
 return aResult;


[Libreoffice-bugs] [Bug 153578] duplicate menu hotkey

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153578

lvm  changed:

   What|Removed |Added

 CC||lmiro...@yandex.ru

--- Comment #1 from lvm  ---
Created attachment 185340
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185340=edit
screenshot

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

[Libreoffice-bugs] [Bug 153578] New: duplicate menu hotkey

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153578

Bug ID: 153578
   Summary: duplicate menu hotkey
   Product: LibreOffice
   Version: 7.5.0.3 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lmiro...@yandex.ru

Description:
In Data menu "XML source" and "Text to columns" both have X as the hotkey,
first one (XML source) wins and "Text to columns" - a rather frequently used
option, is inaccessible.

Steps to Reproduce:
1. open data menu


Actual Results:
all items should've had unique hotkeys

Expected Results:
"XML source" and "Text to columns" has the same hotkey - x


Reproducible: Always


User Profile Reset: No

Additional Info:
Version: 7.5.0.3 (X86_64) / LibreOffice Community
Build ID: c21113d003cd3efa8c53188764377a8272d9d6de
CPU threads: 4; OS: Linux 5.4; UI render: default; VCL: kf5 (cairo+xcb)
Locale: en-GB (en_GB.UTF-8); UI: en-GB
Calc: threaded

English UK language pack is installed.

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

[Libreoffice-bugs] [Bug 33697] Unable to choose proxy type "system"

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=33697

--- Comment #24 from Fahad Al-Saidi  ---
Looks like still true in 7.5.

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

[Libreoffice-bugs] [Bug 107923] [META] Zoom issues

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107923

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||153572


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=153572
[Bug 153572] Basic IDE also needs .uno:ZoomPlus and .uno:ZoomMinus commands
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 153572] Basic IDE also needs .uno:ZoomPlus and .uno:ZoomMinus commands

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153572

V Stuart Foote  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 Blocks||107923
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=45
   ||705
 CC||vsfo...@libreoffice.org

--- Comment #2 from V Stuart Foote  ---
Thanks Rafael!


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107923
[Bug 107923] [META] Zoom issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 153506] LibreCalc - When copying an existing sheet to a new sheet LibreCalc does not preserve conditional formatting on new sheet. Example provided in description.

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153506

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] [Bug 153270] Help downloads changed?

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153270

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 152992] Regularly selecting a textbox instead of entering it (Impress)

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152992

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 153506] LibreCalc - When copying an existing sheet to a new sheet LibreCalc does not preserve conditional formatting on new sheet. Example provided in description.

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153506

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

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

[Libreoffice-bugs] [Bug 123336] FILESAVE ODS Comment arrangement is changing to default after saving

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123336

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 115029] The drawing of the blue selection frame is flickery/lagging behind while scrolling

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115029

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 123220] No alert when deleting custom Character Style applied in paragraph's Drop Caps

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123220

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

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://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 119906] FILEOPEN DOCX Video shown as image

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119906

--- Comment #8 from QA Administrators  ---
Dear Daniel,

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://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 153315] EDITING - Crash in SwFrame::FindPageFrame() (and others) after changing font size in style causing reformatting the document

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153315

csyu@gmail.com changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected

--- Comment #8 from csyu@gmail.com ---
Regression introduced by:

https://git.libreoffice.org/core/+/1caea03fcc6c24e38b2d1d9f6097ad84183ffefd%5E%21

commit  1caea03fcc6c24e38b2d1d9f6097ad84183ffefd[log]
author  Michael Stahl Mon May 06 15:40:41 2019 
committer   Michael Stahl Mon May 06 17:48:54
2019 
tree7d0a8a46d4825b6695322aab4dda756b5326fbef
parent  2ff22c0bf4c23c4bed9ccfcfa79dff848086650d 

Bisected with: win32-6.3

Adding Cc: to Michael Stahl

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

[Libreoffice-bugs] [Bug 153506] LibreCalc - When copying an existing sheet to a new sheet LibreCalc does not preserve conditional formatting on new sheet. Example provided in description.

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153506

--- Comment #9 from bwilder...@yahoo.com ---
Created attachment 185339
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185339=edit
PDF containing annotated screen shots and other info to further clarify the
problem

Attached PDF containing screenshots and other information about the problem,
and provides answer to the last question asked by support personnel.

Hope this info makes clear the problem as I see it--- and have tried to report
it previously.

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

[Libreoffice-bugs] [Bug 140314] extensions button pointing to italian unexistent web page

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140314

--- Comment #3 from Paolo Benvenuto  ---
Version: 7.3.7.2 / LibreOffice Community
Build ID: 30(Build:2)
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: es-DO (it_IT.UTF-8); UI: it-IT
Ubuntu package version: 1:7.3.7-0ubuntu0.22.04.1
Calc: threaded

CONFIRMED

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

[Libreoffice-bugs] [Bug 152605] Change "heading level" to "outline level" in UI and help pages for Writer

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152605

--- Comment #18 from Commit Notification 
 ---
Seth Chaiklin committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/12f4174031afc80e9d6ac387336e0185646f6977

tdf#152605 update UI label changes

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

[Libreoffice-commits] core.git: helpcontent2

2023-02-12 Thread Seth Chaiklin (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 14a36ad49518bcb5b606b0f1640e3ca56b636e89
Author: Seth Chaiklin 
AuthorDate: Mon Feb 13 01:23:44 2023 +
Commit: Gerrit Code Review 
CommitDate: Mon Feb 13 01:23:44 2023 +

Update git submodules

* Update helpcontent2 from branch 'master'
  to 12f4174031afc80e9d6ac387336e0185646f6977
  - tdf#152605 update UI label changes

  - also adding missing control "Caption Order" in Autocaption

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

diff --git a/helpcontent2 b/helpcontent2
index 7266a58cba3c..12f4174031af 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 7266a58cba3c89fdf9cd7100c00ef360e8d45e08
+Subproject commit 12f4174031afc80e9d6ac387336e0185646f6977


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

2023-02-12 Thread Seth Chaiklin (via logerrit)
 source/text/shared/optionen/01041100.xhp |4 +++-
 source/text/swriter/01/04060100.xhp  |2 +-
 source/text/swriter/01/04090001.xhp  |2 +-
 3 files changed, 5 insertions(+), 3 deletions(-)

New commits:
commit 12f4174031afc80e9d6ac387336e0185646f6977
Author: Seth Chaiklin 
AuthorDate: Mon Feb 13 00:21:14 2023 +
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Feb 13 01:23:20 2023 +

tdf#152605 update UI label changes

  - also adding missing control "Caption Order" in Autocaption

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

diff --git a/source/text/shared/optionen/01041100.xhp 
b/source/text/shared/optionen/01041100.xhp
index 7ca3776299..c7aa4fa93d 100644
--- a/source/text/shared/optionen/01041100.xhp
+++ b/source/text/shared/optionen/01041100.xhp
@@ -46,6 +46,8 @@
 
   Add captions automatically when 
inserting
   Select the object type for which the AutoCaption settings are to be 
valid.
+  Caption Order
+  Select ordering of 
category label and numbering.
   Caption
   Defines the 
options to be applied to the selected object type. These options are identical 
to those in the Insert - Caption menu, which is available when an 
object is selected. Below the settings is a preview of the object category, 
together with numbering type.
 
@@ -69,7 +71,7 @@
   Numbering by chapter
 
 
-  Level
+  Outline level
   Specifies the headings or chapter 
levels where you want the numbering to start.
 
   Separator
diff --git a/source/text/swriter/01/04060100.xhp 
b/source/text/swriter/01/04060100.xhp
index 7c6cc2d19b..315778fc8c 100644
--- a/source/text/swriter/01/04060100.xhp
+++ b/source/text/swriter/01/04060100.xhp
@@ -40,7 +40,7 @@
 Numbering by chapter
 When you add 
chapter numbers to caption labels, the caption numbering is reset when a 
chapter heading is encountered. For example, if the last figure in chapter 1 is 
"Figure 1.12", the first figure in the next chapter would be "Figure 
2.1".
 
-Level
+Outline level
 Select the number of outline 
levels from the top of the chapter hierarchy down to include in the caption 
label.
 
 Separator
diff --git a/source/text/swriter/01/04090001.xhp 
b/source/text/swriter/01/04090001.xhp
index 293d96d1be..eab8748fd5 100644
--- a/source/text/swriter/01/04090001.xhp
+++ b/source/text/swriter/01/04090001.xhp
@@ -167,7 +167,7 @@
 
 
 
-Level
+Outline level
 Enter outline level of the 
chapter to be displayed. The inserted field will display the value taken from 
last paragraph with the specified outline level placed before the inserted 
field.
 
 


[Libreoffice-bugs] [Bug 153573] Menus are all blank when opening .doc files

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153573

m.a.riosv  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||miguelangelrv@libreoffice.o
   ||rg
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from m.a.riosv  ---
Please test with a clean profile, Menu/Help/Restart in Safe Mode

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

[Libreoffice-bugs] [Bug 153576] LO will not open after install 7.5.03

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153576

ady  changed:

   What|Removed |Added

Summary|will not open 7.5.03|LO will not open after
   ||install 7.5.03
  Component|Base|Installation

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

[Libreoffice-bugs] [Bug 153562] Pasting Selected Range to Sheet as BMP Image, It will be a Chart Image without content.

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153562

--- Comment #5 from m.a.riosv  ---
I can't reproduce with
Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 9788a565b3241d1bd62394b9e29c322361d05f80
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded Jumbo
Version: 7.5.0.3 (X86_64) / LibreOffice Community
Build ID: c21113d003cd3efa8c53188764377a8272d9d6de
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded

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

[Libreoffice-bugs] [Bug 152667] Wrong text encoding for file names and clip board under KDE x11

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152667

Toby  changed:

   What|Removed |Added

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

--- Comment #1 from Toby  ---
Turned out to be related to system charmap settings. Solved after setting the
charmap to utf8.

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

[Libreoffice-bugs] [Bug 153562] Pasting Selected Range to Sheet as BMP Image, It will be a Chart Image without content.

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153562

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #4 from m.a.riosv  ---
What is the range that you select to copy?

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

[Libreoffice-bugs] [Bug 153576] will not open 7.5.03

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153576

Steve  changed:

   What|Removed |Added

   Hardware|All |Other
  Component|Calc|Base

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

[Libreoffice-bugs] [Bug 153576] New: will not open 7.5.03

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153576

Bug ID: 153576
   Summary: will not open 7.5.03
   Product: LibreOffice
   Version: 7.5.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: saspis...@gmail.com

Description:
Updated to 7.5.03 and would not open. Tried the safe mode idea and nothing
opened.
Rolled back to 7.4.5 and all is working.
HP Laptop running Windows 10 8 gig ram.

Actual Results:
Installed updated file. Did notopen any features of LibreOffice. Uninstalled
and reloaded 7.4.5 and it opens and runs good.

Expected Results:
Should have run with update like all the rest of the previous updates.


Reproducible: Always


User Profile Reset: No

Additional Info:
Installed and run.

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

[Libreoffice-bugs] [Bug 153575] New: Launching libreoffice from Konsole gives rdrand problems (on fedora 37).

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153575

Bug ID: 153575
   Summary: Launching libreoffice from Konsole gives rdrand
problems (on fedora 37).
   Product: LibreOffice
   Version: 7.4.5.1 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jjmijnd...@hotmail.com

Description:
When typing "libreoffice" in Konsole to launch libreoffice, I get this output:
WARNING: CPU random generator seem to be failing, disabling hardware random
number generation
WARNING: RDRND generated: 0x 0x 0x 0x
I know this is a AMD Ryzen 5 3600 CPU Issue.
Rdrand -> the HWRNG (hardware random number generator in the CPU is spitting
constant values not random ones. Could this please be fixed for just this CPU's
it is just annoying to deal with it.

Steps to Reproduce:
1. You must have the rdrand bug in the AMD Ryzen 5 3600 CPU
2. Type libreoffice in any kind of command prompt
3. Output will spit out the rdrand issue.

Actual Results:
WARNING: CPU random generator seem to be failing, disabling hardware random
number generation
WARNING: RDRND generated: 0x 0x 0x 0x

Expected Results:
No issues, also just no warning about the rdrand issue. YES rdrand is supposed
to make the system safer, but for these cpu's well, it doesn't. And I also
don't need a constant reminder that my cpu has in fact a bug.


Reproducible: Always


User Profile Reset: No

Additional Info:
OS: Fedora Linux 37 (KDE Plasma) x86_64
Kernel: 6.1.10-200.fc37.x86_64
Shell: bash 5.2.15
DE: KDE Plasma
WM: KWin (X11)
CPU: AMD Ryzen 5 3600 (12) @ 4.208203 GHz
GPU: NVIDIA GeForce RTX 2060 Rev. A

It's just that I thought this was handy info.

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

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

2023-02-12 Thread Mike Kaganski (via logerrit)
 sc/inc/stlpool.hxx   |2 +
 sc/source/core/data/stlpool.cxx  |   10 
 sc/source/core/tool/interpr2.cxx |   45 ++-
 sc/source/ui/docshell/docsh4.cxx |6 -
 4 files changed, 44 insertions(+), 19 deletions(-)

New commits:
commit fed875f35be3204a7d77bf315a07caaa3bf635e9
Author: Mike Kaganski 
AuthorDate: Fri Feb 10 16:04:46 2023 +0300
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Feb 13 00:04:19 2023 +

tdf#153510: STYLE: try harder to detect when there's nothing to do

1. Find the real style names early, to avoid re-triggering style
application when STYLE arguments use wrong case;
2. Also check a (rare) case when both immediate and delayed styles
are the same as currently applied.

Change-Id: Id8ab2e321ede6d0f8f05ac5d1e63ade0212e5865
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146775
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 
(cherry picked from commit 208a4ecafafa97ea7fcc5a135fa8160e91ea0a74)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146765
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/sc/inc/stlpool.hxx b/sc/inc/stlpool.hxx
index f4e3ac757094..51694a405202 100644
--- a/sc/inc/stlpool.hxx
+++ b/sc/inc/stlpool.hxx
@@ -51,6 +51,8 @@ public:
 boolHasStandardStyles() const { return bHasStandardStyles; 
}
 
 ScStyleSheet*   FindCaseIns( const OUString& rName, SfxStyleFamily 
eFam );
+// Finds Para style with given name case-insensitively, or 
STR_STYLENAME_STANDARD
+ScStyleSheet*   FindAutoStyle(const OUString& rName);
 
 virtual SfxStyleSheetBase& Make( const OUString&, SfxStyleFamily eFam,
  SfxStyleSearchBits nMask = 
SfxStyleSearchBits::All) override;
diff --git a/sc/source/core/data/stlpool.cxx b/sc/source/core/data/stlpool.cxx
index b08b6c2203c9..8f554896ff21 100644
--- a/sc/source/core/data/stlpool.cxx
+++ b/sc/source/core/data/stlpool.cxx
@@ -424,6 +424,16 @@ ScStyleSheet* ScStyleSheetPool::FindCaseIns( const 
OUString& rName, SfxStyleFami
 return first;
 }
 
+ScStyleSheet* ScStyleSheetPool::FindAutoStyle(const OUString& rName)
+{
+ScStyleSheet* pStyleSheet = FindCaseIns(rName, SfxStyleFamily::Para);
+if (!pStyleSheet)
+if (auto pFound = Find(ScResId(STR_STYLENAME_STANDARD), 
SfxStyleFamily::Para))
+if (pFound->isScStyleSheet()) // we do not know what kind of 
sheets we have
+pStyleSheet = static_cast(pFound);
+return pStyleSheet;
+}
+
 void ScStyleSheetPool::setAllParaStandard()
 {
 SfxStyleSheetBase* pSheet = First(SfxStyleFamily::Para);
diff --git a/sc/source/core/tool/interpr2.cxx b/sc/source/core/tool/interpr2.cxx
index c8015598891f..7826522a89bf 100644
--- a/sc/source/core/tool/interpr2.cxx
+++ b/sc/source/core/tool/interpr2.cxx
@@ -41,6 +41,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 
@@ -2595,38 +2596,54 @@ void ScInterpreter::ScStyle()
 if (!MustHaveParamCount(nParamCount, 1, 3))
 return;
 
-OUString aStyle2;   // Template after timer
+OUString aStyle2;   // Style after timer
 if (nParamCount >= 3)
 aStyle2 = GetString().getString();
 tools::Long nTimeOut = 0;  // timeout
 if (nParamCount >= 2)
 nTimeOut = static_cast(GetDouble()*1000.0);
-OUString aStyle1 = GetString().getString(); // Template for immediate
+OUString aStyle1 = GetString().getString(); // Style for immediate
 
 if (nTimeOut < 0)
 nTimeOut = 0;
 
-// Execute request to apply template
+// Execute request to apply style
 if ( !mrDoc.IsClipOrUndo() )
 {
 SfxObjectShell* pShell = mrDoc.GetDocumentShell();
 if (pShell)
 {
+// Normalize style names right here, making sure that character 
case is correct,
+// and that we only apply anything when there's something to apply
+auto pPool = mrDoc.GetStyleSheetPool();
+if (!aStyle1.isEmpty())
+{
+if (auto pNewStyle = pPool->FindAutoStyle(aStyle1))
+aStyle1 = pNewStyle->GetName();
+else
+aStyle1.clear();
+}
+if (!aStyle2.isEmpty())
+{
+if (auto pNewStyle = pPool->FindAutoStyle(aStyle2))
+aStyle2 = pNewStyle->GetName();
+else
+aStyle2.clear();
+}
 // notify object shell directly!
-bool bNotify = true;
-if (aStyle2.isEmpty())
+if (!aStyle1.isEmpty() || !aStyle2.isEmpty())
 {
 const ScStyleSheet* pStyle = mrDoc.GetStyle(aPos.Col(), 
aPos.Row(), aPos.Tab());
 
-if (pStyle && pStyle->GetName() == aStyle1)
-bNotify = false;
-}

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

2023-02-12 Thread Mike Kaganski (via logerrit)
 sc/source/core/tool/interpr2.cxx |   64 ++-
 1 file changed, 31 insertions(+), 33 deletions(-)

New commits:
commit 18e16b05503eafb81797a8bd13157b1a6fc6e828
Author: Mike Kaganski 
AuthorDate: Fri Feb 10 16:44:37 2023 +0300
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Feb 13 00:03:05 2023 +

Flatten ScInterpreter::ScStyle

Change-Id: I64c622d2c2ca7eda02e8739657fe345f9be8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146777
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 
(cherry picked from commit 2844670d2a47c606cbebb99f73389f30154a3c5e)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146764
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/sc/source/core/tool/interpr2.cxx b/sc/source/core/tool/interpr2.cxx
index 707d9c66cb3d..c8015598891f 100644
--- a/sc/source/core/tool/interpr2.cxx
+++ b/sc/source/core/tool/interpr2.cxx
@@ -2592,48 +2592,46 @@ void ScInterpreter::ScCurrent()
 void ScInterpreter::ScStyle()
 {
 sal_uInt8 nParamCount = GetByte();
-if (nParamCount >= 1 && nParamCount <= 3)
-{
-OUString aStyle2;   // Template after timer
-if (nParamCount >= 3)
-aStyle2 = GetString().getString();
-tools::Long nTimeOut = 0;  // timeout
-if (nParamCount >= 2)
-nTimeOut = static_cast(GetDouble()*1000.0);
-OUString aStyle1 = GetString().getString(); // Template for immediate
+if (!MustHaveParamCount(nParamCount, 1, 3))
+return;
 
-if (nTimeOut < 0)
-nTimeOut = 0;
+OUString aStyle2;   // Template after timer
+if (nParamCount >= 3)
+aStyle2 = GetString().getString();
+tools::Long nTimeOut = 0;  // timeout
+if (nParamCount >= 2)
+nTimeOut = static_cast(GetDouble()*1000.0);
+OUString aStyle1 = GetString().getString(); // Template for immediate
 
-// Execute request to apply template
-if ( !mrDoc.IsClipOrUndo() )
+if (nTimeOut < 0)
+nTimeOut = 0;
+
+// Execute request to apply template
+if ( !mrDoc.IsClipOrUndo() )
+{
+SfxObjectShell* pShell = mrDoc.GetDocumentShell();
+if (pShell)
 {
-SfxObjectShell* pShell = mrDoc.GetDocumentShell();
-if (pShell)
+// notify object shell directly!
+bool bNotify = true;
+if (aStyle2.isEmpty())
 {
-// notify object shell directly!
-bool bNotify = true;
-if (aStyle2.isEmpty())
-{
-const ScStyleSheet* pStyle = mrDoc.GetStyle(aPos.Col(), 
aPos.Row(), aPos.Tab());
+const ScStyleSheet* pStyle = mrDoc.GetStyle(aPos.Col(), 
aPos.Row(), aPos.Tab());
 
-if (pStyle && pStyle->GetName() == aStyle1)
-bNotify = false;
-}
+if (pStyle && pStyle->GetName() == aStyle1)
+bNotify = false;
+}
 
-if (bNotify)
-{
-ScRange aRange(aPos);
-ScAutoStyleHint aHint( aRange, aStyle1, nTimeOut, aStyle2 
);
-pShell->Broadcast( aHint );
-}
+if (bNotify)
+{
+ScRange aRange(aPos);
+ScAutoStyleHint aHint( aRange, aStyle1, nTimeOut, aStyle2 );
+pShell->Broadcast( aHint );
 }
 }
-
-PushDouble(0.0);
 }
-else
-PushIllegalParameter();
+
+PushDouble(0.0);
 }
 
 static ScDdeLink* lcl_GetDdeLink( const sfx2::LinkManager* pLinkMgr,


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

2023-02-12 Thread Mike Kaganski (via logerrit)
 sc/source/core/data/stlpool.cxx |   10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

New commits:
commit b8efa9e460f358d42662e385ef5101cca053d8c7
Author: Mike Kaganski 
AuthorDate: Fri Feb 10 13:25:53 2023 +0300
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Feb 13 00:02:23 2023 +

tdf#153514: try to find exact match, even when searching case-insensitively

Change-Id: Ib3bec382ef80a9078ffde8612c395cb0154fd476
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146747
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 
(cherry picked from commit 2a984c77ccb1aa77d9bbd02218d4dc76aaff4a9e)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146763
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/sc/source/core/data/stlpool.cxx b/sc/source/core/data/stlpool.cxx
index 5ca89c37a510..b08b6c2203c9 100644
--- a/sc/source/core/data/stlpool.cxx
+++ b/sc/source/core/data/stlpool.cxx
@@ -408,14 +408,20 @@ ScStyleSheet* ScStyleSheetPool::FindCaseIns( const 
OUString& rName, SfxStyleFami
 CaseInsensitiveNamePredicate aPredicate(rName, eFam);
 std::vector aFoundPositions = 
GetIndexedStyleSheets().FindPositionsByPredicate(aPredicate);
 
+ScStyleSheet* first = nullptr; // first case insensitive match found
 for (const auto& rPos : aFoundPositions)
 {
 SfxStyleSheetBase *pFound = GetStyleSheetByPositionInIndex(rPos);
 // we do not know what kind of sheets we have.
 if (pFound->isScStyleSheet())
-return static_cast(pFound);
+{
+if (pFound->GetName() == rName) // exact case sensitive match
+return static_cast(pFound);
+if (!first)
+first = static_cast(pFound);
+}
 }
-return nullptr;
+return first;
 }
 
 void ScStyleSheetPool::setAllParaStandard()


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

2023-02-12 Thread Mike Kaganski (via logerrit)
 scripting/source/pyprov/pythonscript.py |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 12896c9ed652a239cb1fd05bbd9a32f040e3381f
Author: Mike Kaganski 
AuthorDate: Sun Feb 12 23:13:20 2023 +0300
Commit: Mike Kaganski 
CommitDate: Sun Feb 12 23:55:08 2023 +

tdf#153571: properly unquote (URL-decode) vnd.sun.star.expand payload

Similar to what is done in bootstrap_expandUri, expandUnoRcUrl,
UrlReference::expand, JavaLoader.expand_url, and is documented
in XVndSunStarExpandUrl interface.

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

diff --git a/scripting/source/pyprov/pythonscript.py 
b/scripting/source/pyprov/pythonscript.py
index 4955c8c54888..00d96d9b0d3f 100644
--- a/scripting/source/pyprov/pythonscript.py
+++ b/scripting/source/pyprov/pythonscript.py
@@ -26,6 +26,7 @@ import time
 import ast
 import platform
 from com.sun.star.uri.RelativeUriExcessParentSegments import RETAIN
+from urllib.parse import unquote
 
 class LogLevel:
 NONE = 0   # production level
@@ -854,7 +855,7 @@ def getPackageName2PathMap( sfa, storageType ):
 paths = getPathsFromPackage( j, sfa )
 if len( paths ) > 0:
 # map package name to url, we need this later
-log.isErrorLevel() and log.error( "adding Package " + 
transientPathElement + " " + str( paths ) )
+log.debug( "adding Package " + transientPathElement + " " + str( 
paths ) )
 ret[ lastElement( j ) ] = Package( paths, transientPathElement )
 return ret
 
@@ -941,7 +942,7 @@ def expandUri(  uri ):
 if uri.startswith( "vnd.sun.star.expand:" ):
 uri = uri.replace( "vnd.sun.star.expand:", "",1)
 uri = uno.getComponentContext().getByName(
-"/singletons/com.sun.star.util.theMacroExpander" 
).expandMacros( uri )
+"/singletons/com.sun.star.util.theMacroExpander" 
).expandMacros( unquote(uri) )
 if uri.startswith( "file:" ):
 uri = uno.absolutize("",uri)   # necessary to get rid of .. in uri
 return uri


[Libreoffice-bugs] [Bug 153569] Unable to report bugs using redmine

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153569

Olivier Hallot  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

--- Comment #1 from Olivier Hallot  ---
Please report website issues  to hostmas...@documentfoundation.org

Note: website mailing list is 

webs...@global.libreoffice.org: 

Discussions list covering the design and maintenance of our web infrastructure
(main website, wiki, blog, planet, etc.).

Subscription: website+subscr...@global.libreoffice.org

Digest subscription: website+subscribe-dig...@global.libreoffice.org

Archives: https://listarchives.libreoffice.org/global/website/

Mail-Archive.com: https://www.mail-archive.com/website@global.libreoffice.org/

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

[Libreoffice-bugs] [Bug 153570] 504 gateway error - cannot download old versions of Libreoffice

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153570

Olivier Hallot  changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Olivier Hallot  ---
Please report website issues  to hostmas...@documentfoundation.org

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

[Libreoffice-bugs] [Bug 80430] [META] Documentation gap for new features

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80430

Olivier Hallot  changed:

   What|Removed |Added

 Depends on||153574


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=153574
[Bug 153574] RFE: Add information about errors, error codes or error numbers in
Calc (that is currently not included)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 153574] RFE: Add information about errors, error codes or error numbers in Calc (that is currently not included)

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153574

Olivier Hallot  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
   Keywords||easyHack
 Blocks||80430

--- Comment #1 from Olivier Hallot  ---
Page to fix: text/scalc/05/0214.xhp

1) Add  to each entry (error code) of the table, e.g. 

Calc error 501
Calc error ###
...

2) add entry for N/A in table.
"The formula can’t find what it’s been asked to look for."


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80430
[Bug 80430] [META] Documentation gap for new features
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: Branch 'libreoffice-7-5' - vcl/win

2023-02-12 Thread Caolán McNamara (via logerrit)
 vcl/win/window/salframe.cxx |   53 
 1 file changed, 34 insertions(+), 19 deletions(-)

New commits:
commit aa6e42c4a46104115947625edb9d7eb34c418758
Author: Caolán McNamara 
AuthorDate: Sun Feb 12 20:21:35 2023 +
Commit: Adolfo Jayme Barrientos 
CommitDate: Sun Feb 12 23:15:49 2023 +

Resolves: tdf#153566 set darkmode menubar background color

because we use it for custom menu titles backgrounds

Change-Id: I1ae679bc032d29c4901befc2f1b0cbb53d0a5d1e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146801
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/vcl/win/window/salframe.cxx b/vcl/win/window/salframe.cxx
index dc804a76ab35..e6c8f8a48582 100644
--- a/vcl/win/window/salframe.cxx
+++ b/vcl/win/window/salframe.cxx
@@ -2638,6 +2638,34 @@ void WinSalFrame::UpdateSettings( AllSettings& rSettings 
)
 Color aMenuBarRolloverTextColor;
 Color aHighlightTextColor = 
ImplWinColorToSal(GetSysColor(COLOR_HIGHLIGHTTEXT));
 
+BOOL bFlatMenus = FALSE;
+SystemParametersInfoW( SPI_GETFLATMENU, 0, , 0);
+if( bFlatMenus )
+{
+aStyleSettings.SetUseFlatMenus( true );
+// flat borders for our controls etc. as well in this mode (ie, no 3d 
borders)
+// this is not active in the classic style appearance
+aStyleSettings.SetUseFlatBorders( true );
+}
+else
+{
+aStyleSettings.SetUseFlatMenus( false );
+aStyleSettings.SetUseFlatBorders( false );
+}
+
+if( bFlatMenus )
+{
+aStyleSettings.SetMenuHighlightColor( ImplWinColorToSal( GetSysColor( 
COLOR_MENUHILIGHT ) ) );
+aStyleSettings.SetMenuBarRolloverColor( ImplWinColorToSal( 
GetSysColor( COLOR_MENUHILIGHT ) ) );
+aStyleSettings.SetMenuBorderColor( ImplWinColorToSal( GetSysColor( 
COLOR_3DSHADOW ) ) );
+}
+else
+{
+aStyleSettings.SetMenuHighlightColor( ImplWinColorToSal( GetSysColor( 
COLOR_HIGHLIGHT ) ) );
+aStyleSettings.SetMenuBarRolloverColor( ImplWinColorToSal( 
GetSysColor( COLOR_HIGHLIGHT ) ) );
+aStyleSettings.SetMenuBorderColor( ImplWinColorToSal( GetSysColor( 
COLOR_3DLIGHT ) ) );
+}
+
 const bool bUseDarkMode(UseDarkMode());
 
 OUString sThemeName(!bUseDarkMode ? u"colibre" : u"colibre_dark");
@@ -2681,6 +2709,8 @@ void WinSalFrame::UpdateSettings( AllSettings& rSettings )
 hTheme = OpenThemeData(mhWnd, L"Toolbar");
 GetThemeColor(hTheme, 0, 0, TMT_FILLCOLOR, );
 aStyleSettings.SetInactiveTabColor( ImplWinColorToSal( color ) );
+// see ImplDrawNativeControl for dark mode
+aStyleSettings.SetMenuBarColor( aStyleSettings.GetWindowColor() );
 CloseThemeData(hTheme);
 
 if (hTheme = OpenThemeData(mhWnd, L"Textstyle"))
@@ -2707,6 +2737,10 @@ void WinSalFrame::UpdateSettings( AllSettings& rSettings 
)
 aStyleSettings.SetMenuTextColor( ImplWinColorToSal( GetSysColor( 
COLOR_MENUTEXT ) ) );
 aMenuBarTextColor = ImplWinColorToSal( GetSysColor( COLOR_MENUTEXT ) );
 aMenuBarRolloverTextColor = aHighlightTextColor;
+if( bFlatMenus )
+aStyleSettings.SetMenuBarColor( ImplWinColorToSal( GetSysColor( 
COLOR_MENUBAR ) ) );
+else
+aStyleSettings.SetMenuBarColor( ImplWinColorToSal( GetSysColor( 
COLOR_MENU ) ) );
 aStyleSettings.SetActiveTabColor( aStyleSettings.GetWindowColor() );
 aStyleSettings.SetInactiveTabColor( aStyleSettings.GetFaceColor() );
 }
@@ -2770,7 +2804,6 @@ void WinSalFrame::UpdateSettings( AllSettings& rSettings )
 aStyleSettings.SetHighlightTextColor(aHighlightTextColor);
 aStyleSettings.SetListBoxWindowHighlightColor( 
aStyleSettings.GetHighlightColor() );
 aStyleSettings.SetListBoxWindowHighlightTextColor( 
aStyleSettings.GetHighlightTextColor() );
-aStyleSettings.SetMenuHighlightColor( aStyleSettings.GetHighlightColor() );
 aStyleSettings.SetMenuHighlightTextColor( 
aStyleSettings.GetHighlightTextColor() );
 
 ImplSVData* pSVData = ImplGetSVData();
@@ -2779,30 +2812,12 @@ void WinSalFrame::UpdateSettings( AllSettings& 
rSettings )
 pSVData->maNWFData.maMenuBarHighlightTextColor = COL_TRANSPARENT;
 GetSalData()->mbThemeMenuSupport = false;
 aStyleSettings.SetMenuColor( ImplWinColorToSal( GetSysColor( COLOR_MENU ) 
) );
-aStyleSettings.SetMenuBarColor( aStyleSettings.GetMenuColor() );
-aStyleSettings.SetMenuBarRolloverColor( aStyleSettings.GetHighlightColor() 
);
-aStyleSettings.SetMenuBorderColor( aStyleSettings.GetLightBorderColor() ); 
// overridden below for flat menus
-aStyleSettings.SetUseFlatBorders( false );
-aStyleSettings.SetUseFlatMenus( false );
 
aStyleSettings.SetMenuBarHighlightTextColor(aStyleSettings.GetMenuHighlightTextColor());
 aStyleSettings.SetActiveColor( ImplWinColorToSal( GetSysColor( 
COLOR_ACTIVECAPTION ) ) );
 aStyleSettings.SetActiveTextColor( 

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-23.05' - 2 commits - instsetoo_native/CustomTarget_install.mk sysui/desktop

2023-02-12 Thread Andras Timar (via logerrit)
 instsetoo_native/CustomTarget_install.mk|4 
++--
 sysui/desktop/icons/macos/app-launcher/main.iconset/icon_128x128.png|binary
 sysui/desktop/icons/macos/app-launcher/main.iconset/icon_128x...@2x.png |binary
 sysui/desktop/icons/macos/app-launcher/main.iconset/icon_16x16.png  |binary
 sysui/desktop/icons/macos/app-launcher/main.iconset/icon_16...@2x.png   |binary
 sysui/desktop/icons/macos/app-launcher/main.iconset/icon_256x256.png|binary
 sysui/desktop/icons/macos/app-launcher/main.iconset/icon_256x...@2x.png |binary
 sysui/desktop/icons/macos/app-launcher/main.iconset/icon_32x32.png  |binary
 sysui/desktop/icons/macos/app-launcher/main.iconset/icon_32...@2x.png   |binary
 sysui/desktop/icons/macos/app-launcher/main.iconset/icon_512x512.png|binary
 sysui/desktop/icons/macos/app-launcher/main.iconset/icon_512x...@2x.png |binary
 11 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit ffedcad53531d456cc0b503176ada76f4fc5c8f1
Author: Andras Timar 
AuthorDate: Mon Feb 13 00:05:36 2023 +0100
Commit: Andras Timar 
CommitDate: Mon Feb 13 00:05:36 2023 +0100

[cp] multilingual DMG for macOS

Change-Id: Ib2c8e162c13099dc4ad324f89d68acdf97527199

diff --git a/instsetoo_native/CustomTarget_install.mk 
b/instsetoo_native/CustomTarget_install.mk
index 0c33e32e43f7..82d6b1ccf773 100644
--- a/instsetoo_native/CustomTarget_install.mk
+++ b/instsetoo_native/CustomTarget_install.mk
@@ -50,7 +50,7 @@ export instsetoo_OUT := $(WORKDIR)/installation
 export LOCAL_OUT := $(instsetoo_OUT)
 export LOCAL_COMMON_OUT := $(instsetoo_OUT)
 
-ifeq (WNT,$(OS))
+ifeq ($(filter $(OS),MACOSX WNT),$(OS))
 instsetoo_installer_langs := $(subst $(WHITESPACE),$(COMMA),$(strip en-US 
$(filter-out en-US,$(gb_WITH_LANG
 else
 instsetoo_installer_langs := en-US
@@ -70,7 +70,7 @@ instsetoo_installer_targets := $(foreach 
pkgformat,$(PKGFORMAT),\
 $(if $(filter 
ODK,$(BUILD_TYPE)),sdkoo‧en-US‧_SDK‧‧$(pkgformat)‧nostrip) \
 $(if $(and $(filter HELP,$(BUILD_TYPE)),$(filter-out MACOSX,$(OS))), \
 $(foreach 
lang,$(gb_HELP_LANGS),ooohelppack‧$(lang)‧‧-helppack‧$(pkgformat)‧nostrip)) \
-$(if $(filter-out WNT,$(OS)), \
+$(if $(and $(filter-out WNT,$(OS)),$(filter-out MACOSX,$(OS))), \
 $(foreach lang,$(filter-out 
en-US,$(gb_WITH_LANG)),ooolangpack‧$(lang)‧‧-languagepack‧$(pkgformat)‧nostrip)))
 endif
 
commit 37dd8e42d3a21ed8df986796fb816902d9a64dd0
Author: Andras Timar 
AuthorDate: Mon Feb 13 00:03:59 2023 +0100
Commit: Andras Timar 
CommitDate: Mon Feb 13 00:04:06 2023 +0100

[cp] macOS main.icns source files fopr Collabora Office

Change-Id: Ie5d10ee97c78705a3d701a6965f2bcfe48e1eb0f

diff --git 
a/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_128x128.png 
b/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_128x128.png
index 7deb6eedbaf2..624cdab34e5f 100644
Binary files 
a/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_128x128.png and 
b/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_128x128.png differ
diff --git 
a/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_128x...@2x.png 
b/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_128x...@2x.png
index 59ab781955ca..42f62f9b6548 100644
Binary files 
a/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_128x...@2x.png and 
b/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_128x...@2x.png differ
diff --git a/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_16x16.png 
b/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_16x16.png
index 937eed321a4a..4b9e9f769142 100644
Binary files 
a/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_16x16.png and 
b/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_16x16.png differ
diff --git 
a/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_16...@2x.png 
b/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_16...@2x.png
index 8de8bf5a9b2e..ae2e0b42ee76 100644
Binary files 
a/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_16...@2x.png and 
b/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_16...@2x.png differ
diff --git 
a/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_256x256.png 
b/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_256x256.png
index 59ab781955ca..42f62f9b6548 100644
Binary files 
a/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_256x256.png and 
b/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_256x256.png differ
diff --git 
a/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_256x...@2x.png 
b/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_256x...@2x.png
index 493fb92f2efa..c2f4f21bc2e5 100644
Binary files 
a/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_256x...@2x.png and 
b/sysui/desktop/icons/macos/app-launcher/main.iconset/icon_256x...@2x.png differ
diff --git 

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-22.05-testflight' - desktop/source

2023-02-12 Thread Patrick Luby (via logerrit)
 desktop/source/lib/init.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 4b2b7c2183c7f46ac8929c61f4cbff7baeab13e1
Author: Patrick Luby 
AuthorDate: Sun Feb 12 16:03:30 2023 -0500
Commit: Patrick Luby 
CommitDate: Sun Feb 12 22:58:19 2023 +

Eliminate unused-parameter warning on iOS with Xcode 14.2

Change-Id: Ie7a7f2d66d16a597d92d635fa3c35a17bdd15341
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146844
Reviewed-by: Patrick Luby 
Tested-by: Patrick Luby 

diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index ec7b82ef086f..89205e9d45f3 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -5540,6 +5540,8 @@ static void doc_resetSelection(LibreOfficeKitDocument* 
pThis)
 
 static char* getLanguages(LibreOfficeKitDocument* pThis, const char* pCommand)
 {
+(void)pThis;
+
 css::uno::Sequence< css::lang::Locale > aLocales;
 
 if (xContext.is())


[Libreoffice-bugs] [Bug 153484] Spinning wheel in Calc on macOS

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153484

Patrick Luby  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |plub...@neooffice.org
   |desktop.org |
 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED

--- Comment #11 from Patrick Luby  ---
Marking as resolved in LibreOffice 7.5.0.3.

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

[Libreoffice-commits] core.git: Branch 'distro/cib/libreoffice-6-4' - configure.ac

2023-02-12 Thread Thorsten Behrens (via logerrit)
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 41ad5981336b573065c78f518bfa8d90aeb27297
Author: Thorsten Behrens 
AuthorDate: Sun Feb 12 23:42:44 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Sun Feb 12 23:42:44 2023 +0100

Bump version to 6.4.0.15

Change-Id: I41bbe7003e8caa2905b9434ae4f3a0169cc22df6

diff --git a/configure.ac b/configure.ac
index ffad4a34d700..d2938c0fe5bd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([CIB Office],[6.4.0.14],[],[],[https://www.cib.de/office/])
+AC_INIT([CIB Office],[6.4.0.15],[],[],[https://www.cib.de/office/])
 
 dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just 
fine if it is installed
 dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails 
hard


[Libreoffice-bugs] [Bug 153574] New: RFE: Add information about errors, error codes or error numbers in Calc (that is currently not included)

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153574

Bug ID: 153574
   Summary: RFE: Add information about errors, error codes or
error numbers in Calc (that is currently not included)
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: adylo811...@gmail.com
CC: olivier.hal...@libreoffice.org

When using 
 https://help.libreoffice.org

(and/or the built-in help system), it is not so easy to find information about
errors, error codes or error numbers in relation to Calc's formulas (or their
results).

It is particularly relevant for the #N/A error (at the moment of writing).

ATM there are, for instance:
 * NA 
https://help.libreoffice.org/7.5/en-US/text/scalc/01/04060104.html#bm_id3156275
 * Error Codes in LibreOffice Calc 
https://help.libreoffice.org/7.5/en-US/text/scalc/05/0214.html
 * ERRORTYPE function
https://help.libreoffice.org/7.5/en-US/text/scalc/01/04060109.html#bm_id3153114
 * ERROR.TYPE function
https://help.libreoffice.org/7.5/en-US/text/scalc/01/func_error_type.html#bm_id346793467934679

While less directed to common simple final users (of Calc), there is also (not
part of Calc):
* Error Function 
https://help.libreoffice.org/7.5/en-US/text/sbasic/shared/03050300.html

and additionally, there is the Guide (CG75-CalcGuide.pdf, the latest ATM).

But there seems to be no info with more details about (some of) the errors (and
particularly for #N/A), nor a simple way for newbies to find information about
situations like the following:
 "what is this #N/A error result that I am getting? Why? What should I do with
this?

(To be clear, I know the answer. This is only a rhetorical question, in order
to explain the need for this RFE.)


I have tried several different keywords, sometimes with or without "#" and/or
"!" and/or "?" and/or "/" (as in NA, N/A, #NA, NA(), #N/A...), and sometimes
with or without additional words such as "error", "code", in plural, in
uppercase, combining them...

Please also note that even in the aforementioned links, there is little or no
relevant information about the #N/A error, not even in the help page for the
NA() function.

In particular, the help page that lists the error codes (already mentioned
above):
 https://help.libreoffice.org/7.5/en-US/text/scalc/05/0214.html

does not include the #N/A error.

Moreover, I couldn't find any mention about #N/A in the Guide
(CG75-CalcGuide.pdf, the latest ATM).

Even if the #N/A error were to be considered a different category than those
listed in that help page – IDK whether that's the case – from the POV of a
newbie "an error (message) is still an error (message)" (and a newbie might
probably won't know nor care about categories of errors in Calc).

IMHO, either all errors seen by final users should be listed (and minimally
explained, at least), or some other help page should include them somewhere.
This is the point of this RFE.

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

[Libreoffice-bugs] [Bug 153481] crash after 2 min of starting, closing all open LO documents

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153481

--- Comment #20 from spavla...@hotmail.com ---
it's ok, someone will appear that can help out the ignorant :D

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

[Libreoffice-bugs] [Bug 153562] Pasting Selected Range to Sheet as BMP Image, It will be a Chart Image without content.

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153562

--- Comment #3 from nobu  ---
(In reply to nobu from comment #0)

> Additional Info:
> Not Reproduced with before Version 7.4.0.0 alpha1 64bit, OS:Windows10 64bit

This was a mistake.
The following is the right.

Not Reproduced with before Version 7.4.0.0 alpha1 32bit, OS:Windows10 64bit

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

[Libreoffice-bugs] [Bug 153484] Spinning wheel in Calc on macOS

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153484

--- Comment #10 from JackVos  ---
Hello Patrick. Just tried 7.5.0.3 with file BUDGET 2023. Didn't encounter the
problem opening the file. Modified an existing row in the worksheet and did a
sort without a problem. So, I think you can close Bug 153484, resolution:
install LibreOffice 7.5.0.  I'll stay on 7.5.0.3. If I encounter a problem,
I'll assume it's a horse of a different garage. Thanks again Patrick.
Appreciate your help.

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

[Libreoffice-bugs] [Bug 152594] Tab does not increase outline level for PS registered in Chapter Numbering when the next outline level does not have numbering

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152594

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

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 120917] Tab key at the beginning of heading has strange and inconsistent effects

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120917

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

   What|Removed |Added

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

--- Comment #12 from sdc.bla...@youmail.dk ---
@Kenneth Hanson maybe you can test the attachments at bug 152594, comment 4 and
bug 152594, comment 5. 

Possibly this ticket is a duplicate of bug 152594.

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

[Libreoffice-bugs] [Bug 152594] Tab does not increase outline level for PS registered in Chapter Numbering when the next outline level does not have numbering

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152594

--- Comment #5 from sdc.bla...@youmail.dk ---
Created attachment 185338
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185338=edit
Test file created in 7.2.7.2, which works correctly

The attachment has a file which was created in 7.2.7.2 with three lines shown
after this paragraph, where the PS style for each line corresponds respectively
to the text in the line.

Heading 1  (apply PS)
Heading 2  (apply PS)
Heading 3  (apply PS)

(no numbering set in Tools - Chapter Numbering)

In both 7.2.7.2 and 7.6.0.0.alpha0+, if that file (in the attachment) is
opened, then "Tab" increases outline level for Heading 2 and 3 with no problem
(and can continue to increase to outline level 6, 7, etc). 

In other words, "actual" and "expected" behavior are aligned.

But if the same document described here is created manually in 7.6.0.0.alpha0+,
then using "Tab" only adds a tab to the line where the tab key was pressed.

If that 7.6.0.0. document is saved, and then opened in 7.2.7.2, then the same
(unexpected) behavior is observed (i.e., Tab simply inserts a tab (actual); it
does not change outline level as expected).

The test file in attachment 185335 was created with 7.6.0.0.alpha0+, which
would explain why I observe the same behavior between 7.2.7.2 and
7.6.0.0.alpha0+, as reported in the previous comment.

The attachment here, created with 7.2.7.2, works as expected, both in 7.2.7.2
and 7.6  (without adding numbering).

Finally, if the document created by 7.6.0.0 is opened with 7.2.7.2 and
numbering is added to all headings in Tools - Chapter Numbering, then Tab works
as expected.

Summary of experiments:  

1. Tab does not work (in 7.2.7 and 7.6) if:
a. document is created in 7.6 
AND
b. no numbering is assigned in Tools - Chapter Numbering.

2.  Tab does work (in 7.2.7 and 7.6) if:
a. document is created in 7.2.7.2 
OR
b. numbering is applied to headings using Tools - Chapter Numbering.

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

[Libreoffice-bugs] [Bug 148884] LibreOffice Draw dark color scheme background color leaks to the exported PDF

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148884

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 148614] Field values are white on white in preview, PDF and print when using desktop environment's dark mode (GNOME, Cinnamon, MATE)

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148614

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Libreoffice-commits] core.git: .gitignore

2023-02-12 Thread buldi (via logerrit)
 .gitignore |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1af3cb6cf2f635e1d5431942a787d52a2ec3fa70
Author: buldi 
AuthorDate: Thu Feb 9 22:30:26 2023 +0100
Commit: Ilmari Lauhakangas 
CommitDate: Sun Feb 12 21:37:18 2023 +

.gitignore: /.vscode*

Some VS Code extensions create directories with this prefix.

Change-Id: Ie4a96a276970327d8da39bffd51eaf137e4163bf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146728
Tested-by: Ilmari Lauhakangas 
Reviewed-by: Ilmari Lauhakangas 

diff --git a/.gitignore b/.gitignore
index 80da6ef39f9f..70f3f95819d5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -141,7 +141,7 @@ DerivedData
 *.opensdf
 *.vcxproj*
 /.vs
-/.vscode
+/.vscode*
 *.VC.db
 LibreOffice.VC.VC.opendb
 


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

2023-02-12 Thread Caolán McNamara (via logerrit)
 vcl/win/window/salframe.cxx |   53 
 1 file changed, 34 insertions(+), 19 deletions(-)

New commits:
commit 2dded7d07ac818da920644a595b7e9331458e70d
Author: Caolán McNamara 
AuthorDate: Sun Feb 12 20:21:35 2023 +
Commit: Caolán McNamara 
CommitDate: Sun Feb 12 21:31:35 2023 +

Resolves: tdf#153566 set darkmode menubar background color

because we use it for custom menu titles backgrounds

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

diff --git a/vcl/win/window/salframe.cxx b/vcl/win/window/salframe.cxx
index 5bccf6707700..638c02e38a8a 100644
--- a/vcl/win/window/salframe.cxx
+++ b/vcl/win/window/salframe.cxx
@@ -2668,6 +2668,34 @@ void WinSalFrame::UpdateSettings( AllSettings& rSettings 
)
 Color aMenuBarRolloverTextColor;
 Color aHighlightTextColor = 
ImplWinColorToSal(GetSysColor(COLOR_HIGHLIGHTTEXT));
 
+BOOL bFlatMenus = FALSE;
+SystemParametersInfoW( SPI_GETFLATMENU, 0, , 0);
+if( bFlatMenus )
+{
+aStyleSettings.SetUseFlatMenus( true );
+// flat borders for our controls etc. as well in this mode (ie, no 3d 
borders)
+// this is not active in the classic style appearance
+aStyleSettings.SetUseFlatBorders( true );
+}
+else
+{
+aStyleSettings.SetUseFlatMenus( false );
+aStyleSettings.SetUseFlatBorders( false );
+}
+
+if( bFlatMenus )
+{
+aStyleSettings.SetMenuHighlightColor( ImplWinColorToSal( GetSysColor( 
COLOR_MENUHILIGHT ) ) );
+aStyleSettings.SetMenuBarRolloverColor( ImplWinColorToSal( 
GetSysColor( COLOR_MENUHILIGHT ) ) );
+aStyleSettings.SetMenuBorderColor( ImplWinColorToSal( GetSysColor( 
COLOR_3DSHADOW ) ) );
+}
+else
+{
+aStyleSettings.SetMenuHighlightColor( ImplWinColorToSal( GetSysColor( 
COLOR_HIGHLIGHT ) ) );
+aStyleSettings.SetMenuBarRolloverColor( ImplWinColorToSal( 
GetSysColor( COLOR_HIGHLIGHT ) ) );
+aStyleSettings.SetMenuBorderColor( ImplWinColorToSal( GetSysColor( 
COLOR_3DLIGHT ) ) );
+}
+
 const bool bUseDarkMode(UseDarkMode());
 
 OUString sThemeName(!bUseDarkMode ? u"colibre" : u"colibre_dark");
@@ -2711,6 +2739,8 @@ void WinSalFrame::UpdateSettings( AllSettings& rSettings )
 hTheme = OpenThemeData(mhWnd, L"Toolbar");
 GetThemeColor(hTheme, 0, 0, TMT_FILLCOLOR, );
 aStyleSettings.SetInactiveTabColor( ImplWinColorToSal( color ) );
+// see ImplDrawNativeControl for dark mode
+aStyleSettings.SetMenuBarColor( aStyleSettings.GetWindowColor() );
 CloseThemeData(hTheme);
 
 hTheme = OpenThemeData(mhWnd, L"Textstyle");
@@ -2738,6 +2768,10 @@ void WinSalFrame::UpdateSettings( AllSettings& rSettings 
)
 aStyleSettings.SetMenuTextColor( ImplWinColorToSal( GetSysColor( 
COLOR_MENUTEXT ) ) );
 aMenuBarTextColor = ImplWinColorToSal( GetSysColor( COLOR_MENUTEXT ) );
 aMenuBarRolloverTextColor = aHighlightTextColor;
+if( bFlatMenus )
+aStyleSettings.SetMenuBarColor( ImplWinColorToSal( GetSysColor( 
COLOR_MENUBAR ) ) );
+else
+aStyleSettings.SetMenuBarColor( ImplWinColorToSal( GetSysColor( 
COLOR_MENU ) ) );
 aStyleSettings.SetActiveTabColor( aStyleSettings.GetWindowColor() );
 aStyleSettings.SetInactiveTabColor( aStyleSettings.GetFaceColor() );
 }
@@ -2801,7 +2835,6 @@ void WinSalFrame::UpdateSettings( AllSettings& rSettings )
 aStyleSettings.SetHighlightTextColor(aHighlightTextColor);
 aStyleSettings.SetListBoxWindowHighlightColor( 
aStyleSettings.GetHighlightColor() );
 aStyleSettings.SetListBoxWindowHighlightTextColor( 
aStyleSettings.GetHighlightTextColor() );
-aStyleSettings.SetMenuHighlightColor( aStyleSettings.GetHighlightColor() );
 aStyleSettings.SetMenuHighlightTextColor( 
aStyleSettings.GetHighlightTextColor() );
 
 ImplSVData* pSVData = ImplGetSVData();
@@ -2810,30 +2843,12 @@ void WinSalFrame::UpdateSettings( AllSettings& 
rSettings )
 pSVData->maNWFData.maMenuBarHighlightTextColor = COL_TRANSPARENT;
 GetSalData()->mbThemeMenuSupport = false;
 aStyleSettings.SetMenuColor( ImplWinColorToSal( GetSysColor( COLOR_MENU ) 
) );
-aStyleSettings.SetMenuBarColor( aStyleSettings.GetMenuColor() );
-aStyleSettings.SetMenuBarRolloverColor( aStyleSettings.GetHighlightColor() 
);
-aStyleSettings.SetMenuBorderColor( aStyleSettings.GetLightBorderColor() ); 
// overridden below for flat menus
-aStyleSettings.SetUseFlatBorders( false );
-aStyleSettings.SetUseFlatMenus( false );
 
aStyleSettings.SetMenuBarHighlightTextColor(aStyleSettings.GetMenuHighlightTextColor());
 aStyleSettings.SetActiveColor( ImplWinColorToSal( GetSysColor( 
COLOR_ACTIVECAPTION ) ) );
 aStyleSettings.SetActiveTextColor( ImplWinColorToSal( GetSysColor( 

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

2023-02-12 Thread Andrea Gelmini (via logerrit)
 drawinglayer/source/attribute/fillgradientattribute.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 7e1a4a518ef6a8a32f4acf4fe3cc634c3573f778
Author: Andrea Gelmini 
AuthorDate: Sun Feb 12 12:40:01 2023 +0100
Commit: Julien Nabet 
CommitDate: Sun Feb 12 21:27:13 2023 +

Fix typos

Change-Id: I7c755b2099c3607fece3442269ff3a806b196f1f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146836
Tested-by: Julien Nabet 
Reviewed-by: Julien Nabet 

diff --git a/drawinglayer/source/attribute/fillgradientattribute.cxx 
b/drawinglayer/source/attribute/fillgradientattribute.cxx
index 3d13c4050670..32edd39340fe 100644
--- a/drawinglayer/source/attribute/fillgradientattribute.cxx
+++ b/drawinglayer/source/attribute/fillgradientattribute.cxx
@@ -51,7 +51,7 @@ namespace drawinglayer::attribute
 meStyle(eStyle),
 mnSteps(nSteps)
 {
-// always add start color to guarentee a color at all. It's 
also just safer
+// always add start color to guarantee a color at all. It's 
also just safer
 // to have one and not an empty vector, that spares many 
checks in the using code
 maColorSteps.emplace_back(0.0, rStartColor);
 
@@ -61,7 +61,7 @@ namespace drawinglayer::attribute
 for(const auto& candidate : *pColorSteps)
 {
 // only allow ]0.0 .. 1.0[ as offset values, 
*excluding* 0.0 and 1.0
-// explicitely - these are reserved for start/end color
+// explicitly - these are reserved for start/end color
 if(basegfx::fTools::more(candidate.getOffset(), 0.0) 
&& basegfx::fTools::less(candidate.getOffset(), 1.0))
 {
 // ignore same offsets, independent from color (so 
1st one wins)


[Libreoffice-bugs] [Bug 149273] Clicking on 'Entries' tab when inserting/editing an index crashes Writer (Mac OS)

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149273

--- Comment #20 from Julien Nabet  ---
(In reply to Alex Thurgood from comment #19)
> (In reply to Julien Nabet from comment #16)
> 
> 
> > Alex: any thoughts here? I mean, what's the interest to pay something which
> > is bigger but provides less? Moreover, I read that process to have upgrades
> > in Apple store is slower.
> 
> Personally, the appstore version is too crippled for our daily work, which
> requires the full database functionality of the non-store version.

It seems Apple store version is just bad advertisement for LO then, what a
pity! :-(

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

[Libreoffice-bugs] [Bug 153481] crash after 2 min of starting, closing all open LO documents

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153481

Julien Nabet  changed:

   What|Removed |Added

 CC|serval2...@yahoo.fr |

--- Comment #19 from Julien Nabet  ---
I'm stuck too and can't help here then.
=>uncc myself.

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

[Libreoffice-bugs] [Bug 149273] Clicking on 'Entries' tab when inserting/editing an index crashes Writer (Mac OS)

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149273

--- Comment #19 from Alex Thurgood  ---
(In reply to Julien Nabet from comment #16)


> Alex: any thoughts here? I mean, what's the interest to pay something which
> is bigger but provides less? Moreover, I read that process to have upgrades
> in Apple store is slower.

Personally, the appstore version is too crippled for our daily work, which
requires the full database functionality of the non-store version.

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

[Libreoffice-bugs] [Bug 153573] New: Menus are all blank when opening .doc files

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153573

Bug ID: 153573
   Summary: Menus are all blank when opening .doc files
   Product: LibreOffice
   Version: 7.4.3.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: buggymc...@bobmail.info

Description:
Menus for 6.x and 7.x become grey boxes when opening .doc, .odt, .docx files.
Works fine in 5.x. Also .txt files work fine in 6/7.

Steps to Reproduce:
Open a .doc file in 6.4.7 portable or 7.4.3.2 portable - doesn't seem to matter
what .doc file it is, the menus will all become blank (grey boxes).

The same docs work fine in 5.4.7, so it's a regression somewhere in the 6.x
line.
Windows 7.

Opening a .txt file works just fine however.


Actual Results:
Menu's become grey boxes. Dialogs have just the frame with no content. The
interactive cursor stops working in the text.

Expected Results:
n/a


Reproducible: Always


User Profile Reset: No

Additional Info:
I did the graphics tests thing:

Graphics Backend used: skia
Passed Tests: 53
Quirky Tests: 51
Failed Tests: 0
Skipped Tests: 5

---Name of the tests that failed---
No test has been failed.

---Name of the tests that were Quirky---
testDrawRectWithLine
testDrawRectWithPolygon
testDrawRectWithPolyLine
testDrawRectWithPolyLineB2D
testDrawRectWithPolyPolygon
testDrawRectWithPolyPolygonB2D
testDrawFilledRectWithPolygonWithAA
testDrawFilledRectWithPolyPolygonWithAA
testDrawFilledRectWithPolyPolygon2DWithAA
testDrawDiamondWithPolygon
testDrawDiamondWithLine
testDrawDiamondWithPolyline
testDrawDiamondWithPolylineB2D
testLinearGradientBorder
testLinearGradientSteps
testAxialGradient
testRadialGradient
testRadialGradientOfs
testDrawDropShapeAAWithPolyline
testDrawDropShapeAAWithPolygon
testHalfEllipseWithPolyLine
testHalfEllipseAAWithPolyLine
testHalfEllipseWithPolyLineB2D
testHalfEllipseAAWithPolyLineB2D
testHalfEllipseWithPolygon
testHalfEllipseAAWithPolygon
testClosedBezierWithPolyline
testClosedBezierWithPolygon
testFilledAsymmetricalDropShape
testTextDrawing
testDrawRectangleOnSize1028WithPixel
testDrawRectangleOnSize4096WithPixel
testDrawRectangleOnSize1028WithLine
testDrawRectangleOnSize4096WithLine
testDrawRectangleOnSize1028WithPolyLine
testDrawRectangleOnSize4096WithPolyLine
testDrawRectangleOnSize1028WithPolygon
testDrawRectangleOnSize4096WithPolygon
testDrawRectangleOnSize1028WithPolyLineB2D
testDrawRectangleOnSize4096WithPolyLineB2D
testDrawRectangleOnSize1028WithPolyPolygon
testDrawRectangleOnSize4096WithPolyPolygon
testDrawRectangleOnSize1028WithPolyPolygonB2D
testDrawRectangleOnSize4096WithPolygonPolygonB2D
testDrawOpenPolygonWithPolyLine
testDrawOpenPolygonWithPolyLineB2D
testDrawOpenPolygonWithPolygon
testDrawOpenPolygonWithPolyPolygon
testDrawOpenPolygonWithPolyPolygonB2D
testDrawOpenBezierWithPolyLine
testDrawOpenBezierWithPolyLineB2D

---Name of the tests that were Skipped---
testDrawBitmap32bpp
testDrawTransformedBitmap32bpp
testDrawBitmapExWithAlpha32bpp
testDrawMask32bpp
testDrawBlend32bpp



===

Version: 7.4.3.2 (x86) / LibreOffice Community
Build ID: 1048a8393ae2eeec98dff31b5c133c5f1d08b890
CPU threads: 4; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Raster; VCL: win
Locale: en-US (en_GB); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 149273] Clicking on 'Entries' tab when inserting/editing an index crashes Writer (Mac OS)

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149273

--- Comment #18 from Alex Thurgood  ---
(In reply to Julien Nabet from comment #16)


> Alex: any thoughts here? I mean, what's the interest to pay something which
> is bigger but provides less? Moreover, I read that process to have upgrades
> in Apple store is slower.

The appstore version contains multiple languages support in one single
installation app (translation, help, spellchecker, etc) . Presumably, this
increases the total size somewhat compared to the TDF app bundle download
image, which is compressed to make the DMG, and which has individual separate
langpacks. @cloph would almost certainly know more about the details. Maybe
also there is some universal build thing going on, which is not the case for
the arch-specific builds.

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

[Libreoffice-bugs] [Bug 153572] Basic IDE also needs .uno:ZoomPlus and .uno:ZoomMinus commands

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153572

--- Comment #1 from Rafael Lima  ---
This patch implements the commands in the Basic IDE

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

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

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-23.05' - 17 commits - configure.ac cui/source download.lst external/openssl sc/inc scp2/source sc/qa sc/source sd/source setup_native/source

2023-02-12 Thread Andras Timar (via logerrit)
 configure.ac  |1 
 cui/source/options/optgdlg.cxx|   26 
 cui/source/options/optgdlg.hxx|3 
 download.lst  |4 
 external/openssl/0001-x509-fix-double-locking-problem.patch.1 |   39 
 external/openssl/UnpackedTarball_openssl.mk   |1 
 external/openssl/system-cannot-find-path-for-move.patch.0 |   11 
 sc/inc/validat.hxx|4 
 sc/qa/uitest/validity/tdf150098.py|   47 
 sc/source/core/data/validat.cxx   |  131 
 sc/source/filter/oox/workbookfragment.cxx |4 
 sc/source/filter/oox/worksheethelper.cxx  |3 
 sc/source/ui/app/client.cxx   |6 
 scp2/source/ooo/scpaction_ooo.scp |7 
 sd/source/ui/docshell/sdclient.cxx|7 
 setup_native/source/packinfo/DS_Store |binary
 setup_native/source/packinfo/VolumeIcon.icns  |binary
 setup_native/source/packinfo/sla.r| 2728 ++
 solenv/bin/macosx-codesign-app-bundle |4 
 solenv/bin/modules/installer/simplepackage.pm |   12 
 sw/inc/crsrsh.hxx |5 
 sw/qa/extras/uiwriter/data/tdf114973.fodt |  144 
 sw/qa/extras/uiwriter/uiwriter3.cxx   |   34 
 sw/qa/uitest/writer_tests7/tdf152964.py   |   50 
 sw/source/core/crsr/callnk.cxx|2 
 sw/source/core/crsr/crsrsh.cxx|   26 
 sw/source/core/docnode/ndtbl1.cxx |1 
 sw/source/core/edit/eddel.cxx |2 
 sw/source/core/edit/edglss.cxx|2 
 sw/source/core/frmedt/fetab.cxx   |2 
 sw/source/core/layout/ftnfrm.cxx  |3 
 sw/source/core/text/frmcrsr.cxx   |2 
 sw/source/uibase/app/applab.cxx   |2 
 sw/source/uibase/shells/tabsh.cxx |2 
 sw/source/uibase/wrtsh/select.cxx |2 
 vcl/inc/font/LogicalFontInstance.hxx  |2 
 vcl/inc/qt5/QtGraphics_Controls.hxx   |3 
 vcl/qt5/QtGraphics_Controls.cxx   |   30 
 vcl/source/app/salvtables.cxx |8 
 vcl/source/control/PriorityMergedHBox.cxx |9 
 vcl/source/font/LogicalFontInstance.cxx   |   13 
 vcl/source/gdi/CommonSalLayout.cxx|9 
 vcl/unx/gtk3/gtkinst.cxx  |4 
 43 files changed, 3264 insertions(+), 131 deletions(-)

New commits:
commit d4200728fa54ac773f55318dd3fb7dea407b30bb
Author: Andras Timar 
AuthorDate: Thu Mar 15 23:01:27 2018 +0100
Commit: Andras Timar 
CommitDate: Sun Feb 12 21:29:57 2023 +0100

[cp] Collabora Office macOS packaging

- added EULA (sla.r) in special OS X resource fork format
- added volume icon which does not work ATM, TODO later
- new dmg background image and adjusted .DS_Store
- fixes to tolerate space in app bundle name

Change-Id: Ia855d7d677136de951c2b9b31ee8d5583475dd41

diff --git a/scp2/source/ooo/scpaction_ooo.scp 
b/scp2/source/ooo/scpaction_ooo.scp
index e09d72848dad..a6546b2400e0 100644
--- a/scp2/source/ooo/scpaction_ooo.scp
+++ b/scp2/source/ooo/scpaction_ooo.scp
@@ -45,6 +45,13 @@ ScpAction scp_Copy_Dmg_Background_Image
 Subdir = ".background";
 End
 
+ScpAction scp_Copy_Dmg_Volume_Icon
+Copy = "VolumeIcon.icns";
+Name = ".VolumeIcon.icns";
+UnixRights = 444;
+Styles = ();
+End
+
 ScpAction scp_Copy_Ds_Store
 Copy = "DS_Store";
 DevVersionCopy = "DS_Store_Dev";
diff --git a/setup_native/source/packinfo/DS_Store 
b/setup_native/source/packinfo/DS_Store
index 755f7f6a845f..260cdc3c2a6e 100644
Binary files a/setup_native/source/packinfo/DS_Store and 
b/setup_native/source/packinfo/DS_Store differ
diff --git a/setup_native/source/packinfo/VolumeIcon.icns 
b/setup_native/source/packinfo/VolumeIcon.icns
new file mode 100644
index ..1c7cef6b6f44
Binary files /dev/null and b/setup_native/source/packinfo/VolumeIcon.icns differ
diff --git a/setup_native/source/packinfo/sla.r 
b/setup_native/source/packinfo/sla.r
new file mode 100644
index ..e66aae700ee8
--- /dev/null
+++ b/setup_native/source/packinfo/sla.r
@@ -0,0 +1,2728 @@
+data 'TMPL' (128, "LPic") {
+   $"1344 6566 6175 6C74 204C 616E 6775 6167"/* 

[Libreoffice-bugs] [Bug 153571] Failure installing a Python-based OXT with a space in the file name - part 2

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153571

Mike Kaganski  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |ASSIGNED
   Assignee|libreoffice-b...@lists.free |mikekagan...@hotmail.com
   |desktop.org |

--- Comment #1 from Mike Kaganski  ---
https://gerrit.libreoffice.org/c/core/+/146840

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

[Libreoffice-bugs] [Bug 153566] Windows Dark mode: toolbar context menus have light-on-light header

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153566

Caolán McNamara  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |
 Status|NEW |ASSIGNED

--- Comment #2 from Caolán McNamara  ---
seems to use the menubar background color for such "title" entries in a menu

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

[Libreoffice-bugs] [Bug 153572] New: Basic IDE also needs .uno:ZoomPlus and .uno:ZoomMinus commands

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153572

Bug ID: 153572
   Summary: Basic IDE also needs .uno:ZoomPlus and .uno:ZoomMinus
commands
   Product: LibreOffice
   Version: 7.5.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rafael.palma.l...@gmail.com

Calc, Writer and Impress/Draw implement the .uno:ZoomPlus (SID_ZOOM_IN) and
.uno:ZoomMinus (SID_ZOOM_OUT) commands, which can be associated with keyboard
shortcuts such as Ctrl + for zooming in/out of a document.

After working on bug 45705 I noticed that this command is not implemented in
the Basic IDE. It would be very useful to have these commands in the Basic IDE
so we can zoom in and out of the code editor with a keyboard shortcut.

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

[Libreoffice-bugs] [Bug 153571] New: Failure installing a Python-based OXT with a space in the file name - part 2

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153571

Bug ID: 153571
   Summary: Failure installing a Python-based OXT with a space in
the file name - part 2
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com

1. Download APSO v.1.3.2 from
https://extensions.libreoffice.org/en/extensions/show/apso-alternative-script-organizer-for-python;
2. Rename the filename from 'apso.oxt' to, e.g., 'apso (2).oxt';
3. Try to install it (e.g., double-click the .oxt in the file manager to
execute "soffice '/path/to/apso (2).oxt'").

=> installation would fail, with something like

> Failed to register package for
> vnd.sun.star.expand:$UNO_USER_PACKAGES_CACHE/uno_packages/lu265164xhtp8.tmp_/apso%2520(2).oxt/python/scripts

The code that fails to URL-decode the vnd.sun.star.expand:... payload prior to
passing it to expandMacros is expandUri in
scripting/source/pyprov/pythonscript.py (see bug 150982 comment 4).

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

[Libreoffice-bugs] [Bug 153481] crash after 2 min of starting, closing all open LO documents

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153481

--- Comment #18 from spavla...@hotmail.com ---
the above came out when i wrote skia.log
Then i wrote dir and 37 skia.log came out. So i write this too .. 
you probably laugh right now haha .. but as i said, i am clueless :D

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

[Libreoffice-bugs] [Bug 153481] crash after 2 min of starting, closing all open LO documents

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153481

--- Comment #17 from spavla...@hotmail.com ---
ok, 
RenderMethod: raster
Compiler: Clang

This is what came out, in note pad window. is this what you need??

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

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

2023-02-12 Thread Andrea Gelmini (via logerrit)
 sw/source/uibase/wrtsh/select.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4cea7d8f5645cc8c8b7deb78a1bcc0c925f4bb7d
Author: Andrea Gelmini 
AuthorDate: Sun Feb 12 12:05:03 2023 +0100
Commit: Julien Nabet 
CommitDate: Sun Feb 12 19:44:37 2023 +

Fix typo

Change-Id: I8ab5346e38b6eac508018aced86339d6342224a7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146832
Tested-by: Julien Nabet 
Reviewed-by: Julien Nabet 

diff --git a/sw/source/uibase/wrtsh/select.cxx 
b/sw/source/uibase/wrtsh/select.cxx
index c955a8bdd174..fe2915a90234 100644
--- a/sw/source/uibase/wrtsh/select.cxx
+++ b/sw/source/uibase/wrtsh/select.cxx
@@ -55,7 +55,7 @@ void SwWrtShell::Invalidate()
 // to avoid making the slot volatile, invalidate it every time if 
something could have been changed
 // this is still much cheaper than asking for the state every 200 ms (and 
avoid background processing)
 GetView().GetViewFrame()->GetBindings().Invalidate( FN_STAT_SELMODE );
-GetView().GetViewFrame()->GetBindings().Update(FN_STAT_SELMODE); // make 
selection mode control icon update immediatly
+GetView().GetViewFrame()->GetBindings().Update(FN_STAT_SELMODE); // make 
selection mode control icon update immediately
 SwWordCountWrapper *pWrdCnt = 
static_cast(GetView().GetViewFrame()->GetChildWindow(SwWordCountWrapper::GetChildWindowId()));
 if (pWrdCnt)
 pWrdCnt->UpdateCounts();


[Libreoffice-commits] core.git: 3 commits - include/drawinglayer sw/source

2023-02-12 Thread Andrea Gelmini (via logerrit)
 include/drawinglayer/attribute/fillgradientattribute.hxx |4 ++--
 sw/source/uibase/docvw/edtdd.cxx |2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 60d7056184e558ab27c67a1500f705db5dfb9d02
Author: Andrea Gelmini 
AuthorDate: Sun Feb 12 12:39:20 2023 +0100
Commit: Julien Nabet 
CommitDate: Sun Feb 12 19:36:03 2023 +

Fix typo

Change-Id: Ia21de983bd4295f399e9753c29bc2a3cace2f250
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146835
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/include/drawinglayer/attribute/fillgradientattribute.hxx 
b/include/drawinglayer/attribute/fillgradientattribute.hxx
index 0afd20245f76..7a10806b1e9f 100644
--- a/include/drawinglayer/attribute/fillgradientattribute.hxx
+++ b/include/drawinglayer/attribute/fillgradientattribute.hxx
@@ -110,7 +110,7 @@ public:
 
Start/EndColor will be added to the internal ColorSteps with
the according default offsets. A rigid correction/input data
-   testing is done by the construtor, including to sort the
+   testing is done by the constructor, including to sort the
ColorSteps by offset.
 
To access e.g. the StartColor, use getColorSteps().front(), and
commit f1fddf82234c3925d98a01e52a9ecfb5093a0e60
Author: Andrea Gelmini 
AuthorDate: Sun Feb 12 12:05:35 2023 +0100
Commit: Julien Nabet 
CommitDate: Sun Feb 12 19:33:49 2023 +

Fix typo

Change-Id: I28253e80065c690dca45658111a2cd54857b186a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146833
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/sw/source/uibase/docvw/edtdd.cxx b/sw/source/uibase/docvw/edtdd.cxx
index 278030c1f5ec..8631226e55bf 100644
--- a/sw/source/uibase/docvw/edtdd.cxx
+++ b/sw/source/uibase/docvw/edtdd.cxx
@@ -122,7 +122,7 @@ void SwEditWin::StartDrag( sal_Int8 /*nAction*/, const 
Point& rPosPixel )
 return;
 
 // If the add selection mode has been pushed in the MouseButtonDown 
handler it needs to be
-// popped or it will remain active and noticable in the statusbar 
selection control until the
+// popped or it will remain active and noticeable in the statusbar 
selection control until the
 // next MouseButtonUp event after the DnD, since a MouseButtonUp event is 
not received by the
 // edit window when DnD is done.
 if (g_bModePushed)
commit 393b55e4428bb5e6f5df69be4cdea371a12ce67e
Author: Andrea Gelmini 
AuthorDate: Sun Feb 12 12:39:02 2023 +0100
Commit: Julien Nabet 
CommitDate: Sun Feb 12 19:32:15 2023 +

Fix typo

Change-Id: I51b5c88e1d82c596b926e7074ee3a7e1395a21a0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146834
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/include/drawinglayer/attribute/fillgradientattribute.hxx 
b/include/drawinglayer/attribute/fillgradientattribute.hxx
index 11b87f1b3a32..0afd20245f76 100644
--- a/include/drawinglayer/attribute/fillgradientattribute.hxx
+++ b/include/drawinglayer/attribute/fillgradientattribute.hxx
@@ -114,7 +114,7 @@ public:
ColorSteps by offset.
 
To access e.g. the StartColor, use getColorSteps().front(), and
-   getColorSteps().back(), accordingly, for EndColor. The existance
+   getColorSteps().back(), accordingly, for EndColor. The existence
of at least one entry is guaranteed, so no need to check before
accessing using of front()/back() calls. If only one color entry
exists, start == end color is assumed, so not really a gradient


[Libreoffice-bugs] [Bug 153481] crash after 2 min of starting, closing all open LO documents

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153481

--- Comment #16 from Julien Nabet  ---
(In reply to spavlatou from comment #15)
> is there a way to find the skia.log from the terminal? i could do that if
> you give me the commands i have to use

open terminal and type:
cd %appdata%\libreoffice\4\cache
skia.log is here.

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

[Libreoffice-bugs] [Bug 153566] Windows Dark mode: toolbar context menus have light-on-light header

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153566

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC||vsfo...@libreoffice.org

--- Comment #1 from V Stuart Foote  ---
Confirmed. Seems the Toolbar Context menus have a title bar element with a
different background; foreground Text and bounding outline correctly toggle fg
color response but the backing remains light -- fixed color? or a missed
element for theme response?

with 20230211 build on Windows in os/DE Dark mode color theme and LO mode in
Automatic

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 9788a565b3241d1bd62394b9e29c322361d05f80
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

and also in with just the theme detection

Version: 7.5.0.3 (X86_64) / LibreOffice Community
Build ID: c21113d003cd3efa8c53188764377a8272d9d6de
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 153570] New: 504 gateway error - cannot download old versions of Libreoffice

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153570

Bug ID: 153570
   Summary: 504 gateway error - cannot download old versions of
Libreoffice
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: buggymc...@bobmail.info
CC: olivier.hal...@libreoffice.org

Description:
I'm mostly getting "504 gateway timeout" when I try and download old versions
of Libreoffice from:
https://downloadarchive.documentfoundation.org/libreoffice/old/
Intermittently it works, but even when it does, it's still extremely slow to
get to load a page.

(I know this should reported to redmine; that simply doesn't work for me, so
I'm reporting it here instead)

Actual Results:
504 gateway timeout

Expected Results:
200


Reproducible: Always


User Profile Reset: No

Additional Info:
See description

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

[Libreoffice-bugs] [Bug 153568] User interface groupedBar partially destroyed after minimize

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153568

V Stuart Foote  changed:

   What|Removed |Added

 CC||vsfo...@libreoffice.org

--- Comment #3 from V Stuart Foote  ---
immediate disappearance as in bug 153078, STR here of "minimize LO for a longer
time, do something else (or hibernate windows)..." is a little different. But
suspect it is the same issue as bug 153078

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

[Libreoffice-bugs] [Bug 153569] New: Unable to report bugs using redmine

2023-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153569

Bug ID: 153569
   Summary: Unable to report bugs using redmine
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: buggymc...@bobmail.info
CC: olivier.hal...@libreoffice.org

I have a website bug I want to report. I've created a redmine account and
logged in but it still says "sign in / register" in the top left. If I click
"sign in" again, it just reloads the page, so I guess part of it thinks I'm
logged in.
Happens in both Firefox and a Chrome varient.


(Yes, I'm aware that this bug should be reported to redmine, It should be
self-evident why it's reported here instead.)

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

  1   2   >