[Libreoffice-commits] core.git: Branch 'distro/cib/libreoffice-6-1' - oox/source

2019-10-23 Thread Samuel Mehrbrodt (via logerrit)
 oox/source/core/filterdetect.cxx |   30 --
 1 file changed, 20 insertions(+), 10 deletions(-)

New commits:
commit 865344152d8d99a6efcbb46bc7c530a6bab8c3de
Author: Samuel Mehrbrodt 
AuthorDate: Mon Oct 21 17:12:28 2019 +0200
Commit: Thorsten Behrens 
CommitDate: Thu Oct 24 07:52:50 2019 +0200

Rather not put unencrypted doc in a tempfile

Keep it in memory instead

Reviewed-on: https://gerrit.libreoffice.org/81253
Reviewed-by: Tomaž Vajngerl 
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 
(cherry picked from commit bd3929da20b5a536b82b15af552864e7549f91ef)
Reviewed-on: https://gerrit.libreoffice.org/81298
Reviewed-by: Thorsten Behrens 
(cherry picked from commit a2c94755d883ed807efa4a60302762cf4c6fbefe)

Change-Id: I25e5cb7183a4d192938110323e27f2f5d1d006fc
Reviewed-on: https://gerrit.libreoffice.org/81363
Reviewed-by: Thorsten Behrens 
Tested-by: Thorsten Behrens 

diff --git a/oox/source/core/filterdetect.cxx b/oox/source/core/filterdetect.cxx
index 1af982c07480..492f359a7ab4 100644
--- a/oox/source/core/filterdetect.cxx
+++ b/oox/source/core/filterdetect.cxx
@@ -346,16 +346,26 @@ Reference< XInputStream > 
FilterDetect::extractUnencryptedPackage( MediaDescript
 }
 else
 {
-// create temporary file for unencrypted package
-Reference xTempFile( TempFile::create(mxContext), 
UNO_QUERY_THROW );
-aDecryptor.decrypt( xTempFile );
-
-// store temp file in media descriptor to keep it alive
-rMediaDescriptor.setComponentDataEntry( 
"DecryptedPackage", Any( xTempFile ) );
-
-Reference xDecryptedInputStream = 
xTempFile->getInputStream();
-if( lclIsZipPackage( mxContext, xDecryptedInputStream ) )
-return xDecryptedInputStream;
+// create MemoryStream for unencrypted package - rather 
not put this in a tempfile
+Reference const xTempStream(
+
mxContext->getServiceManager()->createInstanceWithContext(
+"com.sun.star.comp.MemoryStream", mxContext),
+UNO_QUERY_THROW);
+
+// if decryption was unsuccessful (corrupted file or any 
other reason)
+if (!aDecryptor.decrypt(xTempStream))
+{
+rMediaDescriptor[ MediaDescriptor::PROP_ABORTED() ] 
<<= true;
+}
+else
+{
+// store temp file in media descriptor to keep it alive
+rMediaDescriptor.setComponentDataEntry( 
"DecryptedPackage", Any( xTempStream ) );
+
+Reference xDecryptedInputStream = 
xTempStream->getInputStream();
+if( lclIsZipPackage( mxContext, xDecryptedInputStream 
) )
+return xDecryptedInputStream;
+}
 }
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: Branch 'distro/lhm/libreoffice-6-1+backports' - xmlsecurity/inc xmlsecurity/source

2019-10-23 Thread Tomaž Vajngerl (via logerrit)
 xmlsecurity/inc/documentsignaturemanager.hxx   |2 
 xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx |   21 
 xmlsecurity/source/helper/documentsignaturemanager.cxx |   78 -
 3 files changed, 60 insertions(+), 41 deletions(-)

New commits:
commit 0dba32368950553e7bd9f1845aada5d89ce760a5
Author: Tomaž Vajngerl 
AuthorDate: Mon Dec 24 15:11:30 2018 +0100
Commit: Thorsten Behrens 
CommitDate: Thu Oct 24 07:52:31 2019 +0200

Fix signing empty Configurations2/accelerator/current.xml

When determining if a file is an XML file for siging, we need to
read the manifest file to get an accurate detection. In case when
we were signing in the GUI the manifest file was read when the
storage was set. When we didn't sign over the GUI, the manifest
was never read: the code was only present in the GUI code -
"documentsignaturesdialog.cxx" so the detection was wrong and
isXML returned "true" for current.xml.
With this we move the manifest reading to DigitalSignatureManager,
where the manifest is read when needed.

Reviewed-on: https://gerrit.libreoffice.org/65600
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 
(cherry picked from commit 49fcd3bbb30f93763fc5cb80fa6ac5cec5d00834)

Change-Id: If45a32af6410bc5f7c5afdb976b182bd69ab7d6b
Reviewed-on: https://gerrit.libreoffice.org/81417
Reviewed-by: Thorsten Behrens 
Tested-by: Thorsten Behrens 

diff --git a/xmlsecurity/inc/documentsignaturemanager.hxx 
b/xmlsecurity/inc/documentsignaturemanager.hxx
index f88820f03803..d5f27a4386ac 100644
--- a/xmlsecurity/inc/documentsignaturemanager.hxx
+++ b/xmlsecurity/inc/documentsignaturemanager.hxx
@@ -62,6 +62,8 @@ public:
  * differently when they are signed (c14n transformation)
  */
 bool isXML(const OUString& rURI);
+bool readManifest();
+
 SignatureStreamHelper ImplOpenSignatureStream(sal_Int32 nStreamOpenMode, 
bool bTempStream);
 /// Add a new signature, using xCert as a signing certificate, and 
rDescription as description.
 bool add(const css::uno::Reference& xCert,
diff --git a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx 
b/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx
index 88caf75eb0e6..60f38b23f00e 100644
--- a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx
+++ b/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx
@@ -36,7 +36,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -242,26 +241,6 @@ void DigitalSignaturesDialog::SetStorage( const 
css::uno::Reference < css::embed
 
 maSignatureManager.mxStore = rxStore;
 maSignatureManager.maSignatureHelper.SetStorage( 
maSignatureManager.mxStore, m_sODFVersion);
-
-Reference < css::packages::manifest::XManifestReader > xReader =
-css::packages::manifest::ManifestReader::create(mxCtx);
-
-uno::Reference xNameAccess(rxStore, 
uno::UNO_QUERY);
-if (!xNameAccess.is())
-return;
-
-if (xNameAccess->hasByName("META-INF"))
-{
-//Get the manifest.xml
-Reference < css::embed::XStorage > 
xSubStore(rxStore->openStorageElement(
-"META-INF", css::embed::ElementModes::READ), 
UNO_QUERY_THROW);
-
-Reference< css::io::XInputStream > xStream(
-xSubStore->openStreamElement("manifest.xml", 
css::embed::ElementModes::READ),
-UNO_QUERY_THROW);
-
-maSignatureManager.m_manifest = xReader->readManifestSequence(xStream);
-}
 }
 
 void DigitalSignaturesDialog::SetSignatureStream( const css::uno::Reference < 
css::io::XStream >& rxStream )
diff --git a/xmlsecurity/source/helper/documentsignaturemanager.cxx 
b/xmlsecurity/source/helper/documentsignaturemanager.cxx
index c88c18964b22..290b98da65c6 100644
--- a/xmlsecurity/source/helper/documentsignaturemanager.cxx
+++ b/xmlsecurity/source/helper/documentsignaturemanager.cxx
@@ -29,7 +29,8 @@
 #include 
 #include 
 #include 
-#include 
+#include 
+#include 
 
 #include 
 #include 
@@ -125,6 +126,40 @@ bool DocumentSignatureManager::IsXAdESRelevant()
 }
 #endif
 
+bool DocumentSignatureManager::readManifest()
+{
+// Check if manifest was already read
+if (m_manifest.getLength() > 0)
+return true;
+
+if (!mxContext.is())
+return false;
+
+if (!mxStore.is())
+return false;
+
+uno::Reference xReader
+= packages::manifest::ManifestReader::create(mxContext);
+
+uno::Reference xNameAccess(mxStore, 
uno::UNO_QUERY);
+if (!xNameAccess.is())
+return false;
+
+if (xNameAccess->hasByName("META-INF"))
+{
+//Get the manifest.xml
+uno::Reference xSubStore(
+mxStore->openStorageElement("META-INF", 
embed::ElementModes::READ), UNO_QUERY_THROW);
+
+uno::Reference xStream(
+xSubStore->openStreamElement("manifest.xml", 
css::embed::ElementModes::READ),
+UNO_QUERY_THROW);
+
+m_manifest = 

[Libreoffice-bugs] [Bug 87740] [META] Anchor and text wrapping bugs and enhancements

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87740

Aron Budea  changed:

   What|Removed |Added

 Depends on||87719


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=87719
[Bug 87719] No means of dragging an image when its anchored as character
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 87719] No means of dragging an image when its anchored as character

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87719

Aron Budea  changed:

   What|Removed |Added

 Blocks||87740
 CC||ba...@caesar.elte.hu


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=87740
[Bug 87740] [META] Anchor and text wrapping bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 107875] Ability to compress all document images with options set in Compress Image dialog

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107875

ecogit  changed:

   What|Removed |Added

Version|5.4.0.0.alpha1+ |6.3.2.2 release
 OS|All |Linux (All)
   Hardware|All |x86-64 (AMD64)

--- Comment #2 from ecogit  ---
Compressing all images at once is already implemented in presentations
(Impress).

How @Yousuf Philips (jay) imagines it in the mockup would be very practical
especially for larger documents with many images.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128011] LibreOffice Calc crashed after renaming Library of BASIC Macro.

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128011

Nukool Chompuparn  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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128363] Duplicate Alt hotkey has been assigned inside the spellchecker for the Brazilian Portuguese translation

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128363

--- Comment #1 from Leo  ---
Created attachment 155272
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155272=edit
Window screenshot showing the duplicate underlines

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128363] New: Duplicate Alt hotkey has been assigned inside the spellchecker for the Brazilian Portuguese translation

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128363

Bug ID: 128363
   Summary: Duplicate Alt hotkey has been assigned inside the
spellchecker for the Brazilian Portuguese translation
   Product: LibreOffice
   Version: 6.3.2.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Linguistic
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: daro...@gmail.com
CC: so...@libreoffice.org

Description:
This is not about the workings of the spellcheck itself, but the mini window in
which we control spellchecking functions. 
The "U" letter has been underlined both in the "Corrigir tUdo" (correct all)
control and the "AjUda" (help) control: https://i.imgur.com/SBzRZzz.jpg

This is bad because we have to hit Alt+U twice to alternate between the two,
and this combo won't actually hit the button, but merely cycle between them.
The user has to press Space or Enter in order to activate the control. 

Steps to Reproduce:
1. Just make sure you have the Brazilian Portuguese version of LibreOffice
installed
2. Write some text with purposeful grammar mistakes
3. Hit F7 to bring the Spellchecker
4. Disappoint yourself by not being able to do everything with the keyboard in
a streamlined fashion.

Actual Results:
Instead of activating the control (pressing the button), the focus is cycled
between the "Corrigir tudo" and "Ajuda" buttons but not pressing any of them.

Expected Results:
Hitting Alt+U was supposed to immediately press one of the two buttons, but
since they have been assigned the same Alt (underline) hotkey, then the program
doesn't know which one the user means to press.


Reproducible: Always


User Profile Reset: No



Additional Info:
Please, choose a different letter to underline in either of those controls so
that Alt+[Letter] will work properly.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128362] New: Right mouse button use to expand collapse entries in Navigator can cause confusion

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128362

Bug ID: 128362
   Summary: Right mouse button use to expand collapse entries in
Navigator can cause confusion
   Product: LibreOffice
   Version: 6.4.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rayk...@gmail.com

Created attachment 155271
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155271=edit
heading test file

Confusion can be caused when accessing the context menu to expand or collapse
all entries with the newly added expand collapse all menu items.

Here are steps to repro the confusion that can be caused:

1) Open the attached headings test file
2) Menu > View > Navigator or F5 to open the Navigator
3) Right mouse click on Headings entry in the Navigator content list
4) Select the 'Expand All' item from the context menu
5) Right mouse click on the expand/collapse button to the left of the Headings
entry

Results: Expand All is shown in the context menu as a result of the Headings
entry being collapsed by the click on the expand/collapse button.

Expected results: It may be that you are accessing the context menu to Collapse
All entries and are surprised to find Expand All displayed in the context menu.
This also works in the opposite way by clicking on the expand/collapse button
again expecting Expand All to be displayed and finding Collapse All instead.

Suggested fix: Don't expand/collapse when right click on expand/collapse
button.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 61195] FILEOPEN: Add support for importing and exporting Open XML Paper Specification files (OXPS)

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61195

--- Comment #11 from Paul Wise  ---
The requested features are still missing in this version from Debian:

Version: 6.3.2.2
Build ID: 1:6.3.2-1
CPU threads: 4; OS: Linux 5.2; UI render: default; VCL: gtk3; 
Locale: en-AU (en_AU.utf8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 61195] FILEOPEN: Add support for importing and exporting Open XML Paper Specification files (OXPS)

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61195

--- Comment #12 from Paul Wise  ---
I suggest that you mark enhancement requests as never needing QA pings,
presumably they are much less likely to just go away during the normal course
of development.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128050] Feature Request: Button for hiding the tabbed UI symbol bar without the names of the tabs

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128050

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128030] When enabling revision control in LO Writer, page margin changes are not logged

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128030

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128039] DRAW does not print in Original size but enlarges to page, when printing 2 pages on 1

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128039

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128025] silent font replacement - no warning ebaout missing font/glyph in a font, no information about used font for (automatical) replacement, different behavior in lo-math an

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128025

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124986] FILEOPEN DOCX: "text:variable-set" field has trailing quotation marks in "office:string-value"

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124986

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|QA:needsComment |

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128018] UI Descriptive statistics do not use column names

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128018

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128032] Multiple copies not printed

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128032

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-ux-advise] [Bug 127892] Calc sheet tabs: Option to make compact (use smaller font and less padding like in <=6.2)

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127892

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-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise

[Libreoffice-bugs] [Bug 128040] Slide Deck with Show Grid enabled does not show properly when uploaded to LibreOffice Online

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128040

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 126815] Calc-diagonal cell border xlsx file

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126815

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 126815] Calc-diagonal cell border xlsx file

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126815

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 126892] visibility of cut/pasted section cannot be programmatically changed

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126892

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124986] FILEOPEN DOCX: "text:variable-set" field has trailing quotation marks in "office:string-value"

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124986

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 127952] Don't save forms window size with LibreOffice Base

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127952

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 126602] [HELPCONTENT2] Changes in and tags are not sent to Pootle, thus not translated

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126602

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 127892] Calc sheet tabs: Option to make compact (use smaller font and less padding like in <=6.2)

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127892

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124986] FILEOPEN DOCX: "text:variable-set" field has trailing quotation marks in "office:string-value"

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124986

--- 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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 119378] Text loses spaces and renders without char spacing

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119378

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124780] PPTX Exported Impress Slide looks completely different

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124780

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

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 120761] FILEOPEN Z-order of objects in attached DOC is wrong

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120761

--- Comment #5 from QA Administrators  ---
Dear Aron Budea,

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
http://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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125818] Crash in: SmViewShell::GetState

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125818

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-ux-advise] [Bug 100506] Addition ability to copy result of search in dialogue Find

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100506

--- Comment #12 from QA Administrators  ---
Dear Roman Kuznetsov,

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
http://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 on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise

[Libreoffice-bugs] [Bug 125818] Crash in: SmViewShell::GetState

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125818

--- 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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 120819] LO Writer: General input/output error while opening .uot

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120819

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

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
http://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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 90009] UI: button size inconsistent, the buttons are not the same height in the Chart Wizard and in the options dialog

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90009

--- Comment #10 from QA Administrators  ---
Dear clemty,

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
http://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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128309] Opening Appleworks drawing: "Quicktime and a TIFF uncompressed decompressor are needed to see this picture"

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128309

--- 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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128309] Opening Appleworks drawing: "Quicktime and a TIFF uncompressed decompressor are needed to see this picture"

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128309

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 62688] EDITING: Shortcuts like ctrl+a , ctrl+b don't work for comment edit box in impress .

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62688

--- Comment #10 from QA Administrators  ---
Dear navin patidar,

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
http://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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 119378] Text loses spaces and renders without char spacing

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119378

--- Comment #9 from QA Administrators  ---
Dear Jens Troeger,

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 113174] Formula Input Line does not save the size if you increase it

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113174

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

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
http://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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 100506] Addition ability to copy result of search in dialogue Find

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100506

--- Comment #12 from QA Administrators  ---
Dear Roman Kuznetsov,

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
http://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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 61393] PDF: Missing objects editing a PDF coming from Winword

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61393

--- Comment #16 from QA Administrators  ---
Dear pruello,

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
http://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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 81057] Error importing a DOC document with tabs with fill character

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81057

--- Comment #9 from QA Administrators  ---
Dear Marco Gaiarin,

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
http://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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 61195] FILEOPEN: Add support for importing and exporting Open XML Paper Specification files (OXPS)

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61195

--- Comment #10 from QA Administrators  ---
Dear Bastián Díaz,

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
http://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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 106472] Headless printing ignores macro

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106472

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

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
http://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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 117666] Accessing Nextcloud fails

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117666

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

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
http://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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 82802] conditional style with no conditions is displayed as un-conditional style after reloading document

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82802

--- Comment #15 from QA Administrators  ---
Dear Marcell Nemes,

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
http://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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 102157] DIALOG: Reset button doesnt reset values in paragraph style

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102157

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 107699] middle mouse button paste changes font

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107699

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

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
http://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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 34955] Deleting numbering item which restarts numbering fails to retain restart

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=34955

--- Comment #11 from QA Administrators  ---
Dear sasha.libreoffice,

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
http://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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-ux-advise] [Bug 82802] conditional style with no conditions is displayed as un-conditional style after reloading document

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82802

--- Comment #15 from QA Administrators  ---
Dear Marcell Nemes,

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
http://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 on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise

[Libreoffice-bugs] [Bug 79695] FILEOPEN: MS Word 2013 ODF shows red question marks after formula

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79695

--- Comment #15 from QA Administrators  ---
Dear Firas Hanife,

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
http://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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 72456] Font Embedding does not work on MacOS

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72456

--- Comment #16 from QA Administrators  ---
Dear Italo Vignoli,

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
http://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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 112494] Percent-encoding (URL encoding) shouldn't be used for file names in dialogs

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112494

--- Comment #5 from QA Administrators  ---
Dear Thomas Lendo,

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
http://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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 120096] It takes a while after pressing save, before the toolbar items are disabled visually

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120096

--- Comment #4 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
http://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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 34355] Option to show track changes in margin is missing

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=34355

--- Comment #82 from diljitdosanjh  ---
Programming updates offer a lot of advantages. It's about updates. These might
incorporate fixing security gaps that have been found and fixing or evacuating
PC bugs. Updates can add new highlights to your gadgets and expel obsolete
ones. 

While you're grinding away, it's a smart thought to ensure your working
framework is running the most recent variant.
I have been working on developing a software to automatically suggest keywords
in context of writing lyrics for Punjabi songs at https://lyricsraag.com/

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-ux-advise] [Bug 34355] Option to show track changes in margin is missing

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=34355

--- Comment #82 from diljitdosanjh  ---
Programming updates offer a lot of advantages. It's about updates. These might
incorporate fixing security gaps that have been found and fixing or evacuating
PC bugs. Updates can add new highlights to your gadgets and expel obsolete
ones. 

While you're grinding away, it's a smart thought to ensure your working
framework is running the most recent variant.
I have been working on developing a software to automatically suggest keywords
in context of writing lyrics for Punjabi songs at https://lyricsraag.com/

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise

[Libreoffice-bugs] [Bug 120333] No way to load color palette

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120333

--- Comment #6 from lobaluna  ---
(In reply to Regina Henschel from comment #2)
> For color palettes it is not critical. You have no "load" inside the
> dialogs. But you only need to put the *.soc file into folder
> /share/palette to make it available for all users or into
> the user-folder user/config to make it available only for that user. The
> palette can then be chosen in the drop down list in the Color tab of the
> area or in the line dialog in the color field. Make sure, that the file name
> of the soc file is unique, otherwise you will have two entries with the same
> name in the list.
> 
> But the help needs to be adapted. I have changed the component.

@Regina, it might be not critical, but it is easier for regular users to load
their customized SOC files directly in the same dialog where they switch
palettes. The best option might be a global option to add custom palettes in
Options menu.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128310] Crash when I open a specific Libre Office Writer file (SR_P.odt) and search or modify. Other similar files in the same directory are OK (so far).

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128310

Tobias Green  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from Tobias Green  ---
I reset user profile as requested, but the problem persists in this file.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 126834] Wrong wordcount plural rule used for hsb and dsb

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126834

zh_CN User Community Liaison  changed:

   What|Removed |Added

 CC||plateauw...@qq.com

--- Comment #10 from zh_CN User Community Liaison  ---
Looking at
https://opengrok.libreoffice.org/xref/core/sw/inc/strings.hrc?r=0c1ab11c#296 it
seems to me LO indeed assumes that "word" has at most two plurality forms for
all languages.  So not trivial indeed.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

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

2019-10-23 Thread Henry Castro (via logerrit)
 svtools/source/control/valueset.cxx |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 943cd5381b241f18f9ede25f3c2de4168a998caa
Author: Henry Castro 
AuthorDate: Wed Oct 23 15:25:49 2019 -0400
Commit: Henry Castro 
CommitDate: Thu Oct 24 02:09:58 2019 +0200

lok: valueset: dump as property tree the selected item

The client side requires the data of the selected item to apply CSS
border styles.

Change-Id: I19f662329e4cfce45e32f82dcf9398dc9c3ecaec
Reviewed-on: https://gerrit.libreoffice.org/81421
Tested-by: Jenkins
Reviewed-by: Henry Castro 

diff --git a/svtools/source/control/valueset.cxx 
b/svtools/source/control/valueset.cxx
index 462cd55e99d1..08721c25acde 100644
--- a/svtools/source/control/valueset.cxx
+++ b/svtools/source/control/valueset.cxx
@@ -1446,8 +1446,11 @@ boost::property_tree::ptree 
ValueSet::DumpAsPropertyTree()
 boost::property_tree::ptree aEntry;
 ValueSetItem* pItem = mItemList[nIt].get();
 aEntry.put("id", pItem->mnId);
-aEntry.put("text", pItem->maText);
 aEntry.put("image", pItem->maImage.GetStock());
+if (mnSelItemId == pItem->mnId) {
+aEntry.put("selected", true);
+}
+
 aEntries.push_back(std::make_pair("", aEntry));
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] online.git: loleaflet/src

2019-10-23 Thread Henry Castro (via logerrit)
 loleaflet/src/control/Control.JSDialogBuilder.js |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 298cffd6b603ac53e6f8748c5b4d7be2f6c32c96
Author: Henry Castro 
AuthorDate: Wed Oct 23 15:34:22 2019 -0400
Commit: Henry Castro 
CommitDate: Thu Oct 24 02:10:22 2019 +0200

loleaflet: apply a border style when the "valueset" item is selected

When the user selects an item (touch), the LO server updates and send
selected data to apply border styles.

Change-Id: Ic6f877712514806b822d70342738ee04ae2ea0a8
Reviewed-on: https://gerrit.libreoffice.org/81419
Reviewed-by: Henry Castro 
Tested-by: Henry Castro 

diff --git a/loleaflet/src/control/Control.JSDialogBuilder.js 
b/loleaflet/src/control/Control.JSDialogBuilder.js
index 97eb06109..8a1c197ed 100644
--- a/loleaflet/src/control/Control.JSDialogBuilder.js
+++ b/loleaflet/src/control/Control.JSDialogBuilder.js
@@ -547,7 +547,8 @@ L.Control.JSDialogBuilder = L.Control.extend({
image = data.entries[index].image;
image = image.substr(0, image.lastIndexOf('.'));
image = image.substr(image.lastIndexOf('/') + 1);
-   elem = L.DomUtil.create('div', 'layout ' + image, 
parentContainer);
+   elem = L.DomUtil.create('div', 'layout ' + image +
+   (data.entries[index].selected ? ' 
loleaflet-context-down' : ''), parentContainer);
$(elem).data('id', data.entries[index].id);
$(elem).click(function () {
builder.callback('valueset', 'selected', { id: 
data.id }, $(this).data('id'), builder);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107139
Bug 107139 depends on bug 127976, which changed state.

Bug 127976 Summary: [Icon theme] Change Navigator's Update icon in Master 
document mode (Writer)
https://bugs.documentfoundation.org/show_bug.cgi?id=127976

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

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

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107139

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||127976


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=127976
[Bug 127976] [Icon theme] Change Navigator's Update icon in Master document
mode (Writer)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

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

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117497

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||127976


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=127976
[Bug 127976] [Icon theme] Change Navigator's Update icon in Master document
mode (Writer)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

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

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125965
Bug 125965 depends on bug 127976, which changed state.

Bug 127976 Summary: [Icon theme] Change Navigator's Update icon in Master 
document mode (Writer)
https://bugs.documentfoundation.org/show_bug.cgi?id=127976

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

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

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117497
Bug 117497 depends on bug 127976, which changed state.

Bug 127976 Summary: [Icon theme] Change Navigator's Update icon in Master 
document mode (Writer)
https://bugs.documentfoundation.org/show_bug.cgi?id=127976

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 127976] [Icon theme] Change Navigator's Update icon in Master document mode (Writer)

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127976

Rizal Muttaqin  changed:

   What|Removed |Added

 Status|VERIFIED|REOPENED
 Blocks||107139, 117497
 Resolution|FIXED   |---

--- Comment #9 from Rizal Muttaqin  ---
I reopen this bug because it affects other themes including Breeze and Colibre
which are left behind.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107139
[Bug 107139] [META] Breeze icons
https://bugs.documentfoundation.org/show_bug.cgi?id=117497
[Bug 117497] [META] Colibre icons
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

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

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117497

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on|127977  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=127977
[Bug 127977] [Sifr theme] Create good icons for Set reminder, Header, Footer
and Headings level show icons in Navigator
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

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

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107139

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on|127977  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=127977
[Bug 127977] [Sifr theme] Create good icons for Set reminder, Header, Footer
and Headings level show icons in Navigator
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

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

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125965
Bug 125965 depends on bug 127977, which changed state.

Bug 127977 Summary: [Sifr theme] Create good icons for Set reminder, Header, 
Footer and Headings level show icons in Navigator
https://bugs.documentfoundation.org/show_bug.cgi?id=127977

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 127977] [Sifr theme] Create good icons for Set reminder, Header, Footer and Headings level show icons in Navigator

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127977

Rizal Muttaqin  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|REOPENED|RESOLVED
 Blocks|107139, 117497  |

--- Comment #8 from Rizal Muttaqin  ---
Sorry wrong bug ID(In reply to Rizal Muttaqin from comment #7)
> I reopen this bug since this affects many icon themes. Now Breeze and
> Colibre are two theme which have not been fixed yet.

Sorry wrong bug ID, revert this to Resolved Fixed and change blocks field


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107139
[Bug 107139] [META] Breeze icons
https://bugs.documentfoundation.org/show_bug.cgi?id=117497
[Bug 117497] [META] Colibre icons
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

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

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107139

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||127977


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=127977
[Bug 127977] [Sifr theme] Create good icons for Set reminder, Header, Footer
and Headings level show icons in Navigator
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 127977] [Sifr theme] Create good icons for Set reminder, Header, Footer and Headings level show icons in Navigator

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127977

Rizal Muttaqin  changed:

   What|Removed |Added

 Blocks||107139


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107139
[Bug 107139] [META] Breeze icons
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 126834] Wrong wordcount plural rule used for hsb and dsb

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126834

--- Comment #9 from zh_CN User Community Liaison  ---
(In reply to milupo from comment #8)
> The Sorbian plural rules are not correctly applied. Obviously, only 2 of the
> 4 Sorbian forms are used, singular and plural. That's the English rule.
The thing is, the English rule is also the plurality rule for a lot of other
languages.  Sorbian is unique/special in the sense that very few languages
share its rule of four singular/plural forms.

The LibreOffice code most likely doesn't know how to handle 4-form nouns yet,
that's what Julien meant by "doesn't seem trivial".

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

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

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125965
Bug 125965 depends on bug 127977, which changed state.

Bug 127977 Summary: [Sifr theme] Create good icons for Set reminder, Header, 
Footer and Headings level show icons in Navigator
https://bugs.documentfoundation.org/show_bug.cgi?id=127977

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

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

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117497

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||127977


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=127977
[Bug 127977] [Sifr theme] Create good icons for Set reminder, Header, Footer
and Headings level show icons in Navigator
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

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

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117497
Bug 117497 depends on bug 127977, which changed state.

Bug 127977 Summary: [Sifr theme] Create good icons for Set reminder, Header, 
Footer and Headings level show icons in Navigator
https://bugs.documentfoundation.org/show_bug.cgi?id=127977

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 127977] [Sifr theme] Create good icons for Set reminder, Header, Footer and Headings level show icons in Navigator

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127977

Rizal Muttaqin  changed:

   What|Removed |Added

 Resolution|FIXED   |---
 Status|VERIFIED|REOPENED
 Blocks||117497

--- Comment #7 from Rizal Muttaqin  ---
I reopen this bug since this affects many icon themes. Now Breeze and Colibre
are two theme which have not been fixed yet.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117497
[Bug 117497] [META] Colibre icons
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125818] Crash in: SmViewShell::GetState

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125818

--- Comment #7 from Kieran Grant  ---
I have not been able to reproduce this bug with the latest LibreOffice.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 126785] All libreoffice programs are duplicating the inputs

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126785

--- Comment #22 from Victor Silva  ---
Xisco did help me in irc and starting with:
SAL_USE_VCLPLUGIN=gtk3 soffice

fixed all my issues both small letters and double input.I did record a video:
https://youtu.be/P--XXU2yPJk
showing the issue.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128361] jagged, indented rendered rows

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128361

--- Comment #1 from zionoto  ---
Created attachment 155270
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155270=edit
Rows rendered in weird way

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128361] New: jagged, indented rendered rows

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128361

Bug ID: 128361
   Summary: jagged, indented rendered rows
   Product: LibreOffice
   Version: unspecified
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: zion...@gmail.com

Description:
It's a while that I'm experiencing a problem in the rendering on pages with
Writer when I scroll the page up or down. Some rows appear to be wrong
rendered, as shown into the attached image. I have experienced this strange and
unwanted rendering fx since I started use LO, versions ago...
It doesn't happen every time I scroll the page but enough to get my attention,
even if the system isn't busy doing other heavy work simultaneously.

Yesterday I got the v. 6.3.2.2 and it has the same issue as all previous
versions I used to use in the past. I tried at least 3-4 computers and the
problem is consistent between win versions too and different hardware.

If there is a table in the page the fx is also more evident when it happens
because table rows render "broken" or kinda of not continuous.

This doesn't happen with any other software for example Ms Word or browsers, or
even notepad++ or else, which render everything in good quality, as expected.

I didn't try on other LO applications, so I don't know if in calc or base or
else this problem is present.

Can someone else confirm the issue?

Thank you

Steps to Reproduce:
1.Just scroll vertically or horizontally the text

Actual Results:
jagged, indented, "broken" rendered rows

Expected Results:
straight table and text lines


Reproducible: Sometimes


User Profile Reset: No



Additional Info:

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-commits] core.git: configure.ac

2019-10-23 Thread Jan Holesovsky (via logerrit)
 configure.ac |   15 ++-
 1 file changed, 14 insertions(+), 1 deletion(-)

New commits:
commit 4c0bccbb21ba022fd9d630eb1d9ae34673b4dc11
Author: Jan Holesovsky 
AuthorDate: Thu Jul 4 09:06:49 2019 +0200
Commit: Jan Holesovsky 
CommitDate: Thu Oct 24 00:37:05 2019 +0200

android: Allow specification of the API level.

Change-Id: Icf33e2703f42a7866ce895437cf5f276066eeebe
Reviewed-on: https://gerrit.libreoffice.org/81227
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Jan Holesovsky 
(cherry picked from commit 59eee888bf7174114e5749855d95e8ff7dd15013)
Reviewed-on: https://gerrit.libreoffice.org/81327
Tested-by: Jenkins

diff --git a/configure.ac b/configure.ac
index 43cdf69ac8a8..0850870ca809 100644
--- a/configure.ac
+++ b/configure.ac
@@ -386,6 +386,11 @@ AC_ARG_WITH(android-sdk,
 [Specify location of the Android SDK. Mandatory when building for 
Android.]),
 ,)
 
+AC_ARG_WITH(android-api-level,
+AS_HELP_STRING([--with-android-api-level],
+[Specify the API level when building for Android. Defaults to 16 for 
ARM and x86 and to 21 for ARM64 and x86-64]),
+,)
+
 ANDROID_NDK_HOME=
 if test -z "$with_android_ndk" -a -e "$SRC_ROOT/external/android-ndk" -a 
"$build" != "$host"; then
 with_android_ndk="$SRC_ROOT/external/android-ndk"
@@ -422,6 +427,10 @@ if test -n "$with_android_ndk"; then
 esac
 
 ANDROID_API_LEVEL=16
+if test -n "$with_android_api_level" ; then
+ANDROID_API_LEVEL="$with_android_api_level"
+fi
+
 android_cpu=$host_cpu
 if test $host_cpu = arm; then
 android_platform_prefix=arm-linux-androideabi
@@ -434,7 +443,9 @@ if test -n "$with_android_ndk"; then
 android_gnu_prefix=$android_platform_prefix
 LLVM_TRIPLE=$android_platform_prefix
 # minimum android version that supports aarch64
-ANDROID_API_LEVEL=21
+if test "$ANDROID_API_LEVEL" -lt "21" ; then
+ANDROID_API_LEVEL=21
+fi
 ANDROID_APP_ABI=arm64-v8a
 elif test $host_cpu = x86_64; then
 android_platform_prefix=x86_64-linux-android
@@ -461,6 +472,8 @@ if test -n "$with_android_ndk"; then
 AC_MSG_ERROR([Unrecognized value for the 
--with-android-ndk-toolchain-version option. Building for Android is only 
supported with Clang 5.*])
 esac
 
+AC_MSG_NOTICE([using the Android API level... $ANDROID_API_LEVEL])
+
 # NDK 15 or later toolchain is 64bit-only, except for Windows that we 
don't support. Using a 64-bit
 # linker is required if you compile large parts of the code with -g. A 
32-bit linker just won't
 # manage to link the (app-specific) single huge .so that is built for the 
app in
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: android/source configure.ac

2019-10-23 Thread Jan Holesovsky (via logerrit)
 android/source/build.gradle |3 +--
 android/source/gradle/wrapper/gradle-wrapper.properties |2 +-
 configure.ac|4 ++--
 3 files changed, 4 insertions(+), 5 deletions(-)

New commits:
commit 7e20dcbae47395e7d922ccd9fc5c30dcc205b32f
Author: Jan Holesovsky 
AuthorDate: Thu Jul 4 08:55:17 2019 +0200
Commit: Jan Holesovsky 
CommitDate: Thu Oct 24 00:36:08 2019 +0200

android: Allow using SDK and NDK directly from the Android Studio.

Just specify:

--with-android-ndk=$HOME/Android/Sdk/ndk-bundle
--with-android-sdk=$HOME/Android/Sdk

in your autogen.input, install the appropriate components via Android
Studio and you are done.

Change-Id: Ic99790b781b9017eb4e642380e230d6f7b49e9b7
Reviewed-on: https://gerrit.libreoffice.org/81228
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Jan Holesovsky 
(cherry picked from commit 246f1b5b4485b7db9f9584e4b3b819c87e331c0e)
Reviewed-on: https://gerrit.libreoffice.org/81328
Tested-by: Jenkins

diff --git a/android/source/build.gradle b/android/source/build.gradle
index f7fd32f56642..9d9e35f18a69 100644
--- a/android/source/build.gradle
+++ b/android/source/build.gradle
@@ -33,8 +33,7 @@ dependencies {
 "unoloader.jar"
 ])
 implementation files("${liboInstdir}/${liboShareJavaFolder}/unoil.jar")
-debugImplementation(name:'owncloud_android_lib-debug', ext:'aar')
-releaseImplementation(name:'owncloud_android_lib-release', ext:'aar')
+implementation(name:'owncloud_android_lib', ext:'aar')
 implementation 'com.android.support:design:27.1.1' // also pulls-in 
corresponding support libraries
 implementation 'com.android.support.constraint:constraint-layout:1.1.2'
 }
diff --git a/android/source/gradle/wrapper/gradle-wrapper.properties 
b/android/source/gradle/wrapper/gradle-wrapper.properties
index 1490158923d0..617dcf1065c3 100644
--- a/android/source/gradle/wrapper/gradle-wrapper.properties
+++ b/android/source/gradle/wrapper/gradle-wrapper.properties
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
 distributionPath=wrapper/dists
 zipStoreBase=GRADLE_USER_HOME
 zipStorePath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-all.zip
diff --git a/configure.ac b/configure.ac
index 9c8d512be07b..43cdf69ac8a8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -391,7 +391,7 @@ if test -z "$with_android_ndk" -a -e 
"$SRC_ROOT/external/android-ndk" -a "$build
 with_android_ndk="$SRC_ROOT/external/android-ndk"
 fi
 if test -n "$with_android_ndk"; then
-ANDROID_NDK_HOME=$with_android_ndk
+eval ANDROID_NDK_HOME=$with_android_ndk
 
 # Set up a lot of pre-canned defaults
 
@@ -525,7 +525,7 @@ if test -z "$with_android_sdk" -a -e 
"$SRC_ROOT/external/android-sdk-linux" -a "
 with_android_sdk="$SRC_ROOT/external/android-sdk-linux"
 fi
 if test -n "$with_android_sdk"; then
-ANDROID_SDK_HOME=$with_android_sdk
+eval ANDROID_SDK_HOME=$with_android_sdk
 PATH="$ANDROID_SDK_HOME/platform-tools:$ANDROID_SDK_HOME/tools:$PATH"
 fi
 AC_SUBST(ANDROID_SDK_HOME)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-10-23 Thread Jan Holesovsky (via logerrit)
 vcl/source/filter/graphicfilter.cxx |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 044709575e907ffc74f85c395219207b51370c05
Author: Jan Holesovsky 
AuthorDate: Fri Oct 18 00:40:59 2019 +0200
Commit: Jan Holesovsky 
CommitDate: Thu Oct 24 00:35:44 2019 +0200

pdfium: Switch the condition for better readibility.

Change-Id: I8acf1e98f032f6943b2e7d09ac276f0f1ac4b120
Reviewed-on: https://gerrit.libreoffice.org/81061
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Jan Holesovsky 
(cherry picked from commit 105d98caa70389c12ad4f9a2a2b7474a4be73aa2)
Reviewed-on: https://gerrit.libreoffice.org/81326
Tested-by: Jenkins

diff --git a/vcl/source/filter/graphicfilter.cxx 
b/vcl/source/filter/graphicfilter.cxx
index 4aeee289f689..468ff983c4f2 100644
--- a/vcl/source/filter/graphicfilter.cxx
+++ b/vcl/source/filter/graphicfilter.cxx
@@ -1752,12 +1752,12 @@ ErrCode GraphicFilter::ImportGraphic( Graphic& 
rGraphic, const OUString& rPath,
 nStatus = ERRCODE_GRFILTER_FILTERERROR;
 }
 }
-else if (aFilterName == IMP_PDF)
+else if (aFilterName.equalsIgnoreAsciiCase(IMP_PDF))
 {
-if (!vcl::ImportPDF(rIStream, rGraphic))
-nStatus = ERRCODE_GRFILTER_FILTERERROR;
-else
+if (vcl::ImportPDF(rIStream, rGraphic))
 eLinkType = GfxLinkType::NativePdf;
+else
+nStatus = ERRCODE_GRFILTER_FILTERERROR;
 }
 else
 nStatus = ERRCODE_GRFILTER_FILTERERROR;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 126834] Wrong wordcount plural rule used for hsb and dsb

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126834

--- Comment #8 from mil...@sorbzilla.de ---
The Sorbian plural rules are not correctly applied. Obviously, only 2 of the 4
Sorbian forms are used, singular and plural. That's the English rule.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128360] fix alignment of all controls for Style subsection of Page section in Writer Sidebar

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128360

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

   What|Removed |Added

 Blocks||103459


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103459
[Bug 103459] [META] Sidebar UI and UX bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 103459] [META] Sidebar UI and UX bugs and enhancements

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103459

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

   What|Removed |Added

 Depends on||128360


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=128360
[Bug 128360] fix alignment of all controls for Style subsection of Page section
in Writer Sidebar
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128360] fix alignment of all controls for Style subsection of Page section in Writer Sidebar

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128360

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
Created attachment 155269
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155269=edit
Screenshot

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128360] New: fix alignment of all controls for Style subsection of Page section in Writer Sidebar

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128360

Bug ID: 128360
   Summary: fix alignment of all controls for Style subsection of
Page section in Writer Sidebar
   Product: LibreOffice
   Version: 6.4.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 79045_79...@mail.ru

Description:
fix alignment of all controls for Style subsection of Page section in Writer
Sidebar

I mean to alignment all controls in all four subsections in Page section (see
problem on screenshot from attach)

Steps to Reproduce:
-

Actual Results:
-

Expected Results:
-


Reproducible: Always


User Profile Reset: No



Additional Info:
-

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 74533] EDITING hyperlink: column insert after hidden column with hyperlins creates a column with invisible and undelettable hyperlinks

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=74533

Gerhard Weydt  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121034] Mouse pointer turns to hand over hyperlink even without Ctrl being pressed, hence cell not selectable by mouse

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121034

Gerhard Weydt  changed:

   What|Removed |Added

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

--- Comment #14 from Gerhard Weydt  ---
(In reply to Tristan Miller from comment #13)
> (In reply to Gerhard Weydt from comment #4)
> > And the link even covers the adjacent cells to the right if the column
> > containing it is hidden!
> 
> This may be Bug 74533.

Well spotted! At first glance I do not understand bug 74533 completely, but it
certainly seems to be connected with the problem, even though this bug here is
probably the more basic problem.
I added 74533 to "see also".

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128350] Unable to set arbitrary resolution in exported PDF files

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128350

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #2 from m.a.riosv  ---
You are right @Olivier, the box allows to enter the desired value different
than those in the list.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128251] EPUB Export dialog’s labels are not consistently aligned

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128251

--- Comment #6 from andreas_k  ---
Created attachment 155268
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155268=edit
Epub 03

I like it good idea Heiko.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-ux-advise] [Bug 128251] EPUB Export dialog’s labels are not consistently aligned

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128251

--- Comment #6 from andreas_k  ---
Created attachment 155268
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155268=edit
Epub 03

I like it good idea Heiko.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise

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

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125965
Bug 125965 depends on bug 127976, which changed state.

Bug 127976 Summary: [Icon theme] Change Navigator's Update icon in Master 
document mode (Writer)
https://bugs.documentfoundation.org/show_bug.cgi?id=127976

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 127976] [Icon theme] Change Navigator's Update icon in Master document mode (Writer)

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127976

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

   What|Removed |Added

 Status|RESOLVED|VERIFIED

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 127977] [Sifr theme] Create good icons for Set reminder, Header, Footer and Headings level show icons in Navigator

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127977

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

   What|Removed |Added

 Status|RESOLVED|VERIFIED

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

  1   2   3   4   5   >