[Libreoffice-bugs] [Bug 151501] New: singaporeescort

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

Bug ID: 151501
   Summary: singaporeescort
   Product: Impress Remote
   Version: 1.0.1
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: singaporeescorts...@outlook.com

Description:
variety recently ran a rundown predictions encompassing the whole display-biz
realm; here are some of our additional prophecies precise to the track
international. simply be gentle on us if it turns out they do find a manner to
vaccinate the complete concert-going world in time for bonnaroo or if, one year
from now, adele and rihanna are nonetheless conserving out on us.

https://www.singaporeescortshub.com

Actual Results:
variety recently ran a rundown predictions encompassing the whole display-biz
realm; here are some of our additional prophecies precise to the track
international. simply be gentle on us if it turns out they do find a manner to
vaccinate the complete concert-going world in time for bonnaroo or 

Expected Results:
anna are nonetheless conserving out on us.


Reproducible: Always


User Profile Reset: No



Additional Info:
nnaroo or if, one year from now, adele and rih

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

[Libreoffice-commits] core.git: compilerplugins/clang include/rtl

2022-10-12 Thread Mike Kaganski (via logerrit)
 compilerplugins/clang/stringadd.cxx |1 
 compilerplugins/clang/stringconcatauto.cxx  |8 
 compilerplugins/clang/stringview.cxx|7 
 compilerplugins/clang/test/stringconcatauto.cxx |   12 
 compilerplugins/clang/test/stringview.cxx   |4 
 include/rtl/strbuf.hxx  |   19 -
 include/rtl/string.hxx  |   34 --
 include/rtl/stringconcat.hxx|  396 
 include/rtl/ustrbuf.hxx |   17 -
 include/rtl/ustring.hxx |   38 --
 10 files changed, 210 insertions(+), 326 deletions(-)

New commits:
commit af2879e434fa0dc6b2a626617ed865e4f66eb5ad
Author: Mike Kaganski 
AuthorDate: Wed Oct 12 16:23:33 2022 +0300
Commit: Mike Kaganski 
CommitDate: Thu Oct 13 07:18:41 2022 +0200

Deduplicate stringconcat more

In the process, drop ToStringHelper::allowO(U)StringConcat, because
we can deduce this information from ToStringHelper's addData itself.
To do that, addData was converted to ToStringHelper::operator(),
which allows to use std::is_invocable_v on the helper class.

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

diff --git a/compilerplugins/clang/stringadd.cxx 
b/compilerplugins/clang/stringadd.cxx
index 339192a78687..9254e9190ed5 100644
--- a/compilerplugins/clang/stringadd.cxx
+++ b/compilerplugins/clang/stringadd.cxx
@@ -233,6 +233,7 @@ bool 
StringAdd::VisitCXXOperatorCallExpr(CXXOperatorCallExpr const* operatorCall
 auto tc = 
loplugin::TypeCheck(operatorCall->getType()->getUnqualifiedDesugaredType());
 if (!tc.Struct("OUStringConcat").Namespace("rtl").GlobalNamespace()
 && !tc.Struct("OStringConcat").Namespace("rtl").GlobalNamespace()
+&& !tc.Struct("StringConcat").Namespace("rtl").GlobalNamespace()
 && !tc.Class("OUString").Namespace("rtl").GlobalNamespace()
 && !tc.Class("OString").Namespace("rtl").GlobalNamespace())
 return true;
diff --git a/compilerplugins/clang/stringconcatauto.cxx 
b/compilerplugins/clang/stringconcatauto.cxx
index 561aedec8070..02517a4db0ba 100644
--- a/compilerplugins/clang/stringconcatauto.cxx
+++ b/compilerplugins/clang/stringconcatauto.cxx
@@ -83,10 +83,10 @@ bool StringConcatAuto::checkDecl( const DeclaratorDecl* 
decl, QualType type, con
 return true;
 auto const tc = loplugin::TypeCheck( 
type.getNonReferenceType().getCanonicalType());
 const char* typeString = nullptr;
-if( tc.Struct("OUStringConcat").Namespace("rtl").GlobalNamespace())
-typeString = "OUString";
-else if( tc.Struct("OStringConcat").Namespace("rtl").GlobalNamespace())
-typeString = "OString";
+if( tc.Struct("StringConcat").Namespace("rtl").GlobalNamespace())
+typeString = "O(U)String";
+else if( tc.Struct("StringNumber").Namespace("rtl").GlobalNamespace())
+typeString = "O(U)String";
 else if( tc.Struct("OUStringNumber").Namespace("rtl").GlobalNamespace())
 typeString = "OUString";
 else if( tc.Struct("OStringNumber").Namespace("rtl").GlobalNamespace())
diff --git a/compilerplugins/clang/stringview.cxx 
b/compilerplugins/clang/stringview.cxx
index c1606908dbc7..16e53b1c12e9 100644
--- a/compilerplugins/clang/stringview.cxx
+++ b/compilerplugins/clang/stringview.cxx
@@ -206,6 +206,10 @@ void StringView::handleCXXConstructExpr(CXXConstructExpr 
const* expr)
.Class("OUStringLiteral")
.Namespace("rtl")
.GlobalNamespace()
+|| tc.RvalueReference()
+   .Struct("StringNumberBase")
+   .Namespace("rtl")
+   .GlobalNamespace()
 || 
tc.RvalueReference().Struct("OStringNumber").Namespace("rtl").GlobalNamespace()
 || 
tc.RvalueReference().Struct("OUStringNumber").Namespace("rtl").GlobalNamespace()
 || tc.ClassOrStruct("basic_string_view").StdNamespace())
@@ -214,7 +218,8 @@ void StringView::handleCXXConstructExpr(CXXConstructExpr 
const* expr)
 break;
 }
 if 
(tc.RvalueReference().Struct("OStringConcat").Namespace("rtl").GlobalNamespace()
-|| 
tc.RvalueReference().Struct("OUStringConcat").Namespace("rtl").GlobalNamespace())
+|| 
tc.RvalueReference().Struct("OUStringConcat").Namespace("rtl").GlobalNamespace()
+|| 
tc.RvalueReference().Struct("StringConcat").Namespace("rtl").GlobalNamespace())
 {
 argType = expr->getArg(0)->IgnoreImplicit()->getType();
 extra = ViaConcatenation;
diff --git a/compilerplugins/clang/test/stringconcatauto.cxx 
b/compilerplugins/clang/test/stringconcatauto.cxx
index dc450503d25e..72044f80b150 100644
--- 

[Libreoffice-commits] core.git: Branch 'libreoffice-7-4' - icon-themes/breeze icon-themes/breeze_dark icon-themes/breeze_dark_svg icon-themes/breeze_svg icon-themes/colibre icon-themes/colibre_dark ic

2022-10-12 Thread Rizal Muttaqin (via logerrit)
 icon-themes/breeze/sc/res/ou01.png|binary
 icon-themes/breeze/sc/res/ou010.png   |binary
 icon-themes/breeze/sc/res/ou011.png   |binary
 icon-themes/breeze/sc/res/ou012.png   |binary
 icon-themes/breeze/sc/res/ou02.png|binary
 icon-themes/breeze/sc/res/ou03.png|binary
 icon-themes/breeze/sc/res/ou04.png|binary
 icon-themes/breeze/sc/res/ou05.png|binary
 icon-themes/breeze/sc/res/ou06.png|binary
 icon-themes/breeze/sc/res/ou07.png|binary
 icon-themes/breeze/sc/res/ou08.png|binary
 icon-themes/breeze/sc/res/ou09.png|binary
 icon-themes/breeze_dark/sc/res/ou01.png   |binary
 icon-themes/breeze_dark/sc/res/ou010.png  |binary
 icon-themes/breeze_dark/sc/res/ou011.png  |binary
 icon-themes/breeze_dark/sc/res/ou012.png  |binary
 icon-themes/breeze_dark/sc/res/ou02.png   |binary
 icon-themes/breeze_dark/sc/res/ou03.png   |binary
 icon-themes/breeze_dark/sc/res/ou04.png   |binary
 icon-themes/breeze_dark/sc/res/ou05.png   |binary
 icon-themes/breeze_dark/sc/res/ou06.png   |binary
 icon-themes/breeze_dark/sc/res/ou07.png   |binary
 icon-themes/breeze_dark/sc/res/ou08.png   |binary
 icon-themes/breeze_dark/sc/res/ou09.png   |binary
 icon-themes/breeze_dark_svg/sc/res/ou01.svg   |1 +
 icon-themes/breeze_dark_svg/sc/res/ou010.svg  |1 +
 icon-themes/breeze_dark_svg/sc/res/ou011.svg  |1 +
 icon-themes/breeze_dark_svg/sc/res/ou012.svg  |1 +
 icon-themes/breeze_dark_svg/sc/res/ou02.svg   |1 +
 icon-themes/breeze_dark_svg/sc/res/ou03.svg   |1 +
 icon-themes/breeze_dark_svg/sc/res/ou04.svg   |1 +
 icon-themes/breeze_dark_svg/sc/res/ou05.svg   |1 +
 icon-themes/breeze_dark_svg/sc/res/ou06.svg   |1 +
 icon-themes/breeze_dark_svg/sc/res/ou07.svg   |1 +
 icon-themes/breeze_dark_svg/sc/res/ou08.svg   |1 +
 icon-themes/breeze_dark_svg/sc/res/ou09.svg   |1 +
 icon-themes/breeze_svg/sc/res/ou01.svg|1 +
 icon-themes/breeze_svg/sc/res/ou010.svg   |1 +
 icon-themes/breeze_svg/sc/res/ou011.svg   |1 +
 icon-themes/breeze_svg/sc/res/ou012.svg   |1 +
 icon-themes/breeze_svg/sc/res/ou02.svg|1 +
 icon-themes/breeze_svg/sc/res/ou03.svg|1 +
 icon-themes/breeze_svg/sc/res/ou04.svg|1 +
 icon-themes/breeze_svg/sc/res/ou05.svg|1 +
 icon-themes/breeze_svg/sc/res/ou06.svg|1 +
 icon-themes/breeze_svg/sc/res/ou07.svg|1 +
 icon-themes/breeze_svg/sc/res/ou08.svg|1 +
 icon-themes/breeze_svg/sc/res/ou09.svg|1 +
 icon-themes/colibre/sc/res/ou01.png   |binary
 icon-themes/colibre/sc/res/ou010.png  |binary
 icon-themes/colibre/sc/res/ou011.png  |binary
 icon-themes/colibre/sc/res/ou012.png  |binary
 icon-themes/colibre/sc/res/ou02.png   |binary
 icon-themes/colibre/sc/res/ou03.png   |binary
 icon-themes/colibre/sc/res/ou04.png   |binary
 icon-themes/colibre/sc/res/ou05.png   |binary
 icon-themes/colibre/sc/res/ou06.png   |binary
 icon-themes/colibre/sc/res/ou07.png   |binary
 icon-themes/colibre/sc/res/ou08.png   |binary
 icon-themes/colibre/sc/res/ou09.png   |binary
 icon-themes/colibre_dark/sc/res/ou01.png  |binary
 icon-themes/colibre_dark/sc/res/ou010.png |binary
 icon-themes/colibre_dark/sc/res/ou011.png |binary
 icon-themes/colibre_dark/sc/res/ou012.png |binary
 icon-themes/colibre_dark/sc/res/ou02.png  |binary
 icon-themes/colibre_dark/sc/res/ou03.png  |binary
 icon-themes/colibre_dark/sc/res/ou04.png  |binary
 icon-themes/colibre_dark/sc/res/ou05.png  |binary
 icon-themes/colibre_dark/sc/res/ou06.png  |binary
 icon-themes/colibre_dark/sc/res/ou07.png  |binary
 icon-themes/colibre_dark/sc/res/ou08.png  |binary
 icon-themes/colibre_dark/sc/res/ou09.png  |binary
 icon-themes/colibre_dark_svg/sc/res/ou01.svg  |2 +-
 icon-themes/colibre_dark_svg/sc/res/ou010.svg |3 ++-
 icon-themes/colibre_dark_svg/sc/res/ou02.svg  |2 +-
 icon-themes/colibre_dark_svg/sc/res/ou03.svg  |2 +-
 icon-themes/colibre_dark_svg/sc/res/ou04.svg  |2 +-
 icon-themes/colibre_dark_svg/sc/res/ou05.svg  |2 +-
 icon-themes/colibre_dark_svg/sc/res/ou06.svg  |2 +-
 icon-themes/colibre_dark_svg/sc/res/ou07.svg  |2 +-
 icon-themes/colibre_dark_svg/sc/res/ou08.svg  |2 +-
 icon-themes/colibre_dark_svg/sc/res/ou09.svg  |3 ++-
 icon-themes/colibre_svg/sc/res/ou01.svg   |2 +-
 icon-themes/colibre_svg/sc/res/ou010.svg  |3 ++-
 icon-themes/colibre_svg/sc/res/ou02.svg   |2 +-
 icon-themes/colibre_svg/sc/res/ou03.svg   |2 +-
 icon-themes/colibre_svg/sc/res/ou04.svg   |2 +-
 icon-themes/colibre_svg/sc/res/ou05.svg   |2 +-
 icon-themes/colibre_svg/sc/res/ou06.svg   |2 +-
 icon-themes/colibre_svg/sc/res/ou07.svg   

[Libreoffice-bugs] [Bug 120949] [META] Elementary icons

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

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||151087


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=151087
[Bug 151087] Expand "+" / fold "-" buttons poorly visible in dark mode, too
small to be clear
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: icon-themes/elementary icon-themes/elementary_svg

2022-10-12 Thread Rizal Muttaqin (via logerrit)
 icon-themes/elementary/sc/res/ou01.png  |binary
 icon-themes/elementary/sc/res/ou010.png |binary
 icon-themes/elementary/sc/res/ou011.png |binary
 icon-themes/elementary/sc/res/ou012.png |binary
 icon-themes/elementary/sc/res/ou02.png  |binary
 icon-themes/elementary/sc/res/ou03.png  |binary
 icon-themes/elementary/sc/res/ou04.png  |binary
 icon-themes/elementary/sc/res/ou05.png  |binary
 icon-themes/elementary/sc/res/ou06.png  |binary
 icon-themes/elementary/sc/res/ou07.png  |binary
 icon-themes/elementary/sc/res/ou08.png  |binary
 icon-themes/elementary/sc/res/ou09.png  |binary
 icon-themes/elementary_svg/sc/res/ou01.svg  |1 +
 icon-themes/elementary_svg/sc/res/ou010.svg |1 +
 icon-themes/elementary_svg/sc/res/ou011.svg |1 +
 icon-themes/elementary_svg/sc/res/ou012.svg |1 +
 icon-themes/elementary_svg/sc/res/ou02.svg  |1 +
 icon-themes/elementary_svg/sc/res/ou03.svg  |1 +
 icon-themes/elementary_svg/sc/res/ou04.svg  |1 +
 icon-themes/elementary_svg/sc/res/ou05.svg  |1 +
 icon-themes/elementary_svg/sc/res/ou06.svg  |1 +
 icon-themes/elementary_svg/sc/res/ou07.svg  |1 +
 icon-themes/elementary_svg/sc/res/ou08.svg  |1 +
 icon-themes/elementary_svg/sc/res/ou09.svg  |1 +
 24 files changed, 12 insertions(+)

New commits:
commit b3869749719288e6d1951030f07dc3fbccc0c222
Author: Rizal Muttaqin 
AuthorDate: Thu Oct 13 08:21:32 2022 +0700
Commit: Rizal Muttaqin 
CommitDate: Thu Oct 13 06:35:18 2022 +0200

tdf#151087 elementary:Grouped n Ungrouped Columns/Rows

Change-Id: I25ada781c5308a8ea89ba98d2e021f7b50c13c67
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141190
Tested-by: Rizal Muttaqin 
Reviewed-by: Rizal Muttaqin 

diff --git a/icon-themes/elementary/sc/res/ou01.png 
b/icon-themes/elementary/sc/res/ou01.png
new file mode 100644
index ..7b0894977be1
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou01.png differ
diff --git a/icon-themes/elementary/sc/res/ou010.png 
b/icon-themes/elementary/sc/res/ou010.png
new file mode 100644
index ..80138cb20c5f
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou010.png differ
diff --git a/icon-themes/elementary/sc/res/ou011.png 
b/icon-themes/elementary/sc/res/ou011.png
new file mode 100644
index ..d0cb60b413ae
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou011.png differ
diff --git a/icon-themes/elementary/sc/res/ou012.png 
b/icon-themes/elementary/sc/res/ou012.png
new file mode 100644
index ..97161aaa4dce
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou012.png differ
diff --git a/icon-themes/elementary/sc/res/ou02.png 
b/icon-themes/elementary/sc/res/ou02.png
new file mode 100644
index ..c83a24290016
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou02.png differ
diff --git a/icon-themes/elementary/sc/res/ou03.png 
b/icon-themes/elementary/sc/res/ou03.png
new file mode 100644
index ..b6b6b0e9ff46
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou03.png differ
diff --git a/icon-themes/elementary/sc/res/ou04.png 
b/icon-themes/elementary/sc/res/ou04.png
new file mode 100644
index ..8a0d0918972e
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou04.png differ
diff --git a/icon-themes/elementary/sc/res/ou05.png 
b/icon-themes/elementary/sc/res/ou05.png
new file mode 100644
index ..5f8fc76e0d84
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou05.png differ
diff --git a/icon-themes/elementary/sc/res/ou06.png 
b/icon-themes/elementary/sc/res/ou06.png
new file mode 100644
index ..069851c1ed42
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou06.png differ
diff --git a/icon-themes/elementary/sc/res/ou07.png 
b/icon-themes/elementary/sc/res/ou07.png
new file mode 100644
index ..b6295b421615
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou07.png differ
diff --git a/icon-themes/elementary/sc/res/ou08.png 
b/icon-themes/elementary/sc/res/ou08.png
new file mode 100644
index ..2c1966439ae0
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou08.png differ
diff --git a/icon-themes/elementary/sc/res/ou09.png 
b/icon-themes/elementary/sc/res/ou09.png
new file mode 100644
index ..216c0159f52f
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou09.png differ
diff --git a/icon-themes/elementary_svg/sc/res/ou01.svg 
b/icon-themes/elementary_svg/sc/res/ou01.svg
new file mode 100644
index ..de9e5b4340e6
--- /dev/null
+++ b/icon-themes/elementary_svg/sc/res/ou01.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>/gt;
\ No newline at end of file
diff --git a/icon-themes/elementary_svg/sc/res/ou010.svg 
b/icon-themes/elementary_svg/sc/res/ou010.svg
new file mode 100644
index ..7c54b3a1112f
--- /dev/null
+++ 

[Libreoffice-commits] core.git: Branch 'libreoffice-7-4' - icon-themes/elementary icon-themes/elementary_svg

2022-10-12 Thread Rizal Muttaqin (via logerrit)
 icon-themes/elementary/sc/res/ou01.png  |binary
 icon-themes/elementary/sc/res/ou010.png |binary
 icon-themes/elementary/sc/res/ou011.png |binary
 icon-themes/elementary/sc/res/ou012.png |binary
 icon-themes/elementary/sc/res/ou02.png  |binary
 icon-themes/elementary/sc/res/ou03.png  |binary
 icon-themes/elementary/sc/res/ou04.png  |binary
 icon-themes/elementary/sc/res/ou05.png  |binary
 icon-themes/elementary/sc/res/ou06.png  |binary
 icon-themes/elementary/sc/res/ou07.png  |binary
 icon-themes/elementary/sc/res/ou08.png  |binary
 icon-themes/elementary/sc/res/ou09.png  |binary
 icon-themes/elementary_svg/sc/res/ou01.svg  |1 +
 icon-themes/elementary_svg/sc/res/ou010.svg |1 +
 icon-themes/elementary_svg/sc/res/ou011.svg |1 +
 icon-themes/elementary_svg/sc/res/ou012.svg |1 +
 icon-themes/elementary_svg/sc/res/ou02.svg  |1 +
 icon-themes/elementary_svg/sc/res/ou03.svg  |1 +
 icon-themes/elementary_svg/sc/res/ou04.svg  |1 +
 icon-themes/elementary_svg/sc/res/ou05.svg  |1 +
 icon-themes/elementary_svg/sc/res/ou06.svg  |1 +
 icon-themes/elementary_svg/sc/res/ou07.svg  |1 +
 icon-themes/elementary_svg/sc/res/ou08.svg  |1 +
 icon-themes/elementary_svg/sc/res/ou09.svg  |1 +
 24 files changed, 12 insertions(+)

New commits:
commit 81bda80a11bb3d6753fdc27629032886aa73a784
Author: Rizal Muttaqin 
AuthorDate: Thu Oct 13 08:21:32 2022 +0700
Commit: Rizal Muttaqin 
CommitDate: Thu Oct 13 06:34:13 2022 +0200

tdf#151087 elementary:Grouped n Ungrouped Columns/Rows

Change-Id: I25ada781c5308a8ea89ba98d2e021f7b50c13c67
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141278
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 

diff --git a/icon-themes/elementary/sc/res/ou01.png 
b/icon-themes/elementary/sc/res/ou01.png
new file mode 100644
index ..7b0894977be1
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou01.png differ
diff --git a/icon-themes/elementary/sc/res/ou010.png 
b/icon-themes/elementary/sc/res/ou010.png
new file mode 100644
index ..80138cb20c5f
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou010.png differ
diff --git a/icon-themes/elementary/sc/res/ou011.png 
b/icon-themes/elementary/sc/res/ou011.png
new file mode 100644
index ..d0cb60b413ae
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou011.png differ
diff --git a/icon-themes/elementary/sc/res/ou012.png 
b/icon-themes/elementary/sc/res/ou012.png
new file mode 100644
index ..97161aaa4dce
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou012.png differ
diff --git a/icon-themes/elementary/sc/res/ou02.png 
b/icon-themes/elementary/sc/res/ou02.png
new file mode 100644
index ..c83a24290016
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou02.png differ
diff --git a/icon-themes/elementary/sc/res/ou03.png 
b/icon-themes/elementary/sc/res/ou03.png
new file mode 100644
index ..b6b6b0e9ff46
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou03.png differ
diff --git a/icon-themes/elementary/sc/res/ou04.png 
b/icon-themes/elementary/sc/res/ou04.png
new file mode 100644
index ..8a0d0918972e
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou04.png differ
diff --git a/icon-themes/elementary/sc/res/ou05.png 
b/icon-themes/elementary/sc/res/ou05.png
new file mode 100644
index ..5f8fc76e0d84
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou05.png differ
diff --git a/icon-themes/elementary/sc/res/ou06.png 
b/icon-themes/elementary/sc/res/ou06.png
new file mode 100644
index ..069851c1ed42
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou06.png differ
diff --git a/icon-themes/elementary/sc/res/ou07.png 
b/icon-themes/elementary/sc/res/ou07.png
new file mode 100644
index ..b6295b421615
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou07.png differ
diff --git a/icon-themes/elementary/sc/res/ou08.png 
b/icon-themes/elementary/sc/res/ou08.png
new file mode 100644
index ..2c1966439ae0
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou08.png differ
diff --git a/icon-themes/elementary/sc/res/ou09.png 
b/icon-themes/elementary/sc/res/ou09.png
new file mode 100644
index ..216c0159f52f
Binary files /dev/null and b/icon-themes/elementary/sc/res/ou09.png differ
diff --git a/icon-themes/elementary_svg/sc/res/ou01.svg 
b/icon-themes/elementary_svg/sc/res/ou01.svg
new file mode 100644
index ..de9e5b4340e6
--- /dev/null
+++ b/icon-themes/elementary_svg/sc/res/ou01.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>/gt;
\ No newline at end of file
diff --git a/icon-themes/elementary_svg/sc/res/ou010.svg 
b/icon-themes/elementary_svg/sc/res/ou010.svg
new file mode 100644
index ..7c54b3a1112f
--- /dev/null
+++ 

[Libreoffice-bugs] [Bug 151200] LibreOffice freezes when opening the SAVE dialog in a Text Document in Mac

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

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 148021] Crash when double clicking on scenarios

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

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 151206] Auto filtering search entry / text input widget should use a timer-based search activation algorithm to improve performance

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

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 151151] Watermark z-index inconsistency

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

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 148021] Crash when double clicking on scenarios

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

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

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 147990] Misalignment of text when opening RTF.

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

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 147990] Misalignment of text when opening RTF.

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

--- Comment #3 from QA Administrators  ---
Dear Stuart A,

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 145483] Options causes LibreOffice to stop responding

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

--- Comment #30 from QA Administrators  ---
Dear ph3,

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 145483] Options causes LibreOffice to stop responding

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

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 99969] COPYING cells containing a chart doesn't copy the data chart only if the sheet name was not renamed

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

--- Comment #12 from QA Administrators  ---
Dear Guillaume Smaha,

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 95852] Can't edit forms immediately after opening (WORKSAROUND: Navigate to next page by clicking on left page list OR right-click)

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

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

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 79695] FILEOPEN: MS Word 2013 ODF shows red question marks after formula

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

--- Comment #16 from QA Administrators  ---
Dear Firas Hanife,

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 137386] Page break setting doesn't show after undo, if the undo selection is used when opening the dialog

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 137361] UI: the slide transition star doesn't disappear instantly after undo in the slide panel

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 137049] Images resized if opening image properties with type tab & press OK

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 137073] Changing anchor position of image and undo does not restore the image's original position

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 133517] Object Animation: Exit: Boomerang distorts the object unexpectedly

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

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

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 133518] Object Animation: Exit: Ease Out is not the opposite of Entrance: Ease In

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

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

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 128322] Writer: pdf export doesn't export installed font ubuntu light (not problem with extern printer pdf)

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

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

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 108808] Sign existing PDF doesn't work with Hybrid PDFs

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

--- Comment #7 from QA Administrators  ---
Dear Samuel Mehrbrodt (CIB),

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 151498] FILEOPEN PPTX component of a SmartArt diagram has a wrong color

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

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #2 from m.a.riosv  ---
Reproducible
Version: 7.5.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: a7683a16e98def4198e1f74a93fecdaacbf639e7
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded Jumbo

and
Microsoft® PowerPoint® para Microsoft 365 MSO (versión 2209 compilación
16.0.15629.20152) de 64 bits

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

[Libreoffice-bugs] [Bug 151497] Ungroup of SmartArt diagram does not work in Writer

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

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
Created attachment 183010
  --> https://bugs.documentfoundation.org/attachment.cgi?id=183010=edit
What I see at every step.

File showing what I see at every step.

- Selecting the object before ungroup.
- Selecting after ungroup.
- Selecting after save-reopen as odt.

Except for the strange blue rectangle before ungroup that disappear after
ungroup, I have not clear the issue.

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

[Libreoffice-bugs] [Bug 151492] PowerPoint fails to open PPTX saved from certain ODP in Impress

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

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Reproducible.
Version: 7.5.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: a7683a16e98def4198e1f74a93fecdaacbf639e7
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded Jumbo

and 
Microsoft® PowerPoint® para Microsoft 365 MSO (versión 2209 compilación
16.0.15629.20152) de 64 bits

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

[Libreoffice-bugs] [Bug 151484] Data Validity list looses separation when saving as XLS

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

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
Created attachment 183009
  --> https://bugs.documentfoundation.org/attachment.cgi?id=183009=edit
Source ods file to test.

Reprducible.
Version: 7.4.2.1 (x64) / LibreOffice Community
Build ID: 681d65acd9ede00dd724d6716f21cabfdcc95bd2
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL
Version: 7.5.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: a7683a16e98def4198e1f74a93fecdaacbf639e7
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded Jumbo

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

[Libreoffice-bugs] [Bug 151500] New: very very slow on qt 5.15.6

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

Bug ID: 151500
   Summary: very very slow on qt 5.15.6
   Product: LibreOffice
   Version: 7.4.1.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: graphics stack
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kde-y...@qq.com

Description:
After upgrading to plasma 5.26(qt 5.15.6),libreoffice(qt5) became extremely
slow.
libreoffice(gtk3) still works fast, as ususal


Steps to Reproduce:
1.upgrade to plasma 5.26(qt 5.15.6)
2.launch libreoffice

Actual Results:
LibreOffice used almost half a minute to launch

Expected Results:
_


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
Version: 7.4.1.2 / LibreOffice Community
Build ID: 40(Build:2)
CPU threads: 4; OS: Linux 5.19; UI render: default; VCL: kf5 (cairo+xcb)
Locale: zh-CN (zh_CN.UTF-8); UI: zh-CN
Debian package version: 1:7.4.1-2
Calc: threaded

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

[Libreoffice-bugs] [Bug 151079] Calc Guide 7.4 source ODT file is corrupted

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

--- Comment #4 from Olivier Hallot  ---
Please use the following links for the Guides:

https://books.libreoffice.org/en/

and/or

https://documentation.libreoffice.org/en/english-documentation/

The wiki may have uploaded the master document instead of the ODT 

Note: the Calc Guide 7.4 has been updated today.

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

[Libreoffice-commits] core.git: icon-themes/breeze icon-themes/breeze_dark icon-themes/breeze_dark_svg icon-themes/breeze_svg icon-themes/sifr icon-themes/sifr_dark icon-themes/sifr_dark_svg icon-them

2022-10-12 Thread Rizal Muttaqin (via logerrit)
 icon-themes/breeze/sc/res/ou011.png  |binary
 icon-themes/breeze/sc/res/ou012.png  |binary
 icon-themes/breeze_dark/sc/res/ou011.png |binary
 icon-themes/breeze_dark/sc/res/ou012.png |binary
 icon-themes/breeze_dark_svg/sc/res/ou011.svg |2 +-
 icon-themes/breeze_dark_svg/sc/res/ou012.svg |2 +-
 icon-themes/breeze_svg/sc/res/ou011.svg  |2 +-
 icon-themes/breeze_svg/sc/res/ou012.svg  |2 +-
 icon-themes/sifr/sc/res/ou01.png |binary
 icon-themes/sifr/sc/res/ou010.png|binary
 icon-themes/sifr/sc/res/ou011.png|binary
 icon-themes/sifr/sc/res/ou012.png|binary
 icon-themes/sifr/sc/res/ou02.png |binary
 icon-themes/sifr/sc/res/ou03.png |binary
 icon-themes/sifr/sc/res/ou04.png |binary
 icon-themes/sifr/sc/res/ou05.png |binary
 icon-themes/sifr/sc/res/ou06.png |binary
 icon-themes/sifr/sc/res/ou07.png |binary
 icon-themes/sifr/sc/res/ou08.png |binary
 icon-themes/sifr/sc/res/ou09.png |binary
 icon-themes/sifr_dark/sc/res/ou01.png|binary
 icon-themes/sifr_dark/sc/res/ou010.png   |binary
 icon-themes/sifr_dark/sc/res/ou011.png   |binary
 icon-themes/sifr_dark/sc/res/ou012.png   |binary
 icon-themes/sifr_dark/sc/res/ou02.png|binary
 icon-themes/sifr_dark/sc/res/ou03.png|binary
 icon-themes/sifr_dark/sc/res/ou04.png|binary
 icon-themes/sifr_dark/sc/res/ou05.png|binary
 icon-themes/sifr_dark/sc/res/ou06.png|binary
 icon-themes/sifr_dark/sc/res/ou07.png|binary
 icon-themes/sifr_dark/sc/res/ou08.png|binary
 icon-themes/sifr_dark/sc/res/ou09.png|binary
 icon-themes/sifr_dark_svg/sc/res/ou01.svg|1 +
 icon-themes/sifr_dark_svg/sc/res/ou010.svg   |1 +
 icon-themes/sifr_dark_svg/sc/res/ou011.svg   |1 +
 icon-themes/sifr_dark_svg/sc/res/ou012.svg   |1 +
 icon-themes/sifr_dark_svg/sc/res/ou02.svg|1 +
 icon-themes/sifr_dark_svg/sc/res/ou03.svg|1 +
 icon-themes/sifr_dark_svg/sc/res/ou04.svg|1 +
 icon-themes/sifr_dark_svg/sc/res/ou05.svg|1 +
 icon-themes/sifr_dark_svg/sc/res/ou06.svg|1 +
 icon-themes/sifr_dark_svg/sc/res/ou07.svg|1 +
 icon-themes/sifr_dark_svg/sc/res/ou08.svg|1 +
 icon-themes/sifr_dark_svg/sc/res/ou09.svg|1 +
 icon-themes/sifr_svg/sc/res/ou01.svg |1 +
 icon-themes/sifr_svg/sc/res/ou010.svg|1 +
 icon-themes/sifr_svg/sc/res/ou011.svg|1 +
 icon-themes/sifr_svg/sc/res/ou012.svg|1 +
 icon-themes/sifr_svg/sc/res/ou02.svg |1 +
 icon-themes/sifr_svg/sc/res/ou03.svg |1 +
 icon-themes/sifr_svg/sc/res/ou04.svg |1 +
 icon-themes/sifr_svg/sc/res/ou05.svg |1 +
 icon-themes/sifr_svg/sc/res/ou06.svg |1 +
 icon-themes/sifr_svg/sc/res/ou07.svg |1 +
 icon-themes/sifr_svg/sc/res/ou08.svg |1 +
 icon-themes/sifr_svg/sc/res/ou09.svg |1 +
 56 files changed, 28 insertions(+), 4 deletions(-)

New commits:
commit aca7edb4ca7fd58c50a6b64b472e80f2eb053fd5
Author: Rizal Muttaqin 
AuthorDate: Thu Oct 13 06:00:40 2022 +0700
Commit: Rizal Muttaqin 
CommitDate: Thu Oct 13 01:56:45 2022 +0200

tdf#151087 Sifr:+Grouped n Ungrouped Columns/Rows, Breeze: Revise it

Change-Id: I6f1e72ec38414961cf5e3d41baf6b1448ab0aa95
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141276
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 

diff --git a/icon-themes/breeze/sc/res/ou011.png 
b/icon-themes/breeze/sc/res/ou011.png
index 52b8017fa48e..0f2a1f39908d 100644
Binary files a/icon-themes/breeze/sc/res/ou011.png and 
b/icon-themes/breeze/sc/res/ou011.png differ
diff --git a/icon-themes/breeze/sc/res/ou012.png 
b/icon-themes/breeze/sc/res/ou012.png
index a9bbb3b24a7e..135565142992 100644
Binary files a/icon-themes/breeze/sc/res/ou012.png and 
b/icon-themes/breeze/sc/res/ou012.png differ
diff --git a/icon-themes/breeze_dark/sc/res/ou011.png 
b/icon-themes/breeze_dark/sc/res/ou011.png
index ac1c1b27e258..79279b8765c8 100644
Binary files a/icon-themes/breeze_dark/sc/res/ou011.png and 
b/icon-themes/breeze_dark/sc/res/ou011.png differ
diff --git a/icon-themes/breeze_dark/sc/res/ou012.png 
b/icon-themes/breeze_dark/sc/res/ou012.png
index 08edb8f5806d..bcd33e269d88 100644
Binary files a/icon-themes/breeze_dark/sc/res/ou012.png and 
b/icon-themes/breeze_dark/sc/res/ou012.png differ
diff --git a/icon-themes/breeze_dark_svg/sc/res/ou011.svg 
b/icon-themes/breeze_dark_svg/sc/res/ou011.svg
index 064a4e432b6d..9191d99a7768 100644
--- a/icon-themes/breeze_dark_svg/sc/res/ou011.svg
+++ b/icon-themes/breeze_dark_svg/sc/res/ou011.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
diff 

[Libreoffice-bugs] [Bug 54908] printing when a selection is active should take in account it and activate the "print selection" radio button

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

Aron Budea  changed:

   What|Removed |Added

   Assignee|danielfaleirosi...@gmail.co |libreoffice-b...@lists.free
   |m   |desktop.org
 CC||aron.bu...@gmail.com

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

[Libreoffice-bugs] [Bug 131908] Crash undo/redo inserting image in calc

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

Rajasekaran Karunanithi  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #7 from Rajasekaran Karunanithi  ---
Can't reproduce in LO 7.4.1.2. Described steps works fine.

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

[Libreoffice-bugs] [Bug 148411] Accessing "Help" options crashes LibreOffice

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

James Burke  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |---

--- Comment #7 from James Burke  ---
FWIW, originally clicking Help simply crashed LibreOffice.  Now, although it
looks messy,  it doesn't crash LibreOffice, instead presenting a page of raw
html which can be sorted out and put to work.

It's not an excellent implementation, but at least it can be made functional
and doesn't crash my LibreOffice. 

Perhaps some volunteer with access can rework the raw html into something more
user-friendly?

Thanks!

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

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

2022-10-12 Thread Xisco Fauli (via logerrit)
 dev/null|binary
 sc/qa/uitest/calc_tests/autofill.py |  141 
 2 files changed, 141 deletions(-)

New commits:
commit fa39cf137ded385b463b071f6e785f2cf3093a22
Author: Xisco Fauli 
AuthorDate: Wed Oct 12 20:47:49 2022 +0200
Commit: Xisco Fauli 
CommitDate: Wed Oct 12 22:54:00 2022 +0200

sc: remove duplicated test

This is already well covered by Test::testAutoFill in
sc/qa/unit/ucalc.cxx

Change-Id: I5d539de101e1b4dcd19191ac40d2bc0734475889
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141272
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/sc/qa/uitest/calc_tests/autofill.py 
b/sc/qa/uitest/calc_tests/autofill.py
deleted file mode 100644
index 3600d42c07eb..
--- a/sc/qa/uitest/calc_tests/autofill.py
+++ /dev/null
@@ -1,141 +0,0 @@
-# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
-#
-# This file is part of the LibreOffice project.
-#
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-from uitest.framework import UITestCase
-from uitest.uihelper.common import get_url_for_data_file
-from uitest.uihelper.calc import enter_text_to_cell
-from libreoffice.calc.document import get_cell_by_position
-from libreoffice.uno.propertyvalue import mkPropertyValues
-#Test for the AutoFill feature - auto-fill can't increment last octet of ip 
addresses
-
-class CalcAutofill(UITestCase):
-
-def test_autofill(self):
-with self.ui_test.load_file(get_url_for_data_file("autofill.ods")) as 
calc_doc:
-xCalcDoc = self.xUITest.getTopFocusWindow()
-gridwin = xCalcDoc.getChild("grid_window")
-#Select cell A12 and drag the fill handle in the bottom right 
corner of the cell down to A18
-gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": 
"A12:A18"}))
-with 
self.ui_test.execute_dialog_through_command(".uno:FillSeries"):
-pass
-#Compare with the content in the right next column
-self.assertEqual(get_cell_by_position(calc_doc, 0, 0, 
11).getValue(), 18.34)
-self.assertEqual(get_cell_by_position(calc_doc, 0, 0, 
12).getValue(), 19.34)
-self.assertEqual(get_cell_by_position(calc_doc, 0, 0, 
13).getValue(), 20.34)
-self.assertEqual(get_cell_by_position(calc_doc, 0, 0, 
14).getValue(), 21.34)
-self.assertEqual(get_cell_by_position(calc_doc, 0, 0, 
15).getValue(), 22.34)
-self.assertEqual(get_cell_by_position(calc_doc, 0, 0, 
16).getValue(), 23.34)
-self.assertEqual(get_cell_by_position(calc_doc, 0, 0, 
17).getValue(), 24.34)
-#Select cell A12 and drag the fill handle in the bottom right 
corner of the cell up to A6
-gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": 
"A6:A12"}))
-with 
self.ui_test.execute_dialog_through_command(".uno:FillSeries") as xDialog:
-xup = xDialog.getChild("up")
-xincrement = xDialog.getChild("increment")
-xup.executeAction("CLICK", tuple())
-xincrement.executeAction("TYPE", 
mkPropertyValues({"KEYCODE":"CTRL+A"}))
-xincrement.executeAction("TYPE", 
mkPropertyValues({"KEYCODE":"BACKSPACE"}))
-xincrement.executeAction("TYPE", 
mkPropertyValues({"TEXT":"-1"}))
-#Compare with the content in the right next column
-self.assertEqual(get_cell_by_position(calc_doc, 0, 0, 
5).getValue(), 12.34)
-self.assertEqual(get_cell_by_position(calc_doc, 0, 0, 
6).getValue(), 13.34)
-self.assertEqual(get_cell_by_position(calc_doc, 0, 0, 
7).getValue(), 14.34)
-self.assertEqual(get_cell_by_position(calc_doc, 0, 0, 
8).getValue(), 15.34)
-self.assertEqual(get_cell_by_position(calc_doc, 0, 0, 
9).getValue(), 16.34)
-self.assertEqual(get_cell_by_position(calc_doc, 0, 0, 
10).getValue(), 17.34)
-self.assertEqual(get_cell_by_position(calc_doc, 0, 0, 
11).getValue(), 18.34)
-
-#Test that hidden cells are not affected / skipped in the 
increment process.
-#Simulate selecting cell A26 and dragging the fill handle in the 
bottom right corner of the cell down to A32
-gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": 
"A26:A32"}))
-with 
self.ui_test.execute_dialog_through_command(".uno:FillSeries"):
-pass
-self.assertEqual(get_cell_by_position(calc_doc, 0, 0, 
25).getValue(), 18.34)
-self.assertEqual(get_cell_by_position(calc_doc, 0, 0, 
26).getValue(), 19.34)
-self.assertEqual(get_cell_by_position(calc_doc, 0, 0, 
27).getValue(), 5.0) #hidden
-self.assertEqual(get_cell_by_position(calc_doc, 0, 0, 

[Libreoffice-bugs] [Bug 145969] divide common settings from object-specific settings in 'Position And Size' dialog

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

Regina Henschel  changed:

   What|Removed |Added

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

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

[Libreoffice-ux-advise] [Bug 145969] divide common settings from object-specific settings in 'Position And Size' dialog

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

Regina Henschel  changed:

   What|Removed |Added

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

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

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

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

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

   What|Removed |Added

 Depends on||150957


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=150957
[Bug 150957] LibreOffice should ask user how it will save WEBP images inside
ODT: as WEBP or as PNG
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 150957] LibreOffice should ask user how it will save WEBP images inside ODT: as WEBP or as PNG

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

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

   What|Removed |Added

Summary|webp images are saved into  |LibreOffice should ask user
   |odt as png  |how it will save WEBP
   ||images inside ODT: as WEBP
   ||or as PNG
 CC||79045_79...@mail.ru
 Ever confirmed|0   |1
   Severity|normal  |enhancement
 Blocks||103152
 Status|UNCONFIRMED |NEW

--- Comment #4 from Roman Kuznetsov <79045_79...@mail.ru> ---
Let's change it to enhancement and set to NEW


Referenced Bugs:

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

Commands ".uno:RegenerateDiagram" and ".uno:EditDiagram" do not work

2022-10-12 Thread Regina Henschel

Hi all,

it is about bug tdf#151499. Are the ".uno:RegenerateDiagram" and 
".uno:EditDiagram" commands supposed to work? Or is someone still 
working on it?


Kind regards,
Regina


[Libreoffice-bugs] [Bug 151499] New: Commands "Edit Diagram" and "Regenerate Diagram" do not work

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

Bug ID: 151499
   Summary: Commands "Edit Diagram" and "Regenerate Diagram" do
not work
   Product: LibreOffice
   Version: 7.4.1.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

Created attachment 183008
  --> https://bugs.documentfoundation.org/attachment.cgi?id=183008=edit
File with SmartArt diagram

Customize your LibreOffice so that you can access the commands "Edit Diagram"
and "Regenerate Diagram".
Open the attached file and mark the SmartArt. Click on command "Regenerate
Diagram". The diagram is damaged.
Reload the file, mark the SmartArt and click on command "Edit Diagram". You get
an dialog. Select an item there and click on Remove button. OK. The diagram is
damaged. The latter is likely damaged, because it tries to apply a "Regenerate
Diagram".

Notice, that the commands have no undo action.

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

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

2022-10-12 Thread Xisco Fauli (via logerrit)
 sc/qa/uitest/calc_tests/autofill.py |   14 --
 sc/qa/unit/ucalc.cxx|   12 
 2 files changed, 12 insertions(+), 14 deletions(-)

New commits:
commit be1a43651fb1da5872d4501b409d2811f142c525
Author: Xisco Fauli 
AuthorDate: Wed Oct 12 20:20:48 2022 +0200
Commit: Xisco Fauli 
CommitDate: Wed Oct 12 22:04:11 2022 +0200

sc: move UItest to CppUnittest

Change-Id: I6543994abe337041de5a1aab16a5a49105aacfbb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141271
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/sc/qa/uitest/calc_tests/autofill.py 
b/sc/qa/uitest/calc_tests/autofill.py
index 294d60fd7102..3600d42c07eb 100644
--- a/sc/qa/uitest/calc_tests/autofill.py
+++ b/sc/qa/uitest/calc_tests/autofill.py
@@ -138,18 +138,4 @@ class CalcAutofill(UITestCase):
 self.assertEqual(get_cell_by_position(calc_doc, 0, 15, 
10).getString(), "10.64.127.6")
 self.assertEqual(get_cell_by_position(calc_doc, 0, 15, 
11).getString(), "10.64.127.7")
 
-def test_autofill_with_suffix(self):
-with self.ui_test.create_doc_in_start_center("calc") as document:
-xCalcDoc = self.xUITest.getTopFocusWindow()
-gridwin = xCalcDoc.getChild("grid_window")
-enter_text_to_cell(gridwin, "A1", "1st")
-gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "B2"}))
-gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": 
"A1:A3"}))
-with 
self.ui_test.execute_dialog_through_command(".uno:FillSeries") as xDialog:
-xautofill = xDialog.getChild("autofill")
-xautofill.executeAction("CLICK", tuple())
-self.assertEqual(get_cell_by_position(document, 0, 0, 
0).getString(), "1st")
-self.assertEqual(get_cell_by_position(document, 0, 0, 
1).getString(), "2nd")
-self.assertEqual(get_cell_by_position(document, 0, 0, 
2).getString(), "3rd")
-
 # vim: set shiftwidth=4 softtabstop=4 expandtab:
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx
index 7726a56f561d..271ddc83ee5a 100644
--- a/sc/qa/unit/ucalc.cxx
+++ b/sc/qa/unit/ucalc.cxx
@@ -4730,6 +4730,18 @@ void Test::testAutoFill()
 // - Actual  : 2022-10-01 19:59:59.999
 CPPUNIT_ASSERT_EQUAL( OUString("2022-10-01 20:00:00.000"), 
m_pDoc->GetString( 0, 20, 0 ) );
 
+// Clear column A for a new test.
+clearRange(m_pDoc, ScRange(0,0,0,0,m_pDoc->MaxRow(),0));
+m_pDoc->SetRowHidden(0, m_pDoc->MaxRow(), 0, false); // Show all rows.
+
+m_pDoc->SetString( 0, 0, 0, "1st" );
+
+m_pDoc->Fill( 0, 0, 0, 0, nullptr, aMarkData, 5, FILL_TO_BOTTOM, FILL_AUTO 
);
+
+CPPUNIT_ASSERT_EQUAL( OUString("1st"), m_pDoc->GetString( 0, 0, 0 ) );
+CPPUNIT_ASSERT_EQUAL( OUString("2nd"), m_pDoc->GetString( 0, 1, 0 ) );
+CPPUNIT_ASSERT_EQUAL( OUString("3rd"), m_pDoc->GetString( 0, 2, 0 ) );
+
 m_pDoc->DeleteTab(0);
 }
 


[Libreoffice-bugs] [Bug 151498] FILEOPEN PPTX component of a SmartArt diagram has a wrong color

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

--- Comment #1 from Regina Henschel  ---
Created attachment 183007
  --> https://bugs.documentfoundation.org/attachment.cgi?id=183007=edit
Screenshot side-by-side

Original is dark red (sorry, not violet). In LibreOffice it is orange.

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

[Libreoffice-bugs] [Bug 151498] New: FILEOPEN PPTX component of a SmartArt diagram has a wrong color

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

Bug ID: 151498
   Summary: FILEOPEN PPTX component of a SmartArt diagram has a
wrong color
   Product: LibreOffice
   Version: 7.5.0.0 alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

Created attachment 183006
  --> https://bugs.documentfoundation.org/attachment.cgi?id=183006=edit
File with SmartArt diagram

Open attached document in Impress and open it in PowerPoint. Notice, that the
half circle is orange, whereas in PowerPoint it is violet.

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

[Libreoffice-bugs] [Bug 151497] New: Ungroup of SmartArt diagram does not work in Writer

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

Bug ID: 151497
   Summary: Ungroup of SmartArt diagram does not work in Writer
   Product: LibreOffice
   Version: 7.5.0.0 alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

Created attachment 183005
  --> https://bugs.documentfoundation.org/attachment.cgi?id=183005=edit
document with SmartArt diagram for testing

Open attached document. It has a SmartArt shape.
Ungroup the SmartArt shape.
Save the document to odt-format.
Reopen the saved document. => The SmartArt-shapes are totally wrong.

It is a problem in Writer. The same steps work without problems in Impress.

I wonder why it does not work. Do this: Save the original file to odt-format.
That generates a group from the SmartArt shape. Open that file and ungroup the
shape. Save it and reopen it. Now the ungrouping works without problems.

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

[Libreoffice-bugs] [Bug 151200] LibreOffice freezes when opening the SAVE dialog in a Text Document in Mac

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

--- Comment #3 from Georg Berky  ---
Created attachment 183004
  --> https://bugs.documentfoundation.org/attachment.cgi?id=183004=edit
LibreOffice save dialog hangs

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

[Libreoffice-bugs] [Bug 151200] LibreOffice freezes when opening the SAVE dialog in a Text Document in Mac

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

--- Comment #2 from Georg Berky  ---
Hi all,

I can confirm this bug. 

It seems to happen when I have assigned a fixed Desktop to LibreOffice but move
it to one different from that:

- Option-Click on the LibreOffice icon
- Options -> This Desktop (pins it to the desktop it is on now)
- Move the Libre Office window to another Desktop (e.g. hold-click on the menu
back, change desktops with a shortcut)
- File -> New -> Text Document
- File -> Save or Cmd-S

=> the save dialog looks garbled on my screen and I have to hit ESC to close it

The same does not happen on the desktop assigned to Libre

I also just managed to make LibreOffice hang by showing the desktop while the
dialog is open.

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

[Libreoffice-bugs] [Bug 151495] spam

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

V Stuart Foote  changed:

   What|Removed |Added

 Resolution|--- |INVALID
  Component|UI  |deletionRequest
 CC||vstuart.fo...@utsa.edu
 Status|UNCONFIRMED |RESOLVED
Summary|home page not found |spam

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

Minutes from the UX/design meeting 2022-Oct-12

2022-10-12 Thread Heiko Tietze

Present: John, Cor, Heiko
Comments: Regina, Stuart, Eyal, Rafael, Roman

Tickets/Topics

 * GALLERY: Option to add files to a "Favourites" theme in gallery
   + https://bugs.documentfoundation.org/show_bug.cgi?id=151222
   + current workflow is to create a special category "Favorites"
 and copy the interesting items into it (Regina)
   + Gallery management is clunky and Favorites is widely used (Cor, John)
   + having another route to Gallery items would be orthogonal to the existing
 path and confusing (Heiko)
   + adding the Favorite tagging mechanism wont block improvements to the
 Gallery (Cor)
   + could be shown in the list likewise the categories but on top and separated
 with a ruler; creating a category with the same name would end up in
 "Favorite 1"; renaming and deletion needs to be blocked (Heiko)
   => comment

 * Size submenu of table selection context menu not clear enough
   + https://bugs.documentfoundation.org/show_bug.cgi?id=151284
   + command labels usually start with an action like "Insert *" (Eyal)
   + "Optimize Size" (Rafael)
   + "Height and Width" (Cor)
   + just "Size" is reasonable (John, Cor)
   + "Resize Row/Column" (Eyal)
 + works but is lengthy
 + just "Resize" (John)
 + hard to translate in German, Dutch.. (Heiko)
   => better stick with the existing term, WF

 * Consider adding "Move to Top" and "Move to Bottom" buttons under effects list
   + https://bugs.documentfoundation.org/show_bug.cgi?id=151345
   + Move To Top/Button a not a requirement (Stuart)
   + tend to agree with WF but if the commands "move up/down" (as existing)
 and "to top/bottom" (as requested) could be added to the
 context menu (Heiko)
   + seldom use case, cluttering the UI, dragging is possible (Cor)
   + planning to change the UI anyway (Effects go into an expander) (Heiko)
   + competitor don't have it either, so prolly no big need (John)
   => WF

 * Need mechanism for re-centering "Slides pane" onto current slide with
   edit focus
   + https://bugs.documentfoundation.org/show_bug.cgi?id=151170
   + statusbar shows the number of the current slide and the sorter has a clear
 indicator but not when the focus changes eg after clicking the white space
 at the slide sorter
   + UNO action to scroll the pane would be very helpful (Stuart)
   + sounds like feature creep to me and extends the UNO API unnecessarily;
 having a "toolbar" (some button next to close) would be acceptable but
 ideally a more natural interaction like automatically refocus when
 items are edited, which is the fact today (Heiko)
   + alternatively we could just avoid loosing the focus; ie. no white space
 in the slide sorter (Heiko)
   + always show the currently active slide at the status bar (John)
   => recommend to modify the ticket goal

 * New Paste Special Operations: Maximum, Minimum
   + https://bugs.documentfoundation.org/show_bug.cgi?id=151205
   + afraid of a bottomless pit (Rafael), no use case (Roman)
   + plenty of space, do it (Eyal)
   + in case we have even more options it could go into a dropdown (Rafael)
 + strongly disagree; we should keep it as simple as needed (Heiko)
   + use case: Tracking a set of measurements where there is no need to keep the
 history of measurements, only the last value and the "best" value to date
   + don't get the use case, but seems to be completely different to what
 we have (Cor)
   + seems to be very advanced; too niche = WF (John)
   => recommend to realize per extension


OpenPGP_signature
Description: OpenPGP digital signature


[Libreoffice-qa] Minutes from the UX/design meeting 2022-Oct-12

2022-10-12 Thread Heiko Tietze

Present: John, Cor, Heiko
Comments: Regina, Stuart, Eyal, Rafael, Roman

Tickets/Topics

 * GALLERY: Option to add files to a "Favourites" theme in gallery
   + https://bugs.documentfoundation.org/show_bug.cgi?id=151222
   + current workflow is to create a special category "Favorites"
 and copy the interesting items into it (Regina)
   + Gallery management is clunky and Favorites is widely used (Cor, John)
   + having another route to Gallery items would be orthogonal to the existing
 path and confusing (Heiko)
   + adding the Favorite tagging mechanism wont block improvements to the
 Gallery (Cor)
   + could be shown in the list likewise the categories but on top and separated
 with a ruler; creating a category with the same name would end up in
 "Favorite 1"; renaming and deletion needs to be blocked (Heiko)
   => comment

 * Size submenu of table selection context menu not clear enough
   + https://bugs.documentfoundation.org/show_bug.cgi?id=151284
   + command labels usually start with an action like "Insert *" (Eyal)
   + "Optimize Size" (Rafael)
   + "Height and Width" (Cor)
   + just "Size" is reasonable (John, Cor)
   + "Resize Row/Column" (Eyal)
 + works but is lengthy
 + just "Resize" (John)
 + hard to translate in German, Dutch.. (Heiko)
   => better stick with the existing term, WF

 * Consider adding "Move to Top" and "Move to Bottom" buttons under effects list
   + https://bugs.documentfoundation.org/show_bug.cgi?id=151345
   + Move To Top/Button a not a requirement (Stuart)
   + tend to agree with WF but if the commands "move up/down" (as existing)
 and "to top/bottom" (as requested) could be added to the
 context menu (Heiko)
   + seldom use case, cluttering the UI, dragging is possible (Cor)
   + planning to change the UI anyway (Effects go into an expander) (Heiko)
   + competitor don't have it either, so prolly no big need (John)
   => WF

 * Need mechanism for re-centering "Slides pane" onto current slide with
   edit focus
   + https://bugs.documentfoundation.org/show_bug.cgi?id=151170
   + statusbar shows the number of the current slide and the sorter has a clear
 indicator but not when the focus changes eg after clicking the white space
 at the slide sorter
   + UNO action to scroll the pane would be very helpful (Stuart)
   + sounds like feature creep to me and extends the UNO API unnecessarily;
 having a "toolbar" (some button next to close) would be acceptable but
 ideally a more natural interaction like automatically refocus when
 items are edited, which is the fact today (Heiko)
   + alternatively we could just avoid loosing the focus; ie. no white space
 in the slide sorter (Heiko)
   + always show the currently active slide at the status bar (John)
   => recommend to modify the ticket goal

 * New Paste Special Operations: Maximum, Minimum
   + https://bugs.documentfoundation.org/show_bug.cgi?id=151205
   + afraid of a bottomless pit (Rafael), no use case (Roman)
   + plenty of space, do it (Eyal)
   + in case we have even more options it could go into a dropdown (Rafael)
 + strongly disagree; we should keep it as simple as needed (Heiko)
   + use case: Tracking a set of measurements where there is no need to keep the
 history of measurements, only the last value and the "best" value to date
   + don't get the use case, but seems to be completely different to what
 we have (Cor)
   + seems to be very advanced; too niche = WF (John)
   => recommend to realize per extension


OpenPGP_signature
Description: OpenPGP digital signature


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

2022-10-12 Thread Xisco Fauli (via logerrit)
 sc/qa/unit/ucalc.cxx |   13 +
 1 file changed, 13 insertions(+)

New commits:
commit 1b7356e57fbf28a62f10476cebbd45ee369fde17
Author: Xisco Fauli 
AuthorDate: Wed Oct 12 20:04:48 2022 +0200
Commit: Xisco Fauli 
CommitDate: Wed Oct 12 21:05:34 2022 +0200

tdf#151460: sc_ucalc: Add unittest

Change-Id: Ib0c8d09da50a09b2715a946a1955eb5a09d83d62
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141269
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx
index 18a7be1af068..7726a56f561d 100644
--- a/sc/qa/unit/ucalc.cxx
+++ b/sc/qa/unit/ucalc.cxx
@@ -4717,6 +4717,19 @@ void Test::testAutoFill()
 // - Actual  : 6.01
 CPPUNIT_ASSERT_EQUAL( OUString("6"), m_pDoc->GetString( 0, 50, 0 ) );
 
+// Clear column A for a new test.
+clearRange(m_pDoc, ScRange(0,0,0,0,m_pDoc->MaxRow(),0));
+m_pDoc->SetRowHidden(0, m_pDoc->MaxRow(), 0, false); // Show all rows.
+
+m_pDoc->SetString( 0, 0, 0, "2022-10-01 00:00:00.000" );
+m_pDoc->SetString( 0, 1, 0, "2022-10-01 01:00:00.000" );
+m_pDoc->Fill( 0, 0, 0, 1, nullptr, aMarkData, 25, FILL_TO_BOTTOM, 
FILL_AUTO );
+
+// tdf#151460: Without the fix in place, this test would have failed with
+// - Expected: 2022-10-01 20:00:00.000
+// - Actual  : 2022-10-01 19:59:59.999
+CPPUNIT_ASSERT_EQUAL( OUString("2022-10-01 20:00:00.000"), 
m_pDoc->GetString( 0, 20, 0 ) );
+
 m_pDoc->DeleteTab(0);
 }
 


[Libreoffice-bugs] [Bug 148411] Accessing "Help" options crashes LibreOffice

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

--- Comment #6 from Dieter  ---
(In reply to James Burke from comment #3)
> Thew bug appears to have been fixed and the Help tool works OK

=> RESOLVED WORKSFORME

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

[Libreoffice-ux-advise] [Bug 151205] New Paste Special Operations: Maximum, Minimum

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

--- Comment #9 from Cor Nouws  ---
(In reply to Robert Lacroix from comment #8)

> In exactly the same way. The operation between cells in the copied range
> (source) is performed with cells in the destination range. The dimensions of
> the source and destination ranges are the same, or the source range is a
> single cell and the destination has multiple cells.

So I copy a value, say 3.
Then select a range with 4 cells, values 4, 6, 8, 5
Paste > Special > Max.

Then?

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

[Libreoffice-bugs] [Bug 151205] New Paste Special Operations: Maximum, Minimum

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

--- Comment #9 from Cor Nouws  ---
(In reply to Robert Lacroix from comment #8)

> In exactly the same way. The operation between cells in the copied range
> (source) is performed with cells in the destination range. The dimensions of
> the source and destination ranges are the same, or the source range is a
> single cell and the destination has multiple cells.

So I copy a value, say 3.
Then select a range with 4 cells, values 4, 6, 8, 5
Paste > Special > Max.

Then?

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

[Libreoffice-bugs] [Bug 148411] Accessing "Help" options crashes LibreOffice

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

Dieter  changed:

   What|Removed |Added

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

--- Comment #5 from Dieter  ---
(In reply to James Burke from comment #3)
> Thew bug appears to have been fixed and the Help tool works OK

=> RESOLVED WORKSFORME

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

[Libreoffice-bugs] [Bug 151496] Union Character (∪ or U+222A) should be shown in Special Characters menu

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

thysuprememat...@tuta.io changed:

   What|Removed |Added

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

--- Comment #1 from thysuprememat...@tuta.io ---
EDIT: PLEASE IGNORE THIS BUG. I HAVE REALISED THAT THIS IS NOT A PROBLEM WITH
LIBREOFFICE

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

[Libreoffice-bugs] [Bug 151496] Union Character (∪ or U+222A) should be shown in Special Characters menu

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

thysuprememat...@tuta.io changed:

   What|Removed |Added

Summary|Union Character (∪ or ) |Union Character (∪ or
   ||U+222A) should be shown in
   ||Special Characters menu

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

[Libreoffice-bugs] [Bug 151170] Need mechanism for re-centering "Slides pane" onto current slide with edit focus

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

Cor Nouws  changed:

   What|Removed |Added

Summary|[UI] The "Slide Pane"   |Need mechanism for
   |doesn't have a clear focus  |re-centering "Slides pane"
   |with the current slide in   |onto current slide with
   |the center  |edit focus

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

[Libreoffice-ux-advise] [Bug 151170] Need mechanism for re-centering "Slides pane" onto current slide with edit focus

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

Cor Nouws  changed:

   What|Removed |Added

Summary|[UI] The "Slide Pane"   |Need mechanism for
   |doesn't have a clear focus  |re-centering "Slides pane"
   |with the current slide in   |onto current slide with
   |the center  |edit focus

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

[Libreoffice-bugs] [Bug 151496] New: Union Character (∪ or )

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

Bug ID: 151496
   Summary: Union Character (∪ or )
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: thysuprememat...@tuta.io

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

[Libreoffice-bugs] [Bug 136615] Re-consider date/time parts calculation for functions and formatting

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

--- Comment #18 from Eike Rathke  ---
(In reply to Nenad Antic from comment #16)
> > You'll also notice that most of your results will be unexpected because
> > starting at row 14 date+time in column D and E are of different days and the
> > result is a duration of 33 hours instead of 9 hours.
> 
> This is strange. I have used it like this for years and it works. Please see
> my new attachment. If it's showing 33 hours at your end it seems like it's
> platform dependent.
No. It works in your document because using only HOUR() and MINUTE() of the
difference ignores the date part. The time span between (E14) 2022-07-07
07:00:00 and (F14) 2022-07-08 16:00:00 is certainly not 9 hours but 33. Which
becomes visible when using my formula to calculate. If the 9 hours is expected
then the data is not correct (which in this case is likely).

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

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

2022-10-12 Thread Xisco Fauli (via logerrit)
 sc/qa/unit/subsequent_export_test2.cxx  |9 ++---
 sc/qa/unit/subsequent_filters_test2.cxx |3 +--
 sc/qa/unit/ucalc.cxx|4 ++--
 3 files changed, 5 insertions(+), 11 deletions(-)

New commits:
commit 2a1ea77eebed14c86b170c0845f0eb5330fd6a0c
Author: Xisco Fauli 
AuthorDate: Wed Oct 12 18:18:57 2022 +0200
Commit: Xisco Fauli 
CommitDate: Wed Oct 12 20:22:43 2022 +0200

sc: qa: avoid OUStringChar for better readability

Change-Id: Idf730e05d2ebec9003a2a4700b43b8658d858b03
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141265
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/sc/qa/unit/subsequent_export_test2.cxx 
b/sc/qa/unit/subsequent_export_test2.cxx
index 17e5da80eabb..71466d7ee720 100644
--- a/sc/qa/unit/subsequent_export_test2.cxx
+++ b/sc/qa/unit/subsequent_export_test2.cxx
@@ -909,20 +909,15 @@ void ScExportTest2::testEscapeCharInNumberFormatXLSX()
 = XPathHelper::parseExport2(*this, *xDocSh, m_xSFactory, 
"xl/styles.xml", FORMAT_XLSX);
 CPPUNIT_ASSERT(pDoc);
 
-const sal_Unicode cEuro(8364); // € symbol
 assertXPath(pDoc, "/x:styleSheet/x:numFmts/x:numFmt[2]", "formatCode",
 "00\\ 00\\ 00\\ 00\\ 00");
 assertXPath(pDoc, "/x:styleSheet/x:numFmts/x:numFmt[3]", "formatCode",
 "00\\.00\\.00\\.000\\.0"); // tdf#81939
 // "_-* #,##0\ _€_-;\-* #,##0\ _€_-;_-* "- "_€_-;_-@_-" // tdf#81222
-OUString rFormatStrExpected("_-* #,##0\\ _" + OUStringChar(cEuro) + 
"_-;\\-* #,##0\\ _"
-+ OUStringChar(cEuro) + "_-;_-* \"- \"_" + 
OUStringChar(cEuro)
-+ "_-;_-@_-");
+OUString rFormatStrExpected(u"_-* #,##0\\ _€_-;\\-* #,##0\\ _€_-;_-* \"- 
\"_€_-;_-@_-");
 assertXPath(pDoc, "/x:styleSheet/x:numFmts/x:numFmt[4]", "formatCode", 
rFormatStrExpected);
 // "_-* #,##0" €"_-;\-* #,##0" €"_-;_-* "- €"_-;_-@_-");
-rFormatStrExpected = "_-* #,##0\" " + OUStringChar(cEuro) + "\"_-;\\-* 
#,##0\" "
- + OUStringChar(cEuro) + "\"_-;_-* \"- " + 
OUStringChar(cEuro)
- + "\"_-;_-@_-";
+rFormatStrExpected = u"_-* #,##0\" €\"_-;\\-* #,##0\" €\"_-;_-* \"- 
€\"_-;_-@_-";
 assertXPath(pDoc, "/x:styleSheet/x:numFmts/x:numFmt[5]", "formatCode", 
rFormatStrExpected);
 // remove escape char in fraction
 assertXPath(pDoc, "/x:styleSheet/x:numFmts/x:numFmt[6]", "formatCode",
diff --git a/sc/qa/unit/subsequent_filters_test2.cxx 
b/sc/qa/unit/subsequent_filters_test2.cxx
index 8c77721cc790..2a7bdb65f843 100644
--- a/sc/qa/unit/subsequent_filters_test2.cxx
+++ b/sc/qa/unit/subsequent_filters_test2.cxx
@@ -2323,8 +2323,7 @@ void ScFiltersTest2::testTdf70455()
 // Without the fix in place, this test would have failed with
 // - Expected: €780.00
 // - Actual  : Err:509
-CPPUNIT_ASSERT_EQUAL(OUString(OUStringChar(u'\x20AC') + "780.00"),
- rDoc.GetString(ScAddress(7, 7, 0)));
+CPPUNIT_ASSERT_EQUAL(OUString(u"€780.00"), rDoc.GetString(ScAddress(7, 7, 
0)));
 xDocSh->DoClose();
 }
 
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx
index d821a146eef8..18a7be1af068 100644
--- a/sc/qa/unit/ucalc.cxx
+++ b/sc/qa/unit/ucalc.cxx
@@ -693,14 +693,14 @@ void Test::testTdf114406()
 void Test::testTdf93951()
 {
 CPPUNIT_ASSERT(m_pDoc->InsertTab (0, "Test"));
-m_pDoc->SetString(ScAddress(0,0,0), "=2*" + OUStringChar(u'\x00A7') + 
"*2");
+m_pDoc->SetString(ScAddress(0,0,0), u"=2*§*2");
 
 OUString aFormula = m_pDoc->GetFormula(0,0,0);
 
 // Without the fix in place, this test would have failed with
 // - Expected: =2*§*2
 // - Actual  : =2*
-CPPUNIT_ASSERT_EQUAL(OUString("=2*" + OUStringChar(u'\x00A7') + "*2"), 
aFormula);
+CPPUNIT_ASSERT_EQUAL(OUString(u"=2*§*2"), aFormula);
 
 m_pDoc->DeleteTab(0);
 }


[Libreoffice-commits] core.git: compilerplugins/clang

2022-10-12 Thread jsala (via logerrit)
 compilerplugins/clang/test/constvars.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b26793b907ce823e5cce38f6fe93b420ebe38579
Author: jsala 
AuthorDate: Wed Oct 12 16:17:22 2022 +0200
Commit: Stephan Bergmann 
CommitDate: Wed Oct 12 19:43:08 2022 +0200

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

Reverting this changes made by error.
See 
https://gerrit.libreoffice.org/c/core/+/136263/6/compilerplugins/clang/test/constvars.cxx#25

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

diff --git a/compilerplugins/clang/test/constvars.cxx 
b/compilerplugins/clang/test/constvars.cxx
index 80acdb67528d..88df50f8e199 100644
--- a/compilerplugins/clang/test/constvars.cxx
+++ b/compilerplugins/clang/test/constvars.cxx
@@ -22,8 +22,8 @@ namespace test1
 {
 int const aFormalArgs[] = { 1, 2 };
 // expected-error@+1 {{var can be const [loplugin:constvars]}}
-static std::size_t const nMediaArgsCount = std::size(aFormalArgs);
-std::size_t foo()
+static sal_uInt16 nMediaArgsCount = SAL_N_ELEMENTS(aFormalArgs);
+sal_uInt16 foo()
 {
 (void)aFormalArgs;
 return nMediaArgsCount;


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

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

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

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

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

It will be available in 7.5.0.

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

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

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

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

2022-10-12 Thread Xisco Fauli (via logerrit)
 sc/qa/unit/data/xlsx/tdf60673.xlsx  |binary
 sc/qa/unit/subsequent_filters_test2.cxx |   26 ++
 2 files changed, 26 insertions(+)

New commits:
commit 369c7d2dc4b941d5b7699b03a3cfc03ad0e3b430
Author: Xisco Fauli 
AuthorDate: Wed Oct 12 17:45:13 2022 +0200
Commit: Xisco Fauli 
CommitDate: Wed Oct 12 18:53:28 2022 +0200

tdf#60673: sc_subsequent_filters_test2: Add unittest

Change-Id: Ia36507483e5dc325431b17e9374882ae8102bfb5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141263
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/sc/qa/unit/data/xlsx/tdf60673.xlsx 
b/sc/qa/unit/data/xlsx/tdf60673.xlsx
new file mode 100644
index ..adfc45f14388
Binary files /dev/null and b/sc/qa/unit/data/xlsx/tdf60673.xlsx differ
diff --git a/sc/qa/unit/subsequent_filters_test2.cxx 
b/sc/qa/unit/subsequent_filters_test2.cxx
index 37f177d48297..8c77721cc790 100644
--- a/sc/qa/unit/subsequent_filters_test2.cxx
+++ b/sc/qa/unit/subsequent_filters_test2.cxx
@@ -136,6 +136,7 @@ public:
 void testCondFormatXLSB();
 void testPageScalingXLSX();
 void testActiveXCheckboxXLSX();
+void testTdf60673();
 void testtdf120301_xmlSpaceParsingXLSX();
 void testUnicodeFileNameGnumeric();
 void testCondFormatFormulaListenerXLSX();
@@ -252,6 +253,7 @@ public:
 CPPUNIT_TEST(testCondFormatXLSB);
 CPPUNIT_TEST(testPageScalingXLSX);
 CPPUNIT_TEST(testActiveXCheckboxXLSX);
+CPPUNIT_TEST(testTdf60673);
 CPPUNIT_TEST(testtdf120301_xmlSpaceParsingXLSX);
 CPPUNIT_TEST(testUnicodeFileNameGnumeric);
 CPPUNIT_TEST(testMergedCellsXLSXML);
@@ -2183,6 +2185,30 @@ void ScFiltersTest2::testActiveXCheckboxXLSX()
 xDocSh->DoClose();
 }
 
+void ScFiltersTest2::testTdf60673()
+{
+ScDocShellRef xDocSh = loadDoc(u"tdf60673.", FORMAT_XLSX);
+uno::Reference xModel = xDocSh->GetModel();
+uno::Reference xDoc(xModel, UNO_QUERY_THROW);
+uno::Reference xIA(xDoc->getSheets(), 
UNO_QUERY_THROW);
+uno::Reference 
xDrawPageSupplier(xIA->getByIndex(0),
+ 
UNO_QUERY_THROW);
+uno::Reference 
xIA_DrawPage(xDrawPageSupplier->getDrawPage(),
+ UNO_QUERY_THROW);
+uno::Reference 
xControlShape(xIA_DrawPage->getByIndex(0),
+ UNO_QUERY_THROW);
+
+uno::Reference 
xPropertySet(xControlShape->getControl(), uno::UNO_QUERY);
+
+OUString sLabel;
+xPropertySet->getPropertyValue("Label") >>= sLabel;
+
+// Without the fix in place, this test would have failed with
+// - Expected: PL: ĄŚŻŹĆŃŁÓĘ
+// - Actual  : PL:
+CPPUNIT_ASSERT_EQUAL(OUString(u"PL: ĄŚŻŹĆŃŁÓĘ"), sLabel);
+}
+
 void ScFiltersTest2::testtdf120301_xmlSpaceParsingXLSX()
 {
 ScDocShellRef xDocSh = loadDoc(u"tdf120301_xmlSpaceParsing.", FORMAT_XLSX);


[Libreoffice-bugs] [Bug 151205] New Paste Special Operations: Maximum, Minimum

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

--- Comment #8 from Robert Lacroix  ---
(In reply to Cor Nouws from comment #7)
> 
> In the cases with Add, Substract etc, the steps are:
> - copy a value from a random place
> - select a range with values
> - paste special with the action.
> 
> How would you use Maximum or Minimum if added to the Paste Special options?
> 
> Thanks,
> Cor

In exactly the same way. The operation between cells in the copied range
(source) is performed with cells in the destination range. The dimensions of
the source and destination ranges are the same, or the source range is a single
cell and the destination has multiple cells.

In your example, the source range has only one cell. Each cell of the
destination would receive the min or max (as selected) of that cell with the
source cell. If you like, you can think of this like saturating a signal in an
electrical circuit. The set of destination values (the signal) would be limited
on the low side by the Maximum operation with a lower limit (source) cell, and
on the high end by the Minimum operation with an upper limit (source) cell.

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

[Libreoffice-ux-advise] [Bug 151205] New Paste Special Operations: Maximum, Minimum

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

--- Comment #8 from Robert Lacroix  ---
(In reply to Cor Nouws from comment #7)
> 
> In the cases with Add, Substract etc, the steps are:
> - copy a value from a random place
> - select a range with values
> - paste special with the action.
> 
> How would you use Maximum or Minimum if added to the Paste Special options?
> 
> Thanks,
> Cor

In exactly the same way. The operation between cells in the copied range
(source) is performed with cells in the destination range. The dimensions of
the source and destination ranges are the same, or the source range is a single
cell and the destination has multiple cells.

In your example, the source range has only one cell. Each cell of the
destination would receive the min or max (as selected) of that cell with the
source cell. If you like, you can think of this like saturating a signal in an
electrical circuit. The set of destination values (the signal) would be limited
on the low side by the Maximum operation with a lower limit (source) cell, and
on the high end by the Minimum operation with an upper limit (source) cell.

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

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-22.05' - sw/qa sw/source

2022-10-12 Thread Miklos Vajna (via logerrit)
 sw/qa/core/crsr/crsr.cxx|   23 +++
 sw/source/core/crsr/pam.cxx |7 +++
 2 files changed, 30 insertions(+)

New commits:
commit fc8b066ab832e1166da3b9dd76e11b4e266314cc
Author: Miklos Vajna 
AuthorDate: Wed Oct 12 11:44:49 2022 +0200
Commit: Andras Timar 
CommitDate: Wed Oct 12 18:17:04 2022 +0200

tdf#151190 sw content controls: make them read-write in protected sections

When the user picked a date in the date picker inside a protected
section, then we blocked the deletion of the placeholder, but allowed
insertion to the content control, which is inconsistent.

The trouble was that SwPaM::HasReadonlySel() detected that the cursor is
in a protected section, so deletion failed, leading to an ever growing
value of the content control.

Fix the problem by handling content controls similar to legacy form
fields: if the cursor is inside a content control, then that value is
editable, even if we're inside a protected section.

This is meant to fix all content control types, not just date pickers.

(cherry picked from commit b138d6c12aaeb0b87dce15ea52dd134cf1abf6ac)

Change-Id: I9eca4c4f71dcfaa61d84414f7727adcd4496735c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141255
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Andras Timar 

diff --git a/sw/qa/core/crsr/crsr.cxx b/sw/qa/core/crsr/crsr.cxx
index 5f06658b528e..7b42d4df3716 100644
--- a/sw/qa/core/crsr/crsr.cxx
+++ b/sw/qa/core/crsr/crsr.cxx
@@ -183,6 +183,29 @@ CPPUNIT_TEST_FIXTURE(SwCoreCrsrTest, 
testDropdownContentControl)
 CPPUNIT_ASSERT(pWrtShell->HasReadonlySel());
 }
 
+CPPUNIT_TEST_FIXTURE(SwCoreCrsrTest, testContentControlProtectedSection)
+{
+// Given a document with a date content control in a protected section:
+SwDoc* pDoc = createSwDoc();
+SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell();
+pWrtShell->InsertContentControl(SwContentControlType::DATE);
+pWrtShell->SelAll();
+OUString aSectionName = pWrtShell->GetUniqueSectionName();
+SwSectionData aSection(SectionType::Content, aSectionName);
+aSection.SetProtectFlag(true);
+pWrtShell->InsertSection(aSection);
+
+// When entering the content control:
+pWrtShell->SttEndDoc(/*bStt=*/true);
+pWrtShell->Right(CRSR_SKIP_CHARS, /*bSelect=*/false, 1, 
/*bBasicCall=*/false);
+
+// Then make sure that the cursor is read-only:
+// Without the accompanying fix in place, this test would have failed, it 
was not possible to
+// pick a date in a protected section (the new value was inserted, but the 
placeholder was not
+// removed).
+CPPUNIT_ASSERT(!pWrtShell->HasReadonlySel());
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/core/crsr/pam.cxx b/sw/source/core/crsr/pam.cxx
index 277af8905a07..b2b51958c6cb 100644
--- a/sw/source/core/crsr/pam.cxx
+++ b/sw/source/core/crsr/pam.cxx
@@ -763,6 +763,13 @@ bool SwPaM::HasReadonlySel( bool bFormView ) const
 {
 // Allow editing when the cursor/selection is fully inside of a legacy 
form field.
 bRet = !( pA != nullptr && !bAtStartA && !bAtStartB && pA == pB );
+
+if (bRet && rDoc.GetEditShell()->CursorInsideContentControl())
+{
+// Also allow editing inside content controls in general, similar 
to form fields.
+// Specific types will be disabled below.
+bRet = false;
+}
 }
 
 if (!bRet)


[Libreoffice-bugs] [Bug 151485] page line-spacing -> page level line-spacing

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

--- Comment #2 from V Stuart Foote  ---
Anyhow, my "Register line spacing / Reference" pairing as noted in bug 127279
would be the way to adjust should additional change be agreed to.

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

[Libreoffice-ux-advise] [Bug 151485] page line-spacing -> page level line-spacing

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

--- Comment #2 from V Stuart Foote  ---
Anyhow, my "Register line spacing / Reference" pairing as noted in bug 127279
would be the way to adjust should additional change be agreed to.

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

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

2022-10-12 Thread Jean-Pierre Ledure (via logerrit)
 wizards/source/scriptforge/SF_Exception.xba  |4 
 wizards/source/scriptforge/SF_Root.xba   |   14 
 wizards/source/scriptforge/po/ScriptForge.pot|   19 +
 wizards/source/scriptforge/po/en.po  |   19 +
 wizards/source/scriptforge/python/scriptforge.py |4 
 wizards/source/sfdialogs/SF_Dialog.xba   |  381 ++-
 wizards/source/sfdialogs/SF_DialogListener.xba   |   92 +
 7 files changed, 523 insertions(+), 10 deletions(-)

New commits:
commit 55477bf4fd3baa99f8b5d5686091d7613a1022c3
Author: Jean-Pierre Ledure 
AuthorDate: Wed Oct 12 16:09:11 2022 +0200
Commit: Jean-Pierre Ledure 
CommitDate: Wed Oct 12 17:52:59 2022 +0200

ScriptForge - (SF_Dialog) new SetPageManager method

The SetPageManager() method

Define how the dialog displays pages.
The page manager is an alternative to the direct use
of the Page property of the dialog and dialogcontrol objects.

The arguments define which controls are involved
in the orchestration of the displayed pages.
Possible options:
- select a value in a list- or combobox
- select an item in a group of radio buttons
- select a button linked to a page
  placed side-by-side the buttons can simulate a tabbed interface
- press a NEXT or BACK button like in many wizards
Those options may be combined.
The control updates will be synchronized.
The method will set the actual page number to 1.
Afterwards the Page property may be used to display any other page

The SetPageManager() method is to be run
only once and before the Execute() statement.
If invoked several times, subsequent calls will be ignored.
The method will define new listeners
on the concerned controls, addressing generic routines.
The corresponding events will be fired during the dialog execution.
Preset events (in the Basic IDE) will be preserved
and executed immediately AFTER the page change.
The listeners will be removed at dialog termination.

The implementation has next parts:
1. Store the arguments in the Dialog instance
2. Set appropriate listeners on involved controls
3. Page change synchronizes the values in the involved controls
   (be it by user code or by page manager)
4. Events triggered by listeners change page number

The method is available both in Basic and Python contexts.
This commit require the Dialog help page to be updated.

Change-Id: I00a0212414f283102c73de4ceb488aa1aeddf746
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141257
Tested-by: Jean-Pierre Ledure 
Reviewed-by: Jean-Pierre Ledure 
Tested-by: Jenkins

diff --git a/wizards/source/scriptforge/SF_Exception.xba 
b/wizards/source/scriptforge/SF_Exception.xba
index 572b0fb950a6..f752e054f2b5 100644
--- a/wizards/source/scriptforge/SF_Exception.xba
+++ b/wizards/source/scriptforge/SF_Exception.xba
@@ -125,6 +125,7 @@ Const DIALOGNOTFOUNDERROR   =   
DIALOGNOTFOUNDERROR
 Const DIALOGDEADERROR  =   DIALOGDEADERROR
 Const CONTROLTYPEERROR =   CONTROLTYPEERROR
 Const TEXTFIELDERROR   =   TEXTFIELDERROR
+Const PAGEMANAGERERROR =   PAGEMANAGERERROR
 
  SF_Database
 Const DBREADONLYERROR  =   DBREADONLYERROR
@@ -1020,6 +1021,9 @@ Try:
Case TEXTFIELDERROR   
SF_DialogControl.WriteLine(ControlName, DialogName)
sMessage = sLocation _
 \n  
\n  .GetText(TEXTFIELD, pvArgs(0), pvArgs(1))
+   Case PAGEMANAGERERROR 
SF_Dialog.SetPageManager(PilotsList, TabsList, WizardsList)
+   sMessage = sLocation _
+\n  
\n  .GetText(PAGEMANAGER, pvArgs(0), pvArgs(1), 
pvArgs(2), pvArgs(3), pvArgs(4), pvArgs(5))
Case DBREADONLYERROR  SF_Database.RunSql()
sMessage = sLocation _
 \n  
\n  .GetText(DBREADONLY, vLocation(2))
diff --git a/wizards/source/scriptforge/SF_Root.xba 
b/wizards/source/scriptforge/SF_Root.xba
index 4db0efb42c1d..8c9a0dbcf6be 100644
--- a/wizards/source/scriptforge/SF_Root.xba
+++ b/wizards/source/scriptforge/SF_Root.xba
@@ -991,6 +991,20 @@ Try:
   
%1: An identifier\n _
   
%2: An identifier _
)
+ SF_Dialog.SetPageManager
+   .AddText(   Context := PAGEMANAGER _
+   , MsgId := The Page 
Manager could not be setup due to inconsistent arguments.\n\n _
+
 

[Libreoffice-bugs] [Bug 151495] New: home page not found

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

Bug ID: 151495
   Summary: home page not found
   Product: LibreOffice
   Version: 3.3.3 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cradhika...@gmail.com

Description:
home page css not found

Steps to Reproduce:
1.open website 
2.page not loading
3.

Actual Results:
page should be loaded

Expected Results:
page alignment should be perfect


Reproducible: Always


User Profile Reset: No



Additional Info:
color is not consistent

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

[Libreoffice-bugs] [Bug 151485] page line-spacing -> page level line-spacing

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

V Stuart Foote  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||7279
 CC||sdc.bla...@youmail.dk,
   ||vstuart.fo...@utsa.edu

--- Comment #1 from V Stuart Foote  ---
IMHO it should not have been changed from its 'register true' origin, so not a
fan of another round of Bike Shedding.

-1

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

[Libreoffice-ux-advise] [Bug 151485] page line-spacing -> page level line-spacing

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

V Stuart Foote  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||7279
 CC||sdc.bla...@youmail.dk,
   ||vstuart.fo...@utsa.edu

--- Comment #1 from V Stuart Foote  ---
IMHO it should not have been changed from its 'register true' origin, so not a
fan of another round of Bike Shedding.

-1

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

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

2022-10-12 Thread Tor Lillqvist (via logerrit)
 external/freetype/ExternalPackage_freetype.mk|   16 
 external/freetype/ExternalProject_freetype.mk|5 +
 external/freetype/Module_freetype.mk |1 -
 external/freetype/UnpackedTarball_freetype.mk|1 -
 external/freetype/libfreetype-bundled-soname.patch.0 |   11 ---
 5 files changed, 1 insertion(+), 33 deletions(-)

New commits:
commit dd522fc58e37b149c7e31bad931e82b72c9f4db5
Author: Tor Lillqvist 
AuthorDate: Wed Oct 12 17:22:30 2022 +0300
Commit: Tor Lillqvist 
CommitDate: Wed Oct 12 17:34:54 2022 +0200

No need to build bundled freetype as shared even with the fd hack

Change-Id: I1aea8ecf55aafbcb68d2cd99f57756d18bc2c4d1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141258
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Tor Lillqvist 

diff --git a/external/freetype/ExternalPackage_freetype.mk 
b/external/freetype/ExternalPackage_freetype.mk
deleted file mode 100644
index 4709c60415c0..
--- a/external/freetype/ExternalPackage_freetype.mk
+++ /dev/null
@@ -1,16 +0,0 @@
-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
-#
-# This file is part of the LibreOffice project.
-#
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-
-$(eval $(call gb_ExternalPackage_ExternalPackage,freetype,freetype))
-
-$(eval $(call gb_ExternalPackage_use_external_project,freetype,freetype))
-
-$(eval $(call 
gb_ExternalPackage_add_file,freetype,$(LIBO_LIB_FOLDER)/libfreetype-lo.so.6.18.0,instdir/lib/libfreetype-lo.so.6.18.0))
-
-# vim: set noet sw=4 ts=4:
diff --git a/external/freetype/ExternalProject_freetype.mk 
b/external/freetype/ExternalProject_freetype.mk
index 8cf533d8dfb4..4cb2920ae923 100644
--- a/external/freetype/ExternalProject_freetype.mk
+++ b/external/freetype/ExternalProject_freetype.mk
@@ -17,10 +17,7 @@ $(call gb_ExternalProject_get_state_target,freetype,build) :
$(call gb_Trace_StartRange,freetype,EXTERNAL)
$(call gb_ExternalProject_run,build,\
$(gb_RUN_CONFIGURE) ./configure \
-   $(if $(filter LINUX,$(OS)), \
-   --disable-static, \
-   --disable-shared \
-   ) \
+   --disable-shared \
--with-pic \
--without-zlib \
--without-brotli \
diff --git a/external/freetype/Module_freetype.mk 
b/external/freetype/Module_freetype.mk
index 8552511e1674..290014c47dfd 100644
--- a/external/freetype/Module_freetype.mk
+++ b/external/freetype/Module_freetype.mk
@@ -12,7 +12,6 @@ $(eval $(call gb_Module_Module,freetype))
 $(eval $(call gb_Module_add_targets,freetype,\
ExternalProject_freetype \
UnpackedTarball_freetype \
-   $(if $(filter LINUX,$(OS)),ExternalPackage_freetype) \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/external/freetype/UnpackedTarball_freetype.mk 
b/external/freetype/UnpackedTarball_freetype.mk
index c4c2da5a28fa..0b521cb934d0 100644
--- a/external/freetype/UnpackedTarball_freetype.mk
+++ b/external/freetype/UnpackedTarball_freetype.mk
@@ -14,7 +14,6 @@ $(eval $(call 
gb_UnpackedTarball_set_tarball,freetype,$(FREETYPE_TARBALL),,freet
 $(eval $(call gb_UnpackedTarball_add_patches,freetype,\
external/freetype/freetype-2.6.5.patch.1 \
external/freetype/freetype-fd-hack.patch.0 \
-   external/freetype/libfreetype-bundled-soname.patch.0 \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/external/freetype/libfreetype-bundled-soname.patch.0 
b/external/freetype/libfreetype-bundled-soname.patch.0
deleted file mode 100644
index 5b864be562b8..
--- a/external/freetype/libfreetype-bundled-soname.patch.0
+++ /dev/null
@@ -1,11 +0,0 @@
-# -*- Mode: Diff -*-
 builds/unix/unix-cc.in
-+++ builds/unix/unix-cc.in
-@@ -123,6 +123,7 @@
- LINK_LIBRARY = $(LIBTOOL) --mode=link $(CCraw) -o $@ $(OBJECTS_LIST) \
-   -rpath $(libdir) -version-info $(version_info) \
-   $(LDFLAGS) -no-undefined \
-+  -release lo -Wl,-soname 
-Wl,libfreetype-lo.so.6.18.0 \
-   -export-symbols $(EXPORTS_LIST)
- 
- # EOF


[Libreoffice-bugs] [Bug 151485] page line-spacing -> page level line-spacing

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

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-ux-advise] [Bug 151485] page line-spacing -> page level line-spacing

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

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 151493] Window position/size problems since 7.4.1.2 - KDE Neon

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

--- Comment #4 from Gustavo A. Díaz  ---
Thanks you!

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

[Libreoffice-bugs] [Bug 151493] Window position/size problems since 7.4.1.2 - KDE Neon

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

--- Comment #3 from V Stuart Foote  ---
The 7.4.2.3 final build was posted today, PPA should roll round before too
long.

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

[Libreoffice-bugs] [Bug 151493] Window position/size problems since 7.4.1.2 - KDE Neon

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

--- Comment #2 from Gustavo A. Díaz  ---
Ok, I will have to wait then for that PPA to be updated. Thanks.

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

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

2022-10-12 Thread Caolán McNamara (via logerrit)
 vcl/source/rendercontext/drawmode.cxx |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit d6a5431b5ef369823e4438a34767bf6c234eb231
Author: Caolán McNamara 
AuthorDate: Wed Oct 12 10:21:13 2022 +0100
Commit: Caolán McNamara 
CommitDate: Wed Oct 12 17:02:58 2022 +0200

use WindowTextColor as the fg for high contrast

No platform sets TextColor away from its default of black and we're
using WindowColor as the bg for high contrast, so we need to use
something suitable for use on WindowColor. MSDN docs state
COLOR_WINDOWTEXT for HighContrast if using COLOR_WINDOW.

Change-Id: Icdd3cf6d76da7eb544f08619717689b44ab1fd38
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141247
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/vcl/source/rendercontext/drawmode.cxx 
b/vcl/source/rendercontext/drawmode.cxx
index b1b85d33f52f..fe0a1660acd5 100644
--- a/vcl/source/rendercontext/drawmode.cxx
+++ b/vcl/source/rendercontext/drawmode.cxx
@@ -53,7 +53,7 @@ Color GetLineColor(Color const& rColor, DrawModeFlags 
nDrawMode,
 }
 else if (nDrawMode & DrawModeFlags::SettingsLine)
 {
-aColor = rStyleSettings.GetFontColor();
+aColor = rStyleSettings.GetWindowTextColor();
 }
 }
 }
@@ -119,7 +119,7 @@ Color GetHatchColor(Color const& rColor, DrawModeFlags 
nDrawMode,
 }
 else if (nDrawMode & DrawModeFlags::SettingsLine)
 {
-aColor = rStyleSettings.GetFontColor();
+aColor = rStyleSettings.GetWindowTextColor();
 }
 
 return aColor;
@@ -149,7 +149,7 @@ Color GetTextColor(Color const& rColor, DrawModeFlags 
nDrawMode,
 }
 else if (nDrawMode & DrawModeFlags::SettingsText)
 {
-aColor = rStyleSettings.GetFontColor();
+aColor = rStyleSettings.GetWindowTextColor();
 }
 }
 
@@ -183,7 +183,7 @@ vcl::Font GetFont(vcl::Font const& rFont, DrawModeFlags 
nDrawMode,
 }
 else if (nDrawMode & DrawModeFlags::SettingsText)
 {
-aTextColor = rStyleSettings.GetFontColor();
+aTextColor = rStyleSettings.GetWindowTextColor();
 }
 
 aFont.SetColor(aTextColor);


[Libreoffice-bugs] [Bug 151414] libre office is not opening

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #8 from V Stuart Foote  ---
fixed for 7.4.2 by

https://git.libreoffice.org/core/commit/1c0f44cbacb4bcefcf383586e7ccd32d47388fa4

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

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

[Libreoffice-bugs] [Bug 151493] Window position/size problems since 7.4.1.2 - KDE Neon

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

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |DUPLICATE

--- Comment #1 from V Stuart Foote  ---
fixed for the 7.4.2 release by

https://git.libreoffice.org/core/commit/1c0f44cbacb4bcefcf383586e7ccd32d47388fa4

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

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

[Libreoffice-bugs] [Bug 57423] PDF: "Description" and "Title/Text Alternative" is only PDF-exported for Images, but not for Shapes, Formula, Frames, and OLE Objects

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

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 135638] Accessibility of PDF export: some images are not flagged by Figure tag while exporting docx into pdf

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

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 CC||kelem...@ubuntu.com
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=57
   ||423
 Status|NEEDINFO|NEW

--- Comment #14 from Gabor Kelemen (allotropia)  ---
Confirming the issue in:

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

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

[Libreoffice-bugs] [Bug 135638] Accessibility of PDF export: some images are not flagged by Figure tag while exporting docx into pdf

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

--- Comment #13 from Gabor Kelemen (allotropia)  ---
Created attachment 183001
  --> https://bugs.documentfoundation.org/attachment.cgi?id=183001=edit
The simple reproducer exported as PDF/UA PDF

The original docx is containing drawing shapes with image fill.
This example shows the difference between a correctly exported image and a
basic shape object.
The PAC checker complains about a "Path object not tagged" error.

https://pdfua.foundation/en/pdf-accessibility-checker-pac

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

[Libreoffice-bugs] [Bug 151494] Writer - Export to pdf keeping cross reference to reference visibility on hyperlinked word

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

nella5...@gmail.com  changed:

   What|Removed |Added

 CC||nella5...@gmail.com

--- Comment #1 from nella5...@gmail.com  ---
Created attachment 183000
  --> https://bugs.documentfoundation.org/attachment.cgi?id=183000=edit
How hyeprlink text shows either odt & pdf

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

[Libreoffice-bugs] [Bug 135638] Accessibility of PDF export: some images are not flagged by Figure tag while exporting docx into pdf

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

--- Comment #12 from Gabor Kelemen (allotropia)  ---
Created attachment 182999
  --> https://bugs.documentfoundation.org/attachment.cgi?id=182999=edit
Simple reproducer from Writer

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

[Libreoffice-commits] core.git: cui/inc cui/Library_cui.mk cui/source cui/uiconfig cui/UIConfig_cui.mk desktop/source include/linguistic include/sfx2 include/svtools include/svx include/vcl linguistic

2022-10-12 Thread Mert Tumer (via logerrit)
 cui/Library_cui.mk  |1 
 cui/UIConfig_cui.mk |1 
 cui/inc/treeopt.hrc |3 
 cui/source/options/optdeepl.cxx |   53 ++
 cui/source/options/optdeepl.hxx |   37 +
 cui/source/options/treeopt.cxx  |2 
 cui/uiconfig/ui/deepltabpage.ui |  124 
+
 desktop/source/lib/init.cxx |   24 +
 include/linguistic/translate.hxx|9 
 include/sfx2/pageids.hxx|1 
 include/sfx2/sfxsids.hrc|1 
 include/svtools/deeplcfg.hxx|   50 ++
 include/svx/svxids.hrc  |2 
 include/vcl/htmltransferable.hxx|   51 ++
 linguistic/Library_lng.mk   |2 
 linguistic/source/translate.cxx |   71 +++
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu |8 
 officecfg/registry/schema/org/openoffice/Office/Linguistic.xcs  |   22 +
 svtools/Library_svt.mk  |1 
 svtools/source/config/deeplcfg.cxx  |  124 
+
 svx/sdi/svx.sdi |   17 
 sw/Library_sw.mk|1 
 sw/Library_swui.mk  |2 
 sw/UIConfig_swriter.mk  |1 
 sw/inc/strings.hrc  |1 
 sw/inc/swabstdlg.hxx|   13 
 sw/sdi/_textsh.sdi  |6 
 sw/source/ui/dialog/swdlgfact.cxx   |   12 
 sw/source/ui/dialog/swdlgfact.hxx   |   14 
 sw/source/ui/misc/translatelangselect.cxx   |  153 
+++
 sw/source/uibase/inc/translatehelper.hxx|   42 ++
 sw/source/uibase/inc/translatelangselect.hxx|   69 +++
 sw/source/uibase/shells/textsh1.cxx |   29 +
 sw/source/uibase/shells/translatehelper.cxx |  208 
++
 sw/uiconfig/sglobal/menubar/menubar.xml |2 
 sw/uiconfig/swriter/menubar/menubar.xml |2 
 sw/uiconfig/swriter/ui/translationdialog.ui |  104 
+
 vcl/Library_vcl.mk  |1 
 vcl/jsdialog/enabled.cxx|1 
 vcl/source/app/htmltransferable.cxx |   78 +++
 40 files changed, 1341 insertions(+), 2 deletions(-)

New commits:
commit e20d2de7836da52dbf9e528d1043b1e188097bfd
Author: Mert Tumer 
AuthorDate: Tue Jul 5 12:03:27 2022 +0300
Commit: Miklos Vajna 
CommitDate: Wed Oct 12 16:52:03 2022 +0200

new uno command uno:Translate with deepl api

New Uno command added for translation
right now it is only using deepl translation api

There's a section in the options > language settings
for setting up the api url and auth key

uno:Translate is a menu button under Format tab
which will bring up Language Selection dialog for translation.

DeepL can accept html as the input for translation, this new
feature leverages that by exporting paragraphs/selections to
html and paste them back without losing the formatting (in theory)
This works good in general but we may lose formatting in very complex
styled sentences.

Translation works in two ways;
1) Whole document
when there is no selection, it assumes that we want to translate whole
document. Each paragraphs is sent one by one so that the output timeout
can be minimum for each paragraph.
2) Selection

Change-Id: Ia2d3ab2f6757faf565b939e1d670a7dedac33390
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140624
Tested-by: Jenkins
Reviewed-by: Miklos Vajna 

diff --git a/cui/Library_cui.mk b/cui/Library_cui.mk
index cb26653b395d..5918be60972c 100644
--- a/cui/Library_cui.mk
+++ b/cui/Library_cui.mk
@@ -188,6 +188,7 @@ $(eval $(call gb_Library_add_exception_objects,cui,\
 cui/source/options/optgenrl \
 cui/source/options/opthtml \
 cui/source/options/optlanguagetool \
+cui/source/options/optdeepl \
 cui/source/options/optinet2 \
 cui/source/options/optjava \
 cui/source/options/optjsearch \
diff 

[Libreoffice-bugs] [Bug 151494] New: Writer - Export to pdf keeping cross reference to reference visibility on hyperlinked word

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

Bug ID: 151494
   Summary: Writer - Export to pdf keeping cross reference to
reference visibility on hyperlinked word
   Product: LibreOffice
   Version: 7.0.4.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nella5...@gmail.com

Description:
Writer - LO 7.0.4.2 (x64)
Exporting to pdf, all options tested, the resulting pdf document works just
fine, hyperlinked words pointing to cross references too.
However, no way to make the Hyperlink address (original cross reference
content) visible when mouse move on the hyperlinked word in pdf.
Pdf standard allow it, so it should come from LO exporting function.

Steps to Reproduce:
1.Creating cross reference to reference on same document, other page. Linked
word in text displays reference content when mouse on
2.Exported to pdf, testing all options, resulting pdf whors just fine pointing
to reference position in related page
3.However in pdf when mouse move on the linked word, the related linked
reference content doesn’t appear any more. 


Actual Results:
pdf linked words doesn't shows any of the original Writer cross reference
content when mouse move on. 

Expected Results:
Showing it as in Writer as pdf standard allows


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
I'll try to send you a picture of the resulting pdf text in this form, easier
to undestand, you may want to ask me details via mail, please feel free to
contact me.
Version: 7.0.4.2 (x64)
Build ID: dcf040e67528d9187c66b2379df5ea4407429775
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: it-IT (it_IT); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 125823] [META] Personalization (LibreOffice Themes) bugs and Improvements

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

Bug 137414 Summary: VERTICAL toolbars do NOT use background of internal 
preinstalled theme
https://bugs.documentfoundation.org/show_bug.cgi?id=137414

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 125217] Replace Mozilla themes with a proprietary tool reusing the existing

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||scorpios...@abv.bg

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

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

[Libreoffice-bugs] [Bug 137414] VERTICAL toolbars do NOT use background of internal preinstalled theme

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

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #10 from V Stuart Foote  ---
It is still valid regards use of the Personalization themes, so closing as
duplicate of bug 125217 that still needs design and dev attention.

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

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

[Libreoffice-bugs] [Bug 151493] New: Window position/size problems since 7.4.1.2 - KDE Neon

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

Bug ID: 151493
   Summary: Window position/size problems since 7.4.1.2 - KDE Neon
   Product: LibreOffice
   Version: 7.4.1.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gustavo.d...@gdnet.ar

Created attachment 182998
  --> https://bugs.documentfoundation.org/attachment.cgi?id=182998=edit
Screenshot of the top left corner where Libreffoce stays when launching.

Since I've upgraded to this version, in KDE Neon (using Ubuntu PPA), when I
open Libreoffice (whatever Calc, Writer, etc), it opens in a small Window box,
outside visible area, in Top Left.

It does happens in every workstations we have with latest KDE Neon and latest
Libreoffice from PPA (LibreOffice Fresh).

Any ideas?

For now, to "fix this", I right click the icon in the taskbar and use the
option Maximize.

Thanks in advance.

PD: attaching screenshot of the top left corner where Libreffoce stays when
launching.

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

[Libreoffice-bugs] [Bug 137414] VERTICAL toolbars do NOT use background of internal preinstalled theme

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

--- Comment #9 from scorpios...@abv.bg ---
Yes, now I see :)

Great job :) !
Thank you !

As for me, the job is done and ticket can be marked "solved" :)

Best wishes !

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

[Libreoffice-bugs] [Bug 151492] PowerPoint fails to open PPTX saved from certain ODP in Impress

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

Aron Budea  changed:

   What|Removed |Added

  Regression By||Tibor Nagy

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

[Libreoffice-bugs] [Bug 134401] FILESAVE PPTX: vertical alignment inverted (bottom<->top) when saving textbox with link

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

Aron Budea  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 104787] [META] Saved PPTX files that MS Powerpoint can't open

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

Aron Budea  changed:

   What|Removed |Added

 Depends on||151492


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=151492
[Bug 151492] PowerPoint fails to open PPTX saved from certain ODP in Impress
-- 
You are receiving this mail because:
You are the assignee for the bug.

  1   2   3   >