[Libreoffice-bugs] [Bug 140298] Improve UX for SQL dialog

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140298

Robert Großkopf  changed:

   What|Removed |Added

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

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

[Libreoffice-ux-advise] [Bug 140298] Improve UX for SQL dialog

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140298

Robert Großkopf  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 143656] Direct SQL: Queries in Tools → SQL and macro give wrong results - direct SQL works well

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143656

Robert Großkopf  changed:

   What|Removed |Added

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

--- Comment #11 from Robert Großkopf  ---
(In reply to Lionel Elie Mamane from comment #9)
> 
>   oSQL_Statement.EscapeProcessing = False
> 
You are right, works well in the attached database. Don't know why it has
something to do with escaping, because there is changed a '*' for a '%' …

> As to "Tools/SQL", it would be useful to have in this dialog a checkbox to
> enable/disable escape processing, too. The UI can present it as "Run SQL
> command directly" to be consistent with the Query Design UI.

TOOLS → SQL should be improved a little bit. See  bug 140298. So it would be
good to add such a checkbox.

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

[Libreoffice-bugs] [Bug 143656] Direct SQL: Queries in Tools → SQL and macro give wrong results - direct SQL works well

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143656

--- Comment #10 from Robert Großkopf  ---
(In reply to Julien Nabet from comment #8)
> (gdb) p _rSQL
> $4 = "SELECT * FROM \"Person\" WHERE \"Name\" LIKE '%*'"
> (gdb) n
> 486   return m_xAggregateStatement->execute( sSQL );
> (gdb) p sSQL
> $5 = "SELECT * FROM \"Person\" WHERE \"Name\" LIKE '%%'"

This is the reason for the buggy behavior: Not the Escaping, but the function,
which returns '%%' instead of '%*'.

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

[Libreoffice-bugs] [Bug 113510] [META] Bugs that cause CPU to run at 100%

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113510
Bug 113510 depends on bug 96840, which changed state.

Bug 96840 Summary: FILEOPEN: not open file in format .DOC with images
https://bugs.documentfoundation.org/show_bug.cgi?id=96840

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

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

[Libreoffice-bugs] [Bug 104848] [META] DOC (binary) file opening issues

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104848
Bug 104848 depends on bug 96840, which changed state.

Bug 96840 Summary: FILEOPEN: not open file in format .DOC with images
https://bugs.documentfoundation.org/show_bug.cgi?id=96840

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

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

[Libreoffice-bugs] [Bug 96840] FILEOPEN: not open file in format .DOC with images

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96840

Justin L  changed:

   What|Removed |Added

 Resolution|FIXED   |---
 Status|RESOLVED|REOPENED
 Whiteboard|target:7.2.0|

--- Comment #23 from Justin L  ---
(In reply to Xisco Faulí from comment #18)
> The fix is in sw/source/core/text/txtfly.cxx which seems to be code shared
> by docx and doc formats, maybe others as well

This is in writer core, so it is irrespective of any formats. Thus it has been
reverted - because it breaks the point of USE_FORMER_TEXT_WRAPPING.

The change of course can affect layout. In some documents, it resolved layout
loops, and caused loops in others. These just expose or hide existing problems,
so this bug was never "fixed" and is now "broken" again. REOPEN (but at least
we have a clue as to what to look for - likely a page available height issue.)

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

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

2021-08-03 Thread Stephan Bergmann (via logerrit)
 vcl/source/pdf/Matrix3.cxx |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 4115ad1035cb13e06ed00791415a4258767b8808
Author: Stephan Bergmann 
AuthorDate: Tue Aug 3 22:13:45 2021 +0200
Commit: Stephan Bergmann 
CommitDate: Wed Aug 4 07:21:41 2021 +0200

Remove harmful static_cast

...that were present ever since the code's introduction in
1ced26e19d769e2ac6ca83f57f82cddbd2cfd061 "INTEGRATION: CWS vcl15", but cause
`instdir/program/soffice --headless --convert-to pdf` of doc/abi11923-2.doc 
from
the crash-testing corpus to fail under UBSan with

> vcl/source/pdf/Matrix3.cxx:30:35: runtime error: 2.14749e+09 is outside 
the range of representable values of type 'int'
>  #0 in vcl::pdf::Matrix3::transform(Point const&) const at 
vcl/source/pdf/Matrix3.cxx:30:35 (instdir/program/libvcllo.so +0x94098c5)
[...]

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

diff --git a/vcl/source/pdf/Matrix3.cxx b/vcl/source/pdf/Matrix3.cxx
index 22e5c4d73344..475f87d966df 100644
--- a/vcl/source/pdf/Matrix3.cxx
+++ b/vcl/source/pdf/Matrix3.cxx
@@ -27,8 +27,7 @@ Matrix3::Matrix3()
 Point Matrix3::transform(const Point& rOrig) const
 {
 double x = static_cast(rOrig.X()), y = 
static_cast(rOrig.Y());
-return Point(static_cast(x * f[0] + y * f[2] + f[4]),
- static_cast(x * f[1] + y * f[3] + f[5]));
+return Point(x * f[0] + y * f[2] + f[4], x * f[1] + y * f[3] + f[5]);
 }
 
 void Matrix3::skew(double alpha, double beta)


[Libreoffice-bugs] [Bug 143716] New: FILEOPEN DBF timestamp fields (type '@') trigger corruption error

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143716

Bug ID: 143716
   Summary: FILEOPEN DBF timestamp fields (type '@') trigger
corruption error
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: d...@sheetjs.com

Description:
dBASE Level 7 DBF supports the timestamp field (type '@').  Valid DBF files
generated from dBASE are flagged as corrupt and LibreOffice fails to repair
them

Steps to Reproduce:
1. Download sample file
https://github.com/SheetJS/test_files/raw/master/dbf/d11.dbf
2. open in LibreOffice


Actual Results:
Error message "The file 'd11.dbf' is corrupt and therefore cannot be opened.
LibreOffice can try to repair the file."

Attempting to repair the file yields a new error message "The file 'd11.dbf'
could not be repaired and therefore cannot be opened."

Expected Results:
The file opens properly and the field is interpreted as Date


Reproducible: Always


User Profile Reset: Yes



Additional Info:
SheetJS currently uses the following algorithm to extract values.  The
algorithm agrees with dBASE 2019 on the values in the test file:

- Parse the 8 bytes of the field as an IEEE754 double in big-endian order
- Subtract 0x388317533400 (6213568320, a number that can be exactly
represented in a IEEE754 double)
- Interpret the code as milliseconds since January 1 1970 (which is what JS
uses as the 0 value for the native Date object)

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

[Libreoffice-bugs] [Bug 143715] New: FILEOPEN DBF timestamp fields (type '@') trigger corruption error

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143715

Bug ID: 143715
   Summary: FILEOPEN DBF timestamp fields (type '@') trigger
corruption error
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: d...@sheetjs.com

Description:
dBASE Level 7 DBF supports the timestamp field (type '@').  Valid DBF files
generated from dBASE are flagged as corrupt and LibreOffice fails to repair
them

Steps to Reproduce:
1. Download sample file
https://github.com/SheetJS/test_files/raw/master/dbf/d11.dbf
2. open in LibreOffice


Actual Results:
Error message "The file 'd11.dbf' is corrupt and therefore cannot be opened.
LibreOffice can try to repair the file."

Attempting to repair the file yields a new error message "The file 'd11.dbf'
could not be repaired and therefore cannot be opened."

Expected Results:
The file opens properly and the field is interpreted as Date


Reproducible: Always


User Profile Reset: Yes



Additional Info:
SheetJS currently uses the following algorithm to extract values.  The
algorithm agrees with dBASE 2019 on the values in the test file:

- Parse the 8 bytes of the field as an IEEE754 double in big-endian order
- Subtract 0x388317533400 (6213568320, a number that can be exactly
represented in a IEEE754 double)
- Interpret the code as milliseconds since January 1 1970 (which is what JS
uses as the 0 value for the native Date object)

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

[Libreoffice-bugs] [Bug 104522] [META] DOCX (OOXML) header & footer-related issues

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104522
Bug 104522 depends on bug 104254, which changed state.

Bug 104254 Summary: FILEOPEN DOCX image in header overlaps header text in 
compat15 mode
https://bugs.documentfoundation.org/show_bug.cgi?id=104254

   What|Removed |Added

 Status|VERIFIED|REOPENED
 Resolution|FIXED   |---

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

[Libreoffice-bugs] [Bug 131304] [META] MS Word compatibilityMode = 15

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131304
Bug 131304 depends on bug 104254, which changed state.

Bug 104254 Summary: FILEOPEN DOCX image in header overlaps header text in 
compat15 mode
https://bugs.documentfoundation.org/show_bug.cgi?id=104254

   What|Removed |Added

 Status|VERIFIED|REOPENED
 Resolution|FIXED   |---

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

[Libreoffice-bugs] [Bug 104468] [META] DOCX (OOXML) image-related issues

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104468
Bug 104468 depends on bug 104254, which changed state.

Bug 104254 Summary: FILEOPEN DOCX image in header overlaps header text in 
compat15 mode
https://bugs.documentfoundation.org/show_bug.cgi?id=104254

   What|Removed |Added

 Status|VERIFIED|REOPENED
 Resolution|FIXED   |---

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

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

2021-08-03 Thread Justin Luth (via logerrit)
 dev/null   |binary
 sw/qa/extras/layout/layout.cxx |   18 -
 sw/qa/extras/odfexport/data/tdf104254_noHeaderWrapping.odt |binary
 sw/qa/extras/odfexport/odfexport2.cxx  |   10 +++
 sw/qa/extras/ww8export/ww8export3.cxx  |   14 --
 sw/source/core/text/txtfly.cxx |8 ++---
 6 files changed, 13 insertions(+), 37 deletions(-)

New commits:
commit d03aaef3dcb5d142955457ae9b8ca4469cfafa38
Author: Justin Luth 
AuthorDate: Mon Aug 2 14:39:27 2021 +0200
Commit: Justin Luth 
CommitDate: Wed Aug 4 06:04:04 2021 +0200

Revert "tdf#104254 sw DOCX import: fix text wrapping in headers"

This reverts commit 798b69087119c01a3b51e0bb3240ef35cfededeb.
The change affected not only DOCX compatibilityMode 15,
but also DOC and ODT and older versions of DOC
and everything else which should not have been affected.

This reverted change of course affected layout.
Some bug documents didn't loop after this layout breakage.
That doesn't mean that those bugs were fixed.
So just revert the tests:

Revert "tdf#96840: sw_ww8export3: Add unittest"
This reverts commit 975488594fc88aaba7298448e0ff727ebca7fe85.

Revert "tdf#64997: sw_ww8export3: Add unittest"
This reverts commit 02af9b8ef1f87bb6bc5fee22ad184681b20f201a.

Change-Id: I54f7b801199bba45d8ca6f82f77e7060c7b3fcf7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119887
Tested-by: Jenkins
Tested-by: László Németh 
Reviewed-by: Justin Luth 
Reviewed-by: László Németh 

diff --git a/sw/qa/extras/layout/data/tdf104254.docx 
b/sw/qa/extras/layout/data/tdf104254.docx
deleted file mode 100644
index a074db337024..
Binary files a/sw/qa/extras/layout/data/tdf104254.docx and /dev/null differ
diff --git a/sw/qa/extras/layout/layout.cxx b/sw/qa/extras/layout/layout.cxx
index 5c8d8201df95..2eaea6a15c67 100644
--- a/sw/qa/extras/layout/layout.cxx
+++ b/sw/qa/extras/layout/layout.cxx
@@ -3253,24 +3253,6 @@ CPPUNIT_TEST_FIXTURE(SwLayoutWriter, testTdf124770)
 assertXPath(pXmlDoc, "/root/page/body/txt[1]/LineBreak", 1);
 }
 
-CPPUNIT_TEST_FIXTURE(SwLayoutWriter, testTextWrappingInHeader)
-{
-SwDoc* pDoc = createSwDoc(DATA_DIRECTORY, "tdf104254.docx");
-
-std::shared_ptr xMetaFile = 
pDoc->GetDocShell()->GetPreviewMetaFile();
-MetafileXmlDump dumper;
-xmlDocUniquePtr pXmlDoc = dumpAndParse(dumper, *xMetaFile);
-CPPUNIT_ASSERT(pXmlDoc);
-assertXPath(pXmlDoc, "/metafile/push[1]/push[1]/push[1]/textarray", 2);
-
-// Make sure the header image does not block any of the header text.
-// Without the accompanying fix in place, this test would have failed with:
-// - Expected: > 3000
-// - Actual  : 2009
-OUString sTextArrayX = getXPath(pXmlDoc, 
"/metafile/push[1]/push[1]/push[1]/textarray[1]", "x");
-CPPUNIT_ASSERT(sTextArrayX.toUInt32() > 3000);
-}
-
 CPPUNIT_TEST_FIXTURE(SwLayoutWriter, testContinuousEndnotesInsertPageAtStart)
 {
 // Create a new document with CONTINUOUS_ENDNOTES enabled.
diff --git a/sw/qa/extras/odfexport/data/tdf104254_noHeaderWrapping.odt 
b/sw/qa/extras/odfexport/data/tdf104254_noHeaderWrapping.odt
new file mode 100644
index ..06dde4802b43
Binary files /dev/null and 
b/sw/qa/extras/odfexport/data/tdf104254_noHeaderWrapping.odt differ
diff --git a/sw/qa/extras/odfexport/odfexport2.cxx 
b/sw/qa/extras/odfexport/odfexport2.cxx
index 0812f2c801e3..db2110c612a0 100644
--- a/sw/qa/extras/odfexport/odfexport2.cxx
+++ b/sw/qa/extras/odfexport/odfexport2.cxx
@@ -39,6 +39,16 @@ DECLARE_ODFEXPORT_TEST(testTdf52065_centerTabs, 
"testTdf52065_centerTabs.odt")
 CPPUNIT_ASSERT_EQUAL(OUString(u"Pečiatka zamestnávateľa"), 
parseDump("//body/txt[4]/Text[4]", "Portion"));
 }
 
+DECLARE_ODFEXPORT_TEST(testTdf104254_noHeaderWrapping, 
"tdf104254_noHeaderWrapping.odt")
+{
+xmlDocUniquePtr pXmlDoc = parseLayoutDump();
+
+sal_Int32 nParaHeight = getXPath(pXmlDoc, "//header/txt[1]/infos/bounds", 
"height").toInt32();
+// The wrapping on header images is supposed to be ignored (since OOo for 
MS compat reasons),
+// thus making the text run underneath the image. Before, height was 1104. 
Now it is 552.
+CPPUNIT_ASSERT_MESSAGE("Paragraph should fit on a single line", 
nParaHeight < 600);
+}
+
 DECLARE_ODFEXPORT_TEST(testTdf137199, "tdf137199.docx")
 {
 CPPUNIT_ASSERT_EQUAL(OUString(">1<"), 
getProperty(getParagraph(1), "ListLabelString"));
diff --git a/sw/qa/extras/ww8export/data/tdf64997.doc 
b/sw/qa/extras/ww8export/data/tdf64997.doc
deleted file mode 100644
index d17ef5b84e26..
Binary files a/sw/qa/extras/ww8export/data/tdf64997.doc and /dev/null differ
diff --git a/sw/qa/extras/ww8export/data/tdf96840.doc 
b/sw/qa/extras/ww8export/data/tdf96840.doc
deleted file mode 100644
index 02cc7559dd55..
Binary 

[Libreoffice-bugs] [Bug 109265] [META] Remember dialog's previous settings issues

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109265
Bug 109265 depends on bug 130213, which changed state.

Bug 130213 Summary: Template manager "application" drop-down should not change 
"category"
https://bugs.documentfoundation.org/show_bug.cgi?id=130213

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 101435] [META] Template manager bugs and enhancements

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101435
Bug 101435 depends on bug 130213, which changed state.

Bug 130213 Summary: Template manager "application" drop-down should not change 
"category"
https://bugs.documentfoundation.org/show_bug.cgi?id=130213

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 130213] Template manager "application" drop-down should not change "category"

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130213

VertD  changed:

   What|Removed |Added

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

--- Comment #4 from VertD  ---
This was fixed in this patch https://gerrit.libreoffice.org/c/core/+/113712

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

[Libreoffice-bugs] [Bug 142620] Allow paste in doc name field when saving doc for first time

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142620

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 140738] VIEWING: Vertical shift of text during selection after scrolling

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140738

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

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142650

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 136981] MacOS 10.x Guest user cannot save documents

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136981

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 143091] Windows 10 'Clipboard History' paste into calc cell requires cell selection and also edit cursor focus, and results in cell having an extra line of text

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143091

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 141638] Rotation impossible *on new files*: Green circles don't appear

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141638

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 142959] Border not visible for the selected cell

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142959

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

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

[Libreoffice-bugs] [Bug 143609] FILEOPEN Exiting before completion due to errors caused by 'isc_service_query'

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143609

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 142959] Border not visible for the selected cell

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142959

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 141619] Undoing of Replace All operation leaves a "dirty" spreadsheet, force recalculation needed

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141619

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 141605] Images anchored to a cell and selected with AutoFilter are not PRINTING correctly

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141605

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

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

[Libreoffice-bugs] [Bug 132098] Custom InteractionHandler

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132098

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 139403] Rapport de plantage en boucle

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139403

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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

[Libreoffice-bugs] [Bug 141627] LibreOffice crashes when searching with MS Windows 'File Dialog'

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141627

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 135891] Background of Calc tables pasted as OLE objects in Impress not rendering fill colors as expected

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135891

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 142188] FILEOPEN DOC very slow over shared network over VPN

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142188

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 143694] Icons are not rendered as expected (depending on screen resolution ?)

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143694

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

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

[Libreoffice-bugs] [Bug 141090] Direct Cursor causes instant slowdown in v7.xx of Writer

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141090

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 143447] Some Chinese IME will make cursor disappear

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143447

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

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142650

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

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

[Libreoffice-bugs] [Bug 137886] The logic of hiding CJK/CTL properties in style inspector seems reversed

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137886

--- Comment #13 from QA Administrators  ---
Dear Ming Hua,

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 143694] Icons are not rendered as expected (depending on screen resolution ?)

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143694

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 140298] Improve UX for SQL dialog

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140298

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 142959] Border not visible for the selected cell

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142959

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-ux-advise] [Bug 142959] Border not visible for the selected cell

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142959

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 137036] Creation of animation by insertion in impress does not work

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137036

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 139389] A strange black artifact appeared on screen in Writer

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139389

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

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 141605] Images anchored to a cell and selected with AutoFilter are not PRINTING correctly

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141605

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 140957] Date formatting is not unambiguous

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140957

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 143438] Advanced filter documentation needs clarification of order of evaluation of regular expression

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143438

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 139389] A strange black artifact appeared on screen in Writer

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139389

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

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

[Libreoffice-bugs] [Bug 138558] Impress: Residual grey bar at bottom of black 4:3 presentation

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138558

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 142994] Animated Gif's Slow During Slideshow Playback on Libreoffice Portable

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142994

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 141605] Images anchored to a cell and selected with AutoFilter are not PRINTING correctly

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141605

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-ux-advise] [Bug 142959] Border not visible for the selected cell

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142959

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 139403] Rapport de plantage en boucle

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139403

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

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-ux-advise] [Bug 140298] Improve UX for SQL dialog

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140298

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 143448] Autocorrect -> Word collection adds stuff at the point where Spellchecker bails out (because being to long)

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143448

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 143609] FILEOPEN Exiting before completion due to errors caused by 'isc_service_query'

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143609

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

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

[Libreoffice-bugs] [Bug 139374] Crash in: SvTreeList::Remove(SvTreeListEntry const *)

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139374

--- Comment #4 from QA Administrators  ---
Dear Joe Killian,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 139374] Crash in: SvTreeList::Remove(SvTreeListEntry const *)

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139374

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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

[Libreoffice-ux-advise] [Bug 142959] Border not visible for the selected cell

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142959

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

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

[Libreoffice-bugs] [Bug 140125] character border implementation issues vs. Word

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140125

--- Comment #3 from QA Administrators  ---
Dear Michael Stahl (allotropia),

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 97993] EDITING: images and shapes that are successively Copy/Pasted or Pasted should to be shifted

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97993

--- Comment #21 from QA Administrators  ---
Dear Luke,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 67525] CRASH: EDITING: it is not possible to delete more then 600 sheets with one click

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67525

--- Comment #23 from QA Administrators  ---
Dear klausk,

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 61253] Stretch of cached image makes incorrect initial representation of formulas in doc files of formulas copied from .DOC

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61253

--- Comment #9 from QA Administrators  ---
Dear Luigi Boccia,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 66463] FILEOPEN DOC: Incorrect formula

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66463

--- Comment #13 from QA Administrators  ---
Dear Sergey Pashinin,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 123817] Erratic CTRL+Home in Writer documents with Headers and HIDDEN Sections

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123817

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

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://kiwiirc.com/nextclient/irc.freenode.net/#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 88481] Editing : Value become zero on DDE Link Break on reopen

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88481

--- Comment #9 from QA Administrators  ---
Dear Jaise James,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 111920] Cells no automatically recalculated when formula is dependent of language and this is changed

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111920

--- Comment #7 from QA Administrators  ---
Dear Luis,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 105575] Slow rendering when using a Logo command

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105575

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#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 103239] [META] Toolbars bugs and enhancements

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103239

Aron Budea  changed:

   What|Removed |Added

 Depends on||143567


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143567
[Bug 143567] Area Style/Filling from Image toolbar doesn't match with sidebar
info for Area
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143567] Area Style/Filling from Image toolbar doesn't match with sidebar info for Area

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143567

Aron Budea  changed:

   What|Removed |Added

 Blocks||103239, 103223


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103223
[Bug 103223] [META] Area fill tab bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=103239
[Bug 103239] [META] Toolbars bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103223] [META] Area fill tab bugs and enhancements

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103223

Aron Budea  changed:

   What|Removed |Added

 Depends on||143567


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143567
[Bug 143567] Area Style/Filling from Image toolbar doesn't match with sidebar
info for Area
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143519] copy from draw into writer turns text into an image? unusable anywhere else

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143519

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||ba...@caesar.elte.hu
 Resolution|--- |WONTFIX

--- Comment #4 from Aron Budea  ---
PDFs aren't really meant for editing, and Draw can only offer limited editing
capabilities. In this case the lines are imported as individual text boxes, and
though perhaps copy/pasting all of them as a group could be somewhat improved
so they're pasted as a group of text boxes, it wouldn't be very helpful to you,
as the text still isn't easy to manage in that form.

What you're looking for is something like the feature described in bug 32249,
which would make the copy/paste experience much better as well.

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

[Libreoffice-bugs] [Bug 143574] EDITING Cannot add textbox to a grouped shape

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143574

Dmitrii A  changed:

   What|Removed |Added

 CC||anisimov...@gmail.com
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #3 from Dmitrii A  ---
confirm in

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: ac80ec817eb07c77a51bc0729985a473c734182e
CPU threads: 16; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: ru-RU (ru_RU); UI: en-US
Calc: CL

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

[Libreoffice-bugs] [Bug 143693] LO should be able to load files from HTTP

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143693

--- Comment #1 from Dmitrii A  ---
no repro in 

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: ac80ec817eb07c77a51bc0729985a473c734182e
CPU threads: 16; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: ru-RU (ru_RU); UI: en-US
Calc: CL

Try to update to last version. If it doesn't help try:
- uninstall completely LO
- clean Windows registry with a tool like ccleaner or other
- download last version https://www.libreoffice.org/download/download/
- install brand new version

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

[Libreoffice-bugs] [Bug 143709] Part of the text remains visible when press CTRL+A Backspace within an Calc cell

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143709

Dmitrii A  changed:

   What|Removed |Added

 CC||anisimov...@gmail.com
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #2 from Dmitrii A  ---
confirm in

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: ac80ec817eb07c77a51bc0729985a473c734182e
CPU threads: 16; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: ru-RU (ru_RU); UI: en-US
Calc: CL

'Ons' remains visible but when you quit from editing cell in remains empty.

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

[Libreoffice-bugs] [Bug 143388] New "Search Commands" feature: Ctrl + F1 shortcut not working

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143388

--- Comment #9 from Commit Notification 
 ---
Tomaž Vajngerl committed a patch related to this issue.
It has been pushed to "master":

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

tdf#143388 rebind command search from CTRL+F1 to SHIFT+ESC

It will be available in 7.3.0.

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

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

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

[Libreoffice-bugs] [Bug 143388] New "Search Commands" feature: Ctrl + F1 shortcut not working

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143388

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.3.0

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

[Libreoffice-commits] core.git: officecfg/registry

2021-08-03 Thread Tomaž Vajngerl (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Accelerators.xcu |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit fc0a31f30154c7c5aabb9f0367a10ee14c82821a
Author: Tomaž Vajngerl 
AuthorDate: Wed Aug 4 08:35:10 2021 +0900
Commit: Tomaž Vajngerl 
CommitDate: Wed Aug 4 04:08:55 2021 +0200

tdf#143388 rebind command search from CTRL+F1 to SHIFT+ESC

CTRL+F1 is reserved by the OS.

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

diff --git a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu 
b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
index 0e14b89668e2..64f8b3b0edbc 100644
--- a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
@@ -313,7 +313,7 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
   .uno:OptionsTreeDialog
 
   
-  
+  
 
   I10N SHORTCUTS - NO 
TRANSLATE
   .uno:CommandPopup


[Libreoffice-bugs] [Bug 143714] [GTK3] Icon for Formats Only paste special not displayed

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143714

Dmitrii A  changed:

   What|Removed |Added

 CC||anisimov...@gmail.com

--- Comment #1 from Dmitrii A  ---
no repro in

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: ac80ec817eb07c77a51bc0729985a473c734182e
CPU threads: 16; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: ru-RU (ru_RU); UI: en-US
Calc: CL

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

[Libreoffice-bugs] [Bug 140854] Base VIEWING - table data redacted with black coloring for Memo [LONGVARCHAR] fields (macOS)

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140854

--- Comment #21 from Yannick Chiron  ---
Thank you frofa.  The bug was discovered with the 7.1.1 version, and does not
affect 7.0.x versions.

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

[Libreoffice-bugs] [Bug 61962] When only a small letter changed to a big letter, calc do not execute modifying a cell, if there is an another occurrence in the same row

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61962

--- Comment #9 from Andreas Heinisch  ---
Still repro in:

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 049732b2190ee24b11a71f9236d597a37b54ea77
CPU threads: 6; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-US
Calc: CL

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

[Libreoffice-bugs] [Bug 143714] [GTK3] Icon for Formats Only paste special not displayed

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143714

stragu  changed:

   What|Removed |Added

 Blocks||103182


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 103182] [META] GTK3-specific bugs

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103182

stragu  changed:

   What|Removed |Added

 Depends on||143714


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143714
[Bug 143714] [GTK3] Icon for Formats Only paste special not displayed
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 138526] Image missing for new Formats Only option

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

stragu  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 143714] [GTK3] Icon for Formats Only paste special not displayed

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143714

stragu  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||8526
 CC||riz...@libreoffice.org
 Blocks||108479


Referenced Bugs:

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

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

2021-08-03 Thread panoskorovesis (via logerrit)
 include/vcl/filter/SvmWriter.hxx|1 +
 vcl/source/filter/svm/SvmWriter.cxx |   13 +
 2 files changed, 14 insertions(+)

New commits:
commit e58348e73b5f3f6eb8fd68eb50c1bc4b58f32104
Author: panoskorovesis 
AuthorDate: Tue Aug 3 10:02:04 2021 +0300
Commit: Tomaž Vajngerl 
CommitDate: Wed Aug 4 00:54:34 2021 +0200

 Add Handler for Pop Write

The handler separates MetaPopAction::Write from metaact.hxx
Write implementation is now in SvmWriter.hxx

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

diff --git a/include/vcl/filter/SvmWriter.hxx b/include/vcl/filter/SvmWriter.hxx
index 044d7981b776..5c83bfd8913c 100644
--- a/include/vcl/filter/SvmWriter.hxx
+++ b/include/vcl/filter/SvmWriter.hxx
@@ -61,4 +61,5 @@ public:
 void MapModeHandler(MetaMapModeAction* pAction);
 void FontHandler(MetaFontAction* pAction, ImplMetaWriteData* pData);
 void PushHandler(MetaPushAction* pAction);
+void PopHandler(MetaPopAction* pAction);
 };
\ No newline at end of file
diff --git a/vcl/source/filter/svm/SvmWriter.cxx 
b/vcl/source/filter/svm/SvmWriter.cxx
index f37a945d9c4c..375cda5218fd 100644
--- a/vcl/source/filter/svm/SvmWriter.cxx
+++ b/vcl/source/filter/svm/SvmWriter.cxx
@@ -234,6 +234,13 @@ void SvmWriter::MetaActionHandler(MetaAction* pAction, 
ImplMetaWriteData* pData)
 }
 break;
 
+case MetaActionType::POP:
+{
+auto* pMetaAction = static_cast(pAction);
+PopHandler(pMetaAction);
+}
+break;
+
 /* default case prevents test failure and will be
 removed once all the handlers are completed */
 default:
@@ -525,4 +532,10 @@ void SvmWriter::PushHandler(MetaPushAction* pAction)
 VersionCompatWrite aCompat(mrStream, 1);
 mrStream.WriteUInt16(static_cast(pAction->GetFlags()));
 }
+
+void SvmWriter::PopHandler(MetaPopAction* pAction)
+{
+mrStream.WriteUInt16(static_cast(pAction->GetType()));
+VersionCompatWrite aCompat(mrStream, 1);
+}
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */


[Libreoffice-bugs] [Bug 108479] [META] Paste special bugs and enhancements

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108479

stragu  changed:

   What|Removed |Added

 Depends on||143714


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143714
[Bug 143714] [GTK3] Icon for Formats Only paste special not displayed
-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2021-08-03 Thread panoskorovesis (via logerrit)
 include/vcl/filter/SvmWriter.hxx|1 +
 vcl/source/filter/svm/SvmWriter.cxx |   14 ++
 2 files changed, 15 insertions(+)

New commits:
commit ca6e32efb563490a2c18599ee483c796fc5b159a
Author: panoskorovesis 
AuthorDate: Tue Aug 3 09:59:59 2021 +0300
Commit: Tomaž Vajngerl 
CommitDate: Wed Aug 4 00:54:13 2021 +0200

 Add Handler for Push Write

The handler separates MetaPushAction::Write from metaact.hxx
Write implementation is now in SvmWriter.hxx

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

diff --git a/include/vcl/filter/SvmWriter.hxx b/include/vcl/filter/SvmWriter.hxx
index f437ee7eff46..044d7981b776 100644
--- a/include/vcl/filter/SvmWriter.hxx
+++ b/include/vcl/filter/SvmWriter.hxx
@@ -60,4 +60,5 @@ public:
 void TextAlignHandler(MetaTextAlignAction* pAction);
 void MapModeHandler(MetaMapModeAction* pAction);
 void FontHandler(MetaFontAction* pAction, ImplMetaWriteData* pData);
+void PushHandler(MetaPushAction* pAction);
 };
\ No newline at end of file
diff --git a/vcl/source/filter/svm/SvmWriter.cxx 
b/vcl/source/filter/svm/SvmWriter.cxx
index 96509316d1c5..f37a945d9c4c 100644
--- a/vcl/source/filter/svm/SvmWriter.cxx
+++ b/vcl/source/filter/svm/SvmWriter.cxx
@@ -227,6 +227,13 @@ void SvmWriter::MetaActionHandler(MetaAction* pAction, 
ImplMetaWriteData* pData)
 }
 break;
 
+case MetaActionType::PUSH:
+{
+auto* pMetaAction = static_cast(pAction);
+PushHandler(pMetaAction);
+}
+break;
+
 /* default case prevents test failure and will be
 removed once all the handlers are completed */
 default:
@@ -511,4 +518,11 @@ void SvmWriter::FontHandler(MetaFontAction* pAction, 
ImplMetaWriteData* pData)
 if (pData->meActualCharSet == RTL_TEXTENCODING_DONTKNOW)
 pData->meActualCharSet = osl_getThreadTextEncoding();
 }
+
+void SvmWriter::PushHandler(MetaPushAction* pAction)
+{
+mrStream.WriteUInt16(static_cast(pAction->GetType()));
+VersionCompatWrite aCompat(mrStream, 1);
+mrStream.WriteUInt16(static_cast(pAction->GetFlags()));
+}
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */


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

2021-08-03 Thread panoskorovesis (via logerrit)
 include/vcl/filter/SvmWriter.hxx|1 +
 vcl/source/filter/svm/SvmWriter.cxx |   19 +++
 2 files changed, 20 insertions(+)

New commits:
commit e31b6f6aced8588cefe5d72292403a87c6dd2a73
Author: panoskorovesis 
AuthorDate: Tue Aug 3 09:53:58 2021 +0300
Commit: Tomaž Vajngerl 
CommitDate: Wed Aug 4 00:53:48 2021 +0200

Add Handler for Font Write

The handler separates MetaFontAction::Write from metaact.hxx
Write implementation is now in SvmWriter.hxx

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

diff --git a/include/vcl/filter/SvmWriter.hxx b/include/vcl/filter/SvmWriter.hxx
index dcd28b812803..f437ee7eff46 100644
--- a/include/vcl/filter/SvmWriter.hxx
+++ b/include/vcl/filter/SvmWriter.hxx
@@ -59,4 +59,5 @@ public:
 void OverlineColorHandler(MetaOverlineColorAction* pAction);
 void TextAlignHandler(MetaTextAlignAction* pAction);
 void MapModeHandler(MetaMapModeAction* pAction);
+void FontHandler(MetaFontAction* pAction, ImplMetaWriteData* pData);
 };
\ No newline at end of file
diff --git a/vcl/source/filter/svm/SvmWriter.cxx 
b/vcl/source/filter/svm/SvmWriter.cxx
index 7ed7df861b76..96509316d1c5 100644
--- a/vcl/source/filter/svm/SvmWriter.cxx
+++ b/vcl/source/filter/svm/SvmWriter.cxx
@@ -22,6 +22,8 @@
 
 #include 
 
+#include 
+
 SvmWriter::SvmWriter(SvStream& rIStm)
 : mrStream(rIStm)
 {
@@ -218,6 +220,13 @@ void SvmWriter::MetaActionHandler(MetaAction* pAction, 
ImplMetaWriteData* pData)
 }
 break;
 
+case MetaActionType::FONT:
+{
+auto* pMetaAction = static_cast(pAction);
+FontHandler(pMetaAction, pData);
+}
+break;
+
 /* default case prevents test failure and will be
 removed once all the handlers are completed */
 default:
@@ -492,4 +501,14 @@ void SvmWriter::MapModeHandler(MetaMapModeAction* pAction)
 TypeSerializer aSerializer(mrStream);
 aSerializer.writeMapMode(pAction->GetMapMode());
 }
+
+void SvmWriter::FontHandler(MetaFontAction* pAction, ImplMetaWriteData* pData)
+{
+mrStream.WriteUInt16(static_cast(pAction->GetType()));
+VersionCompatWrite aCompat(mrStream, 1);
+WriteFont(mrStream, pAction->GetFont());
+pData->meActualCharSet = pAction->GetFont().GetCharSet();
+if (pData->meActualCharSet == RTL_TEXTENCODING_DONTKNOW)
+pData->meActualCharSet = osl_getThreadTextEncoding();
+}
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */


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

2021-08-03 Thread panoskorovesis (via logerrit)
 include/vcl/filter/SvmWriter.hxx|1 +
 vcl/source/filter/svm/SvmWriter.cxx |   15 +++
 2 files changed, 16 insertions(+)

New commits:
commit c7dbab2d5e254bc38204b62a15d129be66417799
Author: panoskorovesis 
AuthorDate: Tue Aug 3 09:50:52 2021 +0300
Commit: Tomaž Vajngerl 
CommitDate: Wed Aug 4 00:52:40 2021 +0200

Add Handler for MapMode Write

The handler separates MetaMapModeAction::Write from metaact.hxx
Write implementation is now in SvmWriter.hxx

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

diff --git a/include/vcl/filter/SvmWriter.hxx b/include/vcl/filter/SvmWriter.hxx
index c27476bde453..dcd28b812803 100644
--- a/include/vcl/filter/SvmWriter.hxx
+++ b/include/vcl/filter/SvmWriter.hxx
@@ -58,4 +58,5 @@ public:
 void TextLineHandler(MetaTextLineAction* pAction);
 void OverlineColorHandler(MetaOverlineColorAction* pAction);
 void TextAlignHandler(MetaTextAlignAction* pAction);
+void MapModeHandler(MetaMapModeAction* pAction);
 };
\ No newline at end of file
diff --git a/vcl/source/filter/svm/SvmWriter.cxx 
b/vcl/source/filter/svm/SvmWriter.cxx
index 73dacc499a5e..7ed7df861b76 100644
--- a/vcl/source/filter/svm/SvmWriter.cxx
+++ b/vcl/source/filter/svm/SvmWriter.cxx
@@ -211,6 +211,13 @@ void SvmWriter::MetaActionHandler(MetaAction* pAction, 
ImplMetaWriteData* pData)
 }
 break;
 
+case MetaActionType::MAPMODE:
+{
+auto* pMetaAction = static_cast(pAction);
+MapModeHandler(pMetaAction);
+}
+break;
+
 /* default case prevents test failure and will be
 removed once all the handlers are completed */
 default:
@@ -477,4 +484,12 @@ void SvmWriter::TextAlignHandler(MetaTextAlignAction* 
pAction)
 VersionCompatWrite aCompat(mrStream, 1);
 mrStream.WriteUInt16(static_cast(pAction->GetTextAlign()));
 }
+
+void SvmWriter::MapModeHandler(MetaMapModeAction* pAction)
+{
+mrStream.WriteUInt16(static_cast(pAction->GetType()));
+VersionCompatWrite aCompat(mrStream, 1);
+TypeSerializer aSerializer(mrStream);
+aSerializer.writeMapMode(pAction->GetMapMode());
+}
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */


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

2021-08-03 Thread panoskorovesis (via logerrit)
 include/vcl/filter/SvmWriter.hxx|1 +
 vcl/source/filter/svm/SvmWriter.cxx |   14 ++
 2 files changed, 15 insertions(+)

New commits:
commit e76a3e759454f1e2d1987fe983cd7286b9156be0
Author: panoskorovesis 
AuthorDate: Tue Aug 3 09:47:33 2021 +0300
Commit: Tomaž Vajngerl 
CommitDate: Wed Aug 4 00:52:13 2021 +0200

Add Handler for TextAlign Write

The handler separates MetaTextAlignAction::Write from metaact.hxx
Write implementation is now in SvmWriter.hxx

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

diff --git a/include/vcl/filter/SvmWriter.hxx b/include/vcl/filter/SvmWriter.hxx
index d7a66a3e5b27..c27476bde453 100644
--- a/include/vcl/filter/SvmWriter.hxx
+++ b/include/vcl/filter/SvmWriter.hxx
@@ -57,4 +57,5 @@ public:
 void TextRectHandler(MetaTextRectAction* pAction, ImplMetaWriteData* 
pData);
 void TextLineHandler(MetaTextLineAction* pAction);
 void OverlineColorHandler(MetaOverlineColorAction* pAction);
+void TextAlignHandler(MetaTextAlignAction* pAction);
 };
\ No newline at end of file
diff --git a/vcl/source/filter/svm/SvmWriter.cxx 
b/vcl/source/filter/svm/SvmWriter.cxx
index bd2dae5c9926..73dacc499a5e 100644
--- a/vcl/source/filter/svm/SvmWriter.cxx
+++ b/vcl/source/filter/svm/SvmWriter.cxx
@@ -204,6 +204,13 @@ void SvmWriter::MetaActionHandler(MetaAction* pAction, 
ImplMetaWriteData* pData)
 }
 break;
 
+case MetaActionType::TEXTALIGN:
+{
+auto* pMetaAction = static_cast(pAction);
+TextAlignHandler(pMetaAction);
+}
+break;
+
 /* default case prevents test failure and will be
 removed once all the handlers are completed */
 default:
@@ -463,4 +470,11 @@ void 
SvmWriter::OverlineColorHandler(MetaOverlineColorAction* pAction)
 WriteColor(pAction->GetColor());
 mrStream.WriteBool(pAction->IsSetting());
 }
+
+void SvmWriter::TextAlignHandler(MetaTextAlignAction* pAction)
+{
+mrStream.WriteUInt16(static_cast(pAction->GetType()));
+VersionCompatWrite aCompat(mrStream, 1);
+mrStream.WriteUInt16(static_cast(pAction->GetTextAlign()));
+}
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */


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

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125965
Bug 125965 depends on bug 138526, which changed state.

Bug 138526 Summary: Image missing for new Formats Only option
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

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

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

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131141
Bug 131141 depends on bug 138526, which changed state.

Bug 138526 Summary: Image missing for new Formats Only option
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

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

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

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122247
Bug 122247 depends on bug 138526, which changed state.

Bug 138526 Summary: Image missing for new Formats Only option
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

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

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

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120949
Bug 120949 depends on bug 138526, which changed state.

Bug 138526 Summary: Image missing for new Formats Only option
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

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

[Libreoffice-bugs] [Bug 120946] [META] Karasa Jaga icons

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120946
Bug 120946 depends on bug 138526, which changed state.

Bug 138526 Summary: Image missing for new Formats Only option
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

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

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

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117497
Bug 117497 depends on bug 138526, which changed state.

Bug 138526 Summary: Image missing for new Formats Only option
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

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

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

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107139
Bug 107139 depends on bug 138526, which changed state.

Bug 138526 Summary: Image missing for new Formats Only option
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

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

[Libreoffice-ux-advise] [Bug 138526] Image missing for new Formats Only option

2021-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

stragu  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|REOPENED|RESOLVED

--- Comment #16 from stragu  ---
I reported the GTK3 issue described in the two previous comments in Bug 143714
to track it separately.

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

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

2021-08-03 Thread panoskorovesis (via logerrit)
 include/vcl/filter/SvmWriter.hxx|1 +
 vcl/source/filter/svm/SvmWriter.cxx |   15 +++
 2 files changed, 16 insertions(+)

New commits:
commit afef5aece1424be8b3e186ae28fb2c26ffcad0ea
Author: panoskorovesis 
AuthorDate: Tue Aug 3 09:41:49 2021 +0300
Commit: Tomaž Vajngerl 
CommitDate: Wed Aug 4 00:51:48 2021 +0200

Add Handler for OverlineColor Write

The handler separates MetaOverlineColorAction::Write from metaact.hxx
Write implementation is now in SvmWriter.hxx

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

diff --git a/include/vcl/filter/SvmWriter.hxx b/include/vcl/filter/SvmWriter.hxx
index 9c1cd0d1d23b..d7a66a3e5b27 100644
--- a/include/vcl/filter/SvmWriter.hxx
+++ b/include/vcl/filter/SvmWriter.hxx
@@ -56,4 +56,5 @@ public:
 void StretchTextHandler(MetaStretchTextAction* pAction, ImplMetaWriteData* 
pData);
 void TextRectHandler(MetaTextRectAction* pAction, ImplMetaWriteData* 
pData);
 void TextLineHandler(MetaTextLineAction* pAction);
+void OverlineColorHandler(MetaOverlineColorAction* pAction);
 };
\ No newline at end of file
diff --git a/vcl/source/filter/svm/SvmWriter.cxx 
b/vcl/source/filter/svm/SvmWriter.cxx
index e3d6f3b4e791..bd2dae5c9926 100644
--- a/vcl/source/filter/svm/SvmWriter.cxx
+++ b/vcl/source/filter/svm/SvmWriter.cxx
@@ -197,6 +197,13 @@ void SvmWriter::MetaActionHandler(MetaAction* pAction, 
ImplMetaWriteData* pData)
 }
 break;
 
+case MetaActionType::OVERLINECOLOR:
+{
+auto* pMetaAction = static_cast(pAction);
+OverlineColorHandler(pMetaAction);
+}
+break;
+
 /* default case prevents test failure and will be
 removed once all the handlers are completed */
 default:
@@ -448,4 +455,12 @@ void SvmWriter::TextLineHandler(MetaTextLineAction* 
pAction)
 // new in version 2
 mrStream.WriteUInt32(pAction->GetOverline());
 }
+
+void SvmWriter::OverlineColorHandler(MetaOverlineColorAction* pAction)
+{
+mrStream.WriteUInt16(static_cast(pAction->GetType()));
+VersionCompatWrite aCompat(mrStream, 1);
+WriteColor(pAction->GetColor());
+mrStream.WriteBool(pAction->IsSetting());
+}
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */


  1   2   3   4   >