[Libreoffice-bugs] [Bug 150298] the formatting options does not work on clicking

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150298

Aman Khan  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

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

[Libreoffice-bugs] [Bug 150298] the formatting options does not work on clicking

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150298

swati  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

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

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

2022-08-10 Thread Noel Grandin (via logerrit)
 sw/inc/crsrsh.hxx |3 ++-
 sw/inc/undobj.hxx |6 +++---
 sw/source/core/crsr/crsrsh.cxx|   10 ++
 sw/source/core/inc/UndoCore.hxx   |2 +-
 sw/source/core/undo/undobj.cxx|   20 ++--
 sw/source/core/undo/undobj1.cxx   |2 +-
 sw/source/uibase/docvw/edtwin.cxx |4 ++--
 sw/source/uibase/inc/wrtsh.hxx|3 ++-
 sw/source/uibase/wrtsh/wrtsh1.cxx |8 
 9 files changed, 31 insertions(+), 27 deletions(-)

New commits:
commit a51509ee69b730e8987c149ac19e0bedccded127
Author: Noel Grandin 
AuthorDate: Mon Aug 8 14:31:31 2022 +0200
Commit: Noel Grandin 
CommitDate: Thu Aug 11 07:58:11 2022 +0200

unique_ptr->optional in SwUndoSaveSection

Change-Id: I5fb07b35dbe3da55b6ca71537ac57dec9a5d0183
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138056
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/sw/inc/undobj.hxx b/sw/inc/undobj.hxx
index 51d406f84cb8..7d1d38759529 100644
--- a/sw/inc/undobj.hxx
+++ b/sw/inc/undobj.hxx
@@ -200,13 +200,13 @@ public:
 // Save a complete section in nodes-array.
 class SwUndoSaveSection : private SwUndoSaveContent
 {
-std::unique_ptr m_pMovedStart;
+std::optional m_oMovedStart;
 std::unique_ptr m_pRedlineSaveData;
 SwNodeOffset m_nMoveLen;   // Index into UndoNodes-Array.
 SwNodeOffset m_nStartPos;
 
 protected:
-SwNodeIndex* GetMvSttIdx() const { return m_pMovedStart.get(); }
+const SwNodeIndex* GetMvSttIdx() const { return m_oMovedStart ? 
&*m_oMovedStart : nullptr; }
 SwNodeOffset GetMvNodeCnt() const { return m_nMoveLen; }
 
 public:
@@ -309,7 +309,7 @@ protected:
 
 SwUndoFlyBase( SwFrameFormat* pFormat, SwUndoId nUndoId );
 
-SwNodeIndex* GetMvSttIdx() const { return 
SwUndoSaveSection::GetMvSttIdx(); }
+const SwNodeIndex* GetMvSttIdx() const { return 
SwUndoSaveSection::GetMvSttIdx(); }
 SwNodeOffset GetMvNodeCnt() const { return 
SwUndoSaveSection::GetMvNodeCnt(); }
 
 public:
diff --git a/sw/source/core/inc/UndoCore.hxx b/sw/source/core/inc/UndoCore.hxx
index c1c66b702a78..76d474adcc99 100644
--- a/sw/source/core/inc/UndoCore.hxx
+++ b/sw/source/core/inc/UndoCore.hxx
@@ -54,7 +54,7 @@ public:
 
 void RedlineToDoc( SwPaM const & rPam );
 
-SwNodeIndex* GetMvSttIdx() const
+const SwNodeIndex* GetMvSttIdx() const
 {
 return SwUndoSaveSection::GetMvSttIdx();
 }
diff --git a/sw/source/core/undo/undobj.cxx b/sw/source/core/undo/undobj.cxx
index b91eb0c6a0ac..3fc087bfc443 100644
--- a/sw/source/core/undo/undobj.cxx
+++ b/sw/source/core/undo/undobj.cxx
@@ -1212,14 +1212,14 @@ SwUndoSaveSection::SwUndoSaveSection()
 
 SwUndoSaveSection::~SwUndoSaveSection()
 {
-if (m_pMovedStart) // delete also the section from UndoNodes array
+if (m_oMovedStart) // delete also the section from UndoNodes array
 {
 // SaveSection saves the content in the PostIt section.
-SwNodes& rUNds = m_pMovedStart->GetNode().GetNodes();
+SwNodes& rUNds = m_oMovedStart->GetNode().GetNodes();
 // cid#1486004 Uncaught exception
-suppress_fun_call_w_exception(rUNds.Delete(*m_pMovedStart, 
m_nMoveLen));
+suppress_fun_call_w_exception(rUNds.Delete(*m_oMovedStart, 
m_nMoveLen));
 
-m_pMovedStart.reset();
+m_oMovedStart.reset();
 }
 m_pRedlineSaveData.reset();
 }
@@ -1272,9 +1272,9 @@ void SwUndoSaveSection::SaveSection(
 
 // Keep positions as SwContentIndex so that this section can be deleted in 
DTOR
 SwNodeOffset nEnd;
-m_pMovedStart.reset(new SwNodeIndex(rRange.aStart));
-MoveToUndoNds(aPam, m_pMovedStart.get(), );
-m_nMoveLen = nEnd - m_pMovedStart->GetIndex() + 1;
+m_oMovedStart = rRange.aStart;
+MoveToUndoNds(aPam, &*m_oMovedStart, );
+m_nMoveLen = nEnd - m_oMovedStart->GetIndex() + 1;
 }
 
 void SwUndoSaveSection::RestoreSection( SwDoc* pDoc, SwNodeIndex* pIdx,
@@ -1303,11 +1303,11 @@ void SwUndoSaveSection::RestoreSection(
 return;
 
 SwPosition aInsPos( rInsPos );
-SwNodeOffset nEnd = m_pMovedStart->GetIndex() + m_nMoveLen - 1;
-MoveFromUndoNds(*pDoc, m_pMovedStart->GetIndex(), aInsPos, , 
bForceCreateFrames);
+SwNodeOffset nEnd = m_oMovedStart->GetIndex() + m_nMoveLen - 1;
+MoveFromUndoNds(*pDoc, m_oMovedStart->GetIndex(), aInsPos, , 
bForceCreateFrames);
 
 // destroy indices again, content was deleted from UndoNodes array
-m_pMovedStart.reset();
+m_oMovedStart.reset();
 m_nMoveLen = SwNodeOffset(0);
 
 if( m_pRedlineSaveData )
diff --git a/sw/source/core/undo/undobj1.cxx b/sw/source/core/undo/undobj1.cxx
index 55b0f622d694..c8af10da32d6 100644
--- a/sw/source/core/undo/undobj1.cxx
+++ b/sw/source/core/undo/undobj1.cxx
@@ -444,7 +444,7 @@ SwRewriter SwUndoDelLayFormat::GetRewriter() const
 
 if (pDoc)
 {
-SwNodeIndex* pIdx = GetMvSttIdx();
+const SwNodeIndex* pIdx = GetMvSttIdx();
 if( 

[Libreoffice-bugs] [Bug 150348] New: Misalignment of the formatting of the tool bar

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150348

Bug ID: 150348
   Summary: Misalignment of the formatting of the tool bar
   Product: LibreOffice
   Version: 6.2 all versions
  Hardware: x86-64 (AMD64)
   URL: http://www.libreoffice.org/
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sadiyamhat...@gmail.com
CC: sadiyamhat...@gmail.com

Created attachment 181702
  --> https://bugs.documentfoundation.org/attachment.cgi?id=181702=edit
Misalignment of the formatting of the toolbar

1) Go to Libre office using the link https://www.libreoffice.org/
2)Download.
3)Open the Doc Module.
4)Alignment not proper in the formatting toolbar.

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

[Libreoffice-bugs] [Bug 150347] New: misalignment of the formatting toolbar

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150347

Bug ID: 150347
   Summary: misalignment of the formatting toolbar
   Product: LibreOffice
   Version: 4.0 all versions
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: faizan14052...@gmail.com

Created attachment 181701
  --> https://bugs.documentfoundation.org/attachment.cgi?id=181701=edit
misalignment of the formatting toolbar

1)go to https://www.libreoffice.org
2)Download
3)open the doc module
4)Alignment not proper in the formatting toolbar

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

[Libreoffice-bugs] [Bug 150344] New: Misalignment of the formatting tool bar

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150344

Bug ID: 150344
   Summary: Misalignment of the formatting tool bar
   Product: LibreOffice
   Version: 6.4 all versions
  Hardware: x86-64 (AMD64)
OS: macOS (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rumaisaso...@gmail.com

1.Go to https://www.libreoffice.org/
2.download.
3.open the doc module.
4.Alignment not proper in formatting tool bar.

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

[Libreoffice-bugs] [Bug 150345] New: Misalignment of the formatting tool bar

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150345

Bug ID: 150345
   Summary: Misalignment of the formatting tool bar
   Product: LibreOffice
   Version: 6.4 all versions
  Hardware: x86-64 (AMD64)
OS: macOS (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rumaisaso...@gmail.com

1.Go to https://www.libreoffice.org/
2.download.
3.open the doc module.
4.Alignment not proper in formatting tool bar.

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

[Libreoffice-bugs] [Bug 150346] New: Alignment issue in the the Layout Toolbar

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150346

Bug ID: 150346
   Summary: Alignment issue in the the Layout Toolbar
   Product: LibreOffice
   Version: 7.3.5.2 release
  Hardware: ARM
   URL: https://www.libreoffice.org/
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: pexedik...@offsala.com
CC: bluepen...@gmail.com, siddiquihamza...@gmail.com

Created attachment 181700
  --> https://bugs.documentfoundation.org/attachment.cgi?id=181700=edit
the clutter

Follow these steps to reproduce the bug
1. Go to The https://www.libreoffice.org/ 
2. Download LibreOffice
3. Open the doc Module
4. Alignment not proper in the formatting tooolbar

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

[Libreoffice-bugs] [Bug 150343] New: bohot sus app ha

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150343

Bug ID: 150343
   Summary: bohot sus app ha
   Product: LibreOffice
   Version: 6.4 all versions
  Hardware: x86-64 (AMD64)
   URL: https://libreoffice.org/
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: siddiquihamza...@gmail.com
CC: bluepen...@gmail.com

Created attachment 181699
  --> https://bugs.documentfoundation.org/attachment.cgi?id=181699=edit
bohot sus app ha

1.go to Libre office : https://libreoffice.org/
2.download
3.open the doc module
4.alignment not proper in formatting toolbar

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

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-2021' - 22 commits - fpicker/source hwpfilter/source sc/inc sc/source shell/source svtools/source sw/source vcl/source writerfilter/source

2022-08-10 Thread Caolán McNamara (via logerrit)
 fpicker/source/office/fileview.cxx   |   10 +
 hwpfilter/source/drawing.h   |   13 +-
 hwpfilter/source/hcode.cxx   |2 
 hwpfilter/source/htags.cxx   |   26 ++---
 hwpfilter/source/hwpfile.cxx |7 +
 hwpfilter/source/hwpfile.h   |6 +
 hwpfilter/source/hwpread.cxx |   21 ++--
 hwpfilter/source/hwpreader.cxx   |   78 ---
 sc/inc/documentimport.hxx|2 
 sc/inc/table.hxx |2 
 sc/source/core/data/document.cxx |   12 +-
 sc/source/core/data/documentimport.cxx   |   14 ++
 sc/source/core/data/table2.cxx   |   15 ++
 sc/source/filter/lotus/op.cxx|   11 --
 sc/source/filter/oox/sheetdatabuffer.cxx |   16 ++-
 shell/source/win32/SysShExec.cxx |8 +
 svtools/source/dialogs/ServerDetailsControls.cxx |2 
 sw/source/filter/ww8/wrtw8sty.cxx|   28 ++---
 sw/source/filter/ww8/wrtww8.hxx  |4 
 vcl/source/fontsubset/sft.cxx|   12 +-
 vcl/source/fontsubset/ttcr.cxx   |   35 +-
 vcl/source/outdev/hatch.cxx  |7 +
 writerfilter/source/dmapper/DomainMapperTableManager.cxx |2 
 23 files changed, 208 insertions(+), 125 deletions(-)

New commits:
commit bc8b0f5a6dcb5758def46da50d5c1c7110fac3ac
Author: Caolán McNamara 
AuthorDate: Tue Mar 1 10:18:51 2022 +
Commit: Aron Budea 
CommitDate: Thu Aug 11 05:49:42 2022 +0200

ofz: don't register style if hbox load failed

Change-Id: I4d9d5d76f0c2385871003720e933ed1926f66c70
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130771
Reviewed-by: Michael Stahl 
Tested-by: Jenkins
(cherry picked from commit 3ac009bfec614ece98313c6444b4c1183ff14954)

diff --git a/hwpfilter/source/hwpread.cxx b/hwpfilter/source/hwpread.cxx
index bdb3855f437b..b90e1b635818 100644
--- a/hwpfilter/source/hwpread.cxx
+++ b/hwpfilter/source/hwpread.cxx
@@ -234,7 +234,6 @@ bool TxtBox::Read(HWPFile & hwpf)
 hwpf.Read2b(, 1);
 hwpf.Read2b(_ch, 1);
 hwpf.Read2b(style.margin, 12);
-hwpf.AddFBoxStyle();
 hwpf.Read2b(_xs, 1);
 hwpf.Read2b(_ys, 1);
 hwpf.Read2b(_xs, 1);
@@ -362,7 +361,10 @@ bool TxtBox::Read(HWPFile & hwpf)
 else
 m_pTable = nullptr;
 
-return !hwpf.State();
+bSuccess = !hwpf.State();
+if (bSuccess)
+hwpf.AddFBoxStyle();
+return bSuccess;
 }
 
 namespace
@@ -510,12 +512,14 @@ bool Picture::Read(HWPFile & hwpf)
 style.boxtype = 'G';
 else
 style.boxtype = 'D';
-hwpf.AddFBoxStyle();
 
 // caption
 hwpf.ReadParaList(caption);
 
-return !hwpf.State();
+bool bSuccess = !hwpf.State();
+if (bSuccess)
+hwpf.AddFBoxStyle();
+return bSuccess;
 }
 
 // line(15)
@@ -553,7 +557,6 @@ bool Line::Read(HWPFile & hwpf)
 hwpf.Read2b(, 1);
 hwpf.Read2b(_ch, 1);
 hwpf.Read2b(style.margin, 12);
-hwpf.AddFBoxStyle();
 hwpf.Read2b(_xs, 1);
 hwpf.Read2b(_ys, 1);
 hwpf.Read2b(_xs, 1);
@@ -582,7 +585,10 @@ bool Line::Read(HWPFile & hwpf)
 hwpf.Read2b(, 1);
 style.xpos = width;
 
-return !hwpf.State();
+bool bSuccess = !hwpf.State();
+if (bSuccess)
+hwpf.AddFBoxStyle();
+return bSuccess;
 }
 
 // hidden(15)
commit c144a726f1500ecf53adc7e9ef1aab926cbeafec
Author: Caolán McNamara 
AuthorDate: Tue Mar 1 09:35:34 2022 +
Commit: Aron Budea 
CommitDate: Thu Aug 11 05:49:05 2022 +0200

ofz: glyph data must be at least 10 bytes long to be useful

Change-Id: I312c33c598013feced15c6f2dbcc66e493b703e6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130767
Reviewed-by: Michael Stahl 
Tested-by: Jenkins
(cherry picked from commit b228045cf3fb50128fd40a8f26376443ad22f874)

diff --git a/vcl/source/fontsubset/ttcr.cxx b/vcl/source/fontsubset/ttcr.cxx
index d4ff5f413ede..86dc02206e92 100644
--- a/vcl/source/fontsubset/ttcr.cxx
+++ b/vcl/source/fontsubset/ttcr.cxx
@@ -1270,7 +1270,7 @@ static void ProcessTables(TrueTypeCreator *tt)
 
 /* printf("IDs: %d %d.\n", gd->glyphID, gd->newID); */
 
-if (gd->nbytes != 0) {
+if (gd->nbytes >= 10) {
 sal_Int16 z = GetInt16(gd->ptr, 2);
 if (z < xMin) xMin = z;
 
commit cf7e029434be7f546679581d9c75110c6d4ebece
Author: Caolán McNamara 
AuthorDate: Mon Feb 28 21:12:07 2022 +
Commit: Aron Budea 
CommitDate: Thu Aug 11 05:48:34 2022 +0200

ofz: measure maximum possible contours

Change-Id: Ie039abd835fef06514edde12b99e17360f5481a5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130774
  

[Libreoffice-bugs] [Bug 150342] New: Misalignment of the following toolbar

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150342

Bug ID: 150342
   Summary: Misalignment of the following toolbar
   Product: LibreOffice
   Version: 6.4 all versions
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rumaisaso...@gmail.com

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

[Libreoffice-bugs] [Bug 150341] New: accha nai chalta ha

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150341

Bug ID: 150341
   Summary: accha nai chalta ha
   Product: LibreOffice
   Version: 6.4 all versions
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: siddiquihamza...@gmail.com
CC: bluepen...@gmail.com

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

[Libreoffice-bugs] [Bug 150340] New: too much clutter

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150340

Bug ID: 150340
   Summary: too much clutter
   Product: QA Tools
   Version: unspecified
  Hardware: x86-64 (AMD64)
   URL: http://apple.com
OS: Windows (All)
Status: UNCONFIRMED
  Keywords: patch
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: faizkhan29...@gmail.com

Created attachment 181698
  --> https://bugs.documentfoundation.org/attachment.cgi?id=181698=edit
the patch

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

[Libreoffice-bugs] [Bug 140185] XLSX file doesn't save border padding for styles

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140185

--- Comment #14 from BogdanB  ---
This are the comments from the dbg version when reproducing the bug

warn:stoc:4055:4055:stoc/source/javaloader/javaloader.cxx:381: getJavaVM
returned null
warn:sfx.dialog:4055:4055:sfx2/source/dialog/filtergrouping.cxx:359: already
have an element for WordPerfect
warn:sfx.dialog:4055:4055:sfx2/source/dialog/filtergrouping.cxx:359: already
have an element for writerweb8_writer_template
warn:sfx.dialog:4055:4055:sfx2/source/dialog/filtergrouping.cxx:359: already
have an element for writerglobal8
warn:xmloff:4055:4055:sax/source/fastparser/fastparser.cxx:1324: unknown
element xsi:type http://www.w3.org/2001/XMLSchema-instance
warn:xmloff:4055:4055:sax/source/fastparser/fastparser.cxx:1324: unknown
element xsi:type http://www.w3.org/2001/XMLSchema-instance
warn:svx:4055:4055:svx/source/unodraw/unoshape.cxx:1795:
DBG_UNHANDLED_EXCEPTION in setPropertyValues exception:
com.sun.star.beans.UnknownPropertyException message: "GraphicColorMode at
/home/tdf/lode/jenkins/workspace/lo_gerrit/tb/src_master/svx/source/unodraw/unoshape.cxx:1599"
warn:sfx.control:4055:4055:sfx2/source/control/dispatch.cxx:1206: Childwindow
slot missing: 25917
warn:sfx.control:4055:4055:sfx2/source/control/dispatch.cxx:1206: Childwindow
slot missing: 26189
warn:sfx.control:4055:4055:sfx2/source/control/dispatch.cxx:1206: Childwindow
slot missing: 26190
warn:sfx.control:4055:4055:sfx2/source/control/dispatch.cxx:1206: Childwindow
slot missing: 25917
warn:sfx.control:4055:4055:sfx2/source/control/dispatch.cxx:1206: Childwindow
slot missing: 26189
warn:sfx.control:4055:4055:sfx2/source/control/dispatch.cxx:1206: Childwindow
slot missing: 26190
warn:legacy.tools:4055:4055:svx/source/form/fmvwimp.cxx:437:
FmXFormView::~FmXFormView: Window list not empty!
warn:sfx.appl:4055:4055:sfx2/source/appl/appserv.cxx:311: no parent for dialogs
warn:vcl.unx.print:4055:4055:vcl/unx/generic/printer/ppdparser.cxx:845: no
Resolution in /tmp/00fd762f8d291
warn:svtools.misc:4055:4055:svtools/source/misc/langtab.cxx:240: Language:
0x7e0 with unknown name, so returning lang-tag of: Spanish (Equatorial Guinea)
{es-GQ}
warn:svtools.misc:4055:4055:svtools/source/misc/langtab.cxx:240: Language:
0x7e1 with unknown name, so returning lang-tag of: Spanish (Philippines)
{es-PH}
warn:svtools.misc:4055:4055:svtools/source/misc/langtab.cxx:240: Language:
0x540a with unknown name, so returning lang-tag of: Spanish (United States)
{es-US}
warn:svtools.misc:4055:4055:svtools/source/misc/langtab.cxx:240: Language:
0xe40a with unknown name, so returning lang-tag of: Spanish {es}
warn:svtools.misc:4055:4055:svtools/source/misc/langtab.cxx:240: Language:
0x540a with unknown name, so returning lang-tag of: Spanish (United States)
{es-US}
warn:svtools.misc:4055:4055:svtools/source/misc/langtab.cxx:240: Language:
0xe40a with unknown name, so returning lang-tag of: Spanish {es}
warn:svtools.misc:4055:4055:svtools/source/misc/langtab.cxx:240: Language:
0x540a with unknown name, so returning lang-tag of: Spanish (United States)
{es-US}
warn:svtools.misc:4055:4055:svtools/source/misc/langtab.cxx:240: Language:
0xe40a with unknown name, so returning lang-tag of: Spanish {es}
warn:svl.items:4055:4055:svl/source/items/itempool.cxx:442: old secondary pool:
EditEngineItemPool of pool: XOutdevItemPool must be empty.
warn:svl.items:4055:4055:svl/source/items/itempool.cxx:442: old secondary pool:
EditEngineItemPool of pool: XOutdevItemPool must be empty.
warn:svl.items:4055:4055:svl/source/items/itempool.cxx:442: old secondary pool:
EditEngineItemPool of pool: XOutdevItemPool must be empty.
warn:svl.items:4055:4055:svl/source/items/itempool.cxx:442: old secondary pool:
EditEngineItemPool of pool: XOutdevItemPool must be empty.
warn:legacy.tools:4055:4055:svx/source/form/fmvwimp.cxx:437:
FmXFormView::~FmXFormView: Window list not empty!
warn:legacy.tools:4055:4055:svx/source/form/fmvwimp.cxx:437:
FmXFormView::~FmXFormView: Window list not empty!
warn:xmloff:4055:4055:sax/source/fastparser/fastparser.cxx:1324: unknown
element xsi:type http://www.w3.org/2001/XMLSchema-instance
warn:xmloff:4055:4055:sax/source/fastparser/fastparser.cxx:1324: unknown
element xsi:type http://www.w3.org/2001/XMLSchema-instance
warn:svx:4055:4055:svx/source/unodraw/unoshape.cxx:1795:
DBG_UNHANDLED_EXCEPTION in setPropertyValues exception:
com.sun.star.beans.UnknownPropertyException message: "GraphicColorMode at
/home/tdf/lode/jenkins/workspace/lo_gerrit/tb/src_master/svx/source/unodraw/unoshape.cxx:1599"
warn:legacy.tools:4055:4055:svx/source/form/fmvwimp.cxx:437:
FmXFormView::~FmXFormView: Window list not empty!
warn:legacy.osl:4055:4055:sc/source/ui/view/tabvwshh.cxx:232: no accessibility
broadcaster?
warn:legacy.osl:4055:4055:sc/source/ui/view/tabvwshh.cxx:232: no accessibility
broadcaster?
warn:legacy.osl:4055:4055:sc/source/ui/view/tabvwshh.cxx:232: no accessibility
broadcaster?

[Libreoffice-bugs] [Bug 135084] Crash on undo ucrtbase abort

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135084

--- Comment #13 from BogdanB  ---
I'm using
Version: 7.5.0.0.alpha0+ / LibreOffice Community
Build ID: 641d92a73e5b3d0e062e16ed4b42236e1a4796a5
CPU threads: 16; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 135084] Crash on undo ucrtbase abort

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135084

--- Comment #12 from BogdanB  ---
I get this messages, if this help

warn:stoc:2888:2888:stoc/source/javaloader/javaloader.cxx:381: getJavaVM
returned null
warn:sfx.dialog:2888:2888:sfx2/source/dialog/filtergrouping.cxx:359: already
have an element for WordPerfect
warn:sfx.dialog:2888:2888:sfx2/source/dialog/filtergrouping.cxx:359: already
have an element for writerweb8_writer_template
warn:sfx.dialog:2888:2888:sfx2/source/dialog/filtergrouping.cxx:359: already
have an element for writerglobal8
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break
warn:xmloff:2888:2888:xmloff/source/draw/shapeimport.cxx:346: unknown element
urn:oasis:names:tc:opendocument:xmlns:text:1.0 text:soft-page-break

[Libreoffice-bugs] [Bug 150338] VARCHAR concatenation error with embedded Firebird Base LO version 7.3.5 (Mac OS 'Catalina')

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150338

frofa  changed:

   What|Removed |Added

 CC||fro...@yahoo.com.au

--- Comment #1 from frofa  ---
Created attachment 181697
  --> https://bugs.documentfoundation.org/attachment.cgi?id=181697=edit
Sample Firebird Base file to show field concatination problem

To demonstrate the problem, this Base file has one query to concatenate
LASTNAME and FIRSTNAME columns

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

[Libreoffice-bugs] [Bug 135084] Crash on undo ucrtbase abort

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135084

raal  changed:

   What|Removed |Added

   Keywords||wantBacktrace

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

[Libreoffice-bugs] [Bug 150339] New: Wrong type for text color: Property not convertible

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150339

Bug ID: 150339
   Summary: Wrong type for text color: Property not convertible
   Product: LibreOffice
   Version: 7.5.0.0 alpha0+ Master
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: buzea.bog...@libreoffice.org

Description:
I am using a dbg version of LIbreOffice

Open Writer, write any text, select and apply any text color: I get the
message: 
"warn:legacy.osl:9348:9348:svl/source/items/custritm.cxx:70:
CntUnencodedStringItem::PutValue(): Wrong type
warn:sfx:9348:9348:sfx2/source/appl/appuno.cxx:310: Property not convertible:
Color"

Steps to Reproduce:
1.See description


Actual Results:
warning

Expected Results:
No warning, property to be convertible


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Version: 7.5.0.0.alpha0+ / LibreOffice Community
Build ID: 641d92a73e5b3d0e062e16ed4b42236e1a4796a5
CPU threads: 16; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 150331] EDITING: AutoCorrect without "Show as tip" always fills in rest of word regardless of next key stroke

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150331

BogdanB  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC||buzea.bog...@libreoffice.or
   ||g

--- Comment #1 from BogdanB  ---
I confirm it is working strange

"Sundayday Sunday sundayd"

Version: 7.4.0.2 / LibreOffice Community
Build ID: 1512ce97d7ed39dce3121f7e15651fd8895f950e
CPU threads: 16; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 150338] New: VARCHAR concatenation error with embedded Firebird Base LO version 7.3.5 (Mac OS 'Catalina')

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150338

Bug ID: 150338
   Summary: VARCHAR concatenation error with embedded Firebird
Base LO version 7.3.5 (Mac OS 'Catalina')
   Product: LibreOffice
   Version: 7.3.5.2 release
  Hardware: Other
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fro...@yahoo.com.au

Description:
I am using Base on Mac OS  'Catalina' version 10.15.7. Having just upgraded my
local LibreOffice instal from version 7.3.3 to v. 7.3.5 I find that one of my
Base FORMS with a LIST BOX throws an error when the form is opened. Basically,
the listbox allows a client name to be selected using a drop-down and the SQL
code for the listbox concatenates the client's last and first names and the
client ID (integer) is written to a filter table (to show that client's records
in the form.

The listbox code is:
SELECT COALESCE ( "lastname", '' ) || ', ' || COALESCE ( "firstname", '' ),
"id_cl" FROM "clients" ORDER BY "lastname" ASC

The above code worked fine with Base in LO 7.3.3 but throws the ERROR message
below with LO 7.3.5...

firebird_sdbc error:
*arithmetic exception, numeric overflow, or string truncation
*string right truncation
*expected length 34, actual 69
caused by
'isc_dsql_fetch'

The last name and first name columns of the clients table are both VCHAR(16).
If I change them both to VCHAR(50) the error changes also to..
*expected length 102, actual 205

So mathematically the 'actual' value in the error message above seems to be
twice expected length+1

 which does seem little strange!

NOTE: The same error above occurs when I use the above-quoted query code just
as a normal query in the Base QUERIES list (i.e. not as a list-box code).

I have also tried simple concatenation of the last name and first name fields
which produce the same error.

When I revert back to LO v.7.3.3, the above problem goes away and the query
gives the correct concatenation of LASTNAME and FIRSTNAME. I will attach a
sample Firebird embedded Base file to demonstrate the problem.

I have posted a description of this problem on ask.libreoffice.org - see LINK
BELOW

https://ask.libreoffice.org/t/form-listbox-firebird-sql-error-base-7-3-5/80265

and tried all the things suggested there so far. The only thing that works
is reverting back to the earlier version of LibreOffice. So this does seem like
a bug only affecting the Mac version and versions of LO Base after version
7.3.3.

Steps to Reproduce:
1. Run query to concatenate lastname and firstname (for listbox) - see above in
my DESCRIPTION of the problem.

Actual Results:
Error message (see above in my description)

Expected Results:
Concatenation of lastname and firstname (with comma separation)


Reproducible: Always


User Profile Reset: No



Additional Info:
I tried all suggestions given by 'Ask LibreOffice' helpers and nothing worked.
I believe the problem might also be present in LO Bose 7.3.4.2 (only tested
once and didn't take notes).

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

[Libreoffice-bugs] [Bug 150155] Strange handling of text in "Styles Pane" LO Writer 7.3.5 on Mac Silicon

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150155

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 149921] WebDAV TLS not working with self signed CA and host cert

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149921

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 148571] Spell check multiple language at the same time

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148571

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 147003] ~20s delay on startup of LO 7.2.3.2 x64 with regular user on win10

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147003

--- Comment #2 from QA Administrators  ---
Dear F1 Outsourcing,

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 150165] (Visual) Aids for Impress

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150165

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 150337] LibreOffice Impress autostarts presentation I want to edit, closes when I stop slide show

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150337

Andrew Pavlin  changed:

   What|Removed |Added

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

--- Comment #2 from Andrew Pavlin  ---
Never mind. I just noticed I named the file .pps (auto-start) instead of .ppt.

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

[Libreoffice-bugs] [Bug 150337] LibreOffice Impress autostarts presentation I want to edit, closes when I stop slide show

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150337

--- Comment #1 from Andrew Pavlin  ---
Created attachment 181696
  --> https://bugs.documentfoundation.org/attachment.cgi?id=181696=edit
document demonstrating the problem

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

[Libreoffice-bugs] [Bug 150337] New: LibreOffice Impress autostarts presentation I want to edit, closes when I stop slide show

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150337

Bug ID: 150337
   Summary: LibreOffice Impress autostarts presentation I want to
edit, closes when I stop slide show
   Product: LibreOffice
   Version: 7.1.8.1 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: andrew...@hotmail.com

Description:
I successfully created a simple slide show (all text, no kiosk mode) in Impress
and saved it in PowerPoint format (.pps). Re-opening the file to edit it some
(either Open Recent Document, plain File->Open, or specifying the file name on
the command line) automatically starts running the slide show. Attempting to
stop the slide show causes Impress to exit with a Unix status code of 0.

How do I re-open a slide show saved in PowerPoint format just to edit it?

Steps to Reproduce:
1. Save a slide show in .pps format. Exit Impress.
2. Re-start Impress.
3. Open the file (it will start running the slide show whether you want it or
not).
4. Hit Escape key to stop the presentation.

Actual Results:
I briefly see the document editing window for Impress, then the application
exits and the window disappears.

Expected Results:
1. It shouldn't have auto-started the slide show.
2. When I hit Escape to stop the presentation, it should have gone back to the
editing window and allowed me to further edit the document.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
The slide show was created on Linux Mint 19 with LibreOffice 6.0.7.
Copying the document to a Fedora Core 34 system with LibreOffice 7.1.8.1
produces exactly the same problem trying to edit the file. Safe mode (and
switch back to factory defaults) does not resolve the problem.

Version: 7.1.8.1
Build ID: 10(Build:1)
CPU threads: 4; OS: Linux 5.17; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 150333] Text labels in About dialog became to have different size

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150333

--- Comment #6 from V Stuart Foote  ---
Created attachment 181695
  --> https://bugs.documentfoundation.org/attachment.cgi?id=181695=edit
Help -> About dialog with new font size changes, seem to have some padding
issues

@Adolfo, the size 110% / 90% seems fine in this Windows build. But the total
About dialog size and the padding seem a bit off.  Clip of recent master,
7.4.02 and a 7.3.5.2 install on the same system.

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

[Libreoffice-bugs] [Bug 150314] TABLAS DINAMICAS

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150314

m.a.riosv  changed:

   What|Removed |Added

   Severity|normal  |enhancement

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

[Libreoffice-bugs] [Bug 150320] Calc: Link converted to text on copy of cell

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150320

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #4 from m.a.riosv  ---
Can't reproduce, I never have seen such behavior.
Version: 7.4.0.2 (x64) / LibreOffice Community
Build ID: 1512ce97d7ed39dce3121f7e15651fd8895f950e
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US
Calc: CL

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 149824] Wrong multi-level numbering in RTL mode

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149824

--- Comment #8 from Eyal Rozenberg  ---
Hello Amin,

Unfortunately, your opening comment and your attachment "current and expected
situation" - contradict.

In your opening comment, you've listed the "expected results" to the ordering
of numbers that in your attachment is described as inappropriate/undesirable.
You've also stated that's not what you get in LO.

Well, I'll assume that you mixed up "expected" and "actual" in the first
comment.

Assuming that is the case, then - this is NOTABUG.

Numbers, in both Arabic and Hebrew (and most probably Farsi) are written from
left-to-write, starting with the most significant decimal digit. They are
_mostly_ read that way - with the exception that, in Arabic, the last two
digits are read in reverse order. Anyway, 502 would be written, in Arabic with
hindi digits as ٥٠٢ - both in an RTL and an LTR paragraph. Also, when writing a
fractional number, the integral part is to the left of the fractional part.

It thus makes sense for Number-Dot-Number paragraph numbering, in Arabic as
well as in English, to have the first number on the left, and the second number
on the right. Hundreds of Thousands of Arabic speakers use LibreOffice, and -
to my knowledge - have not complained about this being the order.

As for your ODT attachment #181202 - when I open it, I see Arabic, not Hindi, 
numerals in both sequences of paragraphs (i.e. 123, not ١٢٣). You should
probably choose an explicit number sequence rather than sticking to the
default.

So, please clarify and update the attachments if necessary.

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

[Libreoffice-bugs] [Bug 140077] Fatal Error after insert a new line by Enter (std::bad_array_new_length) ( steps in comment 15 )

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140077

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #22 from Gabor Kelemen (allotropia)  ---
Verified in

Version: 7.5.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 4e2ce2a460458f17ee4360c45a2da2fc4b4d753e
CPU threads: 14; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: en-US (hu_HU); UI: en-US
Calc: threaded

following comment 15 steps Writer no longer crashes.

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

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-2021' - 9 commits - hwpfilter/source lotuswordpro/source

2022-08-10 Thread Caolán McNamara (via logerrit)
 hwpfilter/source/hwpreader.cxx|   12 +-
 lotuswordpro/source/filter/lwpdrawobj.cxx |  123 --
 2 files changed, 73 insertions(+), 62 deletions(-)

New commits:
commit 19e2c6c742b9a66dcc86f6344cedda667f847733
Author: Caolán McNamara 
AuthorDate: Sun Mar 13 10:48:47 2022 +
Commit: Aron Budea 
CommitDate: Wed Aug 10 22:48:21 2022 +0200

ofz#45524 string is presumed to be at least length 1

Change-Id: If8a86e399109b414cf53f6e2bffdd3c7c6faa490
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131468
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
(cherry picked from commit eca150aeb9254a3c04d15be5a6278c2c65bf3fb0)

diff --git a/lotuswordpro/source/filter/lwpdrawobj.cxx 
b/lotuswordpro/source/filter/lwpdrawobj.cxx
index 24d7c6530615..5b367326caec 100644
--- a/lotuswordpro/source/filter/lwpdrawobj.cxx
+++ b/lotuswordpro/source/filter/lwpdrawobj.cxx
@@ -1253,7 +1253,11 @@ void LwpDrawTextArt::Read()
 - 
(m_aTextArtRec.aPath[1].n*3 + 1)*4;
 
 
-if (!m_pStream->good() || m_aTextArtRec.nTextLen > 
m_pStream->remainingSize())
+if (!m_pStream->good())
+throw BadRead();
+if (m_aTextArtRec.nTextLen > m_pStream->remainingSize())
+throw BadRead();
+if (m_aTextArtRec.nTextLen < 1)
 throw BadRead();
 
 m_aTextArtRec.pTextString = new sal_uInt8 [m_aTextArtRec.nTextLen];
commit 735be88f5f4e30d19de4b7d9b2ada4115bb2ebc5
Author: zhutyra 
AuthorDate: Tue Feb 1 13:54:55 2022 +
Commit: Aron Budea 
CommitDate: Wed Aug 10 22:48:06 2022 +0200

read of width/height uses wrong record size

this initially went wrong at:

commit b4fb7a437bb0ce987702b12008737756623618ac
Date:   Mon May 23 21:38:40 2011 +0100

fix up some more endian

LIBREOFFICE-SBQ5TJRS

Change-Id: Ie418f530f55288351f73f3c0cbab9ac48e6b6964
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129259
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
(cherry picked from commit 6694e3ea9c2f05a20245d94c5c1eda955cb3aacc)

diff --git a/lotuswordpro/source/filter/lwpdrawobj.cxx 
b/lotuswordpro/source/filter/lwpdrawobj.cxx
index d4d4b7ff19f9..24d7c6530615 100644
--- a/lotuswordpro/source/filter/lwpdrawobj.cxx
+++ b/lotuswordpro/source/filter/lwpdrawobj.cxx
@@ -1392,8 +1392,12 @@ void LwpDrawBitmap::Read()
 
 if (aInfoHeader2.nHeaderLen == sizeof(BmpInfoHeader))
 {
-m_pStream->ReadUInt32( aInfoHeader2.nWidth );
-m_pStream->ReadUInt32( aInfoHeader2.nHeight );
+sal_uInt16 nTmp;
+
+m_pStream->ReadUInt16( nTmp );
+aInfoHeader2.nWidth = nTmp;
+m_pStream->ReadUInt16( nTmp );
+aInfoHeader2.nHeight = nTmp;
 m_pStream->ReadUInt16( aInfoHeader2.nPlanes );
 m_pStream->ReadUInt16( aInfoHeader2.nBitCount );
 
commit e607dcc3074a908e19b315f176f1c8eb80de1e42
Author: zhutyra 
AuthorDate: Tue Feb 1 14:07:26 2022 +
Commit: Aron Budea 
CommitDate: Wed Aug 10 22:46:36 2022 +0200

ensure bounds checking

LIBREOFFICE-SBQ5TJRS

Change-Id: I71f35bc120fdd70298685131f29a6bb822d50f11
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129261
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
(cherry picked from commit 17dd787a4ca9c17883e0bdfc75c89c2fa7ec169e)

diff --git a/lotuswordpro/source/filter/lwpdrawobj.cxx 
b/lotuswordpro/source/filter/lwpdrawobj.cxx
index ec617fb24346..d4d4b7ff19f9 100644
--- a/lotuswordpro/source/filter/lwpdrawobj.cxx
+++ b/lotuswordpro/source/filter/lwpdrawobj.cxx
@@ -1373,21 +1373,20 @@ void LwpDrawBitmap::Read()
 m_pStream->ReadUInt16( m_aBmpRec.nTranslation );
 m_pStream->ReadUInt16( m_aBmpRec.nRotation );
 
+// 20 == length of draw-specific fields.
 if (m_aObjHeader.nRecLen < 20)
 throw BadRead();
 
-// 20 == length of draw-specific fields.
-// 14 == length of bmp file header.
-m_aBmpRec.nFileSize = m_aObjHeader.nRecLen - 20 + 14;
+sal_uInt64 nBmpPos = m_pStream->Tell();
+sal_uInt64 nBmpLen =
+std::min(m_aObjHeader.nRecLen - 20, 
m_pStream->remainingSize());
 
 BmpInfoHeader2 aInfoHeader2;
 m_pStream->ReadUInt32( aInfoHeader2.nHeaderLen );
 
-if (!m_pStream->good())
+if (!m_pStream->good() || nBmpLen < aInfoHeader2.nHeaderLen)
 throw BadRead();
 
-m_pImageData.reset( new sal_uInt8 [m_aBmpRec.nFileSize] );
-
 sal_uInt32 N;
 sal_uInt32 rgbTableSize;
 
@@ -1411,7 +1410,7 @@ void LwpDrawBitmap::Read()
 rgbTableSize = 3 * (1 << N);
 }
 }
-else
+else if (aInfoHeader2.nHeaderLen >= sizeof(BmpInfoHeader2))
 {
 m_pStream->ReadUInt32( aInfoHeader2.nWidth );
 m_pStream->ReadUInt32( aInfoHeader2.nHeight );
@@ -1430,9 +1429,15 @@ void LwpDrawBitmap::Read()
 {
 rgbTableSize = 4 * (1 << N);
 }
-
+}
+else
+{
+throw BadRead();
 }
 

[Libreoffice-bugs] [Bug 150051] Can't move left or upper when SHIFT key is pressed in CALC

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150051

Tavo  changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|NEEDINFO|RESOLVED

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

[Libreoffice-bugs] [Bug 150051] Can't move left or upper when SHIFT key is pressed in CALC

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150051

Tavo  changed:

   What|Removed |Added

 CC||gtavoa...@gmail.com

--- Comment #11 from Tavo  ---
Created attachment 181694
  --> https://bugs.documentfoundation.org/attachment.cgi?id=181694=edit
Libreoffice 7.4 Extensions

Hi Rafael!

In fact, in the safe mode the software works properly.
I follow your suggestion and the problem is gone, so, this ticket will be
closed.

Anyway, i don't installed anything else that Libreoffice it self, so i
don't know wich extension could cause the problem.

The photo attached was capture before clean profile.

Thank you for all our time and suggestions.

Best Regards for all of you.

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

[Libreoffice-bugs] [Bug 150325] Newly created animated gif is not saved

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150325

raal  changed:

   What|Removed |Added

   Keywords||bibisected, bisected
Version|7.5.0.0 alpha0+ Master  |6.3.0.4 release
 CC||noelgran...@gmail.com
  Regression By||Noel Grandin

--- Comment #2 from raal  ---
bisected to 
cf438d4e37ed301c7045dd3a316f93814909ceeb is the first bad commit
commit cf438d4e37ed301c7045dd3a316f93814909ceeb
Author: Norbert Thiebaud 
Date:   Thu Jun 21 00:16:59 2018 -0700

source sha:6621c3c67f001c8b8798ae94bb5d84f483617cf4

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

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

[Libreoffice-bugs] [Bug 140240] Add Reset Printer to File > Properties > General to remove printer info from settings.xml

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140240

--- Comment #12 from Timur  ---
Today I saw that default printer was added into document on a simple save,
without print. 
That should be changed, no need to add printer if not printed.

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

[Libreoffice-bugs] [Bug 147223] LO freezes TEMPORARILY (but does NOT crash) when trying to "Save" or "Save As" to the desktop

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147223

Julien Nabet  changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME

--- Comment #15 from Julien Nabet  ---
Thank you for your feedback, no pb for the delay.
I've just changed to WFM since there's no specific fix here.

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

[Libreoffice-bugs] [Bug 150051] Can't move left or upper when SHIFT key is pressed in CALC

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150051

Rafael Lima  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #10 from Rafael Lima  ---
Hi Tavo, as reported in Bug 150336 it may be related to some installed
extension.

Please, try running LibreOffice in safe mode. If it works, then resetting the
profile will fix the problem. But know that this will erase all settings and
extensions you installed.

Can you share the list of extensions you're using so I can look into it?

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

[Libreoffice-bugs] [Bug 150336] Shift + Up/Left no longer works to select cells in LO 7.4 beta 2

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150336

--- Comment #3 from Rafael Lima  ---
With clear user profile it works again.

But installing some extensions will break the shortcuts again.

I need to investigate a bit further.

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

[Libreoffice-bugs] [Bug 150336] Shift + Up/Left no longer works to select cells in LO 7.4 beta 2

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150336

Rafael Lima  changed:

   What|Removed |Added

Summary|Shift + Up not working  |Shift + Up/Left no longer
   |anymore to select cells in  |works to select cells in LO
   |LO 7.4 beta 2   |7.4 beta 2

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

[Libreoffice-bugs] [Bug 150336] Shift + Up not working anymore to select cells in LO 7.4 beta 2

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150336

--- Comment #2 from Rafael Lima  ---
Shift + Left also does not work.

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

[Libreoffice-bugs] [Bug 150319] Calling a non-existing Function should result in error

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150319

--- Comment #3 from Rafael Lima  ---
BTW in MS VBA both examples result in error.

I believe there's something wrong with the Basic compiler/interpreter in
LibreOffice.

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

[Libreoffice-commits] core.git: Branch 'feature/chartdatatable' - 978 commits - accessibility/inc accessibility/source android/source animations/source avmedia/source basctl/inc basctl/source basctl/u

2022-08-10 Thread Tomaž Vajngerl (via logerrit)
Rebased ref, commits from common ancestor:
commit 4208b0fac6111c9e5d438e2fe346e5987fcc8f4d
Author: Tomaž Vajngerl 
AuthorDate: Mon Jul 18 08:12:19 2022 +0200
Commit: Tomaž Vajngerl 
CommitDate: Wed Aug 10 15:16:22 2022 +0200

chart2: Data table rendering of keys (legend symbols)

Change-Id: Iff13b188df18fe8f9919274869774f53f2ea323b

diff --git a/chart2/inc/ChartView.hxx b/chart2/inc/ChartView.hxx
index 3fe2fedcf7e8..5c7e70e97900 100644
--- a/chart2/inc/ChartView.hxx
+++ b/chart2/inc/ChartView.hxx
@@ -104,8 +104,7 @@ private:
 
 public:
 ChartView() = delete;
-ChartView(css::uno::Reference< css::uno::XComponentContext > xContext,
-   ChartModel& rModel);
+ChartView(css::uno::Reference xContext, 
ChartModel& rModel);
 
 virtual ~ChartView() override;
 
@@ -185,6 +184,8 @@ public:
 
 void setViewDirty();
 
+css::uno::Reference const& 
getComponentContext() { return m_xCC;}
+
 /// See sfx2::XmlDump::dumpAsXml().
 void dumpAsXml(xmlTextWriterPtr pWriter) const override;
 
@@ -210,8 +211,7 @@ private: //methods
 private: //member
 ::osl::Mutex m_aMutex;
 
-css::uno::Reference< css::uno::XComponentContext>
-m_xCC;
+css::uno::Reference< css::uno::XComponentContext> m_xCC;
 
 chart::ChartModel& mrChartModel;
 
diff --git a/chart2/source/view/axes/VAxisBase.cxx 
b/chart2/source/view/axes/VAxisBase.cxx
index 814d3afd7858..30aead187dcb 100644
--- a/chart2/source/view/axes/VAxisBase.cxx
+++ b/chart2/source/view/axes/VAxisBase.cxx
@@ -244,7 +244,8 @@ void VAxisBase::updateUnscaledValuesAtTicks( TickIter& 
rIter )
 
 void 
VAxisBase::createDataTableView(std::vector>& 
/*rSeriesPlotterList*/,
 
uno::Reference const& /*xNumberFormatsSupplier*/,
-rtl::Reference<::chart::ChartModel> const& 
/*xChartDoc*/)
+rtl::Reference<::chart::ChartModel> const& 
/*xChartDoc*/,
+
css::uno::Reference const& /*rComponentContext*/)
 {
 }
 
diff --git a/chart2/source/view/axes/VAxisBase.hxx 
b/chart2/source/view/axes/VAxisBase.hxx
index 2c4123ba951d..4ee4f5e288ae 100644
--- a/chart2/source/view/axes/VAxisBase.hxx
+++ b/chart2/source/view/axes/VAxisBase.hxx
@@ -23,6 +23,7 @@
 #include "Tickmarks.hxx"
 
 namespace com::sun::star::util { class XNumberFormatsSupplier; }
+namespace com::sun::star::uno { class XComponentContext; }
 
 namespace chart
 {
@@ -30,6 +31,7 @@ namespace chart
 class VSeriesPlotter;
 class DataTableView;
 class ChartModel;
+class LegendEntryProvider;
 
 class VAxisBase : public VAxisOrGridBase
 {
@@ -65,7 +67,8 @@ public:
 
 virtual void 
createDataTableView(std::vector>& 
rSeriesPlotterList,
  
css::uno::Reference const& 
xNumberFormatsSupplier,
- rtl::Reference<::chart::ChartModel> 
const& xChartDoc);
+ rtl::Reference<::chart::ChartModel> 
const& xChartDoc,
+ 
css::uno::Reference const& rComponentContext);
 
 std::shared_ptr getDataTableView() { return 
m_pDataTableView; }
 
diff --git a/chart2/source/view/axes/VCartesianAxis.cxx 
b/chart2/source/view/axes/VCartesianAxis.cxx
index d7e78d5d2e85..293d1f0479a8 100644
--- a/chart2/source/view/axes/VCartesianAxis.cxx
+++ b/chart2/source/view/axes/VCartesianAxis.cxx
@@ -1995,11 +1995,12 @@ void VCartesianAxis::createShapes()
 
 void 
VCartesianAxis::createDataTableView(std::vector>&
 rSeriesPlotterList,
  
Reference const& xNumberFormatsSupplier,
- rtl::Reference<::chart::ChartModel> 
const& xChartDoc)
+ rtl::Reference<::chart::ChartModel> 
const& xChartDoc,
+ 
css::uno::Reference const& rComponentContext)
 {
 if (m_aAxisProperties.m_bDisplayDataTable)
 {
-m_pDataTableView.reset(new DataTableView(xChartDoc, 
m_aAxisProperties.m_xDataTableModel));
+m_pDataTableView.reset(new DataTableView(xChartDoc, 
m_aAxisProperties.m_xDataTableModel, rComponentContext));
 m_pDataTableView->initializeValues(rSeriesPlotterList);
 m_xNumberFormatsSupplier = xNumberFormatsSupplier;
 }
diff --git a/chart2/source/view/axes/VCartesianAxis.hxx 
b/chart2/source/view/axes/VCartesianAxis.hxx
index a9baca907bdd..132887510eff 100644
--- a/chart2/source/view/axes/VCartesianAxis.hxx
+++ b/chart2/source/view/axes/VCartesianAxis.hxx
@@ -23,7 +23,6 @@
 
 namespace chart
 {
-
 class VCartesianAxis : public VAxisBase
 {
 // public methods
@@ -101,7 +100,8 @@ public:
 
 void createDataTableView(std::vector>& 
rSeriesPlotterList,
  
css::uno::Reference const& 
xNumberFormatsSupplier,
- rtl::Reference<::chart::ChartModel> const& 
xChartDoc) override;
+   

[Libreoffice-bugs] [Bug 150051] Can't move left or upper when SHIFT key is pressed in CALC

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150051

Rafael Lima  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 150336] Shift + Up not working anymore to select cells in LO 7.4 beta 2

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150336

Rafael Lima  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 150336] Shift + Up not working anymore to select cells in LO 7.4 beta 2

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150336

--- Comment #1 from Rafael Lima  ---
Also don't work with gen and gtk3.

Also repro in LO 7.5+

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

[Libreoffice-bugs] [Bug 150336] Shift + Up not working anymore to select cells in LO 7.4 beta 2

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150336

Rafael Lima  changed:

   What|Removed |Added

   Keywords||possibleRegression

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

[Libreoffice-bugs] [Bug 150336] New: Shift + Up not working anymore to select cells in LO 7.4 beta 2

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150336

Bug ID: 150336
   Summary: Shift + Up not working anymore to select cells in LO
7.4 beta 2
   Product: LibreOffice
   Version: 7.4.0.0 beta1+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rafael.palma.l...@gmail.com

Today I noticed that holding Shift and pressing Up to select cells no longer
works in Calc. Shift + Down does work.

Can anyone else confirm this?

System info

Version: 7.4.0.2 / LibreOffice Community
Build ID: 1512ce97d7ed39dce3121f7e15651fd8895f950e
CPU threads: 16; OS: Linux 5.15; UI render: default; VCL: kf5 (cairo+xcb)
Locale: pt-BR (pt_BR.UTF-8); UI: en-US
Calc: threaded

Not present in

Version: 7.3.5.2 / LibreOffice Community
Build ID: 30(Build:2)
CPU threads: 16; OS: Linux 5.15; UI render: default; VCL: kf5 (cairo+xcb)
Locale: pt-BR (pt_BR.UTF-8); UI: en-US
Ubuntu package version: 1:7.3.5-0ubuntu0.22.04.1
Calc: threaded

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

[Libreoffice-bugs] [Bug 150333] Text labels in About dialog became to have different size

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150333

V Stuart Foote  changed:

   What|Removed |Added

   Keywords|regression  |

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

[Libreoffice-bugs] [Bug 150333] Text labels in About dialog became to have different size

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150333

--- Comment #5 from V Stuart Foote  ---
(In reply to Roman Kuznetsov from comment #4)
> (In reply to V Stuart Foote from comment #3)
> > Looks intentional, per see also?  => NAB ?  
> 
> Looks ugly, if it was made intentional then please change it to back

Why, premise of the see also is valid. Just the delta between the primary and
secondary/explanative labeling is a bit too large for the about dialog's
aboutdialog.ui

I didn't look at the other labeling affected, but maybe elsewhere will need a
tweak as well?

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

[Libreoffice-bugs] [Bug 149858] Formula object is not displayed properly in formula editor when text editor zoom level <1

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149858

Scott Clewell  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
   Keywords||bibisectRequest, regression
 Resolution|WORKSFORME  |---
 Ever confirmed|0   |1

--- Comment #9 from Scott Clewell  ---
I can reproduce this with:
Version: 7.3.2.2 (x86) / LibreOffice Community
Build ID: 49f2b1bff42cfccbd8f788c8dc32c1c309559be0
CPU threads: 8; OS: Windows 10.0 Build 19042; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL 
and
Version: 7.2.6.2 (x86) / LibreOffice Community
Build ID: b0ec3a565991f7569a5a7f5d24fed7f52653d754
CPU threads: 8; OS: Windows 10.0 Build 19042; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US

Cannot repo with
Version: 7.1.8.1 (x86) / LibreOffice Community
Build ID: e1f30c802c3269a1d052614453f260e49458c82c
CPU threads: 8; OS: Windows 10.0 Build 19042; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL
Calc: CL

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

[Libreoffice-bugs] [Bug 150333] Text labels in About dialog became to have different size

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150333

--- Comment #4 from Roman Kuznetsov <79045_79...@mail.ru> ---
(In reply to V Stuart Foote from comment #3)
> Looks intentional, per see also?  => NAB ?  

Looks ugly, if it was made intentional then please change it to back

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

[Libreoffice-bugs] [Bug 149316] Clarify what a master slide is a master _for_

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149316

--- Comment #9 from Eyal Rozenberg  ---
(In reply to Heiko Tietze from comment #6)
> Coming back to this topic. To my understanding the workflow is

To each his/her own workflow...

>, for example, delete all sample slides expect the title (in this
> case), add a new slide, and pick the wanted master from the sidebar
> (Properties > Slide > Master Slide). 

1. Candy is an outlier.
2. Not true for vivid, for example.
3. That's not what I would do with Candy. I would not delete anything until I
was done working on the presentation.

> but the workflow is essentially straight-forward.

There's nothing even encouraging the user to delete all of the master except
just one.

> I might be wrong and this topic could be good for a usability test.

You are "outnumbered" 2 to 1 among commenters on this bug, and you've not made
a convincing argument for why people are deleting the masters...

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

[Libreoffice-bugs] [Bug 150244] table cell distribution enhancement?

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150244

Dieter  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 150322] EDITING: An ordered list will reset the footnote sequence

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150322

Telesto  changed:

   What|Removed |Added

 CC||tele...@surfxs.nl
 Status|NEW |UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 150333] Text labels in About dialog became to have different size

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150333

V Stuart Foote  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||0045
 CC||vstuart.fo...@utsa.edu

--- Comment #3 from V Stuart Foote  ---
Looks intentional, per see also?  => NAB ?  

Although the difference in font sizes seems a bit too much--IIUC in the commit
[1] the larger is 110% the smaller are set 90%

Maybe tweak to a 105% and 95% split?

=-ref-=
https://gerrit.libreoffice.org/c/core/+/137618

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

[Libreoffice-bugs] [Bug 102835] Allow ENDNOTES to be arranged by chapter near end of document; numbering restarts at each chapter

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102835

Dieter  changed:

   What|Removed |Added

 Blocks||129434


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=129434
[Bug 129434] [META] Writer (EDITING) Suggested bug fixes, enhancements and
features for authors.
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 129434] [META] Writer (EDITING) Suggested bug fixes, enhancements and features for authors.

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129434

Dieter  changed:

   What|Removed |Added

 Depends on||102835


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102835
[Bug 102835] Allow ENDNOTES to be arranged by chapter near end of document;
numbering restarts at each chapter
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 102835] Allow ENDNOTES to be arranged by chapter near end of document; numbering restarts at each chapter

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102835

Dieter  changed:

   What|Removed |Added

 CC||page74010...@yahoo.fr

--- Comment #11 from Dieter  ---
*** Bug 150207 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 150207] Notes: set restart numbering option under author's responsibility

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150207

Dieter  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||dgp-m...@gmx.de
 Resolution|--- |DUPLICATE

--- Comment #1 from Dieter  ---
Ajlittoz, looks like a duplicate of bug 102835. Please change it back to
UNCONFIRMED with a short reasoning, if you disagree.

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

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

[Libreoffice-bugs] [Bug 103152] [META] Writer image bugs and enhancements

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103152
Bug 103152 depends on bug 124338, which changed state.

Bug 124338 Summary: Pressing Backspace after image does not delete the image
https://bugs.documentfoundation.org/show_bug.cgi?id=124338

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |NOTABUG

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

[Libreoffice-bugs] [Bug 124338] Pressing Backspace after image does not delete the image

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124338

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |NOTABUG
 CC||kelem...@ubuntu.com

--- Comment #6 from Gabor Kelemen (allotropia)  ---
I just tried to save the attachment 150303 as docx, open in Word and do the
Backspace things from the end step. 
Word does not delete the image either.
I came to this bug from bug 133957 where "Backspace on empty para should not
delete anchored object" was fixed, i.e. now the same happens as the
"problematic" behavior here.

I think this is NAB.

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

[Libreoffice-bugs] [Bug 150169] Empty/non-functional Media Playback toolbar in Writer

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150169

Dieter  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de

--- Comment #1 from Dieter  ---
Created attachment 181693
  --> https://bugs.documentfoundation.org/attachment.cgi?id=181693=edit
Toolbar in Writer and Calc

Can't see a difference between Writer and Calc. Attacment shows toolbar in
Writer

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

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

[Libreoffice-bugs] [Bug 150335] New: Missing Text

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150335

Bug ID: 150335
   Summary: Missing Text
   Product: LibreOffice
   Version: 7.2.7.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jfmildf...@gmail.com

Description:
Text will disappear in a merged cell if it is at an angle other than default or
90 degrees. You need to have multiple merged cells formatted as text.

Steps to Reproduce:
1.Create several new merged cells and format as text. 
2.Type in any word and make the word at an angle of 45 degrees
3.Save work and close. Re open and text is missing

Actual Results:
Missing text will reaper if you change the font size or set the font at default
value ie horizontal 

Expected Results:
Show the text at any angle all the time


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.3.5.2 (x64) / LibreOffice Community
Build ID: 184fe81b8c8c30d8b5082578aee2fed2ea847c01
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 150334] New: Libre Office crashed whilst trying to send an email using Writer's Mail Merge facility

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150334

Bug ID: 150334
   Summary: Libre Office crashed whilst trying to send an email
using Writer's Mail Merge facility
   Product: LibreOffice
   Version: unspecified
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lau...@spra.gg

Description:
I created my first email using LibreOffice Writer. I opened Libre Mail Merge
Wizard, and tried sending the email to a list of seven email messages (as a
test) that I had set up in LibreOffice Calc, with 'Email' being in cell A1, and
my list of emails in A2 to A8.  Everything seemed to be going along smoothly,
until I went to 'Send Documents', and then LibreOffice crashed.

LibreOffice 7.3 Document Recovery
Due to an error, LibreOffice crashed. All the files you were working on will
now be saved. The next time .. etc


Steps to Reproduce:
1. Create an email on LibreOffice Writer, then click on Tools / Mail Merge
Wizard
2. Tick ‘Use the current document’, and click ‘Next’
3. Tick ‘Email message’, and click ‘Next’
4. Click ‘Select Address List’
5. Click ‘Add’, chose the LibreOffice Calc worksheet holding the list of email
addresses, and click ‘OK’
6. When presented with the ‘Insert Address Block’ mini-screen, click ‘Next’
7. Choose ‘Hello’ as the ‘General salutation’, and click ‘Next’
8. When ‘Adjust Layout of Address Block and Salutation’ appears, move the
Salutation Position to the top of the email (surely that should be the
default), and click ‘Finish’
9. Click on the icon Send Email Messages, enter a subject, and click on ‘Send
Documents’

Actual Results:
LibreOffice crashed

Expected Results:
LibreOffice Writer mail merge wizard to have circulated my emails


Reproducible: Always


User Profile Reset: No



Additional Info:
I am using a Lenovo Ideal pad 310 running Windows 10

Not sure which hardware I am using (X86 IA32 or X86-AMD64), or which 'version'

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

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

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87740
Bug 87740 depends on bug 132279, which changed state.

Bug 132279 Summary: Deleting first paragraph of a document deletes anchored to 
object
https://bugs.documentfoundation.org/show_bug.cgi?id=132279

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

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

[Libreoffice-bugs] [Bug 103152] [META] Writer image bugs and enhancements

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103152
Bug 103152 depends on bug 132279, which changed state.

Bug 132279 Summary: Deleting first paragraph of a document deletes anchored to 
object
https://bugs.documentfoundation.org/show_bug.cgi?id=132279

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

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

[Libreoffice-bugs] [Bug 132279] Deleting first paragraph of a document deletes anchored to object

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132279

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||kelem...@ubuntu.com
 Status|NEW |RESOLVED

--- Comment #23 from Gabor Kelemen (allotropia)  ---
This seems to be fixed in master since:

https://git.libreoffice.org/core/+/85376a02348810812d515ee72140dbf56f2b6040

author  Michael Stahl  Tue Jun 07 19:01:24
2022 +0200
committer   Michael Stahl  Wed Jun 08
20:31:40 2022 +0200

tdf#133957 sw: don't delete flys on Backspace/Delete keys

Also fixes: tdf#134007 tdf#138835 tdf#139514

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

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

[Libreoffice-bugs] [Bug 150111] LibreOffice crashes on launch with a KERNELBASE.dll error unless Vulkan rendering is off

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150111

--- Comment #13 from V Stuart Foote  ---
So, the Skia Vulkan accelerated rendering fail on launch affects GPUs from both
nVidia and AMD, and likely Intel as well.  We actually don't know if it is the
same point. 

Is the fail in LO's graphics testing--and the recovery to Skia raster framing
does not complete? Or is it a GPU call gone awry.

It is a chore, but we need stack traces for the systems (os/GPU & driver) this
hang occurs on.  Steps to configure WinDbg and the symbols cache are in the
project Wiki here:

https://wiki.documentfoundation.org/How_to_get_a_backtrace_with_WinDbg 

A good trace will identify if the call is in the GPU (and a driver issue) or is
in the LO graphics tests.

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

[Libreoffice-bugs] [Bug 150333] Text labels in About dialog became to have different size

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150333

--- Comment #2 from Roman Kuznetsov <79045_79...@mail.ru> ---
Created attachment 181691
  --> https://bugs.documentfoundation.org/attachment.cgi?id=181691=edit
How should About dialog looks

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

[Libreoffice-bugs] [Bug 150333] Text labels in About dialog became to have different size

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150333

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
Created attachment 181690
  --> https://bugs.documentfoundation.org/attachment.cgi?id=181690=edit
Scrrenshot with the problem

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

[Libreoffice-bugs] [Bug 150333] Text labels in About dialog became to have different size

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150333

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

   What|Removed |Added

 Blocks||103202
 CC||79045_79...@mail.ru,
   ||fit...@ubuntu.com
  Regression By||Adolfo Jayme Barrientos
   Keywords||bibisected, bisected,
   ||regression


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 103202] [META] About dialog bugs and enhancements

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103202

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

   What|Removed |Added

 Depends on||150333


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=150333
[Bug 150333] Text labels in About dialog became to have different size
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 150333] New: Text labels in About dialog became to have different size

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150333

Bug ID: 150333
   Summary: Text labels in About dialog became to have different
size
   Product: LibreOffice
   Version: 7.5.0.0 alpha0+ Master
  Hardware: All
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 79045_79...@mail.ru

Description:
Text labels in About dialog became to have different size

Steps to Reproduce:
1. Open About dialog
2. Look at the text there (look at the screenshot in attach also)


Actual Results:
Text labels in About dialog have different size

Expected Results:
Text labels in About dialog have the same size


Reproducible: Always


User Profile Reset: No



Additional Info:
I found it in

Version: 7.5.0.0.alpha0+ / LibreOffice Community
Build ID: d75c5c1f61a174b3b333e9db6536ab15cc37d00b
CPU threads: 4; OS: Mac OS X 12.5; UI render: Skia/Metal; VCL: osx
Locale: ru-RU (ru_RU.UTF-8); UI: en-US
Calc: threaded Jumbo

but in earlier 7.5 version I didn't see it => regression and I bisected it
using mac64-7.5 bisect repo

I got SHA - 1bdd72e2d7f4cd5d438646a1ac1aeade9432ec96

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

Added to CC: Adolfo Jayme Barrientos

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

[Libreoffice-bugs] [Bug 96393] File Picker Not Using Previous Session State/Geometry

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96393

--- Comment #14 from Rainer Bielefeld Retired  
---
(In reply to Rainer Bielefeld Retired from comment #13)
Same with newly created User file.

But good news: WORKS PERFECT with Server Installation of Version:
7.5.0.0.alpha0+  Build ID: 8061b3e9204bef6b321a21033174034a5e2ea88e
CPU-Threads: 4; BS: Windows 6.1 Service Pack 1 Build 7601; UI-Render:
Skia/Raster; VCL: winLocale: de-DE (de_DE); UI: de-DE
Calc: CL |  Auto Colibre Theme  |  Special devUserProfile (based on my normal
one)

WFM 7.5?

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

[Libreoffice-bugs] [Bug 150111] LibreOffice crashes on launch with a KERNELBASE.dll error unless Vulkan rendering is off

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150111

V Stuart Foote  changed:

   What|Removed |Added

Summary|LibreOffice crashes on  |LibreOffice crashes on
   |launch with a   |launch with a
   |KERNELBASE.dll error unless |KERNELBASE.dll error unless
   |Hardware Acceleration is|Vulkan rendering is off
   |off |

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

[Libreoffice-bugs] [Bug 147223] LO freezes TEMPORARILY (but does NOT crash) when trying to "Save" or "Save As" to the desktop

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147223

Byron Bray  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |FIXED

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

[Libreoffice-bugs] [Bug 147223] LO freezes TEMPORARILY (but does NOT crash) when trying to "Save" or "Save As" to the desktop

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147223

--- Comment #14 from Byron Bray  ---
Friends - A hundred pardons for not responding sooner; I must have missed the
email, back in February, alerting me to Comment #12.

A later version of LO (or some other change in either LO or my system) has
resolved this issue. Truth to tell, I had gotten used to saving to locations
other than the desktop and didn't even realize that the issue had been resolved
until, after receiving the above "NEEDINFO' alert, I tried saving both new and
existing documents to the desktop.

But to respond to Alex Thurgood's comment #12 (just for the record), I was not
saving to a location containing offline links. My system desktop DOES contain
links (aliases) to four network volumes which are mounted at login but I use
these volumes daily and know that these volumes were mounted and available at
the time this error was reported. I will, however, keep this potential
condition tucked away in the crinkles of my cerebrum in case I should see this
behaviour again.

Thanks for your attention and assistance. I very much appreciate it. Best
Wishes to All.

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

[Libreoffice-bugs] [Bug 96393] File Picker Not Using Previous Session State/Geometry

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96393

Rainer Bielefeld Retired  changed:

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #13 from Rainer Bielefeld Retired  
---
Still a problem with Installation of Version: 7.3.3.2 (x64) 
Build ID: d1d0ea68f081ee2800a922cac8f79445e4603348
CPU threads: 12; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: de-DE |  Calc: threaded | ElementaryTheme | My
normal User Profile:

LibO Files Dialog does not remember size from last use.

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

[Libreoffice-bugs] [Bug 150209] Partially obstructed headings in floating Navigator

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150209

Dieter  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #6 from Dieter  ---
(In reply to inoukdemers from comment #5)
> Not sure if this could be a cause, but I do often project the screen onto an
> external TV via HDMI.

So it only happens with external monitor / TV?
=> NEEDINFO

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

[Libreoffice-bugs] [Bug 150209] Partially obstructed headings in floating Navigator

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150209

--- Comment #5 from inoukdem...@gmail.com ---
Not sure if this could be a cause, but I do often project the screen onto an
external TV via HDMI.
It's an LG TV, 720p, 1366 x 768 px. So the aspect ratio is about 1.77864.
My laptop has a screen resolution of 3840 x 2160, aspect ratio 1.7.

Perhaps switching from one to the other ends up messing with the settings in
Writer?

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

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

2022-08-10 Thread Andrea Gelmini (via logerrit)
 sw/source/filter/html/htmlfly.hxx |7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

New commits:
commit 450471ebbdbff40998509731028b28e0ada53f58
Author: Andrea Gelmini 
AuthorDate: Wed Aug 10 11:33:34 2022 +0200
Commit: Julien Nabet 
CommitDate: Wed Aug 10 17:56:00 2022 +0200

Removed duplicated included & move to pragma once

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

diff --git a/sw/source/filter/html/htmlfly.hxx 
b/sw/source/filter/html/htmlfly.hxx
index 58865d361640..f6265f532526 100644
--- a/sw/source/filter/html/htmlfly.hxx
+++ b/sw/source/filter/html/htmlfly.hxx
@@ -17,10 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_SW_SOURCE_FILTER_HTML_HTMLFLY_HXX
-#define INCLUDED_SW_SOURCE_FILTER_HTML_HTMLFLY_HXX
-
-#include 
+#pragma once
 
 #include 
 #include 
@@ -130,6 +127,4 @@ class SwHTMLPosFlyFrames
 o3tl::find_partialorder_ptrequals>
 {};
 
-#endif
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */


[Libreoffice-bugs] [Bug 150325] Newly created animated gif is not saved

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150325

raal  changed:

   What|Removed |Added

 Ever confirmed|0   |1
   Keywords|possibleRegression  |regression
 CC||r...@post.cz
 OS|Windows (All)   |All
 Status|UNCONFIRMED |NEW

--- Comment #1 from raal  ---
Confirm with Version: 7.5.0.0.alpha0+ / LibreOffice Community
Build ID: 3ccbfaaf95005a34ca64ad250463ef5ce8842f43
CPU threads: 4; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: cs-CZ (cs_CZ.UTF-8); UI: en-US
Calc: threaded

Works in Version: 5.2.0.0.alpha1+

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

[Libreoffice-bugs] [Bug 150190] Calc crashes just by holding down Page Down with Skia Vulkan enabled

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150190

Timur  changed:

   What|Removed |Added

   Severity|normal  |major

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

[Libreoffice-bugs] [Bug 150190] Calc crashes just by holding down Page Down with Skia Vulkan enabled

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150190

Timur  changed:

   What|Removed |Added

 CC||timbacont...@gmail.com

--- Comment #8 from Timur  ---
*** Bug 150294 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 150294] Calc crashes with vertical scrolling

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150294

Timur  changed:

   What|Removed |Added

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

--- Comment #7 from Timur  ---
I guess we may mark duplicate. 
Please add requested info here and to other bug.

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

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

[Libreoffice-bugs] [Bug 150111] LibreOffice crashes on launch with a KERNELBASE.dll error unless Hardware Acceleration is off

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150111

Timur  changed:

   What|Removed |Added

 Ever confirmed|0   |1
   Severity|normal  |major
 Status|UNCONFIRMED |NEW

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

[Libreoffice-bugs] [Bug 129062] [META] Skia library bugs

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129062
Bug 129062 depends on bug 150178, which changed state.

Bug 150178 Summary: LibreOffice Writer crashes when opening an ODT file if 
hardware acceleration is enabled on Windows 11 Pro
https://bugs.documentfoundation.org/show_bug.cgi?id=150178

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 150111] LibreOffice crashes on launch with a KERNELBASE.dll error unless Hardware Acceleration is off

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150111

Timur  changed:

   What|Removed |Added

 CC||b...@trechnex.com

--- Comment #12 from Timur  ---
*** Bug 150178 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 150178] LibreOffice Writer crashes when opening an ODT file if hardware acceleration is enabled on Windows 11 Pro

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150178

Timur  changed:

   What|Removed |Added

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

--- Comment #8 from Timur  ---
Seem duplicate. Better to have a single conformed bug than 2 unconfirmed.

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

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

[Libreoffice-bugs] [Bug 129062] [META] Skia library bugs

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129062

Timur  changed:

   What|Removed |Added

 Depends on||149833


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=149833
[Bug 149833] LO Writer crashes immediately after opening
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 129062] [META] Skia library bugs

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129062
Bug 129062 depends on bug 149833, which changed state.

Bug 149833 Summary: LO Writer crashes immediately after opening
https://bugs.documentfoundation.org/show_bug.cgi?id=149833

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 149833] LO Writer crashes immediately after opening

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149833

Timur  changed:

   What|Removed |Added

 Blocks||129062
 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

--- Comment #7 from Timur  ---
I close as Insifficient Data. 
Should you find some time to proceed, please:
1. upgrade to 7.3.last
2. test with LO daily master 7.5+ from
https://dev-builds.libreoffice.org/daily/master/, it's separate to your working
LO and doesn't take extensions
3. see steps for Skia test from bug 150111
4. get a backtrace peer
https://wiki.documentfoundation.org/How_to_get_a_backtrace_with_WinDbg


Referenced Bugs:

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

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

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

Michael Stahl (allotropia)  changed:

   What|Removed |Added

  Regression By|Michael Stahl   |Noel Grandin

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

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

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

Michael Stahl (allotropia)  changed:

   What|Removed |Added

 CC||noelgran...@gmail.com
   Assignee|michael.st...@allotropia.de |libreoffice-b...@lists.free
   ||desktop.org

--- Comment #8 from Michael Stahl (allotropia)  ---
bibisect finds that it worked on my commit but started to crash with this:

commit 2fe4de5167eb70e40a7d2f6e9c68247d2b151775
Author: Jenkins Build User 
Date:   Tue Jul 19 19:14:42 2022 +0200

source sha:4701d17bfe785f00958ad58a63dc0ece4c5c3281


...i'm afraid there are some long-standing problems such as overlapping
SwRangeRedlines that prevent optimizing this stuff.

for me reverting this commit makes it not crash on paste, see:
https://gerrit.libreoffice.org/c/core/+/138094


(i found an unrelated crash that happens when you copy all, then close the
document, then copy anything else (clearing the first clipboard document),
looks like an SfxItemPool UAF)

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

[Libreoffice-bugs] [Bug 132711] Text can't flow around frame/image anchored to page under certain conditions

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132711

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

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

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

[Libreoffice-bugs] [Bug 150130] Form Controls: Wrong context menu of a form in a specific situation (Steps in comment 6)

2022-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150130

Dieter  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
Summary|Form Controls: Form |Form Controls: Wrong
   |navigator right click menu  |context menu of a form in a
   |incorrect in some   |specific situation (Steps
   |situations  |in comment 6)
 Ever confirmed|0   |1

--- Comment #6 from Dieter  ---
Now I understand and confirm the problem with

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

Steps in short
1. create a form control or open a document with a form control
2. Form -> Form Navigator
3. Left click on the form item
4. Right click on form item: context menu with following options: Replace with,
Cut, Delete, Rename, Properties (expected)
5. Deselect form
6. Select top entry in the form navigator ("Forms")
7. In the document select form (form item is also highlighted in form
navigator)
8. Right click on form item in form navigator

Actual result:
Context menu with the following options: New, Open in Design Mode, Automatic
Control Focus (context menu of "Forms" entry)

Expected result:
Context menu with following options: Replace with, Cut, Delete, Rename,
Properties (same result as after step 4)

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

  1   2   3   >