[Libreoffice-bugs] [Bug 148967] Include a HUD inside the Standard toolbar as text field (today you can add it only as button)

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148967

--- Comment #45 from Adolfo Jayme Barrientos  ---
> And I'd still prefer the sidebar tab.

@Heiko: My proposal of a control in the menubar row won’t exclude that — it
could be a toggle that expands a search UI in the sidebar. I’ll prepare a
mockup of what I have in mind.

> If it is possible to have a magnifier icon next to the close button are other
> icons also possible such as open document, undo-redo etc?

@John: Replicating the “quick toolbar” that resides next to MUFFIN tabs in the
classic-toolbar interface should be filed as a separate ticket. It is a nice
idea; thanks for sharing.

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

[Libreoffice-commits] core.git: Branch 'libreoffice-7-4' - helpcontent2

2022-06-25 Thread Mike Kaganski (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit eba932b55a9664afec682c0a72585ec1502586b6
Author: Mike Kaganski 
AuthorDate: Sat Jun 25 11:51:59 2022 +0200
Commit: Gerrit Code Review 
CommitDate: Sat Jun 25 11:51:59 2022 +0200

Update git submodules

* Update helpcontent2 from branch 'libreoffice-7-4'
  to c28f19ed966fb82a25707d6fcfe60cfbb6164386
  - Fix (BIN|OCT|DEC|HEX)2(BIN|OCT|DEC|HEX) to mention string arguments

... and return types, and also fix the conceptually incorrect examples

Change-Id: I9953d546c0c6ee8f224b866643f6975e538f44f5
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/136378
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 
(cherry picked from commit 7a93d6a4ae5adb871cbd7cd54f4cc71fed63e27e)
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/136420
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/helpcontent2 b/helpcontent2
index ea2cf3377aa0..c28f19ed966f 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit ea2cf3377aa00f5b6b48ceb00252ea135acdd95c
+Subproject commit c28f19ed966fb82a25707d6fcfe60cfbb6164386


[Libreoffice-commits] help.git: Branch 'libreoffice-7-4' - source/text

2022-06-25 Thread Mike Kaganski (via logerrit)
 source/text/scalc/01/04060115.xhp |   68 +++---
 source/text/scalc/01/04060116.xhp |   18 +-
 2 files changed, 43 insertions(+), 43 deletions(-)

New commits:
commit c28f19ed966fb82a25707d6fcfe60cfbb6164386
Author: Mike Kaganski 
AuthorDate: Fri Jun 24 10:20:43 2022 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Sat Jun 25 11:51:58 2022 +0200

Fix (BIN|OCT|DEC|HEX)2(BIN|OCT|DEC|HEX) to mention string arguments

... and return types, and also fix the conceptually incorrect examples

Change-Id: I9953d546c0c6ee8f224b866643f6975e538f44f5
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/136378
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 
(cherry picked from commit 7a93d6a4ae5adb871cbd7cd54f4cc71fed63e27e)
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/136420
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/source/text/scalc/01/04060115.xhp 
b/source/text/scalc/01/04060115.xhp
index 2629e93d0..aefa271d7 100644
--- a/source/text/scalc/01/04060115.xhp
+++ b/source/text/scalc/01/04060115.xhp
@@ -130,14 +130,14 @@
 
 
 BIN2DEC
-The result is the decimal number for the binary 
number entered.
+The result is the number for the binary (base-2) 
number string entered.
 
 
 BIN2DEC(Number)
- 
Number is a binary number. The number can have a maximum of 10 
places (bits). The most significant bit is the sign bit. Negative numbers are 
entered as two's complement.
+ 
Number is a string representing a binary (base-2) number. It can 
have a maximum of 10 places (bits). The most significant bit is the sign bit. 
Negative numbers are entered as two's complement.
 
 
- =BIN2DEC(1100100) returns 100.
+=BIN2DEC("1100100") returns 100.
 
 
 
@@ -149,15 +149,15 @@
 
 
 BIN2HEX
-The result is the hexadecimal number for the binary 
number entered.
+The result is the string representing the number in 
hexadecimal form for the binary (base-2) number string 
entered.
 
 
 BIN2HEX(Number [; 
Places])
- 
Number is a binary number. The number can have a maximum of 10 
places (bits). The most significant bit is the sign bit. Negative numbers are 
entered as two's complement.
-Places means 
the number of places to be output.
+Number is a string representing a binary (base-2) 
number. It can have a maximum of 10 places (bits). The most significant bit is 
the sign bit. Negative numbers are entered as two's complement.
+Places means the number of places to be 
output.
 
 
- =BIN2HEX(1100100;6) returns 64.
+=BIN2HEX("1100100";6) returns "64".
 
 
 
@@ -169,15 +169,15 @@
 
 
 BIN2OCT
- The result is the octal number for the binary 
number entered.
+The result is the string representing the number in 
octal form for the binary (base-2) number string entered.
 
 
 BIN2OCT(Number [; 
Places])
- 
Number is a binary number. The number can have a maximum of 10 
places (bits). The most significant bit is the sign bit. Negative numbers are 
entered as two's complement.
- 
Places means the number of places to be output.
+Number is a string representing a binary (base-2) 
number. It can have a maximum of 10 places (bits). The most significant bit is 
the sign bit. Negative numbers are entered as two's complement.
+Places means the number of places to be 
output.
 
 
- =BIN2OCT(1100100;4) returns 0144.
+=BIN2OCT("1100100";4) returns "0144".
 
 
 
@@ -207,15 +207,15 @@
 
 
 DEC2BIN
- The result is the binary number for the decimal 
number entered between -512 and 511.
+The result is the string representing the number in 
binary (base-2) form for the number entered.
 
 
 DEC2BIN(Number [; 
Places])
- 
Number is a decimal number. If Number is negative, the function 
returns a binary number with 10 characters. The most significant bit is the 
sign bit, the other 9 bits return the value.
- 
Places means the number of places to be output.
+Number is a number between -512 and 511. If 
Number is negative, the function returns a binary number string with 10 
characters. The most significant bit is the sign bit, the other 9 bits return 
the value.
+Places means the number of places to be 
output.
 
 
- =DEC2BIN(100;8) returns 01100100.
+=DEC2BIN(100;8) returns "01100100".
 
 
 
@@ -227,15 +227,15 @@
 
 
 DEC2HEX
-The result is the hexadecimal number for the decimal 
number entered.
+The result is the string representing the number in 
hexadecimal form for the number entered.
 
 
 DEC2HEX(Number [; 
Places])
- 
Number is a decimal number. If Number is negative, the function 
returns a hexadecimal number with 10 characters (40 bits). The most significant 
bit is the sign bit, the other 39 bits return the value.
- 
Places means the number of places to be output.
+Number is a number. If Number is negative, the 
function returns a hexadecimal number string with 10 characters (40 bits). The 
most significant bit is the sign bit, the other 39 bits return the 
value.
+Places means the number of places to be 
output.
 
 
- =DEC2HEX(100;4) returns 0064.

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

2022-06-25 Thread Noel Grandin (via logerrit)
 oox/source/export/vmlexport.cxx |   18 ++
 1 file changed, 10 insertions(+), 8 deletions(-)

New commits:
commit 6aa4d96f1290596e7e346573afb18756441c823d
Author: Noel Grandin 
AuthorDate: Fri Jun 24 12:32:28 2022 +0200
Commit: Noel Grandin 
CommitDate: Sat Jun 25 11:51:00 2022 +0200

use SAL_WARN instead of printf for logging

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

diff --git a/oox/source/export/vmlexport.cxx b/oox/source/export/vmlexport.cxx
index 8ee5c28ed67a..236407677340 100644
--- a/oox/source/export/vmlexport.cxx
+++ b/oox/source/export/vmlexport.cxx
@@ -1009,21 +1009,23 @@ void VMLExport::Commit( EscherPropertyContainer& 
rProps, const tools::Rectangle&
 #if OSL_DEBUG_LEVEL > 0
 const size_t opt_nProp_size(opt.nProp.size());
 const sal_uInt8 opt_nProp_empty(0);
-fprintf( stderr, "TODO VMLExport::Commit(), unimplemented id: 
%d, value: %" SAL_PRIuUINT32 ", data: [%zu, %p]\n",
-nId,
-opt.nPropValue,
-opt_nProp_size,
-0 == opt_nProp_size ? _nProp_empty : 
opt.nProp.data());
+SAL_WARN( "oox.vml", "TODO VMLExport::Commit(), unimplemented 
id: " << nId
+<< ", value: " << opt.nPropValue
+<< ", data: [" << opt_nProp_size << ", "
+<< (0 == opt_nProp_size ? _nProp_empty : 
opt.nProp.data())
+<< "]");
 if ( opt.nProp.size() )
 {
 const sal_uInt8 *pIt = opt.nProp.data();
-fprintf( stderr, "( " );
+OStringBuffer buf;
+buf.append( "( " );
 for ( int nCount = opt.nProp.size(); nCount; --nCount )
 {
-fprintf( stderr, "%02x ", *pIt );
+buf.append( static_cast(*pIt), 16 
).append(' ');
 ++pIt;
 }
-fprintf( stderr, ")\n" );
+buf.append( ")" );
+SAL_WARN("oox.vml", std::string_view(buf));
 }
 #endif
 break;


[Libreoffice-commits] core.git: Branch 'libreoffice-7-4' - translations

2022-06-25 Thread Martin Srebotnjak (via logerrit)
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 10ce049dafc57cfcdc2238fef1499868d8026723
Author: Martin Srebotnjak 
AuthorDate: Sat Jun 25 11:50:21 2022 +0200
Commit: Gerrit Code Review 
CommitDate: Sat Jun 25 11:50:21 2022 +0200

Update git submodules

* Update translations from branch 'libreoffice-7-4'
  to e67b3be07b65b2ce12d17d948e428d408652e587
  - Updated Slovenian translation

Change-Id: Icabee3562fc186c73b93b26fd489754699c3992f

diff --git a/translations b/translations
index 69e6f0735b6d..e67b3be07b65 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 69e6f0735b6d94b7b0f727d27157a4ef720a525a
+Subproject commit e67b3be07b65b2ce12d17d948e428d408652e587


[Libreoffice-commits] translations.git: Branch 'libreoffice-7-4' - source/sl

2022-06-25 Thread Martin Srebotnjak (via logerrit)
 source/sl/cui/messages.po |   44 +-
 source/sl/editeng/messages.po |4 
 source/sl/filter/messages.po  |8 
 source/sl/helpcontent2/source/text/sbasic/shared.po   |4 
 source/sl/helpcontent2/source/text/sbasic/shared/03.po|4 
 source/sl/helpcontent2/source/text/scalc/01.po|   64 ---
 source/sl/helpcontent2/source/text/scalc/guide.po |4 
 source/sl/helpcontent2/source/text/shared/00.po   |   32 -
 source/sl/helpcontent2/source/text/shared/01.po   |   72 +--
 source/sl/helpcontent2/source/text/shared/guide.po|   44 --
 source/sl/helpcontent2/source/text/shared/optionen.po |   10 
 source/sl/helpcontent2/source/text/simpress.po|   18 
 source/sl/helpcontent2/source/text/smath/guide.po |   30 -
 source/sl/helpcontent2/source/text/swriter/00.po  |   22 -
 source/sl/helpcontent2/source/text/swriter/01.po  |  106 ++---
 source/sl/helpcontent2/source/text/swriter/04.po  |   50 +-
 source/sl/helpcontent2/source/text/swriter/guide.po   |   32 -
 source/sl/officecfg/registry/data/org/openoffice/Office.po|   26 +
 source/sl/officecfg/registry/data/org/openoffice/Office/UI.po |4 
 source/sl/sc/messages.po  |4 
 source/sl/sd/messages.po  |   12 
 source/sl/svtools/messages.po |   11 
 source/sl/svx/messages.po |  206 +-
 source/sl/sw/messages.po  |   93 ++--
 24 files changed, 450 insertions(+), 454 deletions(-)

New commits:
commit e67b3be07b65b2ce12d17d948e428d408652e587
Author: Martin Srebotnjak 
AuthorDate: Sat Jun 25 11:50:13 2022 +0200
Commit: Andras Timar 
CommitDate: Sat Jun 25 11:50:13 2022 +0200

Updated Slovenian translation

Change-Id: Icabee3562fc186c73b93b26fd489754699c3992f

diff --git a/source/sl/cui/messages.po b/source/sl/cui/messages.po
index a8c5a7cffd1..386a996f1af 100644
--- a/source/sl/cui/messages.po
+++ b/source/sl/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LibreOffice 7.4\n"
 "Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice_status=UNCONFIRMED=UI\n;
-"POT-Creation-Date: 2022-06-13 09:50+0200\n"
-"PO-Revision-Date: 2022-06-15 17:18+0200\n"
+"POT-Creation-Date: 2022-06-24 13:03+0200\n"
+"PO-Revision-Date: 2022-06-24 22:10+0200\n"
 "Last-Translator: Martin Srebotnjak \n"
 "Language-Team: sl.libreoffice.org\n"
 "Language: sl\n"
@@ -2624,8 +2624,8 @@ msgstr "Ali želite v lastnosti metapodatkov vstaviti 
vsebino po meri? Pojdite v
 
 #: cui/inc/tipoftheday.hrc:208
 msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want to see, but not print, an object in Draw? Draw it on a layer for 
which the “Printable” flag is not set (right click on the tab and “Modify 
Layer”)."
-msgstr "Ali želite videti, vendar ne natisniti predmeta v programu Draw? 
Narišite ga na plast, za katero zastavica »natisljivo« ni potrjena (desni klik 
zavihka in »Spremeni plast«)."
+msgid "Want to see, but not print, an object in Draw? Draw it on a layer for 
which the “Printable” flag is not set (right-click the layer’s tab and choose 
“Modify Layer”)."
+msgstr "Ali želite videti, vendar ne natisniti predmeta v programu Draw? 
Narišite ga na plast, za katero zastavica »natisljivo« ni potrjena (desno 
kliknite zavihek in izberite »Spremeni plast«)."
 
 #: cui/inc/tipoftheday.hrc:209
 msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -5298,8 +5298,8 @@ msgstr "_Navpično naloženo"
 
 #: cui/uiconfig/ui/cellalignment.ui:132
 msgctxt "cellalignment|extended_tip|checkVertStack"
-msgid "Aligns text vertically."
-msgstr "Navpično poravna besedilo."
+msgid "Text direction vertically."
+msgstr "Smer besedila navpično."
 
 #: cui/uiconfig/ui/cellalignment.ui:143
 msgctxt "cellalignment|checkAsianMode"
@@ -8941,17 +8941,17 @@ msgctxt "hyperlinkdocpage|extended_tip|script"
 msgid "Opens the Assign Macro dialog, in which you can give events such as 
\"mouse over object\" or \"trigger hyperlink\" their own program codes."
 msgstr "Odpre pogovorno okno Dodeli makro, kjer lahko dogodkom, kot so »miška 
preko predmeta« ali »sproži hiperpovezavo«, dodelite njihove lastne programske 
kode."
 
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:399
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:391
 msgctxt "hyperlinkdocpage|extended_tip|frame"
 msgid "Enter the name of the frame that you want the linked file to open in, 
or select a predefined frame from the list. If you leave this box blank, the 
linked file opens in the current browser window."
 msgstr "Vnesite ime okvira, v katerem želite, da se odpre povezana datoteka, 
ali izberite vnaprej določen okvir iz seznama. Če pustite to polje prazno, se 
bo povezana datoteka odprla v trenutnem oknu 

[Libreoffice-bugs] [Bug 133092] [META] Crash bugs

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092

Telesto  changed:

   What|Removed |Added

 Depends on||149718


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=149718
[Bug 149718] Writer Crashes on inserting a Chart based on a Table with merged
cells
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 149718] Writer Crashes on inserting a Chart based on a Table with merged cells

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149718

Telesto  changed:

   What|Removed |Added

 OS|Linux (All) |All
 Status|UNCONFIRMED |NEW
Version|7.3.4.2 release |Inherited From OOo
 Ever confirmed|0   |1
 Blocks||133092

--- Comment #4 from Telesto  ---
Confirm
Version: 7.4.0.0.alpha1+ (x64) / LibreOffice Community
Build ID: 089c91b1ad16232f130cb50266732509f83c52eb
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: en-US (nl_NL); UI: en-GB
Calc: CL Jumbo

Also with
4.4.7.2

and 3.3.0


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 149281] Rename "Libreoffice" to "Libreoffice Start Center" in Windows Start menu

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149281

Heiko Tietze  changed:

   What|Removed |Added

   Keywords||skillScript

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

[Libreoffice-bugs] [Bug 149726] Unsaved Tabs

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149726

Luc Dupuis  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||chantraine...@gmail.com
   Assignee|libreoffice-b...@lists.free |chantraine...@gmail.com
   |desktop.org |
 Ever confirmed|0   |1

--- Comment #1 from Luc Dupuis  ---
Created attachment 180958
  --> https://bugs.documentfoundation.org/attachment.cgi?id=180958=edit
An example of thix bud is on page 2.

Page 2, Roman numeral tabs are never restored after reopening a correctly
configured and saved document.

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

[Libreoffice-bugs] [Bug 149705] setH reserved keyword

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149705

Julien Nabet  changed:

   What|Removed |Added

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

--- Comment #3 from Julien Nabet  ---
"H" symbol isn't present in Opensymbol font and don't know how to add it.
I abandoned the patch.
Unassign myself.

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

[Libreoffice-bugs] [Bug 149726] New: Unsaved Tabs

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149726

Bug ID: 149726
   Summary: Unsaved Tabs
   Product: LibreOffice
   Version: 7.3.3.2 release
  Hardware: Other
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: chantraine...@gmail.com

Description:
After adjusting my tabs and saving the document, they appear out of order when
reopening. They were therefore not properly saved.

Steps to Reproduce:
1. Create 2 tabs: the 1st justified on the left, the 2nd on the right with
dotted lines
2. Save and quit.
3.Reopen the document to see the bug.

Actual Results:
Many right-justified tabs with dotted lines have disappeared.

Expected Results:
The reopened document should be identical to the one that was saved.


Reproducible: Always


User Profile Reset: No



Additional Info:
I can produce screenshots or documents illustrating the bug if you give me the
possibility.

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

[Libreoffice-bugs] [Bug 109530] [META] File opening issues

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109530
Bug 109530 depends on bug 140477, which changed state.

Bug 140477 Summary: FILEOPEN A certain ODS file slow to open
https://bugs.documentfoundation.org/show_bug.cgi?id=140477

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 140477] FILEOPEN A certain ODS file slow to open

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140477

Luboš Luňák  changed:

   What|Removed |Added

 CC||l.lu...@collabora.com
 Resolution|--- |FIXED
 Status|NEW |RESOLVED

--- Comment #9 from Luboš Luňák  ---
Closing according to comment #8.

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

[Libreoffice-bugs] [Bug 139612] Option "Search criteria = and <> must apply to whole cells" doesn't affect to calculation as must.

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139612

Luboš Luňák  changed:

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #20 from Luboš Luňák  ---
*** Bug 138532 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 138532] delete checkmark from "Search Criteria = and <> must apply to whole cells" without effect

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138532

Luboš Luňák  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|NEW |RESOLVED
 CC||l.lu...@collabora.com

--- Comment #3 from Luboš Luňák  ---


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

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

[Libreoffice-bugs] [Bug 122735] objects outside the selected group don't become pale

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122735

--- Comment #11 from Mike Kaganski  ---
(In reply to Armin Le Grand from comment #9)

So indeed this is not the commit mentioned in the comment 4; however, the
identified commit range consists only of three commits, and the relevant one is

Commit  4b4942224b550235da228655677b5c068a053254
  Author Armin Le Grand 
  Date   Mon Apr 16 22:34:50 2018 +0200
SOSAW080: Derive SdrObjGroup from SdrObjList

Unfortunately, it is huge, and that doesn't allow me to see the problem reading
the code.

The "pale" painting is implemented using these things:

* ObjectContact::DoVisualizeEnteredGroup (virtual, returns true in
ObjectContactOfPageView);
* DisplayInfo::SetGhostedDrawMode / DisplayInfo::ClearGhostedDrawMode /
DisplayInfo::IsGhostedDrawModeActive
* ViewObjectContact::isPrimitiveGhosted (virtual)
* ObjectContactOfPageView::DoProcessDisplay
* ViewObjectContactOfE3dScene::createPrimitive2DSequence
* ViewObjectContactOfSdrPage::getPrimitive2DSequenceHierarchy

... etc.
Making SetGhostedDrawMode do nothing makes everything pale, so the code is
still there, and is functional.
However, the SetGhostedDrawMode/ClearGhostedDrawMode pairs look to now be
somewhat misplaced - the ghosted draw does not happen between them, only when
it's disabled.

Luckily, Armin is the most knowledgeable one in the area, who worked on
https://bz.apache.org/ooo/show_bug.cgi?id=29129, so hopefully can fix this.

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

[Libreoffice-bugs] [Bug 149711] EDITING Track Changes: Writer does not show the change in number of inserted numbered paragraphs

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149711

Eike Rathke  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

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

[Libreoffice-bugs] [Bug 149709] EDITING Track Changes: Writer does not show the change in number of inserted numbered paragraphs

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149709

--- Comment #3 from Eike Rathke  ---
*** Bug 149711 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 149711] EDITING Track Changes: Writer does not show the change in number of inserted numbered paragraphs

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149711

Eike Rathke  changed:

   What|Removed |Added

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

--- Comment #1 from Eike Rathke  ---


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

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

[Libreoffice-bugs] [Bug 129167] Last position restore no longer working

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129167

--- Comment #13 from Roland Hughes  ---
(In reply to Mike Kaganski from comment #12)
> (In reply to Roland Hughes from comment #11)
> > (In reply to Justin L from comment #10)
> > > Did this really work at some point for DOCX format? I could not reproduce 
> > > it
> > > working in 5.2 or 4.1.
> > 
> > Yes it did. You had to have the contact information filled all the way out
> > though.
> 
> No it never worked in anything except ODT/FODT, neither in LibreOffice, nor
> in any other OOo derivative. You are mistaken.

Mistake for the entire time it took me to write this book?
https://www.theminimumyouneedtoknow.com/soa_book.html

I think not.

> 
> > This isn't really a duplicate of bug 112740
> > though it has been marked as such.
> 
> Yes it is. It asks to restore position in DOCX, as it does for ODT (comment
> 3). What you write in comment 11 (and in bug 112740 comment 6) is a
> *different* feature request - please file it separately. Thank you.

No, it's not a *different* feature. I'm pointing out the train wreck short
sighted development will create if they go down the route of saving the last
user position as a bookmark in the file.

I've written a ___lot___ of books.

Not once have I had last user position survive moving a document between
machines with any word processor on any OS.

Today's reality is that many different users will edit the exact same file from
a NAS or DropBox type location. If you store the last position within the file
itself you create a train wreck with "last one in wins" and you will create an
avalanche of bug reports claiming the last position feature doesn't work
because each user will get the last position of whoever was in the file last,
not the last position from their last edit session on their machine.

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

[Libreoffice-bugs] [Bug 129167] Last position restore no longer working

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129167

--- Comment #12 from Mike Kaganski  ---
(In reply to Roland Hughes from comment #11)
> (In reply to Justin L from comment #10)
> > Did this really work at some point for DOCX format? I could not reproduce it
> > working in 5.2 or 4.1.
> 
> Yes it did. You had to have the contact information filled all the way out
> though.

No it never worked in anything except ODT/FODT, neither in LibreOffice, nor in
any other OOo derivative. You are mistaken.

> This isn't really a duplicate of bug 112740
> though it has been marked as such.

Yes it is. It asks to restore position in DOCX, as it does for ODT (comment 3).
What you write in comment 11 (and in bug 112740 comment 6) is a *different*
feature request - please file it separately. Thank you.

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

[Libreoffice-bugs] [Bug 149653] Build fails with poppler >= 22.03

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149653

--- Comment #5 from Rajeesh KV  ---
I am happy to report that the patch here
(https://gerrit.libreoffice.org/c/core/+/136261) fixes the build with poppler
22.06 (both GfxFont and PDFDoc issues).

You can find the build log at
https://download.copr.fedorainfracloud.org/results/rajeeshknambiar/poppler/fedora-36-x86_64/04561828-libreoffice/builder-live.log.gz

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

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

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

Bug ID: 149725
   Summary: Form navigator return always on the top left corner on
French interface
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: d...@palmieri.fr

Description:
Form navigator return always on the top left corner when I test the result of a
form. It does not record his location.

we have to close or move the Form navigator box every time to access on
informations located on the top left coner 

this problem appears on the French interface of libre office
(It's not the case with the default language )

Steps to Reproduce:
1.open a form in edit mode
2.show the form navigator
3.move the form navigator position (for exemple outside the form window 
4.test your form design (click on icon design mode 2 times)

Actual Results:
Form navigator return always on the top left on libre office in French 

Expected Results:
Form navigator must stay where wy have put it


Reproducible: Always


User Profile Reset: Yes



Additional Info:
on default installation version of libre office there is no problem

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

[Libreoffice-bugs] [Bug 105584] [META] Calc image bugs and enhancements

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105584
Bug 105584 depends on bug 100442, which changed state.

Bug 100442 Summary: File with many images takes a long time to open and save
https://bugs.documentfoundation.org/show_bug.cgi?id=100442

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 47148] [META] Image handling problems

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47148
Bug 47148 depends on bug 100442, which changed state.

Bug 100442 Summary: File with many images takes a long time to open and save
https://bugs.documentfoundation.org/show_bug.cgi?id=100442

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 100442] File with many images takes a long time to open and save

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100442

Buovjaga  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 144983] Wrong umlaut behaviour in linux

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144983

--- Comment #5 from software.v9...@slmail.me ---
Sometimes the error fixes itself and then it doesn't appear again until
restart. No idea what happens that the error disappears.

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

[Libreoffice-bugs] [Bug 149281] Rename "Libreoffice" to "Libreoffice Start Center" in Windows Start menu

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149281

Buovjaga  changed:

   What|Removed |Added

   Keywords|skillInfra  |

--- Comment #11 from Buovjaga  ---
Please think of some other skill keyword, I will remove skillInfra completely
as the topic lives in Redmine. Already cleaned wiki refs.

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

Amir H License statement

2022-06-25 Thread Amir Hri
All of my past & future contributions to LibreOffice may be
licensed under the MPLv2/LGPLv3+ dual license.


[Libreoffice-bugs] [Bug 112740] FILESAVE: DOCX - Save cursor position

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112740

--- Comment #6 from Roland Hughes  ---
(In reply to Justin L from comment #5)
> an idea presented here: https://gerrit.libreoffice.org/c/core/+/136408/1

See comment 4. Your idea completely ignores the reality that today the same
file is edited by multiple people.

Saving of last position should not be tied to a document file itself, no matter
what format. It needs to be stored in a settings/ini file on a per document per
user basis. It needs to only kick in __after__ a document is fully loaded so it
must be based on whatever internal data format is being used by LO.

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

Parsa Saei license agreement

2022-06-25 Thread Parsa Saei
All of my past & future contributions to LibreOffice may be
licensed under the MPLv2/LGPLv3+ dual license.


Mahdi Tizabi License Statement

2022-06-25 Thread Mehdi Mozaffar
All of my past & future contributions to LibreOffice may be
licensed under the MPLv2/LGPLv3+ dual license.


[Libreoffice-commits] core.git: Branch 'libreoffice-7-4' - sw/uiconfig

2022-06-25 Thread Heiko Tietze (via logerrit)
 sw/uiconfig/swriter/toolbar/drawbar.xml |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 2088f9b4762dcb1009f0030801d641db2bc626ab
Author: Heiko Tietze 
AuthorDate: Fri Jun 24 10:49:54 2022 +0200
Commit: Heiko Tietze 
CommitDate: Sat Jun 25 09:03:27 2022 +0200

Related tdf#143055 - Grid and Snap to Grid on Drawing toolbar

Change-Id: Ie04010d3bd0af65bcbb1f8c01a36878b2c9088ea
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136358
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 
(cherry picked from commit b1c6b936a74e41655e6ba6680654d21d019e5256)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136389

diff --git a/sw/uiconfig/swriter/toolbar/drawbar.xml 
b/sw/uiconfig/swriter/toolbar/drawbar.xml
index 1af47ad7b084..a350f6ef4f51 100644
--- a/sw/uiconfig/swriter/toolbar/drawbar.xml
+++ b/sw/uiconfig/swriter/toolbar/drawbar.xml
@@ -60,4 +60,6 @@
  
  
  
+ 
+ 
 


[Libreoffice-commits] core.git: Branch 'libreoffice-7-4' - sd/uiconfig

2022-06-25 Thread Heiko Tietze (via logerrit)
 sd/uiconfig/sdraw/popupmenu/page.xml  |1 +
 sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml|1 +
 sd/uiconfig/sdraw/toolbar/standardbar.xml |1 +
 sd/uiconfig/simpress/popupmenu/page.xml   |1 +
 sd/uiconfig/simpress/toolbar/drawingobjectbar.xml |1 +
 sd/uiconfig/simpress/toolbar/standardbar.xml  |1 +
 6 files changed, 6 insertions(+)

New commits:
commit 4cd7489f5898394730b794bdecbc29800cf23627
Author: Heiko Tietze 
AuthorDate: Fri Jun 24 11:04:31 2022 +0200
Commit: Heiko Tietze 
CommitDate: Sat Jun 25 09:03:06 2022 +0200

Resolves tdf#143055 - Make Snap-to-grid easier to access

Added to page context menu, standard toolbar, and line & filling
toolbar

Change-Id: I04c2a77ac25a0c00771a74069f61a94d8e523a42
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136360
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 
(cherry picked from commit da284326961c2e3cfe48cd05b1ea6a51f33a0124)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136419

diff --git a/sd/uiconfig/sdraw/popupmenu/page.xml 
b/sd/uiconfig/sdraw/popupmenu/page.xml
index 92a296a4c835..1da86394fb93 100644
--- a/sd/uiconfig/sdraw/popupmenu/page.xml
+++ b/sd/uiconfig/sdraw/popupmenu/page.xml
@@ -16,6 +16,7 @@
   
 
   
+  
   
   
   
diff --git a/sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml 
b/sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml
index 04d010eee3dd..86b07200b231 100644
--- a/sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml
+++ b/sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml
@@ -63,6 +63,7 @@
  
  
  
+ 
  
 
 
diff --git a/sd/uiconfig/sdraw/toolbar/standardbar.xml 
b/sd/uiconfig/sdraw/toolbar/standardbar.xml
index 21d75ddd3a5e..b59a4d75475f 100644
--- a/sd/uiconfig/sdraw/toolbar/standardbar.xml
+++ b/sd/uiconfig/sdraw/toolbar/standardbar.xml
@@ -47,6 +47,7 @@
  
  
  
+ 
  
  
  
diff --git a/sd/uiconfig/simpress/popupmenu/page.xml 
b/sd/uiconfig/simpress/popupmenu/page.xml
index 5ee3946bd8cd..8a94daf5d785 100644
--- a/sd/uiconfig/simpress/popupmenu/page.xml
+++ b/sd/uiconfig/simpress/popupmenu/page.xml
@@ -16,6 +16,7 @@
   
 
   
+  
   
   
   
diff --git a/sd/uiconfig/simpress/toolbar/drawingobjectbar.xml 
b/sd/uiconfig/simpress/toolbar/drawingobjectbar.xml
index f5646c28d7e3..47f7d322ba08 100644
--- a/sd/uiconfig/simpress/toolbar/drawingobjectbar.xml
+++ b/sd/uiconfig/simpress/toolbar/drawingobjectbar.xml
@@ -65,6 +65,7 @@
  
  
  
+ 
  
 
 
diff --git a/sd/uiconfig/simpress/toolbar/standardbar.xml 
b/sd/uiconfig/simpress/toolbar/standardbar.xml
index e782fcd5e216..c425e8c75d26 100644
--- a/sd/uiconfig/simpress/toolbar/standardbar.xml
+++ b/sd/uiconfig/simpress/toolbar/standardbar.xml
@@ -50,6 +50,7 @@
  
  
  
+ 
  
  
  


[Libreoffice-bugs] [Bug 144983] Wrong umlaut behaviour in linux

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144983

--- Comment #4 from software.v9...@slmail.me ---
Updatede libreoffice to 7.2.7.2
same behaviour, no problem with other progs

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

[Libreoffice-bugs] [Bug 144983] Wrong umlaut behaviour in linux

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144983

--- Comment #3 from software.v9...@slmail.me ---
Created attachment 180957
  --> https://bugs.documentfoundation.org/attachment.cgi?id=180957=edit
Error file doesn't exist

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

[Libreoffice-bugs] [Bug 144983] Wrong umlaut behaviour in linux

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144983

--- Comment #2 from software.v9...@slmail.me ---
Created attachment 180956
  --> https://bugs.documentfoundation.org/attachment.cgi?id=180956=edit
Error Umlaut

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

[Libreoffice-bugs] [Bug 149102] Excessive memory use with a certain file with external data

2022-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149102

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||ilmari.lauhakangas@libreoff
   ||ice.org
 Ever confirmed|0   |1
Summary|Content from "link to   |Excessive memory use with a
   |external data" is not shown |certain file with external
   ||data

--- Comment #5 from Buovjaga  ---
For me it crashed after some seconds when I clicked to allow external data, so
I guess this merits further investigation.

NixOS
Version: 7.3.3.2 / LibreOffice Community
Build ID: 30(Build:2)
CPU threads: 16; OS: Linux 5.18; UI render: default; VCL: gtk3
Locale: fi-FI (fi_FI.UTF-8); UI: en-US
Calc: threaded

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

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

2022-06-25 Thread Heiko Tietze (via logerrit)
 sd/uiconfig/sdraw/popupmenu/page.xml  |1 +
 sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml|1 +
 sd/uiconfig/sdraw/toolbar/standardbar.xml |1 +
 sd/uiconfig/simpress/popupmenu/page.xml   |1 +
 sd/uiconfig/simpress/toolbar/drawingobjectbar.xml |1 +
 sd/uiconfig/simpress/toolbar/standardbar.xml  |1 +
 6 files changed, 6 insertions(+)

New commits:
commit e18d8bf5cfdb12b75888c2ddd25a829cf5c66305
Author: Heiko Tietze 
AuthorDate: Fri Jun 24 11:04:31 2022 +0200
Commit: Heiko Tietze 
CommitDate: Sat Jun 25 08:11:22 2022 +0200

Resolves tdf#143055 - Make Snap-to-grid easier to access

Added to page context menu, standard toolbar, and line & filling
toolbar

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

diff --git a/sd/uiconfig/sdraw/popupmenu/page.xml 
b/sd/uiconfig/sdraw/popupmenu/page.xml
index 92a296a4c835..1da86394fb93 100644
--- a/sd/uiconfig/sdraw/popupmenu/page.xml
+++ b/sd/uiconfig/sdraw/popupmenu/page.xml
@@ -16,6 +16,7 @@
   
 
   
+  
   
   
   
diff --git a/sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml 
b/sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml
index 04d010eee3dd..86b07200b231 100644
--- a/sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml
+++ b/sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml
@@ -63,6 +63,7 @@
  
  
  
+ 
  
 
 
diff --git a/sd/uiconfig/sdraw/toolbar/standardbar.xml 
b/sd/uiconfig/sdraw/toolbar/standardbar.xml
index 21d75ddd3a5e..b59a4d75475f 100644
--- a/sd/uiconfig/sdraw/toolbar/standardbar.xml
+++ b/sd/uiconfig/sdraw/toolbar/standardbar.xml
@@ -47,6 +47,7 @@
  
  
  
+ 
  
  
  
diff --git a/sd/uiconfig/simpress/popupmenu/page.xml 
b/sd/uiconfig/simpress/popupmenu/page.xml
index 5ee3946bd8cd..8a94daf5d785 100644
--- a/sd/uiconfig/simpress/popupmenu/page.xml
+++ b/sd/uiconfig/simpress/popupmenu/page.xml
@@ -16,6 +16,7 @@
   
 
   
+  
   
   
   
diff --git a/sd/uiconfig/simpress/toolbar/drawingobjectbar.xml 
b/sd/uiconfig/simpress/toolbar/drawingobjectbar.xml
index f5646c28d7e3..47f7d322ba08 100644
--- a/sd/uiconfig/simpress/toolbar/drawingobjectbar.xml
+++ b/sd/uiconfig/simpress/toolbar/drawingobjectbar.xml
@@ -65,6 +65,7 @@
  
  
  
+ 
  
 
 
diff --git a/sd/uiconfig/simpress/toolbar/standardbar.xml 
b/sd/uiconfig/simpress/toolbar/standardbar.xml
index e782fcd5e216..c425e8c75d26 100644
--- a/sd/uiconfig/simpress/toolbar/standardbar.xml
+++ b/sd/uiconfig/simpress/toolbar/standardbar.xml
@@ -50,6 +50,7 @@
  
  
  
+ 
  
  
  


<    1   2