[Bug 159255] Footnote list style doesn't take on customize attributes

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159255

--- Comment #4 from Mark Coetsee  ---
Version: 7.5.9.2 (X86_64) / LibreOffice Community
Build ID: 50(Build:2)
CPU threads: 6; OS: Linux 6.6; UI render: default; VCL: gtk3
Locale: en-GB (en_GB.utf8); UI: en-GB
7.5.9-2
Calc: CL threaded

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

[Bug 159255] Footnote list style doesn't take on customize attributes

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159255

Mark Coetsee  changed:

   What|Removed |Added

 CC||mark.coet...@gmail.com

--- Comment #3 from Mark Coetsee  ---
Created attachment 192054
  --> https://bugs.documentfoundation.org/attachment.cgi?id=192054=edit
.odt document describing and displaying the footnote bug

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

[Bug 159256] Missing indentation for enumeration

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159256

--- Comment #2 from Jens-D Doll  ---
Created attachment 192053
  --> https://bugs.documentfoundation.org/attachment.cgi?id=192053=edit
It is a matter of the font chosen

here are two examples in different fonts, where one is Ok and the other is
wrong

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

core.git: codemaker/source

2024-01-18 Thread Stephan Bergmann (via logerrit)
 codemaker/source/cppumaker/cpputype.cxx |   13 +
 1 file changed, 5 insertions(+), 8 deletions(-)

New commits:
commit 2bc1c113a4b37e97d9faf9c88aec01d5a0af7dae
Author: Stephan Bergmann 
AuthorDate: Thu Jan 18 21:10:35 2024 +0100
Commit: Stephan Bergmann 
CommitDate: Fri Jan 19 08:12:18 2024 +0100

Clean up generated embind code a bit

For one, no need to wrap in #ifdef EMSCRIPTEN code that is only ever fed 
into
emcc anyway.  For another, better use fully qualified names throughout 
generated
code, to avoid unexpected collisions.

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

diff --git a/codemaker/source/cppumaker/cpputype.cxx 
b/codemaker/source/cppumaker/cpputype.cxx
index f600cff8ad8c..cfb1fd750a5f 100644
--- a/codemaker/source/cppumaker/cpputype.cxx
+++ b/codemaker/source/cppumaker/cpputype.cxx
@@ -610,12 +610,9 @@ void CppuType::dumpHFileContent(
 
 void CppuType::dumpEmbindCppFile(FileStream )
 {
-out << "#ifdef EMSCRIPTEN
";
 out << "#include 
"
"#include <" << name_.replace('.', '/') << ".hpp>
";
-out << "using namespace emscripten;

";
 dumpEmbindDeclaration(out);
-out << "#endif
";
 }
 
 void CppuType::dumpGetCppuType(FileStream & out)
@@ -1232,7 +1229,7 @@ void InterfaceType::dumpEmbindDeclaration(FileStream & 
out)
 codemaker::cppumaker::dumpTypeIdentifier(out, name_);
 out << ") {
";
 
-out << "
class_<" << codemaker::cpp::scopedCppName(u2b(name_)) << ">(\"";
+out << "
::emscripten::class_<" << codemaker::cpp::scopedCppName(u2b(name_)) << ">(\"";
 codemaker::cppumaker::dumpTypeFullWithDecorator(out, name_, u"$");
 codemaker::cppumaker::dumpTypeIdentifier(out, name_);
 out << "\")
";
@@ -1245,7 +1242,7 @@ void InterfaceType::dumpEmbindDeclaration(FileStream & 
out)
 dec();
 
 // dump reference bindings.
-out << "
class_<::css::uno::Reference<" << codemaker::cpp::scopedCppName(u2b(name_)) << 
">, base<::css::uno::BaseReference>>(\"";
+out << "
::emscripten::class_<::css::uno::Reference<" << 
codemaker::cpp::scopedCppName(u2b(name_)) << ">, 
::emscripten::base<::css::uno::BaseReference>>(\"";
 codemaker::cppumaker::dumpTypeFullWithDecorator(out, name_, u"$");
 codemaker::cppumaker::dumpTypeIdentifier(out, name_);
 out << "Ref\")
";
@@ -1253,8 +1250,8 @@ void InterfaceType::dumpEmbindDeclaration(FileStream & 
out)
 out << indent() << ".constructor<>()
"
 << indent() << ".constructor<::css::uno::BaseReference, 
::css::uno::UnoReference_Query>()
"
 << indent() << ".function(\"is\", &::css::uno::Reference<" << 
codemaker::cpp::scopedCppName(u2b(name_)) << ">::is)
"
-<< indent() << ".function(\"get\", &::css::uno::Reference<" << 
codemaker::cpp::scopedCppName(u2b(name_)) << ">::get, allow_raw_pointers())
"
-<< indent() << ".function(\"set\", 
emscripten::select_overload(&::css::uno::Reference<" << 
codemaker::cpp::scopedCppName(u2b(name_)) << ">::set))
";
+<< indent() << ".function(\"get\", &::css::uno::Reference<" << 
codemaker::cpp::scopedCppName(u2b(name_)) << ">::get, 
::emscripten::allow_raw_pointers())
"
+<< indent() << ".function(\"set\", 
::emscripten::select_overload(&::css::uno::Reference<" << 
codemaker::cpp::scopedCppName(u2b(name_)) << ">::set))
";
 dumpEmbindAttributeBindings(out);
 dumpEmbindMethodBindings(out, true);
 out << indent() << ";
";
@@ -1447,7 +1444,7 @@ void InterfaceType::dumpEmbindWrapperFunc(FileStream& out,
 }
 
 dumpParameters(/*bDumpType=*/false);
-out << "); }, allow_raw_pointers() )
";
+out << "); }, ::emscripten::allow_raw_pointers() )
";
 }
 
 void InterfaceType::dumpEmbindMethodBindings(FileStream & out, bool 
bDumpForReference) const


[Bug 159277] It would be nice to have an exclude file type option from Recent Files.

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159277

Buovjaga  changed:

   What|Removed |Added

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

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

[Bug 159277] It would be nice to have an exclude file type option from Recent Files.

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159277

Buovjaga  changed:

   What|Removed |Added

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

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

[Bug 159281] In word processing software,I hope I can insert many pictures in batches,Only one image can be inserted at a time.

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159281

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID
 CC||ilmari.lauhakangas@libreoff
   ||ice.org

--- Comment #1 from Buovjaga  ---
Closing as invalid as this was a dupe of bug 159280 which itself was a dupe of
bug 84957.

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

[Bug 159280] In word processing software,Please allow batch insertion of many pictures at a time.Please allow all content to be exported as several pictures instead of one.

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159280

Buovjaga  changed:

   What|Removed |Added

 CC||ilmari.lauhakangas@libreoff
   ||ice.org
 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Buovjaga  ---


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

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

[Bug 84957] Selecting two or more images at the same time Via Insert->images->from file is not possible in LibreOffice Writer.

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84957

Buovjaga  changed:

   What|Removed |Added

 CC||250670...@qq.com

--- Comment #3 from Buovjaga  ---
*** Bug 159280 has been marked as a duplicate of this bug. ***

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

[Bug 80879] EXPORT: no means to export an entire document or selective pages as images (pngs or jpgs)

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80879

Buovjaga  changed:

   What|Removed |Added

 CC||250670...@qq.com

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

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

[Bug 159282] In word processing software.You want to be able to export a document as many pictures,Currently, you can only export a document to the image where the cursor is located.

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159282

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 CC||ilmari.lauhakangas@libreoff
   ||ice.org

--- Comment #1 from Buovjaga  ---


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

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

[Bug 151352] CRASH: closing form while the tip of the day dialog is displayed

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151352

Buovjaga  changed:

   What|Removed |Added

 CC||ilmari.lauhakangas@libreoff
   ||ice.org

--- Comment #24 from Buovjaga  ---
I can't make it crash with gtk3 in oldest of linux-64-24.8 repo.

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

core.git: sw/qa sw/source

2024-01-18 Thread Mike Kaganski (via logerrit)
 sw/qa/extras/layout/data/fld-in-tbl.docx |binary
 sw/qa/extras/layout/layout3.cxx  |   21 +
 sw/source/core/text/guess.cxx|   14 --
 3 files changed, 29 insertions(+), 6 deletions(-)

New commits:
commit 229864a103b6ba8714a62609167be2deae16b987
Author: Mike Kaganski 
AuthorDate: Fri Jan 19 11:07:58 2024 +0600
Commit: Mike Kaganski 
CommitDate: Fri Jan 19 07:09:17 2024 +0100

tdf#159271: do not try to put fields' spaces to hole portions

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

diff --git a/sw/qa/extras/layout/data/fld-in-tbl.docx 
b/sw/qa/extras/layout/data/fld-in-tbl.docx
new file mode 100644
index ..95d1b8adae38
Binary files /dev/null and b/sw/qa/extras/layout/data/fld-in-tbl.docx differ
diff --git a/sw/qa/extras/layout/layout3.cxx b/sw/qa/extras/layout/layout3.cxx
index 24b90d5da19b..9dfa7083debe 100644
--- a/sw/qa/extras/layout/layout3.cxx
+++ b/sw/qa/extras/layout/layout3.cxx
@@ -2282,6 +2282,27 @@ CPPUNIT_TEST_FIXTURE(SwLayoutWriter3, testTdf159050)
 u"PortionType::Margin"_ustr);
 }
 
+CPPUNIT_TEST_FIXTURE(SwLayoutWriter3, testTdf159271)
+{
+// Given a document with a field with several spaces in a field content
+createSwDoc("fld-in-tbl.docx");
+xmlDocUniquePtr pXmlDoc = parseLayoutDump();
+// Make sure there is only one page, one table with one row and two cells, 
and one paragraph
+assertXPath(pXmlDoc, "/root/page"_ostr, 1);
+assertXPath(pXmlDoc, "/root/page/body/tab"_ostr, 1);
+assertXPath(pXmlDoc, "/root/page/body/tab/row"_ostr, 1);
+assertXPath(pXmlDoc, "/root/page/body/tab/row/cell"_ostr, 2);
+assertXPath(pXmlDoc, "/root/page/body/txt"_ostr, 1);
+assertXPath(pXmlDoc, 
"/root/page/body/tab/row/cell[2]/txt/SwParaPortion"_ostr, 1);
+
+// Without the fix, this would fail:
+// - Expected: 1
+// - Actual  : 16
+// - In <>, XPath '/root/page/body/tab/row/cell[2]/txt//SwLineLayout' 
number of nodes is incorrect
+assertXPath(pXmlDoc, 
"/root/page/body/tab/row/cell[2]/txt//SwLineLayout"_ostr, 1);
+assertXPath(pXmlDoc, 
"/root/page/body/tab/row/cell[2]/txt//SwFieldPortion"_ostr, 1);
+}
+
 } // end of anonymous namespace
 
 CPPUNIT_PLUGIN_IMPLEMENT();
diff --git a/sw/source/core/text/guess.cxx b/sw/source/core/text/guess.cxx
index 3c85a42f4f15..3346fe345acc 100644
--- a/sw/source/core/text/guess.cxx
+++ b/sw/source/core/text/guess.cxx
@@ -253,9 +253,10 @@ bool SwTextGuess::Guess( const SwTextPortion& rPor, 
SwTextFormatInfo ,
 {
 // portion fits to line
 m_nCutPos = rInf.GetIdx() + nMaxLen;
-bool bRet = maybeAdjustPositionsForBlockAdjust(m_nCutPos, 
m_nBreakPos, m_nBreakStart,
-   m_nBreakWidth, 
m_nExtraBlankWidth,
-   nMaxSizeDiff, rInf, 
rSI, nMaxComp);
+bool bRet = rPor.InFieldGrp()
+|| maybeAdjustPositionsForBlockAdjust(m_nCutPos, 
m_nBreakPos, m_nBreakStart,
+  m_nBreakWidth, 
m_nExtraBlankWidth,
+  nMaxSizeDiff, 
rInf, rSI, nMaxComp);
 if( nItalic &&
 (m_nCutPos >= TextFrameIndex(rInf.GetText().getLength()) ||
   // #i48035# Needed for CalcFitToContent
@@ -408,9 +409,10 @@ bool SwTextGuess::Guess( const SwTextPortion& rPor, 
SwTextFormatInfo ,
 // there likely has been a pixel rounding error in GetTextBreak
 if ( m_nBreakWidth <= nLineWidth )
 {
-bool bRet = maybeAdjustPositionsForBlockAdjust(m_nCutPos, 
m_nBreakPos, m_nBreakStart,
-   m_nBreakWidth, 
m_nExtraBlankWidth,
-   nMaxSizeDiff, rInf, 
rSI, nMaxComp);
+bool bRet = rPor.InFieldGrp()
+|| maybeAdjustPositionsForBlockAdjust(m_nCutPos, 
m_nBreakPos, m_nBreakStart,
+  m_nBreakWidth, 
m_nExtraBlankWidth,
+  nMaxSizeDiff, 
rInf, rSI, nMaxComp);
 
 if (nItalic && (m_nBreakPos + TextFrameIndex(1)) >= 
TextFrameIndex(rInf.GetText().getLength()))
 m_nBreakWidth += nItalic;


[Bug 112969] [META] DOCX (OOXML) field-related issues

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112969
Bug 112969 depends on bug 159271, which changed state.

Bug 159271 Summary: FILEOPEN DOCX Dropdown fields became very narrow and tall
https://bugs.documentfoundation.org/show_bug.cgi?id=159271

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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

[Bug 159271] FILEOPEN DOCX Dropdown fields became very narrow and tall

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159271

Mike Kaganski  changed:

   What|Removed |Added

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

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

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

[Bug 103459] [META] Sidebar UI and UX bugs and enhancements

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103459
Bug 103459 depends on bug 158112, which changed state.

Bug 158112 Summary: Sidebar pane shortcuts conflict with Alt+NumPad input 
(comment 5, comment 9)
https://bugs.documentfoundation.org/show_bug.cgi?id=158112

   What|Removed |Added

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

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

[Bug 158112] Sidebar pane shortcuts conflict with Alt+NumPad input (comment 5, comment 9)

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158112

Mike Kaganski  changed:

   What|Removed |Added

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

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

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

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143781
Bug 143781 depends on bug 156443, which changed state.

Bug 156443 Summary: Windows: alt+numpad doesn't work for Unicode decimal codes, 
like in WordPad/Word
https://bugs.documentfoundation.org/show_bug.cgi?id=156443

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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

[Bug 45315] [UI] Some relation elements (precedes and following) shown with different font

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45315

--- Comment #13 from TheaBonnett  ---
After updating Metronic (Laravel version) to 8.1.6, it seems that jsTree isn't
functioning. However, reverting the "jstree.bundle.js" file in
"plugins/custom/jstree/" to the old version resolves the issue.
Best regards,(https://ricepuritytest2024.com)

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

[Bug 159279] Starting with a defined page number -- error in directions in Help

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159279

--- Comment #2 from Mike Kaganski  ---
Olivier: the idea to add links e.g. to
https://help.libreoffice.org/latest/en-US/text/swriter/guide/footer_pagenumber.html
looks nice.

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

[Bug 159279] Starting with a defined page number -- error in directions in Help

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159279

Mike Kaganski  changed:

   What|Removed |Added

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

--- Comment #1 from Mike Kaganski  ---
This is incorrect. As your attachment correctly quotes, the help page starts
with:

> ... You are writing a text document that should start with page number 12.

So this help page takes a *specific* case as an example, to provide an
unambiguous and simple situation. In *that* situation, when the document
*starts* with that page 12, the description is completely correct. It is a next
step - to extend it to an arbitrary situation, when you do not *start* the
document with a specific page number, but do it in a middle point.

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

[Bug 159282] New: In word processing software.You want to be able to export a document as many pictures,Currently, you can only export a document to the image where the cursor is located.

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159282

Bug ID: 159282
   Summary: In word processing software.You want to be able to
export a document as many pictures,Currently, you can
only export a document to the image where the cursor
is located.
   Product: LibreOffice
   Version: 24.2.0.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 250670...@qq.com

Description:
In word processing software.You want to be able to export a document as many
pictures,Currently, you can only export a document to the image where the
cursor is located.


Actual Results:
In word processing software.You want to be able to export a document as many
pictures,Currently, you can only export a document to the image where the
cursor is located.


Expected Results:
In word processing software.You want to be able to export a document as many
pictures,Currently, you can only export a document to the image where the
cursor is located.



Reproducible: Always


User Profile Reset: No

Additional Info:
In word processing software.You want to be able to export a document as many
pictures,Currently, you can only export a document to the image where the
cursor is located.

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

[Bug 159281] New: In word processing software,I hope I can insert many pictures in batches,Only one image can be inserted at a time.

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159281

Bug ID: 159281
   Summary: In word processing software,I hope I can insert many
pictures in batches,Only one image can be inserted at
a time.
   Product: LibreOffice
   Version: 7.6.4.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 250670...@qq.com

Description:
In word processing software,I hope I can insert many pictures in batches,Only
one image can be inserted at a time.

Actual Results:
In word processing software,I hope I can insert many pictures in batches,Only
one image can be inserted at a time.

Expected Results:
In word processing software,I hope I can insert many pictures in batches,Only
one image can be inserted at a time.


Reproducible: Always


User Profile Reset: No

Additional Info:
In word processing software,I hope I can insert many pictures in batches,Only
one image can be inserted at a time.

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

[Bug 159055] Keyboard shortcuts to open the side toolbar prevent the use of keyboard shortcuts for special characters

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159055

Mike Kaganski  changed:

   What|Removed |Added

 CC||heiko.tietze@documentfounda
   ||tion.org

--- Comment #4 from Mike Kaganski  ---
(In reply to Oscar Dubreil from comment #2)
> Concerning the undisered shortcuts, I tried to modify them but it seems it
> can't be done because when I go to the specified menu, Alt+0-9 aren't
> assigned to any function, that's why I see that as a bug.

Please notice how this Alt+Number issue highlighted the usability problem in
the dialog. Multiple users struggle with it, not realizing that there are
several groups of shortcuts - managed by the radiobutton group on the top right
corner; they suppose that the shortcuts shown to them initially is the
exhaustive list.

I suppose, it has an own bug report; but it needs attention IMO. There may be
different approaches - e.g., using tabs. My preferred variant would be a new
column in the list, with drop-down controls, where one could choose the scope
of the shortcut.

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

[Bug 159280] New: In word processing software,Please allow batch insertion of many pictures at a time.Please allow all content to be exported as several pictures instead of one.

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159280

Bug ID: 159280
   Summary: In word processing software,Please allow batch
insertion of many pictures at a time.Please allow all
content to be exported as several pictures instead of
one.
   Product: LibreOffice
   Version: 24.2.0.0 beta1+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 250670...@qq.com

Description:
In word processing software,Please allow batch insertion of many pictures at a
time.Please allow all content to be exported as several pictures instead of
one.

Actual Results:
In word processing software,Please allow batch insertion of many pictures at a
time.Please allow all content to be exported as several pictures instead of
one.

Expected Results:
In word processing software,Please allow batch insertion of many pictures at a
time.Please allow all content to be exported as several pictures instead of
one.


Reproducible: Always


User Profile Reset: No

Additional Info:
In word processing software,Please allow batch insertion of many pictures at a
time.Please allow all content to be exported as several pictures instead of
one.

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

[Bug 159079] With NumLock off in Numpad, then with Alt pressed the Num Pad arrow keys should not operate

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159079

Mike Kaganski  changed:

   What|Removed |Added

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

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

[Bug 98259] [META] Keyboard shortcuts and accelerators bugs and enhancements

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98259
Bug 98259 depends on bug 159079, which changed state.

Bug 159079 Summary: With NumLock off in Numpad, then with Alt pressed the Num 
Pad arrow keys should not operate
https://bugs.documentfoundation.org/show_bug.cgi?id=159079

   What|Removed |Added

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

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

[Bug 158761] Add Show/Hide comment or Show all Comments command to right click menu of comments in Calc Navigator

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158761

--- Comment #4 from ady  ---
I'm not sure anymore in/to which enhancement request I should post feedback (of
the several reports opened in the last few weeks related to adding UI features
regarding comments in Calc).

In the cell’s context / right click menu, we used to have (until LO 7.6
included):

* for cells with no comments, 1 entry "Insert Comment";

* for cells that already have a comment, 3 entries: Edit, Delete, Show comment
(or Hide Comment instead of the latest, still 3 entries max).

After the changes related to Calc comments introduced in the last few weeks, we
now have, at all times, permanently, unconditionally, 5 items in the cell's
context menu: Insert, Edit, Delete, Show, Hide Comments.

Moreover, if we select/focus on just one cell, only part of these 5 items can
be applied at any time:

* without a comment, only 1 item is usable, 4 are wasting screen space and
bothering (which clearly explains the 2+ different alternative menus I
described above).

* in a cell with a comment, 2 items are not usable.

Insert Comment cannot be usable at the same time as Edit Comment, ever, so
what’s the point of having them simultaneously in the context menu? Similarly,
Show and Hide Comment should not be displayed simultaneously, and not at all
when there is no comment to be shown nor hidden. I could describe each and
every item and conditions, but probably you get the point by now.

When selecting _more than 1_ cell, of which some have a comment and some do
not, the result of each of these items is unclear/undefined, which makes them
even more confusing and more of a waste (of screen usability / visibility, if
nothing else). OTOH, I can think of several alternatives that might result
useful in some situations.

I hope this new permanent waste and abuse of screen areas can be reduced to a
minimum, not more than the really necessary; more similar to what it used to be
until recently.

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

[Bug 158112] Sidebar pane shortcuts conflict with Alt+NumPad input (comment 5, comment 9)

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158112

V Stuart Foote  changed:

   What|Removed |Added

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

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

[Bug 120753] EDITING: Add option to extend number of Favorites and Recents for Special Characters

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120753

--- Comment #11 from V Stuart Foote  ---
*** Bug 159270 has been marked as a duplicate of this bug. ***

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

[Bug 159270] expand favorite/recent character selection

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159270

V Stuart Foote  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||8112
 Resolution|INVALID |DUPLICATE
 CC||vsfo...@libreoffice.org

--- Comment #2 from V Stuart Foote  ---
The MS Windows +Numpad entry for character codes (OEM, Windows and Unicode
SMB as decimal values) have been restored (and now enhanced, full Unicode SMB
in decimal) for the 24.2 release. See also bug 158112

While LibreOffice's Alt+X toggle of Unicode as Hex value entry has provided
this for cross platform use for some time.

The rework/enhancement of the Favorites/Recents character bars, extending
beyond the current 16 glyphs is open as bug 120753

Setting dupe of that.

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

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

[Bug 159279] New: Starting with a defined page number -- error in directions in Help

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159279

Bug ID: 159279
   Summary: Starting with a defined page number -- error in
directions in Help
   Product: LibreOffice
   Version: 7.6.4.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: j.a.sw...@gmail.com
CC: olivier.hal...@libreoffice.org

Created attachment 192052
  --> https://bugs.documentfoundation.org/attachment.cgi?id=192052=edit
Highlighted text on page 2 of this document tells the error & what the Help
text shoudl say

As reported here -- 

https://ask.libreoffice.org/t/how-do-i-begin-page-numbers-on-page-2-in-writer/3330/2

--the Help file in Writer gives erroneous directions for starting with a
defined page number. 

The attached file, in the highlighted text on page 2, tells the error and
supplies the correct instructions.

By the way: Users looking for how to begin with a defined page number are
likely to look under "Footers" or "Headers" (and not find what they're looking
for). Having links in those places would help.

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

[Bug 159278] New: API call to XStorable.storeToURL with Password does not work for DOCX output

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159278

Bug ID: 159278
   Summary: API call to XStorable.storeToURL with Password does
not work for DOCX output
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: filters and storage
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: paul.jow...@systemic.com.au

Using XStorable.storeToURL(url, args) and adding a "Password" to args allows an
"open password" (ie "read password") to be set on the stored document.

This works as expected for ODT and DOC formats - when the documents are opened
the user is prompted for a password.

It does not seem to work when storing in DOCX format (filter "MS Word 2007
XML") - the saved document can simply be opened and viewed.

Is this a bug or is there a different way to set the open-password on a DOCX
file?  I see MediaDescriptor also mentions EncryptionData, can that be used? 
If so, is there any information available as to how to do so?

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

[Bug 155856] Port C++ SDK examples make files to cmake / qmake

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155856

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Bug 159014] Libre Office opens in the wrong monitor

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159014

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Bug 158740] Crash at undo after pasting table in footnote

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158740

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Bug 156358] VIEWING: Calc AutoInput (pop up formula editing helper) hides the formula [Flatpak]

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156358

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

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.

[Bug 155307] Libreoffice crashes every time on iMac with M1 CPU

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155307

--- Comment #11 from QA Administrators  ---
Dear Tom Lin,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Bug 72388] Fileopen docx: the width of some columns changed in table with Preferred width

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72388

--- Comment #13 from QA Administrators  ---
Dear bugzilla,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Bug 146833] Cut selected text from chart element will cut the whole element

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146833

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Bug 146453] Unstable kerning when deleting line of text with track changes enabled & show changes visible

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146453

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Bug 159129] Cross Reference not working in LO 2.6.4 Writer

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159129

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Bug 158740] Crash at undo after pasting table in footnote

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158740

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

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

[Bug 159129] Cross Reference not working in LO 2.6.4 Writer

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159129

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

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

[Bug 156423] Twice on successive days the programme has not saved my input. !st time was a new worksheet, named and saved, 2nd time ditto but on a new page in an existing work book

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156423

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

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.

[Bug 155307] Libreoffice crashes every time on iMac with M1 CPU

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155307

QA Administrators  changed:

   What|Removed |Added

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

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

[Bug 130062] Draw: Page/Move not working but Page/Navigate works fine.

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130062

--- Comment #5 from QA Administrators  ---
Dear Stepan Novotny,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Bug 146664] Image jumps to different page at undo

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146664

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Bug 159067] PDF export from Calc creates untagged objects from form control marked as decorative

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159067

Tibor Nagy  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |tibor.nagy.extern@allotropi
   |desktop.org |a.de

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

core.git: Branch 'distro/collabora/co-24.04' - external/mdds

2024-01-18 Thread Aron Budea (via logerrit)
 external/mdds/gcc-12-silence-use-after-free.patch.1 |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 780e8c77fe6b93978db94601ffba200a5f2101b8
Author: Aron Budea 
AuthorDate: Wed Jan 17 02:54:34 2024 +1030
Commit: Aron Budea 
CommitDate: Fri Jan 19 11:33:56 2024 +1030

silence use-after-free warning in mdds for gcc12.3 in optimized build

Follow-up to e7c4166f1e150b10bc2ac52e93f8ad7503db09dc as GCC 12.3
seems to be affected, too.

Change-Id: I8e5ba9be64625ffd21d43e627996a9ea8602ce9e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162181
Tested-by: Jenkins
Reviewed-by: Aron Budea 
(cherry picked from commit 5d52d7dcdf07e5d117e9854af5956b2e93ad3e46)

diff --git a/external/mdds/gcc-12-silence-use-after-free.patch.1 
b/external/mdds/gcc-12-silence-use-after-free.patch.1
index 3f8dd0afe0f3..94f7ba979e61 100644
--- a/external/mdds/gcc-12-silence-use-after-free.patch.1
+++ b/external/mdds/gcc-12-silence-use-after-free.patch.1
@@ -28,13 +28,13 @@ diff -ur mdds.org/include/mdds/node.hpp 
mdds/include/mdds/node.hpp
  {
 ---p->refcount;
 -if (!p->refcount)
-+#if defined __GNUC__ && __GNUC__ == 12 && __GNUC_MINOR__ < 3 && !defined 
__clang__
++#if defined __GNUC__ && __GNUC__ == 12 && __GNUC_MINOR__ <= 3 && !defined 
__clang__
 +#pragma GCC diagnostic push
 +#pragma GCC diagnostic ignored "-Wuse-after-free"
 +#endif
 +if(--p->refcount == 0)
  delete p;
-+#if defined __GNUC__ && __GNUC__ == 12 && __GNUC_MINOR__ < 3 && !defined 
__clang__
++#if defined __GNUC__ && __GNUC__ == 12 && __GNUC_MINOR__ <= 3 && !defined 
__clang__
 +#pragma GCC diagnostic pop
 +#endif
  }


[Bug 159277] It would be nice to have an exclude file type option from Recent Files.

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159277

m_a_riosv  changed:

   What|Removed |Added

   Severity|minor   |enhancement

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

[Bug 159276] Enhancement: Pop-up menu "Replace ..." add "from clipboard"

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159276

m_a_riosv  changed:

   What|Removed |Added

   Severity|normal  |enhancement

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

[Bug 159270] expand favorite/recent character selection

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159270

m_a_riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID
 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m_a_riosv  ---
This is not a way to report.

One issue by report, please.

About Alt+number please take a look on:
https://ask.libreoffice.org/t/regression-cannot-enter-alt-number-codes-for-unicode-symbols-anymore-after-updating-to-libreoffice-7-6-3-2/99658

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

[Bug 159268] add repagination button

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159268

m_a_riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m_a_riosv  ---
The issue happens with not expected page breaks on some pages like 708 and 728.
After Menu/Tools/Update/Update all, it works fine for me.

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

[Bug 159277] New: It would be nice to have an exclude file type option from Recent Files.

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159277

Bug ID: 159277
   Summary: It would be nice to have an exclude file type option
from Recent Files.
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: iea...@ielogical.com

If one works with a bunch of .csv files, they get added to the Recent list,
clearing all the actual LO files.

Usually when importing a csv, tab or txt file, it's intermediate data to be
analyzed or formatted in an Office app.

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

[Bug 159260] Print preview does not show comment boxes. No options to show comment boxes in print preview.

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159260

m_a_riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #2 from m_a_riosv  ---
Created attachment 192051
  --> https://bugs.documentfoundation.org/attachment.cgi?id=192051=edit
Screenshot showing the option

There is an option for comments and where to show them, in the tab
[LibreOfficeDev Writer]

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

[Bug 159260] Print preview does not show comment boxes. No options to show comment boxes in print preview.

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159260

m_a_riosv  changed:

   What|Removed |Added

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

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

[Bug 159256] Missing indentation for enumeration

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159256

m_a_riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m_a_riosv  ---
Please attach a sample file, and paste the information in Menu/Help/About
LibreOffice, there is an icon to copy.

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

[Bug 159255] Footnote list style doesn't take on customize attributes

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159255

m_a_riosv  changed:

   What|Removed |Added

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

--- Comment #2 from m_a_riosv  ---
Please attach a sample file, and paste the information in Menu/Help/About
LibreOffice, there is an icon to copy.

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

[Bug 159254] Paper tray settings ignored in rtf and docx import

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159254

m_a_riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m_a_riosv  ---
Do you have active Menu/Tools/Options/Load and save/General - Load printer
settings with document?

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

[Bug 159253] Not possible to change column headers in some charts created in Calc after pasting in Writer

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159253

m_a_riosv  changed:

   What|Removed |Added

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

--- Comment #3 from m_a_riosv  ---
Reproducible
Version: 7.6.4.1 (X86_64) / LibreOffice Community
Build ID: e19e193f88cd6c0525a17fb7a176ed8e6a3e2aa1
CPU threads: 16; OS: Windows 10.0 Build 22631; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US
Calc: CL threaded
and
Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 83c1df8e524cc74c6d1afcadb3cccba5ef2eb123
CPU threads: 16; OS: Windows 10.0 Build 22631; UI render: Skia/Vulkan; VCL: win
Locale: es-ES (es_ES); UI: en-US
Calc: CL threaded

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

core.git: sw/qa xmloff/inc xmloff/source

2024-01-18 Thread László Németh (via logerrit)
 sw/qa/extras/odfexport/data/tdf106733.fodt |   66 +
 sw/qa/extras/odfexport/odfexport2.cxx  |   20 
 xmloff/inc/xmlprop.hxx |1 
 xmloff/source/text/txtprmap.cxx|4 -
 4 files changed, 89 insertions(+), 2 deletions(-)

New commits:
commit 73bd04a71e741788a2f2f3b26cc46ddb6a361372
Author: László Németh 
AuthorDate: Thu Jan 18 14:53:24 2024 +0100
Commit: László Németh 
CommitDate: Fri Jan 19 00:42:36 2024 +0100

tdf#106733 xmloff: keep fo:hyphenate in character formatting

In the case of character formatting, map fo:hyphenate to the
unused CharNoHyphenation character property to keep it
during ODF import/export instead of losing it completely.

This is the first step to disable hyphenation for single
words or text spans in paragraphs with automatic hyphenation.

Note: using fo:hyphenate as character property is part of
the ODF standard.

Note: the old workaround to disable hyphenation, changing
the language of the text to None had got some serious fallbacks:
losing spell checking and losing language-dependent text
layout (supported by both OpenType and Graphite font engines
in LibreOffice).

Change-Id: I9565c3efbbb6e6d970fb03710e8c932ad72ab57e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162257
Tested-by: Jenkins
Reviewed-by: László Németh 

diff --git a/sw/qa/extras/odfexport/data/tdf106733.fodt 
b/sw/qa/extras/odfexport/data/tdf106733.fodt
new file mode 100644
index ..fa9a02440573
--- /dev/null
+++ b/sw/qa/extras/odfexport/data/tdf106733.fodt
@@ -0,0 +1,66 @@
+
+
+http://www.w3.org/TR/css3-text/; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:xlink="http://www.w3.org/1999/xlink; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dc="http://purl.org/dc/elements/1.1/; xmlns:c
 alcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" 
xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" 
xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0"
 xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:officeooo="http://openoffice.org/2009/office; 
xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" 
xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:
 meta:1.0" 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
+ 
+  
+ 
+ 
+  
+   
+   
+  
+  
+  
+   
+  
+  
+   
+   
+  
+  
+   
+  
+ 
+ 
+  
+   
+   
+   
+  
+  
+   
+   
+   
+  
+  
+   
+  
+  
+   
+  
+  
+   
+  
+  
+   
+
+   
+   
+   
+  
+ 
+ 
+  
+ 
+ 
+  
+   Hyphenate
+   The Earth is no different to any other 
celestial body out there in space. It merely moves along in space inertially. 
Even just one inch above the surface of the Earth is space, except that it has an atmosphere.
+   Don’t hyphenate (direct 
formatting)
+   The Earth is no different to any other 
celestial body out there in space. It merely moves along in space inertially. 
Even just one inch above the surface of the Earth is space, except that it has an atmosphere.
+   Don’t hyphenate 
(character style)
+   The Earth is no different to any other 
celestial body out there in space. It merely moves along in space inertially. 
Even just one inch above the surface of the Earth is space, except that it has an 
atmosphere.
+   
+  
+ 
+
diff --git a/sw/qa/extras/odfexport/odfexport2.cxx 
b/sw/qa/extras/odfexport/odfexport2.cxx
index b64811866a10..708a4f94cba0 100644
--- 

[Bug 81956] FILEOPEN: Z-ordering of GroupShape not preserved properly for docx file.

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81956

Justin L  changed:

   What|Removed |Added

Summary|FILEOPEN: Z-ordering of |FILEOPEN: Z-ordering of
   |shape not preserved |GroupShape not preserved
   |properly for docx file. |properly for docx file.

--- Comment #13 from Justin L  ---
SimpleShape::createPictureObject looks like a good starting point to debug
this.

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

[Bug 155856] Port C++ SDK examples make files to cmake / qmake

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155856

--- Comment #2 from Hossein  ---
(In reply to dev.limarev from comment #1)
> If you don't mind I'd be happy to assign it
There is an ongoing work for this issue, and I am going to merge this patch
soon:

tdf#155856 Port C++ SDK example make file to cmake / qmake
https://gerrit.libreoffice.org/c/core/+/153540

Once it is merged, you can use this patch as a blueprint, and do the same for
other SDK examples.

Anyway, this is a multi-hacker EasyHack, so you can work on it without
assigning to yourself.

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

[Bug 151352] CRASH: closing form while the tip of the day dialog is displayed

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151352

--- Comment #23 from Matt K  ---
(In reply to Stéphane Guillou (stragu) from comment #22)
> In any case, I have also checked what it looked like before Noel's 
> 8d485ec0cd35ee1ae7684f2b6ca96c0f0c6f9dac (build
> [157f236d1084aba087e3dcd66d8cfac5e95a7a91] in linux-64-7.2 bibisect repo)
> and it turns out the gtk3 crash predates it.
> 
> It actually started when TOTD was mad non-modal with:
> 
> commit 7f032b2f16fad56beea1df826eb59c6f85c71268
> authorMatt K Sat Apr 03 01:24:30 2021 -0500
> committer Heiko Tietze Tue May 18 09:02:22 2021 +0200
> tdf#127533 Make Tip-of-the-Day dialog non-modal and allow multiple tips to
> open 
> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113782
> 
> (build [7f290d4dc4dc59f2eaa5de3d0948c13eeff2a3d5] in linux-64-7.2 bibisect
> repo)
> 
> Matt, can you please have a look?
> Would be good to check what might have fixed it in current trunk (to see if
> we can get it into 24.2).

The only GTK3 crash I remember is tdf#142370 which was fixed by Caolan awhile
ago.

I just tried to repro this on Windows and could not, the tip-of-the-day dialog
disappears when closing the database form.  Tested with:

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 9226cda52fd1c1a2bbca12bb4a761d49c9678833
CPU threads: 16; OS: Windows 10.0 Build 22631; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

Can't you bibisect or bisect to find out the cause?

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

[Bug 131513] List Bullets and Numbers work in PDF but don't make it to EPUB

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131513

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||dolez...@cvut.cz

--- Comment #5 from Stéphane Guillou (stragu) 
 ---
*** Bug 159122 has been marked as a duplicate of this bug. ***

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

[Bug 159122] LO Writer: ePub export removes header numbering

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159122

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Thank you for the report. I assume this is the same issue as bug 131513, as
numbering of lists and headers is the same system.
Marking as duplicate.

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

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

[Bug 155856] Port C++ SDK examples make files to cmake / qmake

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155856

--- Comment #1 from dev.lima...@icloud.com ---
If you don't mind I'd be happy to assign it

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

[Bug 159276] New: Enhancement: Pop-up menu "Replace ..." add "from clipboard"

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159276

Bug ID: 159276
   Summary: Enhancement: Pop-up menu "Replace ..." add "from
clipboard"
   Product: LibreOffice
   Version: 7.6.4.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bun...@gmail.com

Created attachment 192050
  --> https://bugs.documentfoundation.org/attachment.cgi?id=192050=edit
Pop-up menu showing "Replace..."

When working in a Writer Document, it would be very helpful if you could select
the image that you wish to change by replacing directly from the pop-up menu.

You are able to select an image and "Edit:Paste special" to directly replace an
image from the clip board.

At the moment the pop-up menu has only "Replace..." which will only select an
image file (jpg|png|gif).  

It would be really helpful if you could use the same pop-up menu to replace an
image from the clipboard.

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

[Bug 159175] 2 GB of ram used when clicking open new calc document 10 times

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159175

Telesto  changed:

   What|Removed |Added

Version|24.8.0.0 alpha0+ Master |7.6.0.3 release
 OS|All |macOS (All)

--- Comment #2 from Telesto  ---
1,7 gb with
Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 383e68da6c429c243c1e7be6699acaa942b712bc
CPU threads: 8; OS: Mac OS X 13.6.3; UI render: Skia/Raster; VCL: osx
Locale: nl-NL (nl_NL.UTF-8); UI: en-US
Calc: threaded

1,53 with
Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 1cfeb4bd8ce7f7727a81136bd3e2d6ebea976895
CPU threads: 8; OS: Mac OS X 13.6.3; UI render: Skia/Raster; VCL: osx
Locale: nl-NL (nl_NL.UTF-8); UI: en-US
Calc: threaded

816 mb with osx and 1,09 gb with skia raster using
Version: 7.5.0.3 (X86_64) / LibreOffice Community
Build ID: c21113d003cd3efa8c53188764377a8272d9d6de
CPU threads: 8; OS: Mac OS X 13.6.3; UI render: default; VCL: osx
Locale: nl-NL (nl_NL.UTF-8); UI: en-US
Calc: threaded

1,1 GB with
Version: 7.2.0.4 / LibreOffice Community
Build ID: 9a9c6381e3f7a62afc1329bd359cc48accb6435b
CPU threads: 8; OS: Mac OS X 10.16; UI render: default; VCL: osx
Locale: nl-NL (nl_NL.UTF-8); UI: en-US
Calc: threaded

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

[Bug 159129] Cross Reference not working in LO 2.6.4 Writer

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159129

Paddy  changed:

   What|Removed |Added

 Attachment #191926|0   |1
is obsolete||

--- Comment #8 from Paddy  ---
Created attachment 192049
  --> https://bugs.documentfoundation.org/attachment.cgi?id=192049=edit
Original LO Writer document with cross reference links

The links are all visible and functioning in LO 7.5.4 but are both invisible
and non-functioning in LO 7.6.4 (as per previous image)

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

[Bug 159274] 7.6.4-1 Error in type, when installing

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159274

--- Comment #1 from Anthony Della Cioppa  ---
Processing triggers for shared-mime-info (2.1-2) ...

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

[Bug 149114] LibreOffice crashed on closing the tip of the day

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149114

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Bug 151352] CRASH: closing form while the tip of the day dialog is displayed

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151352

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||matt...@gmail.com,
   ||stephane.guillou@libreoffic
   ||e.org
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||7533,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||2370,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||9114
Crash report or||["virtual thunk to
crash signature||(anonymous
   ||namespace)::GtkInstanceWind
   ||ow::GetXWindow() [clone
   ||.lto_priv.0]"]
  Regression By||Matt K
 Blocks||133092, 125257

--- Comment #22 from Stéphane Guillou (stragu) 
 ---
For the gen VCL plugin, I can confirm that there's no crash anymore in 24.2 and
a current trunk build: the TOTD dialog closes at the same time as the form
editor. Thanks Noel!

For the gtk3 VCL plugin, I can still reproduce with comment 0 steps in 24.2:

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

with crash report
https://crashreport.libreoffice.org/stats/crash_details/6f341008-c705-4a86-8350-7cd7809fea76

However, no repro in current trunk build:

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

So something might have fixed it since?

In any case, I have also checked what it looked like before Noel's 
8d485ec0cd35ee1ae7684f2b6ca96c0f0c6f9dac (build
[157f236d1084aba087e3dcd66d8cfac5e95a7a91] in linux-64-7.2 bibisect repo) and
it turns out the gtk3 crash predates it.

It actually started when TOTD was mad non-modal with:

commit  7f032b2f16fad56beea1df826eb59c6f85c71268
author  Matt K Sat Apr 03 01:24:30 2021 -0500
committer   Heiko Tietze Tue May 18 09:02:22 2021 +0200
tdf#127533 Make Tip-of-the-Day dialog non-modal and allow multiple tips to open 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113782

(build [7f290d4dc4dc59f2eaa5de3d0948c13eeff2a3d5] in linux-64-7.2 bibisect
repo)

Matt, can you please have a look?
Would be good to check what might have fixed it in current trunk (to see if we
can get it into 24.2).


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=125257
[Bug 125257] [META] Tip of the day
https://bugs.documentfoundation.org/show_bug.cgi?id=133092
[Bug 133092] [META] Crash bugs
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 36310] [EDITING]"Insert cross-reference" drag-n-drop mode for navigator

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=36310

--- Comment #32 from Jim Raykowski  ---
The latest version of the patch:

- Adds the ability to insert a cross-reference to a 'References' entry by
dragging from the Navigator into the document.

- Makes dragging entries that only work in one drag mode ignore the set drag
mode and use the only mode available, i.e, dragging references, field number
range types, footnotes, and endnotes will always result in a cross-reference
insert. Dragging hyperlinks will always result in a hyperlink insert.

- Removes overriding the set drag mode by using a key modifier during drag.
More thought is needed on this.

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

[Bug 149114] LibreOffice crashed on closing the tip of the day

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149114

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME

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

[Bug 133092] [META] Crash bugs

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||151352


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=151352
[Bug 151352] CRASH: closing form while the tip of the day dialog is displayed
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 125257] [META] Tip of the day

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125257

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||151352


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=151352
[Bug 151352] CRASH: closing form while the tip of the day dialog is displayed
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 125257] [META] Tip of the day

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125257

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Depends on||159275


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=159275
[Bug 159275] Make it possible to add custom per-deployment Tips, disable
default ones
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 159275] New: Make it possible to add custom per-deployment Tips, disable default ones

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159275

Bug ID: 159275
   Summary: Make it possible to add custom per-deployment Tips,
disable default ones
   Product: LibreOffice
   Version: 24.8.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com
Blocks: 125257

It would be useful to have some way to add custom tips to display in the ToD
dialog, specific to large deployments, and disable the default ones one-by-one
or category-by-category.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=125257
[Bug 125257] [META] Tip of the day
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 81956] FILEOPEN: Z-ordering of shape not preserved properly for docx file.

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81956

Justin L  changed:

   What|Removed |Added

Version|4.4.0.0.alpha0+ Master  |4.0.0.3 release

--- Comment #12 from Justin L  ---
somewhere in between the 4.0.0 and 4.0.2 timeframe, the 30/couple object
changed from being imported as an inline (as-character) thing to an
in-the-background floating thing.

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

[Bug 76029] Impress with 2 display : Slides view doesn't auto-scroll in presenter console with navigation by Next or with arrow key (out of screen if enough slides so non-visible)

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76029

--- Comment #8 from thierryR  ---
This bug is very old. Ten years  

It's still there and never resolved.
However, the Microsoft slideshow works well

Steps to reproduce
- open a presentation with many slides
- launch presentation with 2 display
- switch to "slide mode" in presenter console
- navigate through slides by pressing arrow keys or mouse button

Expected behavior :
- active slide should stay visible in presenter console

Current behavior :
- active slide disappears in presenter console

Setup :
LibreOffice 7.6.4 
Impress 
using 2 Display and presenter console

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

[Bug 73976] FILESAVE ODT->DOCX: grouped drawing objects gets arrows slightly moved and changed front/back order

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73976

Justin L  changed:

   What|Removed |Added

 OS|Windows (All)   |All
Summary|FILESAVE DOC/X: grouped |FILESAVE ODT->DOCX: grouped
   |drawing objects gets arrows |drawing objects gets arrows
   |slightly moved and changed  |slightly moved and changed
   |front/back order|front/back order
   Hardware|Other   |All
 Whiteboard|BSA |

--- Comment #27 from Justin L  ---
This bug report is affected by compat15 layout issues.
Since 7.0, LibreOffice exports ODT->DOCX as compat15. In the case of compat15
(MS Word 2013+) the arrows are supposed to show up above the shape. So the
import side is fine since both non-obsolete MS Word and LibreOffice see it the
same way.

That confirms that this is an export issue. I'm not sure how valid it is though
because MS formats have a limitation where they ignore settings like behindDoc
in the current situation. So unless the exporter
1.) becomes aware that the current situation is problematic for modern MS DOCX
2.) emulates some kind of workaround to get the desired effect.
this problem will persist (until an ancient MS Word user round-trips it).

Since the "desired effect" is very much in the eye of the beholder (I mean,
does LO really know that two things are actually overlapping each other and
that it actually matters) this is practically speaking a WONTFIX.

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

[Bug 159274] New: 7.6.4-1 Error in type, when installing

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159274

Bug ID: 159274
   Summary: 7.6.4-1 Error in type, when installing
   Product: LibreOffice
   Version: 7.6.4.1 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Installation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: adell...@sacoriver.net

Description:
Setting up libreoffice7.6-debian-menus (7.6.4-1) ...
Error in type 'unknown/unknown' (in
/usr/share/mime/packages/install4j_1bic2el-application.pdf;application.x-gzpdf;application.x-bzpdf;application.x-xzpdf;application.x-ext-pdf.xml):
Invalid MIME-type
'application/pdf;application/x-gzpdf;application/x-bzpdf;application/x-xzpdf;application/x-ext-pdf'.

Steps to Reproduce:
1.sudo dpkg -i *.deb
2.Let it get to "Setting up libreoffice7.6-debian-menus (7.6.4-1)"
3.Error in type

Actual Results:
Error in type 'unknown/unknown' (in
/usr/share/mime/packages/install4j_1bic2el-application.pdf;application.x-gzpdf;application.x-bzpdf;application.x-xzpdf;application.x-ext-pdf.xml):
Invalid MIME-type
'application/pdf;application/x-gzpdf;application/x-bzpdf;application/x-xzpdf;application/x-ext-pdf'.

Expected Results:
no error


Reproducible: Always


User Profile Reset: No

Additional Info:
Ubuntu 22.04 Desktop

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

[Bug 91400] LibreOffice doesn’t use system font since OS X 10.10+

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91400

Christian Lohmaier  changed:

   What|Removed |Added

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

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

[Bug 159243] Armenian characters displaying incorrectly (as boxes) on macOS (fonts not packaged properly)

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159243

Christian Lohmaier  changed:

   What|Removed |Added

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

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

[Bug 159243] Armenian characters displaying incorrectly (as boxes) on macOS (fonts not packaged properly)

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159243

--- Comment #7 from Christian Lohmaier  ---
(In reply to Adolfo Jayme Barrientos from comment #5)
> (In reply to Christian Lohmaier from comment #2)
> > So bug is twofold [...]
> > * LibreOffice not using a system provided font on macOS [...]
> 
> Yeah, that is bug 91400.

That's not the whole story - even when the San Francisco / the default UI fonts
weren't usable, there's still a version of NotoSansArmenian available by
default/provided by macOS that LO fails to use for the glyph fallback.

So the tofu/mojibake/squares shouldn't happen - poking around I also saw it is
picked up by LO and put into its fontcache... So another question is why LO is
happy with a shipped NotoSansArmenian, but not with the one provided by
macOS...

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

core.git: helpcontent2

2024-01-18 Thread Andrea Gelmini (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d4076bb145590bb10e5cd7e47628169bb9e6c446
Author: Andrea Gelmini 
AuthorDate: Thu Jan 18 22:35:08 2024 +0100
Commit: Gerrit Code Review 
CommitDate: Thu Jan 18 22:35:08 2024 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 0336899f94a12eb46105b28b295eab35894bc969
  - Fix typo

Change-Id: Id7a79a556df5eb131fed95e20e8730cfc1422004
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/162264
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/helpcontent2 b/helpcontent2
index 572f80196951..0336899f94a1 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 572f801969514572d4722d16672ed5739f1e96a4
+Subproject commit 0336899f94a12eb46105b28b295eab35894bc969


help.git: source/text

2024-01-18 Thread Andrea Gelmini (via logerrit)
 source/text/swriter/01/SpotlightCharStyles.xhp |2 +-
 source/text/swriter/01/SpotlightParaStyles.xhp |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 0336899f94a12eb46105b28b295eab35894bc969
Author: Andrea Gelmini 
AuthorDate: Thu Jan 18 20:34:55 2024 +0100
Commit: Julien Nabet 
CommitDate: Thu Jan 18 22:35:08 2024 +0100

Fix typo

Change-Id: Id7a79a556df5eb131fed95e20e8730cfc1422004
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/162264
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/source/text/swriter/01/SpotlightCharStyles.xhp 
b/source/text/swriter/01/SpotlightCharStyles.xhp
index 9c2e063d11..c2b8f026d6 100644
--- a/source/text/swriter/01/SpotlightCharStyles.xhp
+++ b/source/text/swriter/01/SpotlightCharStyles.xhp
@@ -28,7 +28,7 @@
 
 
 
-Character style 
spotlight displays the styled characters with a background color and a call-out 
with an unique number for each applied character style in the document. The 
background color and call-out number are also displayed in the corresponding 
character entry in the Styles deck on the 
sidebar.
+Character style 
spotlight displays the styled characters with a background color and a call-out 
with a unique number for each applied character style in the document. The 
background color and call-out number are also displayed in the corresponding 
character entry in the Styles deck on the 
sidebar.
 Character styles are not given a color and 
call-out number until they are applied in the document.
 When the extended tips features is enabled in 
%PRODUCTNAME - 
PreferencesTools – 
Options – LibreOffice – 
General, a tooltip shows the style name and many attributes of the 
style applied.
 Character direct 
formatting attributes are Font, 
Font Effects, Position, Asian Layout, Hyperlink, Highlighting and Borders.  
diff --git a/source/text/swriter/01/SpotlightParaStyles.xhp 
b/source/text/swriter/01/SpotlightParaStyles.xhp
index c78df41adb..783813deb7 100644
--- a/source/text/swriter/01/SpotlightParaStyles.xhp
+++ b/source/text/swriter/01/SpotlightParaStyles.xhp
@@ -28,7 +28,7 @@
 
 
 
-Paragraph spotlight 
displays a color and an unique number code for each applied paragraph style in 
the document. The color and number are also displayed in the corresponding 
paragraph entry in the Styles deck on the 
sidebar.
+Paragraph spotlight 
displays a color and a unique number code for each applied paragraph style in 
the document. The color and number are also displayed in the corresponding 
paragraph entry in the Styles deck on the 
sidebar.
 Paragraph styles are not given a color and 
number until they are applied in the document.
  in addition to the 
color and unique number assigned to the style, paragraphs with paragraph direct 
formatting attributes are indicated with a hash pattern in the visual indicator 
on the left margin.
 When the extended tips features is enabled in 
%PRODUCTNAME - 
PreferencesTools – 
Options – LibreOffice – 
General, a tooltip shows the style name and many attributes of the 
style applied.


[Bug 159263] Years old ... bug on installation, WINDOWS ( my = 10 ); i assume " reg - keys are not examined "

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159263

--- Comment #5 from Julien Nabet  ---
Please make simple sentences (subject-verb-complement), stop the gibberish
style and focus on the bug instead of using irony/"fun" stuff.
Then just answer Mike's question.

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

[Bug 159273] Refresh the page in Greencart and verify if items are present the cart

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159273

Julien Nabet  changed:

   What|Removed |Added

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

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

[Bug 159273] Refresh the page in Greencart and verify if items are present the cart

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159273

Julien Nabet  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

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

[Bug 159273] New: Refresh the page in Greencart and verify if items are present the cart

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159273

Bug ID: 159273
   Summary: Refresh the page in Greencart and verify if items are
present the cart
   Product: LibreOffice
   Version: 3.3.0 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: swathi.t...@gmail.com

Description:
Refresh the page and verify if items are present the cart

Steps to Reproduce:
1.Refresh the page and verify if items are present the cart
2.Add items to cart
3. Verify cart count greater then 0
Refresh the page

Actual Results:
Refresh the page in Greencart and verify if items are present the cart

Expected Results:
Cart count should not reset


Reproducible: Always


User Profile Reset: No

Additional Info:
Verify cart

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

[Bug 159272] New: Closing LibreOffice with a copy of large range of cells on the clipboard (from a 47KB sized file) triggers a 5 GB ram spike on close

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159272

Bug ID: 159272
   Summary: Closing LibreOffice with a copy of large range of
cells on the clipboard (from a 47KB sized file)
triggers a 5 GB ram spike on close
   Product: LibreOffice
   Version: 24.8.0.0 alpha0+ Master
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Closing LibreOffice with a copy of large range of cells on the clipboard (from
a 47KB sized file) triggers a 5 GB ram spike on close

Steps to Reproduce:
1. Open attachment 139120 (bug 117997) (file-size 47 KB!)
2. Open a process monitoring tool showing ram usage
3. Download https://www.nirsoft.net/utils/insideclipboard.zip (or some other
clipboard viewer)
3. Select the range A1:ACQ114
4. CTRL+C
5. CTRL+Q -> See RAM usage pike at 5 GB and combined with high CPU usage
6. Launch inside clipboard to inspect the content

Actual Results:
* Insane amount of ram used for a 47 KB file
* Information is added to the clipboard in a plethora of formats including
Windows Bitmap (714 MB) & CF_DIB (714 MB). Necessary?

Expected Results:
* No massive ram spike
* Is it necessary to add a Bitmap of the sheet to the clipboard? Even twice;
using different formats? 


Reproducible: Always


User Profile Reset: No

Additional Info:
Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 25276df12abd9d002f7f899900434617b256f745
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL threaded

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

[Bug 154959] Brother QL500 and QL700 label printers no longer rotate to landscape

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154959

--- Comment #6 from rudderd...@freedom.nl ---
Created attachment 192048
  --> https://bugs.documentfoundation.org/attachment.cgi?id=192048=edit
File dialog on Archlinux. Unexpected behavior and prints according to incorrect
preview

The error seems not related to the version of LO. Rather it seems to depend on
the used Linux distribution. Both screenshots are taken with LO 7.6.4.1.

Sorry for the duplicate screenshot, I am unable to delete it or change the
picture.

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

[Bug 112969] [META] DOCX (OOXML) field-related issues

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112969

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Depends on||159271


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=159271
[Bug 159271] FILEOPEN DOCX Dropdown fields became very narrow and tall
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 150037] Upon entering a legacy text fieldmark, placeholder text should be recognized as default text and thus pre-selected (so typing overwrites)

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150037

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

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

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

[Bug 159271] New: FILEOPEN DOCX Dropdown fields became very narrow and tall

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159271

Bug ID: 159271
   Summary: FILEOPEN DOCX Dropdown fields became very narrow and
tall
   Product: LibreOffice
   Version: 24.8.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com
CC: mikekagan...@hotmail.com
Blocks: 112969

Created attachment 192047
  --> https://bugs.documentfoundation.org/attachment.cgi?id=192047=edit
The example file in Word 2016 and current master

When attachment 181299 from bug 150037 is opened, some dropdown fields became
very narrow and tall, pushing number of pages to 4 instead of 2.

1. Open attachment 181299
-> tall dropdowns

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 25276df12abd9d002f7f899900434617b256f745
CPU threads: 15; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: de-DE (hu_HU); UI: en-US
Calc: threaded

Started with:

https://git.libreoffice.org/core/+/853e13f9146e83b959bc53152ec103470d55fb4f

author  Mike Kaganski  Fri Dec 29 14:22:23
2023 +0600
committer   Mike Kaganski  Sat Dec 30
09:51:28 2023 +0100

tdf#57187: make sure to put trailing blanks to hole portion in narrow lines

Adding CC to: Mike Kaganski


Referenced Bugs:

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

[Bug 154959] Brother QL500 and QL700 label printers no longer rotate to landscape

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154959

rudderd...@freedom.nl changed:

   What|Removed |Added

 Attachment #192046|Print dialog with correct   |File dialog on Ubuntu
description|preview and expected|23.10. Expected behavior
   |behavior|and prints correctly.

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

[Bug 158885] Hyphenate compound words at stem boundaries within the hyphenation zone

2024-01-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158885

László Németh  changed:

   What|Removed |Added

   See Also||https://bz.apache.org/ooo/s
   ||how_bug.cgi?id=24885

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

  1   2   3   4   >