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

2023-03-21 Thread Noel Grandin (via logerrit)
 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx|2 
 chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx   |2 
 chart2/source/controller/inc/SeriesOptionsItemConverter.hxx|3 -
 chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx |4 +
 chart2/source/controller/itemsetwrapper/SeriesOptionsItemConverter.cxx |   13 
++
 chart2/source/inc/ChartModelHelper.hxx |5 
--
 chart2/source/inc/Diagram.hxx  |7 
---
 chart2/source/inc/RegressionCurveHelper.hxx|2 
 chart2/source/model/main/Diagram.cxx   |   21 
--
 chart2/source/tools/ChartModelHelper.cxx   |8 
---
 chart2/source/tools/RegressionCurveHelper.cxx  |4 -
 11 files changed, 19 insertions(+), 52 deletions(-)

New commits:
commit 949c73f9c35d640c841f03d505e905aa2e1b7a3f
Author: Noel Grandin 
AuthorDate: Thu Mar 16 11:37:03 2023 +0200
Commit: Noel Grandin 
CommitDate: Wed Mar 22 05:57:16 2023 +

use more concrete types in chart2

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

diff --git 
a/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx 
b/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx
index 8961c2731f71..6c0dbe7bce25 100644
--- a/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx
+++ b/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx
@@ -318,7 +318,7 @@ Any WrappedAttachedAxisProperty::getPropertyValue( const 
Reference< beans::XProp
 
 void WrappedAttachedAxisProperty::setPropertyValue( const Any& rOuterValue, 
const Reference< beans::XPropertySet >& xInnerPropertySet ) const
 {
-uno::Reference< chart2::XDataSeries > xDataSeries( xInnerPropertySet, 
uno::UNO_QUERY );
+rtl::Reference< ::chart::DataSeries > xDataSeries( 
dynamic_cast<::chart::DataSeries*>(xInnerPropertySet.get()) );
 
 sal_Int32 nChartAxisAssign = css::chart::ChartAxisAssign::PRIMARY_Y;
 if( ! (rOuterValue >>= nChartAxisAssign) )
diff --git 
a/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx 
b/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx
index 50d4b2c0edd2..79c45ea1d888 100644
--- a/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx
+++ b/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx
@@ -286,7 +286,7 @@ beans::PropertyState 
WrappedSymbolTypeProperty::getPropertyState( const Referenc
 m_spChart2ModelContact)
 {
 rtl::Reference< ::chart::Diagram > xDiagram( 
m_spChart2ModelContact->getDiagram() );
-Reference< chart2::XDataSeries > xSeries( xInnerPropertyState, 
uno::UNO_QUERY );
+rtl::Reference< ::chart::DataSeries > xSeries( 
dynamic_cast(xInnerPropertyState.get()) );
 rtl::Reference< ChartType > xChartType( 
xDiagram->getChartTypeOfSeries( xSeries ) );
 if( ChartTypeHelper::isSupportingSymbolProperties( xChartType, 2 ) )
 return beans::PropertyState_DIRECT_VALUE;
diff --git a/chart2/source/controller/inc/SeriesOptionsItemConverter.hxx 
b/chart2/source/controller/inc/SeriesOptionsItemConverter.hxx
index 886e6ec91b83..b55457ac5b30 100644
--- a/chart2/source/controller/inc/SeriesOptionsItemConverter.hxx
+++ b/chart2/source/controller/inc/SeriesOptionsItemConverter.hxx
@@ -27,6 +27,7 @@ namespace com::sun::star::frame { class XModel; }
 namespace com::sun::star::uno { class XComponentContext; }
 namespace chart { class ChartModel; }
 namespace chart { class BaseCoordinateSystem; }
+namespace chart { class DataSeries; }
 
 namespace chart::wrapper
 {
@@ -37,7 +38,7 @@ public:
 SeriesOptionsItemConverter(
 const rtl::Reference<::chart::ChartModel> & xChartModel,
 css::uno::Reference< css::uno::XComponentContext > xContext,
-const css::uno::Reference< css::beans::XPropertySet > & rPropertySet,
+const rtl::Reference<::chart::DataSeries> & rPropertySet,
 SfxItemPool& rItemPool );
 virtual ~SeriesOptionsItemConverter() override;
 
diff --git a/chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx 
b/chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx
index f415cd194386..e71646cf7a8f 100644
--- a/chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx
+++ b/chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx
@@ -234,8 +234,10 @@ DataPointItemConverter::DataPointItemConverter(
 m_aConverters.emplace_back( new 
CharacterPropertyItemConverter(rPropertySet, rItemPool, pRefSize, 
"ReferencePageSize"));
 if( bDataSeries )
 {
+assert(dynamic_cast(rPropertySet.get()));
 m_aConverters.emplace_back( new 

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

2023-03-21 Thread Andrea Gelmini (via logerrit)
 sc/source/ui/view/tabview.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 30ab88edbbd60e62302a8d08a3cca39bfb0d45a5
Author: Andrea Gelmini 
AuthorDate: Tue Mar 21 23:08:25 2023 +0100
Commit: Julien Nabet 
CommitDate: Wed Mar 22 05:38:22 2023 +

Fix typo

Change-Id: Ibad12225523e0cbfbd5b09abad8f1b31c7d7264e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149274
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/sc/source/ui/view/tabview.cxx b/sc/source/ui/view/tabview.cxx
index dea6dbb7810d..69aef742b345 100644
--- a/sc/source/ui/view/tabview.cxx
+++ b/sc/source/ui/view/tabview.cxx
@@ -1201,7 +1201,7 @@ void ScTabView::ScrollHdl(ScrollAdaptor* pScroll)
 // scroll wheel or trackpad swipe events, most vertical scroll
 // wheel or trackpad swipe events would trigger the anti-jitter
 // code because nScrollPos and nPrevDragPos would be equal and
-// nDelta will be overriden and set to zero. So, only use the
+// nDelta will be overridden and set to zero. So, only use the
 // anti-jitter code for mouse drag events.
 nDelta = GetScrollBarPos(*pScroll) - nViewPos;
 break;


[Libreoffice-bugs] [Bug 154319] New: ToC in DOCX has duplicated LS/LE elements; \d in TOC field gives displaced CI and text elements

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154319

Bug ID: 154319
   Summary: ToC in DOCX has duplicated LS/LE elements; \d in TOC
field gives displaced CI and text elements
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: filter:docx
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com

Created attachment 186130
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186130=edit
ToC with \s and \d

The attached DOCX has a table of contents, having this field code:

  { TOC \o "1-3" \h \z \u \s chapter \d ":" }

The \s and \d define that there is the numbering and a specific separator
(colon) before the page number [1].

It results in this ToC text:

  1 Ch 11:1
  1.1   Subch   1:1
  2 Ch 22:1
  3 Ch 33:1

Open the attached document in Writer, and inspect the ToC entries. They have
the following structure:

  [LS][LS][E#][E][T][#][CI]":" [LE][LE]

Three problems in this structure:
1. [LS] and [LE] (Hyperlink start/end) are duplicated;
2. The colon is enclosed into double quotes, and is followed by a space;
3. [CI] and the colon are displaced, go after [#], while they must precede it.

The resulting text of the ToC (after update) is:

  1 Ch 111":" 
  1.1 Subch 11.1":" 
  2 Ch 212":" 
  3 Ch 313":" 

Version: 7.5.2.1 (X86_64) / LibreOffice Community
Build ID: e8bf3b441b8370f8440b0339fd9490765a8d57ca
CPU threads: 12; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
Locale: ru-RU (ru_RU); UI: en-US
Calc: CL threaded

[1]
https://support.microsoft.com/en-us/office/field-codes-toc-table-of-contents-field-1f538bc4-60e6-4854-9f64-67754d78d05c

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

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

2023-03-21 Thread Andrea Gelmini (via logerrit)
 0 files changed

New commits:
commit dd490103342900a1bab2138555803e53a49894dd
Author: Andrea Gelmini 
AuthorDate: Wed Mar 15 18:58:07 2023 +0100
Commit: Julien Nabet 
CommitDate: Wed Mar 22 05:35:19 2023 +

Remove executable bits from odt

Change-Id: I719c1a156dea095d391f94b42f78f2a8c99b0673
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148938
Reviewed-by: Julien Nabet 
Tested-by: Jenkins

diff --git a/sw/qa/extras/uiwriter/data/tdf40142.odt 
b/sw/qa/extras/uiwriter/data/tdf40142.odt
old mode 100755
new mode 100644


Origin/master build fail

2023-03-21 Thread Franklin Weng

Hi,

Since yesterday when I built from origin/master it always halted with 
the following messages:


[BIN] sc
[MOD] sc
[BIN] postprocess
[GAL] backgrounds
[GAL] sounds
[MOD] postprocess
Aborted (core dumped)
terminate called after throwing an instance of 
'com::sun::star::uno::RuntimeException'
make[1]: *** [/opt/git/libreoffice.core/solenv/gbuild/Gallery.mk:57: 
/opt/git/libreoffice.core/workdir/Gallery/sounds.done] Error 1
make[1]: *** Waiting for unfinished jobs
Aborted (core dumped)
terminate called after throwing an instance of 
'com::sun::star::uno::RuntimeException'
make[1]: *** [/opt/git/libreoffice.core/solenv/gbuild/Gallery.mk:57: 
/opt/git/libreoffice.core/workdir/Gallery/backgrounds.done] Error 1
make: *** [Makefile:289: build] Error 2


If I checked out tag libreoffice-7.5.1.2 it could build successfully, so 
I think it should not be caused by my building environment.


Does anyone experience the same problem?


Thanks, Franklin

--
Franklin Weng
Member, Certification Committee
The Document Foundation, Kurfürstendamm 188, 10707 Berlin, DE
Gemeinnützige rechtsfähige Stiftung des bürgerlichen Rechts
Legal details:https://www.documentfoundation.org/imprint



OpenPGP_signature
Description: OpenPGP digital signature


[Libreoffice-bugs] [Bug 96272] ODG icon isn't displayed

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96272

Rizal Muttaqin  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 96272] ODG icon isn't displayed

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96272

Rizal Muttaqin  changed:

   What|Removed |Added

 CC||riz...@libreoffice.org

--- Comment #12 from Rizal Muttaqin  ---
Not reproducible regardless which icon theme LibreOffice use

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 1f22d01b7ae96a7efa91c9285f3d2f8c37f05237
CPU threads: 8; OS: Linux 5.19; UI render: default; VCL: kf5 (cairo+xcb)
Locale: id-ID (id_ID.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 38305] Symbols in status bar do not follow new Theme in opened document

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=38305

Rizal Muttaqin  changed:

   What|Removed |Added

 CC||riz...@libreoffice.org

--- Comment #14 from Rizal Muttaqin  ---
Still reproducible with

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 1f22d01b7ae96a7efa91c9285f3d2f8c37f05237
CPU threads: 8; OS: Linux 5.19; UI render: default; VCL: kf5 (cairo+xcb)
Locale: id-ID (id_ID.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 96719] UI: Calc icon for "Paste special" + icon "Only numbers" for toolbar

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96719

Rizal Muttaqin  changed:

   What|Removed |Added

 CC||riz...@libreoffice.org

--- Comment #10 from Rizal Muttaqin  ---
Current condition:


1. Paste Special has already present in Calc's right click menu regardless any
content of the clipboard. Each command also received complete icon.

2. Little arrow for drop-down in Paste command of standard toolbar is content
aware of the content of the clipboard, so it just showing what's relevant


I don't know which coherence solution to approach, but the paste option in the
standard toolbar gives more variant even when I copy one active cell containing
the number '1'.

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 1f22d01b7ae96a7efa91c9285f3d2f8c37f05237
CPU threads: 8; OS: Linux 5.19; UI render: default; VCL: kf5 (cairo+xcb)
Locale: id-ID (id_ID.UTF-8); UI: en-US
Calc: threaded

So what expected actually?

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

[Libreoffice-commits] core.git: basic/qa basic/source

2023-03-21 Thread Mike Kaganski (via logerrit)
 basic/qa/vba_tests/strconv.vb|   21 ++-
 basic/source/runtime/methods.cxx |  210 ---
 2 files changed, 124 insertions(+), 107 deletions(-)

New commits:
commit 458f2b8f69fbf0a220f18fbf250e4369fd0491cd
Author: Mike Kaganski 
AuthorDate: Wed Mar 15 16:30:26 2023 +0300
Commit: Mike Kaganski 
CommitDate: Wed Mar 22 04:31:07 2023 +

Refactor and fix VBA StrConv

This properly handles null bytes that are expected
when converting between byte strings and Unicode.

It properly handles TransliterationFlags, which are
not a bitset.

In vbProperCase, it uses the correct method to
lowercase the string, working not only with ASCII.

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

diff --git a/basic/qa/vba_tests/strconv.vb b/basic/qa/vba_tests/strconv.vb
index b0295df428b2..9b7dfaf21866 100644
--- a/basic/qa/vba_tests/strconv.vb
+++ b/basic/qa/vba_tests/strconv.vb
@@ -18,25 +18,30 @@ End Function
 Sub verify_testStrConv()
 On Error GoTo errorHandler
 
-TestUtil.AssertEqual(StrConv("abc EFG hij", vbUpperCase),  "ABC EFG HIJ", 
"StrConv(""abc EFG hij"", vbUpperCase)")
-TestUtil.AssertEqual(StrConv("abc EFG hij", vbLowerCase),  "abc efg hij", 
"StrConv(""abc EFG hij"", vbLowerCase)")
-TestUtil.AssertEqual(StrConv("abc EFG hij", vbProperCase), "Abc Efg Hij", 
"StrConv(""abc EFG hij"", vbProperCase)")
+TestUtil.AssertEqual(StrConv("abc EFG hij αβγ ΔΕΖ ηθι", vbUpperCase),  
"ABC EFG HIJ ΑΒΓ ΔΕΖ ΗΘΙ", "StrConv(""abc EFG hij αβγ ΔΕΖ ηθι"", vbUpperCase)")
+TestUtil.AssertEqual(StrConv("abc EFG hij αβγ ΔΕΖ ηθι", vbLowerCase),  
"abc efg hij αβγ δεζ ηθι", "StrConv(""abc EFG hij αβγ ΔΕΖ ηθι"", vbLowerCase)")
+TestUtil.AssertEqual(StrConv("abc EFG hij αβγ ΔΕΖ ηθι", vbProperCase), 
"Abc Efg Hij Αβγ Δεζ Ηθι", "StrConv(""abc EFG hij αβγ ΔΕΖ ηθι"", vbProperCase)")
 
 ' Converts narrow (single-byte) characters in string to wide
 TestUtil.AssertEqual(StrConv("ABCDEVB¥ì¥¹¥­¥å©", vbWide), 
"ABCDEVB¥ì¥¹¥­¥å©", "StrConv(""ABCDEVB¥ì¥¹¥­¥å©"", vbWide)")
+TestUtil.AssertEqual(StrConv("ABCDEVB¥ì¥¹¥­¥å©", vbWide + vbLowerCase), 
"abcdevb¥ì¥¹¥­¥å©", "StrConv(""ABCDEVB¥ì¥¹¥­¥å©"", vbWide + vbLowerCase)")
 
 ' Converts wide (double-byte) characters in string to narrow (single-byte) 
characters
 TestUtil.AssertEqual(StrConv("ABCD@$%23'?EG", vbNarrow), "ABCD@$%23'?EG", 
"StrConv(""ABCD@$%23'?EG"", vbNarrow)")
+TestUtil.AssertEqual(StrConv("ABCD@$%23'?EG", vbNarrow + vbLowerCase), 
"abcd@$%23'?eg", "StrConv(""ABCD@$%23'?EG"", vbNarrow + vbLowerCase)")
 
 ' Converts Hiragana characters in string to Katakana characters
 TestUtil.AssertEqual(StrConv("かたかな", vbKatakana), "カタカナ", 
"StrConv(""かたかな"", vbKatakana)")
+TestUtil.AssertEqual(StrConv("かたかな abc", vbKatakana + vbUpperCase + 
vbWide), "カタカナ ABC", "StrConv(""かたかな abc"", vbKatakana + vbUpperCase + vbWide)")
 
 ' Converts Katakana characters in string to Hiragana characters
 TestUtil.AssertEqual(StrConv("カタカナ", vbHiragana), "かたかな", 
"StrConv(""カタカナ"", vbHiragana)")
+TestUtil.AssertEqual(StrConv("カタカナ ABC", vbLowerCase + vbNarrow), "カタカナ 
abc", "StrConv(""カタカナ ABC"", vbLowerCase + vbNarrow)")
 
-' Assumes CP-1252 encoding associated with en-US locale used in unit tests.
 Dim x() As Byte
-x = StrConv("ÉϺ£ÊÐABC", vbFromUnicode)
+Const Cp1252TestString = "ÉϺ£ÊÐABC"
+
+x = StrConv(Cp1252TestString, vbFromUnicode, )' CP-1252 encoding 
associated with en-US locale
 TestUtil.AssertEqual(UBound(x), 8, "UBound(x)")
 TestUtil.AssertEqual(x(0), 201, "x(0)")
 TestUtil.AssertEqual(x(1), 207, "x(1)")
@@ -47,7 +52,11 @@ Sub verify_testStrConv()
 TestUtil.AssertEqual(x(6), 65, "x(6)")
 TestUtil.AssertEqual(x(7), 66, "x(7)")
 TestUtil.AssertEqual(x(8), 67, "x(8)")
-TestUtil.AssertEqual(StrConv(x, vbUnicode), "ÉϺ£ÊÐABC", "StrConv(x, 
vbUnicode)")
+TestUtil.AssertEqual(StrConv(x, vbUnicode, ), Cp1252TestString, 
"StrConv(x, vbUnicode, )")
+
+x = StrConv(Cp1252TestString, vbUnicode, )
+TestUtil.AssertEqual(UBound(x), 35, "UBound(x)")
+TestUtil.AssertEqual(StrConv(x, vbFromUnicode, ), Cp1252TestString, 
"StrConv(x, vbFromUnicode, )")
 
 Exit Sub
 errorHandler:
diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx
index b6d9383d5b37..0b4f89d40115 100644
--- a/basic/source/runtime/methods.cxx
+++ b/basic/source/runtime/methods.cxx
@@ -59,6 +59,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -4084,6 +4085,40 @@ void SbRtl_QBColor(StarBASIC *, SbxArray & rPar, bool)
 rPar.Get(0)->PutLong(nRGB);
 }
 
+static std::vector byteArray2Vec(SbxArray* pArr)
+{
+std::vector result;
+if (pArr)
+{
+const sal_uInt32 nCount = pArr->Count();
+result.reserve(nCount + 1); // to avoid 

[Libreoffice-bugs] [Bug 154318] New: Wrong Conditional Formatting 5 Quarters Icon Sets Are Wrong in elementary (SVG) Theme

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154318

Bug ID: 154318
   Summary: Wrong Conditional Formatting 5 Quarters Icon Sets Are
Wrong in elementary (SVG) Theme
   Product: LibreOffice
   Version: 7.6.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: riz...@libreoffice.org

Created attachment 186129
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186129=edit
Expected vs Observed Appearance

Steps to Reproduce:
1. Set icon theme to elementary (SVG) --> Tools > Options > LibreOffice > View
> Icon Theme
2. Open Calc
3. Access Format > Conditional > Icon Set...
4. Select 5 Quarters

All icons has full dark circle while actually it has some white color.

Somehow this is affects only elementary SVG variant while elementary bitmap/PNG
version does not has the problem


Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 1f22d01b7ae96a7efa91c9285f3d2f8c37f05237
CPU threads: 8; OS: Linux 5.19; UI render: default; VCL: kf5 (cairo+xcb)
Locale: id-ID (id_ID.UTF-8); UI: en-US
Calc: threaded

Version: 7.5.1.2 (X86_64) / LibreOffice Community
Build ID: 50(Build:2)
CPU threads: 8; OS: Linux 5.19; UI render: default; VCL: kf5 (cairo+xcb)
Locale: id-ID (id_ID.UTF-8); UI: en-US
Ubuntu package version: 4:7.5.1~rc2-0ubuntu0.22.04.1~lo1
Calc: threaded

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

[Libreoffice-bugs] [Bug 154317] New: Chandigarh call girl

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154317

Bug ID: 154317
   Summary: Chandigarh call girl
   Product: LibreOffice
   Version: 3.3.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: anjalira...@gmail.com

Description:
Hey, ladies, I'm waiting to hear from you, Anjali Rana, a hot and sexually
attractive Chandigarh call girl, who will be willing to stay all night at your
home. I'm extremely knowledgeable on every sex position, and I am an attractive
call girl from Chandigarh that you could think of and only. You'll love every
minute with me and you will never forget the sexual experiences.
https://anjalirana.com/

Actual Results:
https://anjalirana.com/

Expected Results:
Chandigarh call girl, who will be willing to stay all night at your home. I'm
extremely knowledgeable 


Reproducible: Always


User Profile Reset: Yes

Additional Info:
Chandigarh call girl, who will be willing to stay all night at your home. I'm
extremely knowledgeable

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

[Libreoffice-bugs] [Bug 154213] LibeOffice icons on the GNOME desktop are too big

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154213

Rizal Muttaqin  changed:

   What|Removed |Added

 CC||qmebic1...@gmail.com,
   ||riz...@libreoffice.org
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #4 from Rizal Muttaqin  ---
@Galdam: As the creator of the icon tought you are interested with this report

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

[Libreoffice-bugs] [Bug 152974] Forms: Borders of text controls switch to 3D if form has been edited in LO 7.5.0.1 and reopened in older versions

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152974

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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

[Libreoffice-bugs] [Bug 154021] Customize dialog is too big to display on 1280x800 laptop screen

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154021

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 154013] download assets should reflect the actual version number

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154013

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-ux-advise] [Bug 154021] Customize dialog is too big to display on 1280x800 laptop screen

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154021

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 154041] Missing borders of toolbars ("blended" toolbar w/ work area or other toolbar)

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154041

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 153989] Autocorrect uses language-specific quotation marks for other languages

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153989

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 154264] LO Writer freezes while pasting from web and saving document

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154264

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

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

[Libreoffice-bugs] [Bug 154043] Change object layer via drag is not possible

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154043

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 154264] LO Writer freezes while pasting from web and saving document

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154264

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 154021] Customize dialog is too big to display on 1280x800 laptop screen

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154021

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-ux-advise] [Bug 154021] Customize dialog is too big to display on 1280x800 laptop screen

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154021

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 154021] Customize dialog is too big to display on 1280x800 laptop screen

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154021

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

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

[Libreoffice-ux-advise] [Bug 154021] Customize dialog is too big to display on 1280x800 laptop screen

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154021

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

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

[Libreoffice-bugs] [Bug 150060] Keyboard Shortcuts for Black and White Screen don't work (Presentation Mode)

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150060

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 143200] Crash: Assertion failing when pasting a cell to a large-height range

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143200

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 150060] Keyboard Shortcuts for Black and White Screen don't work (Presentation Mode)

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150060

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

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

[Libreoffice-bugs] [Bug 143200] Crash: Assertion failing when pasting a cell to a large-height range

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143200

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

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

[Libreoffice-bugs] [Bug 150538] Spreadsheet crashes in V. 7.4.0.3 & earlier versions

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150538

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 150538] Spreadsheet crashes in V. 7.4.0.3 & earlier versions

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150538

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 144014] I cannot create a New Style for internet links, without the system Internet Link overriding my style.

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144014

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 144014] I cannot create a New Style for internet links, without the system Internet Link overriding my style.

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144014

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 142919] Can't open Google Drive documents from nautilus on with Flatpak LibreOffice on Linux

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142919

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 148677] Add Avery 5160 to Label Format choices

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148677

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

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 142919] Can't open Google Drive documents from nautilus on with Flatpak LibreOffice on Linux

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142919

--- Comment #6 from QA Administrators  ---
Dear Finley Turner-Hall,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 144610] Font drop down does not function correctly throughout the suite

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144610

--- Comment #3 from QA Administrators  ---
Dear Brianna Michaela,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 56164] EDITING: FILEOPEN document shows visible Comment box at wrong place

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=56164

--- Comment #9 from QA Administrators  ---
Dear Rainer Bielefeld Retired,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 37152] FILEOPEN Writer mis-shifts OLE object in Microsoft Word .doc

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37152

--- Comment #11 from QA Administrators  ---
Dear Christopher M. Penalver,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 123066] Incorrect Rotate Transition in Impress

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123066

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 34619] FILEOPEN DOC Cropped PowerPoint OLE object isn't cropped in Writer (see comment 4)

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=34619

--- Comment #13 from QA Administrators  ---
Dear sasha.libreoffice,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 135239] FIREBIRD migration: Import of a specific table with a combined primary key fails

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135239

--- Comment #4 from QA Administrators  ---
Dear Robert Großkopf,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 132061] Page Columns in Notebookbar is not disabled when document is read-only

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132061

--- Comment #3 from QA Administrators  ---
Dear Jim Raykowski,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 129509] Controls in Notebookbar user interfaces don't show as disabled for read-only document.

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129509

--- Comment #4 from QA Administrators  ---
Dear Jim Raykowski,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 107363] Grouped buttons doesn't become properly disabled

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107363

--- Comment #5 from QA Administrators  ---
Dear Heiko Tietze,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 120416] Writer: Copy paste TABLE as Paste special - RTF changes border width from 0, 05 to 0, 75

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120416

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 100850] libreoffice base use too much memory

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100850

--- Comment #18 from QA Administrators  ---
Dear mug896,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 131323] Libreoffice pdf conversion fails in FIPS mode

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131323

--- Comment #16 from michael.ti...@ibm.com ---
I was able to run LibreOffice inside a FIPS cluster - using BASH.
The error is a complaint that it can't write the PDF file.

What should my next step be?

Here's the command:

work%% cat doit.sh
/opt/libreoffice7.3/program/soffice --nologo --norestore --headless
--convert-to pdf --outdir . PP4.docx 


Here's the execution of the command: 

work%% ./doit.sh

Here's the output:

convert /var/tmp/PP4.docx -> /var/tmp/PP4.pdf using filter : writer_pdf_Export
Error: Please verify input parameters... (SfxBaseModel::impl_store
 failed: 0xc10(Error Area:Io Class:Write Code:16)
/home/buildslave/source/libo-core/sfx2/source/doc/sfxbasemodel.cxx:3202
/home/buildslave/source/libo-core/sfx2/source/doc/sfxbasemodel.cxx:1775)
work%%

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

[Libreoffice-bugs] [Bug 154177] libreoffice cannot parse word documents generated by FreeMarker

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154177

siyi <1749014...@qq.com> changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |1749014...@qq.com
   |desktop.org |
 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #2 from siyi <1749014...@qq.com> ---
Created attachment 186128
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186128=edit
The document is typeset incorrectly

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

[Libreoffice-ux-advise] [Bug 154021] Customize dialog is too big to display on 1280x800 laptop screen

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154021

--- Comment #7 from vi...@vincentbentley.co.uk ---
Created attachment 186127
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186127=edit
Test image 1280x800 pixels

This is a test image of maximum size 1280x800. It shows a 20 pixel thick border
in white that surrounds a 1240x760 black rectangle. This image displays
perfectly on my 1280x800 screen.

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

[Libreoffice-bugs] [Bug 154021] Customize dialog is too big to display on 1280x800 laptop screen

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154021

--- Comment #7 from vi...@vincentbentley.co.uk ---
Created attachment 186127
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186127=edit
Test image 1280x800 pixels

This is a test image of maximum size 1280x800. It shows a 20 pixel thick border
in white that surrounds a 1240x760 black rectangle. This image displays
perfectly on my 1280x800 screen.

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

[Libreoffice-bugs] [Bug 154021] Customize dialog is too big to display on 1280x800 laptop screen

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154021

--- Comment #6 from vi...@vincentbentley.co.uk ---
Created attachment 186126
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186126=edit
No display scaling activated

As far as I am aware, I am not using any scaling. When enabling fractional
scaling at 100% there is no change in my display.

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

[Libreoffice-ux-advise] [Bug 154021] Customize dialog is too big to display on 1280x800 laptop screen

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154021

--- Comment #6 from vi...@vincentbentley.co.uk ---
Created attachment 186126
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186126=edit
No display scaling activated

As far as I am aware, I am not using any scaling. When enabling fractional
scaling at 100% there is no change in my display.

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

[Libreoffice-bugs] [Bug 154021] Customize dialog is too big to display on 1280x800 laptop screen

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154021

--- Comment #5 from vi...@vincentbentley.co.uk ---
Created attachment 186125
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186125=edit
Info about my Desktop Environment

I am using Gnome 42.5

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

[Libreoffice-ux-advise] [Bug 154021] Customize dialog is too big to display on 1280x800 laptop screen

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154021

--- Comment #5 from vi...@vincentbentley.co.uk ---
Created attachment 186125
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186125=edit
Info about my Desktop Environment

I am using Gnome 42.5

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

[Libreoffice-ux-advise] [Bug 154021] Customize dialog is too big to display on 1280x800 laptop screen

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154021

--- Comment #4 from vi...@vincentbentley.co.uk ---
Created attachment 186124
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186124=edit
Screenshot of customize dialog

I took a screenshot of the dialog and the full dialog was copied but the size
is 870x819 pixels. The vertical height does not fit on my laptop display.

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

[Libreoffice-bugs] [Bug 154021] Customize dialog is too big to display on 1280x800 laptop screen

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154021

--- Comment #4 from vi...@vincentbentley.co.uk ---
Created attachment 186124
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186124=edit
Screenshot of customize dialog

I took a screenshot of the dialog and the full dialog was copied but the size
is 870x819 pixels. The vertical height does not fit on my laptop display.

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

[Libreoffice-bugs] [Bug 152173] [MacOS 13] Tooltips bring out-of-focus LO windows to second-to-last position

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152173

--- Comment #19 from Patrick Luby  ---
(In reply to Alex Thurgood from comment #18)
> Separately confirmed on
> 
> Version: 7.5.1.2 (AARCH64) / LibreOffice Community
> Build ID: fcbaee479e84c6cd81291587d2ee68cba099e129
> CPU threads: 8; OS: Mac OS X 13.2.1; UI render: Skia/Raster; VCL: osx
> Locale: fr-FR (fr_FR.UTF-8); UI: fr-FR
> Calc: threaded

I use macOS Monterey day-to-day and I could not reproduce this. But on Ventura
it is easy to reproduce. Clearly Apple changed something as I don't ever
remember inactive applications getting mouse move events. Only mouse drag
events were sent in such cases.

But sure enough, starting with Ventura, macOS sends mouse move events to
LibreOffice. Of course, all of Apple's application work fine with this
(surprise, surprise) but these mouse move events confuse the LibreOffice code
since every previous release of macOS didn't do this.

How to fix this bug? I don't know yet. But it seems to me there might be two
separate issues that need to be solved:

1. Tooltips are displayed when the application is unfocused
2. LibreOffice gets pushed up a level in the Z window order

I am hoping the second case is triggered by the first case. I'll have to see as
I think the tooltip handling code is a layer or two above the native event
handler code that I am familiar with.

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

[Libreoffice-bugs] [Bug 154316] New: Freeze and crash on autosave

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154316

Bug ID: 154316
   Summary: Freeze and crash on autosave
   Product: LibreOffice
   Version: 7.5.1.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: takingthem...@gmail.com

Description:
While typing out a document, at the ten minute mark - LibreOffice attempts to
autosave but freezes for 30 seconds and then crashes - with no recovery
possible. This has happened three times in a row.

Steps to Reproduce:
1.Open LibreOffice to half size screen - Google Docs running in Firefox on
other half.
2.Type for ten minutes
3.Crash
4. On Recovery, type recover.
5. Back to last manual save.

Actual Results:
Back to manual save

Expected Results:
Autosave and continue


Reproducible: Always


User Profile Reset: Yes

Additional Info:
Brand new build - maybe 5 days old? No other programs/problems.  Saving to a
new file on Desktop using Word Compatible mode.

Version: 7.5.1.2 (X86_64) / LibreOffice Community
Build ID: fcbaee479e84c6cd81291587d2ee68cba099e129
CPU threads: 12; OS: Windows 10.0 Build 22621; UI render: Skia/Vulkan; VCL: win
Locale: en-GB (en_GB); UI: en-GB
Calc: CL threaded

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

[Libreoffice-bugs] [Bug 131323] Libreoffice pdf conversion fails in FIPS mode

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131323

--- Comment #15 from michael.ti...@ibm.com ---
Timur - We are interested in fixing this issue.

Can someone show us where the code is and guide us with the process?

I just revalidated the behavior - upload a WORD document to our
application which then calls the headless LibreOffice:

"message": "Invoking Libre office call with the following command -
[libreoffice --nologo --norestore --headless
-env:UserInstallation=file:///work_dir/c0379a25-7ef3-43da-849

The only clue so far is :

Check exit code - true",

We might start running it on the FIPS cluster - but that's still pending.

-- Michael Tighe 
IBM.COM

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

[Libreoffice-bugs] [Bug 154045] Upon updating my custon autocorrect completions, user profile becomes corrupt and must be deleted in 7.5.1.2 for any autocorrect features to work even though file valid

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154045

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Thank you for the report, JoJo.

I wasn't able to reproduce with:

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

Could you please provide:
- more precise, simple steps to reproduce the issue, 
- the version information from Help > About LibreOffice

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

[Libreoffice-bugs] [Bug 119352] [META] Language issues

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119352

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||149429


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=149429
[Bug 149429] Changing Calc document's language should overwrite cell direct
formatting language
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 96000] [META] Spelling and grammar checking bugs and enhancements

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96000

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||149429


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=149429
[Bug 149429] Changing Calc document's language should overwrite cell direct
formatting language
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 149429] Changing Calc document's language should overwrite cell direct formatting language

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149429

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

Summary|AutoCorrection detects  |Changing Calc document's
   |misspelled words in English |language should overwrite
   |(USA) whether language is   |cell direct formatting
   |English (USA) or None   |language
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
   Keywords||needsUXEval
 OS|Windows (All)   |All
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||stephane.guillou@libreoffic
   ||e.org
 Blocks||96000, 119352

--- Comment #11 from Stéphane Guillou (stragu) 
 ---
I updated the summary to hopefully more accurately describe the issue.

Minimal steps from a new document:
1. Open Calc
2. Right-click on cell A1 > Format cell > Font > change language to e.g. French
> OK
3. Change language for document to e.g. English (from status bar, or Tools >
Language > For all text, or Tools > Options > Language settings > Languages >
Default languages for documents)

Result: cell A1 is still in French.

UX team, what do you think?
- Is this difference between Writer and Calc desired? If so, we should probably
make it clearer (in UI / in documentation) that direct cell formatting will not
be overwritten by a change in default document language. And clarify that the
status bar in Calc is to set the "Default language for this document", and not
just the selected cells.
- Or do we need to make a document language change overwrite the direct cell
formatting?


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=96000
[Bug 96000] [META] Spelling and grammar checking bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=119352
[Bug 119352] [META] Language issues
-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 149429] Changing Calc document's language should overwrite cell direct formatting language

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149429

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

Summary|AutoCorrection detects  |Changing Calc document's
   |misspelled words in English |language should overwrite
   |(USA) whether language is   |cell direct formatting
   |English (USA) or None   |language
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
   Keywords||needsUXEval
 OS|Windows (All)   |All
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||stephane.guillou@libreoffic
   ||e.org
 Blocks||96000, 119352

--- Comment #11 from Stéphane Guillou (stragu) 
 ---
I updated the summary to hopefully more accurately describe the issue.

Minimal steps from a new document:
1. Open Calc
2. Right-click on cell A1 > Format cell > Font > change language to e.g. French
> OK
3. Change language for document to e.g. English (from status bar, or Tools >
Language > For all text, or Tools > Options > Language settings > Languages >
Default languages for documents)

Result: cell A1 is still in French.

UX team, what do you think?
- Is this difference between Writer and Calc desired? If so, we should probably
make it clearer (in UI / in documentation) that direct cell formatting will not
be overwritten by a change in default document language. And clarify that the
status bar in Calc is to set the "Default language for this document", and not
just the selected cells.
- Or do we need to make a document language change overwrite the direct cell
formatting?


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=96000
[Bug 96000] [META] Spelling and grammar checking bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=119352
[Bug 119352] [META] Language issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154291] I'm editing a doc. then sudenly the pgm freeze, then quit, no saving of the work pending

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154291

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  ---
Please test with a clean profile, Menu/Help/Restart in Safe Mode

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

[Libreoffice-commits] core.git: framework/source sc/inc sc/sdi sc/source

2023-03-21 Thread Maxim Monastirsky (via logerrit)
 framework/source/uielement/styletoolbarcontroller.cxx |3 
 sc/inc/globstr.hrc|1 
 sc/sdi/drawsh.sdi |   12 -
 sc/sdi/drtxtob.sdi|   12 -
 sc/sdi/tabvwsh.sdi|1 
 sc/source/ui/drawfunc/drawsh2.cxx |2 
 sc/source/ui/drawfunc/fusel.cxx   |8 +
 sc/source/ui/undo/undostyl.cxx|   16 +-
 sc/source/ui/view/tabview3.cxx|2 
 sc/source/ui/view/tabvwsha.cxx|  143 +-
 10 files changed, 164 insertions(+), 36 deletions(-)

New commits:
commit 1cfeb4bd8ce7f7727a81136bd3e2d6ebea976895
Author: Maxim Monastirsky 
AuthorDate: Fri Mar 17 14:28:36 2023 +0200
Commit: Maxim Monastirsky 
CommitDate: Tue Mar 21 23:10:39 2023 +

sc drawstyles: Handle style commands and undo

Change-Id: Ibd81f7aba9ef2efca89556c31cd9b09867419d0e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149203
Tested-by: Jenkins
Reviewed-by: Maxim Monastirsky 

diff --git a/framework/source/uielement/styletoolbarcontroller.cxx 
b/framework/source/uielement/styletoolbarcontroller.cxx
index 31aed5336f10..3ff1e777eb6d 100644
--- a/framework/source/uielement/styletoolbarcontroller.cxx
+++ b/framework/source/uielement/styletoolbarcontroller.cxx
@@ -34,7 +34,8 @@ OUString MapFamilyToCommand( std::u16string_view rFamily )
 return ".uno:CharStyle";
 else if ( rFamily == u"PageStyles" )
 return ".uno:PageStyle";
-else if ( rFamily == u"FrameStyles" )
+else if ( rFamily == u"FrameStyles" ||
+  rFamily == u"GraphicStyles" )  // In sc
 return ".uno:FrameStyle";
 else if ( rFamily == u"NumberingStyles" )
 return ".uno:ListStyle";
diff --git a/sc/inc/globstr.hrc b/sc/inc/globstr.hrc
index 88eca11e5a89..16fce3f32974 100644
--- a/sc/inc/globstr.hrc
+++ b/sc/inc/globstr.hrc
@@ -84,6 +84,7 @@
 #define STR_UNDO_EDITCELLSTYLE  NC_("STR_UNDO_EDITCELLSTYLE", 
"Edit Cell Style")
 #define STR_UNDO_APPLYPAGESTYLE NC_("STR_UNDO_APPLYPAGESTYLE", 
"Apply Page Style")
 #define STR_UNDO_EDITPAGESTYLE  NC_("STR_UNDO_EDITPAGESTYLE", 
"Edit Page Style")
+#define STR_UNDO_EDITGRAPHICSTYLE   
NC_("STR_UNDO_EDITGRAPHICSTYLE", "Edit Drawing Style")
 #define STR_UNDO_DETADDPRED NC_("STR_UNDO_DETADDPRED", 
"Trace Precedents")
 #define STR_UNDO_DETDELPRED NC_("STR_UNDO_DETDELPRED", 
"Remove Precedent")
 #define STR_UNDO_DETADDSUCC NC_("STR_UNDO_DETADDSUCC", 
"Trace Dependents")
diff --git a/sc/sdi/drawsh.sdi b/sc/sdi/drawsh.sdi
index ccd5d69605d4..13f1d6b150df 100644
--- a/sc/sdi/drawsh.sdi
+++ b/sc/sdi/drawsh.sdi
@@ -35,18 +35,6 @@ interface TableDraw
 SID_OPENDLG_EDIT_PRINTAREA  [ StateMethod = StateDisableItems; ]
 // others:
 SID_DRAW_CHART  [ StateMethod = StateDisableItems; ]
-SID_STYLE_FAMILY2   [ StateMethod = StateDisableItems; ]
-SID_STYLE_FAMILY4   [ StateMethod = StateDisableItems; ]
-SID_STYLE_APPLY [ StateMethod = StateDisableItems; ]
-SID_STYLE_WATERCAN  [ StateMethod = StateDisableItems; ]
-SID_STYLE_NEW_BY_EXAMPLE[ StateMethod = StateDisableItems; ]
-SID_STYLE_UPDATE_BY_EXAMPLE [ StateMethod = StateDisableItems; ]
-SID_STYLE_NEW   [ StateMethod = StateDisableItems; ]
-SID_STYLE_EDIT  [ StateMethod = StateDisableItems; ]
-SID_STYLE_DELETE[ StateMethod = StateDisableItems; ]
-SID_STYLE_HIDE  [ StateMethod = StateDisableItems; ]
-SID_STYLE_SHOW  [ StateMethod = StateDisableItems; ]
-
 
 SID_TEXT_STANDARD   [ ExecMethod = ExecDrawAttr; StateMethod = 
NoState; ]
 SID_DRAWTEXT_ATTR_DLG   [ ExecMethod = ExecDrawAttr; StateMethod = 
NoState; ]
diff --git a/sc/sdi/drtxtob.sdi b/sc/sdi/drtxtob.sdi
index 5280430413bc..4670d216fba2 100644
--- a/sc/sdi/drtxtob.sdi
+++ b/sc/sdi/drtxtob.sdi
@@ -33,18 +33,6 @@ interface TableDrawText
 // others:
 SID_DRAW_CHART  [ StateMethod = StateDisableItems; ]
 SID_OPENDLG_FUNCTION[ StateMethod = StateDisableItems; ]
-SID_STYLE_FAMILY2   [ StateMethod = StateDisableItems; ]
-SID_STYLE_FAMILY4   [ StateMethod = StateDisableItems; ]
-SID_STYLE_APPLY [ StateMethod = StateDisableItems; ]
-SID_STYLE_WATERCAN  [ StateMethod = StateDisableItems; ]
-SID_STYLE_NEW_BY_EXAMPLE[ StateMethod = StateDisableItems; ]
-SID_STYLE_UPDATE_BY_EXAMPLE [ StateMethod = StateDisableItems; ]
-SID_STYLE_NEW   [ StateMethod = StateDisableItems; ]
-SID_STYLE_EDIT  [ StateMethod = StateDisableItems; ]
-SID_STYLE_DELETE[ StateMethod = StateDisableItems; ]
-

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

2023-03-21 Thread Maxim Monastirsky (via logerrit)
 sc/source/core/data/drwlayer.cxx |5 +
 1 file changed, 5 insertions(+)

New commits:
commit f460bd163afb06dc2dccc877269106af38767484
Author: Maxim Monastirsky 
AuthorDate: Sun Mar 19 19:52:09 2023 +0200
Commit: Maxim Monastirsky 
CommitDate: Tue Mar 21 23:10:20 2023 +

sc drawstyles: Connect the styles pool to the draw layer

Change-Id: Ie87bb028264b74fd3e15e23a3ad60ab3c48bb14d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149202
Tested-by: Jenkins
Reviewed-by: Maxim Monastirsky 

diff --git a/sc/source/core/data/drwlayer.cxx b/sc/source/core/data/drwlayer.cxx
index e6203697a4e7..653571cabd38 100644
--- a/sc/source/core/data/drwlayer.cxx
+++ b/sc/source/core/data/drwlayer.cxx
@@ -72,6 +72,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 
 #include 
@@ -280,6 +281,8 @@ ScDrawLayer::ScDrawLayer( ScDocument* pDocument, OUString 
_aName ) :
 
 rPool.FreezeIdRanges(); // the pool is also used 
directly
 
+SetStyleSheetPool(pDocument ? pDocument->GetStyleSheetPool() : new 
ScStyleSheetPool(rPool, pDocument));
+
 SdrLayerAdmin& rAdmin = GetLayerAdmin();
 rAdmin.NewLayer("vorne",SC_LAYER_FRONT.get());
 rAdmin.NewLayer("hinten",   SC_LAYER_BACK.get());
@@ -292,9 +295,11 @@ ScDrawLayer::ScDrawLayer( ScDocument* pDocument, OUString 
_aName ) :
 ScModule* pScMod = SC_MOD();
 Outliner& rOutliner = GetDrawOutliner();
 rOutliner.SetCalcFieldValueHdl( LINK( pScMod, ScModule, CalcFieldValueHdl 
) );
+
rOutliner.SetStyleSheetPool(static_cast(GetStyleSheetPool()));
 
 Outliner& rHitOutliner = GetHitTestOutliner();
 rHitOutliner.SetCalcFieldValueHdl( LINK( pScMod, ScModule, 
CalcFieldValueHdl ) );
+
rHitOutliner.SetStyleSheetPool(static_cast(GetStyleSheetPool()));
 
 // set FontHeight pool defaults without changing static SdrEngineDefaults
 SfxItemPool* pOutlinerPool = rOutliner.GetEditTextObjectPool();


[Libreoffice-commits] core.git: include/svx sc/inc sc/qa sc/source

2023-03-21 Thread Maxim Monastirsky (via logerrit)
 include/svx/svdpool.hxx |1 
 include/svx/xpool.hxx   |3 
 sc/inc/globstr.hrc  |1 
 sc/inc/servuno.hxx  |2 
 sc/qa/extras/scstylefamiliesobj.cxx |2 
 sc/source/core/data/stlpool.cxx |2 
 sc/source/core/data/stlsheet.cxx|   42 
 sc/source/ui/unoobj/servuno.cxx |4 
 sc/source/ui/unoobj/styleuno.cxx|  183 +++-
 9 files changed, 212 insertions(+), 28 deletions(-)

New commits:
commit 6db5e15e5b91f34232e90225a723e0673ecfc2f0
Author: Maxim Monastirsky 
AuthorDate: Fri Mar 17 14:50:25 2023 +0200
Commit: Maxim Monastirsky 
CommitDate: Tue Mar 21 23:10:01 2023 +

sc drawstyles: Implement the styles family

Change-Id: I2af6072685e4c79cfe2f177c0aae27044f86d840
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149184
Tested-by: Jenkins
Reviewed-by: Maxim Monastirsky 

diff --git a/include/svx/svdpool.hxx b/include/svx/svdpool.hxx
index e61b6fe97005..3d2201edef5b 100644
--- a/include/svx/svdpool.hxx
+++ b/include/svx/svdpool.hxx
@@ -20,7 +20,6 @@
 #pragma once
 
 #include 
-#include 
 
 class XLineAttrSetItem;
 class XFillAttrSetItem;
diff --git a/include/svx/xpool.hxx b/include/svx/xpool.hxx
index e8fc6f5e7225..13f5fa3d7a7d 100644
--- a/include/svx/xpool.hxx
+++ b/include/svx/xpool.hxx
@@ -20,6 +20,7 @@
 #ifndef INCLUDED_SVX_XPOOL_HXX
 #define INCLUDED_SVX_XPOOL_HXX
 
+#include 
 #include 
 #include 
 
@@ -29,7 +30,7 @@
 |*
 \/
 
-class XOutdevItemPool : public SfxItemPool
+class SVXCORE_DLLPUBLIC XOutdevItemPool : public SfxItemPool
 {
 protected:
 std::vector* mpLocalPoolDefaults;
diff --git a/sc/inc/globstr.hrc b/sc/inc/globstr.hrc
index 95f7138c81c9..88eca11e5a89 100644
--- a/sc/inc/globstr.hrc
+++ b/sc/inc/globstr.hrc
@@ -443,6 +443,7 @@
 #define STR_FORM_SCROLLBAR  NC_("STR_FORM_SCROLLBAR", 
"Scroll Bar")
 #define STR_STYLE_FAMILY_CELL   NC_("STR_STYLE_FAMILY_CELL", 
"Cell Styles")
 #define STR_STYLE_FAMILY_PAGE   NC_("STR_STYLE_FAMILY_PAGE", 
"Page Styles")
+#define STR_STYLE_FAMILY_GRAPHICS   
NC_("STR_STYLE_FAMILY_GRAPHICS", "Drawing Styles")
 #define STR_ERR_DATAPILOTSOURCE NC_("STR_ERR_DATAPILOTSOURCE", 
"Pivot table source data is invalid.")
 #define STR_OPTIONS_WARN_SEPARATORS 
NC_("STR_OPTIONS_WARN_SEPARATORS", "Because the current formula separator 
settings conflict with the locale, the formula separators have been reset to 
their default values.")
 #define STR_UNDO_INSERT_CURRENT_DATE
NC_("STR_UNDO_INSERT_CURRENT_DATE", "Insert Current Date")
diff --git a/sc/inc/servuno.hxx b/sc/inc/servuno.hxx
index b8a6d49fd172..b705f3ef01b4 100644
--- a/sc/inc/servuno.hxx
+++ b/sc/inc/servuno.hxx
@@ -32,7 +32,7 @@ public:
 enum class Type
 {
 SHEET , URLFIELD , PAGEFIELD , PAGESFIELD , DATEFIELD , TIMEFIELD , 
TITLEFIELD , FILEFIELD ,
-SHEETFIELD , CELLSTYLE , PAGESTYLE ,
+SHEETFIELD , CELLSTYLE , PAGESTYLE , GRAPHICSTYLE ,
 // sheet
 AUTOFORMAT , AUTOFORMATS, CELLRANGES , FUNCTIONDESCRIPTIONS , 
GLOBALSHEETSETTINGS ,
 RECENTFUNCTIONS ,
diff --git a/sc/qa/extras/scstylefamiliesobj.cxx 
b/sc/qa/extras/scstylefamiliesobj.cxx
index 89ec9a2b46f7..72fb135bd56d 100644
--- a/sc/qa/extras/scstylefamiliesobj.cxx
+++ b/sc/qa/extras/scstylefamiliesobj.cxx
@@ -82,7 +82,7 @@ private:
 ScStyleFamiliesObj::ScStyleFamiliesObj()
 : UnoApiTest("/sc/qa/extras/testdocuments")
 , XElementAccess(cppu::UnoType::get())
-, XIndexAccess(2)
+, XIndexAccess(3)
 , XNameAccess("CellStyles")
 , XServiceInfo("ScStyleFamiliesObj", "com.sun.star.style.StyleFamilies")
 {
diff --git a/sc/source/core/data/stlpool.cxx b/sc/source/core/data/stlpool.cxx
index 8f554896ff21..e7f6d26aa0c7 100644
--- a/sc/source/core/data/stlpool.cxx
+++ b/sc/source/core/data/stlpool.cxx
@@ -101,7 +101,7 @@ rtl::Reference ScStyleSheetPool::Create( 
const OUString&   rN
  SfxStyleSearchBits nMaskP )
 {
 rtl::Reference pSheet = new ScStyleSheet( rName, *this, 
eFamily, nMaskP );
-if ( eFamily == SfxStyleFamily::Para && ScResId(STR_STYLENAME_STANDARD) != 
rName )
+if ( eFamily != SfxStyleFamily::Page && ScResId(STR_STYLENAME_STANDARD) != 
rName )
 pSheet->SetParent( ScResId(STR_STYLENAME_STANDARD) );
 
 return pSheet;
diff --git a/sc/source/core/data/stlsheet.cxx b/sc/source/core/data/stlsheet.cxx
index 4ee18ef0f0fb..665b806ba540 100644
--- a/sc/source/core/data/stlsheet.cxx
+++ b/sc/source/core/data/stlsheet.cxx
@@ -26,6 +26,10 @@
 #include 
 #include 
 #include 
+#include 
+#include 
+#include 
+#include 
 #include 
 #include 
 #include 
@@ -77,6 +81,7 @@ bool ScStyleSheet::HasParentSupport () const
 switch ( GetFamily() )
 {
 case SfxStyleFamily::Para: 

[Libreoffice-bugs] [Bug 154286] Changing value of date fields fails as MM/DD/YYYY format is not recognized as date after last LibreOffice update

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154286

--- Comment #10 from pe...@supurovic.net ---
D.M.Y;D.M format is what i found out set, and it was coloured red.

I was unable to recreate it, but after i added dot and entered D.M.Y;D.M. it
was accepted.



In my original document all fileds are dates. Thez are used in date
calculations, and those calculations break if I edit date filed and try to
enter date in MM/DD/ format, which I was forced to do in previous versions
and onlz that waz dates worked.

Since update calcualtions worked until i tried to edit date fields. It dod not
accept MM/DD/ format, but I had to enter dates in DD.MM. format.

After I changed D.M.Y;D.M to D.M.Y;M/D/Y I was again able to edit date in
MM/DD/ format.


That filed that ends up string instead of date is probably because of
D.M.Y;D.M. setting. It does not accept MM/DD/ as date so it saves it as
string. that is probalbz what happens in already existing date fields. When i
edit them and try to keep MM/DD/ which is already entered (and recognized
as date) it is converted to string and everything depending on it fails. 

I usually edit date just to alter year part, but after this update I have to
type in whole date in new format to be recognized as date.

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

[Libreoffice-bugs] [Bug 154047] Formatting keyboard shortcuts work counter-intuitively

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154047

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
I don't see that in OOo 3.3 nor in:

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

Coburn, please provide the information from Help > About LibreOffice, and test
in Help > Safe mode to see if the issue persists.
Have you actually tested in version 3.3 of LibreOffice?

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

[Libreoffice-bugs] [Bug 151756] Menu text almost invisible in Windows 10 dark mode (after sleep or when display connected) (see comment 9)

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151756

V Stuart Foote  changed:

   What|Removed |Added

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

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

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

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150915

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||154313


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154313
[Bug 154313] Writer drop-down menus are colored black
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154313] Writer drop-down menus are colored black

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154313

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||1756
 CC||vsfo...@libreoffice.org
 Blocks||150915

--- Comment #1 from V Stuart Foote  ---
Please set "Enable Experimental Features" from Tools -> Options -> Advanced and
retest.  If that resolves this is a dupe of bug 151756 

The os/DE color theme support is more completely implemented in the 7.5
release, experimental in the 7.4 builds.

You can also test with with a parallel install of 7.5.1 or nightly master
against 7.6, see the Wiki --
https://wiki.documentfoundation.org/Installing_in_parallel


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 105948] [META] Undo/Redo bugs and enhancements

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105948

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||154048


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154048
[Bug 154048] Superscripts do not undo properly
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 154048] Superscripts do not undo properly

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154048

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
   Severity|normal  |minor
   Keywords||needsUXEval
 Blocks||105948
 Ever confirmed|0   |1
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||stephane.guillou@libreoffic
   ||e.org
   Priority|medium  |low

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
I see something different.
Using the following steps:
1. write "normal"
2. Ctrl + Shift + P
3. write "super"

On the undo stack there is (most recent at the top):
- Typing "super"
- Apply attributes
- Typing "normal"

I see two different behaviours depending on the next action:
(a) Ctrl + Z removes the superscript string, and continuing writing uses
non-superscript characters *even though "Apply attributes" is still on top of
the stack*
(b) Backspace until all superscript characters are gone, then continuing
writing still uses superscript character

This not exclusive to superscripts, it is consistent with other formatting
options (I tested bold, italic, font colour), but I feel like the two actions
(Ctrl + Z vs backspace) are equivalent and should therefore have the same
impact.
(a) seems particularly odd to me, in that "Apply attributes" is still in the
history but new characters don't use the formatting. (I am aware this is the
behaviour Coburn would prefer though.)

UX/UI team, what do you think?

Coburn, do you see something different following my steps? Please also share
the info from Help > About LibreOffice.
I tested with this version:

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

Same results in 7.0.6.2


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=105948
[Bug 105948] [META] Undo/Redo bugs and enhancements
-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 154048] Superscripts do not undo properly

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154048

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
   Severity|normal  |minor
   Keywords||needsUXEval
 Blocks||105948
 Ever confirmed|0   |1
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||stephane.guillou@libreoffic
   ||e.org
   Priority|medium  |low

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
I see something different.
Using the following steps:
1. write "normal"
2. Ctrl + Shift + P
3. write "super"

On the undo stack there is (most recent at the top):
- Typing "super"
- Apply attributes
- Typing "normal"

I see two different behaviours depending on the next action:
(a) Ctrl + Z removes the superscript string, and continuing writing uses
non-superscript characters *even though "Apply attributes" is still on top of
the stack*
(b) Backspace until all superscript characters are gone, then continuing
writing still uses superscript character

This not exclusive to superscripts, it is consistent with other formatting
options (I tested bold, italic, font colour), but I feel like the two actions
(Ctrl + Z vs backspace) are equivalent and should therefore have the same
impact.
(a) seems particularly odd to me, in that "Apply attributes" is still in the
history but new characters don't use the formatting. (I am aware this is the
behaviour Coburn would prefer though.)

UX/UI team, what do you think?

Coburn, do you see something different following my steps? Please also share
the info from Help > About LibreOffice.
I tested with this version:

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

Same results in 7.0.6.2


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 154264] LO Writer freezes while pasting from web and saving document

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154264

--- Comment #2 from Rajasekaran Karunanithi  ---
It did happened for few times.I just translated few paragraphs of  online 
texts and pasted into LO 7.6 alpha release,then tried to save it.After that it
hanged for a while.Then waited for five minutes,nothing happened.So I did end
task and then tried 'Document Recovery' but unable to recover the texts.

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

[Libreoffice-bugs] [Bug 154314] possible memory leak leads to worse and worse application response times if a file is left open for several hours even if the user has done nothing on the computer in t

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154314

V Stuart Foote  changed:

   What|Removed |Added

 OS|All |macOS (All)

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

[Libreoffice-commits] core.git: 2 commits - vcl/jsdialog

2023-03-21 Thread Pranam Lashkari (via logerrit)
 vcl/jsdialog/enabled.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 65758e25b16db552af7699facbe068e3d4aebc3a
Author: Pranam Lashkari 
AuthorDate: Mon Mar 20 17:47:17 2023 +0530
Commit: Pranam Lashkari 
CommitDate: Tue Mar 21 22:11:43 2023 +

jsdialog: enabled insert break(manual break) dialog(writer)

Signed-off-by: Pranam Lashkari 
Change-Id: I65213cd8822e574eff333b96a8718ebff2946f5c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149166
Tested-by: Szymon Kłos 
Reviewed-by: Szymon Kłos 
(cherry picked from commit 41b7f70981cffb9a04b6b132317915ca51519eab)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149236
Tested-by: Jenkins

diff --git a/vcl/jsdialog/enabled.cxx b/vcl/jsdialog/enabled.cxx
index 1dad92a7347c..54ffe823aecf 100644
--- a/vcl/jsdialog/enabled.cxx
+++ b/vcl/jsdialog/enabled.cxx
@@ -112,6 +112,7 @@ bool isBuilderEnabled(std::u16string_view rUIFile, bool 
bMobile)
 || rUIFile == u"modules/swriter/ui/footnoteareapage.ui"
 || rUIFile == u"modules/swriter/ui/footnotesendnotestabpage.ui"
 || rUIFile == u"modules/swriter/ui/indentpage.ui"
+|| rUIFile == u"modules/swriter/ui/insertbreak.ui"
 || rUIFile == u"modules/swriter/ui/insertcaption.ui"
 || rUIFile == u"modules/swriter/ui/insertsectiondialog.ui"
 || rUIFile == u"modules/swriter/ui/linenumbering.ui"
commit e8d56d600f16e137acf765842273feeca5d98b37
Author: Pranam Lashkari 
AuthorDate: Mon Mar 20 18:50:12 2023 +0530
Commit: Pranam Lashkari 
CommitDate: Tue Mar 21 22:11:32 2023 +

jsdialog: enable watermark dialog (writer)

Change-Id: Ie1f5a299fd68bdfd21c04d1ef79514953a2ac5c3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149168
Tested-by: Szymon Kłos 
Reviewed-by: Szymon Kłos 
(cherry picked from commit 8c358c1616a16beb10752f0a60bbacccba15d6ea)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149234
Tested-by: Jenkins
Reviewed-by: Pranam Lashkari 

diff --git a/vcl/jsdialog/enabled.cxx b/vcl/jsdialog/enabled.cxx
index a99417b50a27..1dad92a7347c 100644
--- a/vcl/jsdialog/enabled.cxx
+++ b/vcl/jsdialog/enabled.cxx
@@ -124,6 +124,7 @@ bool isBuilderEnabled(std::u16string_view rUIFile, bool 
bMobile)
 || rUIFile == u"modules/swriter/ui/templatedialog8.ui"
 || rUIFile == u"modules/swriter/ui/textgridpage.ui"
 || rUIFile == u"modules/swriter/ui/translationdialog.ui"
+|| rUIFile == u"modules/swriter/ui/watermarkdialog.ui"
 // sfx
 || rUIFile == u"sfx/ui/cmisinfopage.ui"
 || rUIFile == u"sfx/ui/custominfopage.ui"


[Libreoffice-bugs] [Bug 154315] New: "Hidden Text" not working correctly

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154315

Bug ID: 154315
   Summary: "Hidden Text" not working correctly
   Product: LibreOffice
   Version: 7.3.4.2 release
  Hardware: x86 (IA32)
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gregory_m_thomp...@yahoo.com

Description:
When I select multiple text lines to be formatted as hidden text, the CR/LF
characters to not get "hidden" so I get the same amount of lines as before but
they are apparently blank.

Steps to Reproduce:
1.highlight several lines of text in one block to all become "hidden" text.

Actual Results:
I get what appears to be several blank lines. 

Expected Results:
All the text should be collapsed as if it wasn't there at all.


Reproducible: Always


User Profile Reset: No

Additional Info:
see "Expected Results"

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

[Libreoffice-bugs] [Bug 133089] macOS: Some character can't be rendered; square

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133089

--- Comment #5 from bunkem  ---
Created attachment 186123
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186123=edit
Screen shot of missing characters in style list on Mac

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

[Libreoffice-bugs] [Bug 154314] New: possible memory leak leads to worse and worse application response times if a file is left open for several hours even if the user has done nothing on the computer

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154314

Bug ID: 154314
   Summary: possible memory leak leads to worse and worse
application response times if a file is left open for
several hours even if the user has done nothing on the
computer in that time.
   Product: LibreOffice
   Version: 7.3.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gregory_m_thomp...@yahoo.com

Description:
I think there may be a memory leak since Libre Office writer gets stuck on the
spinning wheel (even if I am NOT trying to save) if a text file is open for a
long time.  If I quit Libre Office every two hours or so, I don't get that
problem.

Steps to Reproduce:
1. open a document in Writer on the MacBook Air w MacOS v13.2.1 and leave open
for a few hours. 
2. Gets progressively less responsive.

Actual Results:
It may be a minute or more that the wheel spins and I have not performed ANY
user activity on the Mac.

Expected Results:
Libre Office was as responsive as expected after restartiing it.


Reproducible: Always


User Profile Reset: No

Additional Info:
Restarting Libre Office fixes the problem.

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

[Libreoffice-bugs] [Bug 108800] [META] Print related issues

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108800
Bug 108800 depends on bug 113765, which changed state.

Bug 113765 Summary: PRINT Partial objects are printed on other pages
https://bugs.documentfoundation.org/show_bug.cgi?id=113765

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 108741] [META] Shapes bugs and enhancements

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108741
Bug 108741 depends on bug 113765, which changed state.

Bug 113765 Summary: PRINT Partial objects are printed on other pages
https://bugs.documentfoundation.org/show_bug.cgi?id=113765

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 113765] PRINT Partial objects are printed on other pages

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113765

Dieter  changed:

   What|Removed |Added

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

--- Comment #9 from Dieter  ---
Bug no longer present in

Version: 7.5.1.2 (X86_64) / LibreOffice Community
Build ID: fcbaee479e84c6cd81291587d2ee68cba099e129
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL threaded

=> RESOLVED WORKSFORME

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

[Libreoffice-bugs] [Bug 140683] Shift of view, after export of the document to xml (Writer)

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140683

Dieter  changed:

   What|Removed |Added

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

--- Comment #5 from Dieter  ---
Bug has gone in

Version: 7.5.1.2 (X86_64) / LibreOffice Community
Build ID: fcbaee479e84c6cd81291587d2ee68cba099e129
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL threaded

=> RESOLVED WORKSFORME

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

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-22.05' - download.lst

2023-03-21 Thread Michael Stahl (via logerrit)
 download.lst |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 13658021cf7028369ee85a5478f5c0c9ed96c11a
Author: Michael Stahl 
AuthorDate: Tue Mar 21 10:46:46 2023 +0100
Commit: Andras Timar 
CommitDate: Tue Mar 21 20:54:42 2023 +

curl: upgrade to release 8.0.1

Apparently 8.0.0 had a serious regression.

Change-Id: Icc761f5e5e01b5d9bebecc13f7cba608f5834f54
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149212
Tested-by: Andras Timar 
Reviewed-by: Andras Timar 

diff --git a/download.lst b/download.lst
index e1ad51789623..4fc4aad6587a 100644
--- a/download.lst
+++ b/download.lst
@@ -37,8 +37,8 @@ export CPPUNIT_SHA256SUM := 
89c5c6665337f56fd2db36bc3805a5619709d51fb136e5193707
 export CPPUNIT_TARBALL := cppunit-1.15.1.tar.gz
 export CT2N_SHA256SUM := 
71b238efd2734be9800af07566daea8d6685aeed28db5eb5fa0e6453f4d85de3
 export CT2N_TARBALL := 
1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt
-export CURL_SHA256SUM := 
759690f9a375a720f8bcce9f953897b0d93f31eed9649b74f846d54bbf63bbcc
-export CURL_TARBALL := curl-8.0.0.tar.xz
+export CURL_SHA256SUM := 
0a381cd82f4d00a9a334438b8ca239afea5bfefcfa9a1025f2bf118e79e0b5f0
+export CURL_TARBALL := curl-8.0.1.tar.xz
 export EBOOK_SHA256SUM := 
7e8d8ff34f27831aca3bc6f9cc532c2f90d2057c778963b884ff3d1e34dfe1f9
 export EBOOK_TARBALL := libe-book-0.1.3.tar.xz
 export EPOXY_SHA256SUM := 
a7ced37f4102b745ac86d6a70a9da399cc139ff168ba6b8002b4d8d43c900c15


[Libreoffice-commits] core.git: Branch 'distro/collabora/co-22.05' - download.lst

2023-03-21 Thread Michael Stahl (via logerrit)
 download.lst |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 5e8c5742bd87a71ffcb69a34ee8baf69ff295149
Author: Michael Stahl 
AuthorDate: Mon Mar 20 11:52:22 2023 +0100
Commit: Andras Timar 
CommitDate: Tue Mar 21 20:54:23 2023 +

curl: upgrade to release 8.0.0

Fixes CVE-2023-27535.

Also hopefully fixes excessive storage consumption during build:
o build: drop the use of XC_AMEND_DISTCLEAN [62]

Change-Id: I8792e95bc7634ee496488e80fec5a1310b24a31c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149153
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149211
Tested-by: Andras Timar 
Reviewed-by: Andras Timar 

diff --git a/download.lst b/download.lst
index 87e91ede9118..e1ad51789623 100644
--- a/download.lst
+++ b/download.lst
@@ -37,8 +37,8 @@ export CPPUNIT_SHA256SUM := 
89c5c6665337f56fd2db36bc3805a5619709d51fb136e5193707
 export CPPUNIT_TARBALL := cppunit-1.15.1.tar.gz
 export CT2N_SHA256SUM := 
71b238efd2734be9800af07566daea8d6685aeed28db5eb5fa0e6453f4d85de3
 export CT2N_TARBALL := 
1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt
-export CURL_SHA256SUM := 
1dae31b2a7c1fe269de99c0c31bb488346aab3459b5ffca909d6938249ae415f
-export CURL_TARBALL := curl-7.88.1.tar.xz
+export CURL_SHA256SUM := 
759690f9a375a720f8bcce9f953897b0d93f31eed9649b74f846d54bbf63bbcc
+export CURL_TARBALL := curl-8.0.0.tar.xz
 export EBOOK_SHA256SUM := 
7e8d8ff34f27831aca3bc6f9cc532c2f90d2057c778963b884ff3d1e34dfe1f9
 export EBOOK_TARBALL := libe-book-0.1.3.tar.xz
 export EPOXY_SHA256SUM := 
a7ced37f4102b745ac86d6a70a9da399cc139ff168ba6b8002b4d8d43c900c15


[Libreoffice-bugs] [Bug 116864] The table cell selection changes after undo of a drag & drop change

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116864

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

Version: 7.5.1.2 (X86_64) / LibreOffice Community
Build ID: fcbaee479e84c6cd81291587d2ee68cba099e129
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL threaded

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

[Libreoffice-bugs] [Bug 124114] FILEOPEN DOCX: View setting changes from "Web" to "Normal"

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124114

--- Comment #10 from Dieter  ---
Same behaviour in

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: b5c3a7502f7ff6ccf0f829c1f3a2ba50b8584c41
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-US (de_DE); UI: en-GB
Calc: CL threaded

But my question to Jan Holesovsky is still open.

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

[Libreoffice-bugs] [Bug 154313] New: Writer drop-down menus are colored black

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154313

Bug ID: 154313
   Summary: Writer drop-down menus are colored black
   Product: LibreOffice
   Version: 7.4.6.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: soli...@gmail.com

Created attachment 186122
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186122=edit
File with an image where you can see the bug

At the beginning everything works fine. But at some point and without my being
able to appreciate when, the drop-down menus are colored black and the texts
are not distinguishable, which remain in their black color.

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

[Libreoffice-bugs] [Bug 153988] Autocorrect dialog should offer starting-ending quote pairs more conveniently

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153988

Dieter  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org

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

[Libreoffice-ux-advise] [Bug 153988] Autocorrect dialog should offer starting-ending quote pairs more conveniently

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153988

Dieter  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org

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

[Libreoffice-bugs] [Bug 153987] Can't set per-language quotation marks in Tools | AutoCorrect

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153987

Dieter  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|
 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval

--- Comment #1 from Dieter  ---
Language selection is greyed out in the following tabs: Options | Localised
Options | Word Completion.
You can change language selection in the following tabs: Replace | Exceptions.
I couldn't find any information in LO help. I don't see a reason for this and
so I would call it a bug. But let's ask design-team.

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

[Libreoffice-ux-advise] [Bug 153987] Can't set per-language quotation marks in Tools | AutoCorrect

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153987

Dieter  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|
 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval

--- Comment #1 from Dieter  ---
Language selection is greyed out in the following tabs: Options | Localised
Options | Word Completion.
You can change language selection in the following tabs: Replace | Exceptions.
I couldn't find any information in LO help. I don't see a reason for this and
so I would call it a bug. But let's ask design-team.

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

[Libreoffice-bugs] [Bug 113944] [META] Options dialog's Writer settings bugs and enhancements

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113944

Dieter  changed:

   What|Removed |Added

 Depends on||153932


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=153932
[Bug 153932] OPTIONS DIALOG: Settings in Mail Merge Email dialog doesn't work
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 102998] [META] Mail merge bugs and enhancements

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102998

Dieter  changed:

   What|Removed |Added

 Depends on||153932


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=153932
[Bug 153932] OPTIONS DIALOG: Settings in Mail Merge Email dialog doesn't work
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 153932] OPTIONS DIALOG: Settings in Mail Merge Email dialog doesn't work

2023-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153932

Dieter  changed:

   What|Removed |Added

   Hardware|x86-64 (AMD64)  |All
Summary|With serial e-mail  |OPTIONS DIALOG: Settings in
   |LibreOffice 7.5.1 will not  |Mail Merge Email dialog
   |connect to the server   |doesn't work
 CC||dgp-m...@gmx.de
 Whiteboard| QA:needsComment|
 OS|Linux (All) |All
 Status|UNCONFIRMED |NEW
 Blocks||113944, 102998
 Ever confirmed|0   |1

--- Comment #1 from Dieter  ---
Yes, doesn't work

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: b5c3a7502f7ff6ccf0f829c1f3a2ba50b8584c41
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-US (de_DE); UI: en-GB
Calc: CL threaded


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102998
[Bug 102998] [META] Mail merge bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=113944
[Bug 113944] [META] Options dialog's Writer settings bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

  1   2   3   4   >