[Libreoffice-bugs] [Bug 139088] Google auth code not sent when trying to login to drive.

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139088

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

  Alias|c00lhawk607 |

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

[Libreoffice-bugs] [Bug 101630] Google Drive two-factor authentication (2FA) not working again

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101630

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org
 Status|ASSIGNED|NEW
   Assignee|cl...@documentfoundation.or |libreoffice-b...@lists.free
   |g   |desktop.org

--- Comment #98 from Stéphane Guillou (stragu) 
 ---
Cloph, you were assigned by Heiko since 2021. I've reset that to the default,
as prrvchr said they were interested in working on it in comment 95.

prrvchr, are you still interested in submitting patches? If so, please go ahead
and assign yourself.

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

[Libreoffice-bugs] [Bug 154768] Libreoffice impress does not show some mathematical symbols

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154768

--- Comment #2 from sani.usn...@onescreensolutions.com ---
Created attachment 186596
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186596=edit
How it should have shown

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

[Libreoffice-bugs] [Bug 154768] Libreoffice impress does not show some mathematical symbols

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154768

--- Comment #1 from sani.usn...@onescreensolutions.com ---
Created attachment 186595
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186595=edit
The said slide

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

[Libreoffice-bugs] [Bug 154768] New: Libreoffice impress does not show some mathematical symbols

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154768

Bug ID: 154768
   Summary: Libreoffice impress does not show some mathematical
symbols
   Product: LibreOffice
   Version: 7.5.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sani.usn...@onescreensolutions.com

Description:
I have some slides from one of my course, it has some symbols. when i open my
slides some of my slides are not properly shown

Steps to Reproduce:
1. open the slide in libreoffice impress

Actual Results:
Slide number 6 and onwards, text is removed

Expected Results:
showed all the text


Reproducible: Always


User Profile Reset: No

Additional Info:
nil

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

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

2023-04-11 Thread Szymon Kłos (via logerrit)
 sfx2/source/view/lokhelper.cxx |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit eb8e723225f3c63ff644ba840189874f295a1a62
Author: Szymon Kłos 
AuthorDate: Mon Feb 13 13:05:26 2023 +0100
Commit: Szymon Kłos 
CommitDate: Wed Apr 12 07:32:36 2023 +0200

lok: escape notifyWindow message

File properties dialog contains problematic characters.
In lok case and nl language it was constructing incorrect
message so boost JSON parser was throwing an exception
and dialog was not created correctly.

Change-Id: I7e81c9407fcbf57355c0890c9540ce1f828904e5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146900
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Henry Castro 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150042
Tested-by: Szymon Kłos 
Reviewed-by: Szymon Kłos 

diff --git a/sfx2/source/view/lokhelper.cxx b/sfx2/source/view/lokhelper.cxx
index bc33ad942382..b66ad6d05b83 100644
--- a/sfx2/source/view/lokhelper.cxx
+++ b/sfx2/source/view/lokhelper.cxx
@@ -587,8 +587,10 @@ void SfxLokHelper::notifyWindow(const SfxViewShell* 
pThisView,
 {
 if (!rItem.first.isEmpty() && !rItem.second.isEmpty())
 {
-aPayload.append(", \"" + rItem.first + "\": \"" +
-rItem.second).append('"');
+auto aFirst = rItem.first.replaceAll("\"", "\\\"");
+auto aSecond = rItem.second.replaceAll("\"", "\\\"");
+aPayload.append(", \"" + aFirst + "\": \"" +
+aSecond).append('"');
 }
 }
 aPayload.append('}');


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

2023-04-11 Thread Szymon Kłos (via logerrit)
 svx/source/svdraw/svdpntv.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4712901a3f0c1ba796a0f516c468650ef31a4f7b
Author: Szymon Kłos 
AuthorDate: Tue Feb 14 10:50:46 2023 +0100
Commit: Szymon Kłos 
CommitDate: Wed Apr 12 07:32:07 2023 +0200

lok: draw textboxes under edit

This fixes bug in impress:
- open in 2 views
- start editing textbox in 2. view on 2. slide
- start editing textbox in 1. view on 1. slide
Result: slide 2 textbox was dissapearing

We need to allow drawing textboxes edited by other views
so if we select non-editor for rendering we will see the
full content.

It was regression from
commit e496b55a592caf0ca07f5477285a72d50cee6501
lok: masterpage: don't render text edits from different mode

Change-Id: I7645496aec77d11d16621129dd6644d3b54a6010
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146999
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Henry Castro 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150096
Tested-by: Szymon Kłos 
Reviewed-by: Szymon Kłos 

diff --git a/svx/source/svdraw/svdpntv.cxx b/svx/source/svdraw/svdpntv.cxx
index c7e04008d6c3..580c6d484709 100644
--- a/svx/source/svdraw/svdpntv.cxx
+++ b/svx/source/svdraw/svdpntv.cxx
@@ -647,7 +647,7 @@ void SdrPaintView::EndCompleteRedraw(SdrPaintWindow& 
rPaintWindow, bool bPaintFo
 static_cast< SdrView* >(this)->TextEditDrawing(rPaintWindow);
 }
 
-if (comphelper::LibreOfficeKit::isActive() && mbPaintTextEdit && 
pPageView)
+if (comphelper::LibreOfficeKit::isActive() && pPageView)
 {
 // Look for active text edits in other views showing the same page,
 // and show them as well. Show only if Page/MasterPage mode is 
matching.


[Libreoffice-bugs] [Bug 147154] The Paste Special dialog is empty if the clipboard has PDF, which *can* be pasted (now) into Impress at least

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147154

--- Comment #3 from SaintOtis  ---
I have never heard of this product. it's really impressive and useful to me!
https://geometrydashscratch.io

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

[Libreoffice-bugs] [Bug 136524] [META] Performance/hang/lag/high CPU issues

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136524

BogdanB  changed:

   What|Removed |Added

 Depends on||113425


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113425
[Bug 113425] Export to PDF or Convert-to go into infinite loop if the image's
"wrap test" is "square" - Linux only
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103378] [META] PDF export bugs and enhancements

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103378

BogdanB  changed:

   What|Removed |Added

 Depends on||113425


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113425
[Bug 113425] Export to PDF or Convert-to go into infinite loop if the image's
"wrap test" is "square" - Linux only
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 113425] Export to PDF or Convert-to go into infinite loop if the image's "wrap test" is "square" - Linux only

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113425

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||103378, 136524


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103378
[Bug 103378] [META] PDF export bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=136524
[Bug 136524] [META] Performance/hang/lag/high CPU issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103378] [META] PDF export bugs and enhancements

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103378

BogdanB  changed:

   What|Removed |Added

 Depends on||141134


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=141134
[Bug 141134] The overline automatic color is exported to PDF differently than
in original document
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 141134] The overline automatic color is exported to PDF differently than in original document

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141134

BogdanB  changed:

   What|Removed |Added

 Blocks||103378
Summary|Overline in Writer exported |The overline automatic
   |to pdf not the same as font |color is exported to PDF
   |color   |differently than in
   ||original document
 CC||buzea.bog...@libreoffice.or
   ||g

--- Comment #6 from BogdanB  ---
Also in
Version: 7.5.0.1.0+ (X86_64) / LibreOffice Community
Build ID: f29b2b5b7a86fa813ec0410f2788cd9580c7e0b2
CPU threads: 4; OS: Linux 5.19; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 103378] [META] PDF export bugs and enhancements

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103378

BogdanB  changed:

   What|Removed |Added

 Depends on||148113


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=148113
[Bug 148113] FILESAVE: PDF: incorrect position of table after RT with
--convert-to pdf
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148113] FILESAVE: PDF: incorrect position of table after RT with --convert-to pdf

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148113

BogdanB  changed:

   What|Removed |Added

 Blocks||103378
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 103378] [META] PDF export bugs and enhancements

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103378

BogdanB  changed:

   What|Removed |Added

 Depends on||139279


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=139279
[Bug 139279] Writter does not properly export cropped picture to PDF on Windows
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: include/docmodel oox/inc oox/source sw/qa

2023-04-11 Thread Tomaž Vajngerl (via logerrit)
 include/docmodel/theme/FormatScheme.hxx|  128 ++-
 oox/inc/drawingml/linepropertiescontext.hxx|   10 -
 oox/source/drawingml/linepropertiescontext.cxx |  166 ++---
 oox/source/drawingml/themeelementscontext.cxx  |   23 ++-
 sw/qa/core/theme/ThemeTest.cxx |   58 
 5 files changed, 356 insertions(+), 29 deletions(-)

New commits:
commit f69614d8115e9d62752f1c59c0fdcd697a9ded2c
Author: Tomaž Vajngerl 
AuthorDate: Wed Mar 1 22:59:02 2023 +0900
Commit: Tomaž Vajngerl 
CommitDate: Wed Apr 12 06:55:41 2023 +0200

oox: add model::LineStyle and import line style elements of a theme

Also extend the SwCoreThemeTest with asserts for the LineStyles
for the example theme.

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

diff --git a/include/docmodel/theme/FormatScheme.hxx 
b/include/docmodel/theme/FormatScheme.hxx
index cd3c5491a62a..5d16b79b6231 100644
--- a/include/docmodel/theme/FormatScheme.hxx
+++ b/include/docmodel/theme/FormatScheme.hxx
@@ -344,19 +344,133 @@ public:
 }
 };
 
-// Format Scheme
-
 class DOCMODEL_DLLPUBLIC FillStyle
 {
 public:
 std::shared_ptr mpFill;
 };
 
+enum class CapType
+{
+Unset,
+Flat,
+Round,
+Square
+};
+
+enum class PenAlignmentType
+{
+Unset,
+Center,
+Inset
+};
+
+enum class CompoundLineType
+{
+Unset,
+Single,
+Double,
+ThickThin_Double,
+ThinThick_Double,
+Triple,
+};
+
+enum class PresetDashType
+{
+Unset,
+Dash,
+DashDot,
+Dot,
+LargeDash,
+LargeDashDot,
+LargeDashDotDot,
+Solid,
+SystemDash,
+SystemDashDot,
+SystemDashDotDot,
+SystemDot,
+};
+
+enum class LineJoinType
+{
+Unset,
+Round,
+Bevel,
+Miter,
+};
+
+struct DOCMODEL_DLLPUBLIC LineJoin
+{
+LineJoinType meType = LineJoinType::Unset;
+sal_Int32 mnMiterLimit = 0; // Percentage
+};
+
+enum class LineEndType
+{
+None,
+Triangle,
+Stealth,
+Diamond,
+Oval,
+Arrow
+};
+
+enum class LineEndWidth
+{
+Unset,
+Small,
+Medium,
+Large
+};
+
+enum class LineEndLength
+{
+Unset,
+Small,
+Medium,
+Large
+};
+
+struct DOCMODEL_DLLPUBLIC LineEnd
+{
+LineEndType meType;
+LineEndWidth meWidth;
+LineEndLength meLength;
+};
+
+struct DOCMODEL_DLLPUBLIC DashStop
+{
+sal_Int32 mnDashLength = 0;
+sal_Int32 mnStopLength = 0;
+};
+
+struct DOCMODEL_DLLPUBLIC LineDash
+{
+PresetDashType mePresetType = PresetDashType::Unset;
+std::vector maCustomList;
+};
+
+class DOCMODEL_DLLPUBLIC LineStyle
+{
+public:
+sal_Int32 mnWidth;
+CapType meCapType;
+PenAlignmentType mePenAlignment;
+CompoundLineType meCompoundLineType;
+LineDash maLineDash;
+LineJoin maLineJoin;
+LineEnd maHeadEnd;
+LineEnd maTailEnd;
+
+FillStyle maLineFillStyle;
+};
+
 class DOCMODEL_DLLPUBLIC FormatScheme
 {
 private:
 OUString maName;
 std::vector maFillStyleList;
+std::vector maLineStyleList;
 std::vector maBackgroundFillStyleList;
 
 public:
@@ -369,6 +483,16 @@ public:
 
 const OUString& getName() const { return maName; }
 
+std::vector const& getLineStyleList() const { return 
maLineStyleList; }
+
+LineStyle* addLineStyle()
+{
+if (maLineStyleList.size() > 3)
+return nullptr;
+auto& rLineStyle = maLineStyleList.emplace_back();
+return 
+}
+
 std::vector const& getFillStyleList() const { return 
maFillStyleList; }
 
 FillStyle* addFillStyle()
diff --git a/oox/inc/drawingml/linepropertiescontext.hxx 
b/oox/inc/drawingml/linepropertiescontext.hxx
index 470a38c68514..041f50bf0d73 100644
--- a/oox/inc/drawingml/linepropertiescontext.hxx
+++ b/oox/inc/drawingml/linepropertiescontext.hxx
@@ -22,23 +22,25 @@
 
 #include 
 
-namespace oox::drawingml {
+namespace model { class LineStyle; }
 
+namespace oox::drawingml
+{
 
 struct LineProperties;
 
 class LinePropertiesContext final : public ::oox::core::ContextHandler2
 {
 public:
-LinePropertiesContext( ::oox::core::ContextHandler2Helper const & rParent,
-const ::oox::AttributeList& rAttributes,
-LineProperties& rLineProperties ) noexcept;
+LinePropertiesContext(::oox::core::ContextHandler2Helper const & rParent, 
const ::oox::AttributeList& rAttributes,
+LineProperties& rLineProperties, model::LineStyle* pLineStyle = 
nullptr) noexcept;
 virtual ~LinePropertiesContext() override;
 
 virtual ::oox::core::ContextHandlerRef
 onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& 
rAttribs ) override;
 
 private:
+model::LineStyle* mpLineStyle;
 LineProperties& mrLineProperties;
 };
 
diff --git a/oox/source/drawingml/linepropertiescontext.cxx 
b/oox/source/drawingml/linepropertiescontext.cxx
index 

[Libreoffice-bugs] [Bug 139279] Writter does not properly export cropped picture to PDF on Windows

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139279

BogdanB  changed:

   What|Removed |Added

 Blocks||103378
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 108693] [META] PDF export file dialog bugs and enhancements

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108693

BogdanB  changed:

   What|Removed |Added

 Depends on||135162


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=135162
[Bug 135162] PDF Export - WRITER/CALC - Push Button - WEB link containing
German umlaut not working
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 135162] PDF Export - WRITER/CALC - Push Button - WEB link containing German umlaut not working

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135162

BogdanB  changed:

   What|Removed |Added

 Blocks||108693
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 103378] [META] PDF export bugs and enhancements

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103378

BogdanB  changed:

   What|Removed |Added

 Depends on||146768


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=146768
[Bug 146768] Hyperlinks (mailto / external URLs) fail in exported PDFs
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146768] Hyperlinks (mailto / external URLs) fail in exported PDFs

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146768

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||103378


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 108693] [META] PDF export file dialog bugs and enhancements

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108693

BogdanB  changed:

   What|Removed |Added

 Depends on||144102


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=144102
[Bug 144102] [Impress] PDF Export description "Selection  Exports the current
selection" unclear
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144102] [Impress] PDF Export description "Selection Exports the current selection" unclear

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144102

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||108693


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 153053] Hiding sections in mail merge with multiple fields depends on defining conditions for database fields

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153053

BogdanB  changed:

   What|Removed |Added

Summary|Hiding sections in mail |Hiding sections in mail
   |merge with mutiple fields   |merge with multiple fields
   |depends defining conditions |depends on defining
   |for database fileds.|conditions for database
   ||fields
 CC||buzea.bog...@libreoffice.or
   ||g

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

[Libreoffice-bugs] [Bug 143781] [META] Development- and code-related bug reports and tasks

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143781

BogdanB  changed:

   What|Removed |Added

 Depends on||153251


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=153251
[Bug 153251] remove s_nPixelTwips
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 153251] remove s_nPixelTwips

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153251

BogdanB  changed:

   What|Removed |Added

 Blocks||143781
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143781
[Bug 143781] [META] Development- and code-related bug reports and tasks
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 108382] [META] Borders bugs and enhancements

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108382

BogdanB  changed:

   What|Removed |Added

 Depends on||140810


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=140810
[Bug 140810] There is a gap in the border around the text range where the
object is located
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 140810] There is a gap in the border around the text range where the object is located

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140810

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
Summary|border around text range|There is a gap in the
   |has gap where object is |border around the text
   ||range where the object is
   ||located
 Blocks||108382


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 152261] Inserting a TOC in a document using UNO locks Writer

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152261

BogdanB  changed:

   What|Removed |Added

 Blocks||89606
Summary|Inserting a TOC in a|Inserting a TOC in a
   |document using UNO locks|document using UNO locks
   |writer  |Writer
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 89606] [META] Table of Contents and Indexes bugs and enhancements

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89606

BogdanB  changed:

   What|Removed |Added

 Depends on||152261


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152261
[Bug 152261] Inserting a TOC in a document using UNO locks Writer
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 108629] [META] Ruler bugs and enhancements

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108629

BogdanB  changed:

   What|Removed |Added

 Depends on||154035


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154035
[Bug 154035] It is not possible to set tabs in Writer by clicking on the top
ruler (GTK3?)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154035] It is not possible to set tabs in Writer by clicking on the top ruler (GTK3?)

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154035

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
Summary|setting tabs in writer not  |It is not possible to set
   |possible from clic on top   |tabs in Writer by clicking
   |ruler (GTK3?)   |on the top ruler (GTK3?)
 Blocks||108629


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 103470] [META] Paragraph content panel of the Properties deck/tab of the sidebar

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103470

BogdanB  changed:

   What|Removed |Added

 Depends on||136653


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=136653
[Bug 136653] Update styles & formatting sidebar when then focus enters the
document area
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 136653] Update styles & formatting sidebar when then focus enters the document area

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136653

BogdanB  changed:

   What|Removed |Added

 Blocks||103470
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103470
[Bug 103470] [META] Paragraph content panel of the Properties deck/tab of the
sidebar
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103369] [META] Bullet, numbered, and outline list bugs and enhancements

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103369

BogdanB  changed:

   What|Removed |Added

 Depends on||141539


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=141539
[Bug 141539] First Line Indent doesn't work for paragraphs within a list item
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 141539] First Line Indent doesn't work for paragraphs within a list item

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141539

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||103369
Summary|First Line Inden doesn't|First Line Indent doesn't
   |work for paragraphs within  |work for paragraphs within
   |a list item |a list item


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103369
[Bug 103369] [META] Bullet, numbered, and outline list bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154710] Error saving Calc

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154710

Petr Neudek  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 154710] Error saving Calc

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154710

--- Comment #5 from Petr Neudek  ---
Created attachment 186594
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186594=edit
error message image

Message translation : LibreOffice is not responding. Please wait while Windows
reports the problem to Microsoft...

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

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-22.05' - include/editeng include/svx svx/source

2023-04-11 Thread Sarper Akdemir (via logerrit)
 include/editeng/unoprnms.hxx|1 +
 include/svx/svddef.hxx  |3 ++-
 include/svx/unoshprp.hxx|1 +
 svx/source/svdraw/svdattr.cxx   |1 +
 svx/source/svdraw/svdotextdecomposition.cxx |   14 +-
 5 files changed, 14 insertions(+), 6 deletions(-)

New commits:
commit 7e72c0cf0ac69f8c76ccaf0806ef85a8c1532664
Author: Sarper Akdemir 
AuthorDate: Thu Apr 6 13:00:53 2023 +0300
Commit: Tomaž Vajngerl 
CommitDate: Wed Apr 12 06:06:43 2023 +0200

editeng, svx: introduce ability to clip vertical text overflow

Introduces editeng text property TextClipVerticalOverflow.

Which when set causes vertical text that is overflown out of a
frame/shape truncated. (Only when text isn't being edited)

This is implemented as two steps:
(if text overflows)
  1 - Vertical adjust is forced to top.
(Forcing vert adjust to top isn't the desired behavior normally,
but good enough for a first cut I'd say.)
   -> The desired behavior would be after the overflown text is
   truncated, doing a vertical adjust (of center/bottom/top) on
   that piece of text.

  2 - ClipRange is set to the height of the frame/shape.

This appears to work with different text directions too (vertical
etc.).

Change-Id: I697715a7d28bde94a6650609b16505ffab92173f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150106
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150236
Tested-by: Jenkins CollaboraOffice 

diff --git a/include/editeng/unoprnms.hxx b/include/editeng/unoprnms.hxx
index a85afe0788f8..d47a2337e247 100644
--- a/include/editeng/unoprnms.hxx
+++ b/include/editeng/unoprnms.hxx
@@ -124,6 +124,7 @@
 #define UNO_NAME_TEXT_FONTINDEPENDENTLINESPACING "FontIndependentLineSpacing"
 #define UNO_NAME_TEXT_WORDWRAP  "TextWordWrap"
 #define UNO_NAME_TEXT_CHAINNEXTNAME  "TextChainNextName"
+#define UNO_NAME_TEXT_CLIPVERTOVERFLOW  u"TextClipVerticalOverflow"
 
 #define UNO_NAME_MEASUREKIND"MeasureKind"
 #define UNO_NAME_MEASURETEXTHPOS"MeasureTextHorizontalPosition"
diff --git a/include/svx/svddef.hxx b/include/svx/svddef.hxx
index 9332dc65a59f..9b3b1a358369 100644
--- a/include/svx/svddef.hxx
+++ b/include/svx/svddef.hxx
@@ -231,7 +231,8 @@ constexpr TypedWhichId 
SDRATTR_XMLATTRIBUTES
 constexpr TypedWhichId 
SDRATTR_TEXT_USEFIXEDCELLHEIGHT (SDRATTR_MISC_FIRST +23); /*   1121 */ /*   
1121 */ /*   1104 */ /* Pool V2 */
 constexpr TypedWhichId   SDRATTR_TEXT_WORDWRAP   
(SDRATTR_MISC_FIRST +24); /*   1122 */ /*   1122 */ /*   1105 */
 /* Pool V2 */
 constexpr TypedWhichId  SDRATTR_TEXT_CHAINNEXTNAME  
(SDRATTR_MISC_FIRST +25); /*   1123 */ /*   1123 */ /*   1106 */
 /* Pool V2 */
-constexpr sal_uInt16   SDRATTR_MISC_LAST   
(SDRATTR_TEXT_CHAINNEXTNAME); /* 1125   */ /* 1125   */ /* 1108   */ /* 
Pool V1: 1056 */
+constexpr TypedWhichId   
SDRATTR_TEXT_CLIPVERTOVERFLOW   (SDRATTR_MISC_FIRST +26);
+constexpr sal_uInt16   SDRATTR_MISC_LAST   
(SDRATTR_TEXT_CLIPVERTOVERFLOW); /* 1126   */ /* 1125   */ /* 1108   */ /* 
Pool V1: 1056 */
 
 constexpr sal_uInt16  SDRATTR_EDGE_FIRST 
(SDRATTR_MISC_LAST + 1);/* 1127   */ /* Pool V4 */
 constexpr TypedWhichId   SDRATTR_EDGEKIND   
(SDRATTR_EDGE_FIRST + 0);   /*   1127 */ /* Pool V4 */
diff --git a/include/svx/unoshprp.hxx b/include/svx/unoshprp.hxx
index 4deec20d7783..99d305644282 100644
--- a/include/svx/unoshprp.hxx
+++ b/include/svx/unoshprp.hxx
@@ -325,6 +325,7 @@
 { u"" UNO_NAME_TEXT_VERTADJUST,   SDRATTR_TEXT_VERTADJUST,
cppu::UnoType::get(),0,  0},\
 { u"" UNO_NAME_TEXT_WORDWRAP, SDRATTR_TEXT_WORDWRAP,  
cppu::UnoType::get(),0,  0}, \
 { u"" UNO_NAME_TEXT_CHAINNEXTNAME,SDRATTR_TEXT_CHAINNEXTNAME, 
::cppu::UnoType::get(),0,  0}, \
+{ u"" UNO_NAME_TEXT_CLIPVERTOVERFLOW, SDRATTR_TEXT_CLIPVERTOVERFLOW,  
cppu::UnoType::get(),  0,  0}, \
 { u"TextColumns", OWN_ATTR_TEXTCOLUMNS,   
cppu::UnoType::get(), 0, 0 }, \
 SVX_UNOEDIT_CHAR_PROPERTIES, \
 SVX_UNOEDIT_PARA_PROPERTIES,
diff --git a/svx/source/svdraw/svdattr.cxx b/svx/source/svdraw/svdattr.cxx
index b0df93a13855..b71ac9919f4a 100644
--- a/svx/source/svdraw/svdattr.cxx
+++ b/svx/source/svdraw/svdattr.cxx
@@ -170,6 +170,7 @@ SdrItemPool::SdrItemPool(
 rPoolDefaults[SDRATTR_TEXT_CHAINNEXTNAME-SDRATTR_START]=new 
SfxStringItem(SDRATTR_TEXT_CHAINNEXTNAME, "");
 rPoolDefaults[SDRATTR_TEXT_USEFIXEDCELLHEIGHT -SDRATTR_START]=new 

[Libreoffice-commits] core.git: include/docmodel oox/inc oox/source

2023-04-11 Thread Tomaž Vajngerl (via logerrit)
 include/docmodel/theme/FormatScheme.hxx |   67 +++
 oox/inc/drawingml/misccontexts.hxx  |   25 +-
 oox/source/drawingml/graphicshapecontext.cxx|2 
 oox/source/drawingml/misccontexts.cxx   |  144 +---
 oox/source/drawingml/textparagraphpropertiescontext.cxx |2 
 5 files changed, 201 insertions(+), 39 deletions(-)

New commits:
commit 0ffa50031eb33500a3530ece76ea32d15864f345
Author: Tomaž Vajngerl 
AuthorDate: Tue Feb 28 18:09:46 2023 +0900
Commit: Tomaž Vajngerl 
CommitDate: Wed Apr 12 06:01:53 2023 +0200

oox: add model::BlipFilll and import blip (graphic) fill elements

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

diff --git a/include/docmodel/theme/FormatScheme.hxx 
b/include/docmodel/theme/FormatScheme.hxx
index fea08ee50d1e..cd3c5491a62a 100644
--- a/include/docmodel/theme/FormatScheme.hxx
+++ b/include/docmodel/theme/FormatScheme.hxx
@@ -13,6 +13,7 @@
 #include 
 #include 
 #include 
+#include 
 
 namespace model
 {
@@ -277,6 +278,72 @@ public:
 }
 };
 
+enum class BitmapMode
+{
+Unused,
+Tile,
+Stretch,
+};
+
+enum class FlipMode
+{
+None,
+X,
+Y,
+XY
+};
+
+enum class RectangleAlignment
+{
+TopLeft,
+Top,
+TopRight,
+Left,
+Center,
+Right,
+BottomLeft,
+Bottom,
+BottomRight
+};
+
+enum class ColorEffectType
+{
+None,
+BiLevel,
+Grayscale,
+ColorChange
+};
+
+class DOCMODEL_DLLPUBLIC BlipFill : public Fill
+{
+public:
+bool mbRotateWithShape = false;
+RelativeRectangle maClipRectangle;
+RelativeRectangle maFillRectangle;
+BitmapMode meMode = BitmapMode::Unused;
+
+sal_Int32 mnTileOffsetX = 0;
+sal_Int32 mnTileOffsetY = 0;
+sal_Int32 mnTileScaleX = 0;
+sal_Int32 mnTileScaleY = 0;
+FlipMode meTileFlipMode = FlipMode::None;
+RectangleAlignment meTileAlignment = RectangleAlignment::TopLeft;
+
+css::uno::Reference mxGraphic;
+
+ColorEffectType meColorEffectType = ColorEffectType::None;
+
+sal_Int32 mnBiLevelThreshold = 0;
+ColorDefinition maColorFrom;
+ColorDefinition maColorTo;
+bool mbUseAlpha = false;
+
+BlipFill()
+: Fill(FillType::Blip)
+{
+}
+};
+
 // Format Scheme
 
 class DOCMODEL_DLLPUBLIC FillStyle
diff --git a/oox/inc/drawingml/misccontexts.hxx 
b/oox/inc/drawingml/misccontexts.hxx
index 10977df87d99..c79816282ae7 100644
--- a/oox/inc/drawingml/misccontexts.hxx
+++ b/oox/inc/drawingml/misccontexts.hxx
@@ -141,11 +141,9 @@ private:
 class ColorChangeContext final : public ::oox::core::ContextHandler2
 {
 public:
-explicitColorChangeContext(
-::oox::core::ContextHandler2Helper const & rParent,
-const ::oox::AttributeList& rAttribs,
-BlipFillProperties& rBlipProps );
-virtual ~ColorChangeContext() override;
+explicit ColorChangeContext(::oox::core::ContextHandler2Helper const & 
rParent, const ::oox::AttributeList& rAttribs,
+BlipFillProperties& rBlipProps, model::BlipFill* 
pBlipFill);
+virtual ~ColorChangeContext() override;
 
 virtual ::oox::core::ContextHandlerRef
 onCreateContext(
@@ -153,8 +151,9 @@ public:
 const ::oox::AttributeList& rAttribs ) override;
 
 private:
+model::BlipFill* mpBlipFill;
 BlipFillProperties& mrBlipProps;
-boolmbUseAlpha;
+bool mbUseAlpha;
 };
 
 /** Context handler that imports the a:blip element containing the fill bitmap
@@ -162,10 +161,8 @@ private:
 class BlipContext final : public ::oox::core::ContextHandler2
 {
 public:
-explicitBlipContext(
-::oox::core::ContextHandler2Helper const & rParent,
-const ::oox::AttributeList& rAttribs,
-BlipFillProperties& rBlipProps );
+explicit BlipContext(::oox::core::ContextHandler2Helper const & rParent, 
const ::oox::AttributeList& rAttribs,
+BlipFillProperties& rBlipProps, model::BlipFill* 
pBlipFill);
 
 virtual ::oox::core::ContextHandlerRef
 onCreateContext(
@@ -173,6 +170,7 @@ public:
 const ::oox::AttributeList& rAttribs ) override;
 
 private:
+model::BlipFill* mpBlipFill;
 BlipFillProperties& mrBlipProps;
 };
 
@@ -180,10 +178,8 @@ private:
 class BlipFillContext final : public ::oox::core::ContextHandler2
 {
 public:
-explicitBlipFillContext(
-::oox::core::ContextHandler2Helper const & rParent,
-const ::oox::AttributeList& rAttribs,
-BlipFillProperties& rBlipProps );
+explicit 

[Libreoffice-bugs] [Bug 119590] Wrong color scale conditional formatting structure with BASIC

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119590

--- Comment #16 from Todd V  ---
This is confirmed to still be an issue in 7.4.6.2:

Version: 7.4.6.2 (x64) / LibreOffice Community
Build ID: 5b1f5509c2decdade7fda905e3e1429a67acd63d
CPU threads: 16; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

Additionally, the other conditional formats of Data Bar, Icon Set, and Date  
don't appear to be available via macros either - only the Condition type is
available.

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

[Libreoffice-commits] core.git: include/docmodel oox/inc oox/source

2023-04-11 Thread Tomaž Vajngerl (via logerrit)
 include/docmodel/theme/FormatScheme.hxx |   72 ++
 oox/inc/drawingml/misccontexts.hxx  |8 +-
 oox/source/drawingml/colorchoicecontext.cxx |   12 +--
 oox/source/drawingml/misccontexts.cxx   |  108 +---
 4 files changed, 182 insertions(+), 18 deletions(-)

New commits:
commit 17167dbede715de4792a48149b8603f384555f80
Author: Tomaž Vajngerl 
AuthorDate: Mon Feb 27 22:03:59 2023 +0900
Commit: Tomaž Vajngerl 
CommitDate: Wed Apr 12 05:37:33 2023 +0200

oox: add model::PatternFill and import pattern fill elements

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

diff --git a/include/docmodel/theme/FormatScheme.hxx 
b/include/docmodel/theme/FormatScheme.hxx
index 07829c866162..fea08ee50d1e 100644
--- a/include/docmodel/theme/FormatScheme.hxx
+++ b/include/docmodel/theme/FormatScheme.hxx
@@ -205,6 +205,78 @@ public:
 }
 };
 
+enum class PatternPreset
+{
+Unused,
+Percent_5,
+Percent_10,
+Percent_20,
+Percent_25,
+Percent_30,
+Percent_40,
+Percent_50,
+Percent_60,
+Percent_70,
+Percent_75,
+Percent_80,
+Percent_90,
+Horizontal,
+Vertical,
+LightHorizontal,
+LightVertical,
+DarkHorizontal,
+DarkVertical,
+NarrowHorizontal,
+NarrowVertical,
+DashedHorizontal,
+DashedVertical,
+Cross,
+DownwardDiagonal,
+UpwardDiagonal,
+LightDownwardDiagonal,
+LightUpwardDiagonal,
+DarkDownwardDiagonal,
+DarkUpwardDiagonal,
+WideDownwardDiagonal,
+WideUpwardDiagonal,
+DashedDownwardDiagonal,
+DashedUpwardDiagonal,
+DiagonalCross,
+SmallCheckerBoard,
+LargeCheckerBoard,
+SmallGrid,
+LargeGrid,
+DottedGrid,
+SmallConfetti,
+LargeConfetti,
+HorizontalBrick,
+DiagonalBrick,
+SolidDiamond,
+OpenDiamond,
+DottedDiamond,
+Plaid,
+Sphere,
+Weave,
+Divot,
+Shingle,
+Wave,
+Trellis,
+ZigZag
+};
+
+class DOCMODEL_DLLPUBLIC PatternFill : public Fill
+{
+public:
+PatternPreset mePatternPreset = PatternPreset::Unused;
+ColorDefinition maForegroundColor;
+ColorDefinition maBackgroundColor;
+
+PatternFill()
+: Fill(FillType::Pattern)
+{
+}
+};
+
 // Format Scheme
 
 class DOCMODEL_DLLPUBLIC FillStyle
diff --git a/oox/inc/drawingml/misccontexts.hxx 
b/oox/inc/drawingml/misccontexts.hxx
index 6bbaa74efcf2..10977df87d99 100644
--- a/oox/inc/drawingml/misccontexts.hxx
+++ b/oox/inc/drawingml/misccontexts.hxx
@@ -60,10 +60,9 @@ private:
 class PatternFillContext final : public ::oox::core::ContextHandler2
 {
 public:
-explicitPatternFillContext(
-::oox::core::ContextHandler2Helper const & rParent,
-const ::oox::AttributeList& rAttribs,
-PatternFillProperties& rPatternProps );
+explicit PatternFillContext(::oox::core::ContextHandler2Helper const& 
rParent,
+const ::oox::AttributeList& rAttribs, 
PatternFillProperties& rPatternProps,
+model::PatternFill* pPatternFill);
 
 virtual ::oox::core::ContextHandlerRef
 onCreateContext(
@@ -71,6 +70,7 @@ public:
 const ::oox::AttributeList& rAttribs ) override;
 
 private:
+model::PatternFill* mpPatternFill;
 PatternFillProperties& mrPatternProps;
 };
 
diff --git a/oox/source/drawingml/colorchoicecontext.cxx 
b/oox/source/drawingml/colorchoicecontext.cxx
index 1ee6b9afacad..d3fff573a711 100644
--- a/oox/source/drawingml/colorchoicecontext.cxx
+++ b/oox/source/drawingml/colorchoicecontext.cxx
@@ -159,13 +159,15 @@ void ColorValueContext::onStartElement( const 
AttributeList& rAttribs )
 
 mrColor.setSysClr(nToken, nLastColor);
 
-auto aIterator = constSystemColorMap.find(nToken);
-if (aIterator != constSystemColorMap.end())
+if (mpColorDefinition)
 {
-auto const& aPair = *aIterator;
-model::SystemColorType eType = aPair.second;
-if (mpColorDefinition)
+auto aIterator = constSystemColorMap.find(nToken);
+if (aIterator != constSystemColorMap.end())
+{
+auto const& aPair = *aIterator;
+model::SystemColorType eType = aPair.second;
 mpColorDefinition->setSystemColor(eType, nLastColor);
+}
 }
 }
 break;
diff --git a/oox/source/drawingml/misccontexts.cxx 
b/oox/source/drawingml/misccontexts.cxx
index e72e6ea40d74..20cb60e953de 100644
--- a/oox/source/drawingml/misccontexts.cxx
+++ b/oox/source/drawingml/misccontexts.cxx
@@ -27,6 +27,7 @@
 #include 
 #include 
 #include 
+#include 
 
 using 

[Libreoffice-bugs] [Bug 154710] Error saving Calc

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154710

--- Comment #4 from Petr Neudek  ---
For Stéphane Guillou (stragu) here is my forum post translated into English.
Original https://forum.openoffice.cz/viewtopic.php?pid=25750#p25750

I have been experiencing a strange phenomenon for the past 4 days. I programmed
a template for educational purposes on the topic of sorting algorithms.
Everything was good in the beginning, but after a certain point I couldn't save
the work. No error was visible in IDE Basic and I could test repeatedly. I just
couldn't save the work. At that moment, LO stopped communicating. So I waited
and when there was no change even after an hour, I had to turn off the LO.

I tested everything possible. I reinstalled the installed version of LO 7.4.6
to 7.5.2 on two of my computers with W10. No luck - it behaved the same on both
machines.

I got around the problem by exporting Basic, which I immediately imported back
after the crash. I was irritated by the information about the crash from the LO
system: - "The Libre Office program is not responding. Please wait until the
Windows system reports the problem to Microsoft". Also unusual behavior of LO
after a crash, for example "lu5620ciyh3.tmp", which remain in the folder even
after recovery.

Now that I've come to terms with the fact that I'll be storing Basic
externally. There was a message from Petr Valach that a new version of Apache
OpenOffice 4.1.14 was released. I installed it and lo and behold. The macro
immediately reported an error in the code. It was a code for a button in a cell
where I would certainly not expect it:

Dim oObjAnchor as object
oShape.Size = oSize
oDrawPage.add(oShape)
oObjAnchor = oShape.Anchor
with oShape
.Anchor = oObjAnchor.getCellByPosition(17,5)
end with

LO didn't report any error and the button worked fine - just couldn't save it.

I solved the problem easily. I used a hyperlink instead of the button that
started the replay of the demonstration and the problem was solved. But such a
tricky mistake must be solved. The error is that LO does not detect its own
error and sleeps after the save command. I've experienced something similar
before. Specifically, an error in "generalFunction.COUNT". I rewrote various
macros for half a year and when I was done with the corrections, the LO
correction came - nothing but a big waste of time and nerves.

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

[Libreoffice-bugs] [Bug 154457] Row Insert Crash

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154457

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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

[Libreoffice-bugs] [Bug 151157] When odf saved to network location Read Error. Format error discovered in the file in sub-document styles.xml

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151157

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 154724] Ruby splits word with no user control

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154724

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

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

[Libreoffice-bugs] [Bug 154431] Bad management of hidden text in Writer | Editing, fotmatting, viewing, UI

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154431

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 154723] Crash when open Page Style > Area > Image

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154723

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 154724] Ruby splits word with no user control

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154724

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 154723] Crash when open Page Style > Area > Image

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154723

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

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

[Libreoffice-bugs] [Bug 154406] Euro symbol not printed with FinePrint

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154406

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 154406] Euro symbol not printed with FinePrint

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154406

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

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

[Libreoffice-bugs] [Bug 150228] Libre office freezes and then completely shuts down

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150228

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

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 149583] Crash if I open the Printer properties dialog

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149583

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

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 151506] Impress - record gradient colour does not record automatic filling option

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151506

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

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 144667] Math: small gap with Keyboard doesn't work

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144667

--- Comment #3 from QA Administrators  ---
Dear Detlef Tribius,

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 99608] Using clone formatting enables scrolling with the mouse -- but it shouldn't

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99608

--- Comment #8 from QA Administrators  ---
Dear sdc.blanco,

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 77699] SLIDESHOW: Appear animation requires two clicks instead of one

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77699

--- Comment #15 from QA Administrators  ---
Dear ravingdesi,

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 132260] Anchor to character shown in wrong position

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132260

--- Comment #6 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 116895] Wrong corners in border style "inset" (is last one in the list in UI)

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116895

--- Comment #7 from QA Administrators  ---
Dear Regina Henschel,

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 116747] Ignore all in Calc spellcheck does not remove red lines immediately (needs save & reload)

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116747

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

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 116846] Colour profile issues with edit view and PDF export compared to Preview

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116846

--- Comment #26 from QA Administrators  ---
Dear tariq.rashid50,

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 114437] Text with Consolas font is cropped on print preview / PDF (unless cell height and width increased)

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114437

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

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 100488] FILEOPEN: Formula errors with XLSM

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100488

--- Comment #13 from QA Administrators  ---
Dear Jeff D. Hanson,

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 154765] Bad screen display

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154765

--- Comment #3 from m.a.riosv  ---
Please can you paste the information in Menu/Help/About LibreOffice, there is
an icon to copy.

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

[Libreoffice-bugs] [Bug 154765] Bad screen display

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154765

m.a.riosv  changed:

   What|Removed |Added

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

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

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

[Libreoffice-bugs] [Bug 154767] New: Frecuently crash libre office writer

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154767

Bug ID: 154767
   Summary: Frecuently crash libre office writer
   Product: LibreOffice
   Version: 7.5.2.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jua...@gmail.com

Description:
I am writing and LibreOffice crash for no reason

Steps to Reproduce:
1. Open or create document
2. Write some paragraphs
3. Not recover files

Actual Results:
Depósito con errores 147758303040105, tipo 5
Nombre de evento: BEX64
Respuesta: No disponible
Identificador de archivo CAB: 0

Firma del problema:
P1: soffice.bin
P2: 7.5.0.3
P3: 63d28149
P4: ucrtbase.dll
P5: 10.0.19041.789
P6: 2bd748bf
P7: 0007286e
P8: c409
P9: 0007
P10: 

Archivos adjuntos:
\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WERCD1.tmp.dmp
\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WEREF5.tmp.WERInternalMetadata.xml
\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WERF15.tmp.xml
\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WERF13.tmp.csv
\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WERF33.tmp.txt

Es posible que estos archivos estén disponibles aquí:
\\?\C:\ProgramData\Microsoft\Windows\WER\ReportArchive\AppCrash_soffice.bin_e1f3539628bd196a4544c67e641fb5e1c62ef4d_3e93c176_ffb8e5c6-bdd0-4fd3-8f15-7d590924cbc7

Símbolo de análisis: 
Nueva búsqueda de una solución: 0
Identificador de informe: 46169fc4-d1f1-4147-858e-4784d78d74ab
Estado del informe: 268435456
Depósito con algoritmo hash: f400363318463025b4816df005326245
GUID de CAB: 0




Nombre de la aplicación con errores: soffice.bin, versión: 7.5.0.3, marca de
tiempo: 0x63d28149
Nombre del módulo con errores: ucrtbase.dll, versión: 10.0.19041.789, marca de
tiempo: 0x2bd748bf
Código de excepción: 0xc409
Desplazamiento de errores: 0x0007286e
Identificador del proceso con errores: 0x1ed8
Hora de inicio de la aplicación con errores: 0x01d96cab4447fc7f
Ruta de acceso de la aplicación con errores: C:\Program
Files\LibreOffice\program\soffice.bin
Ruta de acceso del módulo con errores: C:\Windows\System32\ucrtbase.dll
Identificador del informe: 46169fc4-d1f1-4147-858e-4784d78d74ab
Nombre completo del paquete con errores: 
Identificador de aplicación relativa del paquete con errores: 

Intel(R) HD Graphics 530

Expected Results:
No errors when i write documents


Reproducible: Always


User Profile Reset: Yes

Additional Info:
Ucrtbase.dll: version 10.0.19041.789

Version: 7.5.2.2 (X86_64) / LibreOffice Community
Build ID: 53bb9681a964705cf672590721dbc85eb4d0c3a2
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
Locale: es-CO (es_CO); UI: es-ES
Calc: CL threaded

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

[Libreoffice-bugs] [Bug 154750] cell condition interacts with different columns and rows

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154750

--- Comment #2 from m.a.riosv  ---
Please don't send private emails, always use this place, if you need that for
some private data to test, explain here and do it.

Also, detail in which cells it is not working.

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

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

2023-04-11 Thread Patrick Luby (via logerrit)
 vcl/osx/salframeview.mm |   35 ++-
 1 file changed, 30 insertions(+), 5 deletions(-)

New commits:
commit 1b06f35de68a555b85bceb5fc29d1a5f426f4bb7
Author: Patrick Luby 
AuthorDate: Tue Apr 11 19:13:51 2023 -0400
Commit: Patrick Luby 
CommitDate: Wed Apr 12 02:18:34 2023 +0200

tdf#154708 Preserve selection for repeating Shift-arrow on Japanese keyboard

Skip the posting of SalEvent::ExtTextInput and SalEvent::EndExtTextInput
events for private use area characters.

Change-Id: I6fa5dedacefc5d9dd671f607786deb999f5e4c6a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150248
Tested-by: Jenkins
Reviewed-by: Patrick Luby 

diff --git a/vcl/osx/salframeview.mm b/vcl/osx/salframeview.mm
index ae9528306cfa..3b2341a33fe4 100644
--- a/vcl/osx/salframeview.mm
+++ b/vcl/osx/salframeview.mm
@@ -1149,7 +1149,8 @@ static AquaSalFrame* getMouseContainerFrame()
 if ( !mbKeyHandled && !mpLastMarkedText && mpLastEvent && 
[mpLastEvent type] == NSEventTypeKeyDown && [mpLastEvent isARepeat] )
 {
 NSString *pChars = [mpLastEvent characters];
-[self insertText:pChars replacementRange:NSMakeRange( 0, 
[pChars length] )];
+if ( pChars )
+[self insertText:pChars replacementRange:NSMakeRange( 0, 
[pChars length] )];
 }
 // tdf#42437 Enable press-and-hold special character input method
 // Emulate the press-and-hold behavior of the TextEdit application
@@ -1965,7 +1966,32 @@ static AquaSalFrame* getMouseContainerFrame()
 // the returned position won't be anywhere near the text cursor. So,
 // dispatch an empty SalEvent::ExtTextInput event, fetch the position,
 // and then dispatch a SalEvent::EndExtTextInput event.
-bool bNeedsExtTextInput = ( mbInKeyInput && !mpLastMarkedText && 
mpLastEvent && [mpLastEvent type] == NSEventTypeKeyDown && [mpLastEvent 
isARepeat] );
+NSString *pNewMarkedText = nullptr;
+NSString *pChars = [mpLastEvent characters];
+bool bNeedsExtTextInput = ( pChars && mbInKeyInput && !mpLastMarkedText && 
mpLastEvent && [mpLastEvent type] == NSEventTypeKeyDown && [mpLastEvent 
isARepeat] );
+if ( bNeedsExtTextInput )
+{
+// tdf#154708 Preserve selection for repeating Shift-arrow on Japanese 
keyboard
+// Skip the posting of SalEvent::ExtTextInput and
+// SalEvent::EndExtTextInput events for private use area characters.
+NSUInteger nLen = [pChars length];
+unichar pBuf[ nLen + 1 ];
+NSUInteger nBufLen = 0;
+for ( NSUInteger i = 0; i < nLen; i++ )
+{
+unichar aChar = [pChars characterAtIndex:i];
+if ( aChar >= 0xf700 && aChar < 0xf780 )
+continue;
+
+pBuf[nBufLen++] = aChar;
+}
+pBuf[nBufLen] = 0;
+
+pNewMarkedText = [NSString stringWithCharacters:pBuf length:nBufLen];
+if (!pNewMarkedText || ![pNewMarkedText length])
+bNeedsExtTextInput = false;
+}
+
 if ( bNeedsExtTextInput )
 {
 SalExtTextInputEvent aInputEvent;
@@ -1993,11 +2019,10 @@ static AquaSalFrame* getMouseContainerFrame()
 // input method so set the mbTextInputWantsNonRepeatKeyDown flag to
 // indicate that the characters need to be deleted if the input method
 // replaces the committed characters.
-NSString *pChars = [mpLastEvent characters];
-if ( pChars )
+if ( pNewMarkedText )
 {
 [self unmarkText];
-mpLastMarkedText = [[NSAttributedString alloc] 
initWithString:pChars];
+mpLastMarkedText = [[NSAttributedString alloc] 
initWithString:pNewMarkedText];
 mSelectedRange = mMarkedRange = NSMakeRange( 0, [mpLastMarkedText 
length] );
 mbTextInputWantsNonRepeatKeyDown = YES;
 }


[Libreoffice-bugs] [Bug 154766] New: management of ellipsis variants

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154766

Bug ID: 154766
   Summary: management of ellipsis variants
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: toddwar...@duck.com

An ellipsis appears in two forms in papers, publications, and manuscripts.

1. …
2. . . .

Each is treated as a single word and is not breakable. Or, at least, they
should be treated as such. Alas, I don't know of a single wordprocessor on the
planet that manages the second form well, if at all.

The first form is embraced by the APA Style, for example, because that is the
style guide used to develop news copy (where space is at a premium). The three
dots spaced out is embraced by everyone else: MLA Style Guide, Chicago Manual
of Style, etc.

The second form is challenging. To duplicate it, writers often just add spaces
between the periods. But then, if the ellipsis needs to be wordwrapped, the
writer may find ellipses split onto two lines. It's a single unbreakable word,
remember. And so, what many writers do instead is to insert non-breaking spaces
in between.

This is not ideal. A typical novel-length manuscript to be submitted for
publication is expected to be formatted following the Chicago Manual of Style.
Now, one could do a document-wide cut-and-paste of the APA-styled ellipsis, but
again . . . not ideal. And that combination of characters, again, is not
treated as a single word (word counts, etc.)

I have also reached out to the Unicode community. They said they _will not_ add
the spaced-out ellipsis into the character set because they pick one variant of
anything, and that is that.

And so here we are. For most publications and manuscripts, we are forced to use
an old-school work-around.

- - -

So, why this bugzilla? Because a LibreOffice community member suggested that I
submit the request after I griped about it on Mastodon. LibreOffice could lead
the charge on plugging this little hole in usability. I mean, MS hasn't tackled
it. The difficult bit is determining what the correct behavior to enable
support of the most common form of an ellipsis is. I couldn't really tell you.
I look to you gurus of wordprocessing usability. It would also have to be
somehow portable when exported.

I don't know what the answer is, but maybe this will strike up a discussion.
Beter yet, maybe someone can leverage the Unicode community to see the light
and add the character. :)

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

[Libreoffice-bugs] [Bug 40540] FILESAVE Losing shapes inside frame while saving to .DOC (MSO2003) (vector grafics)

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=40540

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   Keywords||dataLoss
 CC||stephane.guillou@libreoffic
   ||e.org
Version|3.3.3 release   |Inherited From OOo

--- Comment #35 from Stéphane Guillou (stragu) 
 ---
Already in OOo 3.3, so inherited.

Same as comment 12 in recent master build:

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

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

[Libreoffice-bugs] [Bug 154246] Copying a formatted text from Impress Outline to a Writer document

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154246

--- Comment #9 from lucky  ---

Hello [Francesco Amorosa],

Thank you for reporting the bug. I can confirm that the bug is present in
master.

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

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

[Libreoffice-bugs] [Bug 136524] [META] Performance/hang/lag/high CPU issues

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136524

BogdanB  changed:

   What|Removed |Added

 Depends on||134864


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=134864
[Bug 134864] Using Tabbed User Interface some larger (over 1MB) XLSX sheets do
not load instead, LibreOffice freezes.
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 87351] [META] Conditional formatting bugs and enhancements

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87351

BogdanB  changed:

   What|Removed |Added

 Depends on||134864


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=134864
[Bug 134864] Using Tabbed User Interface some larger (over 1MB) XLSX sheets do
not load instead, LibreOffice freezes.
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 134864] Using Tabbed User Interface some larger (over 1MB) XLSX sheets do not load instead, LibreOffice freezes.

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134864

BogdanB  changed:

   What|Removed |Added

 Blocks||136524, 87351
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=87351
[Bug 87351] [META] Conditional formatting bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=136524
[Bug 136524] [META] Performance/hang/lag/high CPU issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2023-04-11 Thread Mike Kaganski (via logerrit)
 sw/qa/extras/htmlexport/htmlexport.cxx |3 ++-
 sw/source/filter/html/htmlatr.cxx  |2 ++
 sw/source/filter/html/htmltabw.cxx |   19 +--
 sw/source/filter/html/wrthtml.hxx  |1 +
 4 files changed, 6 insertions(+), 19 deletions(-)

New commits:
commit c6a2939cec8fdf1ca82529073e59e784f3620def
Author: Mike Kaganski 
AuthorDate: Tue Apr 11 21:24:58 2023 +0300
Commit: Mike Kaganski 
CommitDate: Tue Apr 11 23:08:15 2023 +0200

tdf#154761: each dl needs a dd to actually indent

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

diff --git a/sw/qa/extras/htmlexport/htmlexport.cxx 
b/sw/qa/extras/htmlexport/htmlexport.cxx
index 8ed189b44bb0..6834434bf3da 100644
--- a/sw/qa/extras/htmlexport/htmlexport.cxx
+++ b/sw/qa/extras/htmlexport/htmlexport.cxx
@@ -2407,8 +2407,9 @@ CPPUNIT_TEST_FIXTURE(HtmlExportTest, testTdf153923)
 // Without the fix in place, this would fail
 CPPUNIT_ASSERT(pDoc);
 
+assertXPath(pDoc, "/html/body//dl", 3);
 // The 'dd' tag was not closed
-assertXPath(pDoc, "/html/body//dd");
+assertXPath(pDoc, "/html/body//dd", 3);
 }
 
 CPPUNIT_TEST_FIXTURE(SwHtmlDomExportTest, testTdf153923_ReqIF)
diff --git a/sw/source/filter/html/htmlatr.cxx 
b/sw/source/filter/html/htmlatr.cxx
index 1bf0a45e82e3..822718763e4d 100644
--- a/sw/source/filter/html/htmlatr.cxx
+++ b/sw/source/filter/html/htmlatr.cxx
@@ -136,6 +136,7 @@ void SwHTMLWriter::OutAndSetDefList( sal_uInt16 nNewLvl )
 if( m_bLFPossible )
 OutNewLine();
 HTMLOutFuncs::Out_AsciiTag( Strm(), Concat2View(GetNamespace() + 
OOO_STRING_SVTOOLS_HTML_deflist) );
+HTMLOutFuncs::Out_AsciiTag( Strm(), Concat2View(GetNamespace() + 
OOO_STRING_SVTOOLS_HTML_dd) );
 IncIndentLevel();
 m_bLFPossible = true;
 }
@@ -147,6 +148,7 @@ void SwHTMLWriter::OutAndSetDefList( sal_uInt16 nNewLvl )
 DecIndentLevel();
 if( m_bLFPossible )
 OutNewLine();
+HTMLOutFuncs::Out_AsciiTag( Strm(), Concat2View(GetNamespace() + 
OOO_STRING_SVTOOLS_HTML_dd), false );
 HTMLOutFuncs::Out_AsciiTag( Strm(), Concat2View(GetNamespace() + 
OOO_STRING_SVTOOLS_HTML_deflist), false );
 m_bLFPossible = true;
 }
diff --git a/sw/source/filter/html/htmltabw.cxx 
b/sw/source/filter/html/htmltabw.cxx
index 8c86f70c97ff..ab611724474d 100644
--- a/sw/source/filter/html/htmltabw.cxx
+++ b/sw/source/filter/html/htmltabw.cxx
@@ -1050,17 +1050,9 @@ Writer& OutHTML_SwTableNode( Writer& rWrt, SwTableNode & 
rNode,
 }
 }
 
-if( !pFlyFrameFormat && nNewDefListLvl != rHTMLWrt.m_nDefListLvl )
+if( !pFlyFrameFormat && !rHTMLWrt.mbReqIF && nNewDefListLvl != 
rHTMLWrt.m_nDefListLvl )
 rHTMLWrt.OutAndSetDefList( nNewDefListLvl );
 
-if( nNewDefListLvl )
-{
-if( rHTMLWrt.m_bLFPossible )
-rHTMLWrt.OutNewLine();
-HTMLOutFuncs::Out_AsciiTag( rWrt.Strm(), 
Concat2View(rHTMLWrt.GetNamespace() + OOO_STRING_SVTOOLS_HTML_dd) );
-rHTMLWrt.IncIndentLevel();
-}
-
 // eFlyHoriOri and eTabHoriOri now only contain the values of
 // LEFT/CENTER and RIGHT!
 if( eFlyHoriOri!=text::HoriOrientation::NONE )
@@ -1185,15 +1177,6 @@ Writer& OutHTML_SwTableNode( Writer& rWrt, SwTableNode & 
rNode,
 // move Pam behind the table
 rHTMLWrt.m_pCurrentPam->GetPoint()->Assign( *rNode.EndOfSectionNode() );
 
-if (nNewDefListLvl)
-{
-rHTMLWrt.DecIndentLevel();
-if (rHTMLWrt.m_bLFPossible)
-rHTMLWrt.OutNewLine();
-// close the dd element
-HTMLOutFuncs::Out_AsciiTag(rWrt.Strm(), 
Concat2View(rHTMLWrt.GetNamespace() + OOO_STRING_SVTOOLS_HTML_dd), false);
-}
-
 if( bPreserveForm )
 {
 rHTMLWrt.m_bPreserveForm = false;
diff --git a/sw/source/filter/html/wrthtml.hxx 
b/sw/source/filter/html/wrthtml.hxx
index b62aab60af6e..c083d688acb4 100644
--- a/sw/source/filter/html/wrthtml.hxx
+++ b/sw/source/filter/html/wrthtml.hxx
@@ -472,6 +472,7 @@ public:
 
 void OutBasic(const SwHTMLWriter& rHTMLWrt);
 
+// Used to indent inner blocks using dl/dd tags
 void OutAndSetDefList( sal_uInt16 nNewLvl );
 
 void OutStyleSheet( const SwPageDesc& rPageDesc );


[Libreoffice-bugs] [Bug 136524] [META] Performance/hang/lag/high CPU issues

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136524

BogdanB  changed:

   What|Removed |Added

 Depends on||127134


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=127134
[Bug 127134] Dotted lines in tables makes LibreOffice freeze when showed in
print preview.
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 127134] Dotted lines in tables makes LibreOffice freeze when showed in print preview.

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127134

BogdanB  changed:

   What|Removed |Added

 Blocks||136524


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=136524
[Bug 136524] [META] Performance/hang/lag/high CPU issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 113438] [META] Font name combobox bugs and enhancements

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113438

BogdanB  changed:

   What|Removed |Added

 Depends on||154504


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154504
[Bug 154504] When the font name drop-down is selected, attempting to minimize
or resize the window causes the drop-down to freeze on the screen
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154504] When the font name drop-down is selected, attempting to minimize or resize the window causes the drop-down to freeze on the screen

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154504

BogdanB  changed:

   What|Removed |Added

 Blocks||113438


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 143781] [META] Development- and code-related bug reports and tasks

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143781

BogdanB  changed:

   What|Removed |Added

 Depends on||49602


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=49602
[Bug 49602] Remove deprecated OSL Profile functionality
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 49602] Remove deprecated OSL Profile functionality

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49602

BogdanB  changed:

   What|Removed |Added

 Blocks||143781


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143781
[Bug 143781] [META] Development- and code-related bug reports and tasks
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152299] Remove unused define(s) from C/C++ files

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152299

BogdanB  changed:

   What|Removed |Added

 Blocks||143781
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143781
[Bug 143781] [META] Development- and code-related bug reports and tasks
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143781] [META] Development- and code-related bug reports and tasks

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143781

BogdanB  changed:

   What|Removed |Added

 Depends on||152299


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152299
[Bug 152299] Remove unused define(s) from C/C++ files
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143781] [META] Development- and code-related bug reports and tasks

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143781

BogdanB  changed:

   What|Removed |Added

 Depends on||90341


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=90341
[Bug 90341] Clean up excessive const_cast'ing
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 90341] Clean up excessive const_cast'ing

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90341

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||143781


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143781
[Bug 143781] [META] Development- and code-related bug reports and tasks
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103341] [META] AutoCorrect and Word Completion bugs and enhancements

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103341

BogdanB  changed:

   What|Removed |Added

 Depends on||151452


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=151452
[Bug 151452] : Tools/AutoCorrect/AutoCorrect Options window
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 151452] : Tools/AutoCorrect/AutoCorrect Options window

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151452

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||103341


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 143781] [META] Development- and code-related bug reports and tasks

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143781

BogdanB  changed:

   What|Removed |Added

 Depends on||137942


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=137942
[Bug 137942] pyuno package for linux contains windows executable files
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 137942] pyuno package for linux contains windows executable files

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137942

BogdanB  changed:

   What|Removed |Added

 Blocks||143781
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143781
[Bug 143781] [META] Development- and code-related bug reports and tasks
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 140226] Make use of SfxPoolItems more typesafe by using StaticWhichCast

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140226

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||143781


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143781
[Bug 143781] [META] Development- and code-related bug reports and tasks
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143781] [META] Development- and code-related bug reports and tasks

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143781

BogdanB  changed:

   What|Removed |Added

 Depends on||140226


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=140226
[Bug 140226] Make use of SfxPoolItems more typesafe by using StaticWhichCast
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143781] [META] Development- and code-related bug reports and tasks

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143781

BogdanB  changed:

   What|Removed |Added

 Depends on||154451


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154451
[Bug 154451] UITest: enable oneprocess mode
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154451] UITest: enable oneprocess mode

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154451

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||143781


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143781
[Bug 143781] [META] Development- and code-related bug reports and tasks
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143781] [META] Development- and code-related bug reports and tasks

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143781

BogdanB  changed:

   What|Removed |Added

 Depends on||134248


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=134248
[Bug 134248] Jars published on Maven have wrong classpath / Bootstrap does not
work
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 134248] Jars published on Maven have wrong classpath / Bootstrap does not work

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134248

BogdanB  changed:

   What|Removed |Added

 Blocks||143781
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143781
[Bug 143781] [META] Development- and code-related bug reports and tasks
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143781] [META] Development- and code-related bug reports and tasks

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143781

BogdanB  changed:

   What|Removed |Added

 Depends on||114441


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114441
[Bug 114441] Convert use of sal_uLong to better integer types
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 114441] Convert use of sal_uLong to better integer types

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114441

BogdanB  changed:

   What|Removed |Added

 Blocks||143781
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143781
[Bug 143781] [META] Development- and code-related bug reports and tasks
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143781] [META] Development- and code-related bug reports and tasks

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143781

BogdanB  changed:

   What|Removed |Added

 Depends on||132293


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=132293
[Bug 132293] Run pyflakes on python uitest files to find unused imports
-- 
You are receiving this mail because:
You are the assignee for the bug.

  1   2   3   4   5   >