[Libreoffice-bugs] [Bug 86872] Word completion: Add ability to save word completion (aka "auto complete") lists and re-use them

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86872

--- Comment #11 from christ.st...@gmx.de ---
I agree. Please improve word completion!
And please include a function that memorizes hyphens manually put into long
words.

-- 
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 130515] Time field in Base form will not display correct format.

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130515

Noel Grandin  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 130515] Time field in Base form will not display correct format.

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130515

--- Comment #7 from Commit Notification 
 ---
Noel Grandin committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/9cb07cdca78e2cb1ecff84b7a8e154b23cc2a46d

tdf#130515 Time field in Base form will not display correct format

It will be available in 7.0.0.

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

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

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


[Libreoffice-bugs] [Bug 130515] Time field in Base form will not display correct format.

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130515

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.0.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-commits] core.git: include/vcl vcl/source

2020-02-28 Thread Noel Grandin (via logerrit)
 include/vcl/vclenum.hxx   |5 -
 vcl/source/control/field2.cxx |   26 ++
 2 files changed, 30 insertions(+), 1 deletion(-)

New commits:
commit 9cb07cdca78e2cb1ecff84b7a8e154b23cc2a46d
Author: Noel Grandin 
AuthorDate: Thu Feb 27 21:11:12 2020 +0200
Commit: Noel Grandin 
CommitDate: Sat Feb 29 07:27:59 2020 +0100

tdf#130515 Time field in Base form will not display correct format

regression from
commit 65b7b6322b662785bf032e66c76abc36c9a2bb0e
Date:   Wed Feb 8 10:40:28 2017 +0200
loplugin:unusedenumconstants read-only constants in vcl

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

diff --git a/include/vcl/vclenum.hxx b/include/vcl/vclenum.hxx
index 738dca1fc3b0..b5423b46e5de 100644
--- a/include/vcl/vclenum.hxx
+++ b/include/vcl/vclenum.hxx
@@ -147,7 +147,10 @@ enum class TimeFormat
 
 enum class ExtTimeFieldFormat
 {
-Short24H, Long24H
+/** the first 4 of these are only used by base/dbaccess */
+Short24H, Long24H,
+Short12H, Long12H,
+ShortDuration, LongDuration
 };
 
 enum class ExtDateFieldFormat
diff --git a/vcl/source/control/field2.cxx b/vcl/source/control/field2.cxx
index 8b706b513f41..da400911d0ca 100644
--- a/vcl/source/control/field2.cxx
+++ b/vcl/source/control/field2.cxx
@@ -2601,6 +2601,32 @@ void TimeField::SetExtFormat( ExtTimeFieldFormat eFormat 
)
 SetFormat( TimeFieldFormat::F_SEC );
 }
 break;
+case ExtTimeFieldFormat::Short12H:
+{
+SetTimeFormat( TimeFormat::Hour12 );
+SetDuration( false );
+SetFormat( TimeFieldFormat::F_NONE );
+}
+break;
+case ExtTimeFieldFormat::Long12H:
+{
+SetTimeFormat( TimeFormat::Hour12 );
+SetDuration( false );
+SetFormat( TimeFieldFormat::F_SEC );
+}
+break;
+case ExtTimeFieldFormat::ShortDuration:
+{
+SetDuration( true );
+SetFormat( TimeFieldFormat::F_NONE );
+}
+break;
+case ExtTimeFieldFormat::LongDuration:
+{
+SetDuration( true );
+SetFormat( TimeFieldFormat::F_SEC );
+}
+break;
 default:OSL_FAIL( "ExtTimeFieldFormat unknown!" );
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 130990] Desktop Icon is wrong

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130990

Matt  changed:

   What|Removed |Added

 CC||matthewk...@gmail.com

--- Comment #1 from Matt  ---
Created attachment 158269
  --> https://bugs.documentfoundation.org/attachment.cgi?id=158269=edit
blank desktop icon

I've had this issue since 6.4. I'm on the latest stable release and it still
persists. I'm on Windows 10 and it only impacts limited user accounts from what
I can see.  My admin account shows the correct desktop icon (not blank).

-- 
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] dev-tools.git: 2 commits - ciabot/run-libreoffice-ciabot.pl esc-reporting/esc-collect.py

2020-02-28 Thread Guilhem Moulin (via logerrit)
 ciabot/run-libreoffice-ciabot.pl |   24 ++--
 esc-reporting/esc-collect.py |4 ++--
 2 files changed, 16 insertions(+), 12 deletions(-)

New commits:
commit ad46e751df6c18f157cdbfadf506ad801abeee65
Author: Guilhem Moulin 
AuthorDate: Sat Feb 22 00:13:24 2020 +0100
Commit: Guilhem Moulin 
CommitDate: Sat Feb 29 02:29:14 2020 +0100

esc-collect: Try harder to silence `git pull --all --rebase`

For some reason --quiet doesn't affect the checkout phase: progress info
“Checking out files: X% (N/M)” leaks to the error output, which is
treated like if it were a TTY.

This is a regression from 1520268a8c5511ad9c21980f1de5d3d8711fb1fe.

diff --git a/esc-reporting/esc-collect.py b/esc-reporting/esc-collect.py
index d89f1f4..306d2a6 100755
--- a/esc-reporting/esc-collect.py
+++ b/esc-reporting/esc-collect.py
@@ -38,7 +38,7 @@ import datetime
 import json
 import xmltodict
 import requests
-from subprocess import check_call, Popen, PIPE, CalledProcessError
+from subprocess import check_call, Popen, DEVNULL, PIPE, CalledProcessError
 from requests.auth import HTTPDigestAuth
 
 
@@ -668,7 +668,7 @@ def get_git(cfg):
   '"committer": "%cn", "committer-email": "%ce" }'
   basedir = cfg['homedir'] + '../libreoffice/'
   if repo['git'] and cfg['platform'] == 'linux':
-check_call(["git", "-C", basedir + repo['dir'], "pull", "--quiet", 
"--rebase", "--all"])
+check_call(["git", "-C", basedir + repo['dir'], "pull", "--quiet", 
"--all", "--rebase"], stderr=DEVNULL)
   p = Popen([ "git", "-C", basedir + repo['dir'], "log", 
"--pretty=format:" + useFormat ], stdout=PIPE)
   for x in io.TextIOWrapper(p.stdout, encoding="utf-8"):
 # Json fails if there's a backslash somewhere in the git log
commit 106130a15006126a2b8b8a05955600568131840c
Author: Guilhem Moulin 
AuthorDate: Sat Feb 22 05:18:07 2020 +0100
Commit: Guilhem Moulin 
CommitDate: Sat Feb 22 21:53:39 2020 +0100

ciabot: daemon: use strict; and switch taint mode on

diff --git a/ciabot/run-libreoffice-ciabot.pl b/ciabot/run-libreoffice-ciabot.pl
index 4fd1d7a..3c34e37 100755
--- a/ciabot/run-libreoffice-ciabot.pl
+++ b/ciabot/run-libreoffice-ciabot.pl
@@ -1,13 +1,19 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl -T
+
+use strict;
+use warnings;
+
+$ENV{PATH} = join ':', qw{/usr/bin /bin};
 
 use POSIX;
 use File::Basename;
 
 open STDOUT, '>>', "/var/log/ciabot/ciabot.out";
 open STDERR, '>>', "/var/log/ciabot/ciabot.err";
+my $test = 0;
 
 my $suffix = "";
-my $cwd = dirname($0);
+my $cwd = dirname($0) =~ /\A([[:alnum:]\/%\.\+\-_]+)\z/ ? $1 : die;
 my $repodir = "$cwd/../repositories";
 
 if ( ! -d "$repodir/core" && ! -d "$repodir/core.git" ) {
@@ -34,7 +40,7 @@ sub get_branches() {
 if ( open REFS, "git show-ref |" ) {
 while (  ) {
 chomp;
-if ( /^([^ ]*) refs\/remotes\/origin\/(.*)/ ) {
+if ( /^([[:xdigit:]]{40,}) 
refs\/remotes\/origin\/([[:alnum:]\/%\.\+\-_]+)$/ ) {
 if ( $2 ne 'HEAD' ) {
 $branches{$2} = $1;
 }
@@ -110,7 +116,7 @@ sub report($$$) {
 }
 if ( open COMMITS, "git rev-list -n $limit $new_head 
^$old_head | tac |" ) {
 while (  ) {
-chomp;
+$_ = /^([[:xdigit:]]{40,})$/ ? $1 : next; # untaint
 print timestamp() . " Sending report about $_ in 
$key\n";
 if (!$test) {
 if ($repo eq "si-gui")
@@ -153,7 +159,7 @@ sub report($$$) {
 # Report the newest commit which is not in master
 if ( open COMMITS, "git rev-list -n 1 $new_head 
^refs/remotes/origin/master |" ) {
 while (  ) {
-chomp;
+$_ = /^([[:xdigit:]]{40,})$/ ? $1 : next; # untaint
 print timestamp() . " Sending report about $_ in $key 
(newly created branch)\n";
 if (!$test) {
 qx($ciabot $repo $_ $branch_name $ciaproxy);
@@ -173,7 +179,7 @@ sub report($$$) {
 
 print timestamp() . " Checking for changes in the libreoffice repo & sending 
reports to CIA.vc.\n";
 
-@all_repos = (
+my @all_repos = (
 "core",
 "dictionaries",
 "help",
@@ -182,15 +188,13 @@ print timestamp() . " Checking for changes in the 
libreoffice repo & sending rep
 "contrib/dev-tools",
 );
 
-$test = 0;
-
 if ($test) {
 @all_repos = ("test");
 }
 
 
 my %old_ref;
-foreach $repo (@all_repos) {
+foreach my $repo (@all_repos) {
 chdir "$repodir/$repo$suffix";
 # skip any commits received before we started
 qx(git fetch origin);
@@ -199,7 +203,7 @@ foreach $repo (@all_repos) {
 }
 
 while ( 1 ) {
-foreach $repo (@all_repos) {
+foreach my $repo (@all_repos) {
 chdir "$repodir/$repo$suffix";
 
 # update

[Libreoffice-bugs] [Bug 117231] There is no way to suppress Writer inserting blank pages to make page No. 1 a right-hand page when editing a document

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117231

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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


[Libreoffice-bugs] [Bug 130659] UI Bug if I select any extension in Extension Manager

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130659

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 130666] Change default sort order

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130666

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 130650] No apparent way to hide right sidebar

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130650

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 130654] visually impaired children request zoom for part of formula writer

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130654

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-ux-advise] [Bug 117231] There is no way to suppress Writer inserting blank pages to make page No. 1 a right-hand page when editing a document

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117231

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

-- 
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 41725] CONFIGURATION: HKCU defined mail client should be used instead of HKLM defined by "Document as E-mail" toolbar button

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=41725

--- Comment #22 from QA Administrators  ---
Dear Lenge,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 126354] Libreoffice sdraw issues while closing document with changes

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126354

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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


[Libreoffice-bugs] [Bug 126350] En libreoffice Versión: 6.2.5.2 el cuadro de caracteres especiales sale muy grande, no se puede utilizar

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126350

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 127231] Crash in Writer. Format:Page; Page; Margins:.25tab.25tab.25tab.25ENTER

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127231

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

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 117231] There is no way to suppress Writer inserting blank pages to make page No. 1 a right-hand page when editing a document

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117231

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

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


[Libreoffice-bugs] [Bug 126354] Libreoffice sdraw issues while closing document with changes

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126354

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 126650] Find function does not work, although find and replace does

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126650

--- Comment #3 from QA Administrators  ---
Dear Robert Tsue,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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


[Libreoffice-bugs] [Bug 126350] En libreoffice Versión: 6.2.5.2 el cuadro de caracteres especiales sale muy grande, no se puede utilizar

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126350

--- Comment #4 from QA Administrators  ---
Dear Antoni Menés,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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


[Libreoffice-bugs] [Bug 126650] Find function does not work, although find and replace does

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126650

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-ux-advise] [Bug 117231] There is no way to suppress Writer inserting blank pages to make page No. 1 a right-hand page when editing a document

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117231

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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


[Libreoffice-bugs] [Bug 88132] FILESAVE: When exporting to PNG, default units are inconsistent: inches for width/height and pixels/cm for resolution

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88132

--- Comment #7 from QA Administrators  ---
Dear Robinson Tryon (qubit),

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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


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

2020-02-28 Thread Muhammet Kara (via logerrit)
 sw/source/core/crsr/viscrs.cxx |   44 +++--
 1 file changed, 38 insertions(+), 6 deletions(-)

New commits:
commit 150ca03b82393c8c9704885b56c2752b77bbb559
Author: Muhammet Kara 
AuthorDate: Wed Dec 18 02:11:23 2019 +0300
Commit: Muhammet Kara 
CommitDate: Sat Feb 29 02:23:22 2020 +0100

lok: Resolves: Writer - selecting a hyperlink doesn't show link in dialog

Repro: Select text in Online, and Ctrl + K to open Hyperlink dialog,
then assign a hyperlink and close with Ok. Without removing/changing
the selection, re-open the hyperlink dialog again by Ctrl + K. You see
that the hyperlink is not recognized.

Why?
The dialog relies on the hyperlinkUnderCursor property which is
set by the SfxLokHelper::notifyVisCursorInvalidation() method, which
also relies on the current char cursor is on. So when you select a 
hyperlinked
text from left to right (in English), the final position of the cursor is 
outside
the hyperlinked text, thus the hyperlinkUnderCursor property is unset.

Solution
Check for presence of selection and hyperlink via SfxItemPool and
proceed accordingly

Change-Id: I3a7f18c8199cec243ac99f011d9aaee7c7c575b8
Reviewed-on: https://gerrit.libreoffice.org/85348
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Muhammet Kara 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89704
Tested-by: Jenkins

diff --git a/sw/source/core/crsr/viscrs.cxx b/sw/source/core/crsr/viscrs.cxx
index 400b79c869e1..bf764a12db94 100644
--- a/sw/source/core/crsr/viscrs.cxx
+++ b/sw/source/core/crsr/viscrs.cxx
@@ -54,6 +54,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -108,6 +109,23 @@ void SwVisibleCursor::Hide()
 }
 }
 
+namespace
+{
+
+// Build JSON message to be sent to Online
+OString buildHyperlinkJSON(const OUString& sText, const OUString& sLink)
+{
+boost::property_tree::ptree aTree;
+aTree.put("text", sText);
+aTree.put("link", sLink);
+std::stringstream aStream;
+boost::property_tree::write_json(aStream, aTree, false);
+
+return OString(aStream.str().c_str()).trim();
+}
+
+}
+
 void SwVisibleCursor::SetPosAndShow(SfxViewShell const * pViewShell)
 {
 SwRect aRect;
@@ -241,15 +259,29 @@ void SwVisibleCursor::SetPosAndShow(SfxViewShell const * 
pViewShell)
 
 OString sHyperlink;
 SwContentAtPos aContentAtPos(IsAttrAtPos::InetAttr);
+bool bIsSelection = m_pCursorShell->IsSelection();
+
 if 
(const_cast(m_pCursorShell)->GetContentAtPos(aRect.Pos(), 
aContentAtPos))
 {
 const SwFormatINetFormat* pItem = static_cast(aContentAtPos.aFnd.pAttr);
-boost::property_tree::ptree aTree;
-aTree.put("text", aContentAtPos.sStr);
-aTree.put("link", pItem->GetValue());
-std::stringstream aStream;
-boost::property_tree::write_json(aStream, aTree, false);
-sHyperlink = OString(aStream.str().c_str()).trim();
+sHyperlink = buildHyperlinkJSON(aContentAtPos.sStr, 
pItem->GetValue());
+}
+else if (bIsSelection)
+{
+SwWrtShell* pShell = 
m_pCursorShell->GetDoc()->GetDocShell()->GetWrtShell();
+
+if (pShell)
+{
+SfxItemSet aSet(m_pCursorShell->GetSfxViewShell()->GetPool(),
+svl::Items{});
+pShell->GetCurAttr(aSet);
+if(SfxItemState::SET <= aSet.GetItemState( RES_TXTATR_INETFMT 
))
+{
+sHyperlink = 
buildHyperlinkJSON(m_pCursorShell->GetSelText(),
+
aSet.GetItem(RES_TXTATR_INETFMT)->GetValue());
+}
+}
 }
 
 if (pViewShell)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-02-28 Thread Xisco Fauli (via logerrit)
 sw/qa/extras/uiwriter/uiwriter3.cxx |   15 
 sw/qa/uitest/writer_tests6/tdf126340.py |   39 
 2 files changed, 15 insertions(+), 39 deletions(-)

New commits:
commit bf16e836dd7094cb5679042bbd49cb8b49c869d2
Author: Xisco Fauli 
AuthorDate: Fri Feb 28 19:44:38 2020 +0100
Commit: Xisco Faulí 
CommitDate: Sat Feb 29 01:59:17 2020 +0100

tdf#126340: move UItest to CppunitTest

Change-Id: I8737f57de1c5b38d551dd31525a8a40f4f2458c2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89737
Tested-by: Jenkins
Reviewed-by: Xisco Faulí 

diff --git a/sw/qa/uitest/writer_tests/data/tdf126340.odt 
b/sw/qa/extras/uiwriter/data3/tdf126340.odt
similarity index 100%
rename from sw/qa/uitest/writer_tests/data/tdf126340.odt
rename to sw/qa/extras/uiwriter/data3/tdf126340.odt
diff --git a/sw/qa/extras/uiwriter/uiwriter3.cxx 
b/sw/qa/extras/uiwriter/uiwriter3.cxx
index 8e969a42f309..2e1e1e033461 100644
--- a/sw/qa/extras/uiwriter/uiwriter3.cxx
+++ b/sw/qa/extras/uiwriter/uiwriter3.cxx
@@ -63,4 +63,19 @@ CPPUNIT_TEST_FIXTURE(SwUiWriterTest3, testTdf128739)
 // without the fix, it crashes
 dispatchCommand(mxComponent, ".uno:Undo", {});
 }
+
+CPPUNIT_TEST_FIXTURE(SwUiWriterTest3, testTdf126340)
+{
+load(DATA_DIRECTORY, "tdf126340.odt");
+
+SwXTextDocument* pTextDoc = 
dynamic_cast(mxComponent.get());
+CPPUNIT_ASSERT(pTextDoc);
+
+dispatchCommand(mxComponent, ".uno:GoDown", {});
+// without the fix, it crashes
+dispatchCommand(mxComponent, ".uno:Delete", {});
+CPPUNIT_ASSERT_EQUAL(OUString("foo"), getParagraph(1)->getString());
+dispatchCommand(mxComponent, ".uno:Undo", {});
+CPPUNIT_ASSERT_EQUAL(OUString("foo"), getParagraph(1)->getString());
+}
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/qa/uitest/writer_tests6/tdf126340.py 
b/sw/qa/uitest/writer_tests6/tdf126340.py
deleted file mode 100644
index 72ab66de5ba0..
--- a/sw/qa/uitest/writer_tests6/tdf126340.py
+++ /dev/null
@@ -1,39 +0,0 @@
-# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
-#
-# 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/.
-
-from uitest.framework import UITestCase
-from libreoffice.uno.propertyvalue import mkPropertyValues
-from uitest.uihelper.common import get_state_as_dict, type_text
-import time
-from uitest.debug import sleep
-from libreoffice.uno.propertyvalue import mkPropertyValues
-from uitest.uihelper.common import select_pos
-import org.libreoffice.unotest
-import pathlib
-
-def get_url_for_data_file(file_name):
-return 
pathlib.Path(org.libreoffice.unotest.makeCopyFromTDOC(file_name)).as_uri()
-
-#Bug 126340 - Crash when removing entry in bullet list (change tracking 
involved)
-
-class tdf126340(UITestCase):
-   def test_tdf126340_crash_paste(self):
-writer_doc = 
self.ui_test.load_file(get_url_for_data_file("tdf126340.odt"))
-document = self.ui_test.get_component()
-xWriterDoc = self.xUITest.getTopFocusWindow()
-xWriterEdit = xWriterDoc.getChild("writer_edit")
-
-# Put the cursor to the empty bullet list entry
-self.xUITest.executeCommand(".uno:GoDown")
-# Hit delete
-xWriterEdit.executeAction("TYPE", mkPropertyValues({"KEYCODE": 
"DELETE"}))
-#-> Crash
-self.assertEqual(document.Text.String[0:3], "foo")
-self.xUITest.executeCommand(".uno:Undo")
-self.assertEqual(document.Text.String[0:3], "foo")
-
-self.ui_test.close_doc()
-# vim: set shiftwidth=4 softtabstop=4 expandtab:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 131020] New: Set Default Year for data entry with options

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131020

Bug ID: 131020
   Summary: Set Default Year for data entry with options
   Product: LibreOffice
   Version: 3.3.0 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: raymon...@mtaonline.net

Description:
Date Data entry excess work.  Exceed Excel here easily.
One can only enter month/day and autofill this year.

Add option in worksheet a default year, even a default month.

An alternate better but slightly more calculated option, would be to assume
last year used, last month used in the same column. This might come under an
Autofill feature group.  Thereby, by only typing the day of month, in a Date
formatted column would yield a completed Month/Day/Year entry.  

Steps to Reproduce:
Type Month and Day and Calc assumes this year, not the last year entered, even
if entered 100 times.  It makes you type every year that is not this year.  You
can change the computer date, only if you want to break internet pages and
other things like date saved etc.

Actual Results:
You must type full date every field if not this year.

Expected Results:
Would be great if data entry remembered last year entered, last month entered
in column.  That way if you had different date groups in different columns you
could have auto fill in each column. 


Reproducible: Always


User Profile Reset: No



Additional Info:
Would be so cool if enter at the end of a row, could move down one row to the
beginning of the left column to enter next row of data, without coding a form.

-- 
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 130916] Enabling Autotext to work on single characters

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130916

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 108663] [META] AutoText bugs and enhancements

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108663
Bug 108663 depends on bug 130916, which changed state.

Bug 130916 Summary: Enabling Autotext to work on single characters
https://bugs.documentfoundation.org/show_bug.cgi?id=130916

   What|Removed |Added

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

-- 
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 130916] Enabling Autotext to work on single characters

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130916

V Stuart Foote  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 130916] Enabling Autotext to work on single characters

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130916

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #5 from V Stuart Foote  ---
Autocorrection dialog (Tools -> AutoCorrect -> AutoCorrect Options already
provides for a keyboard input --two character or three character--ligature
replacement with a string or Unicode glyph for the ligature--as it is defined.

The AutoCorrect dialog, likewise provides alternatives to Deadkey (bug 71176)
or os/DE provided GUI (bug 42437 for macOS Press & Hold) for Unicode glyph
input.  

While the Windows 10 (build > 1709) Emoji popup dialog functions--and follows
the Paragraph style font assignments for inserted glyph (or as set by font
fallback).

So, agree there is really no need to attempt this with an AutoText... dialog
entry.

IMHO => WF

-- 
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 108663] [META] AutoText bugs and enhancements

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108663
Bug 108663 depends on bug 130916, which changed state.

Bug 130916 Summary: Enabling Autotext to work on single characters
https://bugs.documentfoundation.org/show_bug.cgi?id=130916

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 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-ux-advise] [Bug 130916] Enabling Autotext to work on single characters

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130916

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #5 from V Stuart Foote  ---
Autocorrection dialog (Tools -> AutoCorrect -> AutoCorrect Options already
provides for a keyboard input --two character or three character--ligature
replacement with a string or Unicode glyph for the ligature--as it is defined.

The AutoCorrect dialog, likewise provides alternatives to Deadkey (bug 71176)
or os/DE provided GUI (bug 42437 for macOS Press & Hold) for Unicode glyph
input.  

While the Windows 10 (build > 1709) Emoji popup dialog functions--and follows
the Paragraph style font assignments for inserted glyph (or as set by font
fallback).

So, agree there is really no need to attempt this with an AutoText... dialog
entry.

IMHO => WF

-- 
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 124123] Character spacing problems with Dymo LabelWriter in Best print quality

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124123

jasonkres  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #4 from jasonkres  ---
This bug continues to reproduce in latest.
Tested using the actual printer. Output still looks like shown in the "scan of
printouts" attachment.

Version tested:

Version: 6.4.1.2 (x64)
Build ID: 4d224e95b98b138af42a64d84056446d09082932
CPU threads: 12; OS: Windows 10.0 Build 18363; UI render: GL; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
Calc: CL

-- 
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 130916] Enabling Autotext to work on single characters

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130916

mkass...@internode.net changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #4 from mkass...@internode.net ---
Thank you very much. This 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 108663] [META] AutoText bugs and enhancements

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108663
Bug 108663 depends on bug 130916, which changed state.

Bug 130916 Summary: Enabling Autotext to work on single characters
https://bugs.documentfoundation.org/show_bug.cgi?id=130916

   What|Removed |Added

 Status|UNCONFIRMED |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-ux-advise] [Bug 130916] Enabling Autotext to work on single characters

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130916

mkass...@internode.net changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #4 from mkass...@internode.net ---
Thank you very much. This works.

-- 
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 126904] In LO Calc: Right arrow causes a large unexpected column jump in protected sheet.

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126904

--- Comment #6 from Daniel Baran  ---
Can anyone address the likelihood of this one being fixed?
There does not seem to be any indication of activity.
If anyone has ideas for mitigating it from my end (i.e. a work-around), I would
be grateful for that also.
Thanks,
DB

-- 
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 86021] Importing un-documented ppt / binary feature records as picture

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86021

Oliver Grimm  changed:

   What|Removed |Added

   Keywords||filter:ppt

--- Comment #3 from Oliver Grimm  ---
since this bug is really old: can you please try to reproduce it with a current
version of LO?

-- 
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 114609] pptx incorrect textbox shadow

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114609

--- Comment #5 from Oliver Grimm  ---
Created attachment 158268
  --> https://bugs.documentfoundation.org/attachment.cgi?id=158268=edit
screenshot "with MS Offce 365"

-- 
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 130840] UI Create a better Help/UX for "Tracking Changes" mode; explaining limitations/what works

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130840

--- Comment #8 from stde...@gmail.com ---
(In reply to Cor Nouws from comment #7)
> (In reply to stdedos from comment #6)
> > I am more interested that (a) "not hide options ..." and (b) somehow
> > visually indicate "why" I cannot do a disabled action, e.g. raise an Error
> > Message box sayng "Cannot remove sheet: tracking changes is active!".
> Ah. In my experience options that are not valid, are greyed out (or hidden)..

So, why can I not delete a sheet? Remember that:
1) https://bugs.documentfoundation.org/show_bug.cgi?id=130849 is a verified bug
2) https://bugs.documentfoundation.org/show_bug.cgi?id=130847 (description is
complicated, but having verified [1] disambiguates it: Ctrl+Shift+C for
activating tracking changes is "very close" to common shortcuts and can be
activated "under the radar")
3) https://bugs.documentfoundation.org/show_bug.cgi?id=130843 is a bug to me
(note that I have even mounted/grep-ed the xlsx archive)
4) And, I cannot see anything out of the ordinary (for some reason / you _may_
attribute this as my fault)
5) No "clear" indication that Tracking Changes mode is activated (this ticket,
point C). I don't think I've hidden "something" that would have indicated to me
that tracking changes are active (if somehow I can reset "everything"
temporarily and try again, I can do it again. I have started in safe mode
though already). I have "only" understood that Tracking Changes are active when
I did https://bugs.documentfoundation.org/show_bug.cgi?id=130832 that.

(Maybe this applies to Move Sheets menu option also, I don't remember anymore)

Maybe it's my fault that I didn't search help for "Delete Sheet", again. I feel
that I am "competent enough" user with spreadsheets, *and* I can find _some_ of
the options grayed out - so, why would I look for help on "how" to delete
sheets?

I don't know; it's my strong opinion that two so different functionalities
shouldn't interact with each other "under the radar".
If you disable "Remove Filtering" because I haven't applied a Filter in the
selection yet, I get it.

> > > So I changed the summary of this report. OK?
> > 
> > As long as we are saying the same thing, yes, everything is okay.
> That's why I'm asking you, to be sure that I do understand you well :)

-- 
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 114609] pptx incorrect textbox shadow

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114609

--- Comment #4 from Oliver Grimm  ---
Created attachment 158267
  --> https://bugs.documentfoundation.org/attachment.cgi?id=158267=edit
screenshot "with Libreoffice"

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


[Libreoffice-ux-advise] [Bug 130840] UI Create a better Help/UX for "Tracking Changes" mode; explaining limitations/what works

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130840

--- Comment #8 from stde...@gmail.com ---
(In reply to Cor Nouws from comment #7)
> (In reply to stdedos from comment #6)
> > I am more interested that (a) "not hide options ..." and (b) somehow
> > visually indicate "why" I cannot do a disabled action, e.g. raise an Error
> > Message box sayng "Cannot remove sheet: tracking changes is active!".
> Ah. In my experience options that are not valid, are greyed out (or hidden)..

So, why can I not delete a sheet? Remember that:
1) https://bugs.documentfoundation.org/show_bug.cgi?id=130849 is a verified bug
2) https://bugs.documentfoundation.org/show_bug.cgi?id=130847 (description is
complicated, but having verified [1] disambiguates it: Ctrl+Shift+C for
activating tracking changes is "very close" to common shortcuts and can be
activated "under the radar")
3) https://bugs.documentfoundation.org/show_bug.cgi?id=130843 is a bug to me
(note that I have even mounted/grep-ed the xlsx archive)
4) And, I cannot see anything out of the ordinary (for some reason / you _may_
attribute this as my fault)
5) No "clear" indication that Tracking Changes mode is activated (this ticket,
point C). I don't think I've hidden "something" that would have indicated to me
that tracking changes are active (if somehow I can reset "everything"
temporarily and try again, I can do it again. I have started in safe mode
though already). I have "only" understood that Tracking Changes are active when
I did https://bugs.documentfoundation.org/show_bug.cgi?id=130832 that.

(Maybe this applies to Move Sheets menu option also, I don't remember anymore)

Maybe it's my fault that I didn't search help for "Delete Sheet", again. I feel
that I am "competent enough" user with spreadsheets, *and* I can find _some_ of
the options grayed out - so, why would I look for help on "how" to delete
sheets?

I don't know; it's my strong opinion that two so different functionalities
shouldn't interact with each other "under the radar".
If you disable "Remove Filtering" because I haven't applied a Filter in the
selection yet, I get it.

> > > So I changed the summary of this report. OK?
> > 
> > As long as we are saying the same thing, yes, everything is okay.
> That's why I'm asking you, to be sure that I do understand you well :)

-- 
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 130916] Enabling Autotext to work on single characters

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130916

--- Comment #3 from Laurent BP  ---
(In reply to mkassler from comment #2)
> Your solution works, but requires typing of five characters to produce one
> ligature. 
I don't understand what you mean by typing five characters. You just need to
define once your extra replacement in Autocorrection options, and it will be
saved in your LibreOffice settings. Then, typing 'fi' somewhere in your text
will be automatically replaced by ligature.

-- 
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 130916] Enabling Autotext to work on single characters

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130916

--- Comment #3 from Laurent BP  ---
(In reply to mkassler from comment #2)
> Your solution works, but requires typing of five characters to produce one
> ligature. 
I don't understand what you mean by typing five characters. You just need to
define once your extra replacement in Autocorrection options, and it will be
saved in your LibreOffice settings. Then, typing 'fi' somewhere in your text
will be automatically replaced by ligature.

-- 
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 106771] FILESAVE: LibreOffice fails to embed fonts while saving PPT files

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106771

Oliver Grimm  changed:

   What|Removed |Added

   Keywords||filter:ppt, filter:pptx,
   ||filter:xlsx

-- 
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 126026] wrong window icon for an LO calc file started from file manager

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126026

Oliver Grimm  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|UNCONFIRMED |RESOLVED

--- Comment #5 from Oliver Grimm  ---
cannot reproduce it anymore, even in Cinnamon Desktop Environment.
Setting to WORKSFORME

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

2020-02-28 Thread Ilmari Lauhakangas (via logerrit)
 logerrit |   64 +++
 1 file changed, 32 insertions(+), 32 deletions(-)

New commits:
commit 02b5d09c0dab1621ce23f9a8df45fa1628be3ece
Author: Ilmari Lauhakangas 
AuthorDate: Thu Feb 27 18:16:48 2020 +0200
Commit: Guilhem Moulin 
CommitDate: Fri Feb 28 23:10:30 2020 +0100

tdf#105204 fix shellcheck warnings in logerrit

- double quote to prevent globbing and word splitting
- use read with -r
- handle pushd and popd failures
- escape arguments to ssh (thanks to Guilhem for the solution)

Change-Id: I5fcbb0248779a4fe3c0e50a9597874bcbf8217e3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89643
Reviewed-by: Guilhem Moulin 
Tested-by: Jenkins

diff --git a/logerrit b/logerrit
index ac33c4bf38f4..136f0fb3945c 100755
--- a/logerrit
+++ b/logerrit
@@ -2,10 +2,10 @@
 
 #GERRITHOST=gerrit.libreoffice.org
 GERRITHOST=logerrit
-GERRITURL=ssh://$GERRITHOST/core
+GERRITURL="ssh://$GERRITHOST/core"
 
 get_SHA_for_change() {
-SHA=$(ssh ${GERRITHOST?} gerrit query --all-approvals change:$1|grep 
ref|tail -1|cut -d: -f2)
+SHA=$(ssh "${GERRITHOST?}" gerrit query --all-approvals change:"$1"|grep 
ref|tail -1|cut -d: -f2)
 }
 
 submit() {
@@ -22,7 +22,7 @@ submit() {
 fi
 echo "no branch specified, guessing current branch $BRANCH"
 fi
-git push $GERRITURL HEAD:refs/for/$BRANCH$TYPE
+git push "$GERRITURL" "HEAD:refs/for/$BRANCH$TYPE"
 }
 
 logerrit() {
@@ -76,14 +76,14 @@ case "$1" in
ssh_home="$HOME/.ssh";
ssh_key=
created_ssh=
-   if ! test -d $ssh_home; then
+   if ! test -d "$ssh_home"; then
echo "It appears that you have no ssh setup, running ssh-keygen to 
create that:"
mkdir -m0700 "$ssh_home"
created_ssh=TRUE
echo
echo "Hit enter to generate an ssh key - you will need to enter a 
pass-phrase"
echo
-   read
+   read -r
ssh-keygen -t rsa -f "$ssh_home/id_rsa" # default type as of 
OpenSSH 8.1
fi
 if test -d "$ssh_home"; then
@@ -112,7 +112,7 @@ case "$1" in
 echo "commit from them. Additional emails must be confirmed by 
replying to the"
 echo "invitation mail it sends you."
 echo
-read -p 'Which user name did you choose? ' GERRITUSER
+read -r -p 'Which user name did you choose? ' GERRITUSER
if test -z "$created_ssh"; then
 echo
 echo "Please now add the following to your ~/.ssh/config, creating the 
file if needed:"
@@ -130,23 +130,23 @@ case "$1" in
 ./g -z
 ;;
 test)
-if test -n "$(ssh $GERRITHOST 2>&1|grep "Welcome to Gerrit Code 
Review")"
+if test -n "$(ssh "$GERRITHOST" 2>&1|grep "Welcome to Gerrit Code 
Review")"
 then
 echo "Your gerrit setup was successful!"
 else
 echo "There seems to be trouble. Please have the output of:"
-echo "ssh - "$GERRITHOST
+echo "ssh - $GERRITHOST"
 echo "at hand when looking for help."
 fi
 ;;
 submit)
-submit $2
+submit "$2"
 ;;
 submit-private)
-submit $2 '%private'
+submit "$2" '%private'
 ;;
 submit-wip)
-submit $2 '%wip'
+submit "$2" '%wip'
 ;;
 submit-draft)
 echo "Please use submit-private instead of submit-draft."
@@ -165,7 +165,7 @@ case "$1" in
 CHANGEID="NOCHANGEID"
 fi
 BACKUPBRANCH=backup/$CHANGEID-$(date +%F-%H%M%S)
-git branch $BACKUPBRANCH
+git branch "$BACKUPBRANCH"
 echo "current state backed up as $BACKUPBRANCH"
 BRANCH=$2
 if test -z "$BRANCH"
@@ -179,14 +179,14 @@ case "$1" in
 fi
 echo "no branch specified, guessing current branch $BRANCH"
 fi
-git reset --hard remotes/origin/$BRANCH
+git reset --hard "remotes/origin/$BRANCH"
 ;;
 checkout)
-get_SHA_for_change $2
-git fetch $GERRITURL $SHA && git checkout FETCH_HEAD
+get_SHA_for_change "$2"
+git fetch "$GERRITURL" "$SHA" && git checkout FETCH_HEAD
 ;;
 review)
-echo "'./logerrit review' has be removed as obsolete."
+echo "'./logerrit review' has been removed as obsolete."
 echo "Please use either:"
 echo " - git-review:  
https://wiki.documentfoundation.org/Development/GitReview;
 echo " - or the web-UI directly:  https://gerrit.libreoffice.org/;
@@ -194,20 +194,20 @@ case "$1" in
 exit 1;
 ;;
 pull)
-get_SHA_for_change $2
-git pull $GERRITURL $SHA
+get_SHA_for_change "$2"
+git pull "$GERRITURL" "$SHA"
 ;;
 cherry-pick)
-get_SHA_for_change $2
-git fetch $GERRITURL $SHA && git cherry-pick FETCH_HEAD
+get_SHA_for_change "$2"
+git 

[Libreoffice-bugs] [Bug 105204] [TASK] Check shell scripts with shellcheck

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105204

--- Comment #24 from Commit Notification 
 ---
Ilmari Lauhakangas committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/02b5d09c0dab1621ce23f9a8df45fa1628be3ece

tdf#105204 fix shellcheck warnings in logerrit

It will be available in 7.0.0.

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

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

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


[Libreoffice-bugs] [Bug 105204] [TASK] Check shell scripts with shellcheck

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105204

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:5.4.0 target:5.5.0   |target:5.4.0 target:5.5.0
   ||target:7.0.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 130964] Various rendering bugs in Impress (Fonts and image borders)

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130964

Oliver Grimm  changed:

   What|Removed |Added

   Keywords||filter: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-bugs] [Bug 123139] Reading XLSX format ignores horizontal alignment (generated wit Apache POI Java library)

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123139

--- Comment #4 from SheetJS  ---
Running into this issue with spreadsheets generated by SheetJS Pro.

In the  records, Excel assumes that applyAlignment is true if an
 child is present.  You are expected to specify applyAlignment="0"
if alignment does not apply.

LibreOffice (including the latest version 6.4.1.2) assumes that applyAlignment
is false even if an  child is present.  The default behavior is
incorrect.

To verify this is the root cause, you can take the original sample file and add
the applyAlignment="1" attribute to the   tag:

```xml

  

```

-- 
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 130913] FIRST PAGE HEADER cannot be edited independently on Endnotes pages, and end-of-document Footnotes pages

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130913

R. Green  changed:

   What|Removed |Added

Summary|FIRST PAGE HEADER cannot be |FIRST PAGE HEADER cannot be
   |edited independently of |edited independently on
   |other pages in a specific   |Endnotes pages, and
   |document|end-of-document Footnotes
   ||pages

-- 
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 130913] FIRST PAGE HEADER cannot be edited independently of other pages in a specific document

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130913

--- Comment #2 from R. Green  ---
After further investigation, this bug seems to affect only ENDNOTE pages, and
FOOTNOTE pages where "Position" (in "Tools > Footnotes and Endnotes") is set to
"End of document".

Now try this in the attached doc.

1. Click on the first page of ENDNOTES (p. 11) and double-click "Default Style"
(Page styles".
2. Now click antwhere on the main body of text, e.g. page 10.
3. Click back on page 11 (the "Page styles display will again show "Endnote").

RESULT: The header problem temporarily corrects itself. But will reappear when
the file is saved and reloaded.

-- 
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 130966] Going "into" a object causes viewport move, zoom change, delay, repaint

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130966

--- Comment #3 from Oliver Grimm  ---
In general it is a good idea to file separate bug reports for separate problems
so we can keep tracks of problems (and resolutions) one at a time. Mixing
several bugs into one report makes it difficult to specify what one is talking
about when discussions get lengthier.

For now, can you please pick one of your three observations and edit the title
of your bug report accordingly? thank you.

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

2020-02-28 Thread Dennis Francis (via logerrit)
 chart2/source/controller/sidebar/ChartColorWrapper.cxx |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 5f193d851e3567e1018a61763846698e02ce38ec
Author: Dennis Francis 
AuthorDate: Sun Feb 23 22:38:15 2020 +0530
Commit: Andras Timar 
CommitDate: Fri Feb 28 22:54:43 2020 +0100

chart2: Fix the color uno command in ChartColorWrapper

The uno command for color depends on the property name. For LineColor
it should be .uno:XLineColor and the only other case is FillColor for
which it should be .uno:FillColor. Without this fix, on selecting
the chart for editing the first time, the sidebar line-color control
is disabled as a side-effect.

Change-Id: Ia71ed2f6d9e0f31523f1415f3ee089fd9d7d1b2d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89304
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Andras Timar 
(cherry picked from commit 9a80969f3115fc33778005861442f91127344dc0)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89677
Tested-by: Jenkins

diff --git a/chart2/source/controller/sidebar/ChartColorWrapper.cxx 
b/chart2/source/controller/sidebar/ChartColorWrapper.cxx
index 9a8c568a863d..d9903b12c275 100644
--- a/chart2/source/controller/sidebar/ChartColorWrapper.cxx
+++ b/chart2/source/controller/sidebar/ChartColorWrapper.cxx
@@ -96,12 +96,15 @@ void ChartColorWrapper::updateModel(const 
css::uno::Reference xPropSet = 
getPropSet(mxModel);
 if (!xPropSet.is())
 return;
 
 css::util::URL aUrl;
-aUrl.Complete = ".uno:FillColor";
+aUrl.Complete = (maPropertyName == aLineColor) ? aCommands[0] : 
aCommands[1];
 
 css::frame::FeatureStateEvent aEvent;
 aEvent.FeatureURL = aUrl;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-ux-advise] [Bug 130840] UI Create a better Help/UX for "Tracking Changes" mode; explaining limitations/what works

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130840

--- Comment #7 from Cor Nouws  ---
(In reply to stdedos from comment #6)
> I am more interested that (a) "not hide options ..." and (b) somehow
> visually indicate "why" I cannot do a disabled action, e.g. raise an Error
> Message box sayng "Cannot remove sheet: tracking changes is active!".
Ah. In my experience options that are not valid, are greyed out (or hidden)..

> > So I changed the summary of this report. OK?
> 
> As long as we are saying the same thing, yes, everything is okay.
That's why I'm asking you, to be sure that I do understand you well :)

-- 
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 130840] UI Create a better Help/UX for "Tracking Changes" mode; explaining limitations/what works

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130840

--- Comment #7 from Cor Nouws  ---
(In reply to stdedos from comment #6)
> I am more interested that (a) "not hide options ..." and (b) somehow
> visually indicate "why" I cannot do a disabled action, e.g. raise an Error
> Message box sayng "Cannot remove sheet: tracking changes is active!".
Ah. In my experience options that are not valid, are greyed out (or hidden)..

> > So I changed the summary of this report. OK?
> 
> As long as we are saying the same thing, yes, everything is okay.
That's why I'm asking you, to be sure that I do understand you well :)

-- 
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 130916] Enabling Autotext to work on single characters

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130916

--- Comment #2 from mkass...@internode.net ---
Your solution works, but requires typing of five characters to produce one
ligature. What I am seeking/suggesting is a way of inserting a ligature by
typing two characters. This is possible in Microsoft Word by (for instance)
pressing a function key (e.g., F1) followed by the letter 'i' to get the 'fi'
ligature while typing. Could such an enhancement be made possible for Libre
Office?

-- 
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 130916] Enabling Autotext to work on single characters

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130916

--- Comment #2 from mkass...@internode.net ---
Your solution works, but requires typing of five characters to produce one
ligature. What I am seeking/suggesting is a way of inserting a ligature by
typing two characters. This is possible in Microsoft Word by (for instance)
pressing a function key (e.g., F1) followed by the letter 'i' to get the 'fi'
ligature while typing. Could such an enhancement be made possible for Libre
Office?

-- 
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 131018] Data sort wrong if columns are hidden

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131018

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

-- 
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 131019] Data sort wrong if columns are hidden

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131019

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

-- 
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 76429] Mutex lock when resizing floating panels

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76429

Julien Nabet  changed:

   What|Removed |Added

   Keywords|filter:fodp |
URL|https://apkgreat.com/clash- |
   |of-clans-mod-apk/   |

-- 
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 76429] Mutex lock when resizing floating panels

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76429

Jose  changed:

   What|Removed |Added

URL||https://apkgreat.com/clash-
   ||of-clans-mod-apk/
   Keywords||filter:fodp

-- 
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 131018] Data sort wrong if columns are hidden

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131018

--- Comment #1 from schatte...@gmx.net ---
Please delete this bugreport - error on my side

-- 
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 131019] Data sort wrong if columns are hidden

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131019

--- Comment #1 from schatte...@gmx.net ---
please delete this Bugreport - error on my side

-- 
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 130994] When quickly typing U then Y, then Y does not register in Calc

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130994

Corey  changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|NEEDINFO|RESOLVED

--- Comment #2 from Corey  ---
Hmm apologies.  I was making a video showing how it happens in Calc but not in
Notepad, when it started happening in Notepad too.  It seems to be related to
my running CPU-intensive tasks in the background, and not Calc.

-- 
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 131019] New: Data sort wrong if columns are hidden

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131019

Bug ID: 131019
   Summary: Data sort wrong if columns are hidden
   Product: LibreOffice
   Version: 6.2.8.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: schatte...@gmx.net

Created attachment 158266
  --> https://bugs.documentfoundation.org/attachment.cgi?id=158266=edit
small calc-sheet demonstrating the error

on creating a little sheet and hiding some colums
Data sort is wrong. When unhiding the columns, Data sort is running whithout
error.

See added Example

- marking all columns (d to f)
- Menu - Data - sort - descending - colum 'f' - go

Result: some Values are  sorted wrong

or:
- unhiding columns a-c
- Marking all columns (a to f)
- Menu - Data - sort - descending - colum 'f' - go

Result: all values are sorted correct

The error is tested and found in Release 6352 and 641 too

-- 
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 131018] New: Data sort wrong if columns are hidden

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131018

Bug ID: 131018
   Summary: Data sort wrong if columns are hidden
   Product: LibreOffice
   Version: 6.2.8.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: schatte...@gmx.net

Created attachment 158265
  --> https://bugs.documentfoundation.org/attachment.cgi?id=158265=edit
small calc-sheet demonstrating the error

on creating a little sheet and hiding some colums
Data sort is wrong. When unhiding the columns, Data sort is running whithout
error.

See added Example

- marking all columns (d to f)
- Menu - Data - sort - descending - colum 'f' - go

Result: some Values are  sorted wrong

or:
- unhiding columns a-c
- Marking all columns (a to f)
- Menu - Data - sort - descending - colum 'f' - go

Result: all values are sorted correct

The error is tested and found in Release 6352 and 641 too

-- 
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 109530] [META] File opening issues

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109530

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

   What|Removed |Added

 Depends on||126788


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=126788
[Bug 126788] FILEOPEN: ODT big performance drop for big table from 6.1 to 6.2
to 6.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 126788] FILEOPEN: ODT big performance drop for big table from 6.1 to 6.2 to 6.3

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126788

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

   What|Removed |Added

 Blocks||109530


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=109530
[Bug 109530] [META] File opening 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 108799] [META] HTML export bugs and enhancements

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108799

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

   What|Removed |Added

 Depends on||126762


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=126762
[Bug 126762] Table style lost on export to HTML
-- 
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 126762] Table style lost on export to HTML

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126762

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

   What|Removed |Added

 Blocks||108799


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108799
[Bug 108799] [META] HTML export 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 126711] Adding Rows to Tables

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126711

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

   What|Removed |Added

 CC||79045_79...@mail.ru

--- Comment #7 from Roman Kuznetsov <79045_79...@mail.ru> ---
by default Alt+Ins shortcut isn't link with any action in LibreOffice in 

Версия: 7.0.0.0.alpha0+
ID сборки: 81d982f176751a6d5f13fcb72f425a29fd077c92
Потоков ЦП: 4; ОС: Linux 5.5; Отрисовка ИП: по умолчанию; VCL: kf5; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2020-02-28_08:11:33
Локаль: ru-RU (ru_RU.UTF-8); Язык интерфейса: ru-RU
Calc: threaded

What instruction do you mean?

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

2020-02-28 Thread Mike Kaganski (via logerrit)
 i18npool/source/search/textsearch.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 4ac48ae4b02b8e0e3ae7e4833893f9ad40d4d14d
Author: Mike Kaganski 
AuthorDate: Fri Feb 28 14:20:24 2020 +0300
Commit: Mike Kaganski 
CommitDate: Fri Feb 28 21:43:48 2020 +0100

Use icu::UnicodeString's readonly-aliasing char16_t* constructor

Then it stores a pointer to the passed const UTF-16 string, so
avoids extra overhead (both memory and CPU) to copy the data

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

diff --git a/i18npool/source/search/textsearch.cxx 
b/i18npool/source/search/textsearch.cxx
index 0efa67bcf33a..da4d9cada678 100644
--- a/i18npool/source/search/textsearch.cxx
+++ b/i18npool/source/search/textsearch.cxx
@@ -930,7 +930,7 @@ SearchResult TextSearch::RESrchFrwrd( const OUString& 
searchStr,
 
 // use the ICU RegexMatcher to find the matches
 UErrorCode nIcuErr = U_ZERO_ERROR;
-const IcuUniString aSearchTargetStr(reinterpret_cast(searchStr.getStr()),
+const IcuUniString aSearchTargetStr(false, reinterpret_cast(searchStr.getStr()),
 searchStr.getLength());
 pRegexMatcher->reset( aSearchTargetStr);
 // search until there is a valid match
@@ -985,7 +985,7 @@ SearchResult TextSearch::RESrchBkwrd( const OUString& 
searchStr,
 // TODO: use ICU's backward searching once it becomes available
 //   as its replacement using forward search is not as good as the 
real thing
 UErrorCode nIcuErr = U_ZERO_ERROR;
-const IcuUniString aSearchTargetStr(reinterpret_cast(searchStr.getStr()),
+const IcuUniString aSearchTargetStr(false, reinterpret_cast(searchStr.getStr()),
 searchStr.getLength());
 pRegexMatcher->reset( aSearchTargetStr);
 if (!lcl_findRegex( pRegexMatcher, endPos, startPos, nIcuErr))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 126327] Conditional formatting: wrong reference when copying the table

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126327

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

   What|Removed |Added

   Keywords||bibisectRequest, regression

-- 
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 126327] Conditional formatting: wrong reference when copying the table

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126327

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

   What|Removed |Added

 Blocks||87351


Referenced Bugs:

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

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87351

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

   What|Removed |Added

 Depends on||126327


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=126327
[Bug 126327] Conditional formatting: wrong reference when copying the table
-- 
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 120216] Table make Impress slow and dump

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120216

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

   What|Removed |Added

   Keywords||perf
 Blocks||100366


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100366
[Bug 100366] [META] Impress/Draw table 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 100366] [META] Impress/Draw table bugs and enhancements

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100366

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

   What|Removed |Added

 Depends on||120216


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=120216
[Bug 120216] Table make Impress slow and dump
-- 
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 112700] [META] DOC (binary) table-related issues

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112700

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

   What|Removed |Added

 Depends on||114586


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114586
[Bug 114586] doc filter: Background color is missing on top row of table.
-- 
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 114586] doc filter: Background color is missing on top row of table.

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114586

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

   What|Removed |Added

 Blocks||112700


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112700
[Bug 112700] [META] DOC (binary) table-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 100366] [META] Impress/Draw table bugs and enhancements

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100366

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

   What|Removed |Added

 Depends on||99852


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=99852
[Bug 99852] FORMATTING Assign style to Impress table cell does not work
-- 
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 99852] FORMATTING Assign style to Impress table cell does not work

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99852

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

   What|Removed |Added

 Blocks||100366


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100366
[Bug 100366] [META] Impress/Draw table 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 130600] The same icons for "New category" and "Refresh" items are in "Settings" drop-down menu in Template dialog

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130600

Ayhan Yalçınsoy  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |ayhanyalcin...@pisilinux.or
   |desktop.org |g
 Status|NEW |ASSIGNED

-- 
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 90115] Editing: Font history is erased from top of font list when using preview document feature.

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90115

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

   What|Removed |Added

 CC||79045_79...@mail.ru
 Resolution|--- |WORKSFORME
 Status|NEW |RESOLVED

--- Comment #5 from Roman Kuznetsov <79045_79...@mail.ru> ---
no repro in

Версия: 7.0.0.0.alpha0+
ID сборки: 81d982f176751a6d5f13fcb72f425a29fd077c92
Потоков ЦП: 4; ОС: Linux 5.5; Отрисовка ИП: по умолчанию; VCL: kf5; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2020-02-28_08:11:33
Локаль: ru-RU (ru_RU.UTF-8); Язык интерфейса: ru-RU
Calc: threaded

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


[Libreoffice-bugs] [Bug 90113] Editing: Font history is erased from top of font list when using preview document feature.

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90113

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

   What|Removed |Added

 Resolution|--- |WORKSFORME
 CC||79045_79...@mail.ru
 Status|NEW |RESOLVED

--- Comment #6 from Roman Kuznetsov <79045_79...@mail.ru> ---
no repro in

Версия: 7.0.0.0.alpha0+
ID сборки: 81d982f176751a6d5f13fcb72f425a29fd077c92
Потоков ЦП: 4; ОС: Linux 5.5; Отрисовка ИП: по умолчанию; VCL: kf5; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2020-02-28_08:11:33
Локаль: ru-RU (ru_RU.UTF-8); Язык интерфейса: ru-RU
Calc: threaded

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


[Libreoffice-commits] online.git: Branch 'feature/parallel_cypress' - cypress_test/Makefile.am

2020-02-28 Thread Tamás Zolnai (via logerrit)
 cypress_test/Makefile.am |   18 --
 1 file changed, 12 insertions(+), 6 deletions(-)

New commits:
commit c85a9fc5a24fd1a342675308343ce92fb55438eb
Author: Tamás Zolnai 
AuthorDate: Fri Feb 28 21:02:09 2020 +0100
Commit: Tamás Zolnai 
CommitDate: Fri Feb 28 21:27:22 2020 +0100

fix sequential build

Change-Id: I09d92458109c279380b1425b323b52c55b8f348b
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/89749
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Tamás Zolnai 

diff --git a/cypress_test/Makefile.am b/cypress_test/Makefile.am
index 6be7830eb..ae3df12ad 100644
--- a/cypress_test/Makefile.am
+++ b/cypress_test/Makefile.am
@@ -70,19 +70,25 @@ $(MOBILE_TEST_FILES_DONE): $(PID_FILE)
$(if $(PARALLEL_BUILD),\
$(call run_mobile_tests,$(subst 
$(MOBILE_TRACK_FOLDER),,$(basename $@))),\
$(call run_mobile_tests))
-   @mkdir -p $(dir $@)
$(if $(PARALLEL_BUILD),\
-   @touch $@,\
-   $(foreach done_file,$(MOBILE_TEST_FILES_DONE),touch 
$(done_file) &&) true)
+   @mkdir -p $(dir $@) &&\
+   touch $@\
+   ,\
+   @$(foreach done_file,$(MOBILE_TEST_FILES_DONE),mkdir -p $(dir 
$(done_file)) &&)\
+   $(foreach done_file,$(MOBILE_TEST_FILES_DONE),touch 
$(done_file) &&) true\
+   )
 
 $(DESKTOP_TEST_FILES_DONE): $(PID_FILE)
$(if $(PARALLEL_BUILD),\
$(call run_desktop_tests,$(subst 
$(DESKTOP_TRACK_FOLDER),,$(basename $@))),\
$(call run_desktop_tests))
-   @mkdir -p $(dir $@)
$(if $(PARALLEL_BUILD),\
-   @touch $@,\
-   $(foreach done_file,$(DESKTOP_TEST_FILES_DONE),touch 
$(done_file) &&) true)
+   @mkdir -p $(dir $@) &&\
+   touch $@\
+   ,\
+   @$(foreach done_file,$(DESKTOP_TEST_FILES_DONE),mkdir -p $(dir 
$(done_file)) &&)\
+   $(foreach done_file,$(DESKTOP_TEST_FILES_DONE),touch 
$(done_file) &&) true\
+   )
 
 check-seq: @JAILS_PATH@ $(NODE_BINS)
$(call run_JS_error_check)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-02-28 Thread Caolán McNamara (via logerrit)
 svx/source/sidebar/PanelLayout.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 43e6b55fd8b739cff834fe5551b4581a88af2d4f
Author: Caolán McNamara 
AuthorDate: Fri Feb 28 13:59:43 2020 +
Commit: Caolán McNamara 
CommitDate: Fri Feb 28 21:02:28 2020 +0100

use the container size as the optimal size when available

to avoid getting the size set on the native adaptor via
GtkSalObject::SetPosSize

which matters for the calc navigator expand/shrink case

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

diff --git a/svx/source/sidebar/PanelLayout.cxx 
b/svx/source/sidebar/PanelLayout.cxx
index e82c03fdc513..1c909a9720f2 100644
--- a/svx/source/sidebar/PanelLayout.cxx
+++ b/svx/source/sidebar/PanelLayout.cxx
@@ -64,7 +64,8 @@ Size PanelLayout::GetOptimalSize() const
 {
 if (isLayoutEnabled(this))
 {
-Size aSize = 
VclContainer::getLayoutRequisition(*GetWindow(GetWindowType::FirstChild));
+Size aSize = m_xContainer ? m_xContainer->get_preferred_size()
+  : 
VclContainer::getLayoutRequisition(*GetWindow(GetWindowType::FirstChild));
 if (mxFrame)
 {
 SidebarController* pController
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-02-28 Thread Miklos Vajna (via logerrit)
 include/sfx2/sidebar/Deck.hxx  |3 +++
 include/sfx2/sidebar/Panel.hxx |4 
 2 files changed, 7 insertions(+)

New commits:
commit 50dec9d1d7fe292a8165f19a3553662effe9e64f
Author: Miklos Vajna 
AuthorDate: Fri Feb 28 15:27:21 2020 +0100
Commit: Miklos Vajna 
CommitDate: Fri Feb 28 20:57:27 2020 +0100

sfx2 sidebar: document deck vs panel relationship

Change-Id: Ib3e4c138a29bca4311520bf16ce00bfbdb22e72d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89719
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins

diff --git a/include/sfx2/sidebar/Deck.hxx b/include/sfx2/sidebar/Deck.hxx
index 98738d814a7e..79815a9bb283 100644
--- a/include/sfx2/sidebar/Deck.hxx
+++ b/include/sfx2/sidebar/Deck.hxx
@@ -32,6 +32,9 @@ class DeckTitleBar;
 
 /** This is the parent window of the panels.
 It displays the deck title.
+
+A deck consists of multiple panels.
+E.g. Properties, Styles, Navigator.
 */
 class Deck final : public vcl::Window
 {
diff --git a/include/sfx2/sidebar/Panel.hxx b/include/sfx2/sidebar/Panel.hxx
index 2c0e9bd764c2..3fe5a4dbcfed 100644
--- a/include/sfx2/sidebar/Panel.hxx
+++ b/include/sfx2/sidebar/Panel.hxx
@@ -36,6 +36,10 @@ class PanelDescriptor;
 class PanelTitleBar;
 class Context;
 
+/**
+ * Multiple panels form a single deck.
+ * E.g. the Properties deck has panels like Styles, Character, paragraph.
+ */
 class SFX2_DLLPUBLIC Panel final : public vcl::Window
 {
 public:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 131007] Game() function

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131007

--- Comment #2 from Julien Nabet  ---
Completely against this.

1) There are far too much bugs, including regressions, crashes, very old
standing bugs (just take a look at the creation date of the oldest bugs and
you'll understand why some people get angry sometimes), big parts of LO which
are almost deserted (Base, macro recording) or which are very problematic
(infinite loops caused by layout management), etc. to work on useless things.
2) Easter eggs are just bloat. If people want to play, there are a lot of free
games on the net.

-- 
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 131015] CRASH: using the pipette in Edit Contour dialog

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131015

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I don't reproduce this
with gtk3, gen and kf5 renderings.

Just for curiosity, shouldn't the cursor be a pipette when choosing pipette?
If yes, I'll submit a new bugtracker because I just see an hand.

-- 
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 131017] New: Spinning Beachball and won't save document when I try to use save in LibreOffice 6.3.5.2

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131017

Bug ID: 131017
   Summary: Spinning Beachball and won't save document when I try
to use save in LibreOffice 6.3.5.2
   Product: LibreOffice
   Version: 6.3.5.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jehser...@gmail.com

Description:
I can't save a document in LibreOffice 6.3.5.2. The save button causes the
spinning beachball on my Mac. It stops when I click somewhere else and come
back to the document. However, I am never able to save the document. 

Steps to Reproduce:
1. Open document and write 
2.Press Save
3.Beachball comes and won't save

Actual Results:
Won't save document

Expected Results:
Same problem


Reproducible: Sometimes


User Profile Reset: No



Additional Info:
[Information automatically included from LibreOffice]
Locale: en-US
Module: StartModule
[Information guessed from browser]
OS: Mac OS X (All)
OS is 64bit: no

-- 
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 103238] [META] Customize dialog bugs and enhancements

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103238
Bug 103238 depends on bug 112135, which changed state.

Bug 112135 Summary: Provide alternative controls through context menu in 
function list of Customize dialog
https://bugs.documentfoundation.org/show_bug.cgi?id=112135

   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 84837] Make show/hide comments UNO command work in Calc

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84837

Xisco Faulí  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-- 
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 84837] Make show/hide comments UNO command work in Calc

2020-02-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84837

Xisco Faulí  changed:

   What|Removed |Added

URL|http://wifiextassist.com/   |

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


[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/libreoffice-6.4.2.1'

2020-02-28 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-6.4.2.1' created by Christian Lohmaier 
 at 2020-02-28 18:48 +

Tag libreoffice-6.4.2.1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAl5ZYGYACgkQ9DSh76/u
rqP6QhAAkoFgj+vyd5ZdVj19ZOlRGYtnYFn0eIa7TO30LPGdCCf8yKhMytA0zcg0
4ChTJuA1fVPGTvt2d4EFVOCD0xSMG9TFZn+yntFFPPHJ8uZqp9BsB10GJSuypQsA
XYogaaTj0qBL2L5BeV/6YVhLHmWYo11yKJL0RBgmiPoaCGX18+LIkSKMW/ANWFiy
wG2ixhKvnuYlwAnVDMPO30ancQLTwMGNMlQvvsopF/t9IgErlm0JsMJCycs8Bn2O
u54N25HtLZdEeeayuKKaGhWtUZjB2v72a5f7HKhBdcRu8jCS5OiArDeKkFCKIT49
iub4njrQKlffFVTV33uBqBGJ3mo9JZ8sdn0qNQVxfkcGX6pZSBzYJIn8KqM43nCw
sFqNv3q4hiTN3huTaNXQ3EPDhSRytEsCQjtfGlaHRU/hN/EAAqST8LDJiANghLni
/Qplq9GcaFieYTDpa8e2s2eCA037QufhnC+cMAKX3ZqzWN6riaKu5blEhdvVTq5g
K+WvxGWV+h3RWfxg1qKoAjqs1I2DrQuPc0CrhWGMJxG6MOMsGrOR3QFsM6uVtO2S
cDMRT1ue81kQOUp5vn34LkRGJRomuHqumCX4Mqk6DzfSX4JWWQ8OeLtG5nwADQ3C
dVdeR3zdBfVIdM86zbQWElX+tN+lghSscQcseNGaBUk2c2duGKo=
=Imjx
-END PGP SIGNATURE-

Changes since libreoffice-6-4-branch-point-5:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: Changes to 'refs/tags/libreoffice-6.4.2.1'

2020-02-28 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-6.4.2.1' created by Christian Lohmaier 
 at 2020-02-28 18:48 +

Tag libreoffice-6.4.2.1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAl5ZYGoACgkQ9DSh76/u
rqN7aw//VC2qCdbg40MI6vWEqGz5EbmyLiaw7o0Rz41kyhQ6AwEgRWmwe9YA1atc
QDCWPm0XZmPJgkmkPqfBFPK3W/AFjkjnmmPOVhNf8GGd4oo+7UR52bujz9EzqGkI
i14DwuQf3h8x4ovNZr1PS/L6sTkaeg1hp6KNttXfXvK61fSwabUCYOFBGs6Ht7IM
BDlzO0wesAf2QVN5iVfrTt2ZMimM4yDyNqEZ0fE2rclrGLxT4tD6R6rO6QQZXbQi
ojRRlzTg55Tlxc0lHBoxq0DguAy7JNkTwxTaWSEo1rBoQl3PuAOeMU7ULlfiLCOx
2AmCadWiIo/p6yU2XaMeKeMD7oOdldlmK8n+zLg+2LbDJf4ESWptS1WhVDq2cTuN
3qDP5y26d1A8FtMOUMT4tWQR5H9tWkMIt0QtI+PAXCShnestugB2nIjmW2Yc0dm9
uFTCZWyJ0Oj4yY3wtScKmjbPMKUCZiAq+tWl2UHo0QHCLPMdlu3zWbOGOgOWoEAm
EVonh6ftaCvm8eYRHcLW1tNa2PV4VZ8QMA7SsZuV47miLA+YUfOMEt6d21zpMDqe
/cIhYzqTTeNIFPzrgMqw5ZwLcgfuK/Wdn+hkY41j4MWMpuhTLk+5SgqQq7JIp3Tv
+x/lobHJ0hzUah279ROGPObHNWDSo5KF0hXKci8fMuwkEGhfy5o=
=Wb2W
-END PGP SIGNATURE-

Changes since libreoffice-6-4-branch-point-51:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-4-2' - configure.ac

2020-02-28 Thread Christian Lohmaier (via logerrit)
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2ff478fff260b424f2c8165f3080151db325c2aa
Author: Christian Lohmaier 
AuthorDate: Fri Feb 28 19:48:27 2020 +0100
Commit: Christian Lohmaier 
CommitDate: Fri Feb 28 19:48:27 2020 +0100

bump product version to 6.4.2.1.0+

Change-Id: I2d6d54ba14f106dd87b23ae4b0d3ca7126918f18

diff --git a/configure.ac b/configure.ac
index a2a06858c1c2..c18a95a74de0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[6.4.2.0.0+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[6.4.2.1.0+],[],[],[http://documentfoundation.org/])
 
 dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just 
fine if it is installed
 dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails 
hard
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Changes to 'refs/tags/libreoffice-6.4.2.1'

2020-02-28 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-6.4.2.1' created by Christian Lohmaier 
 at 2020-02-28 18:48 +

Tag libreoffice-6.4.2.1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAl5ZYGoACgkQ9DSh76/u
rqOGdBAAoomrI0Y3oRTXc9tW+DjZT/bsoH7E7+UO5QZgiSTw/zMR8shMJpwJ1hA4
bzi9k3Ym/S2+Zc5AoRl7FNCF/eP04oXpGJdG326fyD/2ovHK8hZsPIFjrPaLEx4Z
7Tq1Eg2gqiWNt8V3nYR4B0QB1ptfOL3Bzw27syncTegeEW1SVlhZBwzWS4F/St3l
XVLLX+FOcG/YTnZTwjCs7WuETmY+io5I9jkQ9MZDo5wbqklr7yJxj5CsvQi5mEzM
tS0AmxpEtdi7fr7pKJ9owqliomFXYYeeMqrcJQMcceQjHF/KBsO7uIiqh1JaHcz6
tLhZJx0aTlddqE5JGOzMjU9wnh+eK502VQXVjrLMFM0wW6NyOB9nazLHcelJbD2c
py44+ZieWDY86XfASCNWyVsQ6AAvfqBXnPAMw3CepyN8VNd6ELCGZNSXXY6SXT8P
DApoq1E4SQoAqRnjI6ML4sr+2OPPkGlDu046izpt0nSvH362+ph/fuhcwxVZtHMN
RiaMtCnGK9bwPTsvSVG1Qe1jZBFGr9sLppmEpfChjwuZY3LqpBcNKyctg3svvnqg
sc2qdXxMQ+b87L44D5D6z3rRrJfalVhacn8K4rlIIfyfeuq8tAcox5fDWVga5yfI
OmXdHNsaXAyI2Td7VnTODJI7ED77lSHQqAOZtazJDqCYmKQfIrc=
=cLRK
-END PGP SIGNATURE-

Changes since libreoffice-6-4-branch-point-750:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


  1   2   3   4   >