[Libreoffice-bugs] [Bug 124249] Unable to use keyboard navigation to access Brochure radio button in Print dialog

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124249

Heiko Tietze  changed:

   What|Removed |Added

 CC|libreoffice-ux-advise@lists |tietze.he...@gmail.com
   |.freedesktop.org|
   Keywords|needsUXEval |

-- 
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 124249] Unable to use keyboard navigation to access Brochure radio button in Print dialog

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124249

Heiko Tietze  changed:

   What|Removed |Added

 CC|libreoffice-ux-advise@lists |tietze.he...@gmail.com
   |.freedesktop.org|
   Keywords|needsUXEval |

-- 
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 124328] [FORMATTING] Changing the style changes the original language

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124328

--- Comment #1 from mulla.tasa...@gmail.com ---
Thank you for reporting the bug.

I can not reproduce the bug in

Version: 6.2.1.2 (x64)
Build ID: 7bcb35dc3024a62dea0caee87020152d1ee96e71
CPU threads: 4; OS: Windows 6.3; UI render: default; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
Calc: CL


Version: 6.3.0.0.alpha0+ (x64)
Build ID: 91cdf22b88a4f7bec243c8fb187627e766d3294c
CPU threads: 4; OS: Windows 6.3; UI render: default; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-03-08_00:38:10
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-commits] core.git: cui/source include/vcl vcl/source

2019-03-25 Thread Martin Hosken (via logerrit)
 cui/source/dialogs/FontFeaturesDialog.cxx |   30 ++
 cui/source/inc/FontFeaturesDialog.hxx |1 +
 include/vcl/font/Feature.hxx  |7 +--
 vcl/source/font/Feature.cxx   |7 ++-
 vcl/source/font/FeatureCollector.cxx  |8 ++--
 5 files changed, 40 insertions(+), 13 deletions(-)

New commits:
commit 36eb092bed8528eaca295d817ec77fc9a2b73339
Author: Martin Hosken 
AuthorDate: Mon Mar 25 13:44:10 2019 +0700
Commit: Martin Hosken 
CommitDate: Tue Mar 26 05:00:33 2019 +0100

Allow irregular feature value structures in feature dialog

Change-Id: I92df2d47bebb0b0af38f3527881ac65a11d1bb98
Reviewed-on: https://gerrit.libreoffice.org/69643
Tested-by: Jenkins
Reviewed-by: Martin Hosken 

diff --git a/cui/source/dialogs/FontFeaturesDialog.cxx 
b/cui/source/dialogs/FontFeaturesDialog.cxx
index b4dd8e7fc63e..27b7b18620d2 100644
--- a/cui/source/dialogs/FontFeaturesDialog.cxx
+++ b/cui/source/dialogs/FontFeaturesDialog.cxx
@@ -34,11 +34,20 @@ FontFeaturesDialog::FontFeaturesDialog(weld::Window* 
pParent, OUString const& rF
 
 FontFeaturesDialog::~FontFeaturesDialog() {}
 
-static void makeEnumComboBox(weld::ComboBox& rNameBox,
- vcl::font::FeatureDefinition const& 
rFeatureDefinition)
+static sal_Int32 makeEnumComboBox(weld::ComboBox& rNameBox,
+  vcl::font::FeatureDefinition const& 
rFeatureDefinition,
+  uint32_t nDefault)
 {
+sal_Int32 nRes = 0;
+int count = 0;
 for (vcl::font::FeatureParameter const& rParameter : 
rFeatureDefinition.getEnumParameters())
-rNameBox.append_text(rParameter.getDescription());
+{
+rNameBox.append(OUString::number(rParameter.getCode()), 
rParameter.getDescription());
+if (rParameter.getCode() == nDefault)
+nRes = count;
+++count;
+}
+return nRes;
 }
 
 void FontFeaturesDialog::initialize()
@@ -94,9 +103,12 @@ void 
FontFeaturesDialog::fillGrid(std::vector const& rFontFe
 uint32_t nValue = 0;
 if (aExistingFeatures.find(nFontFeatureCode) != 
aExistingFeatures.end())
 nValue = aExistingFeatures.at(nFontFeatureCode);
+else
+nValue = aDefinition.getDefault();
 
 FontFeatureItem& aCurrentItem = m_aFeatureItems.back();
 aCurrentItem.m_aFeatureCode = nFontFeatureCode;
+aCurrentItem.m_nDefault = aDefinition.getDefault();
 
 sal_Int32 nGridPositionX = (i % 2) * 2;
 sal_Int32 nGridPositionY = i / 2;
@@ -113,9 +125,9 @@ void 
FontFeaturesDialog::fillGrid(std::vector const& rFontFe
 aCurrentItem.m_xText->set_label(aDefinition.getDescription());
 aCurrentItem.m_xText->show();
 
-makeEnumComboBox(*aCurrentItem.m_xCombo, aDefinition);
+sal_Int32 nInit = makeEnumComboBox(*aCurrentItem.m_xCombo, 
aDefinition, nValue);
 
-aCurrentItem.m_xCombo->set_active(nValue);
+aCurrentItem.m_xCombo->set_active(nInit);
 aCurrentItem.m_xCombo->connect_changed(aComboBoxSelectHandler);
 aCurrentItem.m_xCombo->show();
 }
@@ -166,7 +178,7 @@ OUString FontFeaturesDialog::createFontNameWithFeatures()
 {
 if (rItem.m_xCheck->get_visible())
 {
-if (rItem.m_xCheck->get_active())
+if (sal_uInt32(rItem.m_xCheck->get_active()) != rItem.m_nDefault)
 {
 if (!bFirst)
 sNameSuffix.append(OUString(vcl::font::FeatureSeparator));
@@ -174,12 +186,14 @@ OUString FontFeaturesDialog::createFontNameWithFeatures()
 bFirst = false;
 
 
sNameSuffix.append(vcl::font::featureCodeAsString(rItem.m_aFeatureCode));
+if (!rItem.m_xCheck->get_active())
+sNameSuffix.append("=0");
 }
 }
 else if (rItem.m_xCombo->get_visible() && rItem.m_xText->get_visible())
 {
-int nSelection = rItem.m_xCombo->get_active();
-if (nSelection > 0)
+sal_Int32 nSelection = rItem.m_xCombo->get_active_id().toInt32();
+if (nSelection != int(rItem.m_nDefault))
 {
 if (!bFirst)
 sNameSuffix.append(OUString(vcl::font::FeatureSeparator));
diff --git a/cui/source/inc/FontFeaturesDialog.hxx 
b/cui/source/inc/FontFeaturesDialog.hxx
index ccecb1fcbcbd..b8c48ce805bc 100644
--- a/cui/source/inc/FontFeaturesDialog.hxx
+++ b/cui/source/inc/FontFeaturesDialog.hxx
@@ -33,6 +33,7 @@ struct FontFeatureItem
 }
 
 sal_uInt32 m_aFeatureCode;
+sal_uInt32 m_nDefault;
 std::unique_ptr m_xBuilder;
 std::unique_ptr m_xContainer;
 std::unique_ptr m_xText;
diff --git a/include/vcl/font/Feature.hxx b/include/vcl/font/Feature.hxx
index 47092f9bb56e..b56ce19ba194 100644
--- a/include/vcl/font/Feature.hxx
+++ b/include/vcl/font/Feature.hxx

[Libreoffice-bugs] [Bug 116520] Fileopen dump for ODT fed from ODS

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116520

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 116622] Inserted EMF image is not cropped correctly

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116622

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 63025] Copying chart to Writer looses data/ changes diagram type

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63025

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 103903] EMF import distorts propotion of image files (Landscape looks like Portrait)

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103903

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 89686] "undo" mess up previous Conditional Format-ranges

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89686

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 33614] Impress [FILEOPEN] did not import double lines from a Powerpoint .ppt correctly.

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=33614

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 112099] Table borders in DOC or DOCX file render different

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112099

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 116504] PDF export: The empty area in a PDF image is transparent when exporting the PDF, showing table borders hidden below it

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116504

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 101886] Border line style control not a11y accessible

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101886

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 108042] Tooltips display for toolbar icons suffer from broken font fallback on OSX in CJK UIs

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108042

Kamei  changed:

   What|Removed |Added

Version|5.3.3.2 release |5.3.0.3 release

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

[Libreoffice-bugs] [Bug 124084] Template change goes unnoticed

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124084

--- Comment #8 from tor...@yahoo.com ---
Created attachment 150290
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150290=edit
file that resets date format

-- 
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 124084] Template change goes unnoticed

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124084

--- Comment #7 from tor...@yahoo.com ---
I have to do this test on my work computer. Right now, I can report a similar
bug (maybe the same):
open dateCh.odt; the date is in the format mm/dd/yy; double click it,
choose the format -mm-dd, save and close the file. Reopen it: the old
format is back!
I could not find the userProfile in libreoffice\4\user.

-- 
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 124307] FORMATTING: Data validity produces empty drop list for a named cell range

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124307

--- Comment #8 from Ben Elliston  ---
OK, I understand now (after a bit of experimentation with a trivial
spreadsheet).

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

2019-03-25 Thread Eike Rathke (via logerrit)
 i18npool/source/localedata/data/kmr_Latn_TR.xml |   13 ++---
 1 file changed, 10 insertions(+), 3 deletions(-)

New commits:
commit 4ca9db953d59d93ce8e3a54a36d23ed52b9c62a9
Author: Eike Rathke 
AuthorDate: Mon Mar 25 22:33:03 2019 +0100
Commit: Eike Rathke 
CommitDate: Tue Mar 26 02:05:33 2019 +0100

Assign [kmr-Latn-TR] TRY|₺ currency, TRY|YTL and TRL|TL are legacyOnly

This was done long ago for the tr-TR locale as well.

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

diff --git a/i18npool/source/localedata/data/kmr_Latn_TR.xml 
b/i18npool/source/localedata/data/kmr_Latn_TR.xml
index 2762df9e630f..a566c67170b9 100644
--- a/i18npool/source/localedata/data/kmr_Latn_TR.xml
+++ b/i18npool/source/localedata/data/kmr_Latn_TR.xml
@@ -52,7 +52,7 @@
 PN
 US
   
-  
+  
 M/D
 
   General
@@ -335,14 +335,21 @@
 
   
   
-
+
+  TRY
+  ₺
+  TRY
+  Türk Lirası
+  2
+
+
   TRY
   YTL
   TRY
   Yeni Türk Lirası
   2
 
-
+
   TRL
   TL
   TRL
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 120361] LO creates file "Berend_Ilko_Tom_Stella_Volker.stc"

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120361

Takeshi Abe  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 124146] Dialog theming/UX - window moving instead of scrolling the list of entries

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124146

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

https://git.libreoffice.org/core/+/4a68361d578fe3bf313f80d8e186079bd34b2300%5E%21

tdf#124146 support posting of gesture event for LOKit

It will be available in 6.3.0.

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

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

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

[Libreoffice-commits] core.git: desktop/qa desktop/source include/LibreOfficeKit

2019-03-25 Thread Tomaž Vajngerl (via logerrit)
 desktop/qa/desktop_lib/test_desktop_lib.cxx |3 +
 desktop/source/lib/init.cxx |   45 
 include/LibreOfficeKit/LibreOfficeKit.h |9 +
 include/LibreOfficeKit/LibreOfficeKit.hxx   |   16 +
 4 files changed, 72 insertions(+), 1 deletion(-)

New commits:
commit 4a68361d578fe3bf313f80d8e186079bd34b2300
Author: Tomaž Vajngerl 
AuthorDate: Mon Mar 25 18:23:36 2019 +0900
Commit: Tomaž Vajngerl 
CommitDate: Tue Mar 26 01:31:46 2019 +0100

tdf#124146 support posting of gesture event for LOKit

Change-Id: I51845f2e41dbcbe1ae6cb0a18cf9f42d5549968b
Reviewed-on: https://gerrit.libreoffice.org/69657
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/desktop/qa/desktop_lib/test_desktop_lib.cxx 
b/desktop/qa/desktop_lib/test_desktop_lib.cxx
index 445901108ed4..413b697be70a 100644
--- a/desktop/qa/desktop_lib/test_desktop_lib.cxx
+++ b/desktop/qa/desktop_lib/test_desktop_lib.cxx
@@ -2696,9 +2696,10 @@ void DesktopLOKTest::testABI()
 CPPUNIT_ASSERT_EQUAL(documentClassOffset(44), offsetof(struct 
_LibreOfficeKitDocumentClass, addCertificate));
 CPPUNIT_ASSERT_EQUAL(documentClassOffset(45), offsetof(struct 
_LibreOfficeKitDocumentClass, getSignatureState));
 CPPUNIT_ASSERT_EQUAL(documentClassOffset(46), offsetof(struct 
_LibreOfficeKitDocumentClass, renderShapeSelection));
+CPPUNIT_ASSERT_EQUAL(documentClassOffset(47), offsetof(struct 
_LibreOfficeKitDocumentClass, postWindowGestureEvent));
 // Extending is fine, update this, and add new assert for the offsetof the
 // new method
-CPPUNIT_ASSERT_EQUAL(documentClassOffset(47), sizeof(struct 
_LibreOfficeKitDocumentClass));
+CPPUNIT_ASSERT_EQUAL(documentClassOffset(48), sizeof(struct 
_LibreOfficeKitDocumentClass));
 }
 
 CPPUNIT_TEST_SUITE_REGISTRATION(DesktopLOKTest);
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index a83af85d4441..dfbbdd8386dc 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -107,6 +107,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -744,6 +745,12 @@ static void doc_postWindowMouseEvent 
(LibreOfficeKitDocument* pThis,
   int nCount,
   int nButtons,
   int nModifier);
+static void doc_postWindowGestureEvent(LibreOfficeKitDocument* pThis,
+  unsigned nLOKWindowId,
+  const char* pType,
+  int nX,
+  int nY,
+  int nOffset);
 static void doc_postUnoCommand(LibreOfficeKitDocument* pThis,
const char* pCommand,
const char* pArguments,
@@ -879,6 +886,7 @@ LibLODocument_Impl::LibLODocument_Impl(const uno::Reference 
getSignatureState = doc_getSignatureState;
 
 m_pDocumentClass->renderShapeSelection = doc_renderShapeSelection;
+m_pDocumentClass->postWindowGestureEvent = doc_postWindowGestureEvent;
 
 gDocumentClass = m_pDocumentClass;
 }
@@ -3020,6 +3028,43 @@ static void 
doc_postWindowMouseEvent(LibreOfficeKitDocument* /*pThis*/, unsigned
 }
 }
 
+static void doc_postWindowGestureEvent(LibreOfficeKitDocument* /*pThis*/, 
unsigned nLOKWindowId, const char* pType, int nX, int nY, int nOffset)
+{
+SolarMutexGuard aGuard;
+if (gImpl)
+gImpl->maLastExceptionMsg.clear();
+
+VclPtr pWindow = vcl::Window::FindLOKWindow(nLOKWindowId);
+if (!pWindow)
+{
+gImpl->maLastExceptionMsg = "Document doesn't support dialog 
rendering, or window not found.";
+return;
+}
+
+OString aType(pType);
+GestureEventType eEventType = GestureEventType::PanningUpdate;
+
+if (aType == "panBegin")
+eEventType = GestureEventType::PanningBegin;
+else if (aType == "panEnd")
+eEventType = GestureEventType::PanningEnd;
+
+GestureEvent aEvent {
+sal_Int32(nX),
+sal_Int32(nY),
+eEventType,
+sal_Int32(nOffset),
+PanningOrientation::Vertical,
+};
+
+if (Dialog* pDialog = dynamic_cast(pWindow.get()))
+{
+pDialog->EnableInput();
+}
+
+Application::PostGestureEvent(VclEventId::WindowGestureEvent, pWindow, 
);
+}
+
 static void doc_setTextSelection(LibreOfficeKitDocument* pThis, int nType, int 
nX, int nY)
 {
 SolarMutexGuard aGuard;
diff --git a/include/LibreOfficeKit/LibreOfficeKit.h 
b/include/LibreOfficeKit/LibreOfficeKit.h
index 2df1cea6dd31..0e596f5067ba 100644
--- a/include/LibreOfficeKit/LibreOfficeKit.h
+++ b/include/LibreOfficeKit/LibreOfficeKit.h
@@ -356,10 +356,19 @@ struct _LibreOfficeKitDocumentClass
 
 /// @see lok::Document::getSignatureState().
 int (*getSignatureState) (LibreOfficeKitDocument* pThis);
+// END CERTIFICATE 

[Libreoffice-bugs] [Bug 124146] Dialog theming/UX - window moving instead of scrolling the list of entries

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124146

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

https://git.libreoffice.org/core/+/2ccc0a9e24e3f02bfce39af922b5a4972baa2968%5E%21

tdf#124146 Support panning (pan gesture) of the combobox list

It will be available in 6.3.0.

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

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

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

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

2019-03-25 Thread Tomaž Vajngerl (via logerrit)
 vcl/inc/window.h   |1 +
 vcl/source/control/imp_listbox.cxx |4 
 vcl/source/window/window.cxx   |1 +
 vcl/source/window/window2.cxx  |   20 
 4 files changed, 26 insertions(+)

New commits:
commit 2ccc0a9e24e3f02bfce39af922b5a4972baa2968
Author: Tomaž Vajngerl 
AuthorDate: Mon Mar 25 18:10:26 2019 +0900
Commit: Tomaž Vajngerl 
CommitDate: Tue Mar 26 01:31:28 2019 +0100

tdf#124146 Support panning (pan gesture) of the combobox list

Change-Id: Ic57f4b784d96e69c71caa0e47dbe8117b019a712
Reviewed-on: https://gerrit.libreoffice.org/69656
Reviewed-by: Tomaž Vajngerl 
Tested-by: Tomaž Vajngerl 

diff --git a/vcl/inc/window.h b/vcl/inc/window.h
index bee0f55f1425..74882ef77418 100644
--- a/vcl/inc/window.h
+++ b/vcl/inc/window.h
@@ -162,6 +162,7 @@ struct ImplFrameData
 boolmbInSysObjFocusHdl; //< within a SysChildren's 
GetFocus handler
 boolmbInSysObjToTopHdl; //< within a SysChildren's 
ToTop handler
 boolmbSysObjFocus;  //< does a SysChild have focus
+sal_Int32   mnTouchPanPosition;
 
 css::uno::Reference< css::datatransfer::dnd::XDragSource > mxDragSource;
 css::uno::Reference< css::datatransfer::dnd::XDropTarget > mxDropTarget;
diff --git a/vcl/source/control/imp_listbox.cxx 
b/vcl/source/control/imp_listbox.cxx
index a5711ab39cbf..5e72bcf85f55 100644
--- a/vcl/source/control/imp_listbox.cxx
+++ b/vcl/source/control/imp_listbox.cxx
@@ -2506,6 +2506,10 @@ bool ImplListBox::EventNotify( NotifyEvent& rNEvt )
 bDone = HandleScrollCommand( rCEvt, mpHScrollBar, mpVScrollBar 
);
 }
 }
+else if (rCEvt.GetCommand() == CommandEventId::Gesture)
+{
+bDone = HandleScrollCommand(rCEvt, mpHScrollBar, mpVScrollBar);
+}
 }
 
 return bDone || Window::EventNotify( rNEvt );
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index c9ea334c0e66..cdd2aadde311 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -807,6 +807,7 @@ ImplFrameData::ImplFrameData( vcl::Window *pWindow )
 mbInBufferedPaint = false;
 mnDPIX = 96;
 mnDPIY = 96;
+mnTouchPanPosition = -1;
 }
 
 namespace vcl {
diff --git a/vcl/source/window/window2.cxx b/vcl/source/window/window2.cxx
index dfcec76e9b48..c352b006d67e 100644
--- a/vcl/source/window/window2.cxx
+++ b/vcl/source/window/window2.cxx
@@ -750,6 +750,26 @@ bool Window::HandleScrollCommand( const CommandEvent& rCmd,
 }
 break;
 
+case CommandEventId::Gesture:
+{
+const CommandGestureData* pData = rCmd.GetGestureData();
+if (pData->meEventType == GestureEventType::PanningBegin)
+{
+mpWindowImpl->mpFrameData->mnTouchPanPosition = 
pVScrl->GetThumbPos();
+}
+else if(pData->meEventType == GestureEventType::PanningUpdate)
+{
+long nOriginalPosition = 
mpWindowImpl->mpFrameData->mnTouchPanPosition;
+pVScrl->DoScroll(nOriginalPosition + (pData->mfOffset));
+}
+if (pData->meEventType == GestureEventType::PanningEnd)
+{
+mpWindowImpl->mpFrameData->mnTouchPanPosition = -1;
+}
+bRet = true;
+}
+break;
+
 case CommandEventId::AutoScroll:
 {
 const CommandScrollData* pData = rCmd.GetAutoScrollData();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 124146] Dialog theming/UX - window moving instead of scrolling the list of entries

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124146

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.3.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 124146] Dialog theming/UX - window moving instead of scrolling the list of entries

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124146

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

https://git.libreoffice.org/core/+/6b476080da0678faa59606ef814760bd4235de24%5E%21

tdf#124146 add (general) gesture event support to VCL

It will be available in 6.3.0.

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

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

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

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

2019-03-25 Thread Tomaž Vajngerl (via logerrit)
 include/vcl/GestureEvent.hxx |   42 ++
 include/vcl/commandevent.hxx |   24 +++
 include/vcl/svapp.hxx|3 
 include/vcl/vclevent.hxx |1 
 vcl/inc/salwtype.hxx |   14 +-
 vcl/inc/widgetdraw/WidgetDefinition.hxx  |   66 --
 vcl/qa/cppunit/widgetdraw/WidgetDefinitionReaderTest.cxx |   13 +
 vcl/qa/cppunit/widgetdraw/data/definition1.xml   |8 -
 vcl/source/app/svapp.cxx |   68 +-
 vcl/source/gdi/FileDefinitionWidgetDraw.cxx  |   99 ++-
 vcl/source/gdi/WidgetDefinition.cxx  |   31 +---
 vcl/source/gdi/WidgetDefinitionReader.cxx|   25 ---
 vcl/source/window/commandevent.cxx   |9 +
 vcl/source/window/winproc.cxx|   44 ++
 14 files changed, 284 insertions(+), 163 deletions(-)

New commits:
commit 6b476080da0678faa59606ef814760bd4235de24
Author: Tomaž Vajngerl 
AuthorDate: Mon Mar 25 18:05:35 2019 +0900
Commit: Tomaž Vajngerl 
CommitDate: Tue Mar 26 01:30:45 2019 +0100

tdf#124146 add (general) gesture event support to VCL

Change-Id: I766930bb35071442e132b91477cd3d55e8f00f48
Reviewed-on: https://gerrit.libreoffice.org/69655
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/include/vcl/GestureEvent.hxx b/include/vcl/GestureEvent.hxx
new file mode 100644
index ..2070fc76d39a
--- /dev/null
+++ b/include/vcl/GestureEvent.hxx
@@ -0,0 +1,42 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ */
+
+#ifndef INCLUDED_VCL_GESTUREEVENT_HXX
+#define INCLUDED_VCL_GESTUREEVENT_HXX
+
+#include 
+
+enum class GestureEventType
+{
+PanningBegin,
+PanningUpdate,
+PanningEnd
+};
+
+enum class PanningOrientation
+{
+Horizontal,
+Vertical
+};
+
+class VCL_DLLPUBLIC GestureEvent
+{
+public:
+sal_Int32 mnX;
+sal_Int32 mnY;
+GestureEventType meEventType;
+
+sal_Int32 mnOffset;
+PanningOrientation meOrientation;
+};
+
+#endif // INCLUDED_VCL_GESTUREEVENT_HXX
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/vcl/commandevent.hxx b/include/vcl/commandevent.hxx
index 88185efde077..a3ee2fb73c99 100644
--- a/include/vcl/commandevent.hxx
+++ b/include/vcl/commandevent.hxx
@@ -27,6 +27,7 @@
 #include 
 #include 
 #include 
+#include 
 
 class CommandExtTextInputData;
 class CommandWheelData;
@@ -37,6 +38,8 @@ class CommandMediaData;
 class CommandSelectionChangeData;
 class CommandSwipeData;
 class CommandLongPressData;
+class CommandGestureData;
+
 enum class CommandEventId;
 
 enum class ExtTextInputAttr {
@@ -86,6 +89,7 @@ public:
 const CommandSelectionChangeData*   GetSelectionChangeData() const;
 const CommandSwipeData* GetSwipeData() const;
 const CommandLongPressData* GetLongPressData() const;
+const CommandGestureData*   GetGestureData() const;
 };
 
 class VCL_DLLPUBLIC CommandExtTextInputData
@@ -300,6 +304,25 @@ public:
 double getY() const { return mnY; }
 };
 
+class VCL_DLLPUBLIC CommandGestureData
+{
+public:
+double const mfX;
+double const mfY;
+GestureEventType const meEventType;
+
+double const mfOffset;
+PanningOrientation const meOrientation;
+
+CommandGestureData(double fX, double fY, GestureEventType eEventType, 
double fOffset, PanningOrientation eOrientation)
+: mfX(fX)
+, mfY(fY)
+, meEventType(eEventType)
+, mfOffset(fOffset)
+, meOrientation(eOrientation)
+{}
+};
+
 enum class CommandEventId
 {
 NONE= 0,
@@ -323,6 +346,7 @@ enum class CommandEventId
 QueryCharPosition   = 20,
 Swipe   = 21,
 LongPress   = 22,
+Gesture = 23,
 };
 
 #endif // INCLUDED_VCL_COMMANDEVENT_HXX
diff --git a/include/vcl/svapp.hxx b/include/vcl/svapp.hxx
index 712f75a0f09d..d89a23e54a13 100644
--- a/include/vcl/svapp.hxx
+++ b/include/vcl/svapp.hxx
@@ -63,6 +63,7 @@ class WorkWindow;
 class NotifyEvent;
 class KeyEvent;
 class MouseEvent;
+class GestureEvent;
 struct ImplSVEvent;
 struct ConvertData;
 
@@ -747,6 +748,8 @@ public:
 */
 static ImplSVEvent *PostMouseEvent( VclEventId nEvent, vcl::Window 
*pWin, MouseEvent const * pMouseEvent );
 
+static ImplSVEvent* PostGestureEvent(VclEventId nEvent, vcl::Window* pWin, 
GestureEvent const * pGestureEvent);
+
 /** Remove mouse and keypress events from a window... any also zoom and 
scroll events
 

Jaromír Wysoglad license statement

2019-03-25 Thread Jaromír Wysoglad
All of my past & future contributions to LibreOffice may be licensed under
the MPLv2/LGPLv3+ dual license.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice

[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-4' - loleaflet/src

2019-03-25 Thread Libreoffice Gerrit user
 loleaflet/src/control/Control.MobileInput.js |   25 +++--
 1 file changed, 23 insertions(+), 2 deletions(-)

New commits:
commit 79b00d7c711e3791b2e9d992c27a12640cac594e
Author: Tor Lillqvist 
AuthorDate: Tue Mar 26 01:53:21 2019 +0200
Commit: Tor Lillqvist 
CommitDate: Tue Mar 26 02:02:11 2019 +0200

tdf#124178: Handle non-BMP character input on mobile devices

Sadly, we must split such into a surrogate pair.

diff --git a/loleaflet/src/control/Control.MobileInput.js 
b/loleaflet/src/control/Control.MobileInput.js
index 467f44dad..d1f65b240 100644
--- a/loleaflet/src/control/Control.MobileInput.js
+++ b/loleaflet/src/control/Control.MobileInput.js
@@ -108,6 +108,12 @@ L.Control.MobileInput = L.Control.extend({
.on(this._textArea, 'blur', this.onLostFocus, this);
},
 
+   _getSurrogatePair: function(codePoint) {
+   var highSurrogate = Math.floor((codePoint - 0x1) / 0x400) + 
0xD800;
+   var lowSurrogate = (codePoint - 0x1) % 0x400 + 0xDC00;
+   return [highSurrogate, lowSurrogate];
+   },
+
onKeyEvents: function (e) {
var keyCode = e.keyCode,
charCode = e.charCode,
@@ -147,12 +153,27 @@ L.Control.MobileInput = L.Control.extend({
unoKeyCode = handler._toUNOKeyCode(keyCode);
}
 
-   docLayer._postKeyboardEvent('input', charCode, 
unoKeyCode);
+   if (charCode > 0x) {
+   // We must handle non-BMP code points as two 
separate key events
+   // because the sad VCL KeyEvent only takes a 
16-bit "characters".
+   var surrogatePair = 
this._getSurrogatePair(charCode);
+   docLayer._postKeyboardEvent('input', 
surrogatePair[0], unoKeyCode);
+   docLayer._postKeyboardEvent('up', 
surrogatePair[0], unoKeyCode);
+   docLayer._postKeyboardEvent('input', 
surrogatePair[1], unoKeyCode);
+   docLayer._postKeyboardEvent('up', 
surrogatePair[1], unoKeyCode);
+   }
+   else {
+   docLayer._postKeyboardEvent('input', charCode, 
unoKeyCode);
+   }
this._lastInput = unoKeyCode;
this._keyHandled = true;
}
else if (e.type === 'keyup') {
-   docLayer._postKeyboardEvent('up', charCode, unoKeyCode);
+   if (charCode <= 0x) {
+   // For non-BMP characters we generated both 
'input' and 'up' events
+   // above already.
+   docLayer._postKeyboardEvent('up', charCode, 
unoKeyCode);
+   }
this._lastInput = null;
this._keyHandled = true;
}
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 124307] FORMATTING: Data validity produces empty drop list for a named cell range

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124307

--- Comment #7 from Ben Elliston  ---
Is the relative vs absolute sheet references explained somewhere in the
documentation? I wasn't able to find much beyond the standard cell reference
material. Thanks.

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

Re: Calc recalculate bugs

2019-03-25 Thread Xisco Fauli
Hello,

Unless there's a good reason to do it, I would prefer not to backport
them to 6.1 for two reasons:

- As Eike mentioned, 6.1.6 is the last release before hitting the EOL.

- The regressions fixed have been around for quite some time now (
introduced in Libo 4.4 and 5.3 )

My two cents

El 25/3/19 a les 17:29, Eike Rathke ha escrit:
> Hi Oliver,
>
> On Friday, 2019-03-22 19:21:23 +0100, Oliver Brinzing wrote:
>
>> btw: are there any plans to backport these fixes to the 6.1 branch?
> I'd say that if https://gerrit.libreoffice.org/69554 is considered to be
> *very* safe (by others than me) then yes, otherwise the upcoming 6.1.6
> is the last 6.1.z release without any chance to fix anything thereafter.
>
> On the other hand, IMHO it can't get worse with the fix than without the
> fix, but add this to famous last words..
>
>   Eike
>
>
> ___
> LibreOffice mailing list
> LibreOffice@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/libreoffice

-- 
Xisco Faulí
Libreoffice QA Team
IRC: x1sc0

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

[Libreoffice-commits] core.git: icon-themes/tango_svg

2019-03-25 Thread Ilmari Lauhakangas (via logerrit)
 icon-themes/tango_svg/cmd/lc_splitcell.svg |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 068880d65081ec2db1af7643fcb9a3680b3119c0
Author: Ilmari Lauhakangas 
AuthorDate: Sun Mar 24 21:47:31 2019 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Tue Mar 26 00:04:21 2019 +0100

Clean up tango_svg/cmd/lc_splitcell.svg

It had some residual junk.

Change-Id: Ia23fa76a4746804a2ca2b8d8d45e70b015bd7477
Reviewed-on: https://gerrit.libreoffice.org/69605
Tested-by: Jenkins
Reviewed-by: Johnny_M 
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/icon-themes/tango_svg/cmd/lc_splitcell.svg 
b/icon-themes/tango_svg/cmd/lc_splitcell.svg
index 71620fcfd826..a3fe3d9a8e9d 100644
--- a/icon-themes/tango_svg/cmd/lc_splitcell.svg
+++ b/icon-themes/tango_svg/cmd/lc_splitcell.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>actionsformat-text-underline<
 path d="m553 186h32v32h-32z" fill="#ec"/>actionsformat-text-underlinefill="url(#c)" opacity=".4" transform="rotate(90)"/>d="m1043.3622-23h2.87v1h-2.87z" fill="url(#c)" opacity=".4" 
 >transform="rotate(90)"/>fill="url(#d)" opacity=".4"/>rx=".83" ry=".92" transform="matrix(-1.0003348 0 0 -1.0119047 
 >1052.30327084946 1039.4988550004)" width="14.95" x="1029.3622" 
 >y="-11.99"/><
 path d="m1043.3622-23h2.87v1h-2.87z" fill="url(#c)" opacity=".4" 
transform="rotate(90)"/>
\ No newline at end of file
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 124330] FORMATTING: mixed / inconsistent font size in presentation mode

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124330

--- Comment #2 from Stephan Diestelhorst  
---
Created attachment 150288
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150288=edit
Presentation view of the same with garbled font rendering

-- 
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 124330] FORMATTING: mixed / inconsistent font size in presentation mode

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124330

--- Comment #3 from Stephan Diestelhorst  
---
Created attachment 150289
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150289=edit
Minimal ODP file showing the issue

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

[Libreoffice-bugs] [Bug 124330] FORMATTING: mixed / inconsistent font size in presentation mode

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124330

--- Comment #1 from Stephan Diestelhorst  
---
Created attachment 150287
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150287=edit
Normal edit view showing sensisble font rendering

-- 
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 124330] New: FORMATTING: mixed / inconsistent font size in presentation mode

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124330

Bug ID: 124330
   Summary: FORMATTING: mixed / inconsistent font size in
presentation mode
   Product: LibreOffice
   Version: 6.2.2.1 rc
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: stephan.diestelhorst+l...@gmail.com

Description:
I am working on a longish deck and there seem to be issues with rendering text
in presentation / full-screen mode.  I am attaching screenshots and a minimal
example (one broken slide from my deck).

This goes away with selecting a different font, and is not present on all
slides.

Steps to Reproduce:
1. open attached ODP
2. ensure everything looks normal in edit view
3. switch to presenter view and see weird font size changes

Actual Results:
The font sizes are inconsistent between letters of text in presenter view

Expected Results:
Font should be rendered properly in presenter view.


Reproducible: Always


User Profile Reset: No



Additional Info:
On openSuSE Tumbleweed.

-- 
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 123999] time change causes the return of "parameter index out of range... using mysql and J/connector

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123999

Julien Nabet  changed:

   What|Removed |Added

 CC||lio...@mamane.lu

--- Comment #13 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I could reproduce this
with a more simple process:
- create brand new odb  file
- choose Mysql then JDBC
- then click by default option + no need to register database

not sure it's useful but I was trying to reproduce the last Dan's comment from
a brand new file
- Select Database > Connection Type
- In the Data Source Properties window, click Next.
- In the Database Properties window, modify the database name.
  add "serverTimezone=EST" without quotes and save

- Click finished and save the database document file
- close LO

Indeed, there's db:parameter-name-substitution="false" added
With this patch, I don't reproduce this:
diff --git a/dbaccess/source/core/dataaccess/ModelImpl.cxx
b/dbaccess/source/core/dataaccess/ModelImpl.cxx
index 00463902b340..bcf15cbbbf22 100644
--- a/dbaccess/source/core/dataaccess/ModelImpl.cxx
+++ b/dbaccess/source/core/dataaccess/ModelImpl.cxx
@@ -985,7 +985,7 @@ const AsciiPropertyValue*
ODatabaseModelImpl::getDefaultDataSourceSettings()
 AsciiPropertyValue( "LocalSocket",makeAny( OUString()
) ),
 AsciiPropertyValue( "NamedPipe",  makeAny( OUString()
) ),
 // misc known driver settings
-AsciiPropertyValue( "ParameterNameSubstitution",  makeAny( false ) ),
+AsciiPropertyValue( "ParameterNameSubstitution",  makeAny( true ) ),
 AsciiPropertyValue( "AddIndexAppendix",   makeAny( true ) ),
 AsciiPropertyValue( "IgnoreDriverPrivileges", makeAny( true ) ),
 AsciiPropertyValue( "ImplicitCatalogRestriction", ::cppu::UnoType<
OUString >::get() ),

Lionel: any thoughts about this patch? Does it seem the right lead or would you
prefer I provide a bt from this location to understand the full mechanism?

-- 
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 124314] remove MACRO is not working.

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124314

Luuk  changed:

   What|Removed |Added

 Resolution|NOTABUG |---
 Ever confirmed|0   |1
 Status|RESOLVED|REOPENED

--- Comment #3 from Luuk  ---
the button is not active, see screenshot.

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

[Libreoffice-bugs] [Bug 124314] remove MACRO is not working.

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124314

--- Comment #2 from Luuk  ---
Created attachment 150286
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150286=edit
delete-button-not-active 2019-03-25 232810.jpg

-- 
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 119683] Draw Export Section

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119683

--- Comment #5 from Erik  ---
Version 6.2.2.2 (x64)

Draw export to .gif .png
I made a round object on A4 format.(fontwork letter C)
The object is smaller than 50% of the page.
The rest of the page is empty.
Export to gif/png stretches the object to the outlines of the page.
On A4 I see an egg shaped object that is maximized to the outlines.
Export to .gif gives the same image size but the object has the correct size.

-- 
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 122902] Impress hangs for a while when opening or saving a document. FILEOPEN FILESAVE

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122902

Clay Spence  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #14 from Clay Spence  ---
(In reply to Xisco Faulí from comment #13)
> Hello Clay,
> Does it hang if you launch LibreOffice with SAL_USE_VCLPLUGIN=gen ?

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 120727] Excessive CPU usage under normal use (typing)

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120727

rar...@pm.me changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #29 from rar...@pm.me ---
Hello,

i confirm the bug, same problem than  laur...@norbit.no  with the document he
links.

Laggy as hell, CPU going above 76percent


Version: 6.2.2.1
Build ID: fcd633fb1bf21b0a99c9acb3ad6e526437947b01
CPU threads: 4; OS: Mac OS X 10.14.3; UI render: default; VCL: osx; 
Locale: fr-FR (en_FR.UTF-8); UI-Language: en-US
Calc: threaded


computer:

Model Name: MacBook Pro
  Model Identifier: MacBookPro13,1
  Processor Name:   Intel Core i5
  Processor Speed:  2 GHz
  Number of Processors: 1
  Total Number of Cores:2
  L2 Cache (per Core):  256 KB
  L3 Cache: 4 MB
  Memory:   8 GB
  Boot ROM Version: 228.0.0.0.0
  SMC Version (system): 2.36f97


software:
mac OS mojave
version 10.14.3 (18D109)


thanks

-- 
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 124315] cell values return from 'old' paste

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124315

--- Comment #4 from Luuk  ---
Also notice that the 'running ants' are on a 'not-visible' place on screen.

So, if this is not a bug, it could be undesired/unwanted behavior.
(let phrase this with care   )

Questions that come to mind:
1) Is there a possibility to stop the 'running ants' after 1 paste?
2) Is there a possibility to ask i you really want to paste, if the 'running
ants'are not visible on screen (i.e. other sheet, or maybe simply on row #1
when you are currently on row #2
3) a combination of the above, because you do not want to answer a question
when pasting for the first time

-- 
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 124296] Writer: Link underscore disappears

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124296

raal  changed:

   What|Removed |Added

 CC||r...@post.cz
Version|4.4.7.2 release |4.1.0.4 release

--- Comment #4 from raal  ---
repro Version 4.1.0.0.alpha0+ (Build ID:
efca6f15609322f62a35619619a6d5fe5c9bd5a)

-- 
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 123658] When searching for a text string in slide notes, there is no obvious way to restart a search at the first slide.

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123658

raal  changed:

   What|Removed |Added

 CC||ke...@collabora.com,
   ||r...@post.cz
   Keywords|bibisectRequest |bibisected, bisected

--- Comment #5 from raal  ---
This seems to have begun at the below commit.
Adding Cc: to Jan Holesovsky ; Could you possibly take a look at this one?
Thanks

bbc8dfb188adf653a3fe96b5bd23b06274a2161d is the first bad commit
commit bbc8dfb188adf653a3fe96b5bd23b06274a2161d
Author: Jenkins Build User 
Date:   Sat Dec 9 13:41:47 2017 +0100

source sha:ed5450f2a5ed8e72b48b4d976217746cea04a5c9

author  Jan Holesovsky 2016-01-25 21:49:31 +0100
committer   Jan Holesovsky 2016-01-25 22:01:47
+0100
commit  ed5450f2a5ed8e72b48b4d976217746cea04a5c9 (patch)
treef2847574a748202fc4a89cf4442424347bea4cb6
parent  dcdc98b73601870a0d04a8d5253e56a4db59a266 (diff)
sd lok: Fix normal 'search' performed after a 'search all'.

-- 
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 124250] LibreOffice crashes when applying an hyperlink to text inside a text box

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124250

Gabor Kelemen  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-commits] core.git: 19 commits - readlicense_oo/license

2019-03-25 Thread Andras Timar (via logerrit)
 readlicense_oo/license/license.xml |  620 ++---
 1 file changed, 451 insertions(+), 169 deletions(-)

New commits:
commit f7187feef00a75e492380e13a6f7c2e323694748
Author: Andras Timar 
AuthorDate: Mon Mar 25 17:50:42 2019 +0100
Commit: Andras Timar 
CommitDate: Mon Mar 25 22:34:42 2019 +0100

license: fix ordered list

Change-Id: Ibed1e498226e2e1672941a3a51f3b6abdfb471af

diff --git a/readlicense_oo/license/license.xml 
b/readlicense_oo/license/license.xml
index 60244e855fe5..ff18817bac47 100644
--- a/readlicense_oo/license/license.xml
+++ b/readlicense_oo/license/license.xml
@@ -536,12 +536,8 @@
 
 Redistributions of source code must retain the above copyright 
notice, this list of conditions and the
 following disclaimer.
-
-
 Redistributions in binary form must reproduce the above copyright 
notice, this list of conditions and the
 following disclaimer in the documentation and/or other materials 
provided with the distribution.
-
-
 Neither the name of the Linux Foundation nor the names of its 
contributors may be used to endorse or
 promote products derived from this software without specific prior 
written permission.
 
commit e91873fb718c035231aa25c8059e62edc76918e5
Author: Andras Timar 
AuthorDate: Mon Mar 25 17:48:54 2019 +0100
Commit: Andras Timar 
CommitDate: Mon Mar 25 22:34:42 2019 +0100

license: add libjepg-turbo

Change-Id: Ifc5c9686941671e261fef9a57b04751c6b918ce4

diff --git a/readlicense_oo/license/license.xml 
b/readlicense_oo/license/license.xml
index 7c044f7407f7..60244e855fe5 100644
--- a/readlicense_oo/license/license.xml
+++ b/readlicense_oo/license/license.xml
@@ -583,61 +583,6 @@
 the copyright holder.
 All trademarks and registered trademarks mentioned herein are the 
property of their respective owners.
 
-
-IJG JPEG Library
-The following software may be included in this product: IJG JPEG 
Library. Use of any of this software is
-governed by the terms of the license below:
-In plain English:
-
-We don't promise that this software works. (But if you find 
any bugs, please let us know!) 
-You can use this software for whatever you want. You don't 
have to pay us.
-You may not pretend that you wrote this software. If you use 
it in a program, you must acknowledge
-somewhere in your documentation that you've used the IJG code.
-
-In legalese:
-The authors make NO WARRANTY or representation, either express or 
implied, with respect to this software,
-its quality, accuracy, merchantability, or fitness for a particular 
purpose.  This software is provided "AS
-IS", and you, its user, assume the entire risk as to its quality and 
accuracy.
-This software is copyright (C) 1991-1998, Thomas G. Lane. All 
Rights Reserved except as specified below.
-Permission is hereby granted to use, copy, modify, and distribute 
this software (or portions thereof) for
-any purpose, without fee, subject to these conditions: (1) If any part 
of the source code for this software is
-distributed, then this README file must be included, with this 
copyright and no-warranty notice unaltered; and
-any additions, deletions, or changes to the original files must be 
clearly indicated in accompanying
-documentation. (2) If only executable code is distributed, then the 
accompanying documentation must state that
-"this software is based in part on the work of the Independent JPEG 
Group". (3) Permission for use of this
-software is granted only if the user accepts full responsibility for 
any undesirable consequences; the authors
-accept NO LIABILITY for damages of any kind.
-These conditions apply to any software derived from or based on the 
IJG code, not just to the unmodified
-library.  If you use our work, you ought to acknowledge us.
-Permission is NOT granted for the use of any IJG author's name or 
company name in advertising or publicity
-relating to this software or products derived from it.  This software 
may be referred to only as "the
-Independent JPEG Group's software".
-We specifically permit and encourage the use of this software as 
the basis of commercial products, provided
-that all warranty or liability claims are assumed by the product 
vendor.
-ansi2knr.c is included in this distribution by permission of L. 
Peter Deutsch, sole proprietor of its
-copyright holder, Aladdin Enterprises of Menlo Park, CA. ansi2knr.c is 
NOT covered by the above copyright and
-conditions, but instead by the usual distribution terms of the Free 
Software Foundation; principally, that you
-must include source code if you redistribute it.  (See the file 
ansi2knr.c 

[Libreoffice-bugs] [Bug 124250] LibreOffice crashes when applying an hyperlink to text inside a text box

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124250

Gabor Kelemen  changed:

   What|Removed |Added

 CC||kelem...@ubuntu.com

--- Comment #2 from Gabor Kelemen  ---
Created attachment 150285
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150285=edit
The example file saved by current 6.3 master

I gave it a try and with my own build it no longer hangs. 
With the 6.0.7 build from Ubuntu 18.04 I can reproduce the hanging.

However, there are several problems with this document:
- The "Certificate of Cloud Security Knowledge" text in the textbox had line
breaks, these got lost on adding the link. Now the text is "Certificateof
CloudSecurityKnowledge"
- The link as a grey clickable object appears only when I click into the shape
object to edit it. 
- Even then the link does not open the site, although when it is selected and
the hyperlink window is opened the address is correctly present.

So even if in master Writer does no longer freeze, there are many problems with
reaching the expected behavior.

Maybe you could try positioning the link in your document in a 1x1 table cell
as plain text until all the above is sorted out.

-- 
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 124329] New: Published attribute of shapes in sheets regarding the now 3 anchoring types is missing

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124329

Bug ID: 124329
   Summary: Published attribute of shapes in sheets regarding the
now 3 anchoring types is missing
   Product: LibreOffice
   Version: 6.1.2.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: sdk
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: j...@psilosoph.de

Concerning the API for shapes inserted into spreadsheets
("com.sun.star.comp.sc.ScShapeObj" supporting the service
"com.sun.star.sheet.Shape"):

Older versions of LibO only knew 2 types of anchoring a shape in a spreadsheet:
-1- To the page
-2- To a cell
The types were distinguished by the .Anchor property which always was basically
a SheetCellRange, but was a complete spreadsheet (ScTableSheetObj) in the first
case, and a single cell (ScCellObj) in the second.  

Now there are three types of anchoring, but the anchor still can only be of the
two mentioned types. An additional PUBLISHED (and not read-only) property
distinguishing the anchor settings 'To Cell' and 'To Cell (resize with cell)'
should offer a way for users to ask for the new anchoring subtypes and to set
it if needed.

-- 
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 103182] [META] GTK3-specific bugs

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103182
Bug 103182 depends on bug 124234, which changed state.

Bug 124234 Summary: Paragraph styles: some settings get lost when switching to 
different tab without Apply
https://bugs.documentfoundation.org/show_bug.cgi?id=124234

   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 107833] [META] Writer paragraph style bugs and enhancements

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107833
Bug 107833 depends on bug 124234, which changed state.

Bug 124234 Summary: Paragraph styles: some settings get lost when switching to 
different tab without Apply
https://bugs.documentfoundation.org/show_bug.cgi?id=124234

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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

[Libreoffice-commits] core.git: cui/source cui/uiconfig

2019-03-25 Thread Caolán McNamara (via logerrit)
 cui/source/inc/paragrph.hxx  |   30 +++
 cui/source/tabpages/paragrph.cxx |  104 ++-
 cui/uiconfig/ui/textflowpage.ui  |3 +
 3 files changed, 126 insertions(+), 11 deletions(-)

New commits:
commit 0b3419f1ab28941d7ab8a38b2ceedbb5e6dfaa00
Author: Caolán McNamara 
AuthorDate: Mon Mar 25 13:30:07 2019 +
Commit: Caolán McNamara 
CommitDate: Mon Mar 25 22:16:25 2019 +0100

Resolves: tdf#123550 allow returning to TRISTATE_INDET

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

diff --git a/cui/source/inc/paragrph.hxx b/cui/source/inc/paragrph.hxx
index 11fd9597a92c..e9de90c4131e 100644
--- a/cui/source/inc/paragrph.hxx
+++ b/cui/source/inc/paragrph.hxx
@@ -182,6 +182,18 @@ public:
 virtual voidPageCreated(const SfxAllItemSet& aSet) override;
 };
 
+struct TriStateEnabled
+{
+TriState eState;
+bool bTriStateEnabled;
+TriStateEnabled()
+: eState(TRISTATE_INDET)
+, bTriStateEnabled(true)
+{
+}
+void ButtonToggled(weld::ToggleButton& rToggle);
+};
+
 // class SvxExtParagraphTabPage --
 /*
 [Description]
@@ -221,6 +233,15 @@ protected:
 private:
 SvxExtParagraphTabPage(TabPageParent pParent, const SfxItemSet& rSet);
 
+TriStateEnabled aHyphenState;
+TriStateEnabled aPageBreakState;
+TriStateEnabled aApplyCollState;
+TriStateEnabled aPageNumState;
+TriStateEnabled aKeepTogetherState;
+TriStateEnabled aKeepParaState;
+TriStateEnabled aOrphanState;
+TriStateEnabled aWidowState;
+
 boolbPageBreak;
 boolbHtmlMode;
 sal_uInt16  nStdPos;
@@ -258,6 +279,14 @@ private:
 std::unique_ptr m_xWidowRowNo;
 std::unique_ptr m_xWidowRowLabel;
 
+void HyphenClickHdl();
+void PageNumBoxClickHdl();
+void ApplyCollClickHdl();
+void PageBreakHdl();
+void KeepTogetherHdl();
+void OrphanHdl();
+void WidowHdl();
+
 DECL_LINK(PageBreakHdl_Impl, weld::ToggleButton&, void);
 DECL_LINK(KeepTogetherHdl_Impl, weld::ToggleButton&, void);
 DECL_LINK(WidowHdl_Impl, weld::ToggleButton&, void);
@@ -267,6 +296,7 @@ private:
 DECL_LINK(PageBreakPosHdl_Impl, weld::ComboBox&, void);
 DECL_LINK(PageBreakTypeHdl_Impl, weld::ComboBox&, void);
 DECL_LINK(PageNumBoxClickHdl_Impl, weld::ToggleButton&, void);
+DECL_LINK(KeepParaBoxClickHdl_Impl, weld::ToggleButton&, void);
 
 virtual voidPageCreated(const SfxAllItemSet& aSet) override;
 };
diff --git a/cui/source/tabpages/paragrph.cxx b/cui/source/tabpages/paragrph.cxx
index 0663807d37e2..5fd30baa24a0 100644
--- a/cui/source/tabpages/paragrph.cxx
+++ b/cui/source/tabpages/paragrph.cxx
@@ -1573,6 +1573,7 @@ void SvxExtParagraphTabPage::Reset( const SfxItemSet* 
rSet )
 {
 const SvxHyphenZoneItem& rHyphen =
 static_cast(rSet->Get( _nWhich ));
+aHyphenState.bTriStateEnabled = false;
 
 bIsHyphen = rHyphen.IsHyphen();
 m_xHyphenBox->set_state(bIsHyphen ? TRISTATE_TRUE : TRISTATE_FALSE);
@@ -1599,6 +1600,7 @@ void SvxExtParagraphTabPage::Reset( const SfxItemSet* 
rSet )
 {
 case SfxItemState::SET:
 {
+aPageNumState.bTriStateEnabled = false;
 m_xPageNumBox->set_state(TRISTATE_TRUE);
 SfxUInt16Item const*const 
pItem(rSet->GetItem(_nWhich));
 const sal_uInt16 nPageNum(pItem->GetValue());
@@ -1607,6 +1609,7 @@ void SvxExtParagraphTabPage::Reset( const SfxItemSet* 
rSet )
 }
 case SfxItemState::DONTCARE:
 {
+aPageNumState.bTriStateEnabled = true;
 m_xPageNumBox->set_state(TRISTATE_INDET);
 break;
 }
@@ -1614,6 +1617,7 @@ void SvxExtParagraphTabPage::Reset( const SfxItemSet* 
rSet )
 case SfxItemState::DEFAULT:
 case SfxItemState::DISABLED:
 {
+aPageNumState.bTriStateEnabled = false;
 m_xPageNumBox->set_state(TRISTATE_FALSE);
 break;
 }
@@ -1631,6 +1635,8 @@ void SvxExtParagraphTabPage::Reset( const SfxItemSet* 
rSet )
 
 if ( eItemState >= SfxItemState::SET )
 {
+aApplyCollState.bTriStateEnabled = false;
+
 const SvxPageModelItem& rModel =
 static_cast(rSet->Get( _nWhich ));
 const OUString& aStr( rModel.GetValue() );
@@ -1642,6 +1648,7 @@ void SvxExtParagraphTabPage::Reset( const SfxItemSet* 
rSet )
 bIsPageModel = true;
 
 m_xPageBreakBox->set_sensitive(true);
+aPageBreakState.bTriStateEnabled = false;
 m_xBreakTypeFT->set_sensitive(true);
 m_xBreakTypeLB->set_sensitive(true);
 m_xBreakPositionFT->set_sensitive(true);
@@ -1662,6 +1669,7 @@ void 

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

2019-03-25 Thread Caolán McNamara (via logerrit)
 sw/source/uibase/fldui/fldwrap.cxx |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 1a84b1c3978c691b857d481826dbe160666eb3ea
Author: Caolán McNamara 
AuthorDate: Mon Mar 25 13:41:58 2019 +
Commit: Caolán McNamara 
CommitDate: Mon Mar 25 22:15:25 2019 +0100

Resolves: tdf#124319 crash on restoring redline SfxChildWin

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

diff --git a/sw/source/uibase/fldui/fldwrap.cxx 
b/sw/source/uibase/fldui/fldwrap.cxx
index c65c1d1b17d0..69cb72de640a 100644
--- a/sw/source/uibase/fldui/fldwrap.cxx
+++ b/sw/source/uibase/fldui/fldwrap.cxx
@@ -45,7 +45,10 @@ SwChildWinWrapper::SwChildWinWrapper(vcl::Window 
*pParentWindow, sal_uInt16 nId)
 
 IMPL_LINK_NOARG(SwChildWinWrapper, UpdateHdl, Timer *, void)
 {
-GetController()->Activate();// update dialog
+if (GetController())
+GetController()->Activate();// update dialog
+else if (GetWindow())
+GetWindow()->Activate();// update dialog
 }
 
 // newly initialise dialog after Doc switch
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-03-25 Thread Caolán McNamara (via logerrit)
 vcl/unx/gtk3/gtk3gtkinst.cxx |   13 ++---
 1 file changed, 10 insertions(+), 3 deletions(-)

New commits:
commit 8fb0a3dd9f3dc68bdd5670d2d071e6f225111dc7
Author: Caolán McNamara 
AuthorDate: Mon Mar 25 14:45:45 2019 +
Commit: Caolán McNamara 
CommitDate: Mon Mar 25 22:14:49 2019 +0100

Resolves: tdf#124234 page leave signal missing on move to overflow deck

we were emitting page-entered but not emitting the page-leave signal

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

diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx
index d7286685dbcb..4dd06f61b4eb 100644
--- a/vcl/unx/gtk3/gtk3gtkinst.cxx
+++ b/vcl/unx/gtk3/gtk3gtkinst.cxx
@@ -3570,6 +3570,11 @@ private:
 return;
 }
 
+// check if we are allowed leave before attempting to resplit the 
notebooks
+bool bAllow = !m_aLeavePageHdl.IsSet() || 
m_aLeavePageHdl.Call(get_current_page_ident());
+if (!bAllow)
+return;
+
 disable_notify_events();
 
 // take the overflow pages, and put them back at the end of the normal 
one
@@ -3579,11 +3584,13 @@ private:
 std::swap(m_nStartTabCount, m_nEndTabCount);
 split_notebooks();
 
+gtk_notebook_set_current_page(m_pNotebook, nNewPage);
+
 enable_notify_events();
 
-// we want to call this outside enable_notify_events so that the main
-// notebook switch-page callback is triggered
-gtk_notebook_set_current_page(m_pNotebook, nNewPage);
+// trigger main notebook switch-page callback
+OString sNewIdent(get_page_ident(m_pNotebook, nNewPage));
+m_aEnterPageHdl.Call(sNewIdent);
 }
 
 static OString get_page_ident(GtkNotebook *pNotebook, guint nPage)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: vcl/commonfuzzer.mk

2019-03-25 Thread Caolán McNamara (via logerrit)
 vcl/commonfuzzer.mk |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 06dac856e7749ec53d4180297b6672f2d2e2a4dd
Author: Caolán McNamara 
AuthorDate: Mon Mar 25 13:49:19 2019 +
Commit: Caolán McNamara 
CommitDate: Mon Mar 25 22:13:21 2019 +0100

ctl (UnoControls) needed now

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

diff --git a/vcl/commonfuzzer.mk b/vcl/commonfuzzer.mk
index 664e31e554c7..3d87c14d795a 100644
--- a/vcl/commonfuzzer.mk
+++ b/vcl/commonfuzzer.mk
@@ -47,6 +47,7 @@ fuzzer_core_libraries = \
 canvastools \
 configmgr \
 cppcanvas \
+ctl \
 dbtools \
 deployment \
 deploymentmisc \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: external/cairo

2019-03-25 Thread Caolán McNamara (via logerrit)
 external/cairo/ExternalProject_cairo.mk |1 +
 1 file changed, 1 insertion(+)

New commits:
commit c0cc6c39617bd6ea70e96d9a72a2f36deb5ad3c5
Author: Caolán McNamara 
AuthorDate: Mon Mar 25 11:45:37 2019 +
Commit: Caolán McNamara 
CommitDate: Mon Mar 25 22:13:03 2019 +0100

cairo configure fails with gold linker with sanitizers enabled

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

diff --git a/external/cairo/ExternalProject_cairo.mk 
b/external/cairo/ExternalProject_cairo.mk
index 6ce6993408cd..da3e59d145a8 100644
--- a/external/cairo/ExternalProject_cairo.mk
+++ b/external/cairo/ExternalProject_cairo.mk
@@ -47,6 +47,7 @@ $(call gb_ExternalProject_get_state_target,cairo,build) :
$(if $(filter-out ANDROID iOS,$(OS)),CFLAGS="$(if $(debug),-g) 
$(ZLIB_CFLAGS)" ) \
$(if $(filter ANDROID iOS,$(OS)),PKG_CONFIG=./dummy_pkg_config) 
\
LIBS="$(ZLIB_LIBS)" \
+   $(if $(filter -fsanitize=%,$(LDFLAGS)),LDFLAGS="$(LDFLAGS) 
-fuse-ld=bfd") \
pixman_CFLAGS="-I$(call 
gb_UnpackedTarball_get_dir,pixman)/pixman" \
pixman_LIBS="-L$(call 
gb_UnpackedTarball_get_dir,pixman)/pixman/.libs -lpixman-1" \
png_REQUIRES="trick_configure_into_using_png_CFLAGS_and_LIBS" \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-ux-advise] [Bug 124249] Unable to use keyboard navigation to access Brochure radio button in Print dialog

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124249

Jim Raykowski  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |NOTABUG

--- Comment #3 from Jim Raykowski  ---
(In reply to Xisco Faulí from comment #2)
> I'm not sure this is a bug.
> Page per sheet and Brochure are part of the same group. Once the focus is on
> Page per sheet you can move to Brochure with the down arrow key.
> @Jim, what do you think?

Xisco, I think you are correct. This is not a bug.

-- 
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 124249] Unable to use keyboard navigation to access Brochure radio button in Print dialog

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124249

Jim Raykowski  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |NOTABUG

--- Comment #3 from Jim Raykowski  ---
(In reply to Xisco Faulí from comment #2)
> I'm not sure this is a bug.
> Page per sheet and Brochure are part of the same group. Once the focus is on
> Page per sheet you can move to Brochure with the down arrow key.
> @Jim, what do you think?

Xisco, I think you are correct. This is not a bug.

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

[Libreoffice-bugs] [Bug 61914] [META] Start Center bugs and enhancements

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61914
Bug 61914 depends on bug 124280, which changed state.

Bug 124280 Summary: Recent in Start Center always highlighted
https://bugs.documentfoundation.org/show_bug.cgi?id=124280

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |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-bugs] [Bug 102005] START CENTER: Pressing F6 stops at thumbnail list view

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102005

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 124280] Recent in Start Center always highlighted

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124280

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||2005,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||0195
 Resolution|--- |WORKSFORME
 CC||vstuart.fo...@utsa.edu

--- Comment #7 from V Stuart Foote  ---
Look at work for bug 87697, decision was to have the Recents thumbnails rather
than the Templates thumbnails enabled by default.

That has not changed, Recent documents backing window rather than Templates
backing window is enabled.

The Cursor focus should open to the Open File button. It does with default
profile in master/6.3.0alpha0+.

It behaves correctly with  &  cycling (since correction of bug
102005)

It behaves correctly with  cycling

It behaves correctly with  &  cycling

It behaves correctly with cursor ,  or ,  within block
of gtk elements.

In short--keyboard navigation is correct. And StartCenter GUI should focus to
Open File on launch. The Recent Files "selection" is the expected mode.

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

2019-03-25 Thread Michael Meeks (via logerrit)
 cppuhelper/source/servicemanager.cxx |   38 +--
 1 file changed, 36 insertions(+), 2 deletions(-)

New commits:
commit 9bc50c7efd4f4e8a5c8840bd5cd9a5a9ee31f1a8
Author: Michael Meeks 
AuthorDate: Fri Mar 22 18:48:41 2019 +0100
Commit: Michael Meeks 
CommitDate: Mon Mar 25 21:32:28 2019 +0100

preload: add the ability to disable various components.

Helps filter stupid stuff that makes no sense for online - eg.
reportbuilder or jdbc.

Change-Id: I40e06954c45fdefd21528202f4587ae83eb994c2
Reviewed-on: https://gerrit.libreoffice.org/69567
Tested-by: Jenkins
Reviewed-by: Michael Meeks 

diff --git a/cppuhelper/source/servicemanager.cxx 
b/cppuhelper/source/servicemanager.cxx
index 765204301e1f..93a060e21fa4 100644
--- a/cppuhelper/source/servicemanager.cxx
+++ b/cppuhelper/source/servicemanager.cxx
@@ -1789,6 +1789,22 @@ void 
cppuhelper::ServiceManager::preloadImplementations() {
 
 std::cerr << "preload:";
 std::vector aReported;
+std::vector aDisabled;
+OUStringBuffer aDisabledMsg("Disabled: ");
+
+/// Allow external callers & testers to disable certain components
+const char *pDisable = getenv("UNODISABLELIBRARY");
+if (pDisable)
+{
+OUString aDisable(pDisable, strlen(pDisable), RTL_TEXTENCODING_UTF8);
+for (sal_Int32 i = 0; i >= 0; )
+{
+OUString tok = aDisable.getToken(0, ' ', i);
+tok = tok.trim();
+if (!tok.isEmpty())
+aDisabled.push_back(tok);
+}
+}
 
 // loop all implementations
 for (const auto& rEntry : data_.namedImplementations)
@@ -1800,13 +1816,28 @@ void 
cppuhelper::ServiceManager::preloadImplementations() {
 if (aLibrary.isEmpty())
 continue;
 
+OUString simplified = simplifyModule(aLibrary);
+bool bDisabled =
+std::find(aDisabled.begin(), aDisabled.end(), simplified) != 
aDisabled.end();
+
 if (std::find(aReported.begin(), aReported.end(), aLibrary) == 
aReported.end())
 {
-std::cerr << " " << simplifyModule(aLibrary);
-std::cerr.flush();
+if (bDisabled)
+{
+aDisabledMsg.append(simplified);
+aDisabledMsg.append(" ");
+}
+else
+{
+std::cerr << " " << simplified;
+std::cerr.flush();
+}
 aReported.push_back(aLibrary);
 }
 
+if (bDisabled)
+continue;
+
 // expand absolute URI implementation component library
 aUri = cppu::bootstrap_expandUri(aLibrary);
 }
@@ -1928,6 +1959,9 @@ void cppuhelper::ServiceManager::preloadImplementations() 
{
 }
 std::cerr << std::endl;
 
+std::cerr << aDisabledMsg.makeStringAndClear() << "\n";
+std::cerr.flush();
+
 // Various rather important uno mappings.
 static struct {
 const char *mpFrom;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 124288] files of images_helpimg.zip are already in the localized help package

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124288

Jérôme  changed:

   What|Removed |Added

Summary|the content of  |files of images_helpimg.zip
   |images_helpimg.zip could be |are already in the
   |split into localization |localized help package
   |packages|
 CC||jerome.bo...@wanadoo.fr

--- Comment #1 from Jérôme  ---
All above files are into the lodevbasis6.3-fr-help_6.3.0.0.alpha0-1_amd64
package.

-- 
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 124280] Recent in Start Center always highlighted

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124280

Xisco Faulí  changed:

   What|Removed |Added

Version|6.3.0.0.alpha0+ Master  |5.3.7.2 release

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

[Libreoffice-bugs] [Bug 124280] Recent in Start Center always highlighted

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124280

--- Comment #6 from Telesto  ---
Also no repro for
Versie: 5.2.4.2 
Build ID: 3d5603e1122f0f102b62521720ab13a38a4e0eb0
CPU Threads: 4; Versie besturingssysteem:Windows 6.2; UI Render: standaard; 
Locale: nl-NL (nl_NL); 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 61914] [META] Start Center bugs and enhancements

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61914
Bug 61914 depends on bug 124280, which changed state.

Bug 124280 Summary: Recent in Start Center always highlighted
https://bugs.documentfoundation.org/show_bug.cgi?id=124280

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|NOTABUG |---

-- 
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 124280] Recent in Start Center always highlighted

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124280

Telesto  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Resolution|NOTABUG |---
 Status|RESOLVED|UNCONFIRMED

--- Comment #5 from Telesto  ---
(In reply to Xisco Faulí from comment #4)
> This has been the case since the start center was implemented. Closing as
> RESOLVED NOTABUG

Are you sure?

I dont' repro it in
Versie: 5.0.6.3 (x64)
Build ID: 490fc03b25318460cfc54456516ea2519c11d1aa
Locale: nl-NL (nl_NL)

nor in 
4.4.7.2

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

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

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103459
Bug 103459 depends on bug 124263, which changed state.

Bug 124263 Summary: Sidebar extensions with large getMinimalWidth cause issues
https://bugs.documentfoundation.org/show_bug.cgi?id=124263

   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 75767] CONFIGURATION: Quick launch not activated despite being selected in install

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75767

--- Comment #10 from petitlou60  ---
I think it is better to solve this bug definitiveluy

-- 
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 124328] New: [FORMATTING] Changing the style changes the original language

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124328

Bug ID: 124328
   Summary: [FORMATTING] Changing the style changes the original
language
   Product: LibreOffice
   Version: 6.1.5.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jonathan.bus...@outlook.be

Description:
Changing the style of a line of text changes its language to English (U.S.A.).
It is possible to work around the problem by changing the language of the text
again.

Steps to Reproduce:
1. Create your document.
2. Change the language of the document to French (Belgium).
3. Type text.
4. Modify its style (to any of them).

Actual Results:
The text whose style has changed is now considered as English (U.S.A.).

Expected Results:
Leave the text in the original language: French (Belgium).


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Version: 6.1.5.2 (x64)
Build ID: 90f8dcf33c87b3705e78202e3df5142b201bd805
Threads CPU : 16; OS : Windows 10.0; UI Render : par défaut; 
Locale : fr-FR (fr_FR); Calc: group 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 109072] [META] XLS (binary) format bug tracker

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109072
Bug 109072 depends on bug 124202, which changed state.

Bug 124202 Summary: No possible to connect to Internet sites from Calc 
(hyperlinks)
https://bugs.documentfoundation.org/show_bug.cgi?id=124202

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 120543] [META] Bugs and enhancements around hyperlinks in Calc

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120543
Bug 120543 depends on bug 124202, which changed state.

Bug 124202 Summary: No possible to connect to Internet sites from Calc 
(hyperlinks)
https://bugs.documentfoundation.org/show_bug.cgi?id=124202

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 124202] No possible to connect to Internet sites from Calc (hyperlinks)

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124202

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
 Resolution|--- |DUPLICATE
 Status|NEW |RESOLVED

--- Comment #6 from Xisco Faulí  ---
Duplicate of bug 124318

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

-- 
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 124318] FILEOPEN: XLS Hyperlink URL incorrect

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124318

Xisco Faulí  changed:

   What|Removed |Added

 CC||jak...@free.fr

--- Comment #7 from Xisco Faulí  ---
*** Bug 124202 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 61914] [META] Start Center bugs and enhancements

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61914
Bug 61914 depends on bug 124280, which changed state.

Bug 124280 Summary: Recent in Start Center always highlighted
https://bugs.documentfoundation.org/show_bug.cgi?id=124280

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |NOTABUG

-- 
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 124280] Recent in Start Center always highlighted

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124280

Xisco Faulí  changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 Status|NEW |RESOLVED

--- Comment #4 from Xisco Faulí  ---
This has been the case since the start center was implemented. Closing as
RESOLVED NOTABUG

-- 
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 124280] Recent in Start Center always highlighted

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124280

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #3 from Xisco Faulí  ---
Created attachment 150284
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150284=edit
screenshot from LibreOffice 5.3.7.2

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

[Libreoffice-bugs] [Bug 124266] Formula result not repainted immediately after Cut move.

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124266

Dennis Francis  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |dennisfrancis...@gmail.com
   |desktop.org |
 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 124251] Basic script error after update from LO 6.1.X to LO 6.2.X

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124251

Xisco Faulí  changed:

   What|Removed |Added

Version|6.2.2.2 release |6.2.0.0.alpha0+

-- 
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 124327] Calc. Wrong render of legend's font in Chart (OpenGL enabled)

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124327

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

   What|Removed |Added

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

-- 
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 124327] Calc. Wrong render of legend's font in Chart (OpenGL enabled)

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124327

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

   What|Removed |Added

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

-- 
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 114209] Problems with rendering vertical text in charts - no anti-aliasing when OpenGL is enabled

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114209

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

   What|Removed |Added

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

-- 
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 106807] [OpenGL] Wrong render text on chart in Calc

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106807

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

   What|Removed |Added

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

-- 
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 124327] Calc. Wrong render of legend's font in Chart (OpenGL enabled)

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124327

--- Comment #4 from Roman Kuznetsov <79045_79...@mail.ru> ---
Created attachment 150283
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150283=edit
OpenGL disabled

-- 
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 124327] Calc. Wrong render of legend's font in Chart (OpenGL enabled)

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124327

--- Comment #3 from Roman Kuznetsov <79045_79...@mail.ru> ---
Created attachment 150282
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150282=edit
OpenGL enabled

-- 
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 124327] Calc. Wrong render of legend's font in Chart (OpenGL enabled)

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124327

--- Comment #2 from Roman Kuznetsov <79045_79...@mail.ru> ---
Created attachment 150281
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150281=edit
Example chart

-- 
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 93529] [META] VCL/OpenGL rendering tracker bug for 5.0+

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93529

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

   What|Removed |Added

 Depends on||124327


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=124327
[Bug 124327] Calc. Wrong render of legend's font in Chart (OpenGL enabled)
-- 
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 124327] Calc. Wrong render of legend's font in Chart (OpenGL enabled)

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124327

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

   What|Removed |Added

   Keywords||bibisected, bisected,
   ||regression
 Blocks||93529, 108543

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
it's regression in 6.1, I bisected it

$ git bisect bad
4be0c5ca7f2659e747b728c75387cb3c82b7dcf5 is the first bad commit
commit 4be0c5ca7f2659e747b728c75387cb3c82b7dcf5
Author: Norbert Thiebaud 
Date:   Tue Oct 9 07:53:09 2018 -0700

source sha:60011cefbccd91065dadf66896a688b807e76964

https://gerrit.libreoffice.org/#/c/61312/ - it's cherrypick from

https://gerrit.libreoffice.org/#/c/61219/

CC: Miklos and Xisco


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=93529
[Bug 93529] [META] VCL/OpenGL rendering tracker bug for 5.0+
https://bugs.documentfoundation.org/show_bug.cgi?id=108543
[Bug 108543] [META] Chart legend 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 108543] [META] Chart legend bugs and enhancements

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108543

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

   What|Removed |Added

 Depends on||124327


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=124327
[Bug 124327] Calc. Wrong render of legend's font in Chart (OpenGL enabled)
-- 
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 124327] New: Calc. Wrong render of legend's font in Chart (OpenGL enabled)

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124327

Bug ID: 124327
   Summary: Calc. Wrong render of legend's font in Chart (OpenGL
enabled)
   Product: LibreOffice
   Version: 6.1.0.0.alpha0+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 79045_79...@mail.ru

Description:
Calc. Wrong render of legend's font in Chart (OpenGL enabled)

Steps to Reproduce:
1. Open file from attach in LO 6.1 (make sure OpenGL is active)
2. See at legend
3. Legend's font is wrong render

Actual Results:
Legend's font is wrong render

Expected Results:
Legend's font is cool render


Reproducible: Always


User Profile Reset: No



Additional Info:

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

[Libreoffice-bugs] [Bug 124297] Libreoffice does not recognize Amazon Corretto Java Runtime

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124297

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC||xiscofa...@libreoffice.org

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

[Libreoffice-commits] core.git: Branch 'aoo/trunk' - default_images/introabout

2019-03-25 Thread Matthias Seidel (via logerrit)
 default_images/introabout/about.png  |binary
 default_images/introabout/beta/about.png |binary
 default_images/introabout/dev/about.png  |binary
 3 files changed

New commits:
commit 77bb2e2c6b2eeacf6bd2cabf4500094fe6125bc9
Author: Matthias Seidel 
AuthorDate: Mon Mar 25 18:28:02 2019 +
Commit: Matthias Seidel 
CommitDate: Mon Mar 25 18:28:02 2019 +

Updated graphic for about dialog

diff --git a/default_images/introabout/about.png 
b/default_images/introabout/about.png
index 23ea20e06f09..81826d619e33 100755
Binary files a/default_images/introabout/about.png and 
b/default_images/introabout/about.png differ
diff --git a/default_images/introabout/beta/about.png 
b/default_images/introabout/beta/about.png
index 4c04542b0932..49b1fdd3d4bd 100755
Binary files a/default_images/introabout/beta/about.png and 
b/default_images/introabout/beta/about.png differ
diff --git a/default_images/introabout/dev/about.png 
b/default_images/introabout/dev/about.png
index 7a6613b9ba59..d4ea23d09f9c 100755
Binary files a/default_images/introabout/dev/about.png and 
b/default_images/introabout/dev/about.png differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 124178] Emoticons don't work

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124178

--- Comment #3 from Tor Lillqvist  ---
Oops, I take that back. Sure, one needs to use a font with the emojis in
question for text that includes them, but it also seems impossible enter emojis
in the iOS app.

-- 
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 124178] Emoticons don't work

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124178

--- Comment #2 from Tor Lillqvist  ---
You need to use a font that supports the characters in question. For instance
Apple Color Emoji. (But yeah, it would be ideal if LibreOffice automatically
would use that font for the emojis in question.)

-- 
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 124326] Undo after drag changes the original formula

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124326

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
Version|6.3.0.0.alpha0+ Master  |4.3 all versions
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||3714
   Keywords||bibisected, regression

--- Comment #1 from Xisco Faulí  ---
Regression introduced in range
https://cgit.freedesktop.org/libreoffice/core/log/?qt=range=a12de5aab0c2f1553086de13a7bdb92fac81ee70..364ac5acf491ce4654ff9ca85fc416343b55b685

-- 
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 124326] New: Undo after drag changes the original formula

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124326

Bug ID: 124326
   Summary: Undo after drag changes the original formula
   Product: LibreOffice
   Version: 6.3.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: xiscofa...@libreoffice.org

This is a follow-up of bug 123714 that I found testing the bug.

Steps to reproduce:
1. Open attachment 149604 from bug 123714
2. Select A2:A3 with the mouse
3. Drag & Drop it to Column B
4. Column E is updated -> bug 123714
5. Undo

-> Column E updates the formula from =$C3*B3*E$1 to =$C3*A3*E$1

Reproduced in

Version: 6.3.0.0.alpha0+
Build ID: 82463bdde75447d45e0cd6ed9ab579e0e51ea912
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: x11; 
Locale: ca-ES (ca_ES.UTF-8); UI-Language: en-US
Calc: threaded

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

[Libreoffice-commits] core.git: ios/CustomTarget_iOS_setup.mk

2019-03-25 Thread Tor Lillqvist (via logerrit)
 ios/CustomTarget_iOS_setup.mk |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit fd2f43e05bd065ca9f7878ad715bf0f8afa23f3c
Author: Tor Lillqvist 
AuthorDate: Mon Mar 25 19:07:59 2019 +0200
Commit: Tor Lillqvist 
CommitDate: Mon Mar 25 19:07:59 2019 +0200

Just include all fonts from instdir/share/fonts in the iOS app

That is apparently what we want.

Change-Id: I900c26873de02495cac7918b0c453f4fdcb6c3e6

diff --git a/ios/CustomTarget_iOS_setup.mk b/ios/CustomTarget_iOS_setup.mk
index 89f8e340f44d..c06a1241853d 100644
--- a/ios/CustomTarget_iOS_setup.mk
+++ b/ios/CustomTarget_iOS_setup.mk
@@ -69,8 +69,8 @@ $(IOSGEN)/native-code.h: $(BUILDDIR)/config_host.mk \
cp -R $(INSTDIR)/share/liblangtag $(IOSRES)/share
cp -R $(INSTDIR)/share/theme_definitions $(IOSRES)/share
cp -R $(INSTDIR)/share/template $(IOSRES)/share
-   mkdir -p $(IOSRES)/share/fonts/truetype
-   cp $(INSTDIR)/share/fonts/truetype/Liberation* 
$(IOSRES)/share/fonts/truetype
+   mkdir -p $(IOSRES)/share/fonts
+   cp -R $(INSTDIR)/share/fonts/truetype $(IOSRES)/share/fonts
cp $(SRCDIR)/ios/welcome.odt $(IOSRES)
 
# Set up rc (the "inifile", fundamentalrc, unorc, bootstraprc and 
versionrc.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 124007] Doesn't set up focus into text field in Autofilter window

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124007

raal  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||r...@post.cz
 Status|UNCONFIRMED |NEW

--- Comment #4 from raal  ---
I can confirm with your file,but cannot confirm with file created from
scratch.I tried create file with hyperlinks.

Version: 6.3.0.0.alpha0+
Build ID: 82463bdde75447d45e0cd6ed9ab579e0e51ea912
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3;

-- 
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 123119] Freeze after opening of big HTML file

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123119

--- Comment #5 from Roman Kuznetsov <79045_79...@mail.ru> ---
(In reply to Xisco Faulí from comment #4)
> I can't reproduce it in
> 
> Version: 6.3.0.0.alpha0+
> Build ID: 82463bdde75447d45e0cd6ed9ab579e0e51ea912
> CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
> Locale: ca-ES (ca_ES.UTF-8); UI-Language: en-US
> Calc: threaded
> 
> @Kompi, do you still reproduce it in master ?

Master has vcl:gtk3_kde5?

-- 
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 123998] hyperlinks to target sheets stopped working in Calc 6.2.0.3

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123998

--- Comment #9 from kalakai  ---
Created attachment 150280
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150280=edit
xlsx file

note the additional characters Calc has added to the target sheet name...I
entered nothing, only selected '2' on the drop down menu.

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

[Libreoffice-bugs] [Bug 123549] the "close document" button is missing to return to welcome start window

2019-03-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123549

Xisco Faulí  changed:

   What|Removed |Added

 CC||k...@mail.orbitel.bg

--- Comment #10 from Xisco Faulí  ---
*** Bug 124317 has been marked as a duplicate of this bug. ***

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

  1   2   3   4   >