[Libreoffice-bugs] [Bug 136881] FILESAVE DOCX Shape property "Word Wrap text in shape" not saved correctly

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136881

Tünde Tóth  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW
   Assignee|tund...@gmail.com   |libreoffice-b...@lists.free
   ||desktop.org

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

[Libreoffice-bugs] [Bug 136881] FILESAVE DOCX Shape property "Word Wrap text in shape" not saved correctly

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136881

Tünde Tóth  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |tund...@gmail.com
   |desktop.org |

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

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

2022-07-11 Thread Hannah Meeks (via logerrit)
 sw/inc/doc.hxx|7 +++
 sw/source/core/doc/docnew.cxx |2 ++
 sw/source/ui/vba/vbafind.cxx  |   30 --
 sw/source/ui/vba/vbafind.hxx  |5 +++--
 sw/source/ui/vba/vbaselection.cxx |3 ++-
 5 files changed, 42 insertions(+), 5 deletions(-)

New commits:
commit f6be2bf969bac1f5c6ac452b313374ba09ffaa58
Author: Hannah Meeks 
AuthorDate: Wed Jun 29 16:27:17 2022 +0100
Commit: Tomaž Vajngerl 
CommitDate: Tue Jul 12 07:38:07 2022 +0200

tdf#149775 - VBA: Find should stay around.

Previously we would create and destroy it for each set of a
property on it making it useless. VBA Find object oddly
represents the Find dialog in Word. Add it to SwDoc.

Change-Id: Id9850cbd2296b24f9c93dc99b2967095bd84921f
Signed-off-by: Hannah Meeks 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136630
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx
index 624686890850..e88214977e76 100644
--- a/sw/inc/doc.hxx
+++ b/sw/inc/doc.hxx
@@ -175,6 +175,10 @@ namespace com::sun::star {
 namespace script::vba { class XVBAEventProcessor; }
 }
 
+namespace ooo::vba::word {
+class XFind;
+}
+
 namespace sfx2 {
 class IXmlIdRegistry;
 }
@@ -281,6 +285,7 @@ class SW_DLLPUBLIC SwDoc final
 std::unique_ptr mpGrammarContact; //< for 
grammar checking in paragraphs during editing
 
 css::uno::Reference< css::script::vba::XVBAEventProcessor > mxVbaEvents;
+css::uno::Reference< ooo::vba::word::XFind > mxVbaFind;
 css::uno::Reference 
m_xTemplateToProjectCache;
 
 /// Table styles (autoformats that are applied with table changes).
@@ -1619,6 +1624,8 @@ public:
 void SetDefaultPageMode(bool bSquaredPageMode);
 bool IsSquaredPageMode() const;
 
+css::uno::Reference< ooo::vba::word::XFind > getVbaFind() const { return 
mxVbaFind; }
+void setVbaFind( const css::uno::Reference< ooo::vba::word::XFind > 
) { mxVbaFind = xFind; }
 css::uno::Reference< css::script::vba::XVBAEventProcessor > const & 
GetVbaEventProcessor();
 void SetVBATemplateToProjectCache( css::uno::Reference< 
css::container::XNameContainer > const & xCache ) { m_xTemplateToProjectCache = 
xCache; };
 const css::uno::Reference< css::container::XNameContainer >& 
GetVBATemplateToProjectCache() const { return m_xTemplateToProjectCache; };
diff --git a/sw/source/core/doc/docnew.cxx b/sw/source/core/doc/docnew.cxx
index 1a9f7e868980..576dde4c7a89 100644
--- a/sw/source/core/doc/docnew.cxx
+++ b/sw/source/core/doc/docnew.cxx
@@ -395,6 +395,8 @@ SwDoc::SwDoc()
  */
 SwDoc::~SwDoc()
 {
+mxVbaFind.clear();
+
 // nothing here should create Undo actions!
 GetIDocumentUndoRedo().DoUndo(false);
 
diff --git a/sw/source/ui/vba/vbafind.cxx b/sw/source/ui/vba/vbafind.cxx
index db34a32f9b64..3c9940cc0e1f 100644
--- a/sw/source/ui/vba/vbafind.cxx
+++ b/sw/source/ui/vba/vbafind.cxx
@@ -22,13 +22,18 @@
 #include 
 #include 
 #include 
+#include 
+#include 
 #include "wordvbahelper.hxx"
+#include 
+#include 
 
 using namespace ::ooo::vba;
 using namespace ::com::sun::star;
 
-SwVbaFind::SwVbaFind( const uno::Reference< ooo::vba::XHelperInterface >& 
rParent, const uno::Reference< uno::XComponentContext >& rContext, const 
uno::Reference< frame::XModel >& xModel, const uno::Reference< text::XTextRange 
>& xTextRange ) :
-SwVbaFind_BASE( rParent, rContext ), mxModel( xModel ), mxTextRange( 
xTextRange ), mbReplace( false ), mnReplaceType( word::WdReplace::wdReplaceOne 
), mnWrap( word::WdFindWrap::wdFindStop )
+
+SwVbaFind::SwVbaFind( const uno::Reference< ooo::vba::XHelperInterface >& 
rParent, const uno::Reference< uno::XComponentContext >& rContext, const 
uno::Reference< frame::XModel >& xModel ) :
+SwVbaFind_BASE( rParent, rContext ), mxModel( xModel ), mbReplace( false 
), mnReplaceType( word::WdReplace::wdReplaceOne ), mnWrap( 
word::WdFindWrap::wdFindStop )
 {
 mxReplaceable.set( mxModel, uno::UNO_QUERY_THROW );
 mxPropertyReplace.set( mxReplaceable->createReplaceDescriptor(), 
uno::UNO_QUERY_THROW );
@@ -40,6 +45,27 @@ SwVbaFind::~SwVbaFind()
 {
 }
 
+uno::Reference< word::XFind > SwVbaFind::GetOrCreateFind(const uno::Reference< 
ooo::vba::XHelperInterface >& rParent,
+ const uno::Reference< 
uno::XComponentContext >& rContext,
+ const uno::Reference< 
frame::XModel >& xModel,
+ const uno::Reference< 
text::XTextRange >& xTextRange)
+{
+rtl::Reference< SwVbaFind > xFind;
+SwDoc* pDoc = word::getDocShell( xModel )->GetDoc();
+if( pDoc )
+xFind = dynamic_cast( pDoc->getVbaFind().get() );
+if ( !xFind )
+{
+xFind = new SwVbaFind( rParent, rContext, xModel );
+if ( pDoc )
+pDoc->setVbaFind( xFind );
+}
+

[Libreoffice-bugs] [Bug 149958] New: FORMATTING: Request to add a feature to LibreOffice Calc. Ability to remove y axis wall on charts but keep tick marks.

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149958

Bug ID: 149958
   Summary: FORMATTING: Request to add a feature to LibreOffice
Calc. Ability to remove y axis wall on charts but keep
tick marks.
   Product: LibreOffice
   Version: 7.3.4.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lukevade...@gmail.com

Description:
It would be incredible and very helpful in my career if there was a chart edit
feature in LibreOffice calc to remove the an axis wall, but leave the tick
marks at each subdivision still visible. Currently, if I were to remove an
axis, say the y-axis for example, the whole wall will disappear along with the
tick marks. Google Sheets and  MS Excel both allow you to remove the y-axis
wall but leave the horizontal tick marks in place untouched. Can this please be
added as a feature?

Steps to Reproduce:
Create a chart with an x and y axis.
Remove the line for the y axis.

Actual Results:
Both the line and the tick marks are removed.

Expected Results:
Just the line should be removed, not the tick marks.


Reproducible: Always


User Profile Reset: No



Additional Info:
Feature is available in other spreadsheet programs.

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

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

2022-07-11 Thread Mike Kaganski (via logerrit)
 sw/inc/strings.hrc  |   22 
 sw/source/uibase/dbui/dbmgr.cxx |   54 +---
 2 files changed, 40 insertions(+), 36 deletions(-)

New commits:
commit faa88099d842b83365fa86a661dc56f0031a9b29
Author: Mike Kaganski 
AuthorDate: Mon Jul 11 13:59:16 2022 +0300
Commit: Mike Kaganski 
CommitDate: Tue Jul 12 07:22:32 2022 +0200

tdf#149947: simplify filter list creation

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

diff --git a/sw/inc/strings.hrc b/sw/inc/strings.hrc
index 130004c6f338..ed06d5b39d42 100644
--- a/sw/inc/strings.hrc
+++ b/sw/inc/strings.hrc
@@ -861,17 +861,17 @@
 
 #define STR_NOTASSIGNED NC_("STR_NOTASSIGNED", " not 
yet matched ")
 #define STR_FILTER_ALL  NC_("STR_FILTER_ALL", "All 
files")
-#define STR_FILTER_ALL_DATA NC_("STR_FILTER_ALL_DATA", 
"Address lists(*.*)")
-#define STR_FILTER_SXB  NC_("STR_FILTER_SXB", 
"%PRODUCTNAME Base (*.odb)")
-#define STR_FILTER_SXC  NC_("STR_FILTER_SXC", 
"%PRODUCTNAME Calc (*.ods;*.sxc)")
-#define STR_FILTER_SXW  NC_("STR_FILTER_SXW", 
"%PRODUCTNAME Writer (*.odt;*.sxw)")
-#define STR_FILTER_DBF  NC_("STR_FILTER_DBF", "dBase 
(*.dbf)")
-#define STR_FILTER_XLS  NC_("STR_FILTER_XLS", 
"Microsoft Excel (*.xls;*.xlsx)")
-#define STR_FILTER_DOC  NC_("STR_FILTER_DOC", 
"Microsoft Word (*.doc;*.docx)")
-#define STR_FILTER_TXT  NC_("STR_FILTER_TXT", "Plain 
text (*.txt)")
-#define STR_FILTER_CSV  NC_("STR_FILTER_CSV", "Text 
Comma Separated (*.csv)")
-#define STR_FILTER_MDB  NC_("STR_FILTER_MDB", 
"Microsoft Access (*.mdb;*.mde)")
-#define STR_FILTER_ACCDBNC_("STR_FILTER_ACCDB", 
"Microsoft Access 2007 (*.accdb,*.accde)")
+#define STR_FILTER_ALL_DATA NC_("STR_FILTER_ALL_DATA", 
"Address lists")
+#define STR_FILTER_SXB  NC_("STR_FILTER_SXB", 
"%PRODUCTNAME Base")
+#define STR_FILTER_SXC  NC_("STR_FILTER_SXC", 
"%PRODUCTNAME Calc")
+#define STR_FILTER_SXW  NC_("STR_FILTER_SXW", 
"%PRODUCTNAME Writer")
+#define STR_FILTER_DBF  NC_("STR_FILTER_DBF", "dBase")
+#define STR_FILTER_XLS  NC_("STR_FILTER_XLS", 
"Microsoft Excel")
+#define STR_FILTER_DOC  NC_("STR_FILTER_DOC", 
"Microsoft Word")
+#define STR_FILTER_TXT  NC_("STR_FILTER_TXT", "Plain 
text")
+#define STR_FILTER_CSV  NC_("STR_FILTER_CSV", "Text 
Comma Separated")
+#define STR_FILTER_MDB  NC_("STR_FILTER_MDB", 
"Microsoft Access")
+#define STR_FILTER_ACCDBNC_("STR_FILTER_ACCDB", 
"Microsoft Access 2007")
 #define ST_CONFIGUREMAILNC_("ST_CONFIGUREMAIL", "In 
order to be able to send mail merge documents by email, %PRODUCTNAME requires 
information about the email account to be used.\n\nDo you want to enter email 
account information now?")
 #define ST_FILTERNAME   NC_("ST_FILTERNAME", 
"%PRODUCTNAME Address List (.csv)")
 
diff --git a/sw/source/uibase/dbui/dbmgr.cxx b/sw/source/uibase/dbui/dbmgr.cxx
index 0d526bab42c3..15a1105e47b5 100644
--- a/sw/source/uibase/dbui/dbmgr.cxx
+++ b/sw/source/uibase/dbui/dbmgr.cxx
@@ -2784,40 +2784,44 @@ OUString 
SwDBManager::LoadAndRegisterDataSource(weld::Window* pParent, SwDocShel
 
 OUString sFilterAll(SwResId(STR_FILTER_ALL));
 OUString sFilterAllData(SwResId(STR_FILTER_ALL_DATA));
-OUString sFilterSXB(SwResId(STR_FILTER_SXB));
-OUString sFilterSXC(SwResId(STR_FILTER_SXC));
-OUString sFilterSXW(SwResId(STR_FILTER_SXW));
-OUString sFilterDBF(SwResId(STR_FILTER_DBF));
-OUString sFilterXLS(SwResId(STR_FILTER_XLS));
-OUString sFilterDOC(SwResId(STR_FILTER_DOC));
-OUString sFilterTXT(SwResId(STR_FILTER_TXT));
-OUString sFilterCSV(SwResId(STR_FILTER_CSV));
+
+const std::vector> filters{
+{ SwResId(STR_FILTER_SXB), "*.odb" },
+{ SwResId(STR_FILTER_SXC), "*.ods;*.sxc" },
+{ SwResId(STR_FILTER_SXW), "*.odt;*.sxw" },
+{ SwResId(STR_FILTER_DBF), "*.dbf" },
+{ SwResId(STR_FILTER_XLS), "*.xls;*.xlsx" },
+{ SwResId(STR_FILTER_DOC), "*.doc;*.docx" },
+{ SwResId(STR_FILTER_TXT), "*.txt" },
+{ SwResId(STR_FILTER_CSV), "*.csv" },
 #ifdef _WIN32
-OUString sFilterMDB(SwResId(STR_FILTER_MDB));
-OUString sFilterACCDB(SwResId(STR_FILTER_ACCDB));
+{ SwResId(STR_FILTER_MDB), "*.mdb;*.mde" },
+{ SwResId(STR_FILTER_ACCDB), "*.accdb;*.accde" },
 #endif
+};
+
+   

[Libreoffice-bugs] [Bug 149947] Select Address List file dialog has erratic filter list

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149947

Mike Kaganski  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |mikekagan...@hotmail.com
   |desktop.org |

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

[Libreoffice-bugs] [Bug 99663] TABLE FORMATTING: Copy table cells into text produces new table with too-wide width

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99663

--- Comment #10 from Jim Avera  ---
>If the bug is present, please leave a comment that includes the information 
>from Help - About LibreOffice.

Bug is still there.

Version: 7.5.0.0.alpha0+ / LibreOffice Community
Build ID: a93d7e7df6804cd6f1f2fa1ef0e6e95ce6c3752a
CPU threads: 12; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 147482] Suboptimal Text Highlighting in Menubar in Windows 11

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147482

Rizal Muttaqin  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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

[Libreoffice-bugs] [Bug 147482] Suboptimal Text Highlighting in Menubar in Windows 11

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147482

--- Comment #1 from Ahmad Haris  ---
It's happen in my machine

Version: 7.3.2.2 (x64) / LibreOffice Community
Build ID: 49f2b1bff42cfccbd8f788c8dc32c1c309559be0
CPU threads: 16; OS: Windows 10.0 Build 22000; UI render: Skia/Raster; VCL: win
Locale: en-ID (en_ID); UI: en-GB
Calc: CL

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

[Libreoffice-bugs] [Bug 131141] [META] Sukapura icons

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131141
Bug 131141 depends on bug 141110, which changed state.

Bug 141110 Summary: Modify "No List" icon to show that it applies to more than 
just bulleted lists
https://bugs.documentfoundation.org/show_bug.cgi?id=141110

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 125965] [META] Sifr icons

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125965
Bug 125965 depends on bug 141110, which changed state.

Bug 141110 Summary: Modify "No List" icon to show that it applies to more than 
just bulleted lists
https://bugs.documentfoundation.org/show_bug.cgi?id=141110

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 122247] [META] Icon requests

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122247
Bug 122247 depends on bug 141110, which changed state.

Bug 141110 Summary: Modify "No List" icon to show that it applies to more than 
just bulleted lists
https://bugs.documentfoundation.org/show_bug.cgi?id=141110

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 117497] [META] Colibre icons

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117497
Bug 117497 depends on bug 141110, which changed state.

Bug 141110 Summary: Modify "No List" icon to show that it applies to more than 
just bulleted lists
https://bugs.documentfoundation.org/show_bug.cgi?id=141110

   What|Removed |Added

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

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

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

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120949
Bug 120949 depends on bug 141110, which changed state.

Bug 141110 Summary: Modify "No List" icon to show that it applies to more than 
just bulleted lists
https://bugs.documentfoundation.org/show_bug.cgi?id=141110

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 107139] [META] Breeze icons

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107139
Bug 107139 depends on bug 141110, which changed state.

Bug 141110 Summary: Modify "No List" icon to show that it applies to more than 
just bulleted lists
https://bugs.documentfoundation.org/show_bug.cgi?id=141110

   What|Removed |Added

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

-- 
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

2022-07-11 Thread Rizal Muttaqin (via logerrit)
 icon-themes/breeze/res/odp_16_8.png  |binary
 icon-themes/breeze/res/sx03249.png   |binary
 icon-themes/breeze_dark/res/odp_16_8.png |binary
 icon-themes/breeze_dark/res/sx03249.png  |binary
 icon-themes/breeze_dark_svg/res/odp_16_8.svg |2 +-
 icon-themes/breeze_dark_svg/res/sx03249.svg  |2 +-
 icon-themes/breeze_svg/res/odp_16_8.svg  |2 +-
 icon-themes/breeze_svg/res/sx03249.svg   |2 +-
 8 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 86977309bf5ff716ecf74e337a70f0f7f8edb5cd
Author: Rizal Muttaqin 
AuthorDate: Tue Jul 12 06:48:57 2022 +0700
Commit: Rizal Muttaqin 
CommitDate: Tue Jul 12 06:10:48 2022 +0200

Breeze tdf#149753: Distinguish between New Presentation and Start from 
First Slide

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

diff --git a/icon-themes/breeze/res/odp_16_8.png 
b/icon-themes/breeze/res/odp_16_8.png
index a379b3ce0ed2..aa4d2c0f6f4f 100644
Binary files a/icon-themes/breeze/res/odp_16_8.png and 
b/icon-themes/breeze/res/odp_16_8.png differ
diff --git a/icon-themes/breeze/res/sx03249.png 
b/icon-themes/breeze/res/sx03249.png
index a379b3ce0ed2..aa4d2c0f6f4f 100644
Binary files a/icon-themes/breeze/res/sx03249.png and 
b/icon-themes/breeze/res/sx03249.png differ
diff --git a/icon-themes/breeze_dark/res/odp_16_8.png 
b/icon-themes/breeze_dark/res/odp_16_8.png
index a379b3ce0ed2..aa4d2c0f6f4f 100644
Binary files a/icon-themes/breeze_dark/res/odp_16_8.png and 
b/icon-themes/breeze_dark/res/odp_16_8.png differ
diff --git a/icon-themes/breeze_dark/res/sx03249.png 
b/icon-themes/breeze_dark/res/sx03249.png
index a379b3ce0ed2..aa4d2c0f6f4f 100644
Binary files a/icon-themes/breeze_dark/res/sx03249.png and 
b/icon-themes/breeze_dark/res/sx03249.png differ
diff --git a/icon-themes/breeze_dark_svg/res/odp_16_8.svg 
b/icon-themes/breeze_dark_svg/res/odp_16_8.svg
index b98c16db210a..ea1d7f0d9df5 100644
--- a/icon-themes/breeze_dark_svg/res/odp_16_8.svg
+++ b/icon-themes/breeze_dark_svg/res/odp_16_8.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end of file
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/breeze_dark_svg/res/sx03249.svg 
b/icon-themes/breeze_dark_svg/res/sx03249.svg
index b98c16db210a..ea1d7f0d9df5 100644
--- a/icon-themes/breeze_dark_svg/res/sx03249.svg
+++ b/icon-themes/breeze_dark_svg/res/sx03249.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end of file
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/breeze_svg/res/odp_16_8.svg 
b/icon-themes/breeze_svg/res/odp_16_8.svg
index b98c16db210a..ea1d7f0d9df5 100644
--- a/icon-themes/breeze_svg/res/odp_16_8.svg
+++ b/icon-themes/breeze_svg/res/odp_16_8.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end of file
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/breeze_svg/res/sx03249.svg 
b/icon-themes/breeze_svg/res/sx03249.svg
index b98c16db210a..ea1d7f0d9df5 100644
--- a/icon-themes/breeze_svg/res/sx03249.svg
+++ b/icon-themes/breeze_svg/res/sx03249.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end of file
+http://www.w3.org/2000/svg;>
\ No newline at end of file


[Libreoffice-bugs] [Bug 149745] Restart Numbering won't be saved for first list - must be set "Start with '1'" also.

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149745

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 149739] General input/output error saving complex spreadsheet

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149739

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 149744] Data Provider dialog: action buttons aren’t implemented as stock, like in other dialogs

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149744

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 149940] Incorrect VLOOKUP result

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149940

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 149940] Incorrect VLOOKUP result

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149940

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

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

[Libreoffice-bugs] [Bug 146195] So much wrong with 7.2.4.1

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146195

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 146195] So much wrong with 7.2.4.1

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146195

--- Comment #3 from QA Administrators  ---
Dear John Suter,

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 145914] Fontwork text will not save correctly

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145914

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 145914] Fontwork text will not save correctly

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145914

--- Comment #3 from QA Administrators  ---
Dear John Suter,

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 146670] Crash in: mergedlo.dll

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146670

Thom  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from Thom  ---
Unable to duplicate the issue in LibreOffice 7.2.5.2

-- 
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

2022-07-11 Thread Rizal Muttaqin (via logerrit)
 icon-themes/breeze/cmd/32/ar/removebullets.png  |binary
 icon-themes/breeze/cmd/32/removebullets.png |binary
 icon-themes/breeze/cmd/ar/lc_removebullets.png  |binary
 icon-themes/breeze/cmd/ar/sc_removebullets.png  |binary
 icon-themes/breeze/cmd/lc_removebullets.png |binary
 icon-themes/breeze/cmd/sc_removebullets.png |binary
 icon-themes/breeze_dark/cmd/32/ar/removebullets.png |binary
 icon-themes/breeze_dark/cmd/32/removebullets.png|binary
 icon-themes/breeze_dark/cmd/ar/lc_removebullets.png |binary
 icon-themes/breeze_dark/cmd/ar/sc_removebullets.png |binary
 icon-themes/breeze_dark/cmd/lc_removebullets.png|binary
 icon-themes/breeze_dark/cmd/sc_removebullets.png|binary
 icon-themes/breeze_dark_svg/cmd/32/ar/removebullets.svg |2 +-
 icon-themes/breeze_dark_svg/cmd/32/removebullets.svg|2 +-
 icon-themes/breeze_dark_svg/cmd/ar/lc_removebullets.svg |2 +-
 icon-themes/breeze_dark_svg/cmd/ar/sc_removebullets.svg |2 +-
 icon-themes/breeze_dark_svg/cmd/lc_removebullets.svg|2 +-
 icon-themes/breeze_dark_svg/cmd/sc_removebullets.svg|2 +-
 icon-themes/breeze_svg/cmd/32/ar/removebullets.svg  |2 +-
 icon-themes/breeze_svg/cmd/32/removebullets.svg |2 +-
 icon-themes/breeze_svg/cmd/ar/lc_removebullets.svg  |2 +-
 icon-themes/breeze_svg/cmd/ar/sc_removebullets.svg  |2 +-
 icon-themes/breeze_svg/cmd/lc_removebullets.svg |2 +-
 icon-themes/breeze_svg/cmd/sc_removebullets.svg |2 +-
 24 files changed, 12 insertions(+), 12 deletions(-)

New commits:
commit 6c00e6648d40b99a6066172ddd3c1de2ace9e849
Author: Rizal Muttaqin 
AuthorDate: Tue Jul 12 07:19:50 2022 +0700
Commit: Rizal Muttaqin 
CommitDate: Tue Jul 12 04:36:17 2022 +0200

Breeze: tdf#141110 Update No List icons

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

diff --git a/icon-themes/breeze/cmd/32/ar/removebullets.png 
b/icon-themes/breeze/cmd/32/ar/removebullets.png
index a9ed1867005d..deb329dc57ac 100644
Binary files a/icon-themes/breeze/cmd/32/ar/removebullets.png and 
b/icon-themes/breeze/cmd/32/ar/removebullets.png differ
diff --git a/icon-themes/breeze/cmd/32/removebullets.png 
b/icon-themes/breeze/cmd/32/removebullets.png
index 3a4da49d0a24..7774792eadf3 100644
Binary files a/icon-themes/breeze/cmd/32/removebullets.png and 
b/icon-themes/breeze/cmd/32/removebullets.png differ
diff --git a/icon-themes/breeze/cmd/ar/lc_removebullets.png 
b/icon-themes/breeze/cmd/ar/lc_removebullets.png
index 2194c5776a48..791b0381d212 100644
Binary files a/icon-themes/breeze/cmd/ar/lc_removebullets.png and 
b/icon-themes/breeze/cmd/ar/lc_removebullets.png differ
diff --git a/icon-themes/breeze/cmd/ar/sc_removebullets.png 
b/icon-themes/breeze/cmd/ar/sc_removebullets.png
index 18f380b627c9..cf9a174e73b2 100644
Binary files a/icon-themes/breeze/cmd/ar/sc_removebullets.png and 
b/icon-themes/breeze/cmd/ar/sc_removebullets.png differ
diff --git a/icon-themes/breeze/cmd/lc_removebullets.png 
b/icon-themes/breeze/cmd/lc_removebullets.png
index ffc3bde295d8..bdd431ad3ce2 100644
Binary files a/icon-themes/breeze/cmd/lc_removebullets.png and 
b/icon-themes/breeze/cmd/lc_removebullets.png differ
diff --git a/icon-themes/breeze/cmd/sc_removebullets.png 
b/icon-themes/breeze/cmd/sc_removebullets.png
index a9994e94f13e..9a049add319c 100644
Binary files a/icon-themes/breeze/cmd/sc_removebullets.png and 
b/icon-themes/breeze/cmd/sc_removebullets.png differ
diff --git a/icon-themes/breeze_dark/cmd/32/ar/removebullets.png 
b/icon-themes/breeze_dark/cmd/32/ar/removebullets.png
index 13aaef8f6219..267da9a72a42 100644
Binary files a/icon-themes/breeze_dark/cmd/32/ar/removebullets.png and 
b/icon-themes/breeze_dark/cmd/32/ar/removebullets.png differ
diff --git a/icon-themes/breeze_dark/cmd/32/removebullets.png 
b/icon-themes/breeze_dark/cmd/32/removebullets.png
index 9bba82e3c158..cdbbd03c8bc8 100644
Binary files a/icon-themes/breeze_dark/cmd/32/removebullets.png and 
b/icon-themes/breeze_dark/cmd/32/removebullets.png differ
diff --git a/icon-themes/breeze_dark/cmd/ar/lc_removebullets.png 
b/icon-themes/breeze_dark/cmd/ar/lc_removebullets.png
index 3e7ab70956a7..396f71a908a8 100644
Binary files a/icon-themes/breeze_dark/cmd/ar/lc_removebullets.png and 
b/icon-themes/breeze_dark/cmd/ar/lc_removebullets.png differ
diff --git a/icon-themes/breeze_dark/cmd/ar/sc_removebullets.png 
b/icon-themes/breeze_dark/cmd/ar/sc_removebullets.png
index dc81f86a66c5..a7346ec660c1 100644
Binary files a/icon-themes/breeze_dark/cmd/ar/sc_removebullets.png and 
b/icon-themes/breeze_dark/cmd/ar/sc_removebullets.png differ
diff --git a/icon-themes/breeze_dark/cmd/lc_removebullets.png 
b/icon-themes/breeze_dark/cmd/lc_removebullets.png
index 6923b6fa9566..035ea7d15a84 100644
Binary files 

[Libreoffice-commits] core.git: Branch 'libreoffice-7-4' - icon-themes/sifr icon-themes/sifr_dark icon-themes/sifr_dark_svg icon-themes/sifr_svg

2022-07-11 Thread Rizal Muttaqin (via logerrit)
 icon-themes/sifr/cmd/32/ar/removebullets.png  |binary
 icon-themes/sifr/cmd/32/removebullets.png |binary
 icon-themes/sifr/cmd/ar/sc_removebullets.png  |binary
 icon-themes/sifr/cmd/lc_removebullets.png |binary
 icon-themes/sifr/cmd/sc_removebullets.png |binary
 icon-themes/sifr_dark/cmd/32/ar/removebullets.png |binary
 icon-themes/sifr_dark/cmd/32/removebullets.png|binary
 icon-themes/sifr_dark/cmd/ar/sc_removebullets.png |binary
 icon-themes/sifr_dark/cmd/lc_removebullets.png|binary
 icon-themes/sifr_dark/cmd/sc_removebullets.png|binary
 icon-themes/sifr_dark_svg/cmd/32/ar/removebullets.svg |1 +
 icon-themes/sifr_dark_svg/cmd/32/removebullets.svg|2 +-
 icon-themes/sifr_dark_svg/cmd/ar/sc_removebullets.svg |1 +
 icon-themes/sifr_dark_svg/cmd/lc_removebullets.svg|2 +-
 icon-themes/sifr_dark_svg/cmd/sc_removebullets.svg|2 +-
 icon-themes/sifr_svg/cmd/32/ar/removebullets.svg  |1 +
 icon-themes/sifr_svg/cmd/32/removebullets.svg |2 +-
 icon-themes/sifr_svg/cmd/ar/sc_removebullets.svg  |1 +
 icon-themes/sifr_svg/cmd/lc_removebullets.svg |2 +-
 icon-themes/sifr_svg/cmd/sc_removebullets.svg |2 +-
 20 files changed, 10 insertions(+), 6 deletions(-)

New commits:
commit 93d64aefdd131f1d0689ed6664b5c90cde85af3d
Author: Rizal Muttaqin 
AuthorDate: Tue Jul 12 07:55:11 2022 +0700
Commit: Rizal Muttaqin 
CommitDate: Tue Jul 12 04:34:01 2022 +0200

Sifr: tdf#141110 Update No List icons

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

diff --git a/icon-themes/sifr/cmd/32/ar/removebullets.png 
b/icon-themes/sifr/cmd/32/ar/removebullets.png
new file mode 100644
index ..8b17768d159b
Binary files /dev/null and b/icon-themes/sifr/cmd/32/ar/removebullets.png differ
diff --git a/icon-themes/sifr/cmd/32/removebullets.png 
b/icon-themes/sifr/cmd/32/removebullets.png
index 4a7e700814b2..fd2a2590e552 100644
Binary files a/icon-themes/sifr/cmd/32/removebullets.png and 
b/icon-themes/sifr/cmd/32/removebullets.png differ
diff --git a/icon-themes/sifr/cmd/ar/sc_removebullets.png 
b/icon-themes/sifr/cmd/ar/sc_removebullets.png
new file mode 100644
index ..53bd3da363f3
Binary files /dev/null and b/icon-themes/sifr/cmd/ar/sc_removebullets.png differ
diff --git a/icon-themes/sifr/cmd/lc_removebullets.png 
b/icon-themes/sifr/cmd/lc_removebullets.png
index c03ab9762f66..4944b5d19e20 100644
Binary files a/icon-themes/sifr/cmd/lc_removebullets.png and 
b/icon-themes/sifr/cmd/lc_removebullets.png differ
diff --git a/icon-themes/sifr/cmd/sc_removebullets.png 
b/icon-themes/sifr/cmd/sc_removebullets.png
index 9bbc3b6d3264..0a808b7f9979 100644
Binary files a/icon-themes/sifr/cmd/sc_removebullets.png and 
b/icon-themes/sifr/cmd/sc_removebullets.png differ
diff --git a/icon-themes/sifr_dark/cmd/32/ar/removebullets.png 
b/icon-themes/sifr_dark/cmd/32/ar/removebullets.png
new file mode 100644
index ..84f9072f8d3f
Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/ar/removebullets.png 
differ
diff --git a/icon-themes/sifr_dark/cmd/32/removebullets.png 
b/icon-themes/sifr_dark/cmd/32/removebullets.png
index 5ce07bd34f3e..0d63e822b38f 100644
Binary files a/icon-themes/sifr_dark/cmd/32/removebullets.png and 
b/icon-themes/sifr_dark/cmd/32/removebullets.png differ
diff --git a/icon-themes/sifr_dark/cmd/ar/sc_removebullets.png 
b/icon-themes/sifr_dark/cmd/ar/sc_removebullets.png
new file mode 100644
index ..5f01ec6a3975
Binary files /dev/null and b/icon-themes/sifr_dark/cmd/ar/sc_removebullets.png 
differ
diff --git a/icon-themes/sifr_dark/cmd/lc_removebullets.png 
b/icon-themes/sifr_dark/cmd/lc_removebullets.png
index c28a9318a5d2..2cbaf137a8d7 100644
Binary files a/icon-themes/sifr_dark/cmd/lc_removebullets.png and 
b/icon-themes/sifr_dark/cmd/lc_removebullets.png differ
diff --git a/icon-themes/sifr_dark/cmd/sc_removebullets.png 
b/icon-themes/sifr_dark/cmd/sc_removebullets.png
index 37b153694adb..dc31c32d504b 100644
Binary files a/icon-themes/sifr_dark/cmd/sc_removebullets.png and 
b/icon-themes/sifr_dark/cmd/sc_removebullets.png differ
diff --git a/icon-themes/sifr_dark_svg/cmd/32/ar/removebullets.svg 
b/icon-themes/sifr_dark_svg/cmd/32/ar/removebullets.svg
new file mode 100644
index ..ce6c5b7aec5a
--- /dev/null
+++ b/icon-themes/sifr_dark_svg/cmd/32/ar/removebullets.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/sifr_dark_svg/cmd/32/removebullets.svg 
b/icon-themes/sifr_dark_svg/cmd/32/removebullets.svg
index 34cbfd888dc3..f094d73da139 100644
--- a/icon-themes/sifr_dark_svg/cmd/32/removebullets.svg
+++ b/icon-themes/sifr_dark_svg/cmd/32/removebullets.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end 

[Libreoffice-commits] core.git: icon-themes/sifr icon-themes/sifr_dark icon-themes/sifr_dark_svg icon-themes/sifr_svg

2022-07-11 Thread Rizal Muttaqin (via logerrit)
 icon-themes/sifr/cmd/32/ar/removebullets.png  |binary
 icon-themes/sifr/cmd/32/removebullets.png |binary
 icon-themes/sifr/cmd/ar/sc_removebullets.png  |binary
 icon-themes/sifr/cmd/lc_removebullets.png |binary
 icon-themes/sifr/cmd/sc_removebullets.png |binary
 icon-themes/sifr_dark/cmd/32/ar/removebullets.png |binary
 icon-themes/sifr_dark/cmd/32/removebullets.png|binary
 icon-themes/sifr_dark/cmd/ar/sc_removebullets.png |binary
 icon-themes/sifr_dark/cmd/lc_removebullets.png|binary
 icon-themes/sifr_dark/cmd/sc_removebullets.png|binary
 icon-themes/sifr_dark_svg/cmd/32/ar/removebullets.svg |1 +
 icon-themes/sifr_dark_svg/cmd/32/removebullets.svg|2 +-
 icon-themes/sifr_dark_svg/cmd/ar/sc_removebullets.svg |1 +
 icon-themes/sifr_dark_svg/cmd/lc_removebullets.svg|2 +-
 icon-themes/sifr_dark_svg/cmd/sc_removebullets.svg|2 +-
 icon-themes/sifr_svg/cmd/32/ar/removebullets.svg  |1 +
 icon-themes/sifr_svg/cmd/32/removebullets.svg |2 +-
 icon-themes/sifr_svg/cmd/ar/sc_removebullets.svg  |1 +
 icon-themes/sifr_svg/cmd/lc_removebullets.svg |2 +-
 icon-themes/sifr_svg/cmd/sc_removebullets.svg |2 +-
 20 files changed, 10 insertions(+), 6 deletions(-)

New commits:
commit abf1fc512be49658e83ee5a091ed59ed0be1f238
Author: Rizal Muttaqin 
AuthorDate: Tue Jul 12 07:55:11 2022 +0700
Commit: Rizal Muttaqin 
CommitDate: Tue Jul 12 04:33:04 2022 +0200

Sifr: tdf#141110 Update No List icons

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

diff --git a/icon-themes/sifr/cmd/32/ar/removebullets.png 
b/icon-themes/sifr/cmd/32/ar/removebullets.png
new file mode 100644
index ..8b17768d159b
Binary files /dev/null and b/icon-themes/sifr/cmd/32/ar/removebullets.png differ
diff --git a/icon-themes/sifr/cmd/32/removebullets.png 
b/icon-themes/sifr/cmd/32/removebullets.png
index 4a7e700814b2..fd2a2590e552 100644
Binary files a/icon-themes/sifr/cmd/32/removebullets.png and 
b/icon-themes/sifr/cmd/32/removebullets.png differ
diff --git a/icon-themes/sifr/cmd/ar/sc_removebullets.png 
b/icon-themes/sifr/cmd/ar/sc_removebullets.png
new file mode 100644
index ..53bd3da363f3
Binary files /dev/null and b/icon-themes/sifr/cmd/ar/sc_removebullets.png differ
diff --git a/icon-themes/sifr/cmd/lc_removebullets.png 
b/icon-themes/sifr/cmd/lc_removebullets.png
index c03ab9762f66..4944b5d19e20 100644
Binary files a/icon-themes/sifr/cmd/lc_removebullets.png and 
b/icon-themes/sifr/cmd/lc_removebullets.png differ
diff --git a/icon-themes/sifr/cmd/sc_removebullets.png 
b/icon-themes/sifr/cmd/sc_removebullets.png
index 9bbc3b6d3264..0a808b7f9979 100644
Binary files a/icon-themes/sifr/cmd/sc_removebullets.png and 
b/icon-themes/sifr/cmd/sc_removebullets.png differ
diff --git a/icon-themes/sifr_dark/cmd/32/ar/removebullets.png 
b/icon-themes/sifr_dark/cmd/32/ar/removebullets.png
new file mode 100644
index ..84f9072f8d3f
Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/ar/removebullets.png 
differ
diff --git a/icon-themes/sifr_dark/cmd/32/removebullets.png 
b/icon-themes/sifr_dark/cmd/32/removebullets.png
index 5ce07bd34f3e..0d63e822b38f 100644
Binary files a/icon-themes/sifr_dark/cmd/32/removebullets.png and 
b/icon-themes/sifr_dark/cmd/32/removebullets.png differ
diff --git a/icon-themes/sifr_dark/cmd/ar/sc_removebullets.png 
b/icon-themes/sifr_dark/cmd/ar/sc_removebullets.png
new file mode 100644
index ..5f01ec6a3975
Binary files /dev/null and b/icon-themes/sifr_dark/cmd/ar/sc_removebullets.png 
differ
diff --git a/icon-themes/sifr_dark/cmd/lc_removebullets.png 
b/icon-themes/sifr_dark/cmd/lc_removebullets.png
index c28a9318a5d2..2cbaf137a8d7 100644
Binary files a/icon-themes/sifr_dark/cmd/lc_removebullets.png and 
b/icon-themes/sifr_dark/cmd/lc_removebullets.png differ
diff --git a/icon-themes/sifr_dark/cmd/sc_removebullets.png 
b/icon-themes/sifr_dark/cmd/sc_removebullets.png
index 37b153694adb..dc31c32d504b 100644
Binary files a/icon-themes/sifr_dark/cmd/sc_removebullets.png and 
b/icon-themes/sifr_dark/cmd/sc_removebullets.png differ
diff --git a/icon-themes/sifr_dark_svg/cmd/32/ar/removebullets.svg 
b/icon-themes/sifr_dark_svg/cmd/32/ar/removebullets.svg
new file mode 100644
index ..ce6c5b7aec5a
--- /dev/null
+++ b/icon-themes/sifr_dark_svg/cmd/32/ar/removebullets.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/sifr_dark_svg/cmd/32/removebullets.svg 
b/icon-themes/sifr_dark_svg/cmd/32/removebullets.svg
index 34cbfd888dc3..f094d73da139 100644
--- a/icon-themes/sifr_dark_svg/cmd/32/removebullets.svg
+++ b/icon-themes/sifr_dark_svg/cmd/32/removebullets.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end 

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

2022-07-11 Thread Rizal Muttaqin (via logerrit)
 dev/null  |binary
 icon-themes/elementary/cmd/32/ar/removebullets.png|binary
 icon-themes/elementary/cmd/32/removebullets.png   |binary
 icon-themes/elementary/cmd/ar/lc_removebullets.png|binary
 icon-themes/elementary/cmd/ar/sc_removebullets.png|binary
 icon-themes/elementary/cmd/lc_removebullets.png   |binary
 icon-themes/elementary/cmd/sc_removebullets.png   |binary
 icon-themes/elementary_svg/cmd/32/ar/removebullets.svg|2 +-
 icon-themes/elementary_svg/cmd/32/lc_deleterecord.svg |1 -
 icon-themes/elementary_svg/cmd/32/lc_graphicfilterremovenoise.svg |1 -
 icon-themes/elementary_svg/cmd/32/lc_removebullets.svg|1 -
 icon-themes/elementary_svg/cmd/32/removebullets.svg   |2 +-
 icon-themes/elementary_svg/cmd/ar/lc_removebullets.svg|2 +-
 icon-themes/elementary_svg/cmd/ar/sc_removebullets.svg|2 +-
 icon-themes/elementary_svg/cmd/lc_removebullets.svg   |2 +-
 icon-themes/elementary_svg/cmd/sc_removebullets.svg   |2 +-
 16 files changed, 6 insertions(+), 9 deletions(-)

New commits:
commit 9eda7c8ad22d10f24897fe6e8b764f19e9b1948c
Author: Rizal Muttaqin 
AuthorDate: Tue Jul 12 07:39:38 2022 +0700
Commit: Rizal Muttaqin 
CommitDate: Tue Jul 12 04:32:16 2022 +0200

elementary: tdf#141110 Update No List icons

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

diff --git a/icon-themes/elementary/cmd/32/ar/removebullets.png 
b/icon-themes/elementary/cmd/32/ar/removebullets.png
index 93ef673bb86e..a4113b4b2ff3 100644
Binary files a/icon-themes/elementary/cmd/32/ar/removebullets.png and 
b/icon-themes/elementary/cmd/32/ar/removebullets.png differ
diff --git a/icon-themes/elementary/cmd/32/lc_deleterecord.png 
b/icon-themes/elementary/cmd/32/lc_deleterecord.png
deleted file mode 100644
index 58aab37f8fcb..
Binary files a/icon-themes/elementary/cmd/32/lc_deleterecord.png and /dev/null 
differ
diff --git a/icon-themes/elementary/cmd/32/lc_graphicfilterremovenoise.png 
b/icon-themes/elementary/cmd/32/lc_graphicfilterremovenoise.png
deleted file mode 100644
index 4a7e778f33ed..
Binary files a/icon-themes/elementary/cmd/32/lc_graphicfilterremovenoise.png 
and /dev/null differ
diff --git a/icon-themes/elementary/cmd/32/lc_removebullets.png 
b/icon-themes/elementary/cmd/32/lc_removebullets.png
deleted file mode 100644
index f401e9d5f533..
Binary files a/icon-themes/elementary/cmd/32/lc_removebullets.png and /dev/null 
differ
diff --git a/icon-themes/elementary/cmd/32/lc_rename.png 
b/icon-themes/elementary/cmd/32/lc_rename.png
deleted file mode 100644
index e042b1edf4c7..
Binary files a/icon-themes/elementary/cmd/32/lc_rename.png and /dev/null differ
diff --git a/icon-themes/elementary/cmd/32/removebullets.png 
b/icon-themes/elementary/cmd/32/removebullets.png
index 31fea2409738..08a508d23ee0 100644
Binary files a/icon-themes/elementary/cmd/32/removebullets.png and 
b/icon-themes/elementary/cmd/32/removebullets.png differ
diff --git a/icon-themes/elementary/cmd/ar/lc_removebullets.png 
b/icon-themes/elementary/cmd/ar/lc_removebullets.png
index f3f8de5eca92..5389c7985474 100644
Binary files a/icon-themes/elementary/cmd/ar/lc_removebullets.png and 
b/icon-themes/elementary/cmd/ar/lc_removebullets.png differ
diff --git a/icon-themes/elementary/cmd/ar/sc_removebullets.png 
b/icon-themes/elementary/cmd/ar/sc_removebullets.png
index 65b947c4718c..610f9dcb5b8f 100644
Binary files a/icon-themes/elementary/cmd/ar/sc_removebullets.png and 
b/icon-themes/elementary/cmd/ar/sc_removebullets.png differ
diff --git a/icon-themes/elementary/cmd/lc_removebullets.png 
b/icon-themes/elementary/cmd/lc_removebullets.png
index 5bacb9ae68de..4ef8d23f78e3 100644
Binary files a/icon-themes/elementary/cmd/lc_removebullets.png and 
b/icon-themes/elementary/cmd/lc_removebullets.png differ
diff --git a/icon-themes/elementary/cmd/sc_removebullets.png 
b/icon-themes/elementary/cmd/sc_removebullets.png
index 49024a1b6736..021d41f4c595 100644
Binary files a/icon-themes/elementary/cmd/sc_removebullets.png and 
b/icon-themes/elementary/cmd/sc_removebullets.png differ
diff --git a/icon-themes/elementary_svg/cmd/32/ar/removebullets.svg 
b/icon-themes/elementary_svg/cmd/32/ar/removebullets.svg
index 04f9a2c9cf52..e78640b324ca 100644
--- a/icon-themes/elementary_svg/cmd/32/ar/removebullets.svg
+++ b/icon-themes/elementary_svg/cmd/32/ar/removebullets.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 --git 

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

2022-07-11 Thread Rizal Muttaqin (via logerrit)
 icon-themes/sukapura/cmd/32/ar/removebullets.png |binary
 icon-themes/sukapura/cmd/32/removebullets.png|binary
 icon-themes/sukapura/cmd/ar/lc_removebullets.png |binary
 icon-themes/sukapura/cmd/ar/sc_removebullets.png |binary
 icon-themes/sukapura/cmd/lc_removebullets.png|binary
 icon-themes/sukapura/cmd/sc_removebullets.png|binary
 icon-themes/sukapura_svg/cmd/32/ar/removebullets.svg |2 +-
 icon-themes/sukapura_svg/cmd/32/removebullets.svg|2 +-
 icon-themes/sukapura_svg/cmd/ar/lc_removebullets.svg |2 +-
 icon-themes/sukapura_svg/cmd/ar/sc_removebullets.svg |2 +-
 icon-themes/sukapura_svg/cmd/lc_removebullets.svg|2 +-
 icon-themes/sukapura_svg/cmd/sc_removebullets.svg|2 +-
 12 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 17af853113405799f660a89f25ddd5eaa3341d75
Author: Rizal Muttaqin 
AuthorDate: Tue Jul 12 06:59:41 2022 +0700
Commit: Rizal Muttaqin 
CommitDate: Tue Jul 12 04:30:32 2022 +0200

Sukapura: tdf#141110 Update No List icons

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

diff --git a/icon-themes/sukapura/cmd/32/ar/removebullets.png 
b/icon-themes/sukapura/cmd/32/ar/removebullets.png
index 497e975ebd8c..718deb1e0d0a 100644
Binary files a/icon-themes/sukapura/cmd/32/ar/removebullets.png and 
b/icon-themes/sukapura/cmd/32/ar/removebullets.png differ
diff --git a/icon-themes/sukapura/cmd/32/removebullets.png 
b/icon-themes/sukapura/cmd/32/removebullets.png
index d237bc7ff9d4..eb8683971a73 100644
Binary files a/icon-themes/sukapura/cmd/32/removebullets.png and 
b/icon-themes/sukapura/cmd/32/removebullets.png differ
diff --git a/icon-themes/sukapura/cmd/ar/lc_removebullets.png 
b/icon-themes/sukapura/cmd/ar/lc_removebullets.png
index c738c99ac50a..d18f6e538156 100644
Binary files a/icon-themes/sukapura/cmd/ar/lc_removebullets.png and 
b/icon-themes/sukapura/cmd/ar/lc_removebullets.png differ
diff --git a/icon-themes/sukapura/cmd/ar/sc_removebullets.png 
b/icon-themes/sukapura/cmd/ar/sc_removebullets.png
index b99bcf1b970b..08afcf23a892 100644
Binary files a/icon-themes/sukapura/cmd/ar/sc_removebullets.png and 
b/icon-themes/sukapura/cmd/ar/sc_removebullets.png differ
diff --git a/icon-themes/sukapura/cmd/lc_removebullets.png 
b/icon-themes/sukapura/cmd/lc_removebullets.png
index 9850c87fe0a4..32c4185a6f51 100644
Binary files a/icon-themes/sukapura/cmd/lc_removebullets.png and 
b/icon-themes/sukapura/cmd/lc_removebullets.png differ
diff --git a/icon-themes/sukapura/cmd/sc_removebullets.png 
b/icon-themes/sukapura/cmd/sc_removebullets.png
index e3924d40ab6a..1dd4cf05bfe0 100644
Binary files a/icon-themes/sukapura/cmd/sc_removebullets.png and 
b/icon-themes/sukapura/cmd/sc_removebullets.png differ
diff --git a/icon-themes/sukapura_svg/cmd/32/ar/removebullets.svg 
b/icon-themes/sukapura_svg/cmd/32/ar/removebullets.svg
index b2f685d3765a..7d4677da48d4 100644
--- a/icon-themes/sukapura_svg/cmd/32/ar/removebullets.svg
+++ b/icon-themes/sukapura_svg/cmd/32/ar/removebullets.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 --git a/icon-themes/sukapura_svg/cmd/32/removebullets.svg 
b/icon-themes/sukapura_svg/cmd/32/removebullets.svg
index b3cbddae308c..61852cdb52fe 100644
--- a/icon-themes/sukapura_svg/cmd/32/removebullets.svg
+++ b/icon-themes/sukapura_svg/cmd/32/removebullets.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 --git a/icon-themes/sukapura_svg/cmd/ar/lc_removebullets.svg 
b/icon-themes/sukapura_svg/cmd/ar/lc_removebullets.svg
index 039cabbdc159..839a5ebe1eca 100644
--- a/icon-themes/sukapura_svg/cmd/ar/lc_removebullets.svg
+++ b/icon-themes/sukapura_svg/cmd/ar/lc_removebullets.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 --git a/icon-themes/sukapura_svg/cmd/ar/sc_removebullets.svg 
b/icon-themes/sukapura_svg/cmd/ar/sc_removebullets.svg
index 5eac3105f42d..4467d305a107 100644
--- a/icon-themes/sukapura_svg/cmd/ar/sc_removebullets.svg
+++ b/icon-themes/sukapura_svg/cmd/ar/sc_removebullets.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 --git a/icon-themes/sukapura_svg/cmd/lc_removebullets.svg 
b/icon-themes/sukapura_svg/cmd/lc_removebullets.svg
index 

[Libreoffice-commits] core.git: icon-themes/colibre icon-themes/colibre_dark icon-themes/colibre_dark_svg icon-themes/colibre_svg

2022-07-11 Thread Rizal Muttaqin (via logerrit)
 icon-themes/colibre/cmd/32/ar/removebullets.png  |binary
 icon-themes/colibre/cmd/32/removebullets.png |binary
 icon-themes/colibre/cmd/ar/lc_removebullets.png  |binary
 icon-themes/colibre/cmd/lc_removebullets.png |binary
 icon-themes/colibre_dark/cmd/32/ar/removebullets.png |binary
 icon-themes/colibre_dark/cmd/32/removebullets.png|binary
 icon-themes/colibre_dark/cmd/ar/lc_removebullets.png |binary
 icon-themes/colibre_dark/cmd/lc_removebullets.png|binary
 icon-themes/colibre_dark_svg/cmd/32/ar/removebullets.svg |2 +-
 icon-themes/colibre_dark_svg/cmd/32/removebullets.svg|2 +-
 icon-themes/colibre_dark_svg/cmd/ar/lc_removebullets.svg |2 +-
 icon-themes/colibre_dark_svg/cmd/lc_removebullets.svg|2 +-
 icon-themes/colibre_svg/cmd/32/ar/removebullets.svg  |2 +-
 icon-themes/colibre_svg/cmd/32/removebullets.svg |2 +-
 icon-themes/colibre_svg/cmd/ar/lc_removebullets.svg  |2 +-
 icon-themes/colibre_svg/cmd/lc_removebullets.svg |2 +-
 16 files changed, 8 insertions(+), 8 deletions(-)

New commits:
commit 52e2dc619d3d7b8089d9841d38b10f1d8a64f747
Author: Rizal Muttaqin 
AuthorDate: Tue Jul 12 06:57:12 2022 +0700
Commit: Rizal Muttaqin 
CommitDate: Tue Jul 12 04:29:05 2022 +0200

Colibre: tdf#141110 Update No List icons

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

diff --git a/icon-themes/colibre/cmd/32/ar/removebullets.png 
b/icon-themes/colibre/cmd/32/ar/removebullets.png
index a5db8e923b73..adb38e358cd4 100644
Binary files a/icon-themes/colibre/cmd/32/ar/removebullets.png and 
b/icon-themes/colibre/cmd/32/ar/removebullets.png differ
diff --git a/icon-themes/colibre/cmd/32/removebullets.png 
b/icon-themes/colibre/cmd/32/removebullets.png
index 1fa773746a32..a2fe52241ba4 100644
Binary files a/icon-themes/colibre/cmd/32/removebullets.png and 
b/icon-themes/colibre/cmd/32/removebullets.png differ
diff --git a/icon-themes/colibre/cmd/ar/lc_removebullets.png 
b/icon-themes/colibre/cmd/ar/lc_removebullets.png
index 1f13d36f1769..aa21785787c7 100644
Binary files a/icon-themes/colibre/cmd/ar/lc_removebullets.png and 
b/icon-themes/colibre/cmd/ar/lc_removebullets.png differ
diff --git a/icon-themes/colibre/cmd/lc_removebullets.png 
b/icon-themes/colibre/cmd/lc_removebullets.png
index 7455047390cf..34eb04f5a65b 100644
Binary files a/icon-themes/colibre/cmd/lc_removebullets.png and 
b/icon-themes/colibre/cmd/lc_removebullets.png differ
diff --git a/icon-themes/colibre_dark/cmd/32/ar/removebullets.png 
b/icon-themes/colibre_dark/cmd/32/ar/removebullets.png
index 292d23c886be..b13e65e936f4 100644
Binary files a/icon-themes/colibre_dark/cmd/32/ar/removebullets.png and 
b/icon-themes/colibre_dark/cmd/32/ar/removebullets.png differ
diff --git a/icon-themes/colibre_dark/cmd/32/removebullets.png 
b/icon-themes/colibre_dark/cmd/32/removebullets.png
index c11f81fd60d3..4eccec588f86 100644
Binary files a/icon-themes/colibre_dark/cmd/32/removebullets.png and 
b/icon-themes/colibre_dark/cmd/32/removebullets.png differ
diff --git a/icon-themes/colibre_dark/cmd/ar/lc_removebullets.png 
b/icon-themes/colibre_dark/cmd/ar/lc_removebullets.png
index da0a15331fcd..7327c565d0cc 100644
Binary files a/icon-themes/colibre_dark/cmd/ar/lc_removebullets.png and 
b/icon-themes/colibre_dark/cmd/ar/lc_removebullets.png differ
diff --git a/icon-themes/colibre_dark/cmd/lc_removebullets.png 
b/icon-themes/colibre_dark/cmd/lc_removebullets.png
index c5195b9c18fd..54ee9d4b617b 100644
Binary files a/icon-themes/colibre_dark/cmd/lc_removebullets.png and 
b/icon-themes/colibre_dark/cmd/lc_removebullets.png differ
diff --git a/icon-themes/colibre_dark_svg/cmd/32/ar/removebullets.svg 
b/icon-themes/colibre_dark_svg/cmd/32/ar/removebullets.svg
index 9f922a511936..62e215114a88 100644
--- a/icon-themes/colibre_dark_svg/cmd/32/ar/removebullets.svg
+++ b/icon-themes/colibre_dark_svg/cmd/32/ar/removebullets.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end of file
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/colibre_dark_svg/cmd/32/removebullets.svg 
b/icon-themes/colibre_dark_svg/cmd/32/removebullets.svg
index 0fe57163e1d3..ff24e33521a3 100644
--- a/icon-themes/colibre_dark_svg/cmd/32/removebullets.svg
+++ b/icon-themes/colibre_dark_svg/cmd/32/removebullets.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end of file
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/colibre_dark_svg/cmd/ar/lc_removebullets.svg 
b/icon-themes/colibre_dark_svg/cmd/ar/lc_removebullets.svg
index b6f263b9829c..6d32372c3773 100644
--- a/icon-themes/colibre_dark_svg/cmd/ar/lc_removebullets.svg
+++ b/icon-themes/colibre_dark_svg/cmd/ar/lc_removebullets.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline 

[Libreoffice-commits] core.git: icon-themes/sukapura icon-themes/sukapura_svg

2022-07-11 Thread Rizal Muttaqin (via logerrit)
 icon-themes/sukapura/cmd/32/ar/removebullets.png |binary
 icon-themes/sukapura/cmd/32/removebullets.png|binary
 icon-themes/sukapura/cmd/ar/lc_removebullets.png |binary
 icon-themes/sukapura/cmd/ar/sc_removebullets.png |binary
 icon-themes/sukapura/cmd/lc_removebullets.png|binary
 icon-themes/sukapura/cmd/sc_removebullets.png|binary
 icon-themes/sukapura_svg/cmd/32/ar/removebullets.svg |2 +-
 icon-themes/sukapura_svg/cmd/32/removebullets.svg|2 +-
 icon-themes/sukapura_svg/cmd/ar/lc_removebullets.svg |2 +-
 icon-themes/sukapura_svg/cmd/ar/sc_removebullets.svg |2 +-
 icon-themes/sukapura_svg/cmd/lc_removebullets.svg|2 +-
 icon-themes/sukapura_svg/cmd/sc_removebullets.svg|2 +-
 12 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 5a363056963501780451667d7adacf7435c49b08
Author: Rizal Muttaqin 
AuthorDate: Tue Jul 12 06:59:41 2022 +0700
Commit: Rizal Muttaqin 
CommitDate: Tue Jul 12 04:28:04 2022 +0200

Sukapura: tdf#141110 Update No List icons

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

diff --git a/icon-themes/sukapura/cmd/32/ar/removebullets.png 
b/icon-themes/sukapura/cmd/32/ar/removebullets.png
index 497e975ebd8c..718deb1e0d0a 100644
Binary files a/icon-themes/sukapura/cmd/32/ar/removebullets.png and 
b/icon-themes/sukapura/cmd/32/ar/removebullets.png differ
diff --git a/icon-themes/sukapura/cmd/32/removebullets.png 
b/icon-themes/sukapura/cmd/32/removebullets.png
index d237bc7ff9d4..eb8683971a73 100644
Binary files a/icon-themes/sukapura/cmd/32/removebullets.png and 
b/icon-themes/sukapura/cmd/32/removebullets.png differ
diff --git a/icon-themes/sukapura/cmd/ar/lc_removebullets.png 
b/icon-themes/sukapura/cmd/ar/lc_removebullets.png
index c738c99ac50a..d18f6e538156 100644
Binary files a/icon-themes/sukapura/cmd/ar/lc_removebullets.png and 
b/icon-themes/sukapura/cmd/ar/lc_removebullets.png differ
diff --git a/icon-themes/sukapura/cmd/ar/sc_removebullets.png 
b/icon-themes/sukapura/cmd/ar/sc_removebullets.png
index b99bcf1b970b..08afcf23a892 100644
Binary files a/icon-themes/sukapura/cmd/ar/sc_removebullets.png and 
b/icon-themes/sukapura/cmd/ar/sc_removebullets.png differ
diff --git a/icon-themes/sukapura/cmd/lc_removebullets.png 
b/icon-themes/sukapura/cmd/lc_removebullets.png
index 9850c87fe0a4..32c4185a6f51 100644
Binary files a/icon-themes/sukapura/cmd/lc_removebullets.png and 
b/icon-themes/sukapura/cmd/lc_removebullets.png differ
diff --git a/icon-themes/sukapura/cmd/sc_removebullets.png 
b/icon-themes/sukapura/cmd/sc_removebullets.png
index e3924d40ab6a..1dd4cf05bfe0 100644
Binary files a/icon-themes/sukapura/cmd/sc_removebullets.png and 
b/icon-themes/sukapura/cmd/sc_removebullets.png differ
diff --git a/icon-themes/sukapura_svg/cmd/32/ar/removebullets.svg 
b/icon-themes/sukapura_svg/cmd/32/ar/removebullets.svg
index b2f685d3765a..7d4677da48d4 100644
--- a/icon-themes/sukapura_svg/cmd/32/ar/removebullets.svg
+++ b/icon-themes/sukapura_svg/cmd/32/ar/removebullets.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 --git a/icon-themes/sukapura_svg/cmd/32/removebullets.svg 
b/icon-themes/sukapura_svg/cmd/32/removebullets.svg
index b3cbddae308c..61852cdb52fe 100644
--- a/icon-themes/sukapura_svg/cmd/32/removebullets.svg
+++ b/icon-themes/sukapura_svg/cmd/32/removebullets.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 --git a/icon-themes/sukapura_svg/cmd/ar/lc_removebullets.svg 
b/icon-themes/sukapura_svg/cmd/ar/lc_removebullets.svg
index 039cabbdc159..839a5ebe1eca 100644
--- a/icon-themes/sukapura_svg/cmd/ar/lc_removebullets.svg
+++ b/icon-themes/sukapura_svg/cmd/ar/lc_removebullets.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 --git a/icon-themes/sukapura_svg/cmd/ar/sc_removebullets.svg 
b/icon-themes/sukapura_svg/cmd/ar/sc_removebullets.svg
index 5eac3105f42d..4467d305a107 100644
--- a/icon-themes/sukapura_svg/cmd/ar/sc_removebullets.svg
+++ b/icon-themes/sukapura_svg/cmd/ar/sc_removebullets.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 --git a/icon-themes/sukapura_svg/cmd/lc_removebullets.svg 
b/icon-themes/sukapura_svg/cmd/lc_removebullets.svg
index 

[Libreoffice-bugs] [Bug 149089] FILEOPEN: docx: get extra mini space between Chinese character when open docx file

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149089

--- Comment #22 from Zhang Qide  ---
Created attachment 181234
  --> https://bugs.documentfoundation.org/attachment.cgi?id=181234=edit
test document archive

see zip archive

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

[Libreoffice-bugs] [Bug 149940] Incorrect VLOOKUP result

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149940

--- Comment #6 from slavaf2...@gmail.com ---
I confirm that the file was originally created with and saved with LibreOffice.
No other application was ever involved with that file.

Neither Recalculate Hard (Ctrl + Shift + F9) nor Recalculate (F9) produces
correct results. Also note that the attached file is a small part of a larger
file that I created (but can't attach for privacy reasons). It is a partial
copy-paste from the larger file, and I can confirm that I have many VLOOKUP
functions looking up many dates going back several years, and as far as I know,
the results were always correct. The results became incorrect only when looking
up April 22, 2022 date and later.

Some dates are missing because only business days (Monday - Friday, excluding
holidays) are on the spreadsheet. Normally, the formula returns the value of
the closest last date which is available. For example, if we have the following
dates:

April 29, 2022
May 1, 2022

and the VLOOKUP is asked to look up April 30, 2022, it will give the value for
April 29, 2022, which to me is acceptable behavior.

Let me know if I've answered all your questions.

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

[Libreoffice-bugs] [Bug 131141] [META] Sukapura icons

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131141

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||141110


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=141110
[Bug 141110] Modify "No List" icon to show that it applies to more than just
bulleted lists
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 125965] [META] Sifr icons

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125965

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||141110


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=141110
[Bug 141110] Modify "No List" icon to show that it applies to more than just
bulleted lists
-- 
You are receiving this mail because:
You are the assignee for the bug.

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

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

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||141110


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=141110
[Bug 141110] Modify "No List" icon to show that it applies to more than just
bulleted lists
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 107139] [META] Breeze icons

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107139

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||141110


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=141110
[Bug 141110] Modify "No List" icon to show that it applies to more than just
bulleted lists
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 117497] [META] Colibre icons

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117497

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||141110


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=141110
[Bug 141110] Modify "No List" icon to show that it applies to more than just
bulleted lists
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: Branch 'libreoffice-7-4' - icon-themes/colibre icon-themes/colibre_dark icon-themes/colibre_dark_svg icon-themes/colibre_svg

2022-07-11 Thread Rizal Muttaqin (via logerrit)
 icon-themes/colibre/cmd/32/ar/removebullets.png  |binary
 icon-themes/colibre/cmd/32/removebullets.png |binary
 icon-themes/colibre/cmd/ar/lc_removebullets.png  |binary
 icon-themes/colibre/cmd/lc_removebullets.png |binary
 icon-themes/colibre_dark/cmd/32/ar/removebullets.png |binary
 icon-themes/colibre_dark/cmd/32/removebullets.png|binary
 icon-themes/colibre_dark/cmd/ar/lc_removebullets.png |binary
 icon-themes/colibre_dark/cmd/lc_removebullets.png|binary
 icon-themes/colibre_dark_svg/cmd/32/ar/removebullets.svg |2 +-
 icon-themes/colibre_dark_svg/cmd/32/removebullets.svg|2 +-
 icon-themes/colibre_dark_svg/cmd/ar/lc_removebullets.svg |2 +-
 icon-themes/colibre_dark_svg/cmd/lc_removebullets.svg|2 +-
 icon-themes/colibre_svg/cmd/32/ar/removebullets.svg  |2 +-
 icon-themes/colibre_svg/cmd/32/removebullets.svg |2 +-
 icon-themes/colibre_svg/cmd/ar/lc_removebullets.svg  |2 +-
 icon-themes/colibre_svg/cmd/lc_removebullets.svg |2 +-
 16 files changed, 8 insertions(+), 8 deletions(-)

New commits:
commit c26321a1c5f11c0abac738b180f32b0c009deb9a
Author: Rizal Muttaqin 
AuthorDate: Tue Jul 12 06:57:12 2022 +0700
Commit: Rizal Muttaqin 
CommitDate: Tue Jul 12 02:58:53 2022 +0200

Colibre: tdf#141110 Update No List icons

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

diff --git a/icon-themes/colibre/cmd/32/ar/removebullets.png 
b/icon-themes/colibre/cmd/32/ar/removebullets.png
index a5db8e923b73..adb38e358cd4 100644
Binary files a/icon-themes/colibre/cmd/32/ar/removebullets.png and 
b/icon-themes/colibre/cmd/32/ar/removebullets.png differ
diff --git a/icon-themes/colibre/cmd/32/removebullets.png 
b/icon-themes/colibre/cmd/32/removebullets.png
index 1fa773746a32..a2fe52241ba4 100644
Binary files a/icon-themes/colibre/cmd/32/removebullets.png and 
b/icon-themes/colibre/cmd/32/removebullets.png differ
diff --git a/icon-themes/colibre/cmd/ar/lc_removebullets.png 
b/icon-themes/colibre/cmd/ar/lc_removebullets.png
index 1f13d36f1769..aa21785787c7 100644
Binary files a/icon-themes/colibre/cmd/ar/lc_removebullets.png and 
b/icon-themes/colibre/cmd/ar/lc_removebullets.png differ
diff --git a/icon-themes/colibre/cmd/lc_removebullets.png 
b/icon-themes/colibre/cmd/lc_removebullets.png
index 7455047390cf..34eb04f5a65b 100644
Binary files a/icon-themes/colibre/cmd/lc_removebullets.png and 
b/icon-themes/colibre/cmd/lc_removebullets.png differ
diff --git a/icon-themes/colibre_dark/cmd/32/ar/removebullets.png 
b/icon-themes/colibre_dark/cmd/32/ar/removebullets.png
index 292d23c886be..b13e65e936f4 100644
Binary files a/icon-themes/colibre_dark/cmd/32/ar/removebullets.png and 
b/icon-themes/colibre_dark/cmd/32/ar/removebullets.png differ
diff --git a/icon-themes/colibre_dark/cmd/32/removebullets.png 
b/icon-themes/colibre_dark/cmd/32/removebullets.png
index c11f81fd60d3..4eccec588f86 100644
Binary files a/icon-themes/colibre_dark/cmd/32/removebullets.png and 
b/icon-themes/colibre_dark/cmd/32/removebullets.png differ
diff --git a/icon-themes/colibre_dark/cmd/ar/lc_removebullets.png 
b/icon-themes/colibre_dark/cmd/ar/lc_removebullets.png
index da0a15331fcd..7327c565d0cc 100644
Binary files a/icon-themes/colibre_dark/cmd/ar/lc_removebullets.png and 
b/icon-themes/colibre_dark/cmd/ar/lc_removebullets.png differ
diff --git a/icon-themes/colibre_dark/cmd/lc_removebullets.png 
b/icon-themes/colibre_dark/cmd/lc_removebullets.png
index c5195b9c18fd..54ee9d4b617b 100644
Binary files a/icon-themes/colibre_dark/cmd/lc_removebullets.png and 
b/icon-themes/colibre_dark/cmd/lc_removebullets.png differ
diff --git a/icon-themes/colibre_dark_svg/cmd/32/ar/removebullets.svg 
b/icon-themes/colibre_dark_svg/cmd/32/ar/removebullets.svg
index 9f922a511936..62e215114a88 100644
--- a/icon-themes/colibre_dark_svg/cmd/32/ar/removebullets.svg
+++ b/icon-themes/colibre_dark_svg/cmd/32/ar/removebullets.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end of file
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/colibre_dark_svg/cmd/32/removebullets.svg 
b/icon-themes/colibre_dark_svg/cmd/32/removebullets.svg
index 0fe57163e1d3..ff24e33521a3 100644
--- a/icon-themes/colibre_dark_svg/cmd/32/removebullets.svg
+++ b/icon-themes/colibre_dark_svg/cmd/32/removebullets.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end of file
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/colibre_dark_svg/cmd/ar/lc_removebullets.svg 
b/icon-themes/colibre_dark_svg/cmd/ar/lc_removebullets.svg
index b6f263b9829c..6d32372c3773 100644
--- a/icon-themes/colibre_dark_svg/cmd/ar/lc_removebullets.svg
+++ b/icon-themes/colibre_dark_svg/cmd/ar/lc_removebullets.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end 

[Libreoffice-bugs] [Bug 147299] For Japanese vertical writing, the candidate list rotate.

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147299

--- Comment #8 from Franklin Weng  ---
Created attachment 181233
  --> https://bugs.documentfoundation.org/attachment.cgi?id=181233=edit
Debian testing Libreoffice Writer 7.3.4

With gcin engine and anthy input method, under zh_TW locale

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

[Libreoffice-bugs] [Bug 147299] For Japanese vertical writing, the candidate list rotate.

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147299

--- Comment #7 from Franklin Weng  ---
(In reply to Regina Henschel from comment #6)
> (In reply to Saburo from comment #5)
> > Sorry.
> > This is problem during Japanese input and cannot be provided as
> > documentation.
> 
> I see. The screenshot uses LibreOffice on Ubuntu. Is it possible for you to
> test whether the error also occurs with another operating system?
> 
> @Franklin: Could you please try to reproduce the problem? Or do you know
> someone else who can test Japanese input?

I could not reproduce it in my box:

Version: 7.3.4.2 / LibreOffice Community
Build ID: 728fec16bd5f605073805c3c9e7c4212a0120dc5
CPU threads: 4; OS: Linux 5.18; UI render: default; VCL: kf5 (cairo+xcb)
Locale: zh-TW (zh_TW.UTF-8); UI: zh-TW
Calc: threaded

Running in Debian testing with "gcin" IM engine, which also contains anthy
Japanese input method.  Attach screenshot later.

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

[Libreoffice-bugs] [Bug 149089] FILEOPEN: docx: get extra mini space between Chinese character when open docx file

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149089

--- Comment #21 from Zhang Qide  ---
The original issue has been fixed. But I still have some similar problem.
Please see new attachment.



Version: 7.5.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 1f201d76d6e2fcc9d8af6504c38bd98c46e0798e
CPU threads: 4; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Raster; VCL: win
Locale: zh-CN (zh_CN); UI: zh-CN
Calc: threaded

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

[Libreoffice-bugs] [Bug 141110] Modify "No List" icon to show that it applies to more than just bulleted lists

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141110

Rizal Muttaqin  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |riz...@libreoffice.org
   |desktop.org |
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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

[Libreoffice-bugs] [Bug 149957] New: Screen Size Does Not Carry to Next Session

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149957

Bug ID: 149957
   Summary: Screen Size Does Not Carry to Next Session
   Product: LibreOffice
   Version: 7.4.0.0 beta1+
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mark...@gmail.com

Description:
After installing 7.4.0.1 and launching LibreOffice, the main home screen only
occupies about 66% of the screen. Resizing the app, closing it, and relaunching
it does not preserve the resized screen size. This behavior consistently
applies to launching the home screen, existing documents, and individual apps
within LibreOffice.

Steps to Reproduce:
1.Install 7.4.0.1
2.Launch Office
3.Resize screen
4.Close Office
5.Relaunch Office.

Actual Results:
Resized screen is not "saved"

Expected Results:
Screen should be the same size as when last used.


Reproducible: Always


User Profile Reset: No



Additional Info:
[Information automatically included from LibreOffice]
Locale: en-US
Module: StartModule
[Information guessed from browser]
OS: Windows (All)
OS is 64bit: no

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

[Libreoffice-bugs] [Bug 149952] 7.3.4.2 view jumps around when (linux) system zoom enabled

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149952

--- Comment #1 from Heather Ellsworth  ---
This issue does not occur on Debian Testing with KDE Plasma, so it must be a
GNOME/GTK issue. Please feel free to close this since it is not a LO issue and
I'll find the proper project.

Thanks!

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

[Libreoffice-commits] core.git: Branch 'libreoffice-7-4' - svgio/inc svgio/qa svgio/source

2022-07-11 Thread Xisco Fauli (via logerrit)
 svgio/inc/svgmarkernode.hxx   |   17 +
 svgio/qa/cppunit/SvgImportTest.cxx|   33 ++
 svgio/qa/cppunit/data/MarkerOrient.svg|   22 +
 svgio/source/svgreader/svgmarkernode.cxx  |   11 ++--
 svgio/source/svgreader/svgstyleattributes.cxx |   13 +++---
 5 files changed, 85 insertions(+), 11 deletions(-)

New commits:
commit 15f73fab655cc3da29fc19a3951843000719483a
Author: Xisco Fauli 
AuthorDate: Fri Jul 8 11:54:40 2022 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Tue Jul 12 01:12:52 2022 +0200

tdf#149913: add support for auto-start-reverse

See https://svgwg.org/svg2-draft/painting.html#OrientAttribute

Change-Id: Iedcca7bc79a54333c0f80927364caec82ce61167
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136894
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 
Signed-off-by: Xisco Fauli 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136899
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/svgio/inc/svgmarkernode.hxx b/svgio/inc/svgmarkernode.hxx
index 41c2d71efe41..3f4b08791bd0 100644
--- a/svgio/inc/svgmarkernode.hxx
+++ b/svgio/inc/svgmarkernode.hxx
@@ -34,6 +34,13 @@ namespace svgio::svgreader
 userSpaceOnUse
 };
 
+enum class MarkerOrient
+{
+notset,
+auto_start,
+auto_start_reverse
+};
+
 private:
 /// buffered decomposition
 drawinglayer::primitive2d::Primitive2DContainer aPrimitives;
@@ -51,8 +58,7 @@ namespace svgio::svgreader
 SvgNumber   maMarkerWidth;
 SvgNumber   maMarkerHeight;
 double  mfAngle;
-
-boolmbOrientAuto : 1; // true == on, false == 
fAngle valid
+MarkerOrientmaMarkerOrient;
 
 public:
 SvgMarkerNode(
@@ -94,10 +100,11 @@ namespace svgio::svgreader
 
 /// Angle content, set if found in current context
 double getAngle() const { return mfAngle; }
-void setAngle(double fAngle) { mfAngle = fAngle; mbOrientAuto = 
false; }
+void setAngle(double fAngle) { mfAngle = fAngle;}
 
-/// OrientAuto content, set if found in current context
-bool getOrientAuto() const { return mbOrientAuto; }
+/// MarkerOrient content
+MarkerOrient getMarkerOrient() const { return maMarkerOrient; }
+void setMarkerOrient(const MarkerOrient aMarkerOrient) { 
maMarkerOrient = aMarkerOrient; }
 
 };
 
diff --git a/svgio/qa/cppunit/SvgImportTest.cxx 
b/svgio/qa/cppunit/SvgImportTest.cxx
index b97185f36af7..75eaf28c04c5 100644
--- a/svgio/qa/cppunit/SvgImportTest.cxx
+++ b/svgio/qa/cppunit/SvgImportTest.cxx
@@ -44,6 +44,7 @@ class Test : public test::BootstrapFixture, public 
XmlTestTools
 void testFontsizeKeywords();
 void testFontsizePercentage();
 void testFontsizeRelative();
+void testMarkerOrient();
 void testTdf45771();
 void testTdf97941();
 void testTdf104339();
@@ -83,6 +84,7 @@ public:
 CPPUNIT_TEST(testFontsizeKeywords);
 CPPUNIT_TEST(testFontsizePercentage);
 CPPUNIT_TEST(testFontsizeRelative);
+CPPUNIT_TEST(testMarkerOrient);
 CPPUNIT_TEST(testTdf45771);
 CPPUNIT_TEST(testTdf97941);
 CPPUNIT_TEST(testTdf104339);
@@ -310,6 +312,37 @@ void Test::testFontsizeRelative()
 assertXPath(pDocument, "/primitive2D/transform/textsimpleportion[2]", 
"familyname", "serif");
 }
 
+void Test::testMarkerOrient()
+{
+Primitive2DSequence aSequence = 
parseSvg(u"/svgio/qa/cppunit/data/MarkerOrient.svg");
+CPPUNIT_ASSERT_EQUAL(1, static_cast(aSequence.getLength()));
+
+drawinglayer::Primitive2dXmlDump dumper;
+xmlDocUniquePtr pDocument = dumper.dumpAndParse(aSequence);
+
+CPPUNIT_ASSERT (pDocument);
+
+assertXPath(pDocument, "/primitive2D/transform/transform[1]", "xy11", "0");
+assertXPath(pDocument, "/primitive2D/transform/transform[1]", "xy12", "0");
+assertXPath(pDocument, "/primitive2D/transform/transform[1]", "xy13", "7");
+assertXPath(pDocument, "/primitive2D/transform/transform[1]", "xy21", "0");
+assertXPath(pDocument, "/primitive2D/transform/transform[1]", "xy22", "0");
+assertXPath(pDocument, "/primitive2D/transform/transform[1]", "xy23", 
"13");
+assertXPath(pDocument, "/primitive2D/transform/transform[1]", "xy31", "0");
+assertXPath(pDocument, "/primitive2D/transform/transform[1]", "xy32", "0");
+assertXPath(pDocument, "/primitive2D/transform/transform[1]", "xy33", "1");
+
+assertXPath(pDocument, "/primitive2D/transform/transform[2]", "xy11", "0");
+assertXPath(pDocument, "/primitive2D/transform/transform[2]", "xy12", "0");
+assertXPath(pDocument, "/primitive2D/transform/transform[2]", "xy13", 
"87");
+

[Libreoffice-commits] core.git: Branch 'libreoffice-7-3' - i18npool/source

2022-07-11 Thread Eike Rathke (via logerrit)
 i18npool/source/defaultnumberingprovider/defaultnumberingprovider.cxx |6 
+++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 17806035b80a30a91bcb8b8bc86075e08f9aed9a
Author: Eike Rathke 
AuthorDate: Mon Jul 11 15:36:44 2022 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Tue Jul 12 00:59:15 2022 +0200

Resolves: tdf#141565 Correct character sequence for Devanagari unique ID

A copy-paste error of the Farsi sequence.

Change-Id: Ib19f97f0bc3bf018d659f8e998d0daa71e1d5c24
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136958
Reviewed-by: Eike Rathke 
Tested-by: Jenkins
(cherry picked from commit 4ef38087017a4d245332eb5b395060b58212a194)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136931
Reviewed-by: Adolfo Jayme Barrientos 

diff --git 
a/i18npool/source/defaultnumberingprovider/defaultnumberingprovider.cxx 
b/i18npool/source/defaultnumberingprovider/defaultnumberingprovider.cxx
index 831b502a2771..1f6e4d55bf75 100644
--- a/i18npool/source/defaultnumberingprovider/defaultnumberingprovider.cxx
+++ b/i18npool/source/defaultnumberingprovider/defaultnumberingprovider.cxx
@@ -63,9 +63,9 @@
 #define S_FA_THREE "\xDB\xB3"
 
 // Indic Devanagari
-#define S_HI_ONE "\xDB\xB1"
-#define S_HI_TWO "\xDB\xB2"
-#define S_HI_THREE "\xDB\xB3"
+#define S_HI_ONE "\xE0\xA5\xA7"
+#define S_HI_TWO "\xE0\xA5\xA8"
+#define S_HI_THREE "\xE0\xA5\xA9"
 
 // Chicago footnote symbols
 #define S_DAGGER "\xE2\x80\xA0"


[Libreoffice-commits] core.git: Branch 'libreoffice-7-4' - i18npool/source

2022-07-11 Thread Eike Rathke (via logerrit)
 i18npool/source/defaultnumberingprovider/defaultnumberingprovider.cxx |6 
+++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 8309137f138edc43a02e69ff120839c2c23e45c2
Author: Eike Rathke 
AuthorDate: Mon Jul 11 15:36:44 2022 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Tue Jul 12 00:58:24 2022 +0200

Resolves: tdf#141565 Correct character sequence for Devanagari unique ID

A copy-paste error of the Farsi sequence.

Change-Id: Ib19f97f0bc3bf018d659f8e998d0daa71e1d5c24
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136958
Reviewed-by: Eike Rathke 
Tested-by: Jenkins
(cherry picked from commit dbef922b7ac63c56bd534c1475790198a64131b1)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136932
Reviewed-by: Adolfo Jayme Barrientos 

diff --git 
a/i18npool/source/defaultnumberingprovider/defaultnumberingprovider.cxx 
b/i18npool/source/defaultnumberingprovider/defaultnumberingprovider.cxx
index bb1303ad8844..64325b43ca6f 100644
--- a/i18npool/source/defaultnumberingprovider/defaultnumberingprovider.cxx
+++ b/i18npool/source/defaultnumberingprovider/defaultnumberingprovider.cxx
@@ -63,9 +63,9 @@
 #define S_FA_THREE "\xDB\xB3"
 
 // Indic Devanagari
-#define S_HI_ONE "\xDB\xB1"
-#define S_HI_TWO "\xDB\xB2"
-#define S_HI_THREE "\xDB\xB3"
+#define S_HI_ONE "\xE0\xA5\xA7"
+#define S_HI_TWO "\xE0\xA5\xA8"
+#define S_HI_THREE "\xE0\xA5\xA9"
 
 // Chicago footnote symbols
 #define S_DAGGER "\xE2\x80\xA0"


[Libreoffice-bugs] [Bug 149956] Activating RTL Content Does Not Trigger Icon Flipping in Formatting Toolbar

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149956

Rizal Muttaqin  changed:

   What|Removed |Added

   Severity|normal  |trivial

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

[Libreoffice-bugs] [Bug 129661] [META] Right-To-Left (RTL) user interface issues

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129661

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||149956


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=149956
[Bug 149956] Activating RTL Content Does Not Trigger Icon Flipping in
Formatting Toolbar
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 124956] [META] Icon theme language support

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124956

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||149956


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=149956
[Bug 149956] Activating RTL Content Does Not Trigger Icon Flipping in
Formatting Toolbar
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103239] [META] Toolbars bugs and enhancements

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103239

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||149956


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=149956
[Bug 149956] Activating RTL Content Does Not Trigger Icon Flipping in
Formatting Toolbar
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 149956] Activating RTL Content Does Not Trigger Icon Flipping in Formatting Toolbar

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149956

Rizal Muttaqin  changed:

   What|Removed |Added

 Blocks||103239, 124956, 129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103239
[Bug 103239] [META] Toolbars bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=124956
[Bug 124956] [META] Icon theme language support
https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 70102] RTL: Flipped toolbar button icons dont always look suitable

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70102

Rizal Muttaqin  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 149956] Activating RTL Content Does Not Trigger Icon Flipping in Formatting Toolbar

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149956

Rizal Muttaqin  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 149956] New: Activating RTL Content Does Not Trigger Icon Flipping in Formatting Toolbar

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149956

Bug ID: 149956
   Summary: Activating RTL Content Does Not Trigger Icon Flipping
in Formatting Toolbar
   Product: LibreOffice
   Version: 7.5.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: riz...@libreoffice.org

Created attachment 181232
  --> https://bugs.documentfoundation.org/attachment.cgi?id=181232=edit
Some buttons does not flipped normally

Icon/button flipping is something previously happens when user switch to RTL
document. But peculiarly, this behavior does not happen in Formatting toolbar
while works fine in Bullet and Numbering toolbar.

Step to reproduce
1. Enable RTL with Tools > Options > Language Settings > Complex text layout:
Arabic (Arab Saudi)
2. Create a new Writer document and switch to Right-to-Left (Ctrl+Shift+D)
3. See some icons in Formatting toolbar that used to flipped (e.g. Toggle
Unordered List, Toggle Ordered List, No List, Increase Indent, Decrease Indent

Affected in:
Version: 7.5.0.0.alpha0+ / LibreOffice Community
Build ID: c1c8ce3b0f1037bca4d500af2f39363cd9d38db6
CPU threads: 8; OS: Linux 5.13; UI render: default; VCL: kf5 (cairo+xcb)
Locale: id-ID (id_ID.UTF-8); UI: en-US
Calc: threaded

Not affected in: 

Version: 7.3.4.2 / LibreOffice Community
Build ID: 30(Build:2)
CPU threads: 8; OS: Linux 5.13; UI render: default; VCL: kf5 (cairo+xcb)
Locale: id-ID (id_ID.UTF-8); UI: id-ID
Ubuntu package version: 1:7.3.4~rc2-0ubuntu0.20.04.1~lo1
Calc: threaded

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

[Libreoffice-bugs] [Bug 149955] New: Libre Office 7.3 crash

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149955

Bug ID: 149955
   Summary: Libre Office 7.3 crash
   Product: LibreOffice
   Version: 7.3.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: weimaranerlove2...@yahoo.com

Description:
When i am in the middle of typing my document, the page freezes and crashes. I
have to restart my computer just to close the window. 

Actual Results:
I need an update of 7.4 

Expected Results:
if you give me an update it will fix this issue. On 7.2 Libre Office works
perfectly. 


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
n/a

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

[Libreoffice-bugs] [Bug 149954] New: FILEOPEN Embedded fonts in a pptx document are not loaded

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149954

Bug ID: 149954
   Summary: FILEOPEN Embedded fonts in a pptx document are not
loaded
   Product: LibreOffice
   Version: 7.3.4.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: leszek.game...@gmail.com

Description:
When opening a Power Point presentation with embedded fonts, the fonts are not
displayed correctly if not installed on the system. Embedded fonts should be
used regardless of what is present on the system.

Steps to Reproduce:
1. Create pptx document and embed fonts in it.
2. Open the file on Libre Office on a system without the fonts installed.


Actual Results:
Text is shown in a default - invalid - font.

Expected Results:
Text should be shown using the font embedded in the document.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.3.4.2
Build ID: 30(Build:2)
CPU threads: 4; OS: Linux 5.18; UI render: default; VCL: gtk3
Locale: en-GB (en_GB.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 149924] Draw doesn't render barcodes from PDF

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149924

--- Comment #5 from Dan Dascalescu  ---
Sorry I'm not technical enough to make sense of this, but on the same machine I
see the barcode in the PDF just fine with the Krusader viewer, so the font must
be installed.

I'd expect specialized PDF editing like Draw to be more able than Krusader to
display *and edit* PDFs.

But if for some reason barcodes can't be rendered due to a missing form,
shouldn't Draw inform the user about that?

What I needed Draw for was to sign that PDF, so I don't care if I don't see the
barcode, as long as it's saved correctly. But right now it looks "corrupted",
so I didn't want to risk corrupting the file, and had to resort to a non-open
source PDF signing solution, which now has a copy of my signature :-/

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

[Libreoffice-bugs] [Bug 149941] Display boolean TRUE or FALSE centered

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149941

m.a.riosv  changed:

   What|Removed |Added

   Severity|normal  |enhancement

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

[Libreoffice-bugs] [Bug 149859] Do not add template name to title at document properties

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149859

--- Comment #8 from LeroyG  ---
(In reply to Mike Kaganski from comment #7)
> So, the document title is (ab)used in template management to name the
> templates, display them, rename, etc. - so that means that it's not possible
> to avoid *setting* the title in the templates themselves (unless we do a
> major reimplementation of the commit mentioned in comment 5).

My UX:
- Created a template called "NAME". New files from this template has title
"NAME".
- Edited it, and deleted the title. New files from this template has no title.
- I managed templates, and renamed it to "NAME_vert". New files from this
template has title "NAME_vert".
But file name still is "NAME.ott".

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

[Libreoffice-bugs] [Bug 149946] FILEOPEN Unable to open CorelDraw X4 cdr files

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149946

--- Comment #3 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I could reproduce this.

Here are the logs:
Record: level 0 RIFF, length: 0x8514 (34068)
CDR listType: CDRE
Record: level 1 vrsn, length: 0x0002 (2)
Record: level 1 LIST, length: 0x0034 (52)
CDR listType: cmpr
Record: level 1 LIST, length: 0x84c2 (33986)
CDR listType: cmpr
Record: level 2 LIST, length: 0x3834 (14388)
CDR listType: doc 
Record: level 3 pfrd, length: 0x0002 (2)
Record: level 3 mcfg, length: 0x2005 (8197)
Record: level 3 ptrt, length: 0x0010 (16)
Record: level 3 LIST, length: 0x04c4 (1220)
CDR listType: fntt
Record: level 4 font, length: 0x0128 (296)
Record: level 4 font, length: 0x0128 (296)
Record: level 4 font, length: 0x0128 (296)
Record: level 4 font, length: 0x0128 (296)
Record: level 3 LIST, length: 0x0040 (64)
CDR listType: arrt
Record: level 4 arrw, length: 0x0034 (52)
CDRParser::readArrw
Record: level 3 LIST, length: 0x028e (654)
CDR listType: filt
Record: level 4 LIST, length: 0x0058 (88)
CDR listType: filc
Record: level 5 fild, length: 0x004c (76)
CDRParser::_resolveColorPalette --> model 0x3 -- palette 0x5 -- value
0xff00
CDRParser::_resolveColorPalette resolved --> model 0x3 -- palette 0x5 -- value
0xff00
Record: level 4 LIST, length: 0x0058 (88)
CDR listType: filc
Record: level 5 fild, length: 0x004c (76)
CDRParser::_resolveColorPalette --> model 0x2 -- palette 0x5 -- value
0x6400
CDRParser::_resolveColorPalette resolved --> model 0x2 -- palette 0x5 -- value
0x6400
Record: level 4 LIST, length: 0x00a4 (164)
CDR listType: filc
Record: level 5 fild, length: 0x0098 (152)
CDRParser::_resolveColorPalette --> model 0x5 -- palette 0x5 -- value 0x66cc
CDRParser::_resolveColorPalette resolved --> model 0x5 -- palette 0x5 -- value
0x66cc
CDRParser::_resolveColorPalette --> model 0x0 -- palette 0x500 -- value
0xcc00
CDRParser::_resolveColorPalette resolved --> model 0x0 -- palette 0x500 --
value 0xcc00
Throwing EndOfStreamException

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

[Libreoffice-bugs] [Bug 131192] Comprehensive support for "start" / "end" text alignment

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131192

--- Comment #5 from Eyal Rozenberg  ---
Justin Luth said, in
https://git.libreoffice.org/core/commit/cf02b94bc513ee1b742b4c5d7174632b568e8b72
that:

> IIRC, LO interally always refers to justify literally,
> while DOCX normally depends on the RtL context,
> treating LEFT as START and RIGHT as END.

Thought I should also mention that here.

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

[Libreoffice-bugs] [Bug 149924] Draw doesn't render barcodes from PDF

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149924

--- Comment #4 from LeroyG  ---
The sample file uses the EX_CFF_3OF9 font. If not installed, it is not
interpreted properly. For me is NOTABUG. It is a missing font issue.

I formated the three frames with an alternate 3of9 code font, and could see the
barcode (without the bottom numbers, that are not included in this font).

Version: 7.2.3.2 / LibreOffice Community
Build ID: 20(Build:2)
CPU threads: 1; OS: Linux 5.3; UI render: default; VCL: gtk3
Locale: es-MX (es_ES.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 99912] Writer creates a new hyperlink when proofing hyperlink text

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99912

--- Comment #16 from Mike Kaganski  ---
Also - this is not a regression, strictly speaking. In 3.6, a special character
property was introduced (rsid) helping comparing document versions. But the
real problem was already there long before, inherited from OOo, that any
different character formatting of parts of a link splits the link. So the rsids
applied now during edits behaves the same way as if you marked part of the link
with italics (see another duplicate bug 149949). Or - say, if you add a new
property like 3d character, and mark parts of links with that new property, it
would split the link the same way, with the same "regression" logic.

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

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

2022-07-11 Thread Julien Nabet (via logerrit)
 connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.cxx |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 44eac6530c9692eeaf51efdbd2f5f37180c9c214
Author: Julien Nabet 
AuthorDate: Mon Jul 11 21:09:24 2022 +0200
Commit: Julien Nabet 
CommitDate: Mon Jul 11 22:45:29 2022 +0200

tdf#149951: MySQL/MariaDB (direct connection) save images in BLOB-fields

There were several pbs:
1) no size value was given to resetSqlVar whereas all BLOB or related need 
an explicit size so was 0
=> provide size value with x.getLength()
2) Type provided was Sequence instead of a sal_Int8 so unitSize was 8 
instead of 1
=> provide "[0]" instead of ""
3) m_bindMetas[nIndex].length wasn't filled
=> initialize it with x.getLength()

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

diff --git a/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.cxx 
b/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.cxx
index 6ec6a89f175c..3c1c6d88ec4a 100644
--- a/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.cxx
+++ b/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.cxx
@@ -493,9 +493,10 @@ void SAL_CALL OPreparedStatement::setBytes(sal_Int32 
parameter, const Sequence

[Libreoffice-bugs] [Bug 99912] Writer creates a new hyperlink when proofing hyperlink text

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99912

--- Comment #15 from Mike Kaganski  ---
(In reply to Stanislav Horacek from comment #14)
> Just wondering - shouldn't be new duplicates closed in favor of the older
> issues?

Not always. 

> For instance, here we have information about regression and "not
> bibisectable" which is missing in the new one.

... And in the other one there is

> It was introduced in
>  https://git.libreoffice.org/core/+/062eaeffe7cb986255063bb9b0a5f3fb3fc8e34c
> in 2011 (for version 3.6); then it was made optional in version 5.0 [1].

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

[Libreoffice-bugs] [Bug 149940] Incorrect VLOOKUP result

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149940

LeroyG  changed:

   What|Removed |Added

Version|7.2.6.2 release |7.2.3.2 release
 OS|Windows (All)   |All

--- Comment #5 from LeroyG  ---
Whit me:
Version: 7.2.3.2 / LibreOffice Community
Build ID: 20(Build:2)
CPU threads: 1; OS: Linux 5.3; UI render: default; VCL: gtk3
Locale: es-MX (es_ES.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 149940] Incorrect VLOOKUP result

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149940

LeroyG  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #4 from LeroyG  ---
Please, dismiss my previous comment. Thanks.

Can you confirm that the file was saved with LibreOffice?
If that is not the case, you must change option for Recalculation on File Load
to Prompt user or Ever recalculate (menu Tools - Options - LibreOffice Calc -
Formula)
Saving and reloading the file is not sufficient.

A bit more test, and I find that Recalculate Hard (menu Data - Calculate) fix
all the results.
Pressing F9 fixes the result in the active cell, one at a time.

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

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

2022-07-11 Thread Justin Luth (via logerrit)
 sw/qa/extras/ooxmlexport/data/tdf114734_commentFormating.docx |binary
 sw/qa/extras/ooxmlexport/ooxmlexport17.cxx|   23 ++
 writerfilter/source/dmapper/DomainMapper.cxx  |6 +-
 3 files changed, 26 insertions(+), 3 deletions(-)

New commits:
commit cf02b94bc513ee1b742b4c5d7174632b568e8b72
Author: Justin Luth 
AuthorDate: Thu Jun 30 15:45:02 2022 -0400
Commit: Justin Luth 
CommitDate: Mon Jul 11 22:10:40 2022 +0200

tdf#114734 writerfilter: avoid PostIt exception

Comments (aka AnnotationMarks) cannot contain
a paragraph style. The exception was causing
all properties to be dropped.

This fixes the right-to-left text direction issue.

Additionally, I need to cancel code
when dealing with justify. There is no
underlying style to deal with,
and also MS Word seems to treat justify
literally when dealing with comments.

IIRC, LO interally always refers to justify literally,
while DOCX normally depends on the RtL context,
treating LEFT as START and RIGHT as END.

Hmm - I bet that complicates things for export,
since exporting comments needs to be handled uniquely.

Change-Id: I4f604f90aaad36ea56b8a9157a8a8458f39877c3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136690
Tested-by: Jenkins
Reviewed-by: Justin Luth 

diff --git a/sw/qa/extras/ooxmlexport/data/tdf114734_commentFormating.docx 
b/sw/qa/extras/ooxmlexport/data/tdf114734_commentFormating.docx
new file mode 100644
index ..5c8edb168991
Binary files /dev/null and 
b/sw/qa/extras/ooxmlexport/data/tdf114734_commentFormating.docx differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport17.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport17.cxx
index c264342fdb77..07441a5d9196 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport17.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport17.cxx
@@ -12,6 +12,8 @@
 #include 
 
 #include 
+#include 
+#include 
 #include 
 #include 
 #include 
@@ -170,6 +172,27 @@ DECLARE_OOXMLEXPORT_TEST(testTdf132475_printField, 
"tdf132475_printField.docx")
 CPPUNIT_ASSERT_EQUAL(OUString("DocInformation:Last printed"), 
xField->getPresentation(true));
 }
 
+DECLARE_OOXMLEXPORT_TEST(testTdf114734_commentFormating, 
"tdf114734_commentFormating.docx")
+{
+if (mbExported)
+return;
+// Get the PostIt/Comment/Annotation
+uno::Reference xTextFieldsSupplier(mxComponent, 
uno::UNO_QUERY);
+auto xFieldsAccess(xTextFieldsSupplier->getTextFields());
+uno::Reference 
xFields(xFieldsAccess->createEnumeration());
+uno::Reference xField(xFields->nextElement(), 
uno::UNO_QUERY);
+
+uno::Reference xText = 
getProperty>(xField, "TextRange");
+uno::Reference xParagraph = getParagraphOfText(1, xText);
+// Paragraph formatting was lost: should be right to left, and thus 
right-justified
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Right to Left comment",
+ text::WritingMode2::RL_TB,
+ getProperty(xParagraph, 
"WritingMode"));
+CPPUNIT_ASSERT_EQUAL_MESSAGE("literal right justified",
+ sal_Int16(style::ParagraphAdjust_RIGHT),
+ getProperty(xParagraph, 
"ParaAdjust"));
+}
+
 CPPUNIT_TEST_FIXTURE(Test, testTdf135906)
 {
 loadAndReload("tdf135906.docx");
diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index 224f8c2aa902..713412ccfa94 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -1369,7 +1369,7 @@ void DomainMapper::sprmWithProps( Sprm& rSprm, const 
PropertyMapPtr& rContext )
 {
 case NS_ooxml::LN_CT_PPrBase_jc:
 {
-bool bExchangeLeftRight = !IsRTFImport() && 
ExchangeLeftRight(rContext, *m_pImpl);
+bool bExchangeLeftRight = !IsRTFImport() && !m_pImpl->IsInComments() 
&& ExchangeLeftRight(rContext, *m_pImpl);
 handleParaJustification(nIntValue, rContext, bExchangeLeftRight);
 break;
 }
@@ -1667,7 +1667,7 @@ void DomainMapper::sprmWithProps( Sprm& rSprm, const 
PropertyMapPtr& rContext )
 m_pImpl->GetPropertyFromParaStyleSheet(PROP_WRITING_MODE) >>= 
nParentBidi;
 // Paragraph justification reverses its meaning in an RTL context.
 // 1. Only make adjustments if the BiDi changes.
-if ( nParentBidi != nWritingMode && !IsRTFImport() )
+if (nParentBidi != nWritingMode && !IsRTFImport() && 
!m_pImpl->IsInComments())
 {
 style::ParagraphAdjust eAdjust = style::ParagraphAdjust(-1);
 // 2. no adjust property exists yet
@@ -3318,7 +3318,7 @@ void DomainMapper::lcl_startParagraphGroup()
 
 if (m_pImpl->GetTopContext())
 {
-if (!m_pImpl->IsInShape())
+if (!m_pImpl->IsInShape() && !m_pImpl->IsInComments())
 {
 const OUString& 

[Libreoffice-bugs] [Bug 99912] Writer creates a new hyperlink when proofing hyperlink text

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99912

--- Comment #14 from Stanislav Horacek  ---
Just wondering - shouldn't be new duplicates closed in favor of the older
issues? For instance, here we have information about regression and "not
bibisectable" which is missing in the new one.

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

[Libreoffice-bugs] [Bug 149940] Incorrect VLOOKUP result

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149940

LeroyG  changed:

   What|Removed |Added

 Resolution|NOTABUG |---
 Ever confirmed|1   |0
 Status|RESOLVED|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 149940] Incorrect VLOOKUP result

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149940

LeroyG  changed:

   What|Removed |Added

 Resolution|FIXED   |NOTABUG

--- Comment #3 from LeroyG  ---
The fourth parameter of the VLOOKUP function must be set to 0 if there are
dates missing. Use =VLOOKUP($A1,$FX.$A$2:$FX.$D$1048576,4,0)

FX page are missing days 23 and 24.
22/04/2022
25/04/2022

And 30/04/2021 is duplicated.

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

[Libreoffice-bugs] [Bug 149940] Incorrect VLOOKUP result

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149940

LeroyG  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 149907] Condition on the Standard Filter can not be Updated once added

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149907

--- Comment #4 from LeroyG  ---
NO reproducible with:
Version: 7.2.3.2 / LibreOffice Community
Build ID: 20(Build:2)
CPU threads: 1; OS: Linux 5.3; UI render: default; VCL: gtk3
Locale: es-MX (es_ES.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 149877] Track changes color coding inconsistent; moved has sometimes the same color as deleted in macOS

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149877

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 149953] Default color coding for track changes different depending on platform (Win/Mac)

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149953

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 149953] New: Default color coding for track changes different depending on platform (Win/Mac)

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149953

Bug ID: 149953
   Summary: Default color coding for track changes different
depending on platform (Win/Mac)
   Product: LibreOffice
   Version: 7.5.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Default color coding for track changes different depending on platform
(Win/Mac)

Steps to Reproduce:
1. Open Writer
2. Tools -> Options -> Make sure user data being empty (close dialog)
3. Insert some dummy textTools -> AutoText -> Standard -> Dummy Text
4. Edit -> track Changes -> Toggle Record on (and show too)
5. Delete 'heard' in the first line, first sentence (green on Windows/Yellow on
macOS) by pressing backspace or delete
6. Select behind in the first line, first sentence (double click)(
7. CTRL+X
8. CTRL+V -> Green on Windows & macOS

Actual Results:
Deleted text is green on Windows; Yellow on macOS

Expected Results:
A) Coherence
B) Yellow (better contrast compared to green/dark green)


Reproducible: Always


User Profile Reset: No



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

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

[Libreoffice-bugs] [Bug 149952] New: 7.3.4.2 view jumps around when (linux) system zoom enabled

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149952

Bug ID: 149952
   Summary: 7.3.4.2 view jumps around when (linux) system zoom
enabled
   Product: LibreOffice
   Version: 7.3.4.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: heather.ellswo...@canonical.com

Created attachment 181231
  --> https://bugs.documentfoundation.org/attachment.cgi?id=181231=edit
video showing viewability issue

The viewing area jumps around when the system-wide zoom is in use on GNOME.
This exists with the release 7.3.4.2 deb provided by TDF, on a fresh Debian
testing VM, although it was first reported on Ubuntu 22.04 with
7.3.4-0ubuntu0.22.04.1.

To reproduce:
* have a GNOME desktop environment on Debian testing or Ubuntu 22.04
* Open the Accessibility panel of gnome-control-center
* Turn on Zoom with any scalability
* Open Libreoffice Writer/Impress/Calc (video only shows Writer although the
problem is at least in these three applications)
* start typing such that text goes off of the viewing area
* see the viewing area jump back to the top left corner, out of view of the
text being typed.

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

[Libreoffice-bugs] [Bug 149951] MySQL/MariaDB: direct Connection → Impossible to save images in BLOB-fields

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149951

Julien Nabet  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |serval2...@yahoo.fr
   |desktop.org |
 Status|NEW |ASSIGNED

--- Comment #2 from Julien Nabet  ---
I gave a try with https://gerrit.libreoffice.org/c/core/+/136964

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

[Libreoffice-bugs] [Bug 149951] MySQL/MariaDB: direct Connection → Impossible to save images in BLOB-fields

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149951

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I could reproduce this.

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

[Libreoffice-bugs] [Bug 149725] Form navigator return always on the top left corner on French interface

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149725

--- Comment #1 from Robert  ---
I am using the Mac OS versions and I have this problem on all versions used
since V7
you have to do the test when you design a base form

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

[Libreoffice-commits] core.git: Changes to 'refs/tags/cp-22.05.4-1'

2022-07-11 Thread Andras Timar (via logerrit)
Tag 'cp-22.05.4-1' created by Andras Timar  at 
2022-07-11 17:08 +

cp-22.05.4-1

Changes since cp-22.05.3-1-84:
---
 0 files changed
---


[Libreoffice-commits] translations.git: Changes to 'refs/tags/cp-22.05.4-1'

2022-07-11 Thread Christian Lohmaier (via logerrit)
Tag 'cp-22.05.4-1' created by Andras Timar  at 
2022-07-11 17:08 +

cp-22.05.4-1

Changes since cp-22.05.3-1:
Christian Lohmaier (1):
  update translations for 7.3.5 rc1

---
 source/ab/chart2/messages.po |
4 
 source/ab/cui/messages.po|   
76 
 source/ab/dbaccess/messages.po   |   
28 
 source/ab/extensions/messages.po |  
188 
 source/ab/fpicker/messages.po|   
20 
 source/ab/sc/messages.po |   
80 
 source/ab/sd/messages.po |   
74 
 source/ab/sw/messages.po |   
84 
 source/ab/vcl/messages.po|   
58 
 source/af/chart2/messages.po |
4 
 source/af/cui/messages.po|   
78 
 source/af/dbaccess/messages.po   |   
30 
 source/af/extensions/messages.po |  
188 
 source/af/fpicker/messages.po|   
20 
 source/af/readlicense_oo/docs.po |   
12 
 source/af/sc/messages.po |   
82 
 source/af/sd/messages.po |   
74 
 source/af/sw/messages.po |   
84 
 source/af/vcl/messages.po|   
58 
 source/am/chart2/messages.po |
6 
 source/am/cui/messages.po|   
86 
 source/am/dbaccess/messages.po   |   
30 
 source/am/dictionaries/ru_RU/dialog.po   |
8 
 source/am/editeng/messages.po|
8 
 source/am/extensions/messages.po |  
190 
 source/am/fpicker/messages.po|   
20 
 source/am/officecfg/registry/data/org/openoffice/Office/UI.po|   
22 
 source/am/sc/messages.po |   
82 
 source/am/sd/messages.po |   
76 
 source/am/svx/messages.po|   
34 
 source/am/sw/messages.po |   
94 
 source/am/vcl/messages.po|   
60 
 source/an/chart2/messages.po |
6 
 source/an/cui/messages.po|   
78 
 source/an/dbaccess/messages.po   |   
30 
 source/an/extensions/messages.po |  
190 
 source/an/fpicker/messages.po|   
22 
 source/an/sc/messages.po |   
82 
 source/an/sd/messages.po |   
76 
 source/an/sw/messages.po |   
91 
 source/an/vcl/messages.po|   
60 
 source/ar/basctl/messages.po |   
20 
 source/ar/chart2/messages.po |   
22 
 source/ar/cui/messages.po|  
236 
 source/ar/dbaccess/messages.po   |   
54 
 source/ar/extensions/messages.po |  
205 
 source/ar/extras/source/autocorr/emoji.po|  
123 
 source/ar/filter/messages.po |   
16 
 source/ar/filter/source/config/fragments/filters.po  |   
10 
 source/ar/filter/source/config/fragments/internalgraphicfilters.po   |
8 
 source/ar/fpicker/messages.po|   
26 
 source/ar/framework/messages.po  |
6 
 source/ar/librelogo/source/pythonpath.po |
8 
 source/ar/nlpsolver/src/locale.po|
6 
 source/ar/officecfg/registry/data/org/openoffice/Office.po   |   
20 
 source/ar/officecfg/registry/data/org/openoffice/Office/UI.po|  
144 
 source/ar/readlicense_oo/docs.po |
6 
 source/ar/reportbuilder/java/org/libreoffice/report/function/metadata.po |   
10 
 

[Libreoffice-commits] help.git: Changes to 'refs/tags/cp-22.05.4-1'

2022-07-11 Thread Andras Timar (via logerrit)
Tag 'cp-22.05.4-1' created by Andras Timar  at 
2022-07-11 17:08 +

cp-22.05.4-1

Changes since co-22.05-branch-point-8:
---
 0 files changed
---


[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/cp-22.05.4-1'

2022-07-11 Thread Eike Rathke (via logerrit)
Tag 'cp-22.05.4-1' created by Andras Timar  at 
2022-07-11 17:08 +

cp-22.05.4-1

Changes since co-22.05-branch-point:
Eike Rathke (1):
  There is no EO country, eo-EO is a bad language tag

---
 eo/dictionaries.xcu |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---


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

2022-07-11 Thread Andras Timar (via logerrit)
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit fe4468db8de113d2844a8733dd094506af778b51
Author: Andras Timar 
AuthorDate: Mon Jul 11 19:06:49 2022 +0200
Commit: Andras Timar 
CommitDate: Mon Jul 11 19:06:49 2022 +0200

Bump version to 22.05.4.1

Change-Id: I613ba29dfcdcf977677ede8c74e78272bcb79ab7

diff --git a/configure.ac b/configure.ac
index acfd70ed4859..f2284ec730ce 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([Collabora Office],[22.05.3.1],[],[],[https://collaboraoffice.com/])
+AC_INIT([Collabora Office],[22.05.4.1],[],[],[https://collaboraoffice.com/])
 
 dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just 
fine if it is installed
 dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails 
hard


[Libreoffice-commits] core.git: Branch 'distro/collabora/co-22.05' - 11 commits - drawinglayer/source icon-themes/breeze icon-themes/breeze_dark icon-themes/breeze_dark_svg icon-themes/breeze_svg sfx2

2022-07-11 Thread Michael Stahl (via logerrit)
 drawinglayer/source/processor2d/vclpixelprocessor2d.cxx |   10 ++
 icon-themes/breeze/res/lx03249.png  |binary
 icon-themes/breeze/res/lx03249_32.png   |binary
 icon-themes/breeze/res/lx03253.png  |binary
 icon-themes/breeze/res/odp_16_8.png |binary
 icon-themes/breeze/res/odp_32_8.png |binary
 icon-themes/breeze/res/odp_48_8.png |binary
 icon-themes/breeze/res/odp_96_8.png |binary
 icon-themes/breeze/res/otp_16_8.png |binary
 icon-themes/breeze/res/otp_32_8.png |binary
 icon-themes/breeze/res/otp_48_8.png |binary
 icon-themes/breeze/res/otp_96_8.png |binary
 icon-themes/breeze/res/sx03249.png  |binary
 icon-themes/breeze_dark/res/lx03249.png |binary
 icon-themes/breeze_dark/res/lx03249_32.png  |binary
 icon-themes/breeze_dark/res/lx03253.png |binary
 icon-themes/breeze_dark/res/odp_16_8.png|binary
 icon-themes/breeze_dark/res/odp_32_8.png|binary
 icon-themes/breeze_dark/res/odp_48_8.png|binary
 icon-themes/breeze_dark/res/odp_96_8.png|binary
 icon-themes/breeze_dark/res/otp_16_8.png|binary
 icon-themes/breeze_dark/res/otp_32_8.png|binary
 icon-themes/breeze_dark/res/otp_48_8.png|binary
 icon-themes/breeze_dark/res/otp_96_8.png|binary
 icon-themes/breeze_dark/res/sx03249.png |binary
 icon-themes/breeze_dark_svg/res/lx03249.svg |2 
 icon-themes/breeze_dark_svg/res/lx03249_32.svg  |2 
 icon-themes/breeze_dark_svg/res/lx03253.svg |2 
 icon-themes/breeze_dark_svg/res/odp_16_8.svg|2 
 icon-themes/breeze_dark_svg/res/odp_32_8.svg|2 
 icon-themes/breeze_dark_svg/res/odp_48_8.svg|2 
 icon-themes/breeze_dark_svg/res/odp_96_8.svg|2 
 icon-themes/breeze_dark_svg/res/otp_16_8.svg|2 
 icon-themes/breeze_dark_svg/res/otp_32_8.svg|2 
 icon-themes/breeze_dark_svg/res/otp_48_8.svg|2 
 icon-themes/breeze_dark_svg/res/otp_96_8.svg|2 
 icon-themes/breeze_dark_svg/res/sx03249.svg |2 
 icon-themes/breeze_svg/res/lx03249.svg  |2 
 icon-themes/breeze_svg/res/lx03249_32.svg   |2 
 icon-themes/breeze_svg/res/lx03253.svg  |2 
 icon-themes/breeze_svg/res/odp_16_8.svg |2 
 icon-themes/breeze_svg/res/odp_32_8.svg |2 
 icon-themes/breeze_svg/res/odp_48_8.svg |2 
 icon-themes/breeze_svg/res/odp_96_8.svg |2 
 icon-themes/breeze_svg/res/otp_16_8.svg |2 
 icon-themes/breeze_svg/res/otp_32_8.svg |2 
 icon-themes/breeze_svg/res/otp_48_8.svg |2 
 icon-themes/breeze_svg/res/otp_96_8.svg |2 
 icon-themes/breeze_svg/res/sx03249.svg  |2 
 sfx2/source/appl/appserv.cxx|6 +
 sfx2/source/view/viewfrm.cxx|   11 +-
 svgio/inc/svgtools.hxx  |6 -
 svgio/qa/cppunit/SvgImportTest.cxx  |   41 ++
 svgio/qa/cppunit/data/tdf149880.svg |   11 ++
 svgio/qa/cppunit/data/tdf149893.svg |3 
 svgio/source/svgreader/svgstyleattributes.cxx   |8 +-
 svgio/source/svgreader/svgtools.cxx |   43 +++
 svx/source/svdraw/svdedxv.cxx   |2 
 sw/source/core/layout/wsfrm.cxx |5 -
 sw/source/core/unocore/unotext.cxx  |   60 
 vcl/qt5/QtMenu.cxx  |   10 +-
 61 files changed, 203 insertions(+), 61 deletions(-)

New commits:
commit d952a53e65e1ec7a7be3b99fd8895b8e199569c2
Author: Michael Stahl 
AuthorDate: Fri Jul 8 17:32:49 2022 +0200
Commit: Andras Timar 
CommitDate: Mon Jul 11 19:04:35 2022 +0200

tdf#149649 sw_fieldmarkhide: delete any fieldmarks overlapping cells

The DOCX bugdoc has a field that starts in the first cell of a table, but
ends outside the table.

[  28]  0x3690e10   TableNode ,
[  29]   0x78d6f80  StartNode ,
[  30]0x6cfb408  TextNode "\a FORMTEXT \003Data File",
[  31]   0x6bf9620EndNode ,

[ 631]  0x779c768TextNode "",
[ 632]  0x69bd5f8TextNode "\b",
[ 633] 0x656f150  EndNode },

This triggers an assert in layout:
soffice.bin: sw/source/core/layout/frmtool.cxx:1971: void 
InsertCnt_(SwLayoutFrame*, SwDoc*, SwNodeOffset, bool, SwNodeOffset, SwFrame*, 

[Libreoffice-bugs] [Bug 107659] [META] Macro bugs and enhancements

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107659

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

   What|Removed |Added

 Depends on||149714


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=149714
[Bug 149714] BitsPerPixel property of Graphic has Boolean UNO type
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 149714] BitsPerPixel property of Graphic has Boolean UNO type

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149714

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

   What|Removed |Added

 Blocks||107659
 CC||79045_79...@mail.ru


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 148198] Editing single hyperlink breaks it into smaller ones

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148198

--- Comment #11 from Mike Kaganski  ---
FTR:

Opening attachment 181227 from bug 149949 in Writer gives a single hyperlink.
Saving to ODT splits the hyperlink again; but saving to DOCX instead will keep
a single hyperlink.

It seems that the relevant DOCX changes were commits
46b6bad7db21f3743a26b328f23e5d66f8211bb8,
482cdf173eca106848672acfe4923faf4584b1a7, and
f176c9ba7be7f3051a52b9f57b56124038c0cfd6.

The related ODF export code is XMLTextParagraphExport::exportTextRange in
xmloff/source/text/txtparae.cxx.

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

[Libreoffice-bugs] [Bug 149864] There is a wrong translation of numbering style when using "First, Second, Third, ..." in Czech language

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149864

--- Comment #5 from Tomáš Drvota  ---
@raal Paráda. Já to pochopil tak, že mám přijít s opravou sám, tak se tu trochu
trápím se SOROS a už se mi podařilo opravit téměř vše kromě čísla jedenáct a
čísel 41-49. Ale raději to nechám na odbornících. 

Když jsme u toho... zatím žádný z běžně dostupných textových procesorů nenabízí
možnost výběru textového číslování v ženském rodě (první, druhá, třetí,
čtvrtá). Toto by bylo velmi potřeba pro číslování částí v rozsáhlých
dokumentech (část druhá, část čtvrtá, ...). Jak jsem z rozhraní SOROS pochopil,
tak třeba ruská mutace má vyplněno == ordinal-feminine == textové převody. Šlo
by toto zařadit i do české verze Writeru? 

Děkuji za názor.

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

[Libreoffice-bugs] [Bug 138504] Images cannot be marked as decorative elements

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138504

Regina Henschel  changed:

   What|Removed |Added

URL||https://issues.oasis-open.o
   ||rg/browse/OFFICE-4132
 CC||rb.hensc...@t-online.de

--- Comment #5 from Regina Henschel  ---
The ODF TC has generated an issue to extend the standard so that such
information can be stored in the file. The next step would be, that someone
implements it and cooperates with the ODF TC about in which way the information
should be standardized.

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

[Libreoffice-bugs] [Bug 117252] Inconsistent behaviour of HTML to PNG conversion between filters and versions

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117252

--- Comment #9 from Jack O'Sullivan  ---
Thanks for the update, this isn't critical for me (as you can probably tell
from the infrequent updates) but it would be nice to have a fix, hence me
keeping it open. Checking a daily build sounds a bit more involved than I
generally have time for, but happy to check back in after the SoC stuff makes
it into a release build.

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

[Libreoffice-bugs] [Bug 98270] Add 'Search in all sheets' option to Find toolbar

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98270

--- Comment #17 from ralf.kr...@bluewin.ch ---
As an answer from here:
https://bugs.documentfoundation.org/show_bug.cgi?id=149912#c3

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

[Libreoffice-ux-advise] [Bug 98270] Add 'Search in all sheets' option to Find toolbar

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98270

--- Comment #17 from ralf.kr...@bluewin.ch ---
As an answer from here:
https://bugs.documentfoundation.org/show_bug.cgi?id=149912#c3

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

[Libreoffice-bugs] [Bug 98270] Add 'Search in all sheets' option to Find toolbar

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98270

--- Comment #16 from ralf.kr...@bluewin.ch ---
>>Heiko wrote: I assume Find Next jumps to the first occurrence at the next
sheet.

Yes, that's exactly how it should work!

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

[Libreoffice-ux-advise] [Bug 98270] Add 'Search in all sheets' option to Find toolbar

2022-07-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98270

--- Comment #16 from ralf.kr...@bluewin.ch ---
>>Heiko wrote: I assume Find Next jumps to the first occurrence at the next
sheet.

Yes, that's exactly how it should work!

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

  1   2   3   >