[Libreoffice-bugs] [Bug 137666] Tiles slide transition flashes after finishing and revealing the full sheet for split second

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137666

--- Comment #6 from Mike Kaganski  ---
(In reply to Aron Budea from comment #5)
> This sample makes LO hang with Skia/Vulkan

Works with Skia/Raster, so you could also test with forced Skia software
rendering.

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

[Libreoffice-bugs] [Bug 137666] Tiles slide transition flashes after finishing and revealing the full sheet for split second

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137666

--- Comment #5 from Aron Budea  ---
Actually, I used a different sample, attachment 172691 from bug 142709, which
has the same slide transition.
This sample makes LO hang with Skia/Vulkan, probably due to the fontwork used
in it.

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

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

2022-09-05 Thread Khaled Hosny (via logerrit)
 vcl/inc/win/salgdi.h|2 +-
 vcl/win/gdi/salfont.cxx |7 ---
 2 files changed, 5 insertions(+), 4 deletions(-)

New commits:
commit e75631211b596df3997f6fe6eb5422b931bd0384
Author: Khaled Hosny 
AuthorDate: Mon Sep 5 19:36:25 2022 +0200
Commit: Mike Kaganski 
CommitDate: Tue Sep 6 07:19:57 2022 +0200

vcl: Create HFNT on WinFontFace when needed

I’m seeing frequent CI failures with warnings like:

warn:sfx.appl:13336:18148:sfx2/source/appl/app.cxx:147: No DDE-Service 
possible. Error: 16399
warn:vcl:13336:18148:vcl/win/gdi/salvd.cxx:99: CreateCompatibleDC failed: 
There are no more files.

Lets see if this is causing us to hit the GDI object limit.

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

diff --git a/vcl/inc/win/salgdi.h b/vcl/inc/win/salgdi.h
index ef7cdf210c94..b107308ec10b 100644
--- a/vcl/inc/win/salgdi.h
+++ b/vcl/inc/win/salgdi.h
@@ -80,7 +80,7 @@ private:
 BYTEmnPitchAndFamily;
 boolmbAliasSymbolsHigh;
 boolmbAliasSymbolsLow;
-HFONT   mhFont;
+LOGFONTWmaLogFont;
 };
 
 /** Class that creates (and destroys) a compatible Device Context.
diff --git a/vcl/win/gdi/salfont.cxx b/vcl/win/gdi/salfont.cxx
index 7614bbf4390c..200780426a5b 100644
--- a/vcl/win/gdi/salfont.cxx
+++ b/vcl/win/gdi/salfont.cxx
@@ -586,7 +586,7 @@ WinFontFace::WinFontFace(const ENUMLOGFONTEXW& rEnumFont, 
const NEWTEXTMETRICW&
 mnPitchAndFamily(rMetric.tmPitchAndFamily),
 mbAliasSymbolsHigh( false ),
 mbAliasSymbolsLow( false ),
-mhFont(CreateFontIndirectW())
+maLogFont(rEnumFont.elfLogFont)
 {
 if (meWinCharSet == SYMBOL_CHARSET)
 {
@@ -612,7 +612,6 @@ WinFontFace::WinFontFace(const ENUMLOGFONTEXW& rEnumFont, 
const NEWTEXTMETRICW&
 
 WinFontFace::~WinFontFace()
 {
-DeleteFont(mhFont);
 }
 
 sal_IntPtr WinFontFace::GetFontId() const
@@ -686,7 +685,8 @@ hb_blob_t* WinFontFace::GetHbTable(hb_tag_t nTag) const
 unsigned char* pBuffer = nullptr;
 
 HDC hDC(::GetDC(nullptr));
-HFONT hOldFont = ::SelectFont(hDC, mhFont);
+HFONT hFont = ::CreateFontIndirectW();
+HFONT hOldFont = ::SelectFont(hDC, hFont);
 
 nLength = ::GetFontData(hDC, OSL_NETDWORD(nTag), 0, nullptr, 0);
 if (nLength > 0 && nLength != GDI_ERROR)
@@ -696,6 +696,7 @@ hb_blob_t* WinFontFace::GetHbTable(hb_tag_t nTag) const
 }
 
 ::SelectFont(hDC, hOldFont);
+::DeleteFont(hFont);
 ::ReleaseDC(nullptr, hDC);
 
 hb_blob_t* pBlob = nullptr;


[Libreoffice-bugs] [Bug 122737] The slide flashes once when after the fade animation ends

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122737

Aron Budea  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 137666] Tiles slide transition flashes after finishing and revealing the full sheet for split second

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137666

Aron Budea  changed:

   What|Removed |Added

   Keywords||bibisected, bisected
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||2737
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC||aron.bu...@gmail.com,
   ||mikekagan...@hotmail.com

--- Comment #4 from Aron Budea  ---
I can confirm this bug.

Version: 7.5.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: dc92a4d973086ce8a6a5f75ba0f4d4c9ca05537a
CPU threads: 16; OS: Windows 10.0 Build 19044; UI render: Skia/Vulkan; VCL: win
Locale: hu-HU (hu_HU); UI: en-US
Calc: CL threaded

For me this is a regression that started with the following commit in 6.3.
There was a similar report, bug 122737, where I have come to the same
conclusion, and we have similarly different experience with Telesto of when the
bug started. My GPU is an AMD integrated one, it might or might not matter.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=dd199ccb46c036713c704a23e137d04623936e47
author  Mike Kaganski  2019-02-17
16:30:55 +0300
committer   Mike Kaganski  2019-02-18
09:28:19 +0100

tdf#98896: GetWidth/GetHeight vs getWidth/getHeight strikes back!

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

[Libreoffice-commits] core.git: Branch 'libreoffice-7-4' - vcl/skia vcl/unx

2022-09-05 Thread Caolán McNamara (via logerrit)
 vcl/skia/osx/gdiimpl.cxx|4 
 vcl/skia/win/gdiimpl.cxx|4 
 vcl/skia/x11/textrender.cxx |2 ++
 vcl/unx/generic/gdi/cairotextrender.cxx |   21 +++--
 4 files changed, 25 insertions(+), 6 deletions(-)

New commits:
commit d75c6adcdb4c09c1379f22793135def71b8040a7
Author: Caolán McNamara 
AuthorDate: Sun Sep 4 21:26:22 2022 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Tue Sep 6 06:57:55 2022 +0200

tdf#150507 like skia, even when subpixel rendering pixel snap y

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

diff --git a/vcl/skia/osx/gdiimpl.cxx b/vcl/skia/osx/gdiimpl.cxx
index f8bcdd68352e..ffc84ae89006 100644
--- a/vcl/skia/osx/gdiimpl.cxx
+++ b/vcl/skia/osx/gdiimpl.cxx
@@ -313,7 +313,11 @@ void AquaSkiaSalGraphicsImpl::drawTextLayout(const 
GenericSalLayout& rLayout,
 SkFont::Edging ePreferredAliasing
 = bSubpixelPositioning ? SkFont::Edging::kSubpixelAntiAlias : 
SkFont::Edging::kAntiAlias;
 if (bSubpixelPositioning)
+{
+// note that SkFont defaults to a BaselineSnap of true, so I think 
really only
+// subpixel in text direction
 font.setSubpixel(true);
+}
 font.setEdging(mrShared.mbNonAntialiasedText ? SkFont::Edging::kAlias : 
ePreferredAliasing);
 
 // Vertical font, use width as "height".
diff --git a/vcl/skia/win/gdiimpl.cxx b/vcl/skia/win/gdiimpl.cxx
index 586b4e1fdd97..9d01d7257b87 100644
--- a/vcl/skia/win/gdiimpl.cxx
+++ b/vcl/skia/win/gdiimpl.cxx
@@ -271,7 +271,11 @@ bool WinSkiaSalGraphicsImpl::DrawTextLayout(const 
GenericSalLayout& rLayout)
 SkFont::Edging ePreferredAliasing
 = bSubpixelPositioning ? SkFont::Edging::kSubpixelAntiAlias : 
fontEdging;
 if (bSubpixelPositioning)
+{
+// note that SkFont defaults to a BaselineSnap of true, so I think 
really only
+// subpixel in text direction
 font.setSubpixel(true);
+}
 font.setEdging(logFont.lfQuality == NONANTIALIASED_QUALITY ? 
SkFont::Edging::kAlias
: 
ePreferredAliasing);
 
diff --git a/vcl/skia/x11/textrender.cxx b/vcl/skia/x11/textrender.cxx
index 9fda8ba6601c..7d344b8a2796 100644
--- a/vcl/skia/x11/textrender.cxx
+++ b/vcl/skia/x11/textrender.cxx
@@ -63,6 +63,8 @@ void SkiaTextRender::DrawTextLayout(const GenericSalLayout& 
rLayout, const SalGr
 = bSubpixelPositioning ? SkFont::Edging::kSubpixelAntiAlias : 
SkFont::Edging::kAntiAlias;
 if (bSubpixelPositioning)
 {
+// note that SkFont defaults to a BaselineSnap of true, so I think 
really only
+// subpixel in text direction
 font.setSubpixel(true);
 
 SkFontHinting eHinting = font.getHinting();
diff --git a/vcl/unx/generic/gdi/cairotextrender.cxx 
b/vcl/unx/generic/gdi/cairotextrender.cxx
index 24e5580e9bdb..898110fee4fc 100644
--- a/vcl/unx/generic/gdi/cairotextrender.cxx
+++ b/vcl/unx/generic/gdi/cairotextrender.cxx
@@ -165,6 +165,8 @@ void CairoTextRender::DrawTextLayout(const 
GenericSalLayout& rLayout, const SalG
 const FreetypeFontInstance& rInstance = 
static_cast(rLayout.GetFont());
 const FreetypeFont& rFont = rInstance.GetFreetypeFont();
 
+const bool bResolutionIndependentLayoutEnabled = 
rGraphics.getTextRenderModeForResolutionIndependentLayoutEnabled();
+
 std::vector cairo_glyphs;
 std::vector glyph_extrarotation;
 cairo_glyphs.reserve( 256 );
@@ -178,12 +180,20 @@ void CairoTextRender::DrawTextLayout(const 
GenericSalLayout& rLayout, const SalG
 aGlyph.index = pGlyph->glyphId();
 aGlyph.x = aPos.getX();
 aGlyph.y = aPos.getY();
-cairo_glyphs.push_back(aGlyph);
 
-if (pGlyph->IsVertical())
-glyph_extrarotation.push_back(1);
-else
-glyph_extrarotation.push_back(0);
+const bool bVertical = pGlyph->IsVertical();
+glyph_extrarotation.push_back(bVertical ? 1 : 0);
+
+// tdf#150507 like skia even when subpixel rendering pixel snap y
+if (bResolutionIndependentLayoutEnabled)
+{
+if (!bVertical)
+aGlyph.y = std::floor(aGlyph.y + 0.5);
+else
+aGlyph.x = std::floor(aGlyph.x + 0.5);
+}
+
+cairo_glyphs.push_back(aGlyph);
 }
 
 if (cairo_glyphs.empty())
@@ -228,7 +238,6 @@ void CairoTextRender::DrawTextLayout(const 
GenericSalLayout& rLayout, const SalG
 
 const StyleSettings& rStyleSettings = 
Application::GetSettings().GetStyleSettings();
 const bool bDisableAA = !rStyleSettings.GetUseFontAAFromSystem() && 
!rGraphics.getAntiAlias();
-const bool bResolutionIndependentLayoutEnabled = 
rGraphics.getTextRenderModeForResolutionIndependentLayoutEnabled();
 
 const cairo_font_options_t* pFontOptions = 

[Libreoffice-bugs] [Bug 138149] Tools...Customize...Toolbars...Category...Macros causes crash if python script is used (comment 6)

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138149

b...@lanier.ws  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 138149] Tools...Customize...Toolbars...Category...Macros causes crash if python script is used (comment 6)

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138149

--- Comment #13 from b...@lanier.ws  ---
Bug was still there.
Reset Profile.
Bug gone

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

[Libreoffice-bugs] [Bug 133092] [META] Crash bugs

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092

Aron Budea  changed:

   What|Removed |Added

 Depends on||150498


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=150498
[Bug 150498] CRASH: Copying change tracked content and closing Writer
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 83946] [META] Tracking changes issues

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83946

Aron Budea  changed:

   What|Removed |Added

 Depends on||150498


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=150498
[Bug 150498] CRASH: Copying change tracked content and closing Writer
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 108843] [META] Clipboard bugs and enhancements

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108843

Aron Budea  changed:

   What|Removed |Added

 Depends on||150498


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=150498
[Bug 150498] CRASH: Copying change tracked content and closing Writer
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 150498] CRASH: Copying change tracked content and closing Writer

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150498

Aron Budea  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Blocks||83946, 108843, 133092
   Keywords||bibisected, bisected,
   ||regression
 CC||michael.st...@allotropia.de
 Status|UNCONFIRMED |NEW

--- Comment #5 from Aron Budea  ---
(In reply to Telesto from comment #4)
> I assume bug 149548 comment 2 applies here too..
It's somewhat similar. There's no crash before the commit identified in bug
106746 comment 11, but soffice.bin/exe processes linger on after quitting.
Note: Ctrl+A in this document crashes LO in these old versions, but Edit ->
Select All worked fine.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=db17d3c17c40d6b0e92392cf3c6e343d1d17b771
author  Noel Grandin  2015-11-10 13:36:34 +0200
committer   Noel Grandin 2015-11-11 07:16:20
+

"new loplugin: memoryvar"

Then going back further, before Michael's commit identified in bug 149548
comment 2, the processes terminate fine.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=c4cf85766453982f1aa94a7f2cb22af19ed100be
author  Michael Stahl2015-05-05 23:15:20
+0200
committer   Michael Stahl2015-05-06 00:10:17
+0200

"sw: fix crash due to redlines on tables on ooo121112-2.docx"


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=83946
[Bug 83946] [META] Tracking changes issues
https://bugs.documentfoundation.org/show_bug.cgi?id=108843
[Bug 108843] [META] Clipboard bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=133092
[Bug 133092] [META] Crash bugs
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 115709] [META] DOCX (OOXML) Tracking changes-related issues

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115709

Aron Budea  changed:

   What|Removed |Added

 Depends on||149548


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=149548
[Bug 149548] CRASH: copying and pasting tracked content
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 83946] [META] Tracking changes issues

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83946

Aron Budea  changed:

   What|Removed |Added

 Depends on|149548  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=149548
[Bug 149548] CRASH: copying and pasting tracked content
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 149548] CRASH: copying and pasting tracked content

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149548

Aron Budea  changed:

   What|Removed |Added

 Blocks|83946   |115709


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=83946
[Bug 83946] [META] Tracking changes issues
https://bugs.documentfoundation.org/show_bug.cgi?id=115709
[Bug 115709] [META] DOCX (OOXML) Tracking changes-related issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 150551] Exporting shape with gradient fill as PDF results in wrong output

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150551

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 150549] Libreoffice leaves "zombie process" running after closing any LibreOffice component, preventing new components from opening

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150549

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 150545] Incorrect handling of "Automatic" increment in gradient fill

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150545

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 150543] Reset to parent button not working in style dialog

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150543

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 150540] LibreOffice针对图片增加辅助功能的建议

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150540

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 150539] Overlap problem of Thin Thick, Medium Gap Border

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150539

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 150793] Exporting a large .docx or .odt file to PDF removes all links

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150793

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 150793] Exporting a large .docx or .odt file to PDF removes all links

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150793

--- 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 149506] Slow start-up and opening of files since 7.3 release

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149506

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 149506] Slow start-up and opening of files since 7.3 release

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149506

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

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

[Libreoffice-bugs] [Bug 146262] FILESAVE blank popup when attempting to save a file

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146262

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 146262] FILESAVE blank popup when attempting to save a file

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146262

--- Comment #6 from QA Administrators  ---
Dear JC Garnier,

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 145902] All Four Borders preset selected for images, equations, frames by default, should be No Borders

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145902

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 145902] All Four Borders preset selected for images, equations, frames by default, should be No Borders

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145902

--- Comment #10 from QA Administrators  ---
Dear David W. Snow,

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 145608] The program crashes suddenly when try to open an archive or even not doing anything

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145608

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 145608] The program crashes suddenly when try to open an archive or even not doing anything

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145608

--- Comment #4 from QA Administrators  ---
Dear José Padilha,

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 143862] Navigation bar cannot be navigated and other shortcuts not working

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143862

--- Comment #3 from QA Administrators  ---
Dear Elizabeth Gomez,

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 143862] Navigation bar cannot be navigated and other shortcuts not working

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143862

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 140610] LibreOffice's text file (odt) editor has a bug in its graphics, creating garbage as cursor is moved.

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140610

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 140610] LibreOffice's text file (odt) editor has a bug in its graphics, creating garbage as cursor is moved.

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140610

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

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 139285] Cut of table only selection not allowed depending on the distribution (also formatting of all cells disallowed)

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139285

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 139285] Cut of table only selection not allowed depending on the distribution (also formatting of all cells disallowed)

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139285

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 138854] Writer highlighting and editing mismatches the view. Text corruption and undo failure. (Skia Vulkan?)

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138854

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 138854] Writer highlighting and editing mismatches the view. Text corruption and undo failure. (Skia Vulkan?)

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138854

--- Comment #5 from QA Administrators  ---
Dear dev,

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 147799] Writer crashes when trying to open a document containing a button with keyboard shortcuts

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147799

--- Comment #8 from QA Administrators  ---
Dear Albrecht Müller,

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 147785] Error saving the document.

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147785

--- Comment #5 from QA Administrators  ---
Dear puigpuig,

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 147624] Screen is magnified to unusable degree

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147624

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

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 147678] Can not select initial characters in the formula bar

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147678

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

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 147368] LibreOffice Calc consuming 40+ GB of memory on Apple Silicon

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147368

--- Comment #3 from QA Administrators  ---
Dear Graham Mitchell,

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 147294] Crashing on selecting full screen & Printing produces blank sheets of paper

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147294

--- Comment #3 from QA Administrators  ---
Dear Murray Mitchell,

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 146189] Fonts installed cannot seen in any LO app: Comic Sans MS, Radios in Motion (

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146189

--- Comment #3 from QA Administrators  ---
Dear Bruce MacAlister,

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 140285] Reportbuilder - adding or removing fields in report causes Libreoffice to crash

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140285

--- Comment #26 from QA Administrators  ---
Dear jorojmaqui,

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 138149] Tools...Customize...Toolbars...Category...Macros causes crash if python script is used (comment 6)

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138149

--- Comment #12 from QA Administrators  ---
Dear b...@lanier.ws,

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 107718] Some of old Hangul not rendering faithfully in vertical layout

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107718

--- Comment #7 from Volga  ---
It's still happened on

Version: 7.4.0.3 (x86) / LibreOffice Community
Build ID: f85e47c08ddd19c015c0114a68350214f7066f5a
CPU threads: 4; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Raster; VCL: win
Locale: zh-CN (zh_CN); UI: zh-CN
Calc: threaded

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

[Libreoffice-bugs] [Bug 144865] Writer is unable to custom line spacing for specific DOCX file

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144865

--- Comment #3 from Volga  ---
It's still happened with

Version: 7.4.0.3 (x86) / LibreOffice Community
Build ID: f85e47c08ddd19c015c0114a68350214f7066f5a
CPU threads: 4; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Raster; VCL: win
Locale: zh-CN (zh_CN); UI: zh-CN
Calc: threaded

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

[Libreoffice-bugs] [Bug 107614] Chinese characters are wrongly aligned if 'vpal' feature enabled

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107614

--- Comment #17 from Volga  ---
The vertical text looks good now on LO 7.4

Version: 7.4.0.3 (x86) / LibreOffice Community
Build ID: f85e47c08ddd19c015c0114a68350214f7066f5a
CPU threads: 4; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Raster; VCL: win
Locale: zh-CN (zh_CN); UI: zh-CN
Calc: threaded

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

[Libreoffice-bugs] [Bug 141473] LO Writer failed to load .doc with Courier font from the Wayback Machine (regression)

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141473

--- Comment #17 from Volga  ---
The file looks good now on LO 7.4 on a Windows 7 machine

Version: 7.4.0.3 (x86) / LibreOffice Community
Build ID: f85e47c08ddd19c015c0114a68350214f7066f5a
CPU threads: 4; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Raster; VCL: win
Locale: zh-CN (zh_CN); UI: zh-CN
Calc: threaded

It would nice if anyone else can confirm from a different device.

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

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

2022-09-05 Thread Thorsten Behrens (via logerrit)
 sysui/desktop/icons/hicolor/1024x1024/apps/main.png|binary
 sysui/desktop/icons/hicolor/1024x1024/apps/main.svg|   98 ---
 sysui/desktop/icons/hicolor/1024x1024/apps/startcenter.png |binary
 sysui/desktop/icons/hicolor/1024x1024/apps/startcenter.svg |   98 ---
 sysui/desktop/icons/hicolor/128x128/apps/main.png  |binary
 sysui/desktop/icons/hicolor/128x128/apps/main.svg  |   98 ---
 sysui/desktop/icons/hicolor/128x128/apps/startcenter.png   |binary
 sysui/desktop/icons/hicolor/128x128/apps/startcenter.svg   |   98 ---
 sysui/desktop/icons/hicolor/16x16/apps/main.png|binary
 sysui/desktop/icons/hicolor/16x16/apps/main.svg|   98 ---
 sysui/desktop/icons/hicolor/16x16/apps/startcenter.png |binary
 sysui/desktop/icons/hicolor/16x16/apps/startcenter.svg |   98 ---
 sysui/desktop/icons/hicolor/22x22/apps/main.png|binary
 sysui/desktop/icons/hicolor/22x22/apps/main.svg|   98 ---
 sysui/desktop/icons/hicolor/22x22/apps/startcenter.png |binary
 sysui/desktop/icons/hicolor/22x22/apps/startcenter.svg |   98 ---
 sysui/desktop/icons/hicolor/24x24/apps/main.png|binary
 sysui/desktop/icons/hicolor/24x24/apps/main.svg|   98 ---
 sysui/desktop/icons/hicolor/24x24/apps/startcenter.png |binary
 sysui/desktop/icons/hicolor/24x24/apps/startcenter.svg |   98 ---
 sysui/desktop/icons/hicolor/256x256/apps/main.png  |binary
 sysui/desktop/icons/hicolor/256x256/apps/main.svg  |   98 ---
 sysui/desktop/icons/hicolor/256x256/apps/startcenter.png   |binary
 sysui/desktop/icons/hicolor/256x256/apps/startcenter.svg   |   98 ---
 sysui/desktop/icons/hicolor/32x32/apps/main.png|binary
 sysui/desktop/icons/hicolor/32x32/apps/main.svg|   98 ---
 sysui/desktop/icons/hicolor/32x32/apps/startcenter.png |binary
 sysui/desktop/icons/hicolor/32x32/apps/startcenter.svg |   98 ---
 sysui/desktop/icons/hicolor/48x48/apps/main.png|binary
 sysui/desktop/icons/hicolor/48x48/apps/main.svg|   98 ---
 sysui/desktop/icons/hicolor/48x48/apps/startcenter.png |binary
 sysui/desktop/icons/hicolor/48x48/apps/startcenter.svg |   98 ---
 sysui/desktop/icons/hicolor/512x512/apps/main.png  |binary
 sysui/desktop/icons/hicolor/512x512/apps/main.svg  |   98 ---
 sysui/desktop/icons/hicolor/512x512/apps/startcenter.png   |binary
 sysui/desktop/icons/hicolor/512x512/apps/startcenter.svg   |   98 ---
 sysui/desktop/icons/hicolor/64x64/apps/main.png|binary
 sysui/desktop/icons/hicolor/64x64/apps/main.svg|   98 ---
 sysui/desktop/icons/hicolor/64x64/apps/startcenter.png |binary
 sysui/desktop/icons/hicolor/64x64/apps/startcenter.svg |   98 ---
 sysui/desktop/icons/hicolor/scalable/apps/main.png |binary
 sysui/desktop/icons/hicolor/scalable/apps/main.svg |   84 --
 sysui/desktop/icons/hicolor/scalable/apps/startcenter.svg  |  418 -
 sysui/desktop/icons/locolor/16x16/apps/main.png|binary
 sysui/desktop/icons/locolor/16x16/apps/main.svg|   11 
 sysui/desktop/icons/locolor/16x16/apps/startcenter.png |binary
 sysui/desktop/icons/locolor/16x16/apps/startcenter.svg |   11 
 sysui/desktop/icons/locolor/32x32/apps/main.png|binary
 sysui/desktop/icons/locolor/32x32/apps/main.svg|   17 
 sysui/desktop/icons/locolor/32x32/apps/startcenter.png |binary
 sysui/desktop/icons/locolor/32x32/apps/startcenter.svg |   17 
 51 files changed, 220 insertions(+), 2298 deletions(-)

New commits:
commit 46e62c0ca25afcca1f4ef6fd0d73cc4513c84e84
Author: Thorsten Behrens 
AuthorDate: Tue Sep 6 04:48:04 2022 +0200
Commit: Thorsten Behrens 
CommitDate: Tue Sep 6 04:51:35 2022 +0200

[CIBO] Branding images for Linux desktop

Change-Id: I6938a44278632fee9b33fefd9252fb59aea87e3d

diff --git a/sysui/desktop/icons/hicolor/1024x1024/apps/main.png 
b/sysui/desktop/icons/hicolor/1024x1024/apps/main.png
index 7b2dac9bd50d..ceb4127fb92a 100644
Binary files a/sysui/desktop/icons/hicolor/1024x1024/apps/main.png and 
b/sysui/desktop/icons/hicolor/1024x1024/apps/main.png differ
diff --git a/sysui/desktop/icons/hicolor/1024x1024/apps/main.svg 
b/sysui/desktop/icons/hicolor/1024x1024/apps/main.svg
index 4b3feca3067f..d1a39f9d0f4b 100644
--- a/sysui/desktop/icons/hicolor/1024x1024/apps/main.svg
+++ b/sysui/desktop/icons/hicolor/1024x1024/apps/main.svg
@@ -1,90 +1,10 @@
-
-http://purl.org/dc/elements/1.1/;
-   xmlns:cc="http://creativecommons.org/ns#;
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
-   xmlns:svg="http://www.w3.org/2000/svg;
-   xmlns="http://www.w3.org/2000/svg;
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd;
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape;
-   height="1024"
-   preserveAspectRatio="xMidYMid"
-   viewBox="0 0 27093.333 27093.333"
-   width="1024"
-   version="1.1"
-   

[Libreoffice-bugs] [Bug 147576] SLIDESHOW: Shapes get stretched in slideshow

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147576

--- Comment #14 from Gerald Pfeifer  ---
(In reply to Armin Le Grand from comment #8)
> Thus my change is not a regression, but uncovers another error.

Bug #150402 was bisected to the same commit and appears quite different
from the outside? Maybe that's worth pursuing, Armin?

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

[Libreoffice-bugs] [Bug 150402] Font size renders much bigger in presentation mode than in edit mode

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150402

--- Comment #8 from Gerald Pfeifer  ---
Created attachment 182243
  --> https://bugs.documentfoundation.org/attachment.cgi?id=182243=edit
Simplified sample slide (ODP)

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

[Libreoffice-bugs] [Bug 150402] Font size renders much bigger in presentation mode than in edit mode

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150402

Gerald Pfeifer  changed:

   What|Removed |Added

Summary|FILEOPEN PPTX: font size|Font size renders much
   |renders much bigger in  |bigger in presentation mode
   |presentation mode than in   |than in edit mode
   |edit mode   |

--- Comment #7 from Gerald Pfeifer  ---
(In reply to Justin L from comment #6)
> Can you create a clean-room ODP example?

You are right; I managed to simplify and create a plain ODP file.
Verified that it's still a regression there, too.

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

[Libreoffice-bugs] [Bug 150814] Search Commands should also search commands _not_ on the menus

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150814

V Stuart Foote  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu
   Keywords||needsUXEval

--- Comment #1 from V Stuart Foote  ---
But how would that work for commands that have input and configuration
requirements?

As is, a command coming from menu UNO action gets a simple launch action--doing
much more than that search/locate wise would require way too much effort to
provide a launchable action.  

But still, it would be nice to show .uno: command names in the search.  As an
alternative to hunting for them in the Tools -> Customize dialog.

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

[Libreoffice-ux-advise] [Bug 150814] Search Commands should also search commands _not_ on the menus

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150814

V Stuart Foote  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu
   Keywords||needsUXEval

--- Comment #1 from V Stuart Foote  ---
But how would that work for commands that have input and configuration
requirements?

As is, a command coming from menu UNO action gets a simple launch action--doing
much more than that search/locate wise would require way too much effort to
provide a launchable action.  

But still, it would be nice to show .uno: command names in the search.  As an
alternative to hunting for them in the Tools -> Customize dialog.

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

[Libreoffice-ux-advise] [Bug 150811] Support flags in Search Commands: whole-word, case-sensitive, regexp

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150811

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu

--- Comment #1 from V Stuart Foote  ---
if the ICU regex libs can be put to use, then sure +1

Just don't think this needs to get too complicated--we're not interested in
replacing functions of the os/DE just something fast and efficient for finding
LO commands--and possibly look in the LibreOFfice MRU for content. Not much
beyond that though...

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

[Libreoffice-bugs] [Bug 150811] Support flags in Search Commands: whole-word, case-sensitive, regexp

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150811

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu

--- Comment #1 from V Stuart Foote  ---
if the ICU regex libs can be put to use, then sure +1

Just don't think this needs to get too complicated--we're not interested in
replacing functions of the os/DE just something fast and efficient for finding
LO commands--and possibly look in the LibreOFfice MRU for content. Not much
beyond that though...

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

[Libreoffice-ux-advise] [Bug 150810] Make the Search Commands dialog easier to understand

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150810

V Stuart Foote  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 150810] Make the Search Commands dialog easier to understand

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150810

V Stuart Foote  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 150810] Make the Search Commands dialog easier to understand

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150810

V Stuart Foote  changed:

   What|Removed |Added

   Severity|trivial |enhancement
 CC||vstuart.fo...@utsa.edu

--- Comment #1 from V Stuart Foote  ---
+1 to provide a little decoration to the dialog.

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

[Libreoffice-bugs] [Bug 150812] Rename the "Search Commands" menu item

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150812

V Stuart Foote  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu
   Severity|normal  |enhancement
   Keywords||needsUXEval

--- Comment #1 from V Stuart Foote  ---
Something for Italo and marketing... but as a feature it could use a snappy
name.

But it's quikee's baby--maybe he'd like to put something out there.

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

[Libreoffice-ux-advise] [Bug 150812] Rename the "Search Commands" menu item

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150812

V Stuart Foote  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu
   Severity|normal  |enhancement
   Keywords||needsUXEval

--- Comment #1 from V Stuart Foote  ---
Something for Italo and marketing... but as a feature it could use a snappy
name.

But it's quikee's baby--maybe he'd like to put something out there.

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

[Libreoffice-ux-advise] [Bug 150813] Search Commands should match against more than just command name

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150813

V Stuart Foote  changed:

   What|Removed |Added

   Severity|normal  |enhancement
   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu

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

[Libreoffice-bugs] [Bug 150813] Search Commands should match against more than just command name

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150813

V Stuart Foote  changed:

   What|Removed |Added

   Severity|normal  |enhancement
   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu

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

[Libreoffice-bugs] [Bug 149292] FILEOPEN DOCX First page header missing from single page document with first page header

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149292

--- Comment #3 from Justin L  ---
repro 7.5+

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

[Libreoffice-bugs] [Bug 150613] Format of chapter number changed by format of the last character on the line

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150613

Justin L  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 117994] Font size is too large in attached DOC in Word after roundtrip

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117994

Justin L  changed:

   What|Removed |Added

 Depends on|119079  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=119079
[Bug 119079] FILEOPEN DOC: character properties affecting CR, but shouldn't
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 119079] FILEOPEN DOC: character properties affecting CR, but shouldn't

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119079

Justin L  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117994
[Bug 117994] Font size is too large in attached DOC in Word after roundtrip
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 150613] Format of chapter number changed by format of the last character on the line

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150613
Bug 150613 depends on bug 117994, which changed state.

Bug 117994 Summary: Font size is too large in attached DOC in Word after 
roundtrip
https://bugs.documentfoundation.org/show_bug.cgi?id=117994

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

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

[Libreoffice-bugs] [Bug 118900] [META] Issues related to direct formatting in DOC (binary) bullet and numbering list

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118900
Bug 118900 depends on bug 117994, which changed state.

Bug 117994 Summary: Font size is too large in attached DOC in Word after 
roundtrip
https://bugs.documentfoundation.org/show_bug.cgi?id=117994

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

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

[Libreoffice-bugs] [Bug 117994] Font size is too large in attached DOC in Word after roundtrip

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117994

Justin L  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #18 from Justin L  ---
This reverted 5.1.4 commit 817c3b17fa57a7c4c4f80569bc00a21001fb6807

Another reason for reverting it is bug 150613
whose fix depends on getting this fixed first.

Making any export changes based on the formatting of numbering
is extremely dangerous, especially in this time period after LO 4.1
when a wonky patch made wild assumptions about what was best.
Well, that patch was reverted in LO 7.3 for bug 108518,
and apparently obsoletes the usefulness this patch provided...

This patch that I reverted caused some visible regressions
SEEN ONLY IN WORD which further confirms that we
still have lots of wrong assumptions in regards
to numbering formatting.

I'm happy to see it reverts without causing any unit test failures
even before I make any changes.

I confirmed that reverting the 4.1 patch with
7.3 commit 343d4d32f00053bd72cfe240125835fe25ce264f
was what allowed testTdf99474 to still pass.

Yeah - no backporting.

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

[Libreoffice-bugs] [Bug 147258] The style for placeholders is applied to the display text, when opening a docx file with libreoffice

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147258

Justin L  changed:

   What|Removed |Added

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

--- Comment #13 from Justin L  ---
In LO 7.3.0.2 this changed from red ABC to black HERUNTERLADEN
with commit b5c616d10bff3213840d4893d13b4493de71fa56
Author: Vasily Melenchuk on Wed Nov 24 14:50:12 2021 +0300
tdf#104823: support for sdt plain text fields

Please review whether this bug has been properly resolved.

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

[Libreoffice-bugs] [Bug 147021] Use std::size() instead of SAL_N_ELEMENTS() macro

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147021

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

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

tdf#147021 Use std::size() instead of SAL_N_ELEMENTS() macro

It will be available in 7.5.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

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

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

2022-09-05 Thread Radhey Parekh (via logerrit)
 libreofficekit/qa/gtktiledviewer/gtv-signal-handlers.cxx |   12 ++--
 oox/source/drawingml/textbodypropertiescontext.cxx   |2 +-
 oox/source/ole/olehelper.cxx |2 +-
 sc/qa/unit/ucalc_sort.cxx|8 
 4 files changed, 12 insertions(+), 12 deletions(-)

New commits:
commit feb8d07333544ff2206489b786b7af30744d014a
Author: Radhey Parekh 
AuthorDate: Mon Aug 22 18:13:15 2022 +0530
Commit: Hossein 
CommitDate: Tue Sep 6 02:26:36 2022 +0200

tdf#147021 Use std::size() instead of SAL_N_ELEMENTS() macro

Change-Id: Ic9009eda963f922fc4d2e75a5002026eda63a7aa
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138686
Tested-by: Jenkins
Reviewed-by: Hossein 

diff --git a/libreofficekit/qa/gtktiledviewer/gtv-signal-handlers.cxx 
b/libreofficekit/qa/gtktiledviewer/gtv-signal-handlers.cxx
index bb0e7edd390d..973e2095275a 100644
--- a/libreofficekit/qa/gtktiledviewer/gtv-signal-handlers.cxx
+++ b/libreofficekit/qa/gtktiledviewer/gtv-signal-handlers.cxx
@@ -377,11 +377,11 @@ void changeZoom( GtkWidget* pButton, gpointer /* pItem */ 
)
 
 if ( strcmp(sName, "zoom-in-symbolic") == 0)
 {
-for ( size_t i = 0; i < SAL_N_ELEMENTS( fZooms ); i++ )
+for ( const auto& i : fZooms )
 {
-if ( fCurrentZoom < fZooms[i] )
+if ( fCurrentZoom < i )
 {
-fZoom = fZooms[i];
+fZoom = i;
 break;
 }
 }
@@ -392,11 +392,11 @@ void changeZoom( GtkWidget* pButton, gpointer /* pItem */ 
)
 }
 else if ( strcmp(sName, "zoom-out-symbolic") == 0)
 {
-for ( size_t i = 0; i < SAL_N_ELEMENTS( fZooms ); i++ )
+for ( const auto& i : fZooms )
 {
-if ( fCurrentZoom > fZooms[i] )
+if ( fCurrentZoom > i )
 {
-fZoom = fZooms[i];
+fZoom = i;
 }
 }
 }
diff --git a/oox/source/drawingml/textbodypropertiescontext.cxx 
b/oox/source/drawingml/textbodypropertiescontext.cxx
index bf2feb132e0a..8b1c6db6a791 100644
--- a/oox/source/drawingml/textbodypropertiescontext.cxx
+++ b/oox/source/drawingml/textbodypropertiescontext.cxx
@@ -66,7 +66,7 @@ TextBodyPropertiesContext::TextBodyPropertiesContext( 
ContextHandler2Helper cons
 // ST_Coordinate
 OUString sValue;
 sal_Int32 aIns[] = { XML_lIns, XML_tIns, XML_rIns, XML_bIns };
-for( sal_Int32 i = 0; i < sal_Int32(SAL_N_ELEMENTS( aIns )); i++)
+for( sal_Int32 i = 0; i < sal_Int32(std::size( aIns )); i++)
 {
 sValue = rAttribs.getStringDefaulted( aIns[i] );
 if( !sValue.isEmpty() )
diff --git a/oox/source/ole/olehelper.cxx b/oox/source/ole/olehelper.cxx
index f3f73b52f5ed..d953cf17f9da 100644
--- a/oox/source/ole/olehelper.cxx
+++ b/oox/source/ole/olehelper.cxx
@@ -172,7 +172,7 @@ classIdToGUIDCNamePairMap::classIdToGUIDCNamePairMap()
  { AX_GUID_SCROLLBAR, "ScrollBar"},
 }
 };
-int const length = SAL_N_ELEMENTS( initialCntrlData );
+int const length = std::size( initialCntrlData );
 IdCntrlData const * pData = initialCntrlData;
 for ( int index = 0; index < length; ++index, ++pData )
 mnIdToGUIDCNamePairMap[ pData->nId ] = pData->aData;
diff --git a/sc/qa/unit/ucalc_sort.cxx b/sc/qa/unit/ucalc_sort.cxx
index 0f0218753403..21b734d1d37c 100644
--- a/sc/qa/unit/ucalc_sort.cxx
+++ b/sc/qa/unit/ucalc_sort.cxx
@@ -487,7 +487,7 @@ void TestSort::testSortWithFormulaRefs()
 m_pDoc->SetString( 0, i, 0, OUString::createFromAscii(aTextData[i-1]) 
);
 
 // Insert formulas in A1:A6 on the 2nd sheet.
-for (size_t i = 0; i < SAL_N_ELEMENTS(aFormulaData); ++i)
+for (size_t i = 0; i < std::size(aFormulaData); ++i)
 m_pDoc->SetString( 0, i, 1, OUString::createFromAscii(aFormulaData[i]) 
);
 
 // Sort data in A2:A8 on the 1st sheet. No column header.
@@ -501,7 +501,7 @@ void TestSort::testSortWithFormulaRefs()
 
 m_pDoc->Sort(0, aSortData, false, true, nullptr, nullptr);
 
-for (size_t i = 0; i < SAL_N_ELEMENTS(aResults); ++i)
+for (size_t i = 0; i < std::size(aResults); ++i)
 {
 OUString sResult = m_pDoc->GetString(0, i + 1, 0);
 CPPUNIT_ASSERT_EQUAL( OUString::createFromAscii( aResults[i] ), 
sResult );
@@ -602,7 +602,7 @@ void TestSort::testSortInFormulaGroup()
 104.0, 104.0
 };
 
-for ( SCROW i = 0; i < SCROW(SAL_N_ELEMENTS( aEntries )); ++i )
+for ( SCROW i = 0; i < SCROW(std::size( aEntries )); ++i )
 {
 double val = m_pDoc->GetValue( aEntries[i].nCol, aEntries[i].nRow, 0 );
 CPPUNIT_ASSERT_MESSAGE("Mis-matching value after sort.",
@@ -790,7 +790,7 @@ void TestSort::testSortRefUpdate()
 m_pDoc->SetString(ScAddress(0,0,0), "Header");
 
 double aValues[] = { 4.0, 36.0, 14.0, 29.0, 98.0, 78.0, 0.0, 99.0, 1.0 };
-size_t nCount = SAL_N_ELEMENTS(aValues);
+size_t 

[Libreoffice-bugs] [Bug 139902] [META] PPTX Image issues

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139902

Justin L  changed:

   What|Removed |Added

 Depends on||147704


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=147704
[Bug 147704] FILEOPEN PPTX: image appears vertically compressed (by a factor of
two)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 147704] FILEOPEN PPTX: image appears vertically compressed (by a factor of two)

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147704

Justin L  changed:

   What|Removed |Added

   Keywords||filter:pptx
 Blocks||139902


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 143352] [META] XLSX (OOXML) Opening files from external generators

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143352

Justin L  changed:

   What|Removed |Added

 Depends on||147955


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=147955
[Bug 147955] FILEOPEN XLSX with formulas (=number) displays as zero
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 147955] FILEOPEN XLSX with formulas (=number) displays as zero

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147955

Justin L  changed:

   What|Removed |Added

 Blocks||143352
   Keywords||filter:xlsx


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143352
[Bug 143352] [META] XLSX (OOXML) Opening files from external generators
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 150789] FILEOPEN PPTX: text in SmartArt vertically off (too low)

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150789

Aron Budea  changed:

   What|Removed |Added

 CC||aron.bu...@gmail.com
 Attachment #182218|application/vnd.ms-powerpoi |application/vnd.openxmlform
  mime type|nt  |ats-officedocument.presenta
   ||tionml.presentation

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

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

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87351

Justin L  changed:

   What|Removed |Added

 Depends on||145208


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=145208
[Bug 145208] FORMATTING Color Scale working in .xlsx but doesn't in .ods files
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145208] FORMATTING Color Scale working in .xlsx but doesn't in .ods files

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145208

Justin L  changed:

   What|Removed |Added

 Blocks||87351


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 104839] [META] Saved XLSX files that MS Excel can't open

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104839

Justin L  changed:

   What|Removed |Added

 Depends on||148942


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=148942
[Bug 148942] FILESAVE Calc corrupts external file references in XLSX files
making Excel unable to open
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148942] FILESAVE Calc corrupts external file references in XLSX files making Excel unable to open

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148942

Justin L  changed:

   What|Removed |Added

 Blocks||104839
   Keywords||filter:xlsx


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104839
[Bug 104839] [META] Saved XLSX files that MS Excel can't open
-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87351

Justin L  changed:

   What|Removed |Added

 Depends on||146663


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=146663
[Bug 146663] Applying paragraph styles resets Character direct formatting
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146663] Applying paragraph styles resets Character direct formatting

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146663

Justin L  changed:

   What|Removed |Added

Summary|DOCX: Applying paragraph|Applying paragraph styles
   |styles resets Character |resets Character direct
   |direct formatting   |formatting
 Blocks||87351


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 149188] Crash if I try to load a MicrosoftWorddocument.doc or .docx 2003 or 2007

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149188

--- Comment #2 from Justin L  ---
You might also want to delete your LO profile in case something got corrupted.

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

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

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87351

Justin L  changed:

   What|Removed |Added

 Depends on||149108


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=149108
[Bug 149108] Edit conditional formatting prompt/confirmation dialog's "No/Yes"
actions don't work as intended
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 149108] Edit conditional formatting prompt/confirmation dialog's "No/Yes" actions don't work as intended

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149108

Justin L  changed:

   What|Removed |Added

 Blocks||87351


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 149506] Slow start-up and opening of files since 7.3 release

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149506

--- Comment #10 from bunkem  ---
There is no proxy running so there is nothing to turn off in my case.

BTW, I updated to 7.4 and the slow start and slow file open is still
continuing.

I have also updated from macOS 10.14.6 to 12.5.1.  The slow start and slow open
happens on the new OS version also.

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

[Libreoffice-bugs] [Bug 149446] FILEOPEN DOCX: Text distribution across pages different compared to Word

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149446

Justin L  changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|NEW |RESOLVED

--- Comment #2 from Justin L  ---
(In reply to Dieter from comment #1)
> report would be useful if you could figure out what causes the difference.
Agreed. This bug report helps no one.

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

[Libreoffice-bugs] [Bug 108897] [META] XLSX (OOXML) bug tracker

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108897

Justin L  changed:

   What|Removed |Added

 Depends on||144991


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=144991
[Bug 144991] EDITING: The "Increase Indent" and "Decrease Indent" increment
step should be the width of 3 space chars (using the default style font) when
working in an xlsx document
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144991] EDITING: The "Increase Indent" and "Decrease Indent" increment step should be the width of 3 space chars (using the default style font) when working in an xlsx document

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144991

Justin L  changed:

   What|Removed |Added

 Blocks||108897
   Keywords||filter:xlsx


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108897
[Bug 108897] [META] XLSX (OOXML) bug tracker
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 150467] Disable ligature when using custom character spacing

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150467

خالد حسني  changed:

   What|Removed |Added

 CC||kha...@aliftype.com
 Resolution|--- |DUPLICATE
 Status|NEW |RESOLVED

--- Comment #8 from خالد حسني  ---
Already fixed in the upcoming 7.5.x

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

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

[Libreoffice-bugs] [Bug 149699] XLSX CALC FILTER - copying a selected row actually copying from a different sheet

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149699

Justin L  changed:

   What|Removed |Added

 OS|Windows (All)   |All
   Hardware|x86-64 (AMD64)  |All

--- Comment #2 from Justin L  ---
Yeah, we can't do anything at all without an example document. Can you create
something minimal from scratch?

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

[Libreoffice-bugs] [Bug 113782] [META] XLSX (OOXML) conditional formatting bug tracker

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113782

Justin L  changed:

   What|Removed |Added

 Depends on||149640


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=149640
[Bug 149640] wrong converting conditional formats while opening a XLSX-file
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 149640] wrong converting conditional formats while opening a XLSX-file

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149640

Justin L  changed:

   What|Removed |Added

 Blocks||113782
   Keywords||filter:xlsx


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113782
[Bug 113782] [META] XLSX (OOXML) conditional formatting bug tracker
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 106547] [META] OOXML SmartArt bug tracker

2022-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106547

Justin L  changed:

   What|Removed |Added

 Depends on||149840


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=149840
[Bug 149840] FILEOPEN DOCX SmartArt background shape has wrong size
-- 
You are receiving this mail because:
You are the assignee for the bug.

  1   2   3   4   5   6   7   8   >