[Libreoffice-bugs] [Bug 155486] Some fonts styles don’t get embedded in ODF files

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155486

⁨خالد حسني⁩  changed:

   What|Removed |Added

Summary|LibreOffice supports Open   |Some fonts styles don’t get
   |Type embedded font? |embedded in ODF files

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

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

2023-06-18 Thread Andreas Heinisch (via logerrit)
 dbaccess/source/ui/app/AppController.cxx  |2 
 include/unotools/historyoptions.hxx   |4 -
 sfx2/source/appl/newhelp.cxx  |3 -
 sfx2/source/appl/sfxpicklist.cxx  |3 -
 unotools/source/config/historyoptions.cxx |   68 --
 5 files changed, 51 insertions(+), 29 deletions(-)

New commits:
commit 760c7a806ced3861086d5fdfbb7b4b1461948c27
Author: Andreas Heinisch 
AuthorDate: Thu Jun 15 19:48:18 2023 +0200
Commit: Andreas Heinisch 
CommitDate: Mon Jun 19 07:47:59 2023 +0200

tdf#38742 - Start Center: move last opened documents to the top

Change-Id: If395b0784d9bdcdc1200c15fca60647da825ea1e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153150
Tested-by: Jenkins
Reviewed-by: Andreas Heinisch 

diff --git a/dbaccess/source/ui/app/AppController.cxx 
b/dbaccess/source/ui/app/AppController.cxx
index 175f56b39724..ad18bff5892c 100644
--- a/dbaccess/source/ui/app/AppController.cxx
+++ b/dbaccess/source/ui/app/AppController.cxx
@@ -361,7 +361,7 @@ void SAL_CALL OApplicationController::disposing()
 aURL.GetURLNoPass( 
INetURLObject::DecodeMechanism::NONE ),
 aFilter,
 getStrippedDatabaseName(),
-std::nullopt, std::nullopt, std::nullopt);
+std::nullopt, std::nullopt);
 
 // add to recent document list
 if ( aURL.GetProtocol() == INetProtocol::File )
diff --git a/include/unotools/historyoptions.hxx 
b/include/unotools/historyoptions.hxx
index 53b9fcdfa805..b2388de2ad4b 100644
--- a/include/unotools/historyoptions.hxx
+++ b/include/unotools/historyoptions.hxx
@@ -73,13 +73,11 @@ namespace SvtHistoryOptions
 @param sTitle  document title to save in history
 @param sThumbnail  base64 encoded thumbnail of the item
 @param oIsReadOnly item was opened editable or read-only
-@param oIsPinned   item is pinned in the user-interface
 */
 UNOTOOLS_DLLPUBLIC void AppendItem(EHistoryType eHistory, const OUString& 
sURL,
const OUString& sFilter, const 
OUString& sTitle,
const std::optional& 
sThumbnail,
-   std::optional oIsReadOnly,
-   std::optional oIsPinned);
+   std::optional oIsReadOnly);
 
 /** Delete item from the specified list.
 */
diff --git a/sfx2/source/appl/newhelp.cxx b/sfx2/source/appl/newhelp.cxx
index 5c2d7cf6c0e1..e676bec19d4e 100644
--- a/sfx2/source/appl/newhelp.cxx
+++ b/sfx2/source/appl/newhelp.cxx
@@ -1175,8 +1175,7 @@ BookmarksTabPage_Impl::~BookmarksTabPage_Impl()
 for (sal_Int32 i = 0; i < nCount; ++i)
 {
 SvtHistoryOptions::AppendItem(EHistoryType::HelpBookmarks, 
m_xBookmarksBox->get_id(i), "",
-  m_xBookmarksBox->get_text(i), 
std::nullopt, std::nullopt,
-  std::nullopt);
+  m_xBookmarksBox->get_text(i), 
std::nullopt, std::nullopt);
 }
 
 m_xBookmarksBox.reset();
diff --git a/sfx2/source/appl/sfxpicklist.cxx b/sfx2/source/appl/sfxpicklist.cxx
index 2451a8d0cad8..fb676d981d35 100644
--- a/sfx2/source/appl/sfxpicklist.cxx
+++ b/sfx2/source/appl/sfxpicklist.cxx
@@ -131,8 +131,7 @@ void SfxPickListImpl::AddDocumentToPickList( const 
SfxObjectShell* pDocSh )
 aFilter,
 aTitle,
 aThumbnail,
-oIsReadOnly,
-std::nullopt);
+oIsReadOnly);
 
 if ( aURL.GetProtocol() == INetProtocol::File )
 Application::AddToRecentDocumentList( aURL.GetURLNoPass( 
INetURLObject::DecodeMechanism::NONE ),
diff --git a/unotools/source/config/historyoptions.cxx 
b/unotools/source/config/historyoptions.cxx
index 0b9e4d717b83..2cda950858d2 100644
--- a/unotools/source/config/historyoptions.cxx
+++ b/unotools/source/config/historyoptions.cxx
@@ -134,7 +134,8 @@ std::vector< HistoryItem > GetList( EHistoryType eHistory )
 xSet->getPropertyValue(s_sPassword) >>= aItem.sPassword;
 xSet->getPropertyValue(s_sThumbnail) >>= aItem.sThumbnail;
 xSet->getPropertyValue(s_sReadOnly) >>= aItem.isReadOnly;
-xSet->getPropertyValue(s_sPinned) >>= aItem.isPinned;
+if (xSet->getPropertySetInfo()->hasPropertyByName(s_sPinned))
+xSet->getPropertyValue(s_sPinned) >>= aItem.isPinned;
 
 aRet.push_back(aItem);
 }
@@ -160,7 +161,7 @@ std::vector< HistoryItem > GetList( EHistoryType eHistory )
 
 void AppendItem(EHistoryType eHistory, const OUString& sURL, const OUString& 
sFilter,
 const OUString& sTitle, const std::optional& 
sThumbnail,
-::std::optional const oIsReadOnly, 

[Libreoffice-commits] core.git: Branch 'libreoffice-7-6' - canvas/source cppcanvas/source offapi/com

2023-06-18 Thread Khaled Hosny (via logerrit)
 canvas/source/cairo/cairo_textlayout.cxx   |   23 +-
 canvas/source/cairo/cairo_textlayout.hxx   |3 +
 canvas/source/directx/dx_textlayout.cxx|   21 +
 canvas/source/directx/dx_textlayout.hxx|3 +
 canvas/source/directx/dx_textlayout_drawhelper.cxx |5 +-
 canvas/source/directx/dx_textlayout_drawhelper.hxx |1 
 canvas/source/opengl/ogl_canvashelper.cxx  |6 ++
 canvas/source/opengl/ogl_textlayout.cxx|   20 
 canvas/source/opengl/ogl_textlayout.hxx|3 +
 canvas/source/vcl/textlayout.cxx   |   24 +-
 canvas/source/vcl/textlayout.hxx   |3 +
 cppcanvas/source/inc/implrenderer.hxx  |1 
 cppcanvas/source/mtfrenderer/implrenderer.cxx  |6 ++
 cppcanvas/source/mtfrenderer/textaction.cxx|   29 
 cppcanvas/source/mtfrenderer/textaction.hxx|1 
 offapi/com/sun/star/rendering/XTextLayout.idl  |   47 +
 16 files changed, 190 insertions(+), 6 deletions(-)

New commits:
commit a20093c2b7f4ad0822a34507980f5be9d47b812c
Author: Khaled Hosny 
AuthorDate: Sun Jun 18 17:35:32 2023 +0300
Commit: خالد حسني 
CommitDate: Mon Jun 19 07:36:26 2023 +0200

tdf#155810: Pass Kashida insertion positions through canvas

This was missed in:

commit 3901e029bd39575f700e69a73818565d62226a23
Author: Khaled Hosny 
Date:   Mon Aug 8 22:08:37 2022 +0200

tdf#104921: Cleanup Kashida insertion logic

The width adjustment passed through, but Kashida insertion positions
didn’t, leaving gaps in place of Kashidas when canvas is used
(apparently canvas is only used for slideshow).

Change-Id: I25ff30f10cc46a5c87bda2f3936df26b2fc926b1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153224
Tested-by: Jenkins
Reviewed-by: خالد حسني 

diff --git a/canvas/source/cairo/cairo_textlayout.cxx 
b/canvas/source/cairo/cairo_textlayout.cxx
index 955a180330d4..ff12a6092c13 100644
--- a/canvas/source/cairo/cairo_textlayout.cxx
+++ b/canvas/source/cairo/cairo_textlayout.cxx
@@ -131,6 +131,26 @@ namespace cairocanvas
 maLogicalAdvancements = aAdvancements;
 }
 
+uno::Sequence< sal_Bool > SAL_CALL TextLayout::queryKashidaPositions(  )
+{
+std::unique_lock aGuard( m_aMutex );
+
+return maKashidaPositions;
+}
+
+void SAL_CALL TextLayout::applyKashidaPositions( const uno::Sequence< 
sal_Bool >& aPositions )
+{
+std::unique_lock aGuard( m_aMutex );
+
+if( aPositions.hasElements() && aPositions.getLength() != 
maText.Length )
+{
+SAL_WARN("canvas.cairo", "TextLayout::applyKashidaPositions(): 
mismatching number of positions" );
+throw lang::IllegalArgumentException("mismatching number of 
positions", getXWeak(), 1);
+}
+
+maKashidaPositions = aPositions;
+}
+
 geometry::RealRectangle2D SAL_CALL TextLayout::queryTextBounds(  )
 {
 std::unique_lock aGuard( m_aMutex );
@@ -263,8 +283,9 @@ namespace cairocanvas
 if (maLogicalAdvancements.hasElements())
 {
 KernArray aOffsets(setupTextOffsets(maLogicalAdvancements, 
viewState, renderState));
+o3tl::span 
aKashidaArray(maKashidaPositions.getConstArray(), 
maKashidaPositions.getLength());
 
-rOutDev.DrawTextArray( rOutpos, maText.Text, aOffsets, {},
+rOutDev.DrawTextArray( rOutpos, maText.Text, aOffsets, 
aKashidaArray,

::canvas::tools::numeric_cast(maText.StartPosition),

::canvas::tools::numeric_cast(maText.Length) );
 }
diff --git a/canvas/source/cairo/cairo_textlayout.hxx 
b/canvas/source/cairo/cairo_textlayout.hxx
index ad9f3466081a..ed8265e8b391 100644
--- a/canvas/source/cairo/cairo_textlayout.hxx
+++ b/canvas/source/cairo/cairo_textlayout.hxx
@@ -60,6 +60,8 @@ namespace cairocanvas
 virtual css::uno::Sequence< css::geometry::RealRectangle2D > SAL_CALL 
queryMeasures(  ) override;
 virtual css::uno::Sequence< double > SAL_CALL 
queryLogicalAdvancements(  ) override;
 virtual void SAL_CALL applyLogicalAdvancements( const 
css::uno::Sequence< double >& aAdvancements ) override;
+virtual css::uno::Sequence< sal_Bool > SAL_CALL queryKashidaPositions( 
 ) override;
+virtual void SAL_CALL applyKashidaPositions( const css::uno::Sequence< 
sal_Bool >& aPositions ) override;
 virtual css::geometry::RealRectangle2D SAL_CALL queryTextBounds(  ) 
override;
 virtual double SAL_CALL justify( double nSize ) override;
 virtual double SAL_CALL combinedJustify( const css::uno::Sequence< 
css::uno::Reference< css::rendering::XTextLayout > >& aNextLayouts, double 
nSize ) override;
@@ -94,6 +96,7 @@ namespace cairocanvas
 private:
 css::rendering::StringContext  

[Libreoffice-bugs] [Bug 155674] MAILMERGE: next record hides all fields during edit (output result is OK)

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155674

--- Comment #4 from Luiz Angelo Daros de Luca  ---
I missed something during ctrl+c/ctrl+v. The text is like this (There is a
"Next Record"):

Num:  Field1:  Field 2:
 Field 3: 

Num:  Field1:  Field 2:
 Field 3: 

The uploaded files were fine.

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

[Libreoffice-bugs] [Bug 60129] VIEWING: Window -> New window command disabled in "Web layout" view mode

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60129

Mike Kaganski  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 155918] split writer window

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155918

Mike Kaganski  changed:

   What|Removed |Added

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

--- Comment #2 from Mike Kaganski  ---
A related issue is bug 60129 - the "New Window" in unavailable in Web View.

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

[Libreoffice-bugs] [Bug 155918] split writer window

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155918

Mike Kaganski  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #1 from Mike Kaganski  ---
There is Window->New Window, allowing one to have as many views of the same
document as needed, and you can position them side by side, or whatever you
like.

The Calc's split makes no sense in Writer, because, unlike Calc (and some *text
editors*), there is no way to align different parts of text in Writer: the
pages may have different size, orientation, paragraphs may have different
alignment, etc. The splitting functionality in Calc is only useful because it
allows to have aligned view, where you have, say, same columns in two
horizontally-split parts of the window.

The request is, therefore, basically not valid (requesting to implement an
already available functionality, in a way that makes no sense for the specific
component). Let me close it WONTFIX.

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

[Libreoffice-bugs] [Bug 136896] Replying to own comments (based on user info)

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136896

--- Comment #14 from namdosan  ---
Experience the excitement of virtual racing as you take control of powerful
vehicles, maneuvering through intense obstacles and competing against skilled
opponents https://cargames.one

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

[Libreoffice-bugs] [Bug 155918] New: split writer window

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155918

Bug ID: 155918
   Summary: split writer window
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fberto...@tiscali.it

Why it is not possible to split a Writer page as it is possible with Calc? What
technical problems there are?
If you have a long document, splitting is absolutely useful!
Please do it, as soon as possible!

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

[Libreoffice-bugs] [Bug 155917] Writer crashes when inserting ODT file containing PDF into table in another ODT doc

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155917

--- Comment #1 from konsultor  ---
error displayed as 

!!br0ken!!

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

[Libreoffice-bugs] [Bug 155917] New: Writer crashes when inserting ODT file containing PDF into table in another ODT doc

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155917

Bug ID: 155917
   Summary: Writer crashes when inserting ODT file containing PDF
into table in another ODT doc
   Product: LibreOffice
   Version: 7.4.3.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: u...@flanagan-consulting.com

Description:
To print multiple copies of business cards per page, inserted 3x26 table into
ODT doc.  Separately created logo in Impress then exported as PDF, which was
included in an ODT card.doc with type to form the business card.  Going from
cell to cell in columns 1 and 3 inserting the card.odt, Writer crashes
sometimes with something like "broken" at the end of a partially completed
insertion of card.doc.  Adjusted column widths by dragging the vertical
borders.

Steps to Reproduce:
1. create logo in Impress, export as .svg
2. insert logo.svg into card.odt then add text
3. create printer page by inserting 3  col x 16 line table in new odt
4. Insert/Text from file:  place card.odt into cells in cols 1 & 3
5. Writer may crash 

Actual Results:
Writer crashes when inserting test from file when the file contains a PDF logo 

Expected Results:
As happen s much of the time, the card.odt should occupy one cell of the table
for each insertion


Reproducible: Sometimes


User Profile Reset: No

Additional Info:
While setting up the exact dimensions and spacing, I adjusted column widths by
dragging the vertical margins of the table with the mouse.

Version: 7.4.3.2 / LibreOffice Community
Build ID: 40(Build:2)
CPU threads: 12; OS: Linux 5.14; UI render: default; VCL: kf5 (cairo+xcb)
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

Other functions performing OK so doesn't look like profile problem.

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

[Libreoffice-bugs] [Bug 154756] Vertical text direction results in rotation, not vertical text direction

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154756

--- Comment #16 from Volga  ---
To implement this, LibreOffice need to satisfy following conditions: 1) Call
for API that forced character upright in vertical layout from our libraries. 2)
Add options on the interface. 3) Implement additional attribute to save into
documents.

This require all characters to be LTR direction.

See:
https://developer.mozilla.org/en-US/docs/Web/CSS/text-orientation
https://www.gimp.org/news/2018/08/19/gimp-2-10-6-released/#vertical-text-layers

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

[Libreoffice-bugs] [Bug 92380] Style preview rendering problems in the dialog, toolbar and sidebar

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92380

--- Comment #46 from MarjaE  ---
I try to set readable fonts and font sizes, but the ones in that sidebar are
even smaller and even harder to read than in preferences. Even if I reduce
resolution to 720p on a 24" display, some of the text is less than 2mm high.

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

[Libreoffice-bugs] [Bug 155914] LibreOffice bug ridden since update 7.0 approx

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155914

--- Comment #2 from Mike Kaganski  ---
(In reply to m.a.riosv from comment #1)
> file:///C:/Program%20Files/LibreOffice/help/en-US/text/shared/optionen/
> 01040600.html?System=WIN=WRITER=modules/swriter/ui/
> optformataidspage/OptFormatAidsPage#bm_id3155388

This was a file url from your local help, unclickable, and inaccessible when
there's no local help or OS is different.

https://help.libreoffice.org/7.5/en-US/text/shared/optionen/01040600.html?DbPAR=WRITER#hd_id3156180

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

[Libreoffice-bugs] [Bug 152621] The formula editor does not render vectors properly

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152621

--- Comment #3 from QA Administrators  ---
Dear jdb1o...@gmail.com,

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 155674] MAILMERGE: next record hides all fields during edit (output result is OK)

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155674

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 152428] inserting an image into a writer file prevents further editing of the document

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152428

--- Comment #5 from QA Administrators  ---
Dear Steve Garry,

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 148487] when you try to insert a special character, Libre Office closes

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148487

--- Comment #9 from QA Administrators  ---
Dear Kenou,

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 151062] The UI flickering and lagging in GTK3. The Page following scroll from style format when it scrolling

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151062

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

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 148388] LibreOffice (either Writer, or Calc, etc.) side panel flicker behaviour on Linux AMD64 (GFX stack or OpenGL issue)

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148388

--- Comment #3 from QA Administrators  ---
Dear Dubravko Mario Radic,

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 147173] Impress Presentation Crash when I increase the font size too fast in a >10mb document

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147173

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

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 148018] Undo of deleting a row in large sheet takes 15 seconds (deleting 7 seconds). With track changes it takes 3, 5 second for both actions

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148018

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

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 86584] Chart is hidden, if data separated by split/freeze limit of the window

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86584

--- Comment #11 from QA Administrators  ---
Dear Laurent BP,

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 83999] MySQL direct driver: Hang / poor performance when reading table containing binary encoded data string

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83999

--- Comment #25 from QA Administrators  ---
Dear Alex Thurgood,

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 64641] EDITING: Filtering in Mac-Addressbook is not possible

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64641

--- Comment #25 from QA Administrators  ---
Dear g_winkelmann,

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 107702] Metadata lost when compressing images

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107702

--- Comment #6 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 155906] Default icons are unreadable in dark mode (Xfce)

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155906

V Stuart Foote  changed:

   What|Removed |Added

 OS|All |Linux (All)
Summary|Default icons are   |Default icons are
   |unreadable in dark mode |unreadable in dark mode
   ||(Xfce)

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

[Libreoffice-bugs] [Bug 155866] Some images in pptx can't be rendered correctly

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155866

--- Comment #4 from disco  ---
Created attachment 187977
  --> https://bugs.documentfoundation.org/attachment.cgi?id=187977=edit
screenshot

phone info:
os:android 10
brand:huawei
screen:480dip

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

[Libreoffice-bugs] [Bug 155866] Some images in pptx can't be rendered correctly

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155866

--- Comment #3 from disco  ---
on my phone it's like this
android 10,huawei,480dip

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

[Libreoffice-bugs] [Bug 155916] New: Crash in: __scrt_throw_std_bad_alloc()

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155916

Bug ID: 155916
   Summary: Crash in: __scrt_throw_std_bad_alloc()
   Product: LibreOffice
   Version: 7.5.4.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: aer...@protonmail.com

This bug was filed from the crash reporting server and is
br-4eb35d5c-efe0-4c17-9cd7-2fb3687e217e.
=

When I ran the graphics test, the tests took longer than expected (10s or more,
rather than 5).

When I clicked out of it, I saw LibreOffice lagging, and soon after it crashed.

Either integrated graphics doesn't like being tested or there is another bug.

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

[Libreoffice-bugs] [Bug 130366] Auto-caps working only when word is preceded with a period

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130366

LeroyG  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 80521] FORMATTING: Automatic capitalization doesn't work when a sentence ends with a number or capitalized last word

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80521

LeroyG  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 88666] Auto-Capitalization of paragraphs and new lines i/o sentences

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88666

LeroyG  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 116718] Autocorrect--Capitalize first letter of every sentence--missing .) or ." as end of sentence

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116718

LeroyG  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 87911] Every sentence starting word auto capitalize is not working

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87911

LeroyG  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 116718] Autocorrect--Capitalize first letter of every sentence--missing .) or ." as end of sentence

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116718

LeroyG  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 88666] Auto-Capitalization of paragraphs and new lines i/o sentences

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88666

LeroyG  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 130366] Auto-caps working only when word is preceded with a period

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130366

LeroyG  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 87911] Every sentence starting word auto capitalize is not working

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87911

LeroyG  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 88666] Auto-Capitalization of paragraphs and new lines i/o sentences

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88666

LeroyG  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 155914] LibreOffice bug ridden since update 7.0 approx

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155914

m.a.riosv  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTABUG

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

[Libreoffice-bugs] [Bug 155914] LibreOffice bug ridden since update 7.0 approx

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155914

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  ---
Menu/Tools/Options/LibreOffice Writer/Formatting aids – Direct cursor

file:///C:/Program%20Files/LibreOffice/help/en-US/text/shared/optionen/01040600.html?System=WIN=WRITER=modules/swriter/ui/optformataidspage/OptFormatAidsPage#bm_id3155388

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

[Libreoffice-bugs] [Bug 155908] SQL window does not receive text field content from Writer

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155908

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Reproducible
Version: 7.5.4.2 (X86_64) / LibreOffice Community
Build ID: 36ccfdc35048b057fd9854c757a8b67ec53977b6
CPU threads: 16; OS: Windows 10.0 Build 22621; UI render: default; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded
Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 069c7dc4e9706b40ca12d83d83f90f41cec948f8
CPU threads: 16; OS: Windows 10.0 Build 22621; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded

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

Re: Unbalanced tag

2023-06-18 Thread Regina Henschel

Hi Ilmari,

Ilmari Lauhakangas schrieb am 18.06.2023 um 20:53:

I've now cleaned up the page.


Thank you.



The reason why we want to break up individual bullet points into 
translation units is that otherwise translators may end up with a giant 
pile of text in a single unit. It's not very fun trying to wrestle that 
in a small text box in the translation interface.


That makes sense.



If there is ever a problem with the  tags, Save Changes will 
point out the area that has the problem (while blocking you from saving).


That happens to me.



One bad habit we have to kick for release notes pages is the use of 
thumbnailed images with captions. Unfortunately this breaks our newly 
acquired mobile friendliness. Instead we should use  elements. 
You can see an example in this edit: 
https://wiki.documentfoundation.org/index.php?title=ReleaseNotes%2F7.4=revision=642340=642284 


I have written a document which is linked in the release notes. That 
document contains screenshots. I have mainly used a separate document to 
make the example shapes copyable. I think that should be OK.


Kind regards,
Regina



[Libreoffice-bugs] [Bug 155911] Importing and formatting dates!

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155911

ady  changed:

   What|Removed |Added

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

--- Comment #2 from ady  ---
I'm sorry to say that nothing in the prior comments makes sense, other than
perhaps there is some lack of knowledge and/or experience using Calc.

The import dialog allows concatenating separators, and it also allows
(multiple) space characters as separators, among others.

Additionally, the # marks in attachment 187971 (e.g. cell A65) are just
indicating that the width of the column is too narrow so as to show the values
in their current format; just make the column wider.

Please next time search for info; the online help, users' mailing lists,
https://ask.libreoffice.org and even a web search can be useful.

I'm closing this as NOTABUG.

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

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

2023-06-18 Thread Caolán McNamara (via logerrit)
 vcl/source/gdi/metaact.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1128a505a1637cce4c35871432ac902ca2335c64
Author: Caolán McNamara 
AuthorDate: Sun Jun 18 21:02:43 2023 +0100
Commit: Caolán McNamara 
CommitDate: Sun Jun 18 22:55:11 2023 +0200

ofz#59902 Integer-overflow

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

diff --git a/vcl/source/gdi/metaact.cxx b/vcl/source/gdi/metaact.cxx
index 241940c3b79d..e5e243f55652 100644
--- a/vcl/source/gdi/metaact.cxx
+++ b/vcl/source/gdi/metaact.cxx
@@ -1214,7 +1214,7 @@ MetaMaskScalePartAction::MetaMaskScalePartAction( const 
Point& rDstPt, const Siz
 
 void MetaMaskScalePartAction::Execute( OutputDevice* pOut )
 {
-if (!AllowRect(tools::Rectangle(maDstPt, maDstSz)))
+if (!AllowRect(pOut->LogicToPixel(tools::Rectangle(maDstPt, maDstSz
 return;
 
 pOut->DrawMask( maDstPt, maDstSz, maSrcPt, maSrcSz, maBmp, maColor, 
MetaActionType::MASKSCALE );


Infra call on Tue, Jun 20 at 16:30 UTC

2023-06-18 Thread Guilhem Moulin
Hi there,

The next infra call will take place at `date -d "Tue, 20 Jun 2023 16:30 UTC"`
(18:30 Berlin time).

We'll meet at https://jitsi.documentfoundation.org/infra and write the minutes
to https://pad.documentfoundation.org/p/infra .  Agenda:

 * Gerrit upgrade to 3.7
 * Download-archive migration
 * Salstack status

See you there!
Cheers,
-- 
Guilhem.


signature.asc
Description: PGP signature


[Libreoffice-bugs] [Bug 103610] [META] Slide show (presentation mode) bugs and enhancements

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103610

⁨خالد حسني⁩  changed:

   What|Removed |Added

Version|Inherited From OOo  |unspecified

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

[Libreoffice-bugs] [Bug 150285] [META] Problems with Kashida, Justified Arabic/Persian text

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150285
Bug 150285 depends on bug 155810, which changed state.

Bug 155810 Summary: Justified Arabic text has gaps between characters in 
presentation mode
https://bugs.documentfoundation.org/show_bug.cgi?id=155810

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 103610] [META] Slide show (presentation mode) bugs and enhancements

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103610
Bug 103610 depends on bug 155810, which changed state.

Bug 155810 Summary: Justified Arabic text has gaps between characters in 
presentation mode
https://bugs.documentfoundation.org/show_bug.cgi?id=155810

   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: include/sfx2 sfx2/source xmlsecurity/source

2023-06-18 Thread TokieSan (via logerrit)
 include/sfx2/objsh.hxx |   10 +
 include/sfx2/strings.hrc   |1 
 sfx2/source/doc/guisaveas.cxx  |7 -
 sfx2/source/doc/objserv.cxx|   81 ++---
 xmlsecurity/source/component/documentdigitalsignatures.cxx |8 +
 5 files changed, 86 insertions(+), 21 deletions(-)

New commits:
commit 46722dbaa7795074e3c5043a76ae3f3a7782491e
Author: TokieSan 
AuthorDate: Tue Jun 6 21:51:42 2023 +0300
Commit: Thorsten Behrens 
CommitDate: Sun Jun 18 22:03:43 2023 +0200

tdf#155665 Adding option to remember signatures for each save

Added the option in digital signatures dialog to remember used
signature.

Implemented ResignDocument function in objserv.cxx to resign after
every save in case the option to remember signature is on.
Added a new dialog box that checks whether there is a need to
remember the signature.

Change-Id: Ia7dbcc952044e9542e3fe6cd84b5d6633fcd1461
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152687
Reviewed-by: Heiko Tietze 
Reviewed-by: Thorsten Behrens 
Tested-by: Thorsten Behrens 

diff --git a/include/sfx2/objsh.hxx b/include/sfx2/objsh.hxx
index b29fb43d77e4..15533c2954ca 100644
--- a/include/sfx2/objsh.hxx
+++ b/include/sfx2/objsh.hxx
@@ -190,6 +190,7 @@ private:
   // sal_False := new object
 boolbIsInGenerateThumbnail; //optimize thumbnail 
generate and store procedure to improve odt saving performance, i120030
 boolmbAvoidRecentDocs; ///< Avoid adding to the 
recent documents list, if not necessary.
+boolbRememberSignature; // Do we want to remember 
the signature.
 
 enum TriState   {undefined, yes, no};
 TriStatembContinueImportOnFilterExceptions = 
undefined; // try to import as much as possible
@@ -199,6 +200,8 @@ private:
 SAL_DLLPRIVATE void UpdateTime_Impl(const css::uno::Reference<
 css::document::XDocumentProperties> & i_xDocProps);
 
+css::uno::Sequence< css::security::DocumentSignatureInformation > 
rSignatureInfosRemembered;
+
 SAL_DLLPRIVATE bool SaveTo_Impl(SfxMedium , const SfxItemSet* pSet 
);
 
 protected:
@@ -350,13 +353,14 @@ public:
 void AfterSigning(bool bSignSuccess, bool bSignScriptingContent);
 bool HasValidSignatures() const;
 SignatureState  GetDocumentSignatureState();
-voidSignDocumentContent(weld::Window* 
pDialogParent);
+boolSignDocumentContent(weld::Window* 
pDialogParent);
 css::uno::Sequence 
GetDocumentSignatureInformation(
 bool bScriptingContent,
 const css::uno::Reference& 
xSigner
 = css::uno::Reference());
 
 bool SignDocumentContentUsingCertificate(const 
css::uno::Reference& xCertificate);
+bool ResignDocument(css::uno::Sequence< 
css::security::DocumentSignatureInformation >& rSignaturesInfo);
 
 void SignSignatureLine(weld::Window* pDialogParent, const OUString& 
aSignatureLineId,
const 
css::uno::Reference& xCert,
@@ -364,7 +368,7 @@ public:
const css::uno::Reference& 
xInvalidGraphic,
const OUString& aComment);
 SignatureState  GetScriptingSignatureState();
-voidSignScriptingContent(weld::Window* 
pDialogParent);
+boolSignScriptingContent(weld::Window* 
pDialogParent);
 DECL_DLLPRIVATE_LINK(SignDocumentHandler, weld::Button&, void);
 
 virtual std::shared_ptr 
CreateDocumentInfoDialog(weld::Window* pParent, const SfxItemSet& rItemSet);
@@ -458,6 +462,8 @@ public:
 /// Don't add to the recent documents - it's an expensive operation, 
sometimes it is not wanted.
 boolIsAvoidRecentDocs() const { return 
mbAvoidRecentDocs; }
 
+boolIsRememberingSignature() const { return 
bRememberSignature; }
+
 /// Don't add to the recent documents - it's an expensive operation, 
sometimes it is not wanted.
 voidAvoidRecentDocs(bool bAvoid) { 
mbAvoidRecentDocs = bAvoid; }
 
diff --git a/include/sfx2/strings.hrc b/include/sfx2/strings.hrc
index bd2c0b5d5630..3ccc50cb0947 100644
--- a/include/sfx2/strings.hrc
+++ b/include/sfx2/strings.hrc
@@ -149,6 +149,7 @@
 #define RID_SVXSTR_XMLSEC_QUERY_LOSINGSIGNATURE 
NC_("RID_SVXSTR_XMLSEC_QUERY_LOSINGSIGNATURE", "Saving will remove all existing 
signatures.\nDo you want to continue saving the document?")
 #define RID_SVXSTR_XMLSEC_QUERY_SAVEBEFORESIGN  
NC_("RID_SVXSTR_XMLSEC_QUERY_SAVEBEFORESIGN", "The document has to be saved 
before it can be signed.\nDo you want to save the document?")
 #define STR_QUERY_CANCELCHECKOUT

[Libreoffice-commits] core.git: canvas/source cppcanvas/source offapi/com

2023-06-18 Thread Khaled Hosny (via logerrit)
 canvas/source/cairo/cairo_textlayout.cxx   |   23 +-
 canvas/source/cairo/cairo_textlayout.hxx   |3 +
 canvas/source/directx/dx_textlayout.cxx|   21 +
 canvas/source/directx/dx_textlayout.hxx|3 +
 canvas/source/directx/dx_textlayout_drawhelper.cxx |5 +-
 canvas/source/directx/dx_textlayout_drawhelper.hxx |1 
 canvas/source/opengl/ogl_canvashelper.cxx  |6 ++
 canvas/source/opengl/ogl_textlayout.cxx|   20 
 canvas/source/opengl/ogl_textlayout.hxx|3 +
 canvas/source/vcl/textlayout.cxx   |   24 +-
 canvas/source/vcl/textlayout.hxx   |3 +
 cppcanvas/source/inc/implrenderer.hxx  |1 
 cppcanvas/source/mtfrenderer/implrenderer.cxx  |6 ++
 cppcanvas/source/mtfrenderer/textaction.cxx|   29 
 cppcanvas/source/mtfrenderer/textaction.hxx|1 
 offapi/com/sun/star/rendering/XTextLayout.idl  |   47 +
 16 files changed, 190 insertions(+), 6 deletions(-)

New commits:
commit 68a4f005bc3e74d847e82dddf3237137cf3a1648
Author: Khaled Hosny 
AuthorDate: Sun Jun 18 17:35:32 2023 +0300
Commit: خالد حسني 
CommitDate: Sun Jun 18 22:01:53 2023 +0200

tdf#155810: Pass Kashida insertion positions through canvas

This was missed in:

commit 3901e029bd39575f700e69a73818565d62226a23
Author: Khaled Hosny 
Date:   Mon Aug 8 22:08:37 2022 +0200

tdf#104921: Cleanup Kashida insertion logic

The width adjustment passed through, but Kashida insertion positions
didn’t, leaving gaps in place of Kashidas when canvas is used
(apparently canvas is only used for slideshow).

Change-Id: I25ff30f10cc46a5c87bda2f3936df26b2fc926b1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153234
Tested-by: Jenkins
Reviewed-by: خالد حسني 

diff --git a/canvas/source/cairo/cairo_textlayout.cxx 
b/canvas/source/cairo/cairo_textlayout.cxx
index 955a180330d4..ff12a6092c13 100644
--- a/canvas/source/cairo/cairo_textlayout.cxx
+++ b/canvas/source/cairo/cairo_textlayout.cxx
@@ -131,6 +131,26 @@ namespace cairocanvas
 maLogicalAdvancements = aAdvancements;
 }
 
+uno::Sequence< sal_Bool > SAL_CALL TextLayout::queryKashidaPositions(  )
+{
+std::unique_lock aGuard( m_aMutex );
+
+return maKashidaPositions;
+}
+
+void SAL_CALL TextLayout::applyKashidaPositions( const uno::Sequence< 
sal_Bool >& aPositions )
+{
+std::unique_lock aGuard( m_aMutex );
+
+if( aPositions.hasElements() && aPositions.getLength() != 
maText.Length )
+{
+SAL_WARN("canvas.cairo", "TextLayout::applyKashidaPositions(): 
mismatching number of positions" );
+throw lang::IllegalArgumentException("mismatching number of 
positions", getXWeak(), 1);
+}
+
+maKashidaPositions = aPositions;
+}
+
 geometry::RealRectangle2D SAL_CALL TextLayout::queryTextBounds(  )
 {
 std::unique_lock aGuard( m_aMutex );
@@ -263,8 +283,9 @@ namespace cairocanvas
 if (maLogicalAdvancements.hasElements())
 {
 KernArray aOffsets(setupTextOffsets(maLogicalAdvancements, 
viewState, renderState));
+o3tl::span 
aKashidaArray(maKashidaPositions.getConstArray(), 
maKashidaPositions.getLength());
 
-rOutDev.DrawTextArray( rOutpos, maText.Text, aOffsets, {},
+rOutDev.DrawTextArray( rOutpos, maText.Text, aOffsets, 
aKashidaArray,

::canvas::tools::numeric_cast(maText.StartPosition),

::canvas::tools::numeric_cast(maText.Length) );
 }
diff --git a/canvas/source/cairo/cairo_textlayout.hxx 
b/canvas/source/cairo/cairo_textlayout.hxx
index ad9f3466081a..ed8265e8b391 100644
--- a/canvas/source/cairo/cairo_textlayout.hxx
+++ b/canvas/source/cairo/cairo_textlayout.hxx
@@ -60,6 +60,8 @@ namespace cairocanvas
 virtual css::uno::Sequence< css::geometry::RealRectangle2D > SAL_CALL 
queryMeasures(  ) override;
 virtual css::uno::Sequence< double > SAL_CALL 
queryLogicalAdvancements(  ) override;
 virtual void SAL_CALL applyLogicalAdvancements( const 
css::uno::Sequence< double >& aAdvancements ) override;
+virtual css::uno::Sequence< sal_Bool > SAL_CALL queryKashidaPositions( 
 ) override;
+virtual void SAL_CALL applyKashidaPositions( const css::uno::Sequence< 
sal_Bool >& aPositions ) override;
 virtual css::geometry::RealRectangle2D SAL_CALL queryTextBounds(  ) 
override;
 virtual double SAL_CALL justify( double nSize ) override;
 virtual double SAL_CALL combinedJustify( const css::uno::Sequence< 
css::uno::Reference< css::rendering::XTextLayout > >& aNextLayouts, double 
nSize ) override;
@@ -94,6 +96,7 @@ namespace cairocanvas
 private:
 css::rendering::StringContext  

[Libreoffice-bugs] [Bug 155910] Increase (or decrease) font size option in a text box causes the program to freeze in MacOS.

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155910

Telesto  changed:

   What|Removed |Added

 CC||tele...@surfxs.nl

--- Comment #1 from Telesto  ---
There are number of macOS specific fixes in the newer version. Please update to
- ideally - the 7.5 branch.

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

[Libreoffice-bugs] [Bug 155905] Has been crashing on and off for 2 weeks. Randomized, no trigger as far as I can tell. It freezes up, then closes all libre office windows compeltely

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155905

Telesto  changed:

   What|Removed |Added

 CC||tele...@surfxs.nl

--- Comment #1 from Telesto  ---
Would you mind to post the content the about screen. Help -> About -> Press the
button behind 'Version information' label and post it here.


If the help about mentions Skia/Vulkan

Menu -> Tools -> Options -> View -> Check Force Skia Software Rendering & Press
OK & Restart

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

[Libreoffice-bugs] [Bug 145699] UI: Expanding effects deck puts a the vertical scrollbar above spinboxes and such in draw

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145699

Telesto  changed:

   What|Removed |Added

 Resolution|INSUFFICIENTDATA|WORKSFORME

--- Comment #7 from Telesto  ---
No issue
Version: 7.6.0.0.alpha1+ (X86_64) / LibreOffice Community
Build ID: 389a8d52d9961f89c0b2847b30ee1ca59a8fdc80
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: default; VCL: win
Locale: nl-NL (nl_NL); UI: nl-NL
Calc: threaded

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

Re: Unbalanced tag

2023-06-18 Thread Ilmari Lauhakangas

On 18.6.2023 21.34, Regina Henschel wrote:

Hi Julien,

Julien Nabet schrieb am 18.06.2023 um 18:59:

On 18/06/2023 18:48, Regina Henschel wrote:

...
This is the text which produces the problem:

...


I'm not an expert but I think you need a "translate" start tag and a 
"translate" end tag at each line.


It seems I do not need it for each line but one pair is enough.
[..]


Perhaps there's another way but when taking a look at the existing 
page, it seemed the right way to do it. Also I tested it in Core 
section by using Preview and it seemed ok to me.


"look at the existing page" was the helpful hint. My error was this: I 
have only edit a section. I saw a  at the bottom in the edit 
window and had removed it. I was not aware that it belongs to the 
following heading, which is not included in the edit window. Looking at 
the complete page makes it visible.


I've now cleaned up the page.

The reason why we want to break up individual bullet points into 
translation units is that otherwise translators may end up with a giant 
pile of text in a single unit. It's not very fun trying to wrestle that 
in a small text box in the translation interface.


If there is ever a problem with the  tags, Save Changes will 
point out the area that has the problem (while blocking you from saving).


One bad habit we have to kick for release notes pages is the use of 
thumbnailed images with captions. Unfortunately this breaks our newly 
acquired mobile friendliness. Instead we should use  elements. 
You can see an example in this edit: 
https://wiki.documentfoundation.org/index.php?title=ReleaseNotes%2F7.4=revision=642340=642284


Ilmari


Re: Unbalanced tag

2023-06-18 Thread Regina Henschel

Hi Julien,

Julien Nabet schrieb am 18.06.2023 um 18:59:

On 18/06/2023 18:48, Regina Henschel wrote:

...
This is the text which produces the problem:

...


I'm not an expert but I think you need a "translate" start tag and a 
"translate" end tag at each line.


It seems I do not need it for each line but one pair is enough.
[..]


Perhaps there's another way but when taking a look at the existing page, 
it seemed the right way to do it. Also I tested it in Core section by 
using Preview and it seemed ok to me.


"look at the existing page" was the helpful hint. My error was this: I 
have only edit a section. I saw a  at the bottom in the edit 
window and had removed it. I was not aware that it belongs to the 
following heading, which is not included in the edit window. Looking at 
the complete page makes it visible.




If you're still stuck, I can submit it if you want (at worst, it's 
always possible to modify afterwards)


Thank you for your help.

Kind regards,
Regina


[Libreoffice-commits] core.git: Branch 'libreoffice-7-6' - sc/source

2023-06-18 Thread Maxim Monastirsky (via logerrit)
 sc/source/ui/view/tabvwsha.cxx |6 ++
 1 file changed, 6 insertions(+)

New commits:
commit dbcfabe25d2806974fedb774f39a3517dd1a4df6
Author: Maxim Monastirsky 
AuthorDate: Fri Jun 16 11:53:37 2023 +0300
Commit: Maxim Monastirsky 
CommitDate: Sun Jun 18 20:28:26 2023 +0200

sc drawstyles: Restore text selection after applying a style

Change-Id: I0a9bb39d8a7a9e770b3593eaa0a97867cbe86913
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153171
Tested-by: Jenkins
Reviewed-by: Maxim Monastirsky 
(cherry picked from commit 8a0a4a4e1fa63edaa5ef923e0db56df7d08eb73c)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153221

diff --git a/sc/source/ui/view/tabvwsha.cxx b/sc/source/ui/view/tabvwsha.cxx
index f1305672a096..ed556d472286 100644
--- a/sc/source/ui/view/tabvwsha.cxx
+++ b/sc/source/ui/view/tabvwsha.cxx
@@ -933,6 +933,8 @@ void ScTabViewShell::ExecStyle( SfxRequest& rReq )
 ScMarkData& rMark   = GetViewData().GetMarkData();
 ScModule*   pScMod  = SC_MOD();
 SdrObject*  pEditObject = GetDrawView()->GetTextEditObject();
+OutlinerView*   pOLV= GetDrawView()->GetTextEditOutlinerView();
+ESelection  aSelection  = pOLV ? pOLV->GetSelection() : 
ESelection();
 OUStringaRefName;
 boolbUndo   = rDoc.IsUndoEnabled();
 
@@ -1683,7 +1685,11 @@ void ScTabViewShell::ExecStyle( SfxRequest& rReq )
 // reactivate text editing instead:
 auto pFuText = dynamic_cast(GetDrawFuncPtr());
 if (pFuText && pEditObject != GetDrawView()->GetTextEditObject())
+{
 pFuText->SetInEditMode(pEditObject);
+if (GetDrawView()->GetTextEditOutlinerView())
+GetDrawView()->GetTextEditOutlinerView()->SetSelection(aSelection);
+}
 }
 
 void ScTabViewShell::GetStyleState( SfxItemSet& rSet )


[Libreoffice-bugs] [Bug 80303] UI: Property mapping - the legend should reflect this possibility

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80303

--- Comment #29 from amathieux...@gmail.com ---
(In reply to amathieux595 from comment #28)
> Created attachment 187976 [details]
> The chart with wrong legend colors

It is impossible to edit the legend's colors manually.

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

[Libreoffice-bugs] [Bug 80303] UI: Property mapping - the legend should reflect this possibility

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80303

--- Comment #28 from amathieux...@gmail.com ---
Created attachment 187976
  --> https://bugs.documentfoundation.org/attachment.cgi?id=187976=edit
The chart with wrong legend colors

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

[Libreoffice-bugs] [Bug 80303] UI: Property mapping - the legend should reflect this possibility

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80303

--- Comment #27 from amathieux...@gmail.com ---
Hi,this is till an issue in 7.5.4.2, I changed the bar colors of a Column
chart, but the legend doesn't reflect this change,  it still uses the default
colors.

Version: 7.5.4.2 (X86_64) / LibreOffice Community
Build ID: 50(Build:2)
CPU threads: 16; OS: Linux 6.1; UI render: default; VCL: gtk3
Locale: fr-FR (fr_FR.UTF-8); UI: en-US
7.5.4-2
Calc: threaded

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

[Libreoffice-bugs] [Bug 41560] [META] Keyboard shortcuts tab of Customization dialog

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=41560
Bug 41560 depends on bug 148836, which changed state.

Bug 148836 Summary: Categories in Customize keyboard dialog should be 
alphabetized
https://bugs.documentfoundation.org/show_bug.cgi?id=148836

   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: cui/source

2023-06-18 Thread Baole Fang (via logerrit)
 cui/source/customize/cfgutil.cxx |   33 +++--
 cui/source/inc/cfgutil.hxx   |2 +-
 2 files changed, 24 insertions(+), 11 deletions(-)

New commits:
commit 94bf26798bb973c7df26e2aa841099bb9cbaf3cb
Author: Baole Fang 
AuthorDate: Tue May 23 20:40:51 2023 -0400
Commit: Mike Kaganski 
CommitDate: Sun Jun 18 19:04:55 2023 +0200

tdf#148836: Alphabetize customize keyboard dialog

"All Commands" is kept at the top, and LibreOffice Macros, Styles and 
Sidebar Decks are kept at the bottom,
while others are sorted alphabetally.

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

diff --git a/cui/source/customize/cfgutil.cxx b/cui/source/customize/cfgutil.cxx
index aa77952563a8..3039486a2f30 100644
--- a/cui/source/customize/cfgutil.cxx
+++ b/cui/source/customize/cfgutil.cxx
@@ -469,21 +469,16 @@ void CuiConfigGroupListBox::ClearAll()
 m_xTreeView->clear();
 }
 
-void CuiConfigGroupListBox::InitModule()
+sal_Int32 CuiConfigGroupListBox::InitModule()
 {
 try
 {
+// return the number of added groups
 css::uno::Reference< css::frame::XDispatchInformationProvider > 
xProvider(m_xFrame, css::uno::UNO_QUERY_THROW);
 css::uno::Sequence< sal_Int16 > lGroups = 
xProvider->getSupportedCommandGroups();
 sal_Int32   c1  = lGroups.getLength();
 sal_Int32   i1  = 0;
-
-if ( c1 )
-{
-// Add All Commands category
-
aArr.push_back(std::make_unique(SfxCfgKind::GROUP_ALLFUNCTIONS,
 0));
-m_xTreeView->append(weld::toId(aArr.back().get()), 
CuiResId(RID_CUISTR_ALLFUNCTIONS));
-}
+sal_Int32   nAddedGroups = 0;
 
 for (i1=0; i1( 
SfxCfgKind::GROUP_FUNCTION, nGroupID ) );
 m_xTreeView->append(weld::toId(aArr.back().get()), sGroupName);
+nAddedGroups++;
 }
+return nAddedGroups;
 }
 catch(const css::uno::RuntimeException&)
 { throw; }
 catch(const css::uno::Exception&)
 {}
+return 0;
 }
 
 void CuiConfigGroupListBox::FillScriptList(const css::uno::Reference< 
css::script::browse::XBrowseNode >& xRootNode,
@@ -634,6 +632,7 @@ void CuiConfigGroupListBox::Init(const css::uno::Reference< 
css::uno::XComponent
 
 m_xContext = xContext;
 m_xFrame = xFrame;
+sal_Int32 nAddedGroups = 0;
 if( bEventMode )
 {
 m_sModuleLongName = sModuleLongName;
@@ -641,7 +640,7 @@ void CuiConfigGroupListBox::Init(const css::uno::Reference< 
css::uno::XComponent
 
m_xModuleCategoryInfo.set(m_xGlobalCategoryInfo->getByName(m_sModuleLongName), 
css::uno::UNO_QUERY_THROW);
 m_xUICmdDescription   = css::frame::theUICommandDescription::get( 
m_xContext );
 
-InitModule();
+nAddedGroups = InitModule();
 }
 
 SAL_INFO("cui.customize", "** ** About to initialise SF Scripts");
@@ -658,7 +657,21 @@ void CuiConfigGroupListBox::Init(const 
css::uno::Reference< css::uno::XComponent
 // TODO exception handling
 }
 
+m_xTreeView->thaw();
+m_xTreeView->make_sorted();
+m_xTreeView->make_unsorted();
+m_xTreeView->freeze();
+
+// add All Commands to the top
+if ( bEventMode && nAddedGroups )
+{
+aArr.insert(aArr.begin(), 
std::make_unique(SfxCfgKind::GROUP_ALLFUNCTIONS, 0));
+OUString sId(weld::toId(aArr.front().get()));
+OUString s(CuiResId(RID_CUISTR_ALLFUNCTIONS));
+m_xTreeView->insert(nullptr, 0, , , nullptr, nullptr, false, 
nullptr);
+}
 
+// add application macros to the end
 if ( rootNode.is() )
 {
 if ( bEventMode )
@@ -681,7 +694,7 @@ void CuiConfigGroupListBox::Init(const css::uno::Reference< 
css::uno::XComponent
 }
 }
 
-// add styles and sidebar decks
+// add styles and sidebar decks to the end
 if ( bEventMode )
 {
 aArr.push_back( std::make_unique( 
SfxCfgKind::GROUP_STYLES, 0, nullptr ) ); // TODO last parameter should contain 
user data
diff --git a/cui/source/inc/cfgutil.hxx b/cui/source/inc/cfgutil.hxx
index 44f532baa6ba..b1f22e4065b9 100644
--- a/cui/source/inc/cfgutil.hxx
+++ b/cui/source/inc/cfgutil.hxx
@@ -204,7 +204,7 @@ class CuiConfigGroupListBox
 css::uno::Reference< css::uno::XComponentContext > const & xCtx,
 std::u16string_view docName);
 
-void InitModule();
+sal_Int32 InitModule();
 void FillScriptList(const css::uno::Reference< 
css::script::browse::XBrowseNode >& xRootNode,
 const weld::TreeIter* pParentEntry);
 void FillFunctionsList(const css::uno::Sequence< 
css::frame::DispatchInformation >& xCommands);


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

2023-06-18 Thread Julien Nabet (via logerrit)
 i18npool/source/localedata/filewriter.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b0bdc7c11cdc98aa02b6bef11868d06f623d5d01
Author: Julien Nabet 
AuthorDate: Sun Jun 18 18:08:19 2023 +0200
Commit: Julien Nabet 
CommitDate: Sun Jun 18 19:00:45 2023 +0200

Regression from speed up startup 
time(e51b4fc8c278bfa0b0671bbdb0ab35346881ebb7)

for getOutlineNumberingLevels

TB Jenkins_Linux_Ubsan
26316 [_RUN_] SwDialogsTest::openAnyDialog
26317 NEXT/i18npool/source/localedata/localedata.cxx:1330:33: runtime 
error: call to function getOutlineNumberingLevels_de_DE through pointer to 
incorrect function type ´const rtl::OUString ***(*)(short &, short &, short &)´
26318 
/workdir/CustomTarget/i18npool/localedata/localedata_de_DE.cxx:1475: note: 
getOutlineNumberingLevels_de_DE defined here
26319 #0 0x7f5f948b75d8 in 
i18npool::LocaleDataImpl::getOutlineNumberingLevels(com::sun::star::lang::Locale
 const&) /i18npool/source/localedata/localedata.cxx:1330:33
26320 #1 0x7f5f948263ba in 
i18npool::DefaultNumberingProvider::getDefaultOutlineNumberings(com::sun::star::lang::Locale
 const&) 
/i18npool/source/defaultnumberingprovider/defaultnumberingprovider.cxx:345:36
26321 #2 0x7f5f948264ee in non-virtual thunk to 
i18npool::DefaultNumberingProvider::getDefaultOutlineNumberings(com::sun::star::lang::Locale
 const&) /i18npool/source/defaultnumberingprovider/defaultnumberingprovider.cxx
26322 #3 0x7f5fc2d8e917 in svx::sidebar::OutlineTypeMgr::Init() 
/svx/source/sidebar/nbdtmg.cxx:585:35

Change-Id: Ic291f9badad2047980bff848e83bc56b8beaa723
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153235
Reviewed-by: Noel Grandin 
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/i18npool/source/localedata/filewriter.cxx 
b/i18npool/source/localedata/filewriter.cxx
index 30a759573278..d9167ed1e950 100644
--- a/i18npool/source/localedata/filewriter.cxx
+++ b/i18npool/source/localedata/filewriter.cxx
@@ -127,8 +127,8 @@ void OFileWriter::writeOUStringRefFunction3(const char 
*func, std::u16string_vie
 {
 OString aRefLocale( OUStringToOString(useLocale, 
RTL_TEXTENCODING_ASCII_US) );
 const char* locale = aRefLocale.getStr();
-fprintf(m_f, "extern const OUString   SAL_CALL %s%s(sal_Int16& 
nStyles, sal_Int16& nLevels, sal_Int16& nAttributes);\n", func, locale);
-fprintf(m_f, "const OUString   SAL_CALL %s%s(sal_Int16& nStyles, 
sal_Int16& nLevels, sal_Int16& nAttributes)\n{\n", func, theLocale.c_str());
+fprintf(m_f, "extern const OUString ***  SAL_CALL %s%s(sal_Int16& nStyles, 
sal_Int16& nLevels, sal_Int16& nAttributes);\n", func, locale);
+fprintf(m_f, "const OUString ***  SAL_CALL %s%s(sal_Int16& nStyles, 
sal_Int16& nLevels, sal_Int16& nAttributes)\n{\n", func, theLocale.c_str());
 fprintf(m_f, "\treturn %s%s(nStyles, nLevels, nAttributes);\n}\n", func, 
locale);
 }
 


Re: Unbalanced tag

2023-06-18 Thread Julien Nabet

On 18/06/2023 18:48, Regina Henschel wrote:

...
This is the text which produces the problem:

*  Added support for multicolor gradients (Armin Le Grand)
** LibreOffice 7.6 has a new feature called "multicolor gradients" 
(MCGR) implemented by Armin Le Grand. A multicolor gradient still goes 
from a starting color to final color, but now additional colors are 
possible in between.
** Although the ''Gradient'' tab in the ''Area'' dialog has not yet 
been adapted to the new feature, you can use such gradients. The 
document ... lists hints on what you can already do, and the 
''Gradient'' list in the dialog contains two "Rainbow" examples.
** You can create and modify multicolor gradients using macros, see 
the ''Gradient2'' struct and the associated ''ColorStop'' struct in 
the SDK API reference 
https://api.libreoffice.org/docs/idl/ref/index.html.
** Since this is a new feature, you might find errors. In this case, 
please help improve the feature by reporting the issue in our bug 
tracking system "Bugzilla" 
https://wiki.documentfoundation.org/Bugzilla. When doing so, mention 
'MCGR' in the subject line.

** Some notes:
*** LibreOffice versions prior to 7.6 cannot interpret multicolor 
gradients. They will display a gradient made from the first and last 
color.
*** You need to use "1.3 Extended (recommended)" file format. This is 
the default setting, so don't worry.
*** Some gradient properties in ODF (LibreOffice) and OOXML (Microsoft 
Office) are basically incompatible. This problem is not solved by 
multicolor gradients.

...


I'm not an expert but I think you need a "translate" start tag and a 
"translate" end tag at each line.


I tried with:

*  Added support for multicolor gradients (Armin Le 
Grand)
** LibreOffice 7.6 has a new feature called "multicolor 
gradients" (MCGR) implemented by Armin Le Grand. A multicolor gradient 
still goes from a starting color to final color, but now additional 
colors are possible in between.
** Although the ''Gradient'' tab in the ''Area'' dialog has 
not yet been adapted to the new feature, you can use such gradients.  
The document ... lists hints on what you can already do, and the 
''Gradient'' list in the dialog contains two "Rainbow" examples.
** You can create and modify multicolor gradients using 
macros, see the ''Gradient2'' struct and the associated ''ColorStop'' 
struct in the SDK API reference 
https://api.libreoffice.org/docs/idl/ref/index.html.
** Since this is a new feature, you might find errors. In 
this case, please help improve the feature by reporting the issue in our 
bug tracking system "Bugzilla" 
https://wiki.documentfoundation.org/Bugzilla. When doing so, mention 
'MCGR' in the subject line.

** Some notes:
*** LibreOffice versions prior to 7.6 cannot interpret 
multicolor gradients. They will display a gradient made from the first 
and last color.
*** You need to use "1.3 Extended (recommended)" file format. 
This is the default setting, so don't worry.
*** Some gradient properties in ODF (LibreOffice) and OOXML 
(Microsoft Office) are basically incompatible. This problem is not 
solved by multicolor gradients.


Perhaps there's another way but when taking a look at the existing page, 
it seemed the right way to do it. Also I tested it in Core section by 
using Preview and it seemed ok to me.


If you're still stuck, I can submit it if you want (at worst, it's 
always possible to modify afterwards)


Julien.



Re: Unbalanced tag

2023-06-18 Thread Regina Henschel

Julien Nabet schrieb am 18.06.2023 um 17:57:

Hello Regina,

Would it be possible you attach the raw text you're trying to include ?

Indeed, except to ask you to check that each tag is well closed 
(especially "translate"), it's difficult to help.


Julien



This is text I want to finally get:

LibreOffice 7.6 has a new feature called "multicolor gradients" (MCGR) 
implemented by Armin Le Grand. A multicolor gradient still goes from a 
starting color to final color, but now additional colors are possible in 
between.


Although the 'Gradient' tab in the 'Area' dialog has not yet been 
adapted to the new feature, you can use such gradients.  The document 
... lists hints on what you can already do, and the 'Gradient' list in 
the dialog contains two "Rainbow" examples.


You can create and modify multicolor gradients using macros, see the 
'Gradient2' struct and the associated 'ColorStop' struct in the SDK API 
reference https://api.libreoffice.org/docs/idl/ref/index.html.


Since this is a new feature, you might find errors. In this case, please 
help improve the feature by reporting the issue in our bug tracking 
system "Bugzilla" https://wiki.documentfoundation.org/Bugzilla. When 
doing so, mention 'MCGR' in the subject line.


Some notes:
LibreOffice versions prior to 7.6 cannot interpret multicolor gradients. 
They will display a gradient made from the first and last color.
You need to use "1.3 Extended (recommended)" file format. This is the 
default setting, so don't worry.
Some gradient properties in ODF (LibreOffice) and OOXML (Microsoft 
Office) are basically incompatible. This problem is not solved by 
multicolor gradients.




The ellipses in document... will be filled with the link after I have 
uploaded the file.



This is the text which produces the problem:

*  Added support for multicolor gradients (Armin Le Grand)
** LibreOffice 7.6 has a new feature called "multicolor gradients" 
(MCGR) implemented by Armin Le Grand. A multicolor gradient still goes 
from a starting color to final color, but now additional colors are 
possible in between.
** Although the ''Gradient'' tab in the ''Area'' dialog has not yet been 
adapted to the new feature, you can use such gradients.  The document 
... lists hints on what you can already do, and the ''Gradient'' list in 
the dialog contains two "Rainbow" examples.
** You can create and modify multicolor gradients using macros, see the 
''Gradient2'' struct and the associated ''ColorStop'' struct in the SDK 
API reference https://api.libreoffice.org/docs/idl/ref/index.html.
** Since this is a new feature, you might find errors. In this case, 
please help improve the feature by reporting the issue in our bug 
tracking system "Bugzilla" https://wiki.documentfoundation.org/Bugzilla. 
When doing so, mention 'MCGR' in the subject line.

** Some notes:
*** LibreOffice versions prior to 7.6 cannot interpret multicolor 
gradients. They will display a gradient made from the first and last color.
*** You need to use "1.3 Extended (recommended)" file format. This is 
the default setting, so don't worry.
*** Some gradient properties in ODF (LibreOffice) and OOXML (Microsoft 
Office) are basically incompatible. This problem is not solved by 
multicolor gradients.


Kind regards
Regina


Re: Unbalanced tag

2023-06-18 Thread Julien Nabet

Hello Regina,

Would it be possible you attach the raw text you're trying to include ?

Indeed, except to ask you to check that each tag is well closed 
(especially "translate"), it's difficult to help.


Julien



[Libreoffice-bugs] [Bug 155810] Justified Arabic text has gaps between characters in presentation mode

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155810

⁨خالد حسني⁩  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |kha...@libreoffice.org
   |desktop.org |

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

[Libreoffice-bugs] [Bug 71437] Dead keys not working (workaround: comment 3 or comment 6 or comment 19 or comment 30)

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71437

--- Comment #48 from Christian Lehmann  ---
LibreOffice 7.4.3.2, OpenSuse Leap 15.4, KDE Plasma 5.24.4:

Typing a character with acute, e.g. é,
a) at the end of a paragraph or table cell: ´ is written, the character beneath
it is swallowed.
b) at some position preceding the end of paragraph, including in a table cell:
works as expected.

Typing a character with any other diacritic, e.g. è, ê: works as expected.

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

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

2023-06-18 Thread Tomaž Vajngerl (via logerrit)
 writerfilter/source/dmapper/PropertyIds.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit d7bc610a359ca7e95b3a600c03da6a0b9e6f439c
Author: Tomaž Vajngerl 
AuthorDate: Sun Jun 18 23:35:36 2023 +0900
Commit: Julien Nabet 
CommitDate: Sun Jun 18 17:36:51 2023 +0200

use frozen::make_unordered_map so no need to specify the count

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

diff --git a/writerfilter/source/dmapper/PropertyIds.cxx 
b/writerfilter/source/dmapper/PropertyIds.cxx
index d294a3ad082c..11ef07230fad 100644
--- a/writerfilter/source/dmapper/PropertyIds.cxx
+++ b/writerfilter/source/dmapper/PropertyIds.cxx
@@ -26,7 +26,7 @@ namespace writerfilter::dmapper{
 
 namespace
 {
-constexpr frozen::unordered_map 
constPropertyMap
+constexpr auto constPropertyMap = frozen::make_unordered_map(
 {
 { PROP_CHAR_WEIGHT, u"CharWeight"},
 { PROP_CHAR_POSTURE, u"CharPosture"},
@@ -378,7 +378,7 @@ namespace
 { PROP_CURSOR_NOT_IGNORE_TABLES_IN_HF, u"CursorNotIgnoreTables"},
 { PROP_PARA_CONNECT_BORDERS, u"ParaIsConnectBorder"},
 { PROP_DECORATIVE, u"Decorative"},
-};
+});
 } // end anonymous ns
 
 OUString getPropertyName( PropertyIds eId )


Unbalanced tag

2023-06-18 Thread Regina Henschel

Hi,

I want to add "multicolor gradient" to 
https://wiki.documentfoundation.org/WikiAction/submit/ReleaseNotes/7.6


But I get an error
 Unbalanced  tag
and don't know how to solve it.

Kind regards,
Regina


[Libreoffice-bugs] [Bug 155915] Change in font format breaks OpenType contextual alternatives and layout

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155915

--- Comment #1 from julien.en...@gmail.com ---
Created attachment 187975
  --> https://bugs.documentfoundation.org/attachment.cgi?id=187975=edit
Test file

Here is a file that shows the problem.

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

[Libreoffice-bugs] [Bug 155915] New: Change in font format breaks OpenType contextual alternatives and layout

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155915

Bug ID: 155915
   Summary: Change in font format breaks OpenType contextual
alternatives and layout
   Product: LibreOffice
   Version: 7.5.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: julien.en...@gmail.com

Description:
When changing the colour of one character in a word written with an OpenType
font (handwritten style), the layout is broken and the character are not
attached together anymore.

Steps to Reproduce:
1.Write a word with an OpenType font (eg. Pecita -
https://www.1001fonts.com/pecita-font.html)
2.Change the color of one character of this word

Actual Results:
The coloured letter layout change and is not coherent with the surrounding
characters.

Expected Results:
The coloured letter layout should not change.


Reproducible: Always


User Profile Reset: No

Additional Info:
Tested with LibreOffice FlatPak package.

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

[Libreoffice-bugs] [Bug 155914] New: LibreOffice bug ridden since update 7.0 approx

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155914

Bug ID: 155914
   Summary: LibreOffice bug ridden since update 7.0 approx
   Product: LibreOffice
   Version: 7.5.4.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: alignedtrain...@outlook.com

Description:
One after another tiny annoying things are happening to LibreOffice The key two
are 
Firstly, click on a line and the cursor used to go to the end of that line ..
now it inserts spurious spaces causing chaos in a document 
Secondly, randomly it right justifies a line .. to the point this is becoming
unworkable as a tool 


Steps to Reproduce:
1. click anyone beyond the end of the text on a line ..   spaces are entered 
2.
3.

Actual Results:
spurious spaces appear that then need finding and deleting 

Expected Results:
tidying up a document that is randomly being corrupted is very annoying and
time consuming 


Reproducible: Always


User Profile Reset: Yes

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

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

[Libreoffice-bugs] [Bug 155913] New: MCGR: Transparency gradient must not have steps ("Increment" in UI)

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155913

Bug ID: 155913
   Summary: MCGR: Transparency gradient must not have steps
("Increment" in UI)
   Product: LibreOffice
   Version: 24.2.0.0 alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Keywords: implementationError, regression
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de
CC: armin.le.gr...@me.com

Created attachment 187974
  --> https://bugs.documentfoundation.org/attachment.cgi?id=187974=edit
Color gradient with 4 steps and linear transparency gradient

Open attached document created with LO 7.5. It has a shape with a 4 step color
gradient and an orthogonal linear transparency gradient. Below the shape is a
screenshot how it looks in LO 7.5.

The error is that the step count 4 is applied to the transparency gradient too.
The corresponding attribute in ODF 1.3 is


20.137 draw:gradient-step-count
The draw:gradient-step-count attribute specifies the gradient step count of a
color interpolation.
●Value 0 means that the step count is automatically calculated on the
size and resolution of the filled area. 
●Values 1 and 2 shall not be used. 
●Values of 3 or greater mean that the step count is that fixed value. 
A gradient step count of color interpolation may be above 256.


That is very clear, that the draw:gradient-step-count is only applicable to the
color interpolation. There exists no similar attribute for an applied
draw:opacity element.

The current behavior in LO7.5 is correct and confirms to the standard. The
behavior must not change with introducing multicolor gradients.

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

[Libreoffice-bugs] [Bug 77590] Make LO's Start Center thumbnail views available for use from within components

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77590

Mike Kaganski  changed:

   What|Removed |Added

 CC||cjsleightho...@gmail.com

--- Comment #51 from Mike Kaganski  ---
*** Bug 155909 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 155909] Keeping start centre open even when other libre office programs are running

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155909

Mike Kaganski  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Mike Kaganski  ---


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

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

[Libreoffice-bugs] [Bug 155912] Rendering problems in conversion of internal vcl bitmap formats transparency->alpha

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155912

Patrick Luby  changed:

   What|Removed |Added

 CC||plub...@neooffice.org

--- Comment #2 from Patrick Luby  ---
Created attachment 187973
  --> https://bugs.documentfoundation.org/attachment.cgi?id=187973=edit
Screen snapshot of slideshow rendering problem

Screen snapshot of slideshow rendering problem on macOS. Note that the "Blah"
at the top edge of the gradient is partially drawn over by a white rectangle
equal to the bounds of the gradient.

Version: 24.2.0.0.alpha0+ (AARCH64) / LibreOffice Community
Build ID: 022afc24d2e6ad74b26c905abbe6a42816d9a99e
CPU threads: 8; OS: Mac OS X 12.6.6; UI render: default; VCL: osx
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 155912] Rendering problems in conversion of internal vcl bitmap formats transparency->alpha

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155912

--- Comment #1 from Patrick Luby  ---
Created attachment 187972
  --> https://bugs.documentfoundation.org/attachment.cgi?id=187972=edit
Sample file with transparent gradient overlapping text

As of patch set 80, when Skia is disabled and the document is running in a
slideshow, a white rectangle will be drawn underneath the transparent gradient,
obscuring the text that the gradient overlaps.

I have only confirmed this behavior on macOS. Also, when Skia is enabled, no
white rectangle is drawn.

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

[Libreoffice-bugs] [Bug 155912] New: Rendering problems in conversion of internal vcl bitmap formats transparency->alpha

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155912

Bug ID: 155912
   Summary: Rendering problems in conversion of internal vcl
bitmap formats transparency->alpha
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: graphics stack
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: plub...@neooffice.org

I created this issue to provide a place to attach screen snapshots and/or
documents related to the following Gerrit change:

https://gerrit.libreoffice.org/c/core/+/114168

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

Week #3 Report - GSoC 2023 - Search Field in Options

2023-06-18 Thread Bayram Çiçek

Hi.

I want to share "Search Field in Options" project report for week #3.

> Summary

- There is a problem with accessing methods of sub-dialogs in Options 
dialog. (the reason is that the sub-dialogs don’t exist until the page 
is switched)
- We decided that strings in all .ui files (in ./cui/*) will be 
generated at build-time.

- I’ll be trying to generate the data at build-time in the following weeks.

> Blog post about week #3 report:
https://bayramcicek.github.io/libreoffice-dev/2023/06/18/week-03-gsoc-report.html

> Steps for implementing search functionality in “Tools > Options”:

1) Add Search field to “Tools > Options” dialog.    (DONE - week #1)
2) Include Options treeview into searching.    (DONE - week #1)
3) Include Sub-tree elements (child nodes) into searching. (DONE - week #2)
4) Generate all strings(labels), accessible-names, 
accessible-descriptions and tooltip-texts of all .ui files in ./cui/* 
directory, at build-time. (Next step)

5) Fetch the generated data - at run-time.
6) Include strings(labels), accessible-names, accessible-descriptions 
and tooltip-texts into searching.

7) Implement highlighting feature - if enough time remains.

Thank you.

--

Regards,
Bayram Çiçek


[Libreoffice-bugs] [Bug 155875] [LOCALHELP] - Writer - Help pages about dialogs should provide instructions for the Tabbed UI

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155875

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

https://git.libreoffice.org/help/commit/d8edb78135c45defa38dc4edd2103b687b6326f8

tdf#155875 Tabbed UI commands Writer in Help pages

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

[Libreoffice-commits] core.git: helpcontent2

2023-06-18 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ca64e1829e252a32737eed7dfbe11560a5f890e2
Author: Olivier Hallot 
AuthorDate: Sun Jun 18 10:09:05 2023 -0300
Commit: Gerrit Code Review 
CommitDate: Sun Jun 18 15:09:05 2023 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to d8edb78135c45defa38dc4edd2103b687b6326f8
  - tdf#155875 Tabbed UI commands Writer in Help pages

+ refactoring
+ Writer View menu (part 8 - end for View menu)

Change-Id: Icaa6d102faa114c1fe93525c249563fc8644fa9b
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/153232
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 273e842f0649..d8edb78135c4 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 273e842f064991c1bc94ebc479680d3bea1c3e86
+Subproject commit d8edb78135c45defa38dc4edd2103b687b6326f8


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

2023-06-18 Thread Olivier Hallot (via logerrit)
 source/text/shared/00/0403.xhp  |  147 ++--
 source/text/shared/00/edit_menu.xhp |   40 ++---
 source/text/shared/01/0311.xhp  |   14 +--
 source/text/shared/01/04180100.xhp  |   19 ++--
 4 files changed, 149 insertions(+), 71 deletions(-)

New commits:
commit d8edb78135c45defa38dc4edd2103b687b6326f8
Author: Olivier Hallot 
AuthorDate: Sun Jun 18 09:36:49 2023 -0300
Commit: Olivier Hallot 
CommitDate: Sun Jun 18 15:09:05 2023 +0200

tdf#155875 Tabbed UI commands Writer in Help pages

+ refactoring
+ Writer View menu (part 8 - end for View menu)

Change-Id: Icaa6d102faa114c1fe93525c249563fc8644fa9b
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/153232
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/shared/00/0403.xhp 
b/source/text/shared/00/0403.xhp
index 6337cc3795..f5b8dad1f4 100644
--- a/source/text/shared/00/0403.xhp
+++ b/source/text/shared/00/0403.xhp
@@ -30,11 +30,37 @@
 
 View Menu
 
-Choose View - Zoom - 
Zoom.
-Zoom also with (+) (-) (×) and (÷) on 
the number keypad
-Zoom also with (+) (-) (×) and (÷) 
on the number keypad.
-Click or right-click the zoom 
factor displayed on the Zoom Slider in the Status bar.
+
+Choose View - 
Zoom.
+
+
+
+Choose 
Home - Zoom.
+Choose 
View - Zoom.
+
+
+
+Choose 
View - Zoom.
+
+
+
+
+
+
+Icon Zoom
+
+
+Zoom
+
+
+
+
+CommandCtrl
 + mouse wheel
+Zoom also with (+) (-) (×) and (÷) on 
the number keypad.Zoom also with (+) 
(-) (×) and (÷) on the number keypad.
+
+Click or right-click the 
zoom factor displayed on the Zoom Slider.
 
+
 
 
 Choose View - 
Toolbars.
@@ -60,45 +86,86 @@
 Click Hyperlink icon on Standard 
bar, click Mail.
 Click 
Hyperlink icon on Standard bar, click 
Document.
 Click Hyperlink icon on Standard 
bar, click New Document.
-
-Choose View - Full 
Screen.
-Shift+CommandCtrl+J
-
-
-
-
-
-
-
-Icon
-
-
-Full Screen (in Print 
Preview)
-
-
-
 
+
+
+
+
+
+
+
+Choose 
View - Full Screen.
+
+
+
+
+
+
+
+
+
+Choose 
View - Full Screen.
+
+
+
+
+
+
+
+Icon Full Screen
+
+
+Full 
Screen
+
+
+
+
+
+CommandCtrl
 + Shift + J
 
-
-
-
+
 
-If a text document or 
spreadsheet is open:
-Menu View - Data 
Sources.
-CommandCtrl+Shift+F4
 keys
-
-
-
-
-
-Icon
-
-
-Data Sources
-
-
-
-
+
+
+
+
+
+
+
+Menu View - 
Data Sources.
+
+
+
+
+
+Choose 
References - Data Sources.
+On the 
Tools menu of the Tools tab, choose 
Data Sources.
+
+
+
+
+
+
+
+
+On the 
Tools menu of the Tools tab, choose 
Data Sources.
+
+
+
+
+
+
+
+Icon Data Sources
+
+
+Data 
Sources
+
+
+
+
+
+CommandCtrl
 + Shift + F4
 
 
 
diff --git a/source/text/shared/00/edit_menu.xhp 
b/source/text/shared/00/edit_menu.xhp
index 0fc6afc000..e233478ffb 100644
--- a/source/text/shared/00/edit_menu.xhp
+++ b/source/text/shared/00/edit_menu.xhp
@@ -374,22 +374,34 @@
 
 
 
+
 
-Choose View - 
Navigator.
-Press 
F5
-On the Standard 
bar or the Sidebar, click
-
-
-
-
-Icon Navigator 
On/Off
-
-
-Navigator On/Off
-
-
-
+
+Choose View - 
Navigator.
+
+
+
+Choose 
Home - Navigator.
+Choose 
View - Navigator.
+
+
+
+
+
+
+
+Icon Navigator 
On/Off
+
+
+Navigator 
On/Off
+
+
+
+
+F5
 
+
+
 Choose 
Tools - Bibliography Database.
 
 
diff --git a/source/text/shared/01/0311.xhp 
b/source/text/shared/01/0311.xhp
index f4c1db365a..5a948f8272 100644
--- a/source/text/shared/01/0311.xhp
+++ b/source/text/shared/01/0311.xhp
@@ -20,27 +20,27 @@
 
 
   
-Full Screen
+Full Screen
 /text/shared/01/0311.xhp
   
 
 
 
-
+
   full screen view
   screen; full screen views
   complete screen view
   views;full screen
 
-
+
 Full 
Screen
-  Shows or hides the menus and toolbars in Writer or Calc. To exit the 
full screen mode, click the Full Screen button or press the 
Esc key.
+  Shows or hides 
the menus and toolbars in Writer or Calc. To exit 

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

2023-06-18 Thread Olivier Hallot (via logerrit)
 source/text/shared/02/01171200.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 273e842f064991c1bc94ebc479680d3bea1c3e86
Author: Olivier Hallot 
AuthorDate: Sun Jun 18 11:34:12 2023 +0200
Commit: Olivier Hallot 
CommitDate: Sun Jun 18 15:08:14 2023 +0200

better idiomatic English

Change-Id: I7e4fe0d4143a10bd82d29add898a26c48905ebff
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/153222
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/shared/02/01171200.xhp 
b/source/text/shared/02/01171200.xhp
index 42ad7cf6c9..2f9677ae13 100644
--- a/source/text/shared/02/01171200.xhp
+++ b/source/text/shared/02/01171200.xhp
@@ -30,7 +30,7 @@
 
 
 Display Grid
-Activates or 
deactivates the grid.
+Enables or disables 
the grid.
 
 
 


[Libreoffice-commits] core.git: helpcontent2

2023-06-18 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 165de43e10b77d7e1062a89542d9fbe6be5b3678
Author: Olivier Hallot 
AuthorDate: Sun Jun 18 15:08:14 2023 +0200
Commit: Gerrit Code Review 
CommitDate: Sun Jun 18 15:08:14 2023 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to 273e842f064991c1bc94ebc479680d3bea1c3e86
  - better idiomatic English

Change-Id: I7e4fe0d4143a10bd82d29add898a26c48905ebff
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/153222
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 12fb75b6a6ab..273e842f0649 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 12fb75b6a6ab7048a9b988f9cf638d168dd36f89
+Subproject commit 273e842f064991c1bc94ebc479680d3bea1c3e86


[Libreoffice-commits] core.git: vcl/README.vars.md

2023-06-18 Thread Khaled Hosny (via logerrit)
 vcl/README.vars.md |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 1d57e682c56dab2eade6fb9595d1e1737064dec3
Author: Khaled Hosny 
AuthorDate: Thu Jun 15 14:30:34 2023 +0300
Commit: خالد حسني 
CommitDate: Sun Jun 18 14:38:08 2023 +0200

vcl: Document SAL_NON_APPLICATION_FONT_USE

Change-Id: I3d5f691a35a3e79d3ae6774f71aafbc66214ecc4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153116
Tested-by: Jenkins
Reviewed-by: خالد حسني 

diff --git a/vcl/README.vars.md b/vcl/README.vars.md
index c83ca657ef9f..a2ede5a40855 100644
--- a/vcl/README.vars.md
+++ b/vcl/README.vars.md
@@ -12,6 +12,7 @@ These are the general environment variables used in the VCL:
 * `SAL_USE_SYSTEM_LOOP` - calls std::abort on nested event loop calls. 
Currently just for Qt with many crashes. WIP.
 
 * `SAL_NO_FONT_LOOKUP` - disable font search and fallback and always use a 
hard-coded font name (for some unit tests)
+* `SAL_NON_APPLICATION_FONT_USE` - control use of non-bundled fonts, values 
are `deny` or `abort`
 
 * `LO_COLLECT_UIINFO` - enable the uitesting logging, value is expected to be 
a relative file name that
 will be used to write the log under `instdir/uitest/`.


[Libreoffice-bugs] [Bug 155911] Importing and formatting dates!

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155911

--- Comment #1 from Nigel Lee  ---
Created attachment 187971
  --> https://bugs.documentfoundation.org/attachment.cgi?id=187971=edit
calc sheet showing the problem(s)

I wanted to see if I could extract DIR data for some files with the wrong date,
to work out what they should be, with a view to renaming them automatically,
but had a few problems, with "import", and "format". See the comments on the
sheet.
I would have liked to be able to use a TEXT("MM") formulae to extract 'month'
or 'minutes', or to use "MMDD_HHMMSS", but couldn't! I ended up having to
use TEXT(Day(G2),"00"), etc. and concatenate! - and got several 'suggestions'
when I missed out brackets or quotes, that weren't right)

- the files were created by my "wildlife trail camera", which timestamps
pictures and video clips, and 'sets' it's clock from a text file, and creates a
new one with a default date string.. fortunately that file did have the correct
create date! Otherwise I could use the date I intended, as the 'start date'.
I'm not sure if I can do the rename operation in code within Calc, or else I
will replicate it using Python.
Nigel Lee

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

[Libreoffice-bugs] [Bug 155911] New: Importing and formatting dates!

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155911

Bug ID: 155911
   Summary: Importing and formatting dates!
   Product: LibreOffice
   Version: 7.3.3.2 release
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: w...@nigelspages.me.uk

Description:
I wanted to import text from a "Dir" output, and manipulate the dates..
1. The "import" dialog firstly split the text at every 'space', and won't allow
multiple spaces to be 'concatenated', so it split the date & time, and it's not
easy to recombine!
2. I copied the output into a text file and edited it to replace spaces with
Tabs, and tried again. If I select "D?M?Y" for the first column, it doesn't
work, so I chose "text".
I checked that the dates HAD been interpreted OK, but trying to format them as
"D8" (..HH:MM:SS) generates an error. But if I use a formula to 'copy' the
cell, it works!
See attached file.

Steps to Reproduce:
1.import date/time ("09/06/2023  11:34"), or concatenate a date & time using a
formula (=A2 & " " & B2)
2.use the "D/M/Y" option on the import or try 'format cells [D8]' (or
"=TEXT(A2,"DD/MM/ HH:mm:SS")
3.Format D6 (HH:MM") seems to work!

Actual Results:
###


Expected Results:
09/06/2023  11:34:00


Reproducible: Always


User Profile Reset: No

Additional Info:
[Information automatically included from LibreOffice]
Locale: en-GB
Module: SpreadsheetDocument
[Information guessed from browser]
OS: Windows (All) - Win.11
OS is 64bit: no - YES! i3 CPU

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

[Libreoffice-commits] core.git: include/editeng oox/source sw/source writerfilter/source

2023-06-18 Thread Tomaž Vajngerl (via logerrit)
 include/editeng/unoprnms.hxx |4 +
 include/editeng/unotext.hxx  |5 -
 oox/source/drawingml/textcharacterproperties.cxx |6 +
 oox/source/token/properties.txt  |2 
 sw/source/filter/ww8/docxattributeoutput.cxx |   28 ++---
 writerfilter/source/dmapper/CellColorHandler.cxx |   70 ++-
 writerfilter/source/dmapper/CellColorHandler.hxx |   15 
 writerfilter/source/dmapper/PropertyIds.cxx  |7 +-
 writerfilter/source/dmapper/PropertyIds.hxx  |3 
 9 files changed, 125 insertions(+), 15 deletions(-)

New commits:
commit 9e121f3a6b95dab7525aa1583f810b2b504ce1b3
Author: Tomaž Vajngerl 
AuthorDate: Sun Jun 11 00:57:36 2023 +0900
Commit: Tomaž Vajngerl 
CommitDate: Sun Jun 18 13:32:12 2023 +0200

ooxml: import and export background and fill theme colors props.

This adds support to import and export background and fill theme
color properties.

Change-Id: I0f40615fe2d06cdcb4f2f9752602fe2ec699c7b3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152835
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/include/editeng/unoprnms.hxx b/include/editeng/unoprnms.hxx
index 8859dfe5a4a5..214b8fd53dea 100644
--- a/include/editeng/unoprnms.hxx
+++ b/include/editeng/unoprnms.hxx
@@ -350,6 +350,10 @@ inline constexpr OUStringLiteral 
UNO_NAME_EDIT_CHAR_SHADOWED = u"CharShadowed";
 inline constexpr OUStringLiteral UNO_NAME_EDIT_CHAR_UNDERLINE = 
u"CharUnderline";
 inline constexpr OUStringLiteral UNO_NAME_EDIT_CHAR_OVERLINE = u"CharOverline";
 
+inline constexpr OUStringLiteral UNO_NAME_EDIT_CHAR_BACKGROUND_COLOR = 
u"CharBackColor";
+inline constexpr OUStringLiteral UNO_NAME_EDIT_CHAR_BACKGROUND_COMPLEX_COLOR = 
u"CharBackgroundComplexColor";
+inline constexpr OUStringLiteral UNO_NAME_EDIT_CHAR_BACKGROUND_TRANSPARENT = 
u"CharBackTransparent";
+
 inline constexpr OUStringLiteral UNO_NAME_BITMAP = u"Bitmap";
 
 inline constexpr OUStringLiteral UNO_NAME_LINKDISPLAYNAME = u"LinkDisplayName";
diff --git a/include/editeng/unotext.hxx b/include/editeng/unotext.hxx
index de79cae965f2..213c5efa6b4f 100644
--- a/include/editeng/unotext.hxx
+++ b/include/editeng/unotext.hxx
@@ -94,8 +94,9 @@ struct SfxItemPropertyMapEntry;
 { UNO_NAME_EDIT_CHAR_COLOR_LUM_MOD,   EE_CHAR_COLOR, 
::cppu::UnoType::get(), 0, MID_COLOR_LUM_MOD }, \
 { UNO_NAME_EDIT_CHAR_COLOR_LUM_OFF,   EE_CHAR_COLOR, 
::cppu::UnoType::get(), 0, MID_COLOR_LUM_OFF }, \
 { UNO_NAME_EDIT_CHAR_COMPLEX_COLOR, EE_CHAR_COLOR,
::cppu::UnoType::get(), 0, MID_COMPLEX_COLOR }, \
-{ u"CharBackColor",EE_CHAR_BKGCOLOR,   
::cppu::UnoType::get(),0, 0 }, \
-{ u"CharBackTransparent",  EE_CHAR_BKGCOLOR,   
::cppu::UnoType::get(), 0, MID_GRAPHIC_TRANSPARENT }, \
+{ UNO_NAME_EDIT_CHAR_BACKGROUND_COLOR, EE_CHAR_BKGCOLOR,   
::cppu::UnoType::get(),0, MID_COLOR_RGB }, \
+{ UNO_NAME_EDIT_CHAR_BACKGROUND_COMPLEX_COLOR, EE_CHAR_BKGCOLOR, 
::cppu::UnoType::get(), 0, MID_COMPLEX_COLOR }, \
+{ UNO_NAME_EDIT_CHAR_BACKGROUND_TRANSPARENT, EE_CHAR_BKGCOLOR,   
::cppu::UnoType::get(), 0, MID_GRAPHIC_TRANSPARENT }, \
 { UNO_NAME_EDIT_CHAR_ESCAPEMENT,  EE_CHAR_ESCAPEMENT, 
::cppu::UnoType::get(),0, MID_ESC }, \
 { UNO_NAME_EDIT_CHAR_UNDERLINE,   EE_CHAR_UNDERLINE,  
::cppu::UnoType::get(),0, MID_TL_STYLE }, \
 { u"CharUnderlineColor",   EE_CHAR_UNDERLINE,  
::cppu::UnoType::get(),0, MID_TL_COLOR }, \
diff --git a/oox/source/drawingml/textcharacterproperties.cxx 
b/oox/source/drawingml/textcharacterproperties.cxx
index 1217c19441ae..c3dde4889a64 100644
--- a/oox/source/drawingml/textcharacterproperties.cxx
+++ b/oox/source/drawingml/textcharacterproperties.cxx
@@ -216,7 +216,11 @@ void TextCharacterProperties::pushToPropMap( PropertyMap& 
rPropMap, const XmlFil
 }
 
 if (maHighlightColor.isUsed() && maHighlightColor.getTransparency() != 100)
-rPropMap.setProperty( PROP_CharBackColor, maHighlightColor.getColor( 
rFilter.getGraphicHelper() ));
+{
+rPropMap.setProperty(PROP_CharBackColor, maHighlightColor.getColor( 
rFilter.getGraphicHelper() ));
+model::ComplexColor aComplexColor = maHighlightColor.getComplexColor();
+rPropMap.setProperty(PROP_CharBackgroundComplexColor, 
model::color::createXComplexColor(aComplexColor));
+}
 else
 rPropMap.setProperty( PROP_CharBackColor, sal_Int32(-1));
 }
diff --git a/oox/source/token/properties.txt b/oox/source/token/properties.txt
index 025b0628b9d8..a6de5458b663 100644
--- a/oox/source/token/properties.txt
+++ b/oox/source/token/properties.txt
@@ -24,6 +24,7 @@ BackGraphicLocation
 BackGraphic
 Background
 BackgroundColor
+BackgroundComplexColor
 BasicLibraries
 BlackDay
 BlockIncrement
@@ -52,6 +53,7 @@ CenterHorizontally
 CenterVertically
 Change
 CharBackColor
+CharBackgroundComplexColor
 

[Libreoffice-bugs] [Bug 155910] New: Increase (or decrease) font size option in a text box causes the program to freeze in MacOS.

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155910

Bug ID: 155910
   Summary: Increase (or decrease) font size option in a text box
causes the program to freeze in MacOS.
   Product: LibreOffice
   Version: 7.3.7.2 release
  Hardware: ARM
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: utkuuyu...@gmail.com

Description:
Whenever I try to adjust the text size in a text box by clicking the increase
(or decrease) font size buttons, I get a program freeze. This does not happen
however when I select a font size from the dropdown menu.

Steps to Reproduce:
1. Create a text box.
2. Type in a character.
3. Select the character and use the font size adjustment buttons.

Actual Results:
The program freezes.

Expected Results:
The font size changes accordingly.


Reproducible: Always


User Profile Reset: No

Additional Info:
Curiously this sometimes does not happen for latin characters; however, a
symbol or a number causes this issue.

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

[Libreoffice-commits] core.git: config_host.mk.in configure.ac external/Module_external.mk RepositoryExternal.mk

2023-06-18 Thread Rene Engelhard (via logerrit)
 RepositoryExternal.mk   |   10 +-
 config_host.mk.in   |2 ++
 configure.ac|   26 ++
 external/Module_external.mk |2 +-
 4 files changed, 38 insertions(+), 2 deletions(-)

New commits:
commit cd9afc213d768b9870c81c580fbb00282c0cf1c4
Author: Rene Engelhard 
AuthorDate: Sat Jun 17 14:38:27 2023 +0200
Commit: Tomaž Vajngerl 
CommitDate: Sun Jun 18 13:31:37 2023 +0200

add --with-system-frozen

Change-Id: Ia09254cab5696fa0a3530fcafa5b48acca631ff2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153208
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index 631466f0001a..b105e1d755d0 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -4298,6 +4298,14 @@ endif # ENABLE_ZXING
 endif # SYSTEM_ZXING
 
 
+ifneq ($(SYSTEM_FROZEN),)
+define gb_LinkTarget__use_frozen
+$(call gb_LinkTarget_set_include,$(1),\
+   $$(INCLUDE) \
+   $(FROZEN_CFLAGS)
+)
+endef
+else
 define gb_LinkTarget__use_frozen
 $(call gb_LinkTarget_use_unpacked,$(1),frozen)
 $(call gb_LinkTarget_set_include,$(1),\
@@ -4305,6 +4313,6 @@ $(call gb_LinkTarget_set_include,$(1),\
$$(INCLUDE) \
 )
 endef
-
+endif
 
 # vim: set noet sw=4 ts=4:
diff --git a/config_host.mk.in b/config_host.mk.in
index 6a120c2098cc..eb5e751e100b 100644
--- a/config_host.mk.in
+++ b/config_host.mk.in
@@ -134,6 +134,7 @@ export DOCDIR=@DOCDIR@
 export DOXYGEN=@DOXYGEN@
 export DO_FETCH_TARBALLS=@DO_FETCH_TARBALLS@
 export DRAGONBOX_CFLAGS=@DRAGONBOX_CFLAGS@
+export FROZEN_CFLAGS=@FROZEN_CFLAGS@
 export DPKG=@DPKG@
 export EBOOK_CFLAGS=$(gb_SPACE)@EBOOK_CFLAGS@
 export EBOOK_LIBS=$(gb_SPACE)@EBOOK_LIBS@
@@ -158,6 +159,7 @@ export ENABLE_DBUS=@ENABLE_DBUS@
 export ENABLE_DCONF=@ENABLE_DCONF@
 export ENABLE_DEBUG=@ENABLE_DEBUG@
 SYSTEM_DRAGONBOX=@SYSTEM_DRAGONBOX@
+SYSTEM_FROZEN=@SYSTEM_FROZEN@
 export ENABLE_EPOXY=@ENABLE_EPOXY@
 export ENABLE_EOT=@ENABLE_EOT@
 export ENABLE_EVOAB2=@ENABLE_EVOAB2@
diff --git a/configure.ac b/configure.ac
index 4c1efff0799e..af24f1c4fdb5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2452,6 +2452,11 @@ AC_ARG_WITH(system-dragonbox,
 [Use dragonbox already on system.]),,
 [with_system_dragonbox="$with_system_headers"])
 
+AC_ARG_WITH(system-frozen,
+AS_HELP_STRING([--with-system-frozen],
+[Use frozen already on system.]),,
+[with_system_frozen="$with_system_headers"])
+
 AC_ARG_WITH(system-libfixmath,
 AS_HELP_STRING([--with-system-libfixmath],
 [Use libfixmath already on system.]),,
@@ -10542,6 +10547,27 @@ fi
 AC_SUBST([SYSTEM_DRAGONBOX])
 AC_SUBST([DRAGONBOX_CFLAGS])
 
+dnl ===
+dnl Check for system frozen
+dnl ===
+AC_MSG_CHECKING([which frozen to use])
+if test "$with_system_frozen" = "yes"; then
+AC_MSG_RESULT([external])
+SYSTEM_FROZEN=TRUE
+AC_LANG_PUSH([C++])
+save_CPPFLAGS=$CPPFLAGS
+AC_CHECK_HEADER([frozen/unordered_map.h], [],
+   [AC_MSG_ERROR([frozen/unordered_map.h not found. install frozen 
headers])], [])
+AC_LANG_POP([C++])
+CPPFLAGS=$save_CPPFLAGS
+else
+AC_MSG_RESULT([internal])
+BUILD_TYPE="$BUILD_TYPE FROZEN"
+SYSTEM_FROZEN=
+fi
+AC_SUBST([SYSTEM_FROZEN])
+AC_SUBST([FROZEN_CFLAGS])
+
 dnl ===
 dnl Check for system libfixmath
 dnl ===
diff --git a/external/Module_external.mk b/external/Module_external.mk
index cd9c5924d71d..9feb4e21addf 100644
--- a/external/Module_external.mk
+++ b/external/Module_external.mk
@@ -41,7 +41,7 @@ $(eval $(call gb_Module_add_moduledirs,external,\
$(call gb_Helper_optional,FONTCONFIG,fontconfig) \
$(call gb_Helper_optional,FREEHAND,libfreehand) \
$(call gb_Helper_optional,FREETYPE,freetype) \
-   frozen \
+   $(call gb_Helper_optional,FROZEN,frozen) \
$(call gb_Helper_optional,GLM,glm) \
$(call gb_Helper_optional,GPGMEPP,gpgmepp) \
$(call gb_Helper_optional,GRAPHITE,graphite) \


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

2023-06-18 Thread Laurent Balland (via logerrit)
 chart2/source/controller/dialogs/ObjectNameProvider.cxx|   13 
+-
 chart2/source/controller/dialogs/res_Trendline.cxx |4 ---
 chart2/source/tools/MovingAverageRegressionCurveCalculator.cxx |   10 ++-
 3 files changed, 11 insertions(+), 16 deletions(-)

New commits:
commit dc03f59374d4fc74dd44ddedc903bb9c00a74bb7
Author: Laurent Balland 
AuthorDate: Mon Jun 12 21:48:13 2023 +0200
Commit: Tomaž Vajngerl 
CommitDate: Sun Jun 18 13:31:09 2023 +0200

tdf#155526 Add Period to trend line equation

Insert Period value earlier to have it ready for representation
Allow Moving average equation in dialog UI

Change-Id: I1d20572c39462e60b60ab7eec1f174a3cf934d4a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153094
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/chart2/source/controller/dialogs/ObjectNameProvider.cxx 
b/chart2/source/controller/dialogs/ObjectNameProvider.cxx
index e4ec234362bc..41eae9e7f1a8 100644
--- a/chart2/source/controller/dialogs/ObjectNameProvider.cxx
+++ b/chart2/source/controller/dialogs/ObjectNameProvider.cxx
@@ -601,18 +601,9 @@ OUString ObjectNameProvider::getHelpText( 
std::u16string_view rObjectCID, const
 xCalculator->setXYNames ( aXName, aYName );
 RegressionCurveHelper::initializeCurveCalculator( 
xCalculator, xSeries, xChartModel );
 
-// change text for Moving Average
-OUString aWildcard( "%PERIOD" );
-sal_Int32 nIndex = 
xCalculator->getRepresentation().indexOf( aWildcard );
-if( nIndex != -1 )
-{  // replace period
-aRet = xCalculator->getRepresentation();
-aRet = aRet.replaceAt( nIndex, 
aWildcard.getLength(), OUString::number(aPeriod) );
-}
-
 // replace formula
-aWildcard = "%FORMULA";
-nIndex = aRet.indexOf( aWildcard );
+OUString aWildcard = "%FORMULA";
+sal_Int32 nIndex = aRet.indexOf( aWildcard );
 if( nIndex != -1 )
 {
 OUString aFormula ( 
xCalculator->getRepresentation() );
diff --git a/chart2/source/controller/dialogs/res_Trendline.cxx 
b/chart2/source/controller/dialogs/res_Trendline.cxx
index 647c071b1040..58ef6497a538 100644
--- a/chart2/source/controller/dialogs/res_Trendline.cxx
+++ b/chart2/source/controller/dialogs/res_Trendline.cxx
@@ -372,10 +372,8 @@ void TrendlineResources::UpdateControlStates()
 m_xFmtFld_InterceptValue->set_sensitive( bInterceptAvailable );
 if( bMovingAverage )
 {
-m_xCB_ShowEquation->set_state(TRISTATE_FALSE);
 m_xCB_ShowCorrelationCoeff->set_state(TRISTATE_FALSE);
 }
-m_xCB_ShowEquation->set_sensitive( !bMovingAverage );
 m_xCB_ShowCorrelationCoeff->set_sensitive( !bMovingAverage );
 m_xCB_RegressionMovingType->set_sensitive(bMovingAverage);
 m_xNF_Period->set_sensitive(bMovingAverage);
@@ -428,8 +426,6 @@ void TrendlineResources::SetNbPoints( sal_Int32 nNbPoints )
 
 IMPL_LINK_NOARG(TrendlineResources, ShowEquation, weld::Toggleable&, void)
 {
-m_xEE_XName->set_sensitive(m_xCB_ShowEquation->get_active());
-m_xEE_YName->set_sensitive(m_xCB_ShowEquation->get_active());
 UpdateControlStates();
 }
 
diff --git a/chart2/source/tools/MovingAverageRegressionCurveCalculator.cxx 
b/chart2/source/tools/MovingAverageRegressionCurveCalculator.cxx
index 6726d9d78b36..f71262f738b9 100644
--- a/chart2/source/tools/MovingAverageRegressionCurveCalculator.cxx
+++ b/chart2/source/tools/MovingAverageRegressionCurveCalculator.cxx
@@ -157,7 +157,15 @@ OUString 
MovingAverageRegressionCurveCalculator::ImplGetRepresentation(
 const uno::Reference< util::XNumberFormatter >& /*xNumFormatter*/,
 sal_Int32 /*nNumberFormatKey*/, sal_Int32* /*pFormulaLength = nullptr */ ) 
const
 {
-return SchResId( STR_OBJECT_MOVING_AVERAGE_WITH_PARAMETERS );
+OUString aRet = SchResId( STR_OBJECT_MOVING_AVERAGE_WITH_PARAMETERS );
+// change text for Moving Average
+OUString aWildcard( "%PERIOD" );
+sal_Int32 nIndex = aRet.indexOf( aWildcard );
+if( nIndex != -1 )
+{  // replace period
+aRet = aRet.replaceAt( nIndex, aWildcard.getLength(), 
OUString::number(mPeriod) );
+}
+return aRet;
 }
 
 } //  namespace chart


[Libreoffice-bugs] [Bug 155909] New: Keeping start centre open even when other libre office programs are running

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155909

Bug ID: 155909
   Summary: Keeping start centre open even when other libre office
programs are running
   Product: LibreOffice
   Version: 7.5.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cjsleightho...@gmail.com

Description:
This is an enhancement request, not a bug report.
I like the Start Centre - it makes it vary easy to open my frequently used
files. But, it is only available to me for the first file I open. As I often
have multiple files open via different Libre Office programs, it would be far
easier for me to be able to return to the Start Centre rather than use the File
Open menu item.
Is there a way this could be actioned ( perhaps as an option ) ?

Steps to Reproduce:
Happens all the time

Actual Results:
Once a file is opened from the Start Centre, the Start Centre is no longer
available.

Expected Results:
It would be more consistent and easier to use for the Start Centre to be
available even after other files have been opened.


Reproducible: Always


User Profile Reset: No

Additional Info:
For all users, especially non-technical ones, consistency is critical and I
find the current approach very inconsistent - either the Start Centre should
always be available or never.

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

[Libreoffice-bugs] [Bug 155908] New: SQL window does not receive text field content from Writer

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155908

Bug ID: 155908
   Summary: SQL window does not receive text field content from
Writer
   Product: LibreOffice
   Version: 7.4.7.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ville...@t-online.de

Description:
When you copy SQL with text fields (variables, placeholders) from Writer into
Base's SQL window (Tools>SQL...), the fields are left out.
When you paste the same clipboard content into a text editor, the full SQL
statement is pasted, regardless if the text fields are displayed as names or
content.

Steps to Reproduce:
1. Download https://forum.openoffice.org/en/forum/download/file.php?id=47267
2. Copy the frame content as is.
3. Get some HSQL database, call Tools>SQL and paste

Actual Results:
CREATE TABLE "" ("" VARCHAR(32) NOT NUll ...

Expected Results:
CREATE TABLE "TBL_A" ("Name" VARCHAR(32) NOT NUll ...


Reproducible: Always


User Profile Reset: No

Additional Info:
Works with AOO4

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

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-23.05' - 13 commits - configure.ac download.lst drawinglayer/source emfio/qa external/curl external/openssl external/python3 filter/source i

2023-06-18 Thread Taichi Haradaguchi (via logerrit)
 configure.ac   
|2 
 dev/null   
|binary
 download.lst   
|   16 
 drawinglayer/source/tools/emfphelperdata.cxx   
|   56 -
 drawinglayer/source/tools/emfphelperdata.hxx   
|2 
 drawinglayer/source/tools/emfppath.cxx 
|  126 ---
 drawinglayer/source/tools/emfppath.hxx 
|5 
 emfio/qa/cppunit/emf/EmfImportTest.cxx 
|  186 -
 emfio/qa/cppunit/emf/data/TestEmfPlusFillClosedCurve.emf   
|binary
 external/curl/README   
|2 
 
external/openssl/0001-x509-excessive-resource-use-verifying-policy-constra.patch.1
 |  221 --
 external/openssl/README
|2 
 external/openssl/UnpackedTarball_openssl.mk
|2 
 external/openssl/openssl-no-_umul128-on-aarch64.patch.1
|   58 -
 external/python3/python-3.3.0-darwin.patch.1   
|2 
 filter/source/xslt/odf2xhtml/export/common/table/table_rows.xsl
|5 
 filter/source/xslt/odf2xhtml/export/common/table_of_content.xsl
|   25 
 filter/source/xslt/odf2xhtml/export/xhtml/body.xsl 
|  345 +-
 filter/source/xslt/odf2xhtml/export/xhtml/header.xsl   
|7 
 filter/source/xslt/odf2xhtml/export/xhtml/table.xsl
|6 
 include/vcl/bitmapex.hxx   
|1 
 include/vcl/outdev.hxx 
|2 
 include/xmloff/txtparae.hxx
|6 
 sc/CppunitTest_sc_html_export_test.mk  
|5 
 sc/qa/extras/htmlexporttest.cxx
|   25 
 sc/qa/extras/testdocuments/default-styles.ods  
|binary
 svgio/qa/cppunit/SvgImportTest.cxx 
|   18 
 svgio/qa/cppunit/data/tdf155819.svg
|   15 
 svgio/source/svgreader/svgstyleattributes.cxx  
|   15 
 svtools/source/misc/unitconv.cxx   
|2 
 sw/inc/numrule.hxx 
|3 
 sw/qa/core/unocore/unocore.cxx 
|   41 -
 sw/qa/extras/htmlexport/xhtmlexport.cxx
|   23 
 sw/qa/extras/ooxmlexport/data/tdf155690.docx   
|binary
 sw/qa/extras/ooxmlexport/ooxmlexport13.cxx 
|   47 +
 sw/source/core/doc/number.cxx  
|   23 
 sw/source/core/unocore/unoparagraph.cxx
|   18 
 sw/source/uibase/uno/unotxdoc.cxx  
|   28 
 vcl/source/bitmap/BitmapEx.cxx 
|5 
 vcl/source/filter/png/PngImageWriter.cxx   
|8 
 vcl/source/outdev/textline.cxx 
|   21 
 writerfilter/source/dmapper/DomainMapper_Impl.cxx  
|6 
 xmloff/qa/unit/data/differentListStylesInOneList.fodt  
|   47 +
 xmloff/qa/unit/text.cxx
|  105 +++
 xmloff/source/text/XMLTextNumRuleInfo.cxx  
|   12 
 xmloff/source/text/XMLTextNumRuleInfo.hxx  
|5 
 xmloff/source/text/txtparae.cxx
|  146 +++-
 47 files changed, 917 insertions(+), 778 deletions(-)

New commits:
commit 9f66e8819fb3cb17acfac46aa6fc3cbd5293ee50
Author: Taichi Haradaguchi <20001...@ymail.ne.jp>
AuthorDate: Thu Jun 15 07:09:06 2023 +0900
Commit: Andras Timar 
CommitDate: Sun Jun 18 11:55:03 2023 +0200

nss: upgrade to release 3.90

Change-Id: Ic446f33abd5355886b8c8c181a088c07ea4605c1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153096
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
(cherry picked from commit 3f6bb9565d4edce563dbd938c655ae853926d362)
Reviewed-on: 

[Libreoffice-bugs] [Bug 155875] [LOCALHELP] - Writer - Help pages about dialogs should provide instructions for the Tabbed UI

2023-06-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155875

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

https://git.libreoffice.org/help/commit/12fb75b6a6ab7048a9b988f9cf638d168dd36f89

tdf#155875 Tabbed UI commands Writer in Help pages

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

[Libreoffice-commits] core.git: helpcontent2

2023-06-18 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a2d7cabe0d7b28334fb6b9742082b3ad58ce519e
Author: Olivier Hallot 
AuthorDate: Sun Jun 18 06:39:00 2023 -0300
Commit: Gerrit Code Review 
CommitDate: Sun Jun 18 11:39:00 2023 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to 12fb75b6a6ab7048a9b988f9cf638d168dd36f89
  - tdf#155875 Tabbed UI commands Writer in Help pages

+ refactoring
+ Writer View menu (part 7)

Change-Id: Idca2fd23bc5c2893566335edfb7084570fe2df67
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/153230
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index fe8a94e99b73..12fb75b6a6ab 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit fe8a94e99b738bcfe5f36ac999349f9436ef769d
+Subproject commit 12fb75b6a6ab7048a9b988f9cf638d168dd36f89


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

2023-06-18 Thread Olivier Hallot (via logerrit)
 source/text/shared/00/0004.xhp  |1 
 source/text/shared/00/0406.xhp  |   15 ---
 source/text/shared/00/00040500.xhp  |   70 ++---
 source/text/shared/01/gallery.xhp   |   61 ++-
 source/text/shared/01/menu_view_sidebar.xhp |   34 ++--
 source/text/swriter/01/0514.xhp |  112 ++--
 6 files changed, 170 insertions(+), 123 deletions(-)

New commits:
commit 12fb75b6a6ab7048a9b988f9cf638d168dd36f89
Author: Olivier Hallot 
AuthorDate: Sat Jun 17 20:08:28 2023 -0300
Commit: Olivier Hallot 
CommitDate: Sun Jun 18 11:38:59 2023 +0200

tdf#155875 Tabbed UI commands Writer in Help pages

+ refactoring
+ Writer View menu (part 7)

Change-Id: Idca2fd23bc5c2893566335edfb7084570fe2df67
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/153230
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/shared/00/0004.xhp 
b/source/text/shared/00/0004.xhp
index 207d614d51..3008ea016c 100644
--- a/source/text/shared/00/0004.xhp
+++ b/source/text/shared/00/0004.xhp
@@ -37,6 +37,7 @@
 From the 
keyboard:
 From the start 
center:
 From the status 
bar:
+From the 
sidebar:
 
 
 Related Topics
diff --git a/source/text/shared/00/0406.xhp 
b/source/text/shared/00/0406.xhp
index f819148e17..e64617f00e 100644
--- a/source/text/shared/00/0406.xhp
+++ b/source/text/shared/00/0406.xhp
@@ -27,21 +27,8 @@
 
 Tools Menu
 
-Choose 
Insert - Media - Gallery or open 
Standard bar, click
-
-
-
-
-
-Icon
-
-
-Gallery
-
-
-
-
 
+
 Choose Tools - Gallery or click the 
Gallery  icon on the Standard bar -New 
Theme button - Files tab.
 
 Choose 
Tools - Spelling.
diff --git a/source/text/shared/00/00040500.xhp 
b/source/text/shared/00/00040500.xhp
index dba47095d1..e02a388e19 100644
--- a/source/text/shared/00/00040500.xhp
+++ b/source/text/shared/00/00040500.xhp
@@ -375,35 +375,51 @@
 Choose Format - Page 
Style - Footer tab.
 Choose View - 
Styles - open context menu of an entry and choose Modify/New - 
Footer tab.
 
+
 
- Command+TF11
-Choose View - 
Styles.
-
-  
-Choose Format - 
Styles - Manage Styles.
-  
-  
-Choose Format - 
Styles - Manage Styles.
-  
-  
-Choose Styles - 
Manage Styles.
-  
-  
-Choose Styles - 
Manage Styles.
-On Formatting 
bar, click
-
-  
-
-  Icon Styles
-
-
-  Styles
-
-  
-
-  
-
+  
+
+  
+  Choose Styles - 
Manage Styles.
+  Choose View - 
Styles.
+
+
+  
+  
+  Choose Format - 
Styles - Manage Styles.
+
+
+  
+  
+  Choose Format - 
Styles - Manage Styles.
+
+
+  
+  
+  Choose Styles - 
Manage Styles.
+
+  
+  
+
+
+
+  
+  
+
+  
+Icon Styles
+  
+  
+Styles
+  
+
+  
+  
+  Command + 
TF11
+
+  
 
+
 
 
 
diff --git a/source/text/shared/01/gallery.xhp 
b/source/text/shared/01/gallery.xhp
index db0967c9ba..54b50a2c1a 100644
--- a/source/text/shared/01/gallery.xhp
+++ b/source/text/shared/01/gallery.xhp
@@ -20,55 +20,78 @@
 
 
   
-Gallery
+Gallery
 /text/shared/01/gallery.xhp
   
 
 
 
 
-
-Displays the contents of the 
Gallery as icons.
-
-Displays the contents of the 
Gallery as small icons, with title and path 
information.
+
+Displays the contents of the 
Gallery as icons.
+
+Displays the contents of the 
Gallery as small icons, with title and path 
information.
 
 
 
 
-
+
 
 Gallery
-Opens the Gallery deck of the Sidebar, 
where you can select images and audio clips to insert into your 
document.
+Opens the Gallery deck of the Sidebar, 
where you can select images and audio clips to insert into your 
document.
 
 
-You can 
display the contents of the Gallery as icons, or icons with titles 
and path information.
-To zoom in or 
zoom out on a single object in the Gallery, double-click the 
object, or select the object, and then press the Spacebar.
+You can display the contents of 
the Gallery as icons, or icons with titles and path 
information.
+To zoom in or zoom out on a 
single object in the Gallery, double-click the object, or select 
the object, and then press the Spacebar.
 
 
-
+  
+
+
+
+  
+  Choose 
View - Gallery.
+  
+  Choose 
Insert - Gallery.
+  
+  
+
+  
+
+  Icon 
Gallery
+
+
+  Gallery
+
+  
+
+  
+
+  
 
-
-Themes are 
listed on the left side of the Gallery.Click a theme to view the objects associated 
with the theme.
-
-To 

[Libreoffice-commits] core.git: stoc/source stoc/test

2023-06-18 Thread Mike Kaganski (via logerrit)
 stoc/source/corereflection/crarray.cxx   |   16 +-
 stoc/source/corereflection/crcomp.cxx|   10 -
 stoc/source/corereflection/crefl.cxx |8 -
 stoc/source/corereflection/crenum.cxx|4 
 stoc/source/corereflection/criface.cxx   |8 -
 stoc/source/inspect/introspection.cxx|4 
 stoc/source/invocation/invocation.cxx|4 
 stoc/source/javaloader/javaloader.cxx|2 
 stoc/source/javavm/javavm.cxx|   50 +++---
 stoc/source/proxy_factory/proxyfac.cxx   |3 
 stoc/source/security/access_controller.cxx   |   18 +-
 stoc/source/security/file_policy.cxx |2 
 stoc/source/servicemanager/servicemanager.cxx|   12 -
 stoc/source/simpleregistry/simpleregistry.cxx|  110 +++
 stoc/source/typeconv/convert.cxx |2 
 stoc/source/uriproc/UriReferenceFactory.cxx  |2 
 stoc/test/javavm/jvm_interaction/interactionhandler.cxx  |5 
 stoc/test/registry_tdprovider/testregistrytdprovider.cxx |2 
 stoc/test/tdmanager/testtdmanager.cxx|2 
 stoc/test/testproxyfac.cxx   |   10 -
 20 files changed, 136 insertions(+), 138 deletions(-)

New commits:
commit 0c2b2c9babfd781e0d9d68bb2a14a045b0c6ec4c
Author: Mike Kaganski 
AuthorDate: Sun Apr 23 20:14:54 2023 +0300
Commit: Mike Kaganski 
CommitDate: Sun Jun 18 11:10:20 2023 +0200

Use getXWeak in stoc

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

diff --git a/stoc/source/corereflection/crarray.cxx 
b/stoc/source/corereflection/crarray.cxx
index ca8d159ef721..67be31e1ac93 100644
--- a/stoc/source/corereflection/crarray.cxx
+++ b/stoc/source/corereflection/crarray.cxx
@@ -40,13 +40,13 @@ void ArrayIdlClassImpl::realloc( Any & rArray, sal_Int32 
nLen )
 {
 throw IllegalArgumentException(
 "expected sequence, but found " + 
rArray.getValueType().getTypeName(),
-static_cast(static_cast(this)), 0 );
+getXWeak(), 0 );
 }
 if (nLen < 0)
 {
 throw IllegalArgumentException(
 "negative length given!",
-static_cast(static_cast(this)), 1 );
+getXWeak(), 1 );
 }
 
 uno_Sequence ** ppSeq = const_cast(static_cast(rArray.getValue()));
@@ -64,7 +64,7 @@ sal_Int32 ArrayIdlClassImpl::getLen( const Any & rArray )
 {
 throw IllegalArgumentException(
 "expected sequence, but found " + 
rArray.getValueType().getTypeName(),
-static_cast(static_cast(this)), 0 );
+getXWeak(), 0 );
 }
 
 return (*static_cast(rArray.getValue()))->nElements;
@@ -77,7 +77,7 @@ Any ArrayIdlClassImpl::get( const Any & rArray, sal_Int32 
nIndex )
 {
 throw IllegalArgumentException(
 "expected sequence, but found " + 
rArray.getValueType().getTypeName(),
-static_cast(static_cast(this)), 0 );
+getXWeak(), 0 );
 }
 
 uno_Sequence * pSeq = *static_cast(rArray.getValue());
@@ -85,7 +85,7 @@ Any ArrayIdlClassImpl::get( const Any & rArray, sal_Int32 
nIndex )
 {
 throw ArrayIndexOutOfBoundsException(
 "illegal index given, index " + OUString::number(nIndex) + " is < 
" + OUString::number(pSeq->nElements),
-static_cast(static_cast(this)) );
+getXWeak() );
 }
 
 Any aRet;
@@ -107,7 +107,7 @@ void ArrayIdlClassImpl::set( Any & rArray, sal_Int32 
nIndex, const Any & rNewVal
 {
 throw IllegalArgumentException(
 "expected sequence, but found " + 
rArray.getValueType().getTypeName(),
-static_cast(static_cast(this)), 0 );
+getXWeak(), 0 );
 }
 
 uno_Sequence * pSeq = *static_cast(rArray.getValue());
@@ -115,7 +115,7 @@ void ArrayIdlClassImpl::set( Any & rArray, sal_Int32 
nIndex, const Any & rNewVal
 {
 throw ArrayIndexOutOfBoundsException(
 "illegal index given, index " + OUString::number(nIndex) + " is < 
" + OUString::number(pSeq->nElements),
-static_cast(static_cast(this)) );
+getXWeak() );
 }
 
 uno_Sequence ** ppSeq = const_cast(static_cast(rArray.getValue()));
@@ -135,7 +135,7 @@ void ArrayIdlClassImpl::set( Any & rArray, sal_Int32 
nIndex, const Any & rNewVal
 TYPELIB_DANGER_RELEASE( pElemTypeDescr );
 throw IllegalArgumentException(
 "sequence element is not assignable by given value!",
-static_cast(static_cast(this)), 2 );
+getXWeak(), 2 );
 }
 TYPELIB_DANGER_RELEASE( pElemTypeDescr );
 }
diff --git a/stoc/source/corereflection/crcomp.cxx 
b/stoc/source/corereflection/crcomp.cxx

  1   2   >