[Libreoffice-ux-advise] [Bug 153666] MASTER DOCUMENT: In navigator 'Insert -> File' should be 'Insert -> Text File' to be more precise

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

--- Comment #5 from Heiko Tietze  ---
apparently it's true and master documents are limited to just text documents.
However, renaming "File" to "Text Document" sounds wrong with the "New
Document" below. And "Text File" means rather ASCII.

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

[Libreoffice-bugs] [Bug 153666] MASTER DOCUMENT: In navigator 'Insert -> File' should be 'Insert -> Text File' to be more precise

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

--- Comment #5 from Heiko Tietze  ---
apparently it's true and master documents are limited to just text documents.
However, renaming "File" to "Text Document" sounds wrong with the "New
Document" below. And "Text File" means rather ASCII.

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

[Libreoffice-bugs] [Bug 154057] Cell focus when creating a URL link button may be inconsistent

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

--- Comment #1 from Colin  ---
Created attachment 185831
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185831=edit
Simple Sample CALC

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

[Libreoffice-bugs] [Bug 154056] Language pack are described as "possibly unsafe" and "proprietary code" in Software in Fedora Linux

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

--- Comment #1 from Mike Kaganski  ---
It seems like an issue in the Fedora package. Have you filed the respective
issue at their bug tracker?

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

[Libreoffice-bugs] [Bug 154057] New: Cell focus when creating a URL link button may be inconsistent

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

Bug ID: 154057
   Summary: Cell focus when creating a URL link button may be
inconsistent
   Product: LibreOffice
   Version: 7.4.5.1 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: that.man.co...@gmail.com

Description:
Not sure if it's a bug but it does appear to be an inconsistency having the
potential to exacerbate other issues.
Attached is a demo CALC with a functioning URL button and embedded composite
image of the various cell foci during the creation of the link button and
subsequent focus on the underlying cell.
It seems odd to me that when creating the button it does not become the centre
of attention and thereby draw all focal indication to itself.
Noticeably, the focus becomes partially concealed by the finished button.
I've only noticed it since the focal border became huge.

Steps to Reproduce:
It may be more than trivial if there is impact on other operations requiring
specific focal precedence.
It has been noticed that the drop shadow on the button and the residual focus
on the underlying cell MAY complement each other when the cell is focused by
selecting an adjacent cell and then moving into the target by using the arrow
keys
Sample Calc attached

Actual Results:
See attached

Expected Results:
Open to discussion


Reproducible: Always


User Profile Reset: No

Additional Info:
Version: 7.4.5.1 (x64) / LibreOffice Community
Build ID: 9c0871452b3918c1019dde9bfac75448afc4b57f
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: sv-SE (en_GB); UI: en-GB
Calc: threaded

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

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

2023-03-07 Thread Noel Grandin (via logerrit)
 canvas/source/simplecanvas/simplecanvasimpl.cxx  |   51 ++-
 connectivity/source/commontools/paramwrapper.cxx |   19 +++-
 include/connectivity/paramwrapper.hxx|7 +--
 3 files changed, 34 insertions(+), 43 deletions(-)

New commits:
commit 5caa11ea3b3ddf98db729ad79f0ce97d13c1414e
Author: Noel Grandin 
AuthorDate: Tue Mar 7 15:53:58 2023 +0200
Commit: Noel Grandin 
CommitDate: Wed Mar 8 07:51:44 2023 +

osl::Mutex->std::mutex in ParameterWrapperContainer

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

diff --git a/connectivity/source/commontools/paramwrapper.cxx 
b/connectivity/source/commontools/paramwrapper.cxx
index 36265d2324f0..9ab5293c2057 100644
--- a/connectivity/source/commontools/paramwrapper.cxx
+++ b/connectivity/source/commontools/paramwrapper.cxx
@@ -258,13 +258,11 @@ namespace dbtools::param
 }
 
 ParameterWrapperContainer::ParameterWrapperContainer()
-:ParameterWrapperContainer_Base( m_aMutex )
 {
 }
 
 
 ParameterWrapperContainer::ParameterWrapperContainer( const Reference< 
XSingleSelectQueryAnalyzer >& _rxComposer )
-:ParameterWrapperContainer_Base( m_aMutex )
 {
 Reference< XParametersSupplier > xSuppParams( _rxComposer, 
UNO_QUERY_THROW );
 Reference< XIndexAccess > xParameters( xSuppParams->getParameters(), 
css::uno::UNO_SET_THROW );
@@ -284,7 +282,7 @@ namespace dbtools::param
 
 Type SAL_CALL ParameterWrapperContainer::getElementType()
 {
-::osl::MutexGuard aGuard( m_aMutex );
+std::unique_lock aGuard( m_aMutex );
 impl_checkDisposed_throw();
 return cppu::UnoType::get();
 }
@@ -292,7 +290,7 @@ namespace dbtools::param
 
 sal_Bool SAL_CALL ParameterWrapperContainer::hasElements()
 {
-::osl::MutexGuard aGuard( m_aMutex );
+std::unique_lock aGuard( m_aMutex );
 impl_checkDisposed_throw();
 return !m_aParameters.empty();
 }
@@ -300,7 +298,7 @@ namespace dbtools::param
 
 sal_Int32 SAL_CALL ParameterWrapperContainer::getCount()
 {
-::osl::MutexGuard aGuard( m_aMutex );
+std::unique_lock aGuard( m_aMutex );
 impl_checkDisposed_throw();
 return m_aParameters.size();
 }
@@ -308,7 +306,7 @@ namespace dbtools::param
 
 Any SAL_CALL ParameterWrapperContainer::getByIndex( sal_Int32 _nIndex )
 {
-::osl::MutexGuard aGuard( m_aMutex );
+std::unique_lock aGuard( m_aMutex );
 impl_checkDisposed_throw();
 
 if ( ( _nIndex < 0 ) || ( o3tl::make_unsigned(_nIndex) >= 
m_aParameters.size() ) )
@@ -320,7 +318,7 @@ namespace dbtools::param
 
 Reference< XEnumeration > ParameterWrapperContainer::createEnumeration()
 {
-::osl::MutexGuard aGuard( m_aMutex );
+std::unique_lock aGuard( m_aMutex );
 impl_checkDisposed_throw();
 
 return new ::comphelper::OEnumerationByIndex( static_cast< 
XIndexAccess* >( this ) );
@@ -329,16 +327,13 @@ namespace dbtools::param
 
 void ParameterWrapperContainer::impl_checkDisposed_throw()
 {
-if ( rBHelper.bDisposed )
+if ( m_bDisposed )
 throw DisposedException( OUString(), *this );
 }
 
 
-void SAL_CALL ParameterWrapperContainer::disposing()
+void ParameterWrapperContainer::disposing(std::unique_lock& 
/*rGuard*/)
 {
-::osl::MutexGuard aGuard( m_aMutex );
-impl_checkDisposed_throw();
-
 for (const auto& rxParam : m_aParameters)
 {
 rxParam->dispose();
diff --git a/include/connectivity/paramwrapper.hxx 
b/include/connectivity/paramwrapper.hxx
index b862a619af85..5ad0fa1c1972 100644
--- a/include/connectivity/paramwrapper.hxx
+++ b/include/connectivity/paramwrapper.hxx
@@ -31,7 +31,7 @@
 #include 
 #include 
 #include 
-#include 
+#include 
 
 #include 
 #include 
@@ -123,7 +123,7 @@ namespace dbtools::param
 
 //= ParameterWrapperContainer
 
-typedef ::cppu::WeakComponentImplHelper<   css::container::XIndexAccess
+typedef ::comphelper::WeakComponentImplHelper<   
css::container::XIndexAccess
,   
css::container::XEnumerationAccess
>   
ParameterWrapperContainer_Base;
 
@@ -132,7 +132,6 @@ namespace dbtools::param
 public ParameterWrapperContainer_Base
 {
 private:
-::osl::Mutexm_aMutex;
 Parameters  m_aParameters;
 
 virtual ~ParameterWrapperContainer() override;
@@ -177,7 +176,7 @@ namespace dbtools::param
 
 private:
 // XComponent
-virtual void SAL_CALL disposing() override;
+virtual void disposing(std::unique_lock& rGuard) override;
 
 voidimpl_checkDisposed_throw();
 };
commit 6a0b41e0556de8eba093e0823f0845652c033960

[Libreoffice-bugs] [Bug 154051] Border transparency

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

--- Comment #2 from Eyal Rozenberg  ---
(In reply to Regina Henschel from comment #1)
> Why?

1. When you want the entire table to be partially transparent

2. When the borders are thick, their total area can reach the area of one or
more cells, so it's not always "just a pixel here and there".

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

[Libreoffice-ux-advise] [Bug 153971] Cannot direct-format paragraph, character when selecting (one or more) text boxes

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

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsUXEval |
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org

--- Comment #4 from Heiko Tietze  ---
We can not only change the font attributes in Draw/Impress but also the area
attributes of multiple selected objects in Writer. So users can expect text
formatting too.

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

[Libreoffice-bugs] [Bug 153971] Cannot direct-format paragraph, character when selecting (one or more) text boxes

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

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsUXEval |
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org

--- Comment #4 from Heiko Tietze  ---
We can not only change the font attributes in Draw/Impress but also the area
attributes of multiple selected objects in Writer. So users can expect text
formatting too.

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

[Libreoffice-bugs] [Bug 154054] Libreoffice Calc - Graph save error

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

Mike Kaganski  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 153981] Exporting diagrams as picture misses most of the content

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

Mike Kaganski  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 154056] New: Language pack are described as "possibly unsafe" and "proprietary code" in Software in Fedora Linux

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

Bug ID: 154056
   Summary: Language pack are described as "possibly unsafe" and
"proprietary code" in Software in Fedora Linux
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jakobkpeter...@gmail.com

Description:
In localized versions of Fedora Linux language packs for Libreoffice are tagged
as "proprietary code" and described as possibly unsafe.

Steps to Reproduce:
1. Install Libreoffice via Software on Fedora set to a language other than
English
2. Click when a prompt is shown: "Libreoffice requires more packages"
3. Read descriptions of the language pack in Software

Actual Results:
"libreoffice-langpack-da might be unsafe"

"Proprietary code. The code is not publicly accessible. Therefore it can not be
audited and might not be safe" 

The above strings are shown in a localized version.
Licenses for the language pack are show correctly though.

Expected Results:
The language pack is described as open source and safe to run.


Reproducible: Always


User Profile Reset: No

Additional Info:
Version: 7.4.5.1
Build ID: 40(Build:1)
CPU threads: 4; OS: Linux 6.1; UI render: default; VCL: gtk3
Locale: da-DK (da_DK.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 154049] *.-operator-endowed autocorr entries do not check for other *.-endowed entries around them.

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

Julien Nabet  changed:

   What|Removed |Added

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

--- Comment #1 from Julien Nabet  ---
On which LO version and on which env are you (macOS, Linux, Windows) ?
Last stable one is 7.4.5. If you don't use it, please give it a try.

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

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

2023-03-07 Thread Miklos Vajna (via logerrit)
 sw/qa/extras/htmlexport/htmlexport.cxx |   10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

New commits:
commit d4c991b7ae534d207c583590cce93fd86d1b25e9
Author: Miklos Vajna 
AuthorDate: Tue Mar 7 20:11:46 2023 +0100
Commit: Miklos Vajna 
CommitDate: Wed Mar 8 07:01:47 2023 +

CppunitTest_sw_htmlexport: avoid XHTML magic in testXHTML

Set the filter option explicitly, rather than inferring it from the test
name. Also remove the now unused EmbedImages handling in preTest().

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

diff --git a/sw/qa/extras/htmlexport/htmlexport.cxx 
b/sw/qa/extras/htmlexport/htmlexport.cxx
index c99f6d4b23a8..9936a101c2ce 100644
--- a/sw/qa/extras/htmlexport/htmlexport.cxx
+++ b/sw/qa/extras/htmlexport/htmlexport.cxx
@@ -214,9 +214,7 @@ private:
 
 virtual std::unique_ptr preTest(const char* filename) override
 {
-if (getTestName().indexOf("EmbedImages") != -1)
-setFilterOptions("EmbedImages");
-else if (getTestName().indexOf("XHTML") != -1)
+if (getTestName().indexOf("XHTML") != -1)
 setFilterOptions("XHTML");
 else if (getTestName().indexOf("ReqIf") != -1)
 {
@@ -637,8 +635,12 @@ CPPUNIT_TEST_FIXTURE(HtmlExportTest, 
testEmbedImagesEnabled)
 CPPUNIT_ASSERT(imgSrc.startsWith("data:image/png;base64,"));
 }
 
-DECLARE_HTMLEXPORT_TEST(testXHTML, "hello.html")
+CPPUNIT_TEST_FIXTURE(HtmlExportTest, testXHTML)
 {
+createSwWebDoc("hello.html");
+setFilterOptions("XHTML");
+save(OUString::createFromAscii(mpFilter));
+
 OString aExpected("

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

2023-03-07 Thread Heiko Tietze (via logerrit)
 sc/uiconfig/scalc/statusbar/statusbar.xml |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 8dc8443c3b13e8782fdbaf61594056df8126
Author: Heiko Tietze 
AuthorDate: Tue Mar 7 15:39:32 2023 +0100
Commit: Heiko Tietze 
CommitDate: Wed Mar 8 06:46:06 2023 +

Relates tdf#153344 - Resize statusbar icons to 16px

Adjustment of StatusSelectionMode size
Also move the ModifiedStatus on top to comply with Writer

Change-Id: I0d79161651ea841ab4aa496dd5b2edc3fca43ff1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148427
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 

diff --git a/sc/uiconfig/scalc/statusbar/statusbar.xml 
b/sc/uiconfig/scalc/statusbar/statusbar.xml
index 6fe161d9379b..fe4994249b62 100644
--- a/sc/uiconfig/scalc/statusbar/statusbar.xml
+++ b/sc/uiconfig/scalc/statusbar/statusbar.xml
@@ -18,13 +18,13 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 -->
 http://openoffice.org/2001/statusbar; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
+ 
  
  
  
  
  
- 
- 
+ 
  
  
  


[Libreoffice-bugs] [Bug 154014] Confusing sentence: "Rename dialog to keep current dialog or replace existing dialog."

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

--- Comment #2 from nutka  ---
Created attachment 185830
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185830=edit
relevant screenshots (UI, Help)

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

[Libreoffice-bugs] [Bug 154014] Confusing sentence: "Rename dialog to keep current dialog or replace existing dialog."

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

--- Comment #1 from nutka  ---
Not being a native English speaker, all I can say is that the wording could be
misinterpreted.

Unfortunately the corresponding Help page is not available via
the F1 key - "Could not find Help page (404)". The user should be directed
to the "Import Dialog" topic [1] which states i.a.:

  If the imported dialog has a name that already exists in the library,
  you see a message box where you can decide to rename the imported dialog.
  In this case the dialog will be renamed to the next free "automatic" name
  like when creating a new dialog. Or you can replace the existing dialog
  by the imported dialog. If you click Cancel the dialog is not imported.

Perhaps the wording 

"Rename imported dialog or replace existing dialog with it"

would help to understand the choice?



The "Version (earliest affected)" field  reads:

   7.6.0.0 alpha0+
   Master

The string in question is present already in version 3.3.0





[1]
LibreOffice 7.5 Help, Basic, topic "Import Dialog"
https://help.libreoffice.org/latest/en-US/text/sbasic/shared/02/1118.html?=BASIC

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

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

2023-03-07 Thread Noel Grandin (via logerrit)
 desktop/source/deployment/manager/dp_extensionmanager.cxx |2 +-
 desktop/source/deployment/manager/dp_extensionmanager.hxx |4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit f7d6f437ad81cc51d78cffb413dd90a7a8dd960d
Author: Noel Grandin 
AuthorDate: Tue Mar 7 13:43:42 2023 +0200
Commit: Noel Grandin 
CommitDate: Wed Mar 8 06:43:54 2023 +

osl::Mutex->std::mutex in ExtensionManager

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

diff --git a/desktop/source/deployment/manager/dp_extensionmanager.cxx 
b/desktop/source/deployment/manager/dp_extensionmanager.cxx
index 44bd4648eff0..b51f4c77b47b 100644
--- a/desktop/source/deployment/manager/dp_extensionmanager.cxx
+++ b/desktop/source/deployment/manager/dp_extensionmanager.cxx
@@ -627,7 +627,7 @@ Reference 
ExtensionManager::addExtension(
 static_cast(this), 0);
 //We must make sure that the xTmpExtension is not create twice, because 
this
 //would remove the first one.
-::osl::MutexGuard addGuard(m_addMutex);
+std::unique_lock addGuard(m_addMutex);
 
 Reference 
xTmpRepository(getTmpRepository());
 // make sure xTmpRepository is alive as long as xTmpExtension is; as
diff --git a/desktop/source/deployment/manager/dp_extensionmanager.hxx 
b/desktop/source/deployment/manager/dp_extensionmanager.hxx
index 0e08314c36f6..a70f4fbd2e26 100644
--- a/desktop/source/deployment/manager/dp_extensionmanager.hxx
+++ b/desktop/source/deployment/manager/dp_extensionmanager.hxx
@@ -28,7 +28,7 @@
 #include 
 #include 
 #include 
-#include 
+#include 
 #include 
 #include 
 
@@ -146,7 +146,7 @@ private:
 css::uno::Reference 
m_xPackageManagerFactory;
 
 //only to be used within addExtension
-::osl::Mutex m_addMutex;
+std::mutex m_addMutex;
 /* contains the names of all repositories (except tmp) in order of there
priority. That is, the first element is "user" followed by "shared" and
then "bundled"


[Libreoffice-commits] core.git: 3 commits - dbaccess/source desktop/source extensions/source

2023-03-07 Thread Noel Grandin (via logerrit)
 dbaccess/source/ui/control/sqledit.cxx   |6 ++---
 dbaccess/source/ui/inc/sqledit.hxx   |3 +-
 desktop/source/deployment/gui/dp_gui_dialog2.cxx |   18 
 desktop/source/deployment/gui/dp_gui_dialog2.hxx |4 +--
 extensions/source/bibliography/datman.cxx|   25 +--
 extensions/source/bibliography/datman.hxx|   13 ---
 extensions/source/bibliography/general.cxx   |1 
 7 files changed, 37 insertions(+), 33 deletions(-)

New commits:
commit 838036c304d474fc4c19e2fc59cadc6ba457c9ee
Author: Noel Grandin 
AuthorDate: Tue Mar 7 13:46:29 2023 +0200
Commit: Noel Grandin 
CommitDate: Wed Mar 8 06:43:46 2023 +

osl::Mutex->std::mutex in UpdateRequiredDialog

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

diff --git a/desktop/source/deployment/gui/dp_gui_dialog2.cxx 
b/desktop/source/deployment/gui/dp_gui_dialog2.cxx
index 14fe03882ede..528d92fd5328 100644
--- a/desktop/source/deployment/gui/dp_gui_dialog2.cxx
+++ b/desktop/source/deployment/gui/dp_gui_dialog2.cxx
@@ -1080,7 +1080,7 @@ IMPL_LINK_NOARG(UpdateRequiredDialog, HandleCancelBtn, 
weld::Button&, void)
 
 IMPL_LINK( UpdateRequiredDialog, startProgress, void*, _bLockInterface, void )
 {
-::osl::MutexGuard aGuard( m_aMutex );
+std::unique_lock aGuard( m_aMutex );
 bool bLockInterface = static_cast(_bLockInterface);
 
 if ( m_bStartProgress && !m_bHasProgress )
@@ -1106,7 +1106,7 @@ IMPL_LINK( UpdateRequiredDialog, startProgress, void*, 
_bLockInterface, void )
 
 void UpdateRequiredDialog::showProgress( bool _bStart )
 {
-::osl::MutexGuard aGuard( m_aMutex );
+std::unique_lock aGuard( m_aMutex );
 
 bool bStart = _bStart;
 
@@ -1132,7 +1132,7 @@ void UpdateRequiredDialog::updateProgress( const 
tools::Long nProgress )
 {
 if ( m_nProgress != nProgress )
 {
-::osl::MutexGuard aGuard( m_aMutex );
+std::unique_lock aGuard( m_aMutex );
 m_nProgress = nProgress;
 m_aIdle.Start();
 }
@@ -1142,7 +1142,7 @@ void UpdateRequiredDialog::updateProgress( const 
tools::Long nProgress )
 void UpdateRequiredDialog::updateProgress( const OUString ,
const uno::Reference< 
task::XAbortChannel > )
 {
-::osl::MutexGuard aGuard( m_aMutex );
+std::unique_lock aGuard( m_aMutex );
 
 m_xAbortChannel = xAbortChannel;
 m_sProgressText = rText;
@@ -1172,7 +1172,7 @@ void UpdateRequiredDialog::updatePackageInfo( const 
uno::Reference< deployment::
 
 IMPL_LINK_NOARG(UpdateRequiredDialog, HandleUpdateBtn, weld::Button&, void)
 {
-::osl::ClearableMutexGuard aGuard( m_aMutex );
+std::unique_lock aGuard( m_aMutex );
 
 std::vector< uno::Reference< deployment::XPackage > > vUpdateEntries;
 sal_Int32 nCount = m_xExtensionBox->GetEntryCount();
@@ -1183,7 +1183,7 @@ IMPL_LINK_NOARG(UpdateRequiredDialog, HandleUpdateBtn, 
weld::Button&, void)
 vUpdateEntries.push_back( pEntry->m_xPackage );
 }
 
-aGuard.clear();
+aGuard.unlock();
 
 m_pManager->getCmdQueue()->checkForUpdates( std::move(vUpdateEntries) );
 }
@@ -1191,7 +1191,7 @@ IMPL_LINK_NOARG(UpdateRequiredDialog, HandleUpdateBtn, 
weld::Button&, void)
 
 IMPL_LINK_NOARG(UpdateRequiredDialog, HandleCloseBtn, weld::Button&, void)
 {
-::osl::MutexGuard aGuard( m_aMutex );
+std::unique_lock aGuard( m_aMutex );
 
 if ( !isBusy() )
 {
@@ -1302,7 +1302,7 @@ bool UpdateRequiredDialog::checkDependencies( const 
uno::Reference< deployment::
 
 bool UpdateRequiredDialog::hasActiveEntries()
 {
-::osl::MutexGuard aGuard( m_aMutex );
+std::unique_lock aGuard( m_aMutex );
 
 bool bRet = false;
 tools::Long nCount = m_xExtensionBox->GetEntryCount();
@@ -1323,7 +1323,7 @@ bool UpdateRequiredDialog::hasActiveEntries()
 
 void UpdateRequiredDialog::disableAllEntries()
 {
-::osl::MutexGuard aGuard( m_aMutex );
+std::unique_lock aGuard( m_aMutex );
 
 incBusy();
 
diff --git a/desktop/source/deployment/gui/dp_gui_dialog2.hxx 
b/desktop/source/deployment/gui/dp_gui_dialog2.hxx
index 9be38f1d7571..8802997e2f20 100644
--- a/desktop/source/deployment/gui/dp_gui_dialog2.hxx
+++ b/desktop/source/deployment/gui/dp_gui_dialog2.hxx
@@ -25,7 +25,7 @@
 #include 
 #include 
 
-#include 
+#include 
 
 #include 
 
@@ -184,7 +184,7 @@ class UpdateRequiredDialog : public 
weld::GenericDialogController
 {
 const OUString   m_sCloseText;
 OUString m_sProgressText;
-::osl::Mutex m_aMutex;
+std::mutex   m_aMutex;
 bool m_bHasProgress;
 bool m_bProgressChanged;
 bool m_bStartProgress;
commit 474f68e38b88ca6495cb7c5cc4038100c2786063
Author: Noel Grandin 
AuthorDate: Tue Mar 7 13:48:17 2023 +0200
Commit: Noel Grandin 

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

2023-03-07 Thread Mike Kaganski (via logerrit)
 dbaccess/source/filter/xml/xmlExport.hxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit e385534e1fcbb626e50076d69e91bd31f537527f
Author: Mike Kaganski 
AuthorDate: Wed Mar 8 09:16:09 2023 +0300
Commit: Mike Kaganski 
CommitDate: Wed Mar 8 06:37:10 2023 +

Fix no-PCH build

Change-Id: Ie3a60558c9a459d2809883590649bee75244a8df
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148453
Reviewed-by: Michael Weghorn 
Tested-by: Mike Kaganski 

diff --git a/dbaccess/source/filter/xml/xmlExport.hxx 
b/dbaccess/source/filter/xml/xmlExport.hxx
index e35800efd298..4dbd3f165204 100644
--- a/dbaccess/source/filter/xml/xmlExport.hxx
+++ b/dbaccess/source/filter/xml/xmlExport.hxx
@@ -25,6 +25,8 @@
 #include 
 #include 
 #include 
+
+#include 
 #include 
 #include 
 #include 


[Libreoffice-bugs] [Bug 151273] With qt5 and qfont, characters overlap in autofit text box, unreadable

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

--- Comment #18 from Michael Weghorn  ---
(In reply to Eyal Rozenberg from comment #15)
> Sorry for asking, but - shouldn't the font rendering problem just get fixed,
> making qt5 less-not-recommended? Unless we plan on discarding qt5 for some
> reason.

We should differentiate between 2 things here:

1) The qt5 VCL plugin with Cairo rendering.
2) The qt5 VCL plugin with QFont-based rendering.

>From my perspective, we can stop calling 1) not-recommended (should basically
work as well as the kf5 VCL plugin), but 2) is experimental and currently not
actively being worked on.

(In reply to Eyal Rozenberg from comment #17)
> That's fair. I'm guessing their consideration is: "We've switched our
> desktop environment from gtk to qt, so we'll make all apps switch if
> possible" - without making sure or investing effort in ensuring that's
> possible.

Technically, there would be no problem in switching to qt5 with Cairo
rendering. The issue is that by setting SAL_USE_VCLPLUGIN=qt5 but not
SAL_VCL_QT5_USE_CAIRO=1, they implicitly opted in for QFont-based rendering,
which is known to be suboptimal.

Our assumption back then was that if people manually set custom environment
variables, they should know what they're doing.

My suggestion for now would still be that Lubuntu packaging should set
SAL_VCL_QT5_USE_CAIRO=1 in addition to provide their users a better experience.
But so far, nothing has happened in
https://bugs.launchpad.net/ubuntu/+source/lubuntu-meta/+bug/1895216 .

What we can still consider is switching the default from 2) to 1), i.e. people
that only set SAL_USE_VCLPLUGIN=qt5 get the more mature Cairo rendering by
default. And then introduce some new environment variable (maybe sth like
SAL_VCL_QT5_USE_QFONT_RENDERING) to explicitly switch to the experimental QFont
rendering.

> But - is this properly an LO bug, or is it an issue with the Qt libraries
> themselves?

Hard to tell without looking into this in detail, but I'd initially assume that
it's a LO bug until anybody looks into it and claims otherwise.
But then, I'm quite sure that solving this one issue will still leave enough
others to not recommend using QFont rendering in production.

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

[Libreoffice-bugs] [Bug 153704] Style Heading level label was gone in Traditional Chinese interfaces

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

--- Comment #6 from Franklin Weng  ---
Not only in Heading, but also in Index -> Contents 1-10 or similar styles with
a number after the name.

Same in 7.5.1.2
Version: 7.5.1.2 (X86_64) / LibreOffice Community
Build ID: fcbaee479e84c6cd81291587d2ee68cba099e129
CPU threads: 4; OS: Linux 6.1; UI render: default; VCL: kf5 (cairo+xcb)
Locale: zh-TW (zh_TW.UTF-8); UI: zh-TW
Calc: threaded

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

[Libreoffice-bugs] [Bug 153657] NVDA dose not read Fontwork style title

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

--- Comment #3 from Michael Weghorn  ---
(In reply to افشین from comment #2)
> Michael, I'm sorry.
> When I reported this bug, I was using Linux and I copied my LibreOffice data
> under Linux!

No problem, thanks for the clarification!

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

[Libreoffice-bugs] [Bug 60251] [META] ACCESSIBILITY: Tracking Windows OS accessibility and AT issues

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

Bug 153918 Summary: Windows a11y representation: Special Characters dialog 
shows Space (0x20) twice and lacks Exclamation mark (0x21)
https://bugs.documentfoundation.org/show_bug.cgi?id=153918

   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: 2 commits - include/svx svx/source sw/qa

2023-03-07 Thread Michael Weghorn (via logerrit)
 include/svx/searchcharmap.hxx  |2 --
 svx/source/dialog/charmap.cxx  |1 +
 svx/source/dialog/searchcharmap.cxx|   18 +++---
 sw/qa/extras/accessibility/dialogs.cxx |   11 ++-
 4 files changed, 14 insertions(+), 18 deletions(-)

New commits:
commit 65f672b27f84682764f924a3da3cecbafc88b278
Author: Michael Weghorn 
AuthorDate: Tue Mar 7 12:59:14 2023 +
Commit: Michael Weghorn 
CommitDate: Wed Mar 8 06:04:09 2023 +

tdf#153918 svx a11y: Drop old items when switching FontCharMap

Calling `rRenderContext.GetFontCharMap(mxFontCharMap)`
in `SvxShowCharSet::RecalculateFont` means that a new
`FontCharMapRef` gets assigned to `mxFontCharMap`.

Therefore, clear the old items based on the previous
one from the map, so that new ones will be created
based on the new font char map in `SvxShowCharSet::ImplGetItem`
as needed instead of still returning the old ones.

Adapt the a11y UI test to check again that the "!" character
now has the proper accessible name. The incorrect
accessible name in the special characters dialog had
actually been uncovered by the initial version of the
test that failed on Windows due to this, and the test was adapted
to workaround that, s. tdf#153918 and the discussion in the
Gerrit change adding the test [1] for more details.

[1] 
https://gerrit.libreoffice.org/c/core/+/142260/24..26/sw/qa/extras/accessibility/dialogs.cxx#b85

Change-Id: I0ac578750b1fa0a7e63e62a6937a125c7ceab510
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148423
Reviewed-by: Colomban Wendling 
Tested-by: Jenkins
Reviewed-by: Michael Weghorn 

diff --git a/svx/source/dialog/charmap.cxx b/svx/source/dialog/charmap.cxx
index 4c17ce11c98a..5f08ba3e96c8 100644
--- a/svx/source/dialog/charmap.cxx
+++ b/svx/source/dialog/charmap.cxx
@@ -695,6 +695,7 @@ void SvxShowCharSet::RecalculateFont(vcl::RenderContext& 
rRenderContext)
 aFont.SetTransparent(true);
 rRenderContext.SetFont(aFont);
 rRenderContext.GetFontCharMap(mxFontCharMap);
+m_aItems.clear();
 getFavCharacterList();
 
 nX = aSize.Width() / COLUMN_COUNT;
diff --git a/svx/source/dialog/searchcharmap.cxx 
b/svx/source/dialog/searchcharmap.cxx
index 02fb19be20b0..e15ec15da2c7 100644
--- a/svx/source/dialog/searchcharmap.cxx
+++ b/svx/source/dialog/searchcharmap.cxx
@@ -323,6 +323,7 @@ void SvxSearchCharSet::RecalculateFont(vcl::RenderContext& 
rRenderContext)
 aFont.SetTransparent(true);
 rRenderContext.SetFont(aFont);
 rRenderContext.GetFontCharMap(mxFontCharMap);
+m_aItems.clear();
 getFavCharacterList();
 
 nX = aSize.Width() / COLUMN_COUNT;
diff --git a/sw/qa/extras/accessibility/dialogs.cxx 
b/sw/qa/extras/accessibility/dialogs.cxx
index 7997f7743b1e..6faab49128cd 100644
--- a/sw/qa/extras/accessibility/dialogs.cxx
+++ b/sw/qa/extras/accessibility/dialogs.cxx
@@ -74,13 +74,14 @@ CPPUNIT_TEST_FIXTURE(test::SwAccessibleTestBase, 
TestSpecialCharactersDialogFocu
 
 /* as there is a bug that focusing the character table doesn't enable 
the Insert button
  * (https://bugs.documentfoundation.org/show_bug.cgi?id=153806), we 
move to another cell
- * so it works -- and we actually don't care which one it is */
-dialog.postKeyEventAsync(0, awt::Key::DOWN);
-Scheduler::ProcessEventsToIdle();
+ * so it works. */
 
+// tdf#153918: Check that '!' char has correct accessible name and 
insert it
+dialog.postKeyEventAsync(0, awt::Key::RIGHT);
+Scheduler::ProcessEventsToIdle();
 CPPUNIT_ASSERT_EQUAL(
 AccessibilityTools::getAccessibleObjectForName(
-dialog.getAccessible(), 
accessibility::AccessibleRole::TABLE_CELL, u"0"),
+dialog.getAccessible(), 
accessibility::AccessibleRole::TABLE_CELL, u"!"),
 getFocusedObject(dialog.getAccessible()));
 
 
CPPUNIT_ASSERT(dialog.tabTo(accessibility::AccessibleRole::PUSH_BUTTON, 
u"Insert"));
@@ -92,7 +93,7 @@ CPPUNIT_TEST_FIXTURE(test::SwAccessibleTestBase, 
TestSpecialCharactersDialogFocu
 CPPUNIT_ASSERT(activateMenuItem(u"Insert", u"Special Character..."));
 CPPUNIT_ASSERT(dialogWaiter->waitEndDialog());
 
-CPPUNIT_ASSERT_EQUAL(rtl::OUString(u"0"), 
collectText());
+CPPUNIT_ASSERT_EQUAL(rtl::OUString(u"!"), 
collectText());
 }
 
 CPPUNIT_TEST_FIXTURE(test::SwAccessibleTestBase, BasicTestHyperlinkDialog)
commit 224286b32587fe9a5db4a7f18b93956a0865d42d
Author: Michael Weghorn 
AuthorDate: Tue Mar 7 11:19:19 2023 +
Commit: Michael Weghorn 
CommitDate: Wed Mar 8 06:03:58 2023 +

svx: Stop manually counting map entries

The `nCount` member counts the number of elements
in `m_aItemList`, but `std::unordered_map::size()`
also returns that, so just use that instead.

Use `SvxSearchCharSet::getMaxCharCount` in most places
and simplify 

[Libreoffice-bugs] [Bug 153537] A field should have its own character style

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

--- Comment #8 from Dieter  ---
(In reply to TorrAB from comment #6)
> **Yes, with a special choice "paragraph style" to specify the same character
> style as the host paragraph (as is currently the case)

This is character style "Default"

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

[Libreoffice-bugs] [Bug 153657] NVDA dose not read Fontwork style title

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

Dieter  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|
 CC|dgp-m...@gmx.de |

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

[Libreoffice-bugs] [Bug 153704] Style Heading level label was gone in Traditional Chinese interfaces

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

--- Comment #5 from Franklin Weng  ---
Created attachment 185829
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185829=edit
Screenshot for testing this issue

We did a few tests and found that if we changed the translated strings the
result would be different.

If the level number is two-digits it will show. (Like Heading 4 translated to
"標題 40" and it could show the whole string.)
If we add a space after the number it will show.  (Heading 5 translated to "標題
5 " add a space after 5, it showed.)
We used to think if it was because of the length, but we translated it into
extra long string with a one-digit number after it, the number didn't show. 
(Header 6 translated to "標題標題標題標題 6" the 6 didn't show.)

The translation entries we tested is here:

translations/source/zh-TW/sw/messages.po
#. DSgQC
#: sw/inc/strings.hrc:87
msgctxt "STR_POOLCOLL_HEADLINE1"
msgid "Heading 1"
msgstr "標 題 1"

#. 9Qw5C
#: sw/inc/strings.hrc:88
msgctxt "STR_POOLCOLL_HEADLINE2"
msgid "Heading 2"
msgstr "標 2"

#. x44Y5
#: sw/inc/strings.hrc:89
msgctxt "STR_POOLCOLL_HEADLINE3"
msgid "Heading 3"
msgstr "標 題3"

#. Q4MBD
#: sw/inc/strings.hrc:90
msgctxt "STR_POOLCOLL_HEADLINE4"
msgid "Heading 4"
msgstr "標題 40"

#. aQXm6
#: sw/inc/strings.hrc:91
msgctxt "STR_POOLCOLL_HEADLINE5"
msgid "Heading 5"
msgstr "標題 5 "

#. mSpb6
#: sw/inc/strings.hrc:92
msgctxt "STR_POOLCOLL_HEADLINE6"
msgid "Heading 6"
msgstr "標題標題標題標題 6"

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

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

2023-03-07 Thread Julien Nabet (via logerrit)
 vcl/skia/skia_denylist_vulkan.xml |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit c0ed486d96fca70704a7f7e24199de9c663003cc
Author: Julien Nabet 
AuthorDate: Tue Mar 7 22:34:50 2023 +0100
Commit: Julien Nabet 
CommitDate: Wed Mar 8 05:38:28 2023 +

tdf#153538: blacklist GeForce GTX 1070 Ti for Skia hardware rendering

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

diff --git a/vcl/skia/skia_denylist_vulkan.xml 
b/vcl/skia/skia_denylist_vulkan.xml
index 5ac2c426594c..3c77f3c5ad59 100644
--- a/vcl/skia/skia_denylist_vulkan.xml
+++ b/vcl/skia/skia_denylist_vulkan.xml
@@ -45,6 +45,9 @@
  
 
 
+ 
+
+
 
 
 


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

2023-03-07 Thread Mike Kaganski (via logerrit)
 include/vcl/BinaryDataContainer.hxx|   33 +++-
 include/vcl/filter/PngImageReader.hxx  |5 -
 include/vcl/gfxlink.hxx|2 
 include/vcl/graphicfilter.hxx  |5 -
 sd/source/ui/view/sdview3.cxx  |7 -
 vcl/qa/cppunit/BinaryDataContainerTest.cxx |   33 ++--
 vcl/qa/cppunit/svm/svmtest.cxx |   10 +-
 vcl/source/filter/graphicfilter.cxx|  116 +
 vcl/source/filter/ieps/ieps.cxx|   58 ++
 vcl/source/filter/ipdf/pdfcompat.cxx   |6 -
 vcl/source/filter/png/PngImageReader.cxx   |   31 +++
 vcl/source/filter/wmf/wmf.cxx  |4 -
 vcl/source/gdi/TypeSerializer.cxx  |9 --
 vcl/source/gdi/gfxlink.cxx |   10 --
 vcl/source/gdi/impgraph.cxx|4 -
 vcl/source/gdi/vectorgraphicdata.cxx   |5 -
 vcl/source/graphic/BinaryDataContainer.cxx |   19 ++--
 17 files changed, 127 insertions(+), 230 deletions(-)

New commits:
commit d062f097cc48bd53247b7fb0c677d90fcc430ab7
Author: Mike Kaganski 
AuthorDate: Wed Mar 8 02:14:11 2023 +0300
Commit: Mike Kaganski 
CommitDate: Wed Mar 8 05:20:17 2023 +

Simplify usage of BinaryDataContainer

It is always used to store data read from streams

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

diff --git a/include/vcl/BinaryDataContainer.hxx 
b/include/vcl/BinaryDataContainer.hxx
index b7421e9874c0..e6e13cd340d8 100644
--- a/include/vcl/BinaryDataContainer.hxx
+++ b/include/vcl/BinaryDataContainer.hxx
@@ -10,7 +10,11 @@
 
 #pragma once
 
+#include 
+
+#include 
 #include 
+
 #include 
 #include 
 
@@ -26,35 +30,22 @@ private:
 std::shared_ptr> mpData;
 
 public:
-BinaryDataContainer();
-BinaryDataContainer(const sal_uInt8* pData, size_t nSize);
-BinaryDataContainer(std::unique_ptr> rData);
+BinaryDataContainer() = default;
+BinaryDataContainer(SvStream& stream, size_t size);
 
-BinaryDataContainer(const BinaryDataContainer& rBinaryDataContainer)
-: mpData(rBinaryDataContainer.mpData)
-{
-}
+BinaryDataContainer(const BinaryDataContainer& rBinaryDataContainer) = 
default;
 
-BinaryDataContainer(BinaryDataContainer&& rBinaryDataContainer) noexcept
-: mpData(std::move(rBinaryDataContainer.mpData))
-{
-}
+BinaryDataContainer(BinaryDataContainer&& rBinaryDataContainer) noexcept = 
default;
 
-BinaryDataContainer& operator=(const BinaryDataContainer& 
rBinaryDataContainer)
-{
-mpData = rBinaryDataContainer.mpData;
-return *this;
-}
+BinaryDataContainer& operator=(const BinaryDataContainer& 
rBinaryDataContainer) = default;
 
-BinaryDataContainer& operator=(BinaryDataContainer&& rBinaryDataContainer) 
noexcept
-{
-mpData = std::move(rBinaryDataContainer.mpData);
-return *this;
-}
+BinaryDataContainer& operator=(BinaryDataContainer&& rBinaryDataContainer) 
noexcept = default;
 
 size_t getSize() const { return mpData ? mpData->size() : 0; }
 bool isEmpty() const { return !mpData || mpData->empty(); }
 const sal_uInt8* getData() const { return mpData ? mpData->data() : 
nullptr; }
+// Returns the data as a stream open for reading
+SvMemoryStream getMemoryStream();
 
 size_t calculateHash() const;
 
diff --git a/include/vcl/filter/PngImageReader.hxx 
b/include/vcl/filter/PngImageReader.hxx
index bbb5b7c8d672..34b8279bc654 100644
--- a/include/vcl/filter/PngImageReader.hxx
+++ b/include/vcl/filter/PngImageReader.hxx
@@ -14,8 +14,10 @@
 #include 
 
 #include 
+#include 
 
 #include 
+#include 
 
 #include 
 
@@ -45,8 +47,7 @@ public:
 
 // Returns the contents of the msOG chunk (containing a Gif image), if it 
exists.
 // Does not change position in the stream.
-static std::unique_ptr getMicrosoftGifChunk(SvStream& rStream,
- sal_Int32* 
chunkSize = nullptr);
+static BinaryDataContainer getMicrosoftGifChunk(SvStream& rStream);
 };
 
 } // namespace vcl
diff --git a/include/vcl/gfxlink.hxx b/include/vcl/gfxlink.hxx
index 852f418d7ef7..8c0f5fd32b05 100644
--- a/include/vcl/gfxlink.hxx
+++ b/include/vcl/gfxlink.hxx
@@ -24,7 +24,6 @@
 #include 
 #include 
 #include 
-#include 
 
 class SvStream;
 
@@ -72,7 +71,6 @@ private:
 
 public:
 GfxLink();
-explicit GfxLink(std::unique_ptr pBuf, sal_uInt32 nBufSize, 
GfxLinkType nType);
 explicit GfxLink(BinaryDataContainer aDataConainer, GfxLinkType nType);
 
 booloperator==( const GfxLink& ) const;
diff --git a/include/vcl/graphicfilter.hxx b/include/vcl/graphicfilter.hxx
index 787439773bc4..fd183b0e0bb3 100644
--- a/include/vcl/graphicfilter.hxx
+++ b/include/vcl/graphicfilter.hxx
@@ -25,6 +25,7 @@
 #include 
 #include 
 

[Libreoffice-bugs] [Bug 115048] Changing cell font size changes only upper line font if cell contains several lines of text

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

--- Comment #13 from Timofeus  ---
Still present.

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

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

[Libreoffice-bugs] [Bug 153657] NVDA dose not read Fontwork style title

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

افشین  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

--- Comment #2 from افشین  ---
Michael, I'm sorry.
When I reported this bug, I was using Linux and I copied my LibreOffice data
under Linux!

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

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

2023-03-07 Thread Galdam (via logerrit)
 .git-hooks/commit-msg|  140 +++
 icon-themes/sifr/res/base128.png |binary
 icon-themes/sifr/res/calc128.png |binary
 icon-themes/sifr/res/draw128.png |binary
 icon-themes/sifr/res/impress128.png  |binary
 icon-themes/sifr/res/math128.png |binary
 icon-themes/sifr/res/odb_16_8.png|binary
 icon-themes/sifr/res/odb_24_8.png|binary
 icon-themes/sifr/res/odb_32_8.png|binary
 icon-themes/sifr/res/odb_48_8.png|binary
 icon-themes/sifr/res/odf_16_8.png|binary
 icon-themes/sifr/res/odf_24_8.png|binary
 icon-themes/sifr/res/odf_32_8.png|binary
 icon-themes/sifr/res/odf_48_8.png|binary
 icon-themes/sifr/res/odg_16_8.png|binary
 icon-themes/sifr/res/odg_24_8.png|binary
 icon-themes/sifr/res/odg_32_8.png|binary
 icon-themes/sifr/res/odg_48_8.png|binary
 icon-themes/sifr/res/odm_16_8.png|binary
 icon-themes/sifr/res/odm_24_8.png|binary
 icon-themes/sifr/res/odm_32_8.png|binary
 icon-themes/sifr/res/odm_48_8.png|binary
 icon-themes/sifr/res/odp_16_8.png|binary
 icon-themes/sifr/res/odp_24_8.png|binary
 icon-themes/sifr/res/odp_32_8.png|binary
 icon-themes/sifr/res/odp_48_8.png|binary
 icon-themes/sifr/res/ods_16_8.png|binary
 icon-themes/sifr/res/ods_24_8.png|binary
 icon-themes/sifr/res/ods_32_8.png|binary
 icon-themes/sifr/res/ods_48_8.png|binary
 icon-themes/sifr/res/odt_16_8.png|binary
 icon-themes/sifr/res/odt_24_8.png|binary
 icon-themes/sifr/res/odt_32_8.png|binary
 icon-themes/sifr/res/odt_48_8.png|binary
 icon-themes/sifr/res/otf_16_8.png|binary
 icon-themes/sifr/res/otf_24_8.png|binary
 icon-themes/sifr/res/otf_32_8.png|binary
 icon-themes/sifr/res/otf_48_8.png|binary
 icon-themes/sifr/res/otg_16_8.png|binary
 icon-themes/sifr/res/otg_24_8.png|binary
 icon-themes/sifr/res/otg_32_8.png|binary
 icon-themes/sifr/res/otg_48_8.png|binary
 icon-themes/sifr/res/otp_16_8.png|binary
 icon-themes/sifr/res/otp_24_8.png|binary
 icon-themes/sifr/res/otp_32_8.png|binary
 icon-themes/sifr/res/otp_48_8.png|binary
 icon-themes/sifr/res/ots_16_8.png|binary
 icon-themes/sifr/res/ots_24_8.png|binary
 icon-themes/sifr/res/ots_32_8.png|binary
 icon-themes/sifr/res/ots_48_8.png|binary
 icon-themes/sifr/res/ott_16_8.png|binary
 icon-themes/sifr/res/ott_24_8.png|binary
 icon-themes/sifr/res/ott_32_8.png|binary
 icon-themes/sifr/res/ott_48_8.png|binary
 icon-themes/sifr/res/writer128.png   |binary
 icon-themes/sifr/sfx2/res/128x128_calc_doc-p.png |binary
 icon-themes/sifr/sfx2/res/128x128_draw_doc-p.png |binary
 icon-themes/sifr/sfx2/res/128x128_impress_doc-p.png  |binary
 icon-themes/sifr/sfx2/res/128x128_math_doc-p.png |binary
 icon-themes/sifr/sfx2/res/128x128_writer_doc-p.png   |binary
 icon-themes/sifr_dark/res/base128.png|binary
 icon-themes/sifr_dark/res/calc128.png|binary
 icon-themes/sifr_dark/res/draw128.png|binary
 icon-themes/sifr_dark/res/impress128.png |binary
 icon-themes/sifr_dark/res/math128.png|binary
 icon-themes/sifr_dark/res/odb_16_8.png   |binary
 icon-themes/sifr_dark/res/odb_24_8.png   |binary
 icon-themes/sifr_dark/res/odb_32_8.png   |binary
 icon-themes/sifr_dark/res/odb_48_8.png   |binary
 icon-themes/sifr_dark/res/odf_16_8.png   |binary
 icon-themes/sifr_dark/res/odf_24_8.png   |binary
 

[Libreoffice-bugs] [Bug 154050] Crashes when inserting or changing a note in Calc With Standard Toolbar (Single Mode) enabled

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

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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

[Libreoffice-bugs] [Bug 153657] NVDA dose not read Fontwork style title

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

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 153975] Win11 BSOD when I click LibreOffice "Help"

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

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

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

[Libreoffice-bugs] [Bug 153778] RFE Improvements for the Fontwork shape type window

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

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 153776] Moving mouse slowly over 2 or more open workbooks, the one behind becomes inactive and comes forward.

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

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 153771] Automatic sync of settings of multiple LibreOffice installations

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

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 153537] A field should have its own character style

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

--- 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 153537] A field should have its own character style

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

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 153741] Calc 7.4.5 EDITING keeps protecting a sheet created by Excel with password

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

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

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

[Libreoffice-bugs] [Bug 151791] Calc-UI-Edit drop down menu-Cell protection

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

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 151791] Calc-UI-Edit drop down menu-Cell protection

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

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

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

[Libreoffice-bugs] [Bug 139846] Find and Find/Replace does not find all valid matches

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

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 150595] When editing the table, the ribbon elements disappear

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

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

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 139846] Find and Find/Replace does not find all valid matches

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

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

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 150858] Italian corrector "perchè', ciò'"

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

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

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 150847] Crash on Raspberry Pi VIEWING slides that use fade transition

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

--- Comment #4 from QA Administrators  ---
Dear Scott Inrig,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 139910] Calc saving document as .XLSX messes up formula (saving as .xls works fine)

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

--- Comment #11 from QA Administrators  ---
Dear chaser.bruce,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 136225] Chinese script has wrong rotation in a specific PPTX

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

--- Comment #8 from QA Administrators  ---
Dear Mike Kaganski,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 116200] Empty entry (space) is shown as suggested correction in context menu for double space

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

--- Comment #5 from QA Administrators  ---
Dear Yousuf Philips (jay) (retired),

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 106152] moving view cursor over a comment anchor position is faulty

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

--- Comment #6 from QA Administrators  ---
Dear Pranav Kant,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 106227] shouldn't be possible to break the comment thread

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

--- Comment #6 from QA Administrators  ---
Dear Pranav Kant,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 154055] "Name and Path of HTML Documents" needs critical review

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

sdc.bla...@youmail.dk changed:

   What|Removed |Added

 Blocks||120200


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=120200
[Bug 120200] [META] Update or correct help for features
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 120200] [META] Update or correct help for features

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

sdc.bla...@youmail.dk changed:

   What|Removed |Added

 Depends on||154055


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154055
[Bug 154055] "Name and Path of HTML Documents" needs critical review
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154055] New: "Name and Path of HTML Documents" needs critical review

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

Bug ID: 154055
   Summary: "Name and Path of HTML Documents" needs critical
review
   Product: LibreOffice
   Version: 7.2.7.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sdc.bla...@youmail.dk
CC: olivier.hal...@libreoffice.org

https://help.libreoffice.org/7.6/en-US/text/swriter/01/01160500.html

Issues to address:

1. "separated by" does not appear in the current interaction.  Possibly it
refers to the "Styles" dropdown box.

2. "separated by" refers only to heading paragraph styles, but the Styles
dropdown box seems to offer all PS that are in the document.  

3. In general, it is hard to understand the descriptions on this page, in
particular the consequences of selecting a Style.

4. Second sentence in first paragraph reads:  "You can choose to create a
separate page when a heading style that you specify is encountered in the
document."

There does not seem to be any choice -- because the dialog requires the choice
of a paragraph style.  Is this sentence accurate?

5.  Third sentence in first paragraph is hard to understand, especially " a
separate page of links to all of the pages that are generated is also created."

6. Is it true, as the current page, asserts: "The titles of the HTML pages are
created from the topmost chapter heading." ?  

In my experiments, it seems that the title comes from the first PS that has the
Para Style selected in the Save dialog.

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

[Libreoffice-bugs] [Bug 153997] PRINTING - FOOTERS

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

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
If you go to format the 'Footer' there are two tabs, one for 'first' and one
for 'rest'.

If you mark 'Same content on first page', there are not 'tabs' editing the
'Footer'

So seems you must mark 'Same content on first page' or edit both 'tabs' editing
the 'Footer'

I tested, creating a file with LO 7.6 and opening with 7.5, and it works fine.

Maybe inadvertently, the mark was unticked.

Resolved as not a bug, please if you find the way, where LO change the mark
without notice, reopen the bug.

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

[Libreoffice-bugs] [Bug 154016] Libreoffice Math Crash when scrolling through "element categories"

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

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Looks like a duplicate.
https://bugs.documentfoundation.org/buglist.cgi?quicksearch=scroll%20crash_id=157

Could you test if it happens on Writer/Calc?

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

[Libreoffice-bugs] [Bug 154053] Bug in Libre Office Table: Fonts & Character attributes changed after deleting some rows.

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

--- Comment #1 from micda...@tpg.com.au  ---
Further test showed that deletion of even a single row (at bottom) had the same
impact.
Also found that the Undo (Ctrl+Z) function,  does not undo the corruptions.

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

[Libreoffice-bugs] [Bug 154054] Libreoffice Calc - Graph save error

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

Warwick Gummerson  changed:

   What|Removed |Added

 CC||warw...@gummerson.com.au

--- Comment #1 from Warwick Gummerson  ---
Created attachment 185828
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185828=edit
The resultant erroneous image

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

[Libreoffice-bugs] [Bug 154022] Libre office Draw my paragraph alignment sometimes works

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

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Please attach a sample file.

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

[Libreoffice-bugs] [Bug 154054] New: Libreoffice Calc - Graph save error

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

Bug ID: 154054
   Summary: Libreoffice Calc - Graph save error
   Product: LibreOffice
   Version: 7.5.1.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: warw...@gummerson.com.au

Description:
The option to "Export as Image", which I use every week now puts the
descriptive legend in the middle of the graph rather than along the right hand
border.

Steps to Reproduce:
1.Create a Graph from a table
2.Right click on the graph and select, "Export as Image"
3.Choose where to save the exported image


Actual Results:
The image is OK except that the legend is no longer at the right border but
about 1/3 from the left border, spoiling the actual graph

Expected Results:
An image with the legend along the right hand border


Reproducible: Always


User Profile Reset: Yes

Additional Info:
Version:7.5.1.2 (X86_64)/ LibreOfficeOffice Community
Environment:CPU Threads: 8; OS: Linux 5.4
User Interface: UI render: default, VCL: gtk3
Locale: en-Au (en_All.UTF-8);,UI: en-US
Misc:   Ubuntu package version
4:7.5.1_rc2-0ubuntu0.20.04.1~lo1
Calc: threaded

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

[Libreoffice-bugs] [Bug 154028] Difficult to change the language of everything in the document

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

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
As you know, please attach a sample document and detail what you have tried.

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

[Libreoffice-commits] core.git: helpcontent2

2023-03-07 Thread Seth Chaiklin (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a179f6c91692076e7e17babf4890638caa398384
Author: Seth Chaiklin 
AuthorDate: Wed Mar 8 02:10:06 2023 +
Commit: Gerrit Code Review 
CommitDate: Wed Mar 8 02:10:06 2023 +

Update git submodules

* Update helpcontent2 from branch 'master'
  to 82b298d6f35e25961a026d848238d29d6b373709
  - tdf#154034  remove xml-lang and use lc_ for icon

Change-Id: I368077b40ed9924ed715a43072d064385b7ae5c5
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148408
Reviewed-by: Seth Chaiklin 
Tested-by: Jenkins

diff --git a/helpcontent2 b/helpcontent2
index f205cf12787f..82b298d6f35e 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit f205cf12787f7a601a75a8acd4ddd13b064f686e
+Subproject commit 82b298d6f35e25961a026d848238d29d6b373709


[Libreoffice-bugs] [Bug 154034] "Outline" -> "Index" in tooltips for Assign Styles dialog in Insert Index, and update icons in help page

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

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

https://git.libreoffice.org/help/commit/82b298d6f35e25961a026d848238d29d6b373709

tdf#154034  remove xml-lang and use lc_ for icon

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

[Libreoffice-commits] help.git: source/text

2023-03-07 Thread Seth Chaiklin (via logerrit)
 source/text/swriter/01/04120219.xhp |   28 ++--
 1 file changed, 14 insertions(+), 14 deletions(-)

New commits:
commit 82b298d6f35e25961a026d848238d29d6b373709
Author: Seth Chaiklin 
AuthorDate: Wed Mar 8 02:03:46 2023 +
Commit: Seth Chaiklin 
CommitDate: Wed Mar 8 02:10:06 2023 +

tdf#154034  remove xml-lang and use lc_ for icon

Change-Id: I368077b40ed9924ed715a43072d064385b7ae5c5
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/148408
Reviewed-by: Seth Chaiklin 
Tested-by: Jenkins

diff --git a/source/text/swriter/01/04120219.xhp 
b/source/text/swriter/01/04120219.xhp
index f2fb3f6fee..dded9493ee 100644
--- a/source/text/swriter/01/04120219.xhp
+++ b/source/text/swriter/01/04120219.xhp
@@ -20,7 +20,7 @@
 
 
 
-Assign Styles
+Assign Styles
 /text/swriter/01/04120219.xhp
 
 
@@ -29,21 +29,21 @@
 
 
 
-
-  
-  Assign Styles
-  Creates index entries from specific paragraph 
styles.
+
+  
+  Assign 
Styles
+  Creates index entries from specific paragraph 
styles.
   
   
 
-  Styles
-  The list 
contains the paragraph styles that you can assign to index levels.
-  To create an 
index entry from a paragraph style, click the style in the Styles 
list, then click the index level that you want to assign to that paragraph 
style.
-  
-  Demote Index Level 
button
-  Moves the 
selected paragraph style up one level in the index 
hierarchy.
-  
-  Promote Index Level 
button
-  Moves 
the selected paragraph style down one level in the index 
hierarchy.
+  Styles
+  The list contains the 
paragraph styles that you can assign to index levels.
+  To create an index entry from 
a paragraph style, click the style in the Styles list, then click 
the index level that you want to assign to that paragraph style.
+  
+  Demote Index Level 
button
+  Moves the 
selected paragraph style up one level in the index 
hierarchy.
+  
+  Promote Index Level 
button
+  Moves 
the selected paragraph style down one level in the index 
hierarchy.
  
 


[Libreoffice-bugs] [Bug 154044] Undoing the first applied cell formatting only works for column A

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

m.a.riosv  changed:

   What|Removed |Added

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

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

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

[Libreoffice-bugs] [Bug 154050] Crashes when inserting or changing a note in Calc With Standard Toolbar (Single Mode) enabled

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

m.a.riosv  changed:

   What|Removed |Added

   Severity|normal  |critical

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

[Libreoffice-bugs] [Bug 154050] Crashes when inserting or changing a note in Calc With Standard Toolbar (Single Mode) enabled

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

m.a.riosv  changed:

   What|Removed |Added

Crash report or||https://crashreport.libreof
crash signature||fice.org/stats/crash_detail
   ||s/db80188d-530d-4879-b954-c
   ||b7c101f25fb
 Ever confirmed|0   |1
 CC||miguelangelrv@libreoffice.o
   ||rg
 Status|UNCONFIRMED |NEW
   Keywords||regression

--- Comment #3 from m.a.riosv  ---
Reproducible.
Version: 7.5.1.2 (X86_64) / LibreOffice Community
Build ID: fcbaee479e84c6cd81291587d2ee68cba099e129
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded
and
Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 687b950702c49c90cff9a43655ea97a0343799a0
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded Jumbo

regression from
Version: 7.4.6.1 (x64) / LibreOffice Community
Build ID: cf1691909b7b17c5e258d2635cae0072cf471be7
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: es-ES
Calc: threaded

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

[Libreoffice-bugs] [Bug 154053] New: Bug in Libre Office Table: Fonts & Character attributes changed after deleting some rows.

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

Bug ID: 154053
   Summary: Bug in Libre Office Table: Fonts  & Character
attributes changed after deleting some rows.
   Product: LibreOffice
   Version: 7.4.1.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: micda...@tpg.com.au

Created attachment 185827
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185827=edit
Table which suffered corruption after deleting some rows

I was working on the attached table.
The cells in the  last column(under status) had the 'Wingding' character for
lower case key 'R'(It looked like a checkbox, as is visible in front of text of
column 3).
All the cells with headings (above the numbered cells in column 1 had character
attributes: Bold, Centered.

I selected a number of rows, and deleted them.

After the deletion, the content of some cells was corrupted as follows:  
1. The cells in the  last column(under status) which had the 'Wingding'
character, all changed to 'r'  (the font became Liberation Serif as shown in
attachment).
2. All the cells with headings (above the numbered cells in column 1) that had
character attributes: Bold, Centered, lost these attributes and became plain
text.

This happened on several occasions when several rows of cells were deleted.
It became rather annoying to have text in multiple cells change, after deleting
rows.

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

[Libreoffice-bugs] [Bug 154051] Border transparency

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

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #1 from Regina Henschel  ---
Why?

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

[Libreoffice-bugs] [Bug 153972] Calc autofilter can't choose background colour when cell has no content

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

--- Comment #3 from m.a.riosv  ---
Maybe:
Calc Autofilter can't select background colour when all cells in the filtered
column have no content.

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

[Libreoffice-bugs] [Bug 153975] Win11 BSOD when I click LibreOffice "Help"

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

--- Comment #10 from Frank Moore  ---
Windows 11 Update says that I am up to date. Driver Booster v10.3.0.124 says
all of my drivers are up to date.

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

[Libreoffice-bugs] [Bug 153628] Spellcheck now does not work v7.5.0.3 X86_64

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

John Glennie  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #10 from John Glennie  ---
> I tested some more and reported in bug 153931 that I can see some buggy
> behaviour with the 
dialog stuck in ignore / resume loops
, and concluding the
> spellcheck prematurely. Is that what you mean by "spell check locks on the
> first paragraph and the ignore etc tabs are not functional", John ?
> Or do you see something different?

Yes. That is it exactly.
Not necessarily the first paragraph but early.
Looks like it hits a sentence [that could have a context type error] and stops
on that.
Not on a specific word.
Close is the only way out. Ignore is not available.

12th short paragraph stop below on page 1. [316 words in]

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

[Libreoffice-bugs] [Bug 153560] Rename "chapter" to "heading" in Insert Field (Document tab)

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

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

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

tdf#153560 "up to level" also selects field contents

It will be available in 7.6.0.

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

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

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

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

2023-03-07 Thread Seth Chaiklin (via logerrit)
 sw/uiconfig/swriter/ui/flddocumentpage.ui |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 1bede0887faa1eec94cff66cf0daa0eed66750ab
Author: Seth Chaiklin 
AuthorDate: Tue Mar 7 22:11:50 2023 +
Commit: Seth Chaiklin 
CommitDate: Wed Mar 8 00:07:28 2023 +

tdf#153560 "up to level" also selects field contents

revise tooltip and extended tip for "level" spinbox to
indicate that the "level" setting applies both to
numbers and contents

Change-Id: Ib54e4d6db59de346ed678f1fa7a5174f8e7d84ec
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148407
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin 

diff --git a/sw/uiconfig/swriter/ui/flddocumentpage.ui 
b/sw/uiconfig/swriter/ui/flddocumentpage.ui
index a2e382a9a148..0929b31f7a69 100644
--- a/sw/uiconfig/swriter/ui/flddocumentpage.ui
+++ b/sw/uiconfig/swriter/ui/flddocumentpage.ui
@@ -361,11 +361,11 @@
 True
 adjustment1
 True
-Specifies the number of outline 
levels of the immediately prior heading number to display.
+Select the first prior heading for 
display whose outline level is less than or equal to the specified 
value.
 
   
-Use this option 
in combination with “Heading number” to control how many levels of the 
immediately prior heading number are displayed. For example, selecting “2” will 
display the first two levels of the heading number. Heading numbers can be 
enabled in the “Heading Numbering“ dialog (see Tools menu).
-  
+Use this option 
to specify which heading before the field to display. The selected heading is 
the first one whose outline level is less than or equal to the specified value. 
For example, specifying “2” will display the first heading before the field 
with outline level 1 or outline level 2. Heading numbers can be enabled by 
using “Tools - Heading Numbering“.
+
 
   
   


[Libreoffice-bugs] [Bug 153628] Spellcheck now does not work v7.5.0.3 X86_64

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

--- Comment #9 from John Glennie  ---
Created attachment 185826
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185826=edit
reply re Bug 153628

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

[Libreoffice-bugs] [Bug 153537] A field should have its own character style

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

--- Comment #6 from tor...@yahoo.com ---
(In reply to Dieter from comment #5)
> 
> So a character style dropdown list should be part of the fields dialog?

**Yes, with a special choice "paragraph style" to specify the same character
style as the host paragraph (as is currently the case)

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

[Libreoffice-bugs] [Bug 154050] Crashes when inserting or changing a note in Calc With Standard Toolbar (Single Mode) enabled

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

Rafael Da  changed:

   What|Removed |Added

Summary|Crashes when inserting or   |Crashes when inserting or
   |changing a note in Calc |changing a note in Calc
   ||With Standard Toolbar
   ||(Single Mode) enabled

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

[Libreoffice-bugs] [Bug 154050] Crashes when inserting or changing a note in Calc

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

--- Comment #2 from Rafael Da  ---
https://crashreport.libreoffice.org/stats/crash_details/b48f02cc-7dd2-4d35-bbec-941271f83e30
I cleaned the Profile and the bug dissapeared.
Then I started to configure LibreOffice the way I like it again and, after I
enabled the "Standard Toolbar (Single Mode)", the bug reapeared.

So steps to replicate the bug:

1 - New instalation of LibreOffice (or clean profile)
2 - Open Calc
3 - In the "view menu" enable the "Standard Toolbar (Single Mode)".
4 - Right-click on a cell
5 - Chose to insert a note
6 - Click outside the note
7 - Crash!

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

[Libreoffice-bugs] [Bug 114039] [META] Fields dialog bugs and enhancements

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

sdc.bla...@youmail.dk changed:

   What|Removed |Added

 Depends on||154052


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154052
[Bug 154052] Make "Level" spinbox into a dropdown menu in the Document tab of
"Insert - Field"
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154052] Make "Level" spinbox into a dropdown menu in the Document tab of "Insert - Field"

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

sdc.bla...@youmail.dk changed:

   What|Removed |Added

 Blocks||114039


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 154052] New: Make "Level" spinbox into a dropdown menu in the Document tab of "Insert - Field"

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

Bug ID: 154052
   Summary: Make "Level" spinbox into a dropdown menu in the
Document tab of "Insert - Field"
   Product: LibreOffice
   Version: 7.2.7.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sdc.bla...@youmail.dk

1. Insert - Field - More Fields (Ctrl+F2) - Document tab
2. Select type "Chapter"

Actual: "Level" appears with a spinbox
Proposed: spinbox should be a combobox, with values 1-10.

Reasons: - Faster/easier to select desired value.
 - Indicates quickly the entire space of possible choices.

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

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

2023-03-07 Thread Eike Rathke (via logerrit)
 sc/source/core/tool/interpr3.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 3fdb1b5c534ece00b6417688c2109b7fe8376bbd
Author: Eike Rathke 
AuthorDate: Mon Feb 27 16:10:06 2023 +0100
Commit: Andras Timar 
CommitDate: Tue Mar 7 22:47:34 2023 +

Always push a result, even if it's only an error

PERCENTILE() and QUARTILE() if an error was passed as argument (or
an error encountered during obtaining arguments) omitted to push
an error result, only setting the error.

Fallout from

commit f336f63da900d76c2bf6e5690f1c8a7bd15a0aa2
CommitDate: Thu Mar 3 16:28:59 2016 +

tdf#94635 Add FORECAST.ETS functions to Calc

Change-Id: I23e276fb0ce735cfd6383cc963446499dcf819f4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147922
Reviewed-by: Eike Rathke 
Tested-by: Jenkins
(cherry picked from commit 64914560e279c71ff1233f4bab851e2a292797e6)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147900
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 
(cherry picked from commit da8ca6920b78addc827171f53a42abdd59da9f9c)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148326
Tested-by: Andras Timar 
Reviewed-by: Andras Timar 

diff --git a/sc/source/core/tool/interpr3.cxx b/sc/source/core/tool/interpr3.cxx
index 8d7ba5ea4952..885db473c9f8 100644
--- a/sc/source/core/tool/interpr3.cxx
+++ b/sc/source/core/tool/interpr3.cxx
@@ -3466,7 +3466,7 @@ void ScInterpreter::ScPercentile( bool bInclusive )
 GetNumberSequenceArray( 1, aArray, false );
 if ( aArray.empty() || nGlobalError != FormulaError::NONE )
 {
-SetError( FormulaError::NoValue );
+PushNoValue();
 return;
 }
 if ( bInclusive )
@@ -3489,7 +3489,7 @@ void ScInterpreter::ScQuartile( bool bInclusive )
 GetNumberSequenceArray( 1, aArray, false );
 if ( aArray.empty() || nGlobalError != FormulaError::NONE )
 {
-SetError( FormulaError::NoValue );
+PushNoValue();
 return;
 }
 if ( bInclusive )


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

2023-03-07 Thread Eike Rathke (via logerrit)
 sc/source/core/tool/interpr3.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 9c16cf706d774dc7565fc53f6d003d2139986264
Author: Eike Rathke 
AuthorDate: Mon Feb 27 16:10:06 2023 +0100
Commit: Andras Timar 
CommitDate: Tue Mar 7 22:47:05 2023 +

Always push a result, even if it's only an error

PERCENTILE() and QUARTILE() if an error was passed as argument (or
an error encountered during obtaining arguments) omitted to push
an error result, only setting the error.

Fallout from

commit f336f63da900d76c2bf6e5690f1c8a7bd15a0aa2
CommitDate: Thu Mar 3 16:28:59 2016 +

tdf#94635 Add FORECAST.ETS functions to Calc

Change-Id: I23e276fb0ce735cfd6383cc963446499dcf819f4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147922
Reviewed-by: Eike Rathke 
Tested-by: Jenkins
(cherry picked from commit 64914560e279c71ff1233f4bab851e2a292797e6)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147900
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 
(cherry picked from commit da8ca6920b78addc827171f53a42abdd59da9f9c)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148327
Tested-by: Andras Timar 
Reviewed-by: Andras Timar 

diff --git a/sc/source/core/tool/interpr3.cxx b/sc/source/core/tool/interpr3.cxx
index 29c72f6f7280..cdbb4823a0e1 100644
--- a/sc/source/core/tool/interpr3.cxx
+++ b/sc/source/core/tool/interpr3.cxx
@@ -3481,7 +3481,7 @@ void ScInterpreter::ScPercentile( bool bInclusive )
 GetNumberSequenceArray( 1, aArray, false );
 if ( aArray.empty() || nGlobalError != FormulaError::NONE )
 {
-SetError( FormulaError::NoValue );
+PushNoValue();
 return;
 }
 if ( bInclusive )
@@ -3504,7 +3504,7 @@ void ScInterpreter::ScQuartile( bool bInclusive )
 GetNumberSequenceArray( 1, aArray, false );
 if ( aArray.empty() || nGlobalError != FormulaError::NONE )
 {
-SetError( FormulaError::NoValue );
+PushNoValue();
 return;
 }
 if ( bInclusive )


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

2023-03-07 Thread Michael Meeks (via logerrit)
 desktop/source/app/app.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 5f340bbcf5916a5dc66e65a8f98aac397a26c494
Author: Michael Meeks 
AuthorDate: Sat Mar 4 21:19:08 2023 +
Commit: Andras Timar 
CommitDate: Tue Mar 7 22:45:17 2023 +

Avoid running graphics tests when in lok mode.

Best to avoid allocating and freeing 64Mb of RAM, and
burning lots of CPU doing CPU rendering on an invisible
for each document loaded through lok API.

Change-Id: I656b400159b9d6a7a9f2c79d188e3aec9b3dd0e2
Signed-off-by: Michael Meeks 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148259
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Andras Timar 

diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index 4683f76e3295..1caad5299ff5 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -82,6 +82,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -341,6 +342,8 @@ namespace {
 
 void runGraphicsRenderTests()
 {
+if (comphelper::LibreOfficeKit::isActive())
+return;
 if (!utl::isProductVersionUpgraded(false))
 {
 return;


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

2023-03-07 Thread Jaume Pujantell (via logerrit)
 vcl/qa/cppunit/filter/ipdf/data/array-mixed-numbers-and-elements.pdf |   55 
++
 vcl/qa/cppunit/filter/ipdf/ipdf.cxx  |   25 

 vcl/source/filter/ipdf/pdfdocument.cxx   |   45 

 3 files changed, 125 insertions(+)

New commits:
commit b4c912f680bb195ca17a506ed3037c588144a423
Author: Jaume Pujantell 
AuthorDate: Fri Mar 3 19:25:11 2023 +0100
Commit: Andras Timar 
CommitDate: Tue Mar 7 22:44:58 2023 +

Fix a bug parsing pdf arrays

The parser ignored number elements in some situations, like before
a reference element. This manifested in creating an invalid pdf
file when exporting as pdf a document that contains a pdf.

Change-Id: I98625c8da8631056079814f7e824f36177cf41c7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148198
Tested-by: Jenkins
Reviewed-by: Andras Timar 
(cherry picked from commit 574e89ccda1b389faca9f3e44d909a71b5599473)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148332
Tested-by: Jenkins CollaboraOffice 

diff --git 
a/vcl/qa/cppunit/filter/ipdf/data/array-mixed-numbers-and-elements.pdf 
b/vcl/qa/cppunit/filter/ipdf/data/array-mixed-numbers-and-elements.pdf
new file mode 100644
index ..01030ecf88bc
--- /dev/null
+++ b/vcl/qa/cppunit/filter/ipdf/data/array-mixed-numbers-and-elements.pdf
@@ -0,0 +1,55 @@
+%PDF-1.7
+%���
+1 0 obj <<
+  /Type /Catalog
+  /Pages 2 0 R
+>>
+endobj
+2 0 obj <<
+  /Type /Pages
+  /MediaBox [0 0 200 300]
+  /Count 1
+  /Kids [3 0 R]
+>>
+endobj
+3 0 obj <<
+  /Type /Page
+  /Parent 2 0 R
+  /Contents 4 0 R
+  /Test [1 4 0 R 3 false 5 (Lieral) 7 <90>]
+>>
+endobj
+4 0 obj <<
+  /Length 188
+>>
+stream
+q
+0 0 0 rg
+0 290 10 10 re B*
+10 150 50 30 re B*
+0 0 1 rg
+190 290 10 10 re B*
+70 232 50 30 re B*
+0 1 0 rg
+190 0 10 10 re B*
+130 150 50 30 re B*
+1 0 0 rg
+0 0 10 10 re B*
+70 67 50 30 re B*
+Q
+endstream
+endobj
+xref
+0 5
+00 65535 f 
+15 0 n 
+68 0 n 
+000157 0 n 
+000270 0 n 
+trailer <<
+  /Root 1 0 R
+  /Size 5
+>>
+startxref
+510
+%%EOF
diff --git a/vcl/qa/cppunit/filter/ipdf/ipdf.cxx 
b/vcl/qa/cppunit/filter/ipdf/ipdf.cxx
index 2de6cd4889d5..9077e6ba5d45 100644
--- a/vcl/qa/cppunit/filter/ipdf/ipdf.cxx
+++ b/vcl/qa/cppunit/filter/ipdf/ipdf.cxx
@@ -201,6 +201,31 @@ CPPUNIT_TEST_FIXTURE(VclFilterIpdfTest, testCommentEnd)
 CPPUNIT_ASSERT(aDocument.Read(aFile));
 }
 
+CPPUNIT_TEST_FIXTURE(VclFilterIpdfTest, testMixedArrayWithNumbers)
+{
+// Load a file that has markup like this:
+// 3 0 obj <<
+//  /Test [1 4 0 R 3 false 5 (Lieral) 7 <90>]
+// >>
+OUString aSourceURL = m_directories.getURLFromSrc(DATA_DIRECTORY) + 
"array-mixed-numbers-and-elements.pdf";
+SvFileStream aFile(aSourceURL, StreamMode::READ);
+vcl::filter::PDFDocument aDocument;
+CPPUNIT_ASSERT(aDocument.Read(aFile));
+std::vector aPages = aDocument.GetPages();
+CPPUNIT_ASSERT(!aPages.empty());
+vcl::filter::PDFObjectElement* pPage = aPages[0];
+auto pTest = 
dynamic_cast(pPage->Lookup("Test"));
+std::vector aElements = pTest->GetElements();
+
+// Without the accompanying fix in place, this test would have failed with
+// the array containing the wrong number of elements and in the incorrect 
order
+CPPUNIT_ASSERT_EQUAL(8, static_cast(aElements.size()));
+CPPUNIT_ASSERT(dynamic_cast(aElements[0]));
+CPPUNIT_ASSERT(dynamic_cast(aElements[2]));
+CPPUNIT_ASSERT(dynamic_cast(aElements[4]));
+CPPUNIT_ASSERT(dynamic_cast(aElements[6]));
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/source/filter/ipdf/pdfdocument.cxx 
b/vcl/source/filter/ipdf/pdfdocument.cxx
index 9ef202ee132b..c8882a6a709b 100644
--- a/vcl/source/filter/ipdf/pdfdocument.cxx
+++ b/vcl/source/filter/ipdf/pdfdocument.cxx
@@ -3247,6 +3247,18 @@ size_t PDFObjectParser::parse(PDFElement* 
pParsingElement, size_t nStartIndex, i
 }
 else if (auto pReference = 
dynamic_cast(pCurrentElement))
 {
+// Handle previously stored number
+if (aNumbers.size() > 2)
+{
+aNumbers.resize(aNumbers.size() - 2);
+if (pParsingArray)
+{
+for (auto& pNumber : aNumbers)
+pParsingArray->PushBack(pNumber);
+}
+aNumbers.clear();
+}
+
 if (pParsingArray)
 {
 pParsingArray->PushBack(pReference);
@@ -3267,6 +3279,17 @@ size_t PDFObjectParser::parse(PDFElement* 
pParsingElement, size_t nStartIndex, i
 }
 else if (auto pLiteralString = 
dynamic_cast(pCurrentElement))
 {
+// Handle previously stored number
+if (!aNumbers.empty())
+{
+if (pParsingArray)
+{
+for (auto& 

[Libreoffice-bugs] [Bug 154015] Mark selected object center on rulers

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||vsfo...@libreoffice.org

--- Comment #5 from V Stuart Foote  ---
I would suggest instead a modification to the Helplines guide. 

Marking the object center is helpful for some cases, but could be exposed via
the helplines guide (perhaps a different line style). As they extend off canvas
all the way to the rulers (vert and horiz) that is sufficient without having to
overload the ruler UI.

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

[Libreoffice-ux-advise] [Bug 154015] Mark selected object center on rulers

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||vsfo...@libreoffice.org

--- Comment #5 from V Stuart Foote  ---
I would suggest instead a modification to the Helplines guide. 

Marking the object center is helpful for some cases, but could be exposed via
the helplines guide (perhaps a different line style). As they extend off canvas
all the way to the rulers (vert and horiz) that is sufficient without having to
overload the ruler UI.

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

[Libreoffice-bugs] [Bug 107366] Bug in selection menu for active cell range functions

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

--- Comment #16 from rl  ---
Have not yet checked the current «macOS (Intel)» version.

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

[Libreoffice-bugs] [Bug 153975] Win11 BSOD when I click LibreOffice "Help"

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #9 from Stéphane Guillou (stragu) 
 ---
Can you please check that you have installed all available Windows updates,
including for hardware drivers? ("Optional updates" in Windows Update)
Thank you

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

[Libreoffice-bugs] [Bug 59284] [META] Calc cell border related issues

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

Eyal Rozenberg  changed:

   What|Removed |Added

Summary|[META] Cell border related  |[META] Calc cell border
   |issues  |related issues

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

[Libreoffice-bugs] [Bug 107701] [META] Table border bugs and enhancements

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||154051


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154051
[Bug 154051] Border transparency
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154051] Border transparency

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks||107701


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 154051] New: Border transparency

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

Bug ID: 154051
   Summary: Border transparency
   Product: LibreOffice
   Version: 7.5.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: eyalr...@gmx.com

Table border can currently only be fully-opaque. We should be able to make them
partially-transparent, like table cell backgrounds.

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

[Libreoffice-bugs] [Bug 154050] Crashes when inserting or changing a note in Calc

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

--- Comment #1 from Rafael Da  ---
It also happens when editing a note in an already existing Calc document.
Steps to Reproduce:
1.Open an existing Calc document
2.Right click one a cell that contains a note.
3 Chose "Edit Note" in the menu
3.Click outside the note
4.Crash

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

[Libreoffice-bugs] [Bug 154050] New: Crashes when inserting or changing a note in Calc

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

Bug ID: 154050
   Summary: Crashes when inserting or changing a note in Calc
   Product: LibreOffice
   Version: 7.5.1.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rafael...@gmail.com

Description:
LibreOffice crashes when inserting or changing a note in Calc. It can be
reproduced with a new Calc document.

Steps to Reproduce:
1.Open a new Calc document
2.Insert a note in a cell
3.Click outside the note
4.Crash

Actual Results:
Crash

Expected Results:
The note should continue there, I should be able to edit it without LibreOffice
crashing.


Reproducible: Always


User Profile Reset: No

Additional Info:
https://crashreport.libreoffice.org/stats/crash_details/adf1391a-2e6c-4e00-b3f2-ecf513d385dd

Version: 7.5.1.2 (X86_64) / LibreOffice Community
Build ID: fcbaee479e84c6cd81291587d2ee68cba099e129
CPU threads: 64; OS: Windows 10.0 Build 22621; UI render: Skia/Raster; VCL: win
Locale: pt-BR (pt_BR); UI: pt-BR
Calc: threaded

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

[Libreoffice-bugs] [Bug 146766] Clone tool does not work for Impress tables and/or messes up format

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

Eyal Rozenberg  changed:

   What|Removed |Added

Summary|Clone tool does not work|Clone tool does not work
   |for Impress tables  |for Impress tables and/or
   ||messes up format

--- Comment #3 from Eyal Rozenberg  ---
In particular, clone formatting between cells messes up the borders.

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

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

2023-03-07 Thread Galdam (via logerrit)
 .git-hooks/commit-msg|  140 +++
 icon-themes/sifr/res/base128.png |binary
 icon-themes/sifr/res/calc128.png |binary
 icon-themes/sifr/res/draw128.png |binary
 icon-themes/sifr/res/impress128.png  |binary
 icon-themes/sifr/res/math128.png |binary
 icon-themes/sifr/res/odb_16_8.png|binary
 icon-themes/sifr/res/odb_24_8.png|binary
 icon-themes/sifr/res/odb_32_8.png|binary
 icon-themes/sifr/res/odb_48_8.png|binary
 icon-themes/sifr/res/odf_16_8.png|binary
 icon-themes/sifr/res/odf_24_8.png|binary
 icon-themes/sifr/res/odf_32_8.png|binary
 icon-themes/sifr/res/odf_48_8.png|binary
 icon-themes/sifr/res/odg_16_8.png|binary
 icon-themes/sifr/res/odg_24_8.png|binary
 icon-themes/sifr/res/odg_32_8.png|binary
 icon-themes/sifr/res/odg_48_8.png|binary
 icon-themes/sifr/res/odm_16_8.png|binary
 icon-themes/sifr/res/odm_24_8.png|binary
 icon-themes/sifr/res/odm_32_8.png|binary
 icon-themes/sifr/res/odm_48_8.png|binary
 icon-themes/sifr/res/odp_16_8.png|binary
 icon-themes/sifr/res/odp_24_8.png|binary
 icon-themes/sifr/res/odp_32_8.png|binary
 icon-themes/sifr/res/odp_48_8.png|binary
 icon-themes/sifr/res/ods_16_8.png|binary
 icon-themes/sifr/res/ods_24_8.png|binary
 icon-themes/sifr/res/ods_32_8.png|binary
 icon-themes/sifr/res/ods_48_8.png|binary
 icon-themes/sifr/res/odt_16_8.png|binary
 icon-themes/sifr/res/odt_24_8.png|binary
 icon-themes/sifr/res/odt_32_8.png|binary
 icon-themes/sifr/res/odt_48_8.png|binary
 icon-themes/sifr/res/otf_16_8.png|binary
 icon-themes/sifr/res/otf_24_8.png|binary
 icon-themes/sifr/res/otf_32_8.png|binary
 icon-themes/sifr/res/otf_48_8.png|binary
 icon-themes/sifr/res/otg_16_8.png|binary
 icon-themes/sifr/res/otg_24_8.png|binary
 icon-themes/sifr/res/otg_32_8.png|binary
 icon-themes/sifr/res/otg_48_8.png|binary
 icon-themes/sifr/res/otp_16_8.png|binary
 icon-themes/sifr/res/otp_24_8.png|binary
 icon-themes/sifr/res/otp_32_8.png|binary
 icon-themes/sifr/res/otp_48_8.png|binary
 icon-themes/sifr/res/ots_16_8.png|binary
 icon-themes/sifr/res/ots_24_8.png|binary
 icon-themes/sifr/res/ots_32_8.png|binary
 icon-themes/sifr/res/ots_48_8.png|binary
 icon-themes/sifr/res/ott_16_8.png|binary
 icon-themes/sifr/res/ott_24_8.png|binary
 icon-themes/sifr/res/ott_32_8.png|binary
 icon-themes/sifr/res/ott_48_8.png|binary
 icon-themes/sifr/res/writer128.png   |binary
 icon-themes/sifr/sfx2/res/128x128_calc_doc-p.png |binary
 icon-themes/sifr/sfx2/res/128x128_draw_doc-p.png |binary
 icon-themes/sifr/sfx2/res/128x128_impress_doc-p.png  |binary
 icon-themes/sifr/sfx2/res/128x128_math_doc-p.png |binary
 icon-themes/sifr/sfx2/res/128x128_writer_doc-p.png   |binary
 icon-themes/sifr_dark/res/base128.png|binary
 icon-themes/sifr_dark/res/calc128.png|binary
 icon-themes/sifr_dark/res/draw128.png|binary
 icon-themes/sifr_dark/res/impress128.png |binary
 icon-themes/sifr_dark/res/math128.png|binary
 icon-themes/sifr_dark/res/odb_16_8.png   |binary
 icon-themes/sifr_dark/res/odb_24_8.png   |binary
 icon-themes/sifr_dark/res/odb_32_8.png   |binary
 icon-themes/sifr_dark/res/odb_48_8.png   |binary
 icon-themes/sifr_dark/res/odf_16_8.png   |binary
 icon-themes/sifr_dark/res/odf_24_8.png   |binary
 

  1   2   3   4   5   >