[Libreoffice-commits] core.git: Branch 'distro/vector/vector-7.0' - sw/qa sw/source

2022-12-13 Thread Miklos Vajna (via logerrit)
 sw/qa/uibase/uno/uno.cxx |   43 +++
 sw/source/uibase/uno/unotxvw.cxx |5 
 2 files changed, 48 insertions(+)

New commits:
commit bee4c51ff8bd3b86ce16440153b88b316ce482fd
Author: Miklos Vajna 
AuthorDate: Tue Dec 13 12:31:11 2022 +0100
Commit: Miklos Vajna 
CommitDate: Wed Dec 14 08:51:52 2022 +0100

sw, createTextRangeByPixelPosition(): fix crash with at-page anchored images

When createTextRangeByPixelPosition() was called with a position that is
inside an at-page anchored image, we crashed.

The problem is that in general we can't create an XTextRange for a
graphic node. We already tried to return the anchor position for graphic
nodes since 2302ebefb2e25878e8fe1e64d208f265f87d5b9b (sw,
createTextRangeByPixelPosition(): fix crash when the position is an
image, 2022-11-22), but that fixed the problem only in case
GetContentAnchor() gave us a doc model position.

Fix the problem by returning an empty reference in the "graphic node but
no content anchor" case, that is still better for at-page and at-frame
anchored images than a crash.

A follow-up change could be to add a new API that has a more generic
return type (similar to how getSelection() returns `any`) and then
return the image itself, not its anchor in the image case. That approach
would work for at-page and at-frame anchored images as well.

(cherry picked from commit 41071f58415927b257eab66b2674d521607bdee5)

Conflicts:
sw/qa/uibase/uno/uno.cxx

Change-Id: If850ec945c24052568230a83da2ae2aa004b4265

diff --git a/sw/qa/uibase/uno/uno.cxx b/sw/qa/uibase/uno/uno.cxx
index 8085798d8f4d..540917c1744a 100644
--- a/sw/qa/uibase/uno/uno.cxx
+++ b/sw/qa/uibase/uno/uno.cxx
@@ -95,6 +95,49 @@ CPPUNIT_TEST_FIXTURE(SwUibaseUnoTest, 
testCreateTextRangeByPixelPositionGraphic)
 CPPUNIT_ASSERT_EQUAL(aAnchorPos, *aPaM.GetPoint());
 }
 
+CPPUNIT_TEST_FIXTURE(SwUibaseUnoTest, 
testCreateTextRangeByPixelPositionAtPageGraphic)
+{
+// Given a document with an at-page anchored image:
+mxComponent = loadFromDesktop("private:factory/swriter", 
"com.sun.star.text.TextDocument");
+uno::Reference xFactory(mxComponent, 
uno::UNO_QUERY);
+uno::Reference xTextGraphic(
+xFactory->createInstance("com.sun.star.text.TextGraphicObject"), 
uno::UNO_QUERY);
+xTextGraphic->setPropertyValue("AnchorType", 
uno::Any(text::TextContentAnchorType_AT_PAGE));
+xTextGraphic->setPropertyValue("AnchorPageNo", 
uno::Any(static_cast(1)));
+xTextGraphic->setPropertyValue("Width", 
uno::Any(static_cast(1)));
+xTextGraphic->setPropertyValue("Height", 
uno::Any(static_cast(1)));
+uno::Reference xTextDocument(mxComponent, 
uno::UNO_QUERY);
+uno::Reference xBodyText = xTextDocument->getText();
+uno::Reference xCursor(xBodyText->createTextCursor());
+uno::Reference xTextContent(xTextGraphic, 
uno::UNO_QUERY);
+xBodyText->insertTextContent(xCursor, xTextContent, false);
+SwXTextDocument* pTextDoc = 
dynamic_cast(mxComponent.get());
+SwDoc* pDoc = pTextDoc->GetDocShell()->GetDoc();
+SwDocShell* pDocShell = pDoc->GetDocShell();
+SwWrtShell* pWrtShell = pDocShell->GetWrtShell();
+SwRootFrame* pLayout = pWrtShell->GetLayout();
+SwFrame* pPage = pLayout->GetLower();
+SwSortedObjs& rDrawObjs = *pPage->GetDrawObjs();
+SwAnchoredObject* pAnchored = rDrawObjs[0];
+Point aLogic = pAnchored->GetObjRect().Center();
+SwView* pView = pDocShell->GetView();
+SwEditWin& rEditWin = pView->GetEditWin();
+Point aPixel = rEditWin.LogicToPixel(aLogic);
+
+// When asking for the doc model pos of the image's anchor by pixel 
position:
+uno::Reference xModel(mxComponent, uno::UNO_QUERY);
+uno::Reference xControllers = 
xModel->getControllers();
+uno::Reference 
xController(xControllers->nextElement(),
+ 
uno::UNO_QUERY);
+awt::Point aPoint(aPixel.getX(), aPixel.getY());
+// Without the accompanying fix in place, this test would have crashed.
+uno::Reference xTextRange
+= xController->createTextRangeByPixelPosition(aPoint);
+
+// Then make sure that the result is empty, since the image is at-page 
anchored:
+CPPUNIT_ASSERT(!xTextRange.is());
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/uibase/uno/unotxvw.cxx b/sw/source/uibase/uno/unotxvw.cxx
index 821ec11fe934..b4086cdef474 100644
--- a/sw/source/uibase/uno/unotxvw.cxx
+++ b/sw/source/uibase/uno/unotxvw.cxx
@@ -543,6 +543,11 @@ SwXTextView::createTextRangeByPixelPosition(const 
awt::Point& rPixelPosition)
 {
 aPosition = *pAnchor;
 }
+else
+{
+// Page-anchored graphics have no anchor.
+return {};
+}
 }
 

[Libreoffice-bugs] [Bug 145996] Collate Rows and Columns.

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145996

--- Comment #10 from karos.os...@outlook.es ---
Ok.

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

[Libreoffice-bugs] [Bug 62063] FORMATTING: Font textbox ignores keyboard layout change to RTL language

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62063

Hossein  changed:

   What|Removed |Added

   Priority|medium  |high
 Whiteboard|BSA |

--- Comment #30 from Hossein  ---
OK, let me explain what I think!

It is correct that the text language can be inferred from the keyboard layout.
Then, LibreOffice should use this data, and also the information inside the
font to set the font settings correctly.

It is true that user expects to see the correct font used for the RTL/CTL
language, but what I am arguing is that even without any changes in UI, this
bug can be, and should be fixed.

To do a comparison (and as an example behavior), please do the exact same set
of actions inside MS Word. Open it, then set an Arabic font, type something in
Arabic, and see that the text gets the correct fonts. If you look into the
character properties, you will see that the font is set for RTL/CTL, and not
Western language text. This is the behavior that I would expect in LibreOffice.
The data is enough to make this happen, and a developer should be able to fix
this problem even without any UI change.

Thus, this bug report is completely valid. It is also important, as it confuses
the users why their font settings are not applied. I am raising the priority
now.

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

[Libreoffice-bugs] [Bug 152497] the automatic save option of writer does not work

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152497

Dieter  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||dgp-m...@gmx.de

--- Comment #3 from Dieter  ---
(In reply to Buovjaga from comment #2)
> If the autorecovery was active in Tools - Options - Load/Save - General and
> it was run, this is not a duplicate of bug 152463

ksso, could you please check?
=> NEEDINFO

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

[Libreoffice-bugs] [Bug 62063] FORMATTING: Font textbox ignores keyboard layout change to RTL language

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62063

--- Comment #29 from Eyal Rozenberg  ---
(In reply to Heiko Tietze from comment #28)
> (In reply to Eyal Rozenberg from comment #27)
> > So, bottom line - this bug should...
> 
> Fine for me if bugs get solved. Not UX business though ;-).

Well, it is a UI/UX bug... but let's not split hairs.

So, just to clarify - we're in agreement that the behavior should be rectified
as requested by OP? And that the font family combo-box should track the
keyboard layout? And that the priority here should be raised due to the
(relatively) high visibility of this issue (i.e. you see it merely by creating
a new document and switching keyboard layout)?

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

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

2022-12-13 Thread Miklos Vajna (via logerrit)
 sw/qa/uibase/uno/uno.cxx |   42 +++
 sw/source/uibase/uno/unotxvw.cxx |5 
 2 files changed, 47 insertions(+)

New commits:
commit 5102157de7d4747304ca6024b44a25fa914049e0
Author: Miklos Vajna 
AuthorDate: Tue Dec 13 12:31:11 2022 +0100
Commit: Miklos Vajna 
CommitDate: Wed Dec 14 07:15:41 2022 +

sw, createTextRangeByPixelPosition(): fix crash with at-page anchored images

When createTextRangeByPixelPosition() was called with a position that is
inside an at-page anchored image, we crashed.

The problem is that in general we can't create an XTextRange for a
graphic node. We already tried to return the anchor position for graphic
nodes since 2302ebefb2e25878e8fe1e64d208f265f87d5b9b (sw,
createTextRangeByPixelPosition(): fix crash when the position is an
image, 2022-11-22), but that fixed the problem only in case
GetContentAnchor() gave us a doc model position.

Fix the problem by returning an empty reference in the "graphic node but
no content anchor" case, that is still better for at-page and at-frame
anchored images than a crash.

A follow-up change could be to add a new API that has a more generic
return type (similar to how getSelection() returns `any`) and then
return the image itself, not its anchor in the image case. That approach
would work for at-page and at-frame anchored images as well.

Change-Id: If850ec945c24052568230a83da2ae2aa004b4265
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144043
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins
(cherry picked from commit 41071f58415927b257eab66b2674d521607bdee5)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144071

diff --git a/sw/qa/uibase/uno/uno.cxx b/sw/qa/uibase/uno/uno.cxx
index e0806672e6af..45fc50999e65 100644
--- a/sw/qa/uibase/uno/uno.cxx
+++ b/sw/qa/uibase/uno/uno.cxx
@@ -158,6 +158,48 @@ CPPUNIT_TEST_FIXTURE(SwUibaseUnoTest, 
testCreateTextRangeByPixelPositionGraphic)
 CPPUNIT_ASSERT_EQUAL(aAnchorPos, *aPaM.GetPoint());
 }
 
+CPPUNIT_TEST_FIXTURE(SwUibaseUnoTest, 
testCreateTextRangeByPixelPositionAtPageGraphic)
+{
+// Given a document with an at-page anchored image:
+createSwDoc();
+uno::Reference xFactory(mxComponent, 
uno::UNO_QUERY);
+uno::Reference xTextGraphic(
+xFactory->createInstance("com.sun.star.text.TextGraphicObject"), 
uno::UNO_QUERY);
+xTextGraphic->setPropertyValue("AnchorType", 
uno::Any(text::TextContentAnchorType_AT_PAGE));
+xTextGraphic->setPropertyValue("AnchorPageNo", 
uno::Any(static_cast(1)));
+xTextGraphic->setPropertyValue("Width", 
uno::Any(static_cast(1)));
+xTextGraphic->setPropertyValue("Height", 
uno::Any(static_cast(1)));
+uno::Reference xTextDocument(mxComponent, 
uno::UNO_QUERY);
+uno::Reference xBodyText = xTextDocument->getText();
+uno::Reference xCursor(xBodyText->createTextCursor());
+uno::Reference xTextContent(xTextGraphic, 
uno::UNO_QUERY);
+xBodyText->insertTextContent(xCursor, xTextContent, false);
+SwDoc* pDoc = getSwDoc();
+SwDocShell* pDocShell = pDoc->GetDocShell();
+SwWrtShell* pWrtShell = pDocShell->GetWrtShell();
+SwRootFrame* pLayout = pWrtShell->GetLayout();
+SwFrame* pPage = pLayout->GetLower();
+SwSortedObjs& rDrawObjs = *pPage->GetDrawObjs();
+SwAnchoredObject* pAnchored = rDrawObjs[0];
+Point aLogic = pAnchored->GetObjRect().Center();
+SwView* pView = pDocShell->GetView();
+SwEditWin& rEditWin = pView->GetEditWin();
+Point aPixel = rEditWin.LogicToPixel(aLogic);
+
+// When asking for the doc model pos of the image's anchor by pixel 
position:
+uno::Reference xModel(mxComponent, uno::UNO_QUERY);
+uno::Reference xControllers = 
xModel->getControllers();
+uno::Reference 
xController(xControllers->nextElement(),
+ 
uno::UNO_QUERY);
+awt::Point aPoint(aPixel.getX(), aPixel.getY());
+// Without the accompanying fix in place, this test would have crashed.
+uno::Reference xTextRange
+= xController->createTextRangeByPixelPosition(aPoint);
+
+// Then make sure that the result is empty, since the image is at-page 
anchored:
+CPPUNIT_ASSERT(!xTextRange.is());
+}
+
 CPPUNIT_TEST_FIXTURE(SwUibaseUnoTest, testGetTextFormFields)
 {
 // Given a document with 3 fieldmarks: 2 zotero items and a zotero
diff --git a/sw/source/uibase/uno/unotxvw.cxx b/sw/source/uibase/uno/unotxvw.cxx
index 416defb125ef..16804f83f753 100644
--- a/sw/source/uibase/uno/unotxvw.cxx
+++ b/sw/source/uibase/uno/unotxvw.cxx
@@ -550,6 +550,11 @@ SwXTextView::createTextRangeByPixelPosition(const 
awt::Point& rPixelPosition)
 {
 aPosition = *pAnchor;
 }
+else
+{
+// Page-anchored graphics have no anchor.
+return {};
+}
 

[Libreoffice-bugs] [Bug 151548] No access to FormField controls in StarBASIC/VBA

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151548

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

https://git.libreoffice.org/core/commit/908d058c67c4efb3dc142ea8d6ad59badf01c9c6

tdf#151548 sw content controls: preserve tabIndex

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: offapi/com oox/source schema/libreoffice sw/inc sw/qa sw/source writerfilter/qa writerfilter/source xmloff/qa xmloff/source

2022-12-13 Thread Justin Luth (via logerrit)
 offapi/com/sun/star/text/ContentControl.idl  |6 ++
 oox/source/token/tokens.txt  |1 
 schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng  |5 +
 sw/inc/formatcontentcontrol.hxx  |7 ++
 sw/inc/unoprnms.hxx  |1 
 sw/qa/core/unocore/unocore.cxx   |2 
 sw/qa/extras/ooxmlexport/ooxmlexport17.cxx   |2 
 sw/source/core/txtnode/attrcontentcontrol.cxx|2 
 sw/source/core/unocore/unocontentcontrol.cxx |   29 
++
 sw/source/core/unocore/unomap1.cxx   |1 
 sw/source/filter/ww8/docxattributeoutput.cxx |   16 +
 sw/source/filter/ww8/docxattributeoutput.hxx |2 
 writerfilter/qa/cppunittests/dmapper/SdtHelper.cxx   |4 +
 writerfilter/qa/cppunittests/dmapper/data/sdt-run-rich-text.docx |binary
 writerfilter/source/dmapper/DomainMapper.cxx |   15 +
 writerfilter/source/dmapper/DomainMapper_Impl.cxx|5 +
 writerfilter/source/dmapper/SdtHelper.cxx|5 +
 writerfilter/source/dmapper/SdtHelper.hxx|6 ++
 writerfilter/source/ooxml/model.xml  |4 +
 xmloff/qa/unit/data/content-control-alias.fodt   |2 
 xmloff/qa/unit/text.cxx  |5 +
 xmloff/source/text/txtparae.cxx  |8 ++
 xmloff/source/text/xmlcontentcontrolcontext.cxx  |   14 
 xmloff/source/text/xmlcontentcontrolcontext.hxx  |1 
 24 files changed, 142 insertions(+), 1 deletion(-)

New commits:
commit 908d058c67c4efb3dc142ea8d6ad59badf01c9c6
Author: Justin Luth 
AuthorDate: Fri Dec 2 10:48:46 2022 -0500
Commit: Miklos Vajna 
CommitDate: Wed Dec 14 07:14:59 2022 +

tdf#151548 sw content controls: preserve tabIndex

This has to be vital to keyboard navigation.
Certainly it is good to have it imported
before we start to consider tab-movements
for form controls.

All tabIndex 1's are processed (in placement order)
and then the 2's etc. 0's are to be done last.

XML_TAB_INDEX already existed in include/xmloff/xmltoken.hxx
and "tab-index" already exists in xmloff/source/token/tokens.txt

make CppunitTest_writerfilter_dmapper CPPUNIT_TEST_NAME=testSdtRunRichText
make CppunitTest_sw_ooxmlexport17 
CPPUNIT_TEST_NAME=testDateContentControlExport
make CppunitTest_sw_core_unocore CPPUNIT_TEST_NAME=testContentControlDate
make CppunitTest_xmloff_text CPPUNIT_TEST_NAME=testAliasContentControlExport
make CppunitTest_xmloff_text CPPUNIT_TEST_NAME=testAliasContentControlImport

No existing unit test found containing blockSDT with tabIndex.

Change-Id: I8a958844e6192b079a2b22a62dedfd8739021f4a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143603
Tested-by: Jenkins
Reviewed-by: Justin Luth 
Reviewed-by: Miklos Vajna 

diff --git a/offapi/com/sun/star/text/ContentControl.idl 
b/offapi/com/sun/star/text/ContentControl.idl
index 59894741de2b..ce741d9b2926 100644
--- a/offapi/com/sun/star/text/ContentControl.idl
+++ b/offapi/com/sun/star/text/ContentControl.idl
@@ -128,6 +128,12 @@ service ContentControl
 */
 [optional, property] long Id;
 
+/** Describes the order in which keyboard navigation moves between controls
+
+@since LibreOffice 7.6
+*/
+[optional, property] unsigned long TabIndex;
+
 /** Describes whether the control itself and/or its data can be modified 
or deleted by the user.
 
 @since LibreOffice 7.6
diff --git a/oox/source/token/tokens.txt b/oox/source/token/tokens.txt
index 8ed5687983b6..b66321243320 100644
--- a/oox/source/token/tokens.txt
+++ b/oox/source/token/tokens.txt
@@ -5123,6 +5123,7 @@ tOff
 tR
 tab
 tabColor
+tabIndex
 tabLst
 tabRatio
 tabSelected
diff --git a/schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng 
b/schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng
index 613ded76689c..ea1083bb1fbc 100644
--- a/schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng
+++ b/schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng
@@ -3008,6 +3008,11 @@ 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.
   
 
   
+  
+
+  
+
+  
   
 
   
diff --git a/sw/inc/formatcontentcontrol.hxx b/sw/inc/formatcontentcontrol.hxx
index e561fa6e23fb..77e6addbca09 100644
--- a/sw/inc/formatcontentcontrol.hxx
+++ b/sw/inc/formatcontentcontrol.hxx
@@ -179,6 +179,9 @@ class SW_DLLPUBLIC SwContentControl : public 
sw::BroadcastingModify
 /// The id: just remembered.
 sal_Int32 

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

2022-12-13 Thread Justin Luth (via logerrit)
 sw/inc/formatcontentcontrol.hxx |4 ++
 sw/inc/textcontentcontrol.hxx   |2 +
 sw/source/core/txtnode/attrcontentcontrol.cxx   |   33 
 sw/source/ui/vba/vbacontentcontrollistentry.cxx |   16 +--
 4 files changed, 46 insertions(+), 9 deletions(-)

New commits:
commit 87c71858bb82f406fe89cdc56c171668c23bd673
Author: Justin Luth 
AuthorDate: Mon Nov 28 14:16:57 2022 -0500
Commit: Miklos Vajna 
CommitDate: Wed Dec 14 07:08:15 2022 +

tdf#151548 ContentControls: improve GetSelectedListItem

Before there was only an option to get the temporarily
selected list item that had not yet been committed to text.

Add a function that checks whether there is a valid
selected item, regardless of whether it has been
written out or not.

Change-Id: I1199bdccd2e665089750eefa5c3a445d56935556
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143420
Tested-by: Jenkins
Reviewed-by: Justin Luth 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144012
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Miklos Vajna 

diff --git a/sw/inc/formatcontentcontrol.hxx b/sw/inc/formatcontentcontrol.hxx
index a782112fb917..b8b2db8882a9 100644
--- a/sw/inc/formatcontentcontrol.hxx
+++ b/sw/inc/formatcontentcontrol.hxx
@@ -308,6 +308,10 @@ public:
 
 std::optional GetSelectedListItem() const { return 
m_oSelectedListItem; }
 
+/// Get a copy of selected list item's index,
+/// potentially even if the selection is already written out to text (i.e. 
validated).
+std::optional GetSelectedListItem(bool bCheckDocModel) const;
+
 void SetSelectedDate(std::optional oSelectedDate) { 
m_oSelectedDate = oSelectedDate; }
 
 std::optional GetSelectedDate() const { return m_oSelectedDate; }
diff --git a/sw/inc/textcontentcontrol.hxx b/sw/inc/textcontentcontrol.hxx
index 8c8a3b3ee044..a9bc4e4a1054 100644
--- a/sw/inc/textcontentcontrol.hxx
+++ b/sw/inc/textcontentcontrol.hxx
@@ -42,6 +42,8 @@ public:
 void ChgTextNode(SwTextNode* pNode);
 
 SwTextNode* GetTextNode() const;
+/// Get the current (potentially invalid) string from the doc
+OUString ToString() const;
 void Invalidate();
 
 void dumpAsXml(xmlTextWriterPtr pWriter) const override;
diff --git a/sw/source/core/txtnode/attrcontentcontrol.cxx 
b/sw/source/core/txtnode/attrcontentcontrol.cxx
index 8963d256939c..b1d781f48d48 100644
--- a/sw/source/core/txtnode/attrcontentcontrol.cxx
+++ b/sw/source/core/txtnode/attrcontentcontrol.cxx
@@ -226,6 +226,25 @@ void SwContentControl::SwClientNotify(const SwModify&, 
const SfxHint& rHint)
 }
 }
 
+std::optional SwContentControl::GetSelectedListItem(bool 
bCheckDocModel) const
+{
+if (!bCheckDocModel || m_oSelectedListItem)
+return m_oSelectedListItem;
+
+const size_t nLen = GetListItems().size();
+if (GetShowingPlaceHolder() || !nLen || !GetTextAttr())
+return std::nullopt;
+
+const OUString& rText = GetTextAttr()->ToString();
+for (size_t i = 0; i < nLen; ++i)
+{
+if (GetTextAttr()[i].ToString() == rText)
+return i;
+}
+assert(!GetDropDown() && "DropDowns must always have an associated list 
item");
+return std::nullopt;
+}
+
 bool SwContentControl::AddListItem(size_t nZIndex, const OUString& 
rDisplayText,
const OUString& rValue)
 {
@@ -656,6 +675,20 @@ SwTextNode* SwTextContentControl::GetTextNode() const
 return rFormatContentControl.GetTextNode();
 }
 
+OUString SwTextContentControl::ToString() const
+{
+if (!GetTextNode())
+return OUString();
+
+// Don't select the text attribute itself at the start.
+sal_Int32 nStart = GetStart() + 1;
+// Don't select the CH_TXTATR_BREAKWORD itself at the end.
+sal_Int32 nEnd = *End() - 1;
+
+SwPaM aPaM(*GetTextNode(), nStart, *GetTextNode(), nEnd);
+return aPaM.GetText();
+}
+
 void SwTextContentControl::Invalidate()
 {
 SwDocShell* pDocShell = GetTextNode() ? 
GetTextNode()->GetDoc().GetDocShell() : nullptr;
diff --git a/sw/source/ui/vba/vbacontentcontrollistentry.cxx 
b/sw/source/ui/vba/vbacontentcontrollistentry.cxx
index 61d2a1faf6a8..80603df21309 100644
--- a/sw/source/ui/vba/vbacontentcontrollistentry.cxx
+++ b/sw/source/ui/vba/vbacontentcontrollistentry.cxx
@@ -63,19 +63,17 @@ void SwVbaContentControlListEntry::setText(const OUString& 
rSet)
 return;
 }
 
-bool bNeedsInvalidation = false;
-if (!pCC->GetShowingPlaceHolder())
-{
-// TODO: implement bCheckDocModel
-std::optional 
oSel(pCC->GetSelectedListItem(/*bCheckDocModel=true*/));
-bNeedsInvalidation = oSel && *oSel == m_nZIndex;
-}
+const std::optional 
oSel(pCC->GetSelectedListItem(/*bCheckDocModel=*/true));
+const bool bNeedsInvalidation = pCC->GetDropDown() && oSel && *oSel == 
m_nZIndex;
 
 vListItems[m_nZIndex].m_aDisplayText = rSet;
 

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

2022-12-13 Thread Miklos Vajna (via logerrit)
 sw/qa/core/layout/layout.cxx |8 ++--
 1 file changed, 2 insertions(+), 6 deletions(-)

New commits:
commit e15658a7576c8160c9f1b861201e206f9cf34df9
Author: Miklos Vajna 
AuthorDate: Tue Dec 13 20:15:19 2022 +0100
Commit: Miklos Vajna 
CommitDate: Wed Dec 14 07:08:28 2022 +

CppunitTest_sw_core_layout: clean up testFollowTextFlowWrapInBackground

Use SwFEShell::Insert() to insert a graphic instead of duplicating it.

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

diff --git a/sw/qa/core/layout/layout.cxx b/sw/qa/core/layout/layout.cxx
index 7a0f69bab815..5454f4c21a16 100644
--- a/sw/qa/core/layout/layout.cxx
+++ b/sw/qa/core/layout/layout.cxx
@@ -862,9 +862,7 @@ CPPUNIT_TEST_FIXTURE(SwCoreLayoutTest, 
testFollowTextFlowWrapInBackground)
 SwInsertTableOptions aTableOptions(SwInsertTableFlags::DefaultBorder, 0);
 pWrtShell->InsertTable(aTableOptions, 1, 1);
 pWrtShell->MoveTable(GotoPrevTable, fnTableStart);
-IDocumentContentOperations& rIDCO = pDoc->getIDocumentContentOperations();
 SfxItemSet aFrameSet(pDoc->GetAttrPool(), svl::Items);
-SfxItemSet aGrfSet(pDoc->GetAttrPool(), svl::Items);
 SwFormatAnchor aAnchor(RndStdIds::FLY_AT_CHAR);
 aFrameSet.Put(aAnchor);
 SwFormatSurround aSurround(text::WrapTextMode_THROUGH);
@@ -874,11 +872,9 @@ CPPUNIT_TEST_FIXTURE(SwCoreLayoutTest, 
testFollowTextFlowWrapInBackground)
 SwFormatFollowTextFlow aFlow(true);
 aFrameSet.Put(aFlow);
 Graphic aGrf;
-rIDCO.InsertGraphic(*pWrtShell->GetCursor(), OUString(), OUString(), 
, ,
-, nullptr);
 
-// When laying out that document:
-calcLayout();
+// When inserting that image:
+pWrtShell->SwFEShell::Insert(OUString(), OUString(), , );
 
 // Then make sure that the cell height grows to have space for the 
graphic, given that
 // background=true is not specified.


[Libreoffice-commits] core.git: sw/CppunitTest_sw_globalfilter.mk

2022-12-13 Thread Stephan Bergmann (via logerrit)
 sw/CppunitTest_sw_globalfilter.mk |4 
 1 file changed, 4 insertions(+)

New commits:
commit 71085deec7a24ed6650a1e6a07dcbb822ab4334d
Author: Stephan Bergmann 
AuthorDate: Tue Dec 13 20:43:10 2022 +0100
Commit: Stephan Bergmann 
CommitDate: Wed Dec 14 07:06:26 2022 +

CppunitTest_sw_globalfilter also needs the ASan hack

...from e854abe076155fc085b56549ced50b3ee9a095d2 "Avoid external processes
picking up instdir/program/libnspr4.so" now, presumably since
31084ebb59093be7dfe5ab53a20fdb3bcfde34b6 "tdf#143311
offapi,oox,writerfilter,xmloff,sw: decorative flag on flys"

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

diff --git a/sw/CppunitTest_sw_globalfilter.mk 
b/sw/CppunitTest_sw_globalfilter.mk
index 410da401b2c5..e6d136efbe3a 100644
--- a/sw/CppunitTest_sw_globalfilter.mk
+++ b/sw/CppunitTest_sw_globalfilter.mk
@@ -63,4 +63,8 @@ $(eval $(call 
gb_CppunitTest_use_custom_headers,sw_globalfilter,\
 
 $(eval $(call gb_CppunitTest_use_configuration,sw_globalfilter))
 
+$(eval $(call gb_CppunitTest_add_arguments,sw_globalfilter, \
+
-env:arg-env=$(gb_Helper_LIBRARY_PATH_VAR)"{$(gb_Helper_LIBRARY_PATH_VAR)+=$(gb_Helper_LIBRARY_PATH_VAR)}"
 \
+))
+
 # vim: set noet sw=4 ts=4:


[Libreoffice-bugs] [Bug 62063] FORMATTING: Font textbox ignores keyboard layout change to RTL language

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62063

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsUXEval |
 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org

--- Comment #28 from Heiko Tietze  ---
(In reply to Eyal Rozenberg from comment #27)
> So, bottom line - this bug should...

Fine for me if bugs get solved. Not UX business though ;-).

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

[Libreoffice-bugs] [Bug 152497] the automatic save option of writer does not work

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152497

Buovjaga  changed:

   What|Removed |Added

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

--- Comment #2 from Buovjaga  ---
If the autorecovery was active in Tools - Options - Load/Save - General and it
was run, this is not a duplicate of bug 152463

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

[Libreoffice-ux-advise] [Bug 62063] FORMATTING: Font textbox ignores keyboard layout change to RTL language

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62063

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsUXEval |
 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org

--- Comment #28 from Heiko Tietze  ---
(In reply to Eyal Rozenberg from comment #27)
> So, bottom line - this bug should...

Fine for me if bugs get solved. Not UX business though ;-).

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 145996] Collate Rows and Columns.

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145996

Heiko Tietze  changed:

   What|Removed |Added

 Status|REOPENED|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #9 from Heiko Tietze  ---
Whether continuous or not the request is to add multiple rows/columns at once
as filed with bug 141315. Having topics collapsed makes a lot more sense than
every single aspect in one ticket because a) it attracts more attention and b)
would be solved at once or c) considered when working on the other aspect. Up
to QA top decide.

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

Ling Yang license statement

2022-12-13 Thread Gnay Gnil
All of my past & future contributions to LibreOffice may be licensed under
the MPLv2/LGPLv3+ dual license.


[Libreoffice-bugs] [Bug 152447] Small capitals format gives tiny numbers

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152447

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Resolution|FIXED   |WORKSFORME

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

[Libreoffice-bugs] [Bug 152454] Dark Mode on Windows 11 shows tabs as button with a full white border around the element

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152454

Heiko Tietze  changed:

   What|Removed |Added

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

--- Comment #16 from Heiko Tietze  ---
Great work, Caolan. Resolve it fixed now?

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

[Libreoffice-bugs] [Bug 152456] When deleting a character style that is in use to give user option to decide which style to apply to instances that use it

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152456

Dieter  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from Dieter  ---
(In reply to Mike Kaganski from comment #1)
> Instead, tdf#78582 should be implemented. That is much more functional, and
Rferraro, would this solve you're problem? 
=> NEEDINFO

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

[Libreoffice-bugs] [Bug 152452] Libreoffice crash (macOS)

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152452

--- Comment #9 from Mike Little  ---
(In reply to Mike Little from comment #8)
> (In reply to kli.sarah from comment #5)
> > I open a file - Menu/Open or I clic on the file to open it.
> > The file open and in a few second it's closing without doing anything...
> > Or it stop and run and run and run. And I need to bypass to leave
> > It's the same with an .doc files, a .docx, a .odt, a .ods, a pttx, ...
> > I don't have any screen shot, it's crashing too fast...
> 
> Hello, would you be able to use Quicktime to capture a video of your desktop
> and the events here is how you can do it...
> 
> https://support.apple.com/en-au/HT208721
> 
> If you can upload it as an attachment, then upload it; or create a document
> and explain the steps and capture screen shots of the key events from your
> video file, and upload as an attachment this document...

And further information on how to record your screen in Quicktime on the Mac...

https://support.apple.com/en-au/guide/quicktime-player/qtp97b08e666/mac

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

[Libreoffice-bugs] [Bug 152452] Libreoffice crash (macOS)

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152452

--- Comment #8 from Mike Little  ---
(In reply to kli.sarah from comment #5)
> I open a file - Menu/Open or I clic on the file to open it.
> The file open and in a few second it's closing without doing anything...
> Or it stop and run and run and run. And I need to bypass to leave
> It's the same with an .doc files, a .docx, a .odt, a .ods, a pttx, ...
> I don't have any screen shot, it's crashing too fast...

Hello, would you be able to use Quicktime to capture a video of your desktop
and the events here is how you can do it...

https://support.apple.com/en-au/HT208721

If you can upload it as an attachment, then upload it; or create a document and
explain the steps and capture screen shots of the key events from your video
file, and upload as an attachment this document...

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

[Libreoffice-bugs] [Bug 145843] Incidental Crash on macOS with skia raster (STR comment 8)

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145843

--- Comment #31 from Telesto  ---
Created attachment 184138
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184138=edit
Debug patch

attachment 181096 is based on output of debug code, attached. Output at that
point in time (7 februari 2022)

> debug:12486:654528: XXX:0x63e8e700
> 841x570*2R::1682x1140::2::289x143@(550,427) 1100,854,578,286::6728::6 2::6
> 2
>
> 2022-02-07 17:21:50.812613+0100 soffice[12486:654528]
> [org.libreoffice.script] copy_read_only: vm_copy failed: status 1.

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

[Libreoffice-bugs] [Bug 145843] Incidental Crash on macOS with skia raster (STR comment 8)

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145843

--- Comment #30 from Telesto  ---
(In reply to Patrick Luby from comment #29)
> I was able to reproduce this bug with Skia/Raster. Unfortunately I was only
> able to reproduce one time. That was on my macOS Intel running macOS
> Monterey 12.6.2.
> 
> I am testing by running a local build (checked out from master earlier
> today) in lldb. Does anyone have any other steps that they use to trigger
> this crash?

Whole problem, I can create the issue with a few steps.. somehow, but not
everybody else does. 

Comment 8 works pretty reliable for me

Alternative
1. Open Impress from Start Center
2. Double click BeeHive template
3. LibreOffice -> About Window -> Press Copy About
4. Close the dialog
5. Enter Click to add title
6. CMD+V
7. LibreOffice -> About Window -> Press Copy about -> Might crash here
8. Close the dialog
9. Go to slide 2
10. CMD+V
11. LibreOffice -> About Window -> Press Copy about -> Crash

Alternative -> even less predictable
1. Open Writer from Start Center
2. LibreOffice -> Preferences -> View
3. Uncheck Use Skia for all rendering
4. Hoover over the Apply/ OK buttons.. Press Apply button. Close the restart
button. Press Cancel in the Preference dialog 

It appears Window related, the dialogs appear like tip of the day/ template
manager/ about window/ preference the often it happens.

But will there some kind of timing element.. 

Sidenote: the patch attachment 181096 authored by Luboš Luňák - received by
email - solves the issue. However a different patch got pushed at comment 24
for unknown reasons

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

[Libreoffice-commits] help.git: Branch 'libreoffice-7-5' - source/media

2022-12-13 Thread Adolfo Jayme Barrientos (via logerrit)
 source/media/navigation/libo-base.svg |4 +++-
 source/media/navigation/libo-basic.svg|3 ++-
 source/media/navigation/libo-calc.svg |4 +++-
 source/media/navigation/libo-chart.svg|4 +++-
 source/media/navigation/libo-draw.svg |4 +++-
 source/media/navigation/libo-impress.svg  |4 +++-
 source/media/navigation/libo-math.svg |4 +++-
 source/media/navigation/libo-symbol-black.svg |4 +++-
 source/media/navigation/libo-writer.svg   |4 +++-
 9 files changed, 26 insertions(+), 9 deletions(-)

New commits:
commit 9694f217b0e62ff60a3a248987084dcfc8160764
Author: Adolfo Jayme Barrientos 
AuthorDate: Tue Dec 13 21:36:01 2022 -0600
Commit: Adolfo Jayme Barrientos 
CommitDate: Wed Dec 14 04:18:18 2022 +

tdf#132398 Update icons for Online help navigation

Change-Id: Id6c5bb5d486cd045238205318a6f99339716c117
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/144138
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 
(cherry picked from commit e3b1cce7dde7e964c7670dd24a167e750654685a)
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/144116

diff --git a/source/media/navigation/libo-base.svg 
b/source/media/navigation/libo-base.svg
index 1a35912cd2..8b235f9fc3 100644
--- a/source/media/navigation/libo-base.svg
+++ b/source/media/navigation/libo-base.svg
@@ -1 +1,3 @@
-http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink; width="207.999" 
height="256"><
 stop offset="1" stop-color="#333"/>
\ No newline at end of file
+
+
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
diff --git a/source/media/navigation/libo-basic.svg 
b/source/media/navigation/libo-basic.svg
index d47c9681d9..e24ac6a947 100644
--- a/source/media/navigation/libo-basic.svg
+++ b/source/media/navigation/libo-basic.svg
@@ -1 +1,2 @@
-http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink; width="208" 
height="256">
\ No newline at end of file
+
+http://www.w3.org/2000/svg;>
 
diff --git a/source/media/navigation/libo-calc.svg 
b/source/media/navigation/libo-calc.svg
index d7f82f649e..6163d664a0 100644
--- a/source/media/navigation/libo-calc.svg
+++ b/source/media/navigation/libo-calc.svg
@@ -1 +1,3 @@
-http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink; width="207.999" 
height="256">
 stop-color="#B3B3B3"/>stop-color="#E6E6E6"/>offset="0" stop-color="gray"/>stop-color="#4D4D4D"/>offset="0" stop-color="gray"/>stop-color="#4D4D4D"/>offset="0" stop-color="#B3B3B3"/>stop-color="#E6E6E6"/>offset="0" stop-color="#B3B3B3"/>stop-color="#E6E6E6"/>offset="0" stop-color="#B3B3B3"/>stop-color="#E6E6E6"/>offset="0" stop-color="#B3B3B3"/>stop-color="#E6E6E6"/>offset="0" stop-color="#FFF" stop-opacity=".588"/>stop-color="#FFF" stop-opacity=".863"/>
 
\ No newline at end of file
+
+
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
diff --git a/source/media/navigation/libo-chart.svg 
b/source/media/navigation/libo-chart.svg
index 7263bc4217..a1d6c43de9 100644
--- a/source/media/navigation/libo-chart.svg
+++ b/source/media/navigation/libo-chart.svg
@@ -1 +1,3 @@

... etc. - the rest is truncated


[Libreoffice-commits] core.git: Branch 'libreoffice-7-5' - helpcontent2

2022-12-13 Thread Adolfo Jayme Barrientos (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2473aeed1570078c59d3e817fb69726273ff9bdf
Author: Adolfo Jayme Barrientos 
AuthorDate: Tue Dec 13 22:18:19 2022 -0600
Commit: Gerrit Code Review 
CommitDate: Wed Dec 14 04:18:19 2022 +

Update git submodules

* Update helpcontent2 from branch 'libreoffice-7-5'
  to 9694f217b0e62ff60a3a248987084dcfc8160764
  - tdf#132398 Update icons for Online help navigation

Change-Id: Id6c5bb5d486cd045238205318a6f99339716c117
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/144138
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 
(cherry picked from commit e3b1cce7dde7e964c7670dd24a167e750654685a)
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/144116

diff --git a/helpcontent2 b/helpcontent2
index 33a564ebb0b0..9694f217b0e6 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 33a564ebb0b0f71d32672e9f70d4e414a9339bb6
+Subproject commit 9694f217b0e62ff60a3a248987084dcfc8160764


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

2022-12-13 Thread Adolfo Jayme Barrientos (via logerrit)
 source/media/navigation/libo-base.svg |4 +++-
 source/media/navigation/libo-basic.svg|3 ++-
 source/media/navigation/libo-calc.svg |4 +++-
 source/media/navigation/libo-chart.svg|4 +++-
 source/media/navigation/libo-draw.svg |4 +++-
 source/media/navigation/libo-impress.svg  |4 +++-
 source/media/navigation/libo-math.svg |4 +++-
 source/media/navigation/libo-symbol-black.svg |4 +++-
 source/media/navigation/libo-writer.svg   |4 +++-
 9 files changed, 26 insertions(+), 9 deletions(-)

New commits:
commit e3b1cce7dde7e964c7670dd24a167e750654685a
Author: Adolfo Jayme Barrientos 
AuthorDate: Tue Dec 13 21:36:01 2022 -0600
Commit: Adolfo Jayme Barrientos 
CommitDate: Wed Dec 14 04:17:21 2022 +

tdf#132398 Update icons for Online help navigation

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

diff --git a/source/media/navigation/libo-base.svg 
b/source/media/navigation/libo-base.svg
index 1a35912cd2..8b235f9fc3 100644
--- a/source/media/navigation/libo-base.svg
+++ b/source/media/navigation/libo-base.svg
@@ -1 +1,3 @@
-http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink; width="207.999" 
height="256"><
 stop offset="1" stop-color="#333"/>
\ No newline at end of file
+
+
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
diff --git a/source/media/navigation/libo-basic.svg 
b/source/media/navigation/libo-basic.svg
index d47c9681d9..e24ac6a947 100644
--- a/source/media/navigation/libo-basic.svg
+++ b/source/media/navigation/libo-basic.svg
@@ -1 +1,2 @@
-http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink; width="208" 
height="256">
\ No newline at end of file
+
+http://www.w3.org/2000/svg;>
 
diff --git a/source/media/navigation/libo-calc.svg 
b/source/media/navigation/libo-calc.svg
index d7f82f649e..6163d664a0 100644
--- a/source/media/navigation/libo-calc.svg
+++ b/source/media/navigation/libo-calc.svg
@@ -1 +1,3 @@
-http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink; width="207.999" 
height="256">
 stop-color="#B3B3B3"/>stop-color="#E6E6E6"/>offset="0" stop-color="gray"/>stop-color="#4D4D4D"/>offset="0" stop-color="gray"/>stop-color="#4D4D4D"/>offset="0" stop-color="#B3B3B3"/>stop-color="#E6E6E6"/>offset="0" stop-color="#B3B3B3"/>stop-color="#E6E6E6"/>offset="0" stop-color="#B3B3B3"/>stop-color="#E6E6E6"/>offset="0" stop-color="#B3B3B3"/>stop-color="#E6E6E6"/>offset="0" stop-color="#FFF" stop-opacity=".588"/>stop-color="#FFF" stop-opacity=".863"/>
 
\ No newline at end of file
+
+
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
diff --git a/source/media/navigation/libo-chart.svg 
b/source/media/navigation/libo-chart.svg
index 7263bc4217..a1d6c43de9 100644
--- a/source/media/navigation/libo-chart.svg
+++ b/source/media/navigation/libo-chart.svg
@@ -1 +1,3 @@

... etc. - the rest is truncated


[Libreoffice-commits] core.git: helpcontent2

2022-12-13 Thread Adolfo Jayme Barrientos (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5816474c37293cc791fdb9cb042d11be7d809d0b
Author: Adolfo Jayme Barrientos 
AuthorDate: Tue Dec 13 22:17:22 2022 -0600
Commit: Gerrit Code Review 
CommitDate: Wed Dec 14 04:17:22 2022 +

Update git submodules

* Update helpcontent2 from branch 'master'
  to e3b1cce7dde7e964c7670dd24a167e750654685a
  - tdf#132398 Update icons for Online help navigation

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

diff --git a/helpcontent2 b/helpcontent2
index cd924ae6a0bd..e3b1cce7dde7 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit cd924ae6a0bd8fbaad2ee4bcac7d4ccd7c689a59
+Subproject commit e3b1cce7dde7e964c7670dd24a167e750654685a


[Libreoffice-bugs] [Bug 144038] LO BASE numeric properties converted to locale format inside macro

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144038

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 152296] Add Content Controls submenu to help page(s)

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152296

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 152220] Previously displayed Preference tab is shown in background (in macos dark mode)

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152220

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 147076] AutoFilter does not show special characters

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147076

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 147076] AutoFilter does not show special characters

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147076

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

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

[Libreoffice-bugs] [Bug 150915] [META] Windows Dark Mode bugs and enhancements

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150915
Bug 150915 depends on bug 140046, which changed state.

Bug 140046 Summary: Charts & Graphs in LibreOffice Calc display as only black 
featureless rectangles when Windows uses a "dark mode" color scheme
https://bugs.documentfoundation.org/show_bug.cgi?id=140046

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 148874] Text in table moving vertically when clicking inside a table

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148874

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 103184] [META] UI theming bugs and enhancements

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103184
Bug 103184 depends on bug 140046, which changed state.

Bug 140046 Summary: Charts & Graphs in LibreOffice Calc display as only black 
featureless rectangles when Windows uses a "dark mode" color scheme
https://bugs.documentfoundation.org/show_bug.cgi?id=140046

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 140046] Charts & Graphs in LibreOffice Calc display as only black featureless rectangles when Windows uses a "dark mode" color scheme

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140046

--- Comment #3 from QA Administrators  ---
Dear RT,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 149419] Footnote numbers aren't reset between letters in mail merge

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149419

--- Comment #2 from QA Administrators  ---
Dear c+lobug,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 99802] Template manager: unable to use templates saved under subfolders

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99802

--- Comment #6 from QA Administrators  ---
Dear Marina Latini (SUSE),

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 84949] Placing mouse Cursor over Left tab, Center tab, Right tab, Decimal tab icon doesn't show a tooltip

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84949

--- Comment #7 from QA Administrators  ---
Dear Ashok kumar,

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 140046] Charts & Graphs in LibreOffice Calc display as only black featureless rectangles when Windows uses a "dark mode" color scheme

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140046

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 109341] PathSettings do not provide correct Path

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109341

--- Comment #7 from QA Administrators  ---
Dear Thomas Krumbein,

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 138414] In Draw, number of decimal points in dimension lines is not applied

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138414

--- Comment #5 from QA Administrators  ---
Dear Petr Tichý,

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 114867] UI: Transparency can be set in the sidebar with a slider for Area and Shadow, but not for Line

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114867

--- Comment #3 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 101596] While resizing window, Search Bar may disappear or Search Field may become as unusable button

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101596

--- Comment #7 from QA Administrators  ---
Dear opensuse.lietuviu.kalba,

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 147076] AutoFilter does not show special characters

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147076

--- Comment #12 from Ian Eales  ---
Created attachment 184137
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184137=edit
image of filter

auto filter blank from smiley symbol font characters

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

[Libreoffice-bugs] [Bug 148270] FILEOPEN DOCX: TOC is not correctly interpreted

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148270

--- Comment #7 from Max Lay  ---
I can confirm I can also reproduce this bug on 7.37 and 7.43. Interestingly, we
are also using a document produced with the same JS library used by Thomas.

Thomas, were you able to find a workaround?

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

[Libreoffice-bugs] [Bug 148601] error en la interfaz desde la 7.0

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148601

Michael FA  changed:

   What|Removed |Added

  Component|LibreOffice |UI
 Status|NEW |UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 152502] Mejoras para la interfaz de LibreOffice

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152502

Michael FA  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEW |UNCONFIRMED

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

[Libreoffice-bugs] [Bug 152502] Mejoras para la interfaz de LibreOffice

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152502

Michael FA  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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

[Libreoffice-bugs] [Bug 152502] Mejoras para la interfaz de LibreOffice

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152502

--- Comment #4 from Michael FA  ---
Created attachment 184136
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184136=edit
LibreOffice - conceptos explicados

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

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

2022-12-13 Thread Eike Rathke (via logerrit)
 svl/source/numbers/zforlist.cxx |   11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

New commits:
commit 0517ef1669dba0e055b8ef3cf09a4b40378e476f
Author: Eike Rathke 
AuthorDate: Wed Dec 14 01:08:25 2022 +0100
Commit: Eike Rathke 
CommitDate: Wed Dec 14 01:09:43 2022 +

It's unnecessary to obtain what's not being used

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

diff --git a/svl/source/numbers/zforlist.cxx b/svl/source/numbers/zforlist.cxx
index eb360c5b0ad6..c43e124bbadd 100644
--- a/svl/source/numbers/zforlist.cxx
+++ b/svl/source/numbers/zforlist.cxx
@@ -1718,12 +1718,15 @@ void SvNumberFormatter::GetInputLineString(const 
double& fOutNumber,
 bPrecChanged = true;
 }
 
-sal_uInt32 nKey = GetEditFormat( fOutNumber, nRealKey, eType, pFormat,
- bForceSystemLocale ? LANGUAGE_SYSTEM : 
LANGUAGE_DONTKNOW);
 // if bFiltering true keep the nRealKey format
-if ( nKey != nRealKey && !bFiltering )
+if (!bFiltering)
 {
-pFormat = GetFormatEntry( nKey );
+sal_uInt32 nKey = GetEditFormat( fOutNumber, nRealKey, eType, pFormat,
+ bForceSystemLocale ? LANGUAGE_SYSTEM 
: LANGUAGE_DONTKNOW);
+if (nKey != nRealKey)
+{
+pFormat = GetFormatEntry( nKey );
+}
 }
 assert(pFormat);
 if (pFormat)


[Libreoffice-bugs] [Bug 152502] Mejoras para la interfaz de LibreOffice

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152502

--- Comment #3 from Michael FA  ---
Created attachment 184135
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184135=edit
LibreOffice Predeterminado 7.4

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

[Libreoffice-bugs] [Bug 152502] Mejoras para la interfaz de LibreOffice

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152502

--- Comment #2 from Michael FA  ---
Created attachment 184134
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184134=edit
LibreOffice - concepto unico

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

[Libreoffice-bugs] [Bug 152502] Mejoras para la interfaz de LibreOffice

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152502

--- Comment #1 from Michael FA  ---
Created attachment 184133
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184133=edit
LibreOffice - concepto con pestañas

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

[Libreoffice-bugs] [Bug 152502] New: Mejoras para la interfaz de LibreOffice

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152502

Bug ID: 152502
   Summary: Mejoras para la interfaz de LibreOffice
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: maicoleduardofigue...@gmail.com

Description:
adjunto unos conceptos de interfaz mejorados para que los agregen a las nuevas
verciones de LibreOffice, una imagen con mejor distribucion en la interfaz y la
otra con un concepto de pestañas para LO

Actual Results:
faltan mejoras en la interfaz

Expected Results:
mejoras en la interfaz


Reproducible: Always


User Profile Reset: No

Additional Info:
.

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

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

2022-12-13 Thread Eike Rathke (via logerrit)
 svl/source/numbers/zforlist.cxx |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 7f5215e1514bcca114aaf0a2acfcc85dc676b67b
Author: Eike Rathke 
AuthorDate: Tue Dec 13 21:46:23 2022 +0100
Commit: Eike Rathke 
CommitDate: Wed Dec 14 00:05:36 2022 +

crashtesting: (assert) fix treatment of "#FMT" input line value

For "#FMT" test the original format type for not being NUMBER, the current
format type may be different from finding an edit format.

This constellation did not matter until

commit 4fd1333ba4bb4f2311e9098291154772bd310429
CommitDate: Thu Mar 25 15:00:31 2021 +0100

tdf#140968 tdf#140978 XLSX import: fix lost rounded filters

introduced the bFiltering parameter in which case the edit format is not
used (and bFiltering is also set when collecting the filter entries for
.xls export). In fact the logic should be changed such that obtaining
the edit format isn't even executed in that case. For now just fix the
"#FMT" case to be backported.

Also, the bool return of
SvNumberformat::GetOutputString(double,OUString&,Color**) does not indicate
success or failure, but whether the "star" asterisk spreading was inserted 
or
not. Contrary to 
SvNumberformat::GetOutputString(double,sal_uInt16,OUString&)
... cough.

Change-Id: Ic8cbbd283a80c654a9ff22ea36897c9b72b8837d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144110
Reviewed-by: Eike Rathke 
Tested-by: Jenkins
(cherry picked from commit d5986b163276008d2a15a10f7de529d924b60d2f)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144073

diff --git a/svl/source/numbers/zforlist.cxx b/svl/source/numbers/zforlist.cxx
index cfbce503941a..eb360c5b0ad6 100644
--- a/svl/source/numbers/zforlist.cxx
+++ b/svl/source/numbers/zforlist.cxx
@@ -1700,6 +1700,7 @@ void SvNumberFormatter::GetInputLineString(const double& 
fOutNumber,
  * numbers so wouldn't be a safe bet. */
 eType = pFormat->GetNumForInfoScannedType(0);
 }
+const SvNumFormatType eTypeOrig = eType;
 
 sal_uInt16 nOldPrec = pFormatScanner->GetStandardPrec();
 bool bPrecChanged = false;
@@ -1732,13 +1733,13 @@ void SvNumberFormatter::GetInputLineString(const 
double& fOutNumber,
 ChangeStandardPrec(INPUTSTRING_PRECISION);
 bPrecChanged = true;
 }
-const bool bOk = pFormat->GetOutputString(fOutNumber, sOutString, 
);
+pFormat->GetOutputString(fOutNumber, sOutString, );
 
 // The #FMT error string must not be used for input as it would lead to
 // data loss. This can happen for at least date(+time). Fall back to a
 // last resort of plain number in the locale the formatter was
 // constructed with.
-if (!bOk && eType != SvNumFormatType::NUMBER && sOutString == 
ImpSvNumberformatScan::sErrStr)
+if (eTypeOrig != SvNumFormatType::NUMBER && sOutString == 
ImpSvNumberformatScan::sErrStr)
 {
 pFormat = GetFormatEntry(ZF_STANDARD);
 assert(pFormat);


[Libreoffice-bugs] [Bug 150557] FILEOPEN PPTX: table shadows missing cell colors (or rather colors are extremely faint)

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150557

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||4091
 CC||vmik...@collabora.com

--- Comment #4 from Stéphane Guillou (stragu) 
 ---
This most likely has to do with the work Miklos did on table shadows for LO
7.3: https://vmiklos.hu/blog/sd-table-transparent-shadow.html

I can do a proper bibisect when I get some time.

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

[Libreoffice-bugs] [Bug 152498] Provide a way to extend icon themes

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152498

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
No need to say sorry! Thanks for closing! :)

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

[Libreoffice-bugs] [Bug 107899] [META] PPTX paragraph-related issues

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107899

Aron Budea  changed:

   What|Removed |Added

 Depends on||152500


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152500
[Bug 152500] Undo moves cursor from the beginning to the end of a list item
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152500] Undo moves cursor from the beginning to the end of a list item

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152500

Aron Budea  changed:

   What|Removed |Added

 CC||aron.bu...@gmail.com
Version|7.6.0.0 alpha0+ Master  |7.5.0.0 alpha1+
 Blocks||107899
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from Aron Budea  ---
Confirmed using LO 7.5.0.0.alpha1+ (705b2924a14841883b4a8cac549f7af326d7a185) /
Ubuntu.


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 145843] Incidental Crash on macOS with skia raster (STR comment 8)

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145843

--- Comment #29 from Patrick Luby  ---
(In reply to Telesto from comment #28)
> @Patrick Luby
> Thanks for all the patches in the macOS area. I'm bit opportunistic here..
> this bug is still bothering me. LibreOffice crashes regularly with Skia
> Raster enabled (no issue with Vulkan)
> 
> Version: 7.5.0.0.alpha1+ (X86_64) / LibreOffice Community
> Build ID: da3dd48eaf9086f8ab28d6a6655f9a638e51433a
> CPU threads: 8; OS: Mac OS X 12.3.1; UI render: Skia/Raster; VCL: osx
> Locale: nl-NL (nl_NL.UTF-8); UI: en-US
> Calc: threaded

I was able to reproduce this bug with Skia/Raster. Unfortunately I was only
able to reproduce one time. That was on my macOS Intel running macOS Monterey
12.6.2.

I am testing by running a local build (checked out from master earlier today)
in lldb. Does anyone have any other steps that they use to trigger this crash?

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

[Libreoffice-bugs] [Bug 150973] Use only SVG for the toolbar icons

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150973

V Stuart Foote  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 122245] [META] Icon theme issues that need coding

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122245

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||148764


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=148764
[Bug 148764] Icon themes need to include metadata and different variants in one
package
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148764] Icon themes need to include metadata and different variants in one package

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148764

V Stuart Foote  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||0973
 CC||vsfo...@libreoffice.org
 Blocks||122245

--- Comment #7 from V Stuart Foote  ---
Also need some thought on how we would define and bundle combined SVG and PNG
original icon artwork, at multiple resolutions. As for bug 150973


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122245
[Bug 122245] [META] Icon theme issues that need coding
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 66463] FILEOPEN DOC: Incorrect formula

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66463

Rajasekaran Karunanithi  changed:

   What|Removed |Added

 CC||rajasekara...@gmail.com

--- Comment #14 from Rajasekaran Karunanithi  ---
Still exists in LO 7.5 Dev alpha under Windows 10(x64).

Version: 7.5.0.0.alpha1 (X86_64) / LibreOffice Community
Build ID: 2b4d136b65bc79a1248876160e85fab79d52d5d6
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: en-IN (en_IN); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 152501] Erroneous extended tips on dialog dropdowns: uses the tab's or dialog's instead

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152501

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||caol...@redhat.com
 Blocks||103182
Summary|Erroneous extended tip on   |Erroneous extended tips on
   |Function Wizard's   |dialog dropdowns: uses the
   |categories  |tab's or dialog's instead

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
The accessible description is correct in the UI file:
https://opengrok.libreoffice.org/xref/core/formula/uiconfig/ui/functionpage.ui?r=f89b94c2#80

Turns out this is an issue with many (all?) dropdowns in dialogs.
For example: Format > Cells... > Numbers > hover over the Language dropdown.
Also in other components, e.g.: Writer > Format > Character... > Hyperlink.

They show the accessible description of the whole dialog, or of the active tab.

It is GTK-specific as I can't reproduce with the KF5 VCL:

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

Caolán, you might be interested.


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 103182] [META] GTK3-specific bugs

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103182

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||152501


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152501
[Bug 152501] Erroneous extended tips on dialog dropdowns: uses the tab's or
dialog's instead
-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2022-12-13 Thread Eike Rathke (via logerrit)
 svl/source/numbers/zforlist.cxx |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit d5986b163276008d2a15a10f7de529d924b60d2f
Author: Eike Rathke 
AuthorDate: Tue Dec 13 21:46:23 2022 +0100
Commit: Eike Rathke 
CommitDate: Tue Dec 13 22:14:20 2022 +

crashtesting: (assert) fix treatment of "#FMT" input line value

For "#FMT" test the original format type for not being NUMBER, the current
format type may be different from finding an edit format.

This constellation did not matter until

commit 4fd1333ba4bb4f2311e9098291154772bd310429
CommitDate: Thu Mar 25 15:00:31 2021 +0100

tdf#140968 tdf#140978 XLSX import: fix lost rounded filters

introduced the bFiltering parameter in which case the edit format is not
used (and bFiltering is also set when collecting the filter entries for
.xls export). In fact the logic should be changed such that obtaining
the edit format isn't even executed in that case. For now just fix the
"#FMT" case to be backported.

Also, the bool return of
SvNumberformat::GetOutputString(double,OUString&,Color**) does not indicate
success or failure, but whether the "star" asterisk spreading was inserted 
or
not. Contrary to 
SvNumberformat::GetOutputString(double,sal_uInt16,OUString&)
... cough.

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

diff --git a/svl/source/numbers/zforlist.cxx b/svl/source/numbers/zforlist.cxx
index cfbce503941a..eb360c5b0ad6 100644
--- a/svl/source/numbers/zforlist.cxx
+++ b/svl/source/numbers/zforlist.cxx
@@ -1700,6 +1700,7 @@ void SvNumberFormatter::GetInputLineString(const double& 
fOutNumber,
  * numbers so wouldn't be a safe bet. */
 eType = pFormat->GetNumForInfoScannedType(0);
 }
+const SvNumFormatType eTypeOrig = eType;
 
 sal_uInt16 nOldPrec = pFormatScanner->GetStandardPrec();
 bool bPrecChanged = false;
@@ -1732,13 +1733,13 @@ void SvNumberFormatter::GetInputLineString(const 
double& fOutNumber,
 ChangeStandardPrec(INPUTSTRING_PRECISION);
 bPrecChanged = true;
 }
-const bool bOk = pFormat->GetOutputString(fOutNumber, sOutString, 
);
+pFormat->GetOutputString(fOutNumber, sOutString, );
 
 // The #FMT error string must not be used for input as it would lead to
 // data loss. This can happen for at least date(+time). Fall back to a
 // last resort of plain number in the locale the formatter was
 // constructed with.
-if (!bOk && eType != SvNumFormatType::NUMBER && sOutString == 
ImpSvNumberformatScan::sErrStr)
+if (eTypeOrig != SvNumFormatType::NUMBER && sOutString == 
ImpSvNumberformatScan::sErrStr)
 {
 pFormat = GetFormatEntry(ZF_STANDARD);
 assert(pFormat);


[Libreoffice-bugs] [Bug 145988] macOS skia: colors not displayed correctly for all document previews e.g. start center or impress templates

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145988

--- Comment #50 from Patrick Luby  ---
(In reply to خالد حسني from comment #49)
> It makes no difference for me. Skia/Metal shows the bad colors, but
> Skia/Raster don’t.

Thank you for testing my patch.

Since the problem only occurs with Skia/Metal, I will walk through the macOS
Skia code and see if I can find anything different or unique in the Skia/Metal
code versus the Skia/Raster code.

I will post another patch if I find any possible fixes.

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

[Libreoffice-bugs] [Bug 114019] [META] Tooltip bugs and enhancements

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114019

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||152501


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152501
[Bug 152501] Erroneous extended tip on Function Wizard's categories
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152501] New: Erroneous extended tip on Function Wizard's categories

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152501

Bug ID: 152501
   Summary: Erroneous extended tip on Function Wizard's categories
   Product: LibreOffice
   Version: 7.1.8.1 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: low
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: stephane.guil...@libreoffice.org
Blocks: 114019

Steps:

1. Open Calc
2. Tools > Options > LibreOffice > General > turn Extended Tips on
3. Open the Function Wizard
4. Hover over the Category dropdown

Results: "Opens the function wizard, [...]"

Started in 7.1 (didn't seem to have an extended tip before)

Version: 7.1.8.1 / LibreOffice Community
Build ID: e1f30c802c3269a1d052614453f260e49458c82c
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

Still in recent master build:

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 144366] LO crashes when text in search field is entered in Tabbed and Tabbed Compact UI

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144366

--- Comment #6 from stefan_lange...@t-online.de  
---
After an other of "my" old bugs was fixed recently (Bug 105314) I have tested
again this bug (reported more than one year ago).

Result:
I have reproduced the crash described in the bug report with builds until
Version: 7.4.0.0.beta1 (x64) / LibreOffice Community
Build ID: cec1fe9b57a55c032f9f118c907f34e22a63d040
CPU threads: 4; OS: Windows 10.0 Build 22623; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: de-DE
Calc: threaded

but no longer with
Version: 7.4.0.0.beta1+ (x64) / LibreOffice Community
Build ID: 9c4cfb6a95e851f5651e024e798699d71e16d968
CPU threads: 4; OS: Windows 10.0 Build 22623; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: de-DE
Calc: threaded
(2022-07-01_09.35.43)
and 
Version: 7.4.0.3 (x64) / LibreOffice Community
Build ID: f85e47c08ddd19c015c0114a68350214f7066f5a
CPU threads: 4; OS: Windows 10.0 Build 22623; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: de-DE
Calc: threaded
and later versions (until 7.4.3, 7.5.0, 7.6.0).
This means for me the bug was fixed in LO 7.4.0 beta1 in June 2022, but I don't
know the solving patch or commit.

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

[Libreoffice-bugs] [Bug 148764] Icon themes need to include metadata and different variants in one package

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148764

--- Comment #6 from Paul Kepinski  ---
*** Bug 152498 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 152498] Provide a way to extend icon themes

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152498

Paul Kepinski  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|NEEDINFO|RESOLVED

--- Comment #2 from Paul Kepinski  ---
Hi Stéphane,

indeed, these bugs fit well to my question 
I am sorry, I have searched something similar in the bug tracker during a
while, but I didn't found them :)

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

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

[Libreoffice-bugs] [Bug 152498] Provide a way to extend icon themes

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152498

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1
 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Thanks Paul

I think your report might already be covered by bugs 148764 and 124966,
wouldn't you agree?

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

[Libreoffice-bugs] [Bug 152500] Undo moves cursor from the beginning to the end of a list item

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152500

Gerald Pfeifer  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 105582] [META] Function wizard dialog bugs and enhancements

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105582
Bug 105582 depends on bug 67473, which changed state.

Bug 67473 Summary: UI: wrong help text displayed in function wizard list
https://bugs.documentfoundation.org/show_bug.cgi?id=67473

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

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

[Libreoffice-bugs] [Bug 67473] UI: wrong help text displayed in function wizard list

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67473

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
Version|4.1.0.4 release |Inherited From OOo
 Resolution|--- |WORKSFORME

--- Comment #14 from Stéphane Guillou (stragu) 
 ---
I could reproduce in OOo 3.3:

OpenOffice.org 3.3.0
OOO330m20(Build:9567)

However, I can't reproduce this in recent versions: no extended tip on the list
of functions at all (versions 6.3 and 7.0), or a generic extended tip in later
version (7.3 and 7.6) that reads something like "Displays the functions
found..."

-> Works for me.

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

[Libreoffice-bugs] [Bug 152500] Undo moves cursor from the beginning to the end of a list item

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152500

Gerald Pfeifer  changed:

   What|Removed |Added

 Depends on|148810  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=148810
[Bug 148810] EDITING: Undo doesn't restore the bullet ( PPTX/PPT )
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152500] Undo moves cursor from the beginning to the end of a list item

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152500

--- Comment #1 from Gerald Pfeifer  ---
Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 01c9c971e43782800ebf63acc763a7e7fba096c1
CPU threads: 8; OS: Linux 6.0; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 152500] New: Undo moves cursor from the beginning to the end of a list item

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152500

Bug ID: 152500
   Summary: Undo moves cursor from the beginning to the end of a
list item
   Product: LibreOffice
   Version: 7.6.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ger...@pfeifer.com
Depends on: 148810

This is with attachment #179790 from bug #148810.

Steps to reproduce:
1. Open document
2. Put the cursor before 'Hello'
3. Delete the bullet
4. Undo

With bug #148810 resolved Undo now works, alas the text cursor moves
from the beginning of the item (before 'H') to the end of the item
(after 'o').


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=148810
[Bug 148810] EDITING: Undo doesn't restore the bullet ( PPTX/PPT )
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152359] FORMATING: program responds as if shortcuts were pressed twice

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152359

Flaviano Matos  changed:

   What|Removed |Added

Summary|FORMATING: program responds |FORMATING: program responds
   |as if shortcuts are pressed |as if shortcuts were
   |twice   |pressed twice

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

[Libreoffice-bugs] [Bug 119393] Draw - SVG Export of rotated textbox causes multiple lines of text to be displayed on top of each other.

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119393

--- Comment #16 from mmtsuchi  ---
Still present in LibreOffice Draw 7.3.7.2

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

[Libreoffice-bugs] [Bug 152447] Small capitals format gives tiny numbers

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152447

Penny  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED

--- Comment #11 from Penny  ---
(In reply to m.a.riosv from comment #10)
> https://www.libreoffice.org/download/download-libreoffice/

Thank you! I've managed to update my version.
I checked and the "features" button does include the "none" option for
fractions now.
So sorry to bother you with my incompetence.
Thank you for your help.
Best wishes
Penny

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

[Libreoffice-bugs] [Bug 145843] Incidental Crash on macOS with skia raster (STR comment 8)

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145843

Telesto  changed:

   What|Removed |Added

 CC||plub...@neooffice.org
Summary|Incidental Crash on macOS   |Incidental Crash on macOS
   |with skia raster|with skia raster (STR
   ||comment 8)

--- Comment #28 from Telesto  ---
@Patrick Luby
Thanks for all the patches in the macOS area. I'm bit opportunistic here.. this
bug is still bothering me. LibreOffice crashes regularly with Skia Raster
enabled (no issue with Vulkan)

Version: 7.5.0.0.alpha1+ (X86_64) / LibreOffice Community
Build ID: da3dd48eaf9086f8ab28d6a6655f9a638e51433a
CPU threads: 8; OS: Mac OS X 12.3.1; UI render: Skia/Raster; VCL: osx
Locale: nl-NL (nl_NL.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 152497] the automatic save option of writer does not work

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152497

BogdanB  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED
 CC||buzea.bog...@libreoffice.or
   ||g

--- Comment #1 from BogdanB  ---


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

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

[Libreoffice-bugs] [Bug 152447] Small capitals format gives tiny numbers

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152447

--- Comment #10 from m.a.riosv  ---
https://www.libreoffice.org/download/download-libreoffice/

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

[Libreoffice-bugs] [Bug 152499] New: UI Variants dialog should have a Help button and a corresponding Help page

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152499

Bug ID: 152499
   Summary: UI Variants dialog should have a Help button and a
corresponding Help page
   Product: LibreOffice
   Version: 7.2.6.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rafael.palma.l...@gmail.com
CC: olivier.hal...@libreoffice.org

In any LO application, go to View - User Interface. This will open a dialog
that allows users to change the UI variant.

Unlike most LO dialogs, this one does not have a Help button, nor does it have
a help page in the online help.

Since this is a frequently used dialog, I believe we should have a help page
for it.

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

[Libreoffice-bugs] [Bug 152470] UI: Menu item "Colour bar" and corresponding dialogue using not same term

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152470

Rafael Lima  changed:

   What|Removed |Added

   Assignee|rafael.palma.l...@gmail.com |libreoffice-b...@lists.free
   ||desktop.org

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

[Libreoffice-bugs] [Bug 148435] LibreOffice on macOS hangs on using window snapping / window manager (BetterTouchTool, Rectangle, Raycast, Amethyst, ...) or any other redraw, context switch, etc, from

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148435

--- Comment #78 from Alex Thurgood  ---
(In reply to Matten from comment #77)
> Hi,
> 
> I'm coming here since my original report
> (https://bugs.documentfoundation.org/show_bug.cgi?id=151730) has been closed
> as a duplicate of this bug. I'm not sure it really is, but here we are...
> 

@Matten : have you tried the 7.5 pre-release, and if so, is the problem still
reproducible with that version?

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

[Libreoffice-bugs] [Bug 152470] UI: Menu item "Colour bar" and corresponding dialogue using not same term

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152470

Rafael Lima  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||rafael.palma.l...@gmail.com
   Assignee|libreoffice-b...@lists.free |rafael.palma.l...@gmail.com
   |desktop.org |

--- Comment #1 from Rafael Lima  ---
Created attachment 184132
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184132=edit
Screenshot showing the Color Palette

I can confirm this. See attached image that confirms the behavior.

Indeed, it would be nice to have the same name in the window and in the menu.
This bug affects Impress as well.

Tested with:

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 01c9c971e43782800ebf63acc763a7e7fba096c1
CPU threads: 12; OS: Linux 5.19; UI render: default; VCL: kf5 (cairo+xcb)
Locale: pt-BR (pt_BR.UTF-8); UI: en-US
Calc: CL threaded

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

[Libreoffice-bugs] [Bug 152498] New: Provide a way to extend icon themes

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152498

Bug ID: 152498
   Summary: Provide a way to extend icon themes
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: paul.kepin...@orange.fr

Description:
Hi,
I saw that LO added support for dark theme icon packs (very very nice feature
btw).

I maintain the Yaru LO icons repository and I'd like to take this in account.
But I have 10 colour variants, which is already quite big, and add dark variant
for all of them mean have 20 variants.
But this is mainly mean that a lot of icon will be duplicated 20 times, and I
really don't want this.

Currently, all the Yaru variants ZIPs weigh about 60Mo, add dark variant would
increase this to 120Mo (I can't do this honestly ). With an extending system,
it could be really much less heavy than 60Mo.

Add this feature would require to create a kind of metadata file for each icon
pack.
LO currently use Colibre icons as fallback when an icon is missing. Have the
same behaviour, but configurable would be amazing!

Thanks in advance 

Actual Results:


Expected Results:



Reproducible: Didn't try


User Profile Reset: No

Additional Info:

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

[Libreoffice-bugs] [Bug 152464] Differency between two date (days) is not working

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152464

--- Comment #11 from LeroyG  ---
(In reply to joubert.attila from comment #6)
> Created attachment 184099 [details]
> Screenshot from valid type

See that the (text)dates, remain left aligned.

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

[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left and Complex Text Layout language issues (RTL/CTL)

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43808
Bug 43808 depends on bug 144911, which changed state.

Bug 144911 Summary: digits misplaced when entering l-t-r text (starting with a 
number) in a r-t-l paragraph
https://bugs.documentfoundation.org/show_bug.cgi?id=144911

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 144911] digits misplaced when entering l-t-r text (starting with a number) in a r-t-l paragraph

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144911

خالد حسني  changed:

   What|Removed |Added

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

--- Comment #3 from خالد حسني  ---
The digits have “weak” LTR direction property, so if the paragraph direction is
RTL they get a RTL word order if not preceded by LTR text, this is all
expected. 

It follows that if the paragraph direction is RTL then the digits belong to RTL
text and thus take so-called complex font.

If one want to override this, “Insert → Formatting Mark → Left-to-right mark”
before the digits should do the trick.

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

[Libreoffice-bugs] [Bug 152464] Differency between two date (days) is not working

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152464

LeroyG  changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 Status|NEEDINFO|RESOLVED

--- Comment #10 from LeroyG  ---
(In reply to joubert.attila from comment #9)
> I set the format manually by right-clicking on the cell,

After changing the format cell to Date, you must edit each cell for the change
to take on.
An easy way to do that is with the Text to Columns tool (menu Data).

In this cases, before reporting a bug, I suggest to search in the
ask.libreoffice.org site for help.

Changing status to Resolved - Not a bug.

Regards.

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

[Libreoffice-bugs] [Bug 145988] macOS skia: colors not displayed correctly for all document previews e.g. start center or impress templates

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145988

--- Comment #49 from خالد حسني  ---
(In reply to Patrick Luby from comment #48)
> (In reply to خالد حسني from comment #46)
> > I can reproduce this issue (it is actually been like this since I first
> > built on macOS a few months ago, to the point I assumed it is some debug
> > build thing).
> > 
> > There are lost of comments here, so I’m not sure what I can help with
> > debugging this.
> 
> @خالد حسني
> 
> I cannot reproduce this bug on either my Intel or Silicon machines but I
> have a theory: somewhere in the vcl code, Skia images are copied with the
> wrong colorspace. Can you try building LibreOffice with the following patch?:
> 
> https://gerrit.libreoffice.org/c/core/+/144052
> 
> Do you still see the color shifting after rebuilding with the above patch?

It makes no difference for me. Skia/Metal shows the bad colors, but Skia/Raster
don’t.

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

[Libreoffice-bugs] [Bug 152447] Small capitals format gives tiny numbers

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152447

--- Comment #9 from Penny  ---
(In reply to LeroyG from comment #8)
> Created attachment 184120 [details]
> Screenshot on Windows 10
> 
> On Windows 10.0.
> Font Properties for Arial font show more options than on Windows 6.3 (aka 7).
> Fraction style could be set to none.
> 
> It is possible that your file (or style) was created with a newer version of
> LibreOffice?
> 
> The LibreOffice 6.4 release End of Life was two years ago. Don't expect that
> anyone will fix it, if it was a 6.4 version issue. Maybe you must update to
> LibreOffice 7.3.7.
> 
> Oh! I forgot to thank you for sharing the sample file. It would have been
> impossible to test without it.
> 
> Version: 7.3.7.2 (x64) / LibreOffice Community
> Build ID: e114eadc50a9ff8d8c8a0567d6da8f454beeb84f
> CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
> Locale: es-MX (es_ES); UI: en-US
> Calc: CL

Dear Leroy,
Oh dear, I failed to realise that my version of LibreOffice was so old. I shall
update it immediately (when I find how to do it). I daresay that will iron out
the bug.
Thanks so much for your help
Penny

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

[Libreoffice-bugs] [Bug 152497] New: the automatic save option of writer does not work

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152497

Bug ID: 152497
   Summary: the automatic save option of writer does not work
   Product: LibreOffice
   Version: 7.0.4.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kep...@gmail.com

Description:
several times the automatic save option of writer runs but it never save the
files, if you do not save manually the document, it is lost... also the
restoring of documents does not recovers anything

Steps to Reproduce:
1.open any file
2.make any change
3.wait the automatic save function, even if it run, the new changes will not be
saved

Actual Results:
not automatic save functioning

Expected Results:
lost information if you do not save manually


Reproducible: Always


User Profile Reset: No

Additional Info:
[Information automatically included from LibreOffice]
Locale: es
Module: TextDocument
[Information guessed from browser]
OS: Linux (All)
OS is 64bit: yes

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

[Libreoffice-bugs] [Bug 152495] crash when closing ruby (phonetic guide) dialog with escape (gtk3)

2022-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152495

Caolán McNamara  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #4 from Caolán McNamara  ---
Doesn't crash for under x11 or wayland, and nothing seen when trying under
valgrind.

Can I get a backtrace from someone who can reproduce it?

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

  1   2   3   4   >