[Libreoffice-commits] core.git: instsetoo_native/inc_common

2018-05-04 Thread andreas kainz
 instsetoo_native/inc_common/windows/msi_templates/Binary/newfolder.ico |binary
 1 file changed

New commits:
commit 0b56585cfc047decf25c648d3cccfc3c7b594a86
Author: andreas kainz 
Date:   Fri May 4 23:06:20 2018 +0200

Windows installer icon update newfolder.ico

Change-Id: Ifc65202ddd82f7fbd80de1a36c21eb0edc126bc7
Reviewed-on: https://gerrit.libreoffice.org/53886
Tested-by: Jenkins 
Reviewed-by: andreas_kainz 

diff --git 
a/instsetoo_native/inc_common/windows/msi_templates/Binary/newfolder.ico 
b/instsetoo_native/inc_common/windows/msi_templates/Binary/newfolder.ico
index 1b5128f8f296..e161bed339bb 100644
Binary files 
a/instsetoo_native/inc_common/windows/msi_templates/Binary/newfolder.ico and 
b/instsetoo_native/inc_common/windows/msi_templates/Binary/newfolder.ico differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117431] Make default Search/Find to be "Search in all sheets"

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117431

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |WONTFIX

--- Comment #1 from V Stuart Foote  ---
Searching ALL sheets is provided via the check-box in the Find & Replace
dialog, default is correctly set to not search all. Profile/Expert
configuration is not provided to record set these values--they are reset with
each launch of calc--no compelling reason to change that for one value. Use the
check-box.

-- 
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: Branch 'aoo/trunk' - connectivity/java

2018-05-04 Thread Damjan Jovanovic
 connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/BoundedInputStream.java 
  |2 
 connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/ClassMap.java   
  |4 
 
connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/ContextClassLoaderScope.java
  |4 
 connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/JDBCDriver.java 
  |2 
 connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/JavaSQLArray.java   
  |4 
 connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/JavaSQLBlob.java
  |4 
 
connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/JavaSQLCallableStatement.java
 |1 
 connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/JavaSQLClob.java
  |4 
 connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/JavaSQLConnection.java  
  |   78 +-
 
connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/JavaSQLDatabaseMetaData.java
  |7 
 
connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/JavaSQLPreparedStatement.java
 |1 
 connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/JavaSQLRef.java 
  |2 
 
connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/JavaSQLResultSetMetaData.java
 |4 
 connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/JavaSQLStatement.java   
  |3 
 
connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/JavaSQLStatementBase.java
 |1 
 connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/ReaderInputStream.java  
  |2 
 connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/Tools.java  
  |   52 ++
 17 files changed, 93 insertions(+), 82 deletions(-)

New commits:
commit 87e19c1cab7e6dd9ddd7cefdc670afd5ecb69df5
Author: Damjan Jovanovic 
Date:   Sat May 5 03:59:10 2018 +

Move the PropertyValue helper methods to the tools class for now.

Some "@Override" and "final" cleanups as per NetBeans.

Patch by: me

diff --git 
a/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/BoundedInputStream.java
 
b/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/BoundedInputStream.java
index 07e8b6762d66..5336ba0e7312 100644
--- 
a/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/BoundedInputStream.java
+++ 
b/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/BoundedInputStream.java
@@ -24,7 +24,7 @@ import java.io.IOException;
 import java.io.InputStream;
 
 public class BoundedInputStream extends InputStream {
-private InputStream is;
+private final InputStream is;
 private long remaining;
 
 public BoundedInputStream(InputStream is, long max) {
diff --git 
a/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/ClassMap.java 
b/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/ClassMap.java
index fda4063ecdae..6bdd506af263 100644
--- a/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/ClassMap.java
+++ b/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/ClassMap.java
@@ -59,8 +59,8 @@ import com.sun.star.util.XMacroExpander;
  */
 public class ClassMap {
 public static class ClassLoaderAndClass {
-private ClassLoader classLoader;
-private Class classObject;
+private final ClassLoader classLoader;
+private final Class classObject;
 
 public ClassLoaderAndClass(ClassLoader classLoader, Class 
classObject) {
 this.classLoader = classLoader;
diff --git 
a/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/ContextClassLoaderScope.java
 
b/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/ContextClassLoaderScope.java
index 4feef8dac6ba..43bf01a7599a 100644
--- 
a/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/ContextClassLoaderScope.java
+++ 
b/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/ContextClassLoaderScope.java
@@ -21,8 +21,8 @@
 package com.sun.star.comp.sdbc;
 
 public class ContextClassLoaderScope implements AutoCloseable {
-private Thread currentThread;
-private ClassLoader oldClassLoader;
+private final Thread currentThread;
+private final ClassLoader oldClassLoader;
 
 public ContextClassLoaderScope(ClassLoader classLoader) {
 currentThread = Thread.currentThread();
diff --git 
a/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/JDBCDriver.java 
b/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/JDBCDriver.java
index 350c2a00c52d..6749bf874b32 100644
--- a/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/JDBCDriver.java
+++ b/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/JDBCDriver.java
@@ -44,7 +44,7 @@ public class JDBCDriver extends ComponentBase implements 
XServiceInfo, XDriver {
 "com.sun.star.sdbc.Driver"
 };
 private XComponentContext context;
-private ResourceBasedEventLogger logger;
+private final ResourceBasedEventLogger logger;
 
 public static XSingleComponentFactory __getComponentFactory(String 
implName) {
 

[Libreoffice-bugs] [Bug 115817] Correct implementation or remove the Navigation toolbar ( a GSOC 2009 contribution see bug 32869) ( comment 3 for history and functional intent)

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115817

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 115817] Correct implementation or remove the Navigation toolbar ( a GSOC 2009 contribution see bug 32869) ( comment 3 for history and functional intent)

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115817

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 51401] Better shortcut category for forward and back navigation functions

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51401

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||5817

--- Comment #5 from V Stuart Foote  ---
This navigation is what the controls on the Navigation toolbar (Writer only,
but applicable to other modules) are intended to provide, see bug 32869 and bug
115817

Not clear they can be made generic--or must be bound to a specific toolbar,
dialog.

-- 
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 98469] The Navigation toolbar in Writer started from the Navigator has no name

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98469

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||5817

--- Comment #6 from V Stuart Foote  ---
Still valid at 6.1.0alpha1+

-- 
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 115817] Correct implementation or remove the Navigation toolbar ( a GSOC 2009 contribution see bug 32869) ( comment 3 for history and functional intent)

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115817

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 115817] Correct implementation or remove the Navigation toolbar ( a GSOC 2009 contribution see bug 32869) ( comment 3 for history and functional intent)

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115817

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 91282] Fullscreen toolbar disappears after docking it, leaving fullscreen mode and re-entering

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91282

--- Comment #13 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 98845] Scripting.Dictionary.Item(New Collection)

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98845

--- Comment #8 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 107637] get focus on comment without mouse

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107637

--- Comment #2 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 99631] EDITING: DOCX with embedded XLSX loaded but incorrectly scaled when edit

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99631

--- Comment #13 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 74604] UI: Make Navigation toolbar work on Hyperlinks and (Field) Cross-references too.

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=74604

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||5817

-- 
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 115817] Correct implementation or remove the Navigation toolbar ( a GSOC 2009 contribution see bug 32869) ( comment 3 for history and functional intent)

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115817

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 115817] Correct implementation or remove the Navigation toolbar ( a GSOC 2009 contribution see bug 32869) ( comment 3 for history and functional intent)

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115817

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 54412] UI: Navigation bar does not get activated when I jump using cross-reference

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=54412

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||5817

-- 
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 115817] Correct implementation or remove the Navigation toolbar ( a GSOC 2009 contribution see bug 32869) ( comment 3 for history and functional intent)

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115817

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 115817] Correct implementation or remove the Navigation toolbar ( a GSOC 2009 contribution see bug 32869) ( comment 3 for history and functional intent)

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115817

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 43220] UI: The Navigation Toolbar (on top of Navigator) in Writer is closing when you wouldn't expect it, and the other way round too

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43220

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 115817] Correct implementation or remove the Navigation toolbar ( a GSOC 2009 contribution see bug 32869) ( comment 3 for history and functional intent)

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115817

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||implementationError
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
Version|6.1.0.0.alpha0+ |3.3.0 release
   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=43 |
   |220 |
Summary|Removal or disabling of the |Correct implementation or
   |Navigation toolbar (a GSOC  |remove the Navigation
   |2009 contribution see bug   |toolbar (a GSOC 2009
   |32869)  |contribution see bug 32869)
   ||(comment 3 for history and
   ||functional intent)
   Severity|enhancement |minor

--- Comment #17 from V Stuart Foote  ---
QA housekeeping, moved all issues of the Navigation toolbar here.

Either need to complete the implementation of the multi-element type navigation
stack fixing its behavior (in GUI and function); or go ahead and delete the
module.

This was developed at the end of OOo era, and integrated into LibreOffice at
initial 3.3.0 release.

-- 
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 115817] Correct implementation or remove the Navigation toolbar ( a GSOC 2009 contribution see bug 32869) ( comment 3 for history and functional intent)

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115817

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||implementationError
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
Version|6.1.0.0.alpha0+ |3.3.0 release
   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=43 |
   |220 |
Summary|Removal or disabling of the |Correct implementation or
   |Navigation toolbar (a GSOC  |remove the Navigation
   |2009 contribution see bug   |toolbar (a GSOC 2009
   |32869)  |contribution see bug 32869)
   ||(comment 3 for history and
   ||functional intent)
   Severity|enhancement |minor

--- Comment #17 from V Stuart Foote  ---
QA housekeeping, moved all issues of the Navigation toolbar here.

Either need to complete the implementation of the multi-element type navigation
stack fixing its behavior (in GUI and function); or go ahead and delete the
module.

This was developed at the end of OOo era, and integrated into LibreOffice at
initial 3.3.0 release.

-- 
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 43220] UI: The Navigation Toolbar (on top of Navigator) in Writer is closing when you wouldn't expect it, and the other way round too

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43220

V Stuart Foote  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |DUPLICATE

--- Comment #10 from V Stuart Foote  ---


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

-- 
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 103030] [META] Navigator sidebar deck and floating window

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103030
Bug 103030 depends on bug 43220, which changed state.

Bug 43220 Summary: UI: The Navigation Toolbar (on top of Navigator) in Writer 
is closing when you wouldn't expect it, and the other way round too
https://bugs.documentfoundation.org/show_bug.cgi?id=43220

   What|Removed |Added

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

-- 
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 115817] Removal or disabling of the Navigation toolbar ( a GSOC 2009 contribution see bug 32869)

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115817

V Stuart Foote  changed:

   What|Removed |Added

 CC||harald.koes...@mail.de

--- Comment #16 from V Stuart Foote  ---
*** Bug 43220 has been marked as a duplicate of this bug. ***

-- 
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 115817] Removal or disabling of the Navigation toolbar ( a GSOC 2009 contribution see bug 32869)

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115817

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 49710] UI: Navigation toolbar keeps appearing

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49710

V Stuart Foote  changed:

   What|Removed |Added

   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=11 |
   |5817,   |
   |https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=43 |
   |220 |

-- 
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 43220] UI: The Navigation Toolbar (on top of Navigator) in Writer is closing when you wouldn't expect it, and the other way round too

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43220

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 108816] [META] Writer toolbar bugs and enhancements

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108816
Bug 108816 depends on bug 49710, which changed state.

Bug 49710 Summary: UI: Navigation toolbar keeps appearing
https://bugs.documentfoundation.org/show_bug.cgi?id=49710

   What|Removed |Added

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

-- 
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 103030] [META] Navigator sidebar deck and floating window

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103030
Bug 103030 depends on bug 49710, which changed state.

Bug 49710 Summary: UI: Navigation toolbar keeps appearing
https://bugs.documentfoundation.org/show_bug.cgi?id=49710

   What|Removed |Added

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

-- 
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 115817] Removal or disabling of the Navigation toolbar ( a GSOC 2009 contribution see bug 32869)

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115817

V Stuart Foote  changed:

   What|Removed |Added

 CC||k.dalg...@gmail.com

--- Comment #15 from V Stuart Foote  ---
*** Bug 49710 has been marked as a duplicate of this bug. ***

-- 
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 49710] UI: Navigation toolbar keeps appearing

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49710

V Stuart Foote  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |DUPLICATE

--- Comment #21 from V Stuart Foote  ---


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

-- 
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 98877] Little window appears when inserting footnote

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98877

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #2 from V Stuart Foote  ---


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

-- 
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 115817] Removal or disabling of the Navigation toolbar ( a GSOC 2009 contribution see bug 32869)

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115817

V Stuart Foote  changed:

   What|Removed |Added

 CC||david.burleigh@parchmentpre
   ||ss.net

--- Comment #14 from V Stuart Foote  ---
*** Bug 98877 has been marked as a duplicate of this bug. ***

-- 
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 98762] UI: Navigation toolbar keeps appearing even after View -> Toolbar -> Navigation toolbar is deselected

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98762

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #5 from V Stuart Foote  ---


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

-- 
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 115817] Removal or disabling of the Navigation toolbar ( a GSOC 2009 contribution see bug 32869)

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115817

V Stuart Foote  changed:

   What|Removed |Added

 CC||lili...@gmail.com

--- Comment #13 from V Stuart Foote  ---
*** Bug 98762 has been marked as a duplicate of this bug. ***

-- 
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 103030] [META] Navigator sidebar deck and floating window

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103030

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||49710


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=49710
[Bug 49710] UI: Navigation toolbar keeps appearing
-- 
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 49710] UI: Navigation toolbar keeps appearing

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49710

Thomas Lendo  changed:

   What|Removed |Added

 CC||thomas.le...@gmail.com
 Blocks||103030


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103030
[Bug 103030] [META] Navigator sidebar deck and floating window
-- 
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 49710] UI: Navigation toolbar keeps appearing

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49710

Thomas Lendo  changed:

   What|Removed |Added

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

-- 
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 43220] UI: The Navigation Toolbar (on top of Navigator) in Writer is closing when you wouldn't expect it, and the other way round too

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43220

Thomas Lendo  changed:

   What|Removed |Added

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

-- 
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 49710] UI: Navigation toolbar keeps appearing

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49710

Thomas Lendo  changed:

   What|Removed |Added

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

-- 
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 115817] Removal or disabling of the Navigation toolbar ( a GSOC 2009 contribution see bug 32869)

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115817

Thomas Lendo  changed:

   What|Removed |Added

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

-- 
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 49710] UI: Navigation toolbar keeps appearing

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49710

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108816


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108816
[Bug 108816] [META] Writer toolbar 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 108816] [META] Writer toolbar bugs and enhancements

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108816

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||49710


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=49710
[Bug 49710] UI: Navigation toolbar keeps appearing
-- 
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 49710] UI: Navigation toolbar keeps appearing

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49710

Thomas Lendo  changed:

   What|Removed |Added

 CC||lili...@gmail.com

--- Comment #20 from Thomas Lendo  ---
*** Bug 98762 has been marked as a duplicate of this bug. ***

-- 
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 108816] [META] Writer toolbar bugs and enhancements

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108816
Bug 108816 depends on bug 98762, which changed state.

Bug 98762 Summary: UI: Navigation toolbar keeps appearing even after View -> 
Toolbar -> Navigation toolbar is deselected
https://bugs.documentfoundation.org/show_bug.cgi?id=98762

   What|Removed |Added

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

-- 
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 98762] UI: Navigation toolbar keeps appearing even after View -> Toolbar -> Navigation toolbar is deselected

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98762

Thomas Lendo  changed:

   What|Removed |Added

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

--- Comment #4 from Thomas Lendo  ---


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

-- 
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 108816] [META] Writer toolbar bugs and enhancements

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108816

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||98762


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=98762
[Bug 98762] UI: Navigation toolbar keeps appearing even after View -> Toolbar
-> Navigation toolbar is deselected
-- 
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 98762] UI: Navigation toolbar keeps appearing even after View -> Toolbar -> Navigation toolbar is deselected

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98762

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108816


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108816
[Bug 108816] [META] Writer toolbar 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 107602] Fileopen: no color line style around equation object in PPTX

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107602

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108226


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108226
[Bug 108226] [META] PPTX (OOXML) bug tracker
-- 
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 108226] [META] PPTX (OOXML) bug tracker

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108226

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||107602


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107602
[Bug 107602] Fileopen: no color line style around equation object in PPTX
-- 
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 115311] UI missing for nesting character styles

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115311

--- Comment #8 from Thomas Lendo  ---
(In reply to Heiko Tietze from comment #7)
> supposed way for expert users who need a lot of paragraph styles at once is
> to collapse the character styles panel. We could also discuss to collapse
> the inspector by default.
The possibility to collapse paragraph/character/inspector panel (which should
also persistent across sessions) is an important feature for Eves.

The filter options 'Preview...', 'List used styles...' and the filter drop-down
list is also important for character styles - or work the filters for both
panels at once? If yes then the position can be enhanced to show that.

Is it desired to show how styles are nested? A new filter checkbox 'Show nested
styles' can show only nested styles in a hierarchical way to see which is on
top of what style.

-- 
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 115311] UI missing for nesting character styles

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115311

--- Comment #8 from Thomas Lendo  ---
(In reply to Heiko Tietze from comment #7)
> supposed way for expert users who need a lot of paragraph styles at once is
> to collapse the character styles panel. We could also discuss to collapse
> the inspector by default.
The possibility to collapse paragraph/character/inspector panel (which should
also persistent across sessions) is an important feature for Eves.

The filter options 'Preview...', 'List used styles...' and the filter drop-down
list is also important for character styles - or work the filters for both
panels at once? If yes then the position can be enhanced to show that.

Is it desired to show how styles are nested? A new filter checkbox 'Show nested
styles' can show only nested styles in a hierarchical way to see which is on
top of what style.

-- 
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 117435] Firebird: Migration: Forms and Reports with image controls and images stored in database no longer display graphics after migration

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117435

--- Comment #1 from Drew Jensen  ---
Created attachment 141899
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141899=edit
test file

Simple, 1 table, form and report

-- 
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 117435] New: Firebird: Migration: Forms and Reports with image controls and images stored in database no longer display graphics after migration

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117435

Bug ID: 117435
   Summary: Firebird: Migration: Forms and Reports with image
controls and images stored in database no longer
display graphics after migration
   Product: LibreOffice
   Version: 6.1.0.0.alpha1+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: drewjensen.in...@gmail.com

Description:
Simple db with image field in table fails to work after migration to firebird.

Steps to Reproduce:
1.Download and open attached ODB
2.Open single form in file
3.When asked to start migration answer yes
4.migration routine finishes form opens no data in image controls, close the
form
5 run the single report, no image data



Actual Results:  
image controls do not work for graphics stored in the database with firebird.


Expected Results:
Both the form and report work as expected using the hsql engine and the same
test 6.1 application


Reproducible: Always


User Profile Reset: No



Additional Info:
tested on build:
Version: 6.1.0.0.alpha1+
Build ID: f1579d3d6c5f5f3a651825e035b93bee7a4f43c6
CPU threads: 4; OS: Linux 4.13; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2018-05-03_10:04:51
Locale: en-US (en_US.UTF-8); Calc: group


User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like
Gecko) Ubuntu Chromium/65.0.3325.181 Chrome/65.0.3325.181 Safari/537.36

-- 
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 117434] New: Add to Dictionary Only Affects Current Cell Instead of Whole Document

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117434

Bug ID: 117434
   Summary: Add to Dictionary Only Affects Current Cell Instead of
Whole Document
   Product: LibreOffice
   Version: 6.0.3.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: aquis...@gmail.com

If a word is added to the dictionary, Calc only removes the wavy red underline
for the instance of the word in the cell in which the word was right-clicked
for the context menu.  It does not propagate the change to other instances of
that word in the rest of the document.  Saving the document and re-opening it
does make it propagate to the whole document.

-- 
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 117433] New: count.if doesen't work

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117433

Bug ID: 117433
   Summary: count.if doesen't work
   Product: LibreOffice
   Version: 6.0.3.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: excel...@b2bx.net

Description:
tested count.if(A1:B3;"") and count.if(A1:B3;"<>S") with blank cells but return
3 instead of 6.

Steps to Reproduce:
1.Write the formula in description
2.
3.

Actual Results:  
In a range of 6 cells it count only 3 instead of 6.

Expected Results:
It shoud count them all.


Reproducible: Always


User Profile Reset: No



Additional Info:
Versione: 6.0.3.2 (x64)
Build ID: 8f48d515416608e3a835360314dac7e47fd0b821
Thread CPU: 8; SO: Windows 10.0; Resa interfaccia: GL; 
Versione locale: it-IT (it_IT); Calc: CL


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36

-- 
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 76456] FILEOPEN custom shape itself and text in custom shape have wrong rotation

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76456

Aron Budea  changed:

   What|Removed |Added

 Blocks||104442


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104442
[Bug 104442] [META] OOXML shape (DrawingML and VML) related issues
-- 
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 104442] [META] OOXML shape (DrawingML and VML) related issues

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104442

Aron Budea  changed:

   What|Removed |Added

 Depends on||76456


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=76456
[Bug 76456] FILEOPEN custom shape itself and text in custom shape have wrong
rotation
-- 
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 104430] FILEOPEN: DOC: shape with text rotated 270° is imported with rotation angle 180°

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104430

Aron Budea  changed:

   What|Removed |Added

 Blocks||112793


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112793
[Bug 112793] [META] DOC (binary) shape-related issues
-- 
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 112793] [META] DOC (binary) shape-related issues

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112793

Aron Budea  changed:

   What|Removed |Added

 Depends on||104430


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104430
[Bug 104430] FILEOPEN: DOC: shape with text rotated 270° is imported with
rotation angle 180°
-- 
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 70838] FILESAVE: doc: wrong size and position exporting rotated shapes

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70838

--- Comment #24 from Aron Budea  ---
Created attachment 141898
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141898=edit
Side-by-side comparison (ellipses)

-- 
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 70838] FILESAVE: doc: wrong size and position exporting rotated shapes

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70838

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #23 from Aron Budea  ---
Created attachment 141897
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141897=edit
Sample ODT with rotated ellipses

Here's another sample ODT with 5 ellipses having different rotations: 0, 60,
120, 210 and 315 degrees.
When saved as DOC and reloaded, 3 of those appear changed.

Observed using LO 6.1 alpha1 & 5.4.0.3 / Windows 7.
In LO 5.3.0.3 and before, the ellipses look worse, almost like circles after
reloading.

The following commit improved the shape of ellipses:

https://cgit.freedesktop.org/libreoffice/core/commit/?id=d72e0cadceb0b43928a9b4f18d75c9d5d30afdda
author  Szymon Kłos  2017-06-19 15:32:16
+0200
committer   Andras Timar    2017-06-28
22:38:49 +0200

Watermark: tdf#91687 correct size in the .doc

-- 
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


Re: How to make a locale available for CTL text

2018-05-04 Thread Khaled Hosny
On Fri, May 04, 2018 at 11:33:49AM +0200, Eike Rathke wrote:
> Hi Khaled,
> 
> On Sunday, 2018-04-29 11:00:19 +0200, Khaled Hosny wrote:
> 
> > > Does it have to be [ms] and [ms-Arab] or could it be {[ms] or [zsm] or
> > > [zlm]} and {[zsm-Arab] or [zlm-Arab] (or maybe [ms-Arab])}?
> > 
> > I don’t really know. HarfBuzz expects a BCP 47 language tag, and I use
> > LanguageTag::getBcp47() to get that, so as long as it gives me “ms” all
> > good (the script part is redundant for me, because that is detected from
> > the text string and passed independently to HarfBuzz).
> 
> That should do then:
> https://cgit.freedesktop.org/libreoffice/core/commit/?id=10a047ae8a6e5c47edc1ca11ed573f340b249f61

Works like a charm, thanks!

Regards,
Khaled
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 117280] Duplicate Macro execution when triggered by Document print event.

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117280

--- Comment #7 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I confirm I got 3 times
the message.
I didn't try with reverting locally my commit because since the file changed is
in "include/sfx2", it takes some time to just build.
Again, feel free to revert the patch if you want.

-- 
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 117413] double display slightly offset when editing a cell

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117413

--- Comment #7 from Jean-Baptiste Faure  ---
(In reply to Caolán McNamara from comment #3)
> if you can reproduce it (which I can't, as is typical) can you see if
> https://gerrit.libreoffice.org/#/c/53860/ makes a difference, and what "type
> is" value gets output ?

That makes a difference: no problem anymore. It still works as expected if gtk2
backend is used instead of gtk3 
type is 3 if gtk3, no output if gtk2.

Best regards. JBF

-- 
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 117426] CRASH: Print Preview crashes on signed document without infobar

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117426

Julien Nabet  changed:

   What|Removed |Added

   Keywords||haveBacktrace

-- 
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 117426] CRASH: Print Preview crashes on signed document without infobar

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117426

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet  ---
Created attachment 141896
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141896=edit
bt with debug symbols

On pc Debian x86-64 with master sources updated today, I could reproduce this.

I attached bt with symbols + console logs + part of gdb session.

-- 
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 117429] When Saving database, Libre stops responding

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117429

--- Comment #1 from Drew Jensen  ---
I was just confirming the previous bug using 5.4.6.2 on Ubuntu 17.10 and had a
similar (identical) problem. Created the test file and table, entered some data
and created a query. When I went to save the file it became none responsive and
had I had to kill the process.

When I restarted it went into recovery mode on the file. Upon opening the file
the table and data were intact, but the query I had saved from the designer (so
before the actual file save) was gone.

Trying to recreate it however was fruitless and everything worked as expected. 

This would be the second or maybe third time this has happened with 5.4.6.2
during the last 2 weeks in which time have created minimum 30 test files.

-- 
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 117430] Base Query Criterion

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117430

Drew Jensen  changed:

   What|Removed |Added

 CC||drewjensen.in...@gmail.com

--- Comment #1 from Drew Jensen  ---
Created attachment 141895
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141895=edit
inclusive date range select statement (hsql)

Not setup here to test this on Windows, or the exact 5.4.x version. However,
did check it using 64bit Linux w/ 5.4.6.2 and the query works as expected.

-- 
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


Re: Crash test update

2018-05-04 Thread Caolán McNamara
On Fri, 2018-05-04 at 17:42 +, Crashtest VM wrote:
> New crashtest update available at http://dev-builds.libreoffice.org/c
> rashtest/30a5e1f9b9d7cbfdb8f689372d4ce635e287f760/

This was a special run with 4696d3728f0aba1087001bc543fc0867dd0ebdda
reverted, I'll do a normal run with master now
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 117413] double display slightly offset when editing a cell

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117413

--- Comment #6 from Caolán McNamara  ---
ok, thats encouraging. So here's my proposed final patch
https://gerrit.libreoffice.org/#/c/53860/ I assume that still works ?

-- 
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 49710] UI: Navigation toolbar keeps appearing

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49710

--- Comment #19 from Cor Nouws  ---
(In reply to Christian Lehmann from comment #18)
> Sorry for the repetition. How can one delete one's own comment?

Not, but depending on rights, one can tag it. I tagged the second as obsolete.
Thanks for asking & no problem!

-- 
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 104118] [META] Color palette bugs and enhancements

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104118
Bug 104118 depends on bug 117406, which changed state.

Bug 117406 Summary: UI color palette and Recent Colors in (Table properties) 
not accessible via key board, dropped TAB focus
https://bugs.documentfoundation.org/show_bug.cgi?id=117406

   What|Removed |Added

 Status|ASSIGNED|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 117406] UI color palette and Recent Colors in (Table properties) not accessible via key board, dropped TAB focus

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117406

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.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 117406] UI color palette and Recent Colors in (Table properties) not accessible via key board, dropped TAB focus

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117406

Caolán McNamara  changed:

   What|Removed |Added

 Status|ASSIGNED|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-commits] core.git: cui/uiconfig

2018-05-04 Thread Caolán McNamara
 cui/uiconfig/ui/colorpage.ui |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 6bbaed858821bc32bd1fec6915f72bfc093b0a16
Author: Caolán McNamara 
Date:   Fri May 4 16:25:22 2018 +0100

Resolves: tdf#117406 cannot tab into colorsets, cause can_focus was False

which is a problem since

commit 3014e5f362c77c546452d45fcde96fcbae27235e
Author: Caolán McNamara 
Date:   Sun Apr 29 21:15:22 2018 +0100

hook up can-focus to ability to tab into the widget

Change-Id: I93465b82b9c525d108eecc9a4ef9a3dd03b5ddda
Reviewed-on: https://gerrit.libreoffice.org/53855
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/cui/uiconfig/ui/colorpage.ui b/cui/uiconfig/ui/colorpage.ui
index ba1b1b836150..915092fe3c89 100644
--- a/cui/uiconfig/ui/colorpage.ui
+++ b/cui/uiconfig/ui/colorpage.ui
@@ -111,7 +111,7 @@
 
   
 True
-False
+True
 True
 True
   
@@ -231,7 +231,7 @@
 
   
 True
-False
+True
 True
 True
   
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117406] UI color palette and Recent Colors in (Table properties) not accessible via key board, dropped TAB focus

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117406

--- Comment #4 from Commit Notification 
 ---
Caolán McNamara committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=6bbaed858821bc32bd1fec6915f72bfc093b0a16

Resolves: tdf#117406 cannot tab into colorsets, cause can_focus was False

It will be available in 6.1.0.

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

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

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


[Libreoffice-commits] core.git: include/sfx2 include/vcl sfx2/source starmath/source sw/inc sw/source sw/uiconfig vcl/source vcl/unx

2018-05-04 Thread Caolán McNamara
 include/sfx2/tabdlg.hxx|4 
 include/vcl/weld.hxx   |6 
 sfx2/source/dialog/tabdlg.cxx  |5 
 starmath/source/dialog.cxx |4 
 sw/inc/swabstdlg.hxx   |2 
 sw/source/ui/dialog/swdlgfact.cxx  |5 
 sw/source/ui/dialog/swdlgfact.hxx  |2 
 sw/source/ui/misc/num.cxx  |8 
 sw/source/ui/misc/outline.cxx  |   94 +++-
 sw/source/uibase/inc/num.hxx   |4 
 sw/source/uibase/inc/outline.hxx   |   20 -
 sw/source/uibase/uiview/view0.cxx  |2 
 sw/uiconfig/swriter/ui/outlinenumbering.ui |  268 +++--
 sw/uiconfig/swriter/ui/outlinenumberingpage.ui |5 
 sw/uiconfig/swriter/ui/outlinepositionpage.ui  |   20 +
 vcl/source/app/salvtables.cxx  |   20 +
 vcl/source/window/builder.cxx  |2 
 vcl/unx/gtk3/gtk3gtkinst.cxx   |  174 +---
 18 files changed, 379 insertions(+), 266 deletions(-)

New commits:
commit 0920b04bca3d58d89b026bcf999ea43d0e855715
Author: Caolán McNamara 
Date:   Fri May 4 14:53:11 2018 +0100

weld SwOutlineTabDialog

Change-Id: I55c0e9a62dd9dd970a87ef295bb5fbb82c80d2d8
Reviewed-on: https://gerrit.libreoffice.org/53848
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/include/sfx2/tabdlg.hxx b/include/sfx2/tabdlg.hxx
index 2d9b449112d5..cf7ecc4022bb 100644
--- a/include/sfx2/tabdlg.hxx
+++ b/include/sfx2/tabdlg.hxx
@@ -279,6 +279,8 @@ public:
 voidRemoveTabPage( const OString& rName ); // Name of the 
label for the page in the notebook .ui
 
 voidSetCurPageId(const OString& rName);
+OString GetCurPageId() const;
+SfxTabPage* GetCurTabPage() const { return 
GetTabPage(GetCurPageId()); }
 
 // may provide local slots converted by Map
 const sal_uInt16*   GetInputRanges( const SfxItemPool& );
@@ -287,6 +289,8 @@ public:
 
 const weld::Button& GetOKButton() const { return *m_xOKBtn; }
 weld::Button&   GetOKButton() { return *m_xOKBtn; }
+const weld::Button& GetCancelButton() const { return *m_xCancelBtn; }
+weld::Button&   GetCancelButton() { return *m_xCancelBtn; }
 
 const weld::Button* GetUserButton() const { return m_xUserBtn.get(); }
 weld::Button*   GetUserButton() { return m_xUserBtn.get(); }
diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx
index 6c1078a04457..448a592fb15c 100644
--- a/include/vcl/weld.hxx
+++ b/include/vcl/weld.hxx
@@ -365,8 +365,10 @@ protected:
 
 public:
 void connect_selected(const Link& rLink) { 
m_aSelectHdl = rLink; }
-
-virtual void set_active(const OString& rIdent, bool bActive) = 0;
+virtual void set_item_active(const OString& rIdent, bool bActive) = 0;
+virtual void set_item_label(const OString& rIdent, const OUString& rLabel) 
= 0;
+virtual void set_item_help_id(const OString& rIdent, const OString& 
rHelpId) = 0;
+virtual OString get_item_help_id(const OString& rIdent) const = 0;
 };
 
 class VCL_DLLPUBLIC ToggleButton : virtual public Button
diff --git a/sfx2/source/dialog/tabdlg.cxx b/sfx2/source/dialog/tabdlg.cxx
index 8c4e04983358..160af8d6af54 100644
--- a/sfx2/source/dialog/tabdlg.cxx
+++ b/sfx2/source/dialog/tabdlg.cxx
@@ -2015,6 +2015,11 @@ void SfxTabDialogController::SetCurPageId(const OString& 
rIdent)
 m_xTabCtrl->set_current_page(rIdent);
 }
 
+OString SfxTabDialogController::GetCurPageId() const
+{
+return m_xTabCtrl->get_current_page_ident();
+}
+
 short SfxTabDialogController::execute()
 {
 Start_Impl();
diff --git a/starmath/source/dialog.cxx b/starmath/source/dialog.cxx
index 7713cd475b05..6843cebfaea8 100644
--- a/starmath/source/dialog.cxx
+++ b/starmath/source/dialog.cxx
@@ -725,7 +725,7 @@ void SmDistanceDialog::SetCategory(sal_uInt16 nCategory)
 if (nActiveCategory == 5)
 bScaleAllBrackets = m_xCheckBox1->get_active();
 
-m_xMenuButton->set_active("menuitem" + OString::number(nActiveCategory 
+ 1), false);
+m_xMenuButton->set_item_active("menuitem" + 
OString::number(nActiveCategory + 1), false);
 }
 
 // activation/deactivation of the associated controls depending on the 
chosen category
@@ -784,7 +784,7 @@ void SmDistanceDialog::SetCategory(sal_uInt16 nCategory)
 m_xMetricField4->set_sensitive( bChecked );
 }
 
-m_xMenuButton->set_active("menuitem" + OString::number(nCategory + 1), 
true);
+m_xMenuButton->set_item_active("menuitem" + OString::number(nCategory + 
1), true);
 m_xFrame->set_label(Categories[nCategory]->GetName());
 
 nActiveCategory = nCategory;
diff --git a/sw/inc/swabstdlg.hxx b/sw/inc/swabstdlg.hxx
index 3ed9b295a0b3..67aecd817661 100644
--- a/sw/inc/swabstdlg.hxx
+++ 

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

2018-05-04 Thread Caolán McNamara
 include/vcl/weld.hxx  |5 
 sw/source/ui/misc/num.cxx |  453 ++
 sw/source/uibase/inc/num.hxx  |   92 ++---
 sw/uiconfig/swriter/ui/outlinepositionpage.ui |  128 +++
 vcl/source/app/salvtables.cxx |   12 
 vcl/unx/gtk3/gtk3gtkinst.cxx  |   17 
 6 files changed, 336 insertions(+), 371 deletions(-)

New commits:
commit 2cab4acbe2aaaee6e5b9afeb68f3e555ecff2ec7
Author: Caolán McNamara 
Date:   Fri May 4 12:24:24 2018 +0100

weld SwNumPositionTabPage

Change-Id: I12171eb00d5b8354456b629d58d20b22109e24f8
Reviewed-on: https://gerrit.libreoffice.org/53845
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx
index 9e58e585a533..6c1078a04457 100644
--- a/include/vcl/weld.hxx
+++ b/include/vcl/weld.hxx
@@ -309,6 +309,7 @@ public:
 //by index
 virtual int get_selected_index() const = 0;
 virtual void select(int pos) = 0;
+virtual void unselect(int pos) = 0;
 virtual void remove(int pos) = 0;
 virtual void set_top_entry(int pos) = 0;
 virtual std::vector get_selected_rows() const = 0;
@@ -334,6 +335,10 @@ public:
 virtual int find_id(const OUString& rId) const = 0;
 OUString get_selected_id() const { return get_id(get_selected_index()); }
 void select_id(const OUString& rId) { select(find_id(rId)); }
+
+//all of them
+void select_all() { unselect(-1); }
+void unselect_all() { select(-1); }
 };
 
 class VCL_DLLPUBLIC Button : virtual public Container
diff --git a/sw/source/ui/misc/num.cxx b/sw/source/ui/misc/num.cxx
index 2f7bb7c41fcf..28b4ba9ca185 100644
--- a/sw/source/ui/misc/num.cxx
+++ b/sw/source/ui/misc/num.cxx
@@ -54,10 +54,8 @@ static bool bLastRelative = false;
 //dialog to this one, except with a different preview window impl.
 //TODO, determine if SwNumPositionTabPage and SvxNumPositionTabPage can be
 //merged
-SwNumPositionTabPage::SwNumPositionTabPage(vcl::Window* pParent,
-   const SfxItemSet& rSet)
-: SfxTabPage(pParent, "OutlinePositionPage",
-"modules/swriter/ui/outlinepositionpage.ui", )
+SwNumPositionTabPage::SwNumPositionTabPage(TabPageParent pParent, const 
SfxItemSet& rSet)
+: SfxTabPage(pParent, "modules/swriter/ui/outlinepositionpage.ui", 
"OutlinePositionPage", )
 , pActNum(nullptr)
 , pSaveNum(nullptr)
 , pWrtSh(nullptr)
@@ -67,94 +65,73 @@ SwNumPositionTabPage::SwNumPositionTabPage(vcl::Window* 
pParent,
 , bPreset(false)
 , bInInintControl(false)
 , bLabelAlignmentPosAndSpaceModeActive(false)
+, m_xLevelLB(m_xBuilder->weld_tree_view("levellb"))
+, m_xPositionFrame(m_xBuilder->weld_widget("numberingframe"))
+, m_xDistBorderFT(m_xBuilder->weld_label("indent"))
+, m_xDistBorderMF(m_xBuilder->weld_metric_spin_button("indentmf", 
FUNIT_CM))
+, m_xRelativeCB(m_xBuilder->weld_check_button("relative"))
+, m_xIndentFT(m_xBuilder->weld_label("numberingwidth"))
+, m_xIndentMF(m_xBuilder->weld_metric_spin_button("numberingwidthmf", 
FUNIT_CM))
+, m_xDistNumFT(m_xBuilder->weld_label("numdist"))
+, m_xDistNumMF(m_xBuilder->weld_metric_spin_button("numdistmf", FUNIT_CM))
+, m_xAlignFT(m_xBuilder->weld_label("numalign"))
+, m_xAlignLB(m_xBuilder->weld_combo_box_text("numalignlb"))
+, m_xLabelFollowedByFT(m_xBuilder->weld_label("numfollowedby"))
+, m_xLabelFollowedByLB(m_xBuilder->weld_combo_box_text("numfollowedbylb"))
+, m_xListtabFT(m_xBuilder->weld_label("at"))
+, m_xListtabMF(m_xBuilder->weld_metric_spin_button("atmf", FUNIT_CM))
+, m_xAlign2FT(m_xBuilder->weld_label("num2align"))
+, m_xAlign2LB(m_xBuilder->weld_combo_box_text("num2alignlb"))
+, m_xAlignedAtFT(m_xBuilder->weld_label("alignedat"))
+, m_xAlignedAtMF(m_xBuilder->weld_metric_spin_button("alignedatmf", 
FUNIT_CM))
+, m_xIndentAtFT(m_xBuilder->weld_label("indentat"))
+, m_xIndentAtMF(m_xBuilder->weld_metric_spin_button("indentatmf", 
FUNIT_CM))
+, m_xStandardPB(m_xBuilder->weld_button("standard"))
+, m_xPreviewWIN(new 
SwNumberingPreview(m_xBuilder->weld_drawing_area("preview")))
 {
-get(m_pLevelLB, "levellb");
-m_pLevelLB->EnableMultiSelection(true);
-get(m_pPositionFrame, "numberingframe");
-get(m_pDistBorderFT, "indent");
-get(m_pDistBorderMF, "indentmf");
-get(m_pRelativeCB, "relative");
-get(m_pIndentFT, "numberingwidth");
-get(m_pIndentMF, "numberingwidthmf");
-get(m_pDistNumFT, "numdist");
-get(m_pDistNumMF, "numdistmf");
-get(m_pAlignFT, "numalign");
-get(m_pAlignLB, "numalignlb");
-
-get(m_pLabelFollowedByFT, "numfollowedby");
-get(m_pLabelFollowedByLB, "numfollowedbylb");
-get(m_pListtabFT, "at");
-get(m_pListtabMF, "atmf");
-get(m_pAlign2FT, 

[Libreoffice-bugs] [Bug 112587] Slideshow Animation Timings Ignored on Slower PC

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112587

--- Comment #10 from Luke  ---
Sorry I linked to the wrong demo above. Here is the correct link. You can play
this demo live on the web or play in in Powerpoint to see how the animations
should look.

https://onedrive.live.com/view.aspx?cid=9fbe63963526eb25=view=9FBE63963526EB25!718=9FBE63963526EB25!103=!AN5Q_kKPvn2eWUQ=PowerPoint


There are other issues with how we display this presentation, but this bug
report is how we handle our timing. When the Slide transition are enabled on
slow machines something delays the animations from starting. We they do start
rather than play in order, they all play at once. 

Once a developer takes a look at this, they may ask that we break this into 2
issues, the poor performance and the bug causing the timings to not be
respected.

-- 
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: include/tools tools/inc tools/Library_tl.mk tools/source

2018-05-04 Thread Takeshi Abe
 include/tools/datetime.hxx   |2 
 tools/Library_tl.mk  |1 
 tools/inc/systemdatetime.hxx |   26 +++
 tools/source/datetime/datetime.cxx   |   17 
 tools/source/datetime/systemdatetime.cxx |  109 +++
 tools/source/datetime/tdate.cxx  |   35 -
 tools/source/datetime/ttime.cxx  |   85 +---
 7 files changed, 175 insertions(+), 100 deletions(-)

New commits:
commit 5103c6a405e93bb05018ab7c89e7e9446c740aaa
Author: Takeshi Abe 
Date:   Sun Apr 29 05:20:47 2018 +0900

tools: Avoid looking up system clock twice to get DateTime

DateTime::DateTime(DateTimeInitSystem) had initialized Date and
Time separately, which causes a slight possibility that it could
get a wrong datetime with almost 24 hours delay when it went beyond
midnight. E.g., the date part was of the previous day while the
time part was 00:00:00.xxx of the next day.

This also reduces duplicate code by sharing GetSystemDateTime().

Change-Id: I352d90f468f5cbc70e7936a337bed97365baa06c
Reviewed-on: https://gerrit.libreoffice.org/53612
Tested-by: Jenkins 
Reviewed-by: Eike Rathke 

diff --git a/include/tools/datetime.hxx b/include/tools/datetime.hxx
index 02729e6a0e1a..7b78b29bdfc5 100644
--- a/include/tools/datetime.hxx
+++ b/include/tools/datetime.hxx
@@ -40,7 +40,7 @@ public:
 };
 
 explicit DateTime( DateTimeInitEmpty ) : Date( Date::EMPTY 
), Time( Time::EMPTY ) {}
-explicit DateTime( DateTimeInitSystem ) : Date( 
Date::SYSTEM ), Time( Time::SYSTEM ) {}
+explicit DateTime( DateTimeInitSystem );
 DateTime( const DateTime& rDateTime ) :
 Date( rDateTime ), Time( rDateTime ) {}
 DateTime( const Date& rDate ) : Date( rDate ), Time(0) {}
diff --git a/tools/Library_tl.mk b/tools/Library_tl.mk
index 2aee438fb2e9..c524a38084aa 100644
--- a/tools/Library_tl.mk
+++ b/tools/Library_tl.mk
@@ -44,6 +44,7 @@ $(eval $(call gb_Library_use_libraries,tl,\
 $(eval $(call gb_Library_add_exception_objects,tl,\
 tools/source/datetime/datetime \
 tools/source/datetime/datetimeutils \
+tools/source/datetime/systemdatetime \
 tools/source/datetime/tdate \
 tools/source/datetime/ttime \
 tools/source/debug/debug \
diff --git a/tools/inc/systemdatetime.hxx b/tools/inc/systemdatetime.hxx
new file mode 100644
index ..cc74eae61340
--- /dev/null
+++ b/tools/inc/systemdatetime.hxx
@@ -0,0 +1,26 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; 
fill-column: 100 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+#ifndef INCLUDED_TOOLS_INC_SYSTEMDATETIME_H
+#define INCLUDED_TOOLS_INC_SYSTEMDATETIME_H
+
+#include 
+
+constexpr sal_Int64 SEC_MASK = SAL_CONST_INT64(10);
+constexpr sal_Int64 MIN_MASK = SAL_CONST_INT64(1000);
+constexpr sal_Int64 HOUR_MASK = SAL_CONST_INT64(10);
+
+/** Get current local timestamp.
+Both pDate and pTime can be null.
+Returns true if succeeded, false otherwse.
+ */
+bool GetSystemDateTime(sal_Int32* pDate, sal_Int64* pTime);
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s 
cinkeys+=0=break: */
diff --git a/tools/source/datetime/datetime.cxx 
b/tools/source/datetime/datetime.cxx
index e3faf45fa495..1dc2b79cb990 100644
--- a/tools/source/datetime/datetime.cxx
+++ b/tools/source/datetime/datetime.cxx
@@ -19,6 +19,23 @@
 #include 
 #include 
 
+#include 
+
+DateTime::DateTime(DateTimeInitSystem)
+: Date( Date::EMPTY )
+, Time( Time::EMPTY )
+{
+sal_Int32 nD = 0;
+sal_Int64 nT = 0;
+if ( GetSystemDateTime( ,  ) )
+{
+Date::operator=( Date( nD ) );
+SetTime( nT );
+}
+else
+Date::operator=( Date( 1, 1, 1900 ) ); // Time::nTime is already 0
+}
+
 DateTime::DateTime( const css::util::DateTime& rDateTime )
   : Date( rDateTime.Day, rDateTime.Month, rDateTime.Year ),
 Time( rDateTime.Hours, rDateTime.Minutes, rDateTime.Seconds, 
rDateTime.NanoSeconds )
diff --git a/tools/source/datetime/systemdatetime.cxx 
b/tools/source/datetime/systemdatetime.cxx
new file mode 100644
index ..40e4edfd05c3
--- /dev/null
+++ b/tools/source/datetime/systemdatetime.cxx
@@ -0,0 +1,109 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; 
fill-column: 100 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * 

[Libreoffice-bugs] [Bug 117432] New: Blank icon bar

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117432

Bug ID: 117432
   Summary: Blank icon bar
   Product: LibreOffice
   Version: 6.1.0.0.alpha0+
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: patrickreas...@gmail.com

Created attachment 141894
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141894=edit
See blank icon bar.

The new build 6.03 has blank tiles where the icons belong. Each action requires
hovering over each space to see what its function should be.

-- 
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 96952] FILEOPEN: Doesn't open XLS spreadsheets forms, BASIC error

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96952

Buovjaga  changed:

   What|Removed |Added

 CC||mdgalloway...@yahoo.com
Crash report or|c6d68979-7e1f-44ed-9f54-023 |
crash signature|53c873964   |

--- Comment #14 from Buovjaga  ---
(In reply to mdgalloway425 from comment #13)
> I closed spreadsheet & tried to open it quickly after closing.  Now no
> component of LibreOffice will open at all.  Running Windows7 PRO, 64bit, and
> LibreOffice 5.2.

Please open a new bug report for this.

But first: install version 6.0. If the problem continues in 6.0, try launching
it in Safe mode
https://wiki.documentfoundation.org/UserProfile#Resolving_corruption

-- 
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 96952] FILEOPEN: Doesn't open XLS spreadsheets forms, BASIC error

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96952

mdgalloway...@yahoo.com changed:

   What|Removed |Added

Crash report or||c6d68979-7e1f-44ed-9f54-023
crash signature||53c873964

--- Comment #13 from mdgalloway...@yahoo.com ---
I closed spreadsheet & tried to open it quickly after closing.  Now no
component of LibreOffice will open at all.  Running Windows7 PRO, 64bit, and
LibreOffice 5.2.

-- 
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 117431] New: Make default Search/Find to be "Search in all sheets"

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117431

Bug ID: 117431
   Summary: Make default Search/Find to be "Search in all sheets"
   Product: LibreOffice
   Version: 3.3.0 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ted...@yahoo.com

Description:
When I launch "Find & Replace" it has "Search in all sheets" UNselected.

Please make a way that I can set the default to have "Search in all sheets"
Selected when it launches.

Actual Results:  
When I launch "Find & Replace" it has "Search in all sheets" UNselected.

Expected Results:
When I launch "Find & Replace" it has "Search in all sheets" UNselected, as
expected, since that's all I've ever seen it do, and I don't know how to fix
it.


Reproducible: Always


User Profile Reset: No



Additional Info:
Please make a way that I can set the default to have "Search in all sheets"
Selected when it launches.

I entered a version because I had to, but it doesn't actually offer a choice
that applies to me, because I'm working on NeoOffice 2015.12


User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:59.0)
Gecko/20100101 Firefox/59.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 117430] New: Base Query Criterion

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117430

Bug ID: 117430
   Summary: Base Query Criterion
   Product: LibreOffice
   Version: 5.4.4.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: welt.integritysoluti...@gmail.com

Description:
When creating a Query for a monthly list of dated postings, the recommended
criterion are not working as described.

Steps to Reproduce:
1.Established "Start Date/Time" and "End Date/Time" fields
2.Added data from 2/6/2018 through and including 2/28/2018.
3.Added Query Criterion of ">=2/1/2018" and "<=2/28/2018", respectively.

Actual Results:  
Included transactions from 2/6/2018, as expected, but ended with 2/27/2018, not
2/28/2018 as expected.

Expected Results:
I expect transactions from 2/6/2018 through and including 2/28/2018.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
It appears the criterion operator "<=" does not include the "=" when using the
"greater than or equal to" selection.


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299

-- 
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 112587] Slideshow Animation Timings Ignored on Slower PC

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112587

--- Comment #9 from Buovjaga  ---
(In reply to Luke from comment #8)
> This **IS** a performance issue as I can repro it on three i3 and slower
> PCs, while I cannot reproduce it on my i7 desktop. However, if you use the
> original file that's not stripped down:
> 
> https://skydrive.live.com/view.aspx?resid=9FBE63963526EB25!
> 411=PowerPoint=2=!AN5Q_kKPvn2eWUQ
> 
> Even that is animated incorrectly on my i7. I suggest you 3 with beefy
> machines try out that file instead.

I seem to remember there being a report for that presentation already. It does
have glitchy animations, but not like in your original description/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 117428] add an option to PDF export dialog to do ActualText per word

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117428

Shree Devi Kumar  changed:

   What|Removed |Added

 CC||khaledho...@eglug.org
   Assignee|libreoffice-b...@lists.free |khaledho...@eglug.org
   |desktop.org |

-- 
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 117064] Crash on pasting copy from Draw in Calc

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117064

Telesto  changed:

   What|Removed |Added

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

-- 
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 108440] [META] Database form bugs and enhancements

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108440
Bug 108440 depends on bug 114596, which changed state.

Bug 114596 Summary: External forms for a database doesn't save data - closing 
form with dataloss
https://bugs.documentfoundation.org/show_bug.cgi?id=114596

   What|Removed |Added

 Status|RESOLVED|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 117413] double display slightly offset when editing a cell

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117413

--- Comment #5 from Buovjaga  ---
(In reply to Buovjaga from comment #4)
> (In reply to Caolán McNamara from comment #3)
> > if you can reproduce it (which I can't, as is typical) can you see if
> > https://gerrit.libreoffice.org/#/c/53860/ makes a difference, and what "type
> > is" value gets output ?
> 
> It does make a positive difference - I am not seeing the mess anymore! I
> also tested the other VCL backends to be sure they stayed healthy.

Ah, sorry, the output is:
type is 3

-- 
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 117413] double display slightly offset when editing a cell

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117413

--- Comment #4 from Buovjaga  ---
(In reply to Caolán McNamara from comment #3)
> if you can reproduce it (which I can't, as is typical) can you see if
> https://gerrit.libreoffice.org/#/c/53860/ makes a difference, and what "type
> is" value gets output ?

It does make a positive difference - I am not seeing the mess anymore! I also
tested the other VCL backends to be sure they stayed healthy.

-- 
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 117187] DOCX import -> ODF export moves paragraph

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117187

--- Comment #10 from Xisco Faulí  ---
Created attachment 141893
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141893=edit
comparison MSO 2010 and LibreOffice 6.1

-- 
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 117187] DOCX import -> ODF export moves paragraph

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117187

--- Comment #9 from Xisco Faulí  ---
Created attachment 141892
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141892=edit
another affected document

The behaviour is reproduced with the following file, where the second heading
is in the middle because of the image while it should be aligned to the left.

-- 
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 116940] FILEOPEN: Incorrect position of shapes

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116940

--- Comment #3 from Xisco Faulí  ---
Same problem with attachment 109377 from bug 76948. The arrows in page 5 are
not displayed...

-- 
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


Crash test update

2018-05-04 Thread Crashtest VM
New crashtest update available at 
http://dev-builds.libreoffice.org/crashtest/30a5e1f9b9d7cbfdb8f689372d4ce635e287f760/


exportCrashes.csv
Description: Binary data


importCrash.csv
Description: Binary data


validationErrors.csv
Description: Binary data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 113866] The option to print text in black, secretly also affects PDF export

2018-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113866

Xisco Faulí  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |danielfaleirosi...@gmail.co
   |desktop.org |m

-- 
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] help.git: source/text

2018-05-04 Thread Gabor Kelemen
 source/text/shared/01/0620.xhp |   60 +
 1 file changed, 29 insertions(+), 31 deletions(-)

New commits:
commit a536178daab521449620a80459371fa2bb76b295
Author: Gabor Kelemen 
Date:   Fri May 4 19:13:27 2018 +0200

Fix ahelps and bookmarks on Hangul/Hanja conversion page

Also drop a useless paragraph about the Close button

Change-Id: I86cec352443ac5761965974a306973139c7aa4da
Reviewed-on: https://gerrit.libreoffice.org/53861
Tested-by: Jenkins 
Reviewed-by: Gabor Kelemen 
Tested-by: Gabor Kelemen 

diff --git a/source/text/shared/01/0620.xhp 
b/source/text/shared/01/0620.xhp
index d8a5538ad..7dbbb04c4 100644
--- a/source/text/shared/01/0620.xhp
+++ b/source/text/shared/01/0620.xhp
@@ -34,78 +34,76 @@
 converting;Hangul/Hanja
 Hangul/Hanja
 
+
 
 Hangul/Hanja 
Conversion
-Converts the selected Korean text from Hangul 
to Hanja or from Hanja to Hangul. The menu command can only be called 
if you enable Asian language support under %PRODUCTNAME - 
PreferencesTools - 
Options - Language Settings - 
Languages, and if a text formatted in Korean language is 
selected.
+Converts the selected Korean text from Hangul to Hanja or from Hanja to 
Hangul. The menu command can only be called if you enable Asian 
language support under %PRODUCTNAME - 
PreferencesTools - 
Options - Language Settings - 
Languages, and if a text formatted in Korean language is 
selected.
 
 
   
 
-
+
 Original
-Displays the current selection.
-
+Displays the current selection.
+
 Word
-Displays the first replacement suggestion from 
the dictionary. You can edit the suggested word or enter another word. 
Click the Find button to replace your original word with the 
corresponding replacement word.
+Displays the first replacement suggestion from the dictionary. 
You can edit the suggested word or enter another word. Click the 
Find button to replace your original word with the corresponding 
replacement word.
 
 Find
-Finds your Hangul input 
in the dictionary and replaces it with the corresponding Hanja. Click 
Ignore to cancel the find function.
+Finds your Hangul input in the dictionary and replaces it with the 
corresponding Hanja. Click Ignore to cancel the find 
function.
 
 
 
 Suggestions
-Displays all 
available replacements in the dictionary. If the Replace by 
character box is enabled, you see a grid of characters. If the 
Replace by character box is not checked, you see a list of 
words.
+Displays all available replacements in the dictionary. If the 
Replace by character box is enabled, you see a grid of characters. 
If the Replace by character box is not checked, you see a list of 
words.
 Format
 Click the 
format to display the replacements.
 
 Hangul/Hanja
-The 
original characters are replaced by the suggested 
characters.
+The original characters are replaced by the suggested 
characters.
 
 Hanja 
(Hangul)
-The 
Hangul part will be displayed in brackets after the Hanja 
part.
+The Hangul part will be displayed in brackets after the Hanja 
part.
 
 Hangul 
(Hanja)
-The 
Hanja part will be displayed in brackets after the Hangul 
part.
+The Hanja part will be displayed in brackets after the Hangul 
part.
 
 Hanja 
as ruby text aboveTo translators: this describes the visible graphical 
control - it is not part of the sources
-The Hanja 
part will be displayed as ruby text above the Hangul part.
-
+The Hanja part will be displayed as ruby text above the Hangul 
part.
+
 Hanja 
as ruby text belowTo translators: this describes the visible graphical 
control - it is not part of the sources
-The Hanja 
part will be displayed as ruby text below the Hangul part.
+The Hanja part will be displayed as ruby text below the Hangul 
part.
 
 Hangul 
as ruby text aboveTo translators: this describes the visible graphical 
control - it is not part of the sources
-The Hangul 
part will be displayed as ruby text above the Hanja part.
+The Hangul part will be displayed as ruby text above the Hanja 
part.
 
 Hangul 
as ruby text belowTo translators: this describes the visible graphical 
control - it is not part of the sources
-The Hangul 
part will be displayed as ruby text below the Hanja part.
+The Hangul part will be displayed as ruby text below the Hanja 
part.
 Conversion
 Normally in a 
mixed text selection made of Hangul and Hanja characters, all Hangul characters 
will be converted to Hanja and all Hanja characters will be converted to 
Hangul. If you want to convert a mixed text selection only in one direction, 
use the following conversion options.
 
 Hangul 
only
-Check to convert 
only Hangul. Do not convert Hanja.
+Check to convert only Hangul. Do not convert Hanja.
 
 Hanja 
only
-Check to convert only 
Hanja. Do not convert Hangul.
-
+Check to convert only Hanja. Do not convert Hangul.
+
 Ignore
-No changes will be made to the current 
selection. The next word 

[Libreoffice-commits] core.git: helpcontent2

2018-05-04 Thread Gabor Kelemen
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7b0ff01d1bf718c5b439b5cddfcdfe051271b28c
Author: Gabor Kelemen 
Date:   Fri May 4 19:13:27 2018 +0200

Updated core
Project: help  a536178daab521449620a80459371fa2bb76b295

Fix ahelps and bookmarks on Hangul/Hanja conversion page

Also drop a useless paragraph about the Close button

Change-Id: I86cec352443ac5761965974a306973139c7aa4da
Reviewed-on: https://gerrit.libreoffice.org/53861
Tested-by: Jenkins 
Reviewed-by: Gabor Kelemen 
Tested-by: Gabor Kelemen 

diff --git a/helpcontent2 b/helpcontent2
index 2c8cfc7de084..a536178daab5 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 2c8cfc7de084dc055f69fcd39f09dbb815e01764
+Subproject commit a536178daab521449620a80459371fa2bb76b295
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


  1   2   3   >