[Libreoffice-bugs] [Bug 105054] New installation only available to Admin user account, not to other non-admin users.

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105054

Buovjaga  changed:

   What|Removed |Added

 CC||ipla...@yahoo.co.uk

--- Comment #4 from Buovjaga  ---
(In reply to Martin from comment #3)
> (In reply to Buovjaga from comment #1)
> > What is the operating system version?
> 
> I think the OS is OSX 10.10 or maybe 10.12 (it's not my machine and not at
> my home so I can't check easily). It was purchased last month so it will be
> current.
> If you need me to be specific then I can get the info in a couple of days.
> Thanks for your help.

It's fine.

Adding Alex to CC to get some sage advice.

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


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

2017-01-04 Thread Pranav Kant
 loleaflet/Makefile.am |2 --
 loleaflet/src/map/handler/Map.Keyboard.js |   19 ---
 2 files changed, 16 insertions(+), 5 deletions(-)

New commits:
commit 5374b6c6ff440b4016f393557b8e8846481a1355
Author: Pranav Kant 
Date:   Thu Jan 5 13:13:20 2017 +0530

loleaflet: Don't forward shift+insert/delete key events

This are converted to 'cut', 'paste' events which are
automatically handled by us using uno commands, so avoid
double-handling them.

Change-Id: If97e9f4efabbb929e7a5dd87c1228ee6a0df9e61

diff --git a/loleaflet/src/map/handler/Map.Keyboard.js 
b/loleaflet/src/map/handler/Map.Keyboard.js
index 62e61db..84c72d3 100644
--- a/loleaflet/src/map/handler/Map.Keyboard.js
+++ b/loleaflet/src/map/handler/Map.Keyboard.js
@@ -119,7 +119,7 @@ L.Map.Keyboard = L.Handler.extend({
222 : null  // single quote : UNKOWN
},
 
-   handleOnKeyDown: {
+   handleOnKeyDownKeys: {
// these keys need to be handled on keydown in order for them
// to work on chrome
8   : true, // backspace
@@ -180,6 +180,19 @@ L.Map.Keyboard = L.Handler.extend({
this._map.off('compositionstart compositionupdate 
compositionend textInput', this._onKeyDown, this);
},
 
+   _handleOnKeyDown: function (keyCode, modifier) {
+   if (modifier & this.keyModifier.shift) {
+   // don't handle shift+insert, shift+delete
+   // These are converted to 'cut', 'paste' events which 
are
+   // automatically handled by us, so avoid double-handling
+   if (keyCode === 45 || keyCode === 46) {
+   return false;
+   }
+   }
+
+   return this.handleOnKeyDownKeys[keyCode];
+   },
+
_setPanOffset: function (pan) {
var keys = this._panKeys = {},
codes = this.navigationKeyCodes,
@@ -295,12 +308,12 @@ L.Map.Keyboard = L.Handler.extend({
this._keyHandled = false;
this._bufferedTextInputEvent = null;
 
-   if (this.handleOnKeyDown[keyCode] && charCode 
=== 0) {
+   if (this._handleOnKeyDown(keyCode, 
this.modifier) && charCode === 0) {
docLayer._postKeyboardEvent('input', 
charCode, unoKeyCode);
}
}
else if ((e.type === 'keypress' || e.type === 
'compositionend') &&
-   (!this.handleOnKeyDown[keyCode] || charCode !== 
0)) {
+(!this._handleOnKeyDown(keyCode, 
this.modifier) || charCode !== 0)) {
if (charCode === keyCode && charCode !== 13) {
// Chrome sets keyCode = charCode for 
printable keys
// while LO requires it to be 0
commit 053f5b5d9f5b9ddb4a83527e0373ff294105d5b3
Author: Pranav Kant 
Date:   Wed Jan 4 20:59:58 2017 +0530

Unused variable

Change-Id: I1e8ba0dc8683193d7ce0680854cb43286fc0dd98

diff --git a/loleaflet/Makefile.am b/loleaflet/Makefile.am
index 178b827..4e3ed35 100644
--- a/loleaflet/Makefile.am
+++ b/loleaflet/Makefile.am
@@ -3,8 +3,6 @@
 # ("micro") part: Between releases odd, even for releases (no other
 # changes inbetween).
 
-VERSION=2.0.1+
-
 # Version number of the bundled 'draw' thing
 DRAW_VERSION=0.2.4
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104884] When View-Sidebar is on, after Print Preview is shown and closed, key F11 has no effect

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104884

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #7 from Aron Budea  ---
The crash is resolved by the following commit:

https://cgit.freedesktop.org/libreoffice/core/commit/?id=5768416761756a386cba54314f783cb9c0d0d093
author  Caolán McNamara 2016-12-09 11:09:21 (GMT)
committer   Caolán McNamara 2016-12-09 11:14:53
(GMT)

"Related: rhbz#1397939 crash with null pSidebarController"

Commit has been cherry-picked into 5.2 branch:
https://cgit.freedesktop.org/libreoffice/core/commit/?h=libreoffice-5-2=3e60ccb74ac6589e14a479c6646c63a4e5ac4e35

It's not in 5.2.4 branch, though (branch-off: 2016-11-29).
=> crash should be gone in 5.2.5.

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


[Libreoffice-bugs] [Bug 104884] When View-Sidebar is on, after Print Preview is shown and closed, key F11 has no effect

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104884

--- Comment #6 from Aron Budea  ---
Reverse bibisect log for the crash using repo bibisect-win32-5.3.

78aa55cc8eab2be8ca1a4c23d658b38affd45f2f is the first bad commit
commit 78aa55cc8eab2be8ca1a4c23d658b38affd45f2f
Author: Norbert Thiebaud 
Date:   Fri Dec 9 13:34:18 2016 -0800

source sha:5768416761756a386cba54314f783cb9c0d0d093

# bad: [166286094e583fb471c9500fdbddee4e83ef478c] source
sha:70b3dd697cb248fb56830db691269fe9e78c57fb
# good: [479ca41474b9720803421ab7717aa69fa6c60528] source
sha:f8c463b393885b660500bf4f7f73b4fb90ce2389
git bisect start '166286094e583fb471c9500fdbddee4e83ef478c'
'479ca41474b9720803421ab7717aa69fa6c60528'
# bad: [af99ef748ba2c46c574a6668439f27e2b3b74158] source
sha:83675eeb30c92a17dd272894df34b89628de0142
git bisect bad af99ef748ba2c46c574a6668439f27e2b3b74158
# bad: [626369369677df78749af63bbd005a8e1f25b615] source
sha:6238f71ddbdc766e733b1c808a4fa7d66f7bde87
git bisect bad 626369369677df78749af63bbd005a8e1f25b615
# good: [14ccfca54c2c9f6f02204b0381d7409ade16ad8f] source
sha:7f47d68c4310b8bae09286a81036a6fa669a1705
git bisect good 14ccfca54c2c9f6f02204b0381d7409ade16ad8f
# bad: [8e27d55c66beffb3377925bac1d4eb2ca3058e16] source
sha:1093721a260d25f986fd794acd914b8fb7bcf92a
git bisect bad 8e27d55c66beffb3377925bac1d4eb2ca3058e16
# bad: [949bab15e5a2d57ef8b5b58762f1e2783dcf1bf0] source
sha:b832d7019f7e7499f5fb3da5d5f49ddbf0f35585
git bisect bad 949bab15e5a2d57ef8b5b58762f1e2783dcf1bf0
# good: [2644da24d79bd49ca52f94d8799d66da01b593cc] source
sha:987984ea21f1688eddfc124292f5e4b931d7d138
git bisect good 2644da24d79bd49ca52f94d8799d66da01b593cc
# bad: [4f84486bebe27e5010d877b6e8b1ffede23cf2ef] source
sha:56261b0bb06e29b71e2cc555086100282e54d62e
git bisect bad 4f84486bebe27e5010d877b6e8b1ffede23cf2ef
# bad: [78aa55cc8eab2be8ca1a4c23d658b38affd45f2f] source
sha:5768416761756a386cba54314f783cb9c0d0d093
git bisect bad 78aa55cc8eab2be8ca1a4c23d658b38affd45f2f
# first bad commit: [78aa55cc8eab2be8ca1a4c23d658b38affd45f2f] source
sha:5768416761756a386cba54314f783cb9c0d0d093

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


[Libreoffice-bugs] [Bug 105098] FILSESAVE: Table column changes AutoValue YES to NO on first saving.

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105098

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 CC||rob...@familiegrosskopf.de

--- Comment #1 from rob...@familiegrosskopf.de ---
Couldn't confirm this buggy behavior.

Tested with 
Version: 5.2.4.2
Build-ID: 3d5603e1122f0f102b62521720ab13a38a4e0eb0
CPU-Threads: 4; BS-Version: Linux 4.1; UI-Render: Standard; VCL: kde4; 
Gebietsschema: de-DE (de_DE.UTF-8); Calc: group

OpenSUSE 42.1 64bit rpm Linux, internal HSQLDB

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


[Libreoffice-bugs] [Bug 105118] Impress table cells use way too many GDI objects

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105118

mdk...@hotmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
Summary|Crash in:   |Impress table cells use way
   |SalFrame::SetCallback(vcl:: |too many GDI objects
   |Window *,bool   |
   |(*)(vcl::Window |
   |*,SalEvent,void const *))   |
 Ever confirmed|0   |1

--- Comment #1 from mdk...@hotmail.com ---
Nirsoft's GDIView says:
...
Bitmap: 2916
Font: 2905
...
DC: 3212
...
All GDI: 1

It is similarly possible to construct a powerpoint file which powerpoint can
open, using just a few hundred GDI objects, but impress again maxes out at
1 and crashes.  (I apologise for even mentioning ppt, but it's perhaps
justified as a comparison here.)

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


[Libreoffice-bugs] [Bug 46552] UI: Preview for Bullets/Numbering Configuration incorrect

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46552

Tamás Zolnai  changed:

   What|Removed |Added

 CC||zolnaitamas2...@gmail.com
 Whiteboard|BSA |BSA, difficultyBeginner,
   ||easyHack, skillCpp, topicUI

--- Comment #13 from Tamás Zolnai  ---
I turn it into an easy hack.
I can reproduce this problem also on 5.4 master branch. The tab page which has
this preview window is now called "Customize".

We have separate code for Writer and Impress, but they are duplicate of each
other. Both should have the same problem and should be fixed on the same way.

You can find the code in these methods:
Impress: SvxNumberingPreview::Paint()
Writer: NumberingPreview::Paint()

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


[Libreoffice-bugs] [Bug 105119] New: CSS++++AT email support number 1 (855 338 0710) AT tech email support number AT tech email support phone number

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105119

Bug ID: 105119
   Summary: CSSAT email support number  1 (855 338 0710)AT
tech email support number AT tech email support
phone number
   Product: cppunit
   Version: 1.13
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: satyaby...@outlook.com

bSC>AT email support number  1 (855 338 0710)AT tech email
support number AT tech email support phone number<>$$$>>>1 855 338 0710 <<$<$_)_)AT tech
email support phone number AT email support number
1 855 338 0710  moto khama wla AT tech email support number AT email
support number  AT tech email support phone number at email technical
support number>AT email support number  1 (855 338
0710)AT tech email support number AT tech email support phone number<>$$$>>>1 855 338 0710 <<$<$_)_)AT tech
email support phone number AT email support number
1 855 338 0710  moto khama wla AT tech email support number AT email
support number  AT tech email support phone number at email technical
support number>AT email support number  1 (855 338
0710)AT tech email support number AT tech email support phone number<>$$$>>>1 855 338 0710 <<$<$_)_)AT tech
email support phone number AT email support number
1 855 338 0710  moto khama wla AT tech email support number AT email
support number  AT tech email support phone number at email technical
support number>AT email support number  1 (855 338
0710)AT tech email support number AT tech email support phone number<>$$$>>>1 855 338 0710 <<$<$_)_)AT tech
email support phone number AT email support number
1 855 338 0710  moto khama wla AT tech email support number AT email
support number  AT tech email support phone number at email technical
support number>AT email support number  1 (855 338
0710)AT tech email support number AT tech email support phone number<>$$$>>>1 855 338 0710 <<$<$_)_)AT tech
email support phone number AT email support number
1 855 338 0710  moto khama wla AT tech email support number AT email
support 

[Libreoffice-bugs] [Bug 105118] New: Crash in: SalFrame::SetCallback(vcl::Window *, bool (*)( vcl::Window *, SalEvent, void const *))

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105118

Bug ID: 105118
   Summary: Crash in: SalFrame::SetCallback(vcl::Window *,bool
(*)(vcl::Window *,SalEvent,void const *))
   Product: LibreOffice
   Version: 5.2.4.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mdk...@hotmail.com

Created attachment 130163
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130163=edit
impress file containing 9 slides, each containing 4 10x10 tables, each cell
containing character X

This bug was filed from the crash reporting server and is
br-a0b72a68-cea8-4f2f-b2a5-308daa5e63ed.
=

Impress on Windows XP: each table cell containing text seems to use 2 or 3 GDI
objects.  Given the per-process limitation of 1 GDI objects, it's easy to
construct a file which hits the limit - see attached.  Windows Impress crashes
on trying to open such a file.  Linux Impress opens it fine.

Is the large number of GDI objects used considered a leak, or just profligate
usage?  Tables in Writer do not seem to suffer from the same problem.

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


[Libreoffice-bugs] [Bug 104444] [META] DOCX table related issues

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=10
Bug 10 depends on bug 99616, which changed state.

Bug 99616 Summary: FILEOPEN DOCX Long text in 1-cell table is showing only 2 
lines
https://bugs.documentfoundation.org/show_bug.cgi?id=99616

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 103164] [META] Footnote and Endnote bugs and enhancements

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103164
Bug 103164 depends on bug 43370, which changed state.

Bug 43370 Summary: Footnotes always uses numbering by chapter
https://bugs.documentfoundation.org/show_bug.cgi?id=43370

   What|Removed |Added

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

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - sw/qa writerfilter/source

2017-01-04 Thread Justin Luth
 sw/qa/extras/ooxmlexport/data/tdf99616_hidemarkb.docx|binary
 sw/qa/extras/ooxmlexport/ooxmlexport8.cxx|   13 +
 writerfilter/source/dmapper/DomainMapperTableHandler.cxx |4 +---
 3 files changed, 14 insertions(+), 3 deletions(-)

New commits:
commit 3d5ccc1577ff89bd13c26a8cde787a39482a8b81
Author: Justin Luth 
Date:   Fri Dec 23 13:49:19 2016 +0300

tdf#99616 writerfilter: hideMark shouldn't force min size

hideMark in Word does not force the minimum possible row size,
but simply ignores any cell marker styles/sizings. So an empty row
then takes on the "at least" size defined for the row.

Change-Id: Id24a52f2a360a5040c2eed5c17757c0d32d03520
Reviewed-on: https://gerrit.libreoffice.org/32380
Tested-by: Jenkins 
Reviewed-by: Justin Luth 
Reviewed-by: Miklos Vajna 
(cherry picked from commit 1a58cdf8af1aba52ce0a37dd7d742234d7cf)
Reviewed-on: https://gerrit.libreoffice.org/32721

diff --git a/sw/qa/extras/ooxmlexport/data/tdf99616_hidemarkb.docx 
b/sw/qa/extras/ooxmlexport/data/tdf99616_hidemarkb.docx
new file mode 100755
index 000..825108a
Binary files /dev/null and 
b/sw/qa/extras/ooxmlexport/data/tdf99616_hidemarkb.docx differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx
index ace0580..0dce2c5 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx
@@ -1739,6 +1739,19 @@ DECLARE_OOXMLEXPORT_TEST(testHidemark, "hidemark.docx")
 CPPUNIT_ASSERT_MESSAGE("table size is less than 7000?",sal_Int32(7000) > 
getProperty(xTextTable, "Width"));
 }
 
+DECLARE_OOXMLEXPORT_TEST(testHidemarkb, "tdf99616_hidemarkb.docx")
+{
+// Problem was that the smallest possible height was forced, not the min 
specified size.
+uno::Reference xTablesSupplier(mxComponent, 
uno::UNO_QUERY);
+uno::Reference 
xTables(xTablesSupplier->getTextTables( ), uno::UNO_QUERY);
+uno::Reference xTextTable(xTables->getByIndex(0), 
uno::UNO_QUERY);
+uno::Reference xTableRows(xTextTable->getRows(), 
uno::UNO_QUERY);
+// Height should be .5cm
+CPPUNIT_ASSERT_EQUAL(sal_Int64(501), 
getProperty(xTableRows->getByIndex(1), "Height"));
+// Size type was MIN, should be FIX to avoid considering the end of 
paragraph marker.
+CPPUNIT_ASSERT_EQUAL(text::SizeType::FIX, 
getProperty(xTableRows->getByIndex(1), "SizeType"));
+}
+
 DECLARE_OOXMLEXPORT_TEST(testBnc891663, "bnc891663.docx")
 {
 // The image should be inside a cell, so the text in the following cell 
should be below it.
diff --git a/writerfilter/source/dmapper/DomainMapperTableHandler.cxx 
b/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
index 3af9e3b..81220bd 100644
--- a/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
+++ b/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
@@ -928,7 +928,6 @@ css::uno::Sequence 
DomainMapperTableHandler::endTabl
 TagLogger::getInstance().startElement("getRowProperties");
 #endif
 
-static const int MINLAY = 23; // sw/inc/swtypes.hxx, minimal possible size 
of frames.
 css::uno::Sequence aRowProperties( 
m_aRowProperties.size() );
 PropertyMapVector1::const_iterator aRowIter = m_aRowProperties.begin();
 PropertyMapVector1::const_iterator aRowIterEnd = m_aRowProperties.end();
@@ -948,9 +947,8 @@ css::uno::Sequence 
DomainMapperTableHandler::endTabl
 if (lcl_hideMarks(m_aCellProperties[nRow]) && 
lcl_emptyRow(m_aTableRanges, nRow))
 {
 // We have CellHideMark on all cells, and also all cells are 
empty:
-// Set the row height to minimal as Word does.
+// Force the row height to be exactly as specified, and not 
just as the minimum suggestion.
 (*aRowIter)->Insert(PROP_SIZE_TYPE, 
uno::makeAny(text::SizeType::FIX));
-(*aRowIter)->Insert(PROP_HEIGHT, 
uno::makeAny(static_cast(ConversionHelper::convertTwipToMM100(MINLAY;
 }
 
 aRowProperties[nRow] = (*aRowIter)->GetPropertyValues();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - sw/source

2017-01-04 Thread Justin Luth
 sw/source/ui/misc/docfnote.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c63fe08c485baba133ebbeaef28fe97113dded35
Author: Justin Luth 
Date:   Tue Jan 3 15:24:48 2017 +0300

tdf#43370 docfnote.cxx: return correct FTNNUM for GetNumbering

way back in 2001 commit a7afc46b3766e4000ae5a9b8a914ede36bbd2991
removed the option to select per-chapter footnote-numbering for
footnotes placed at the end of the document (or perhaps chapter
since the variable is called FTNPOS_CHAPTER, but the UI refers to
it as document).  So only "Per Document" remained. However the
function GetNumbering was never updated to reflect that fact that
2 options were removed from the list now, instead of one.

So, the UI reported the choice as "Per Page", the only dropdown choice
available was "Per Document", and the actual implemented choice
was "Per Chapter".  How's that for a mess?

Change-Id: Ib8dc3d07c0ef62d39afdd2a1c78c14527649c6df
Reviewed-on: https://gerrit.libreoffice.org/32700
Tested-by: Jenkins 
Reviewed-by: Justin Luth 
Tested-by: Justin Luth 
Reviewed-by: Michael Stahl 
(cherry picked from commit 15ca00601701c50ccdb3d8dbe08ba705787386a7)
Reviewed-on: https://gerrit.libreoffice.org/32732

diff --git a/sw/source/ui/misc/docfnote.cxx b/sw/source/ui/misc/docfnote.cxx
index 30f053b..9feb8a1 100644
--- a/sw/source/ui/misc/docfnote.cxx
+++ b/sw/source/ui/misc/docfnote.cxx
@@ -276,7 +276,7 @@ void SwEndNoteOptionPage::SelectNumbering(int eNum)
 int SwEndNoteOptionPage::GetNumbering() const
 {
 const sal_Int32 nPos = m_pNumCountBox->GetSelectEntryPos();
-return (int) bPosDoc? nPos + 1: nPos;
+return (int) bPosDoc? nPos + 2: nPos;
 }
 
 void SwEndNoteOptionPage::SetShell( SwWrtShell  )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 105012] Tangut glyph orientation failed with OpenGL disabled

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105012

--- Comment #5 from Volga  ---
Then we need to investigate what prevent the proper layout on Windows.

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


[Libreoffice-bugs] [Bug 105117] New: Using F9 whis ALEA.ENTRE.BORNES()

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105117

Bug ID: 105117
   Summary: Using F9 whis ALEA.ENTRE.BORNES()
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jlbounho...@gmail.com

When using fonction ALEA.ENTRE.BORNES() fonction F9 is out, but not whis
ALEA().
Regards
Jean Louis Bounhoure

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


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

2017-01-04 Thread Tamás Zolnai
 chart2/source/controller/dialogs/tp_ChartType.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 5af78ee8dfcb05319ec3a8f9df9c12b9a2b30539
Author: Tamás Zolnai 
Date:   Thu Jan 5 04:22:05 2017 +0100

This lock seems useless

m_pCurrentMainType->commitToModel creates the same lock.

Change-Id: Iaecf6b3392ce7b1371623f962b0fdc58f8ddaa07

diff --git a/chart2/source/controller/dialogs/tp_ChartType.cxx 
b/chart2/source/controller/dialogs/tp_ChartType.cxx
index 46d14e0..5f36658 100644
--- a/chart2/source/controller/dialogs/tp_ChartType.cxx
+++ b/chart2/source/controller/dialogs/tp_ChartType.cxx
@@ -812,7 +812,6 @@ void ChartTypeTabPage::commitToModel( const 
ChartTypeParameter& rParameter )
 return;
 
 m_aTimerTriggeredControllerLock.startTimer();
-ControllerLockGuardUNO aLockedControllers( uno::Reference< frame::XModel 
>( m_xChartModel, uno::UNO_QUERY ) );
 m_pCurrentMainType->commitToModel( rParameter, m_xChartModel );
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 105092] Crash in: sfx2::sidebar::Panel::SetExpanded(bool)

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105092

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #3 from V Stuart Foote  ---
Plenty of duplicates with crash reported stack traces.

http://crashreport.libreoffice.org/stats/signature/sfx2::sidebar::Panel::SetExpanded(bool)

No longer reproducible with 5.3.0 beta2 or master.

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

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


[Libreoffice-bugs] [Bug 104884] When View-Sidebar is on, after Print Preview is shown and closed, key F11 has no effect

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104884

V Stuart Foote  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 105115] Major bug in font reconnaisance

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105115

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---
This is normal. For fonts installed to Windows system the Microsoft "Windows
Font Viewer" will show font families as a single entry which when clicked on
will show the member fonts.

Other third party font managers can be more functional--I like the Bablestone's
BableMap program, but hold a license for High-Logic's MainType and FontCreator
packages for Windows.

LibreOffice will only show the base font family, and will use glyphs as needed
from the regular, bold and italic font sets.

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


[Libreoffice-bugs] [Bug 105092] Crash in: sfx2::sidebar::Panel::SetExpanded(bool)

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105092

--- Comment #2 from Kumāra  ---
(In reply to Buovjaga from comment #1)
> Can you reproduce this? What are the steps?

I don't remember. I'm just reporting on the suggestion of LO's crash report.

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


[Libreoffice-bugs] [Bug 94655] Emoji not Visible in Exported PDF

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94655

--- Comment #15 from V Stuart Foote  ---
(In reply to V Stuart Foote from comment #14)
> (In reply to Iandol from comment #13)
> > This bug (PDF export removes emoji / unicode characters) still persists in
> > 5.3beta1 for macOS at least.
> > 
> 
> Thanks but please check against 5.3.0.1 rc1 from:
> http://dev-builds.libreoffice.org/pre-releases/mac/x86_64/
> 
> or better with a current build of 5.4.0/master from:
> http://dev-builds.libreoffice.org/daily/master/MacOSX-x86_64@49-TDF/

Sorry the 3b800451b1d0c48045de03b5b3c7bbbac87f20d9 is the 5.3.0.1 rc1 build
(2016-12-23). 

Still probably should check with current 5.4.0/master build.

Will check on a 10.12.2 OS X box tomorrow.

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


[Libreoffice-bugs] [Bug 94655] Emoji not Visible in Exported PDF

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94655

--- Comment #14 from V Stuart Foote  ---
(In reply to Iandol from comment #13)
> This bug (PDF export removes emoji / unicode characters) still persists in
> 5.3beta1 for macOS at least.
> 

Thanks but please check against 5.3.0.1 rc1 from:
http://dev-builds.libreoffice.org/pre-releases/mac/x86_64/

or better with a current build of 5.4.0/master from:
http://dev-builds.libreoffice.org/daily/master/MacOSX-x86_64@49-TDF/

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


[Libreoffice-bugs] [Bug 94345] Navigator includes rogue outline section, leaking from master-styles

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94345

--- Comment #4 from Iandol  ---
Bug persists in 5.3beta1 on macOS.

Version: 5.3.0.1
Build ID: 3b800451b1d0c48045de03b5b3c7bbbac87f20d9
CPU Threads: 4; OS Version: Mac OS X 10.12.2; UI Render: GL; Layout Engine:
new; 
Locale: en-GB (en_GB.UTF-8); Calc: group

Cor, sorry for the very late reply! This style markup is used by Multimarkdown
 output to generate a header when
applying a style. Perhaps it isn't part of the ODT spec, not sure.

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


[Libreoffice-bugs] [Bug 94655] Emoji not Visible in Exported PDF

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94655

--- Comment #13 from Iandol  ---
This bug (PDF export removes emoji / unicode characters) still persists in
5.3beta1 for macOS at least.

Version: 5.3.0.1
Build ID: 3b800451b1d0c48045de03b5b3c7bbbac87f20d9
CPU Threads: 4; OS Version: Mac OS X 10.12.2; UI Render: GL; Layout Engine:
new; 
Locale: en-GB (en_GB.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 94765] FILEOPEN: SVG:

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94765

--- Comment #10 from Iandol  ---
This bug persists in macOS LO5.3 (tested using my test.svg attached to this bug
report).

Version: 5.3.0.1
Build ID: 3b800451b1d0c48045de03b5b3c7bbbac87f20d9
CPU Threads: 4; OS Version: Mac OS X 10.12.2; UI Render: GL; Layout Engine:
new; 
Locale: en-GB (en_GB.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 105116] VIEWING: zoom in garbles display with particular .odt

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105116

--- Comment #1 from Terrence Enger  ---
Created attachment 130162
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130162=edit
Screenshot of garbled screen

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


[Libreoffice-bugs] [Bug 105116] New: VIEWING: zoom in garbles display with particular .odt

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105116

Bug ID: 105116
   Summary: VIEWING: zoom in garbles display with particular .odt
   Product: LibreOffice
   Version: 5.4.0.0.alpha0+ Master
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lo_b...@iseries-guru.com

Created attachment 130161
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130161=edit
The .odt in question

STR
---
(0) Download the attached a06.odt.

(1) Open a06.odt from the command line.  Expect both tables to be
completely visible in the document area; the zoom factor displayed
in the status bar is 160%.

(2) Take menu options View > Zoom > 200%.  Expect the tables to run
off the right side of the document area.

(3) Drag the vertical slider down.  Observe garbled display.
A screenshot is coming soon.

I created a06.odt in bibisect-43max repository version oldest.  I see
the garbled screen in that version and in daily Linux dbgutil
repository version 2017-01-04.  I am making these observations on
debian-stretch.


The repetition of bits of the document throughout the height of the
document area is reminiscent of tdf#80024 "VIEWING: Writer display
error with the Zoom function".  But that bug was resolved in 2014.

Aside: This happened as I was poking into tdf#105025 "table corners
look ugly when you increase cells border size".  Along the way, I also
managed to crash the program I was using to look at screenshots
pixel-by-pixel.  Sigh!

-- 
You are receiving this mail because:
You 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

2017-01-04 Thread Tamás Zolnai
 cui/source/inc/numpages.hxx  |1 
 cui/source/tabpages/numpages.cxx |   42 ---
 2 files changed, 13 insertions(+), 30 deletions(-)

New commits:
commit e83917a74e501052d885aae7e51e0c60e1e0ffd5
Author: Tamás Zolnai 
Date:   Thu Jan 5 01:02:50 2017 +0100

Clean up code after some easy hacks

See commits:
c613b5dba883897c927f7b60c84830c62a79d0ea
610bc5aa161e726135feee0c7f64331df090475a

Instead of adding new conditions or variables,
here we need just to initialize nActNumLvl
to a new default value.

Change-Id: I7b5a559ab5fecdc2a060840a99479312fabbcb4b
Reviewed-on: https://gerrit.libreoffice.org/32745
Reviewed-by: Tamás Zolnai 
Tested-by: Tamás Zolnai 

diff --git a/cui/source/inc/numpages.hxx b/cui/source/inc/numpages.hxx
index 0b4f0c5..afaaf1e 100644
--- a/cui/source/inc/numpages.hxx
+++ b/cui/source/inc/numpages.hxx
@@ -404,7 +404,6 @@ class SvxNumPositionTabPage : public SfxTabPage
 MapUnit eCoreUnit;
 
 boolbModified   : 1;
-boolbDefault: 1;
 boolbPreset : 1;
 boolbInInintControl : 1;  // workaround for 
Modify-error, is said to be corrected from 391 on
 boolbLabelAlignmentPosAndSpaceModeActive;
diff --git a/cui/source/tabpages/numpages.cxx b/cui/source/tabpages/numpages.cxx
index b70662d..acf23ba 100644
--- a/cui/source/tabpages/numpages.cxx
+++ b/cui/source/tabpages/numpages.cxx
@@ -1088,7 +1088,7 @@ SvxNumOptionsTabPage::SvxNumOptionsTabPage(vcl::Window* 
pParent,
 , bHTMLMode(false)
 , bMenuButtonInitialized(false)
 , nBullet(0xff)
-, nActNumLvl(SAL_MAX_UINT16)
+, nActNumLvl(1)
 , nNumItemId(SID_ATTR_NUMBERING_RULE)
 {
 get(m_pLevelLB, "levellb");
@@ -1257,7 +1257,7 @@ voidSvxNumOptionsTabPage::ActivatePage(const 
SfxItemSet& rSet)
 {
 const SfxPoolItem* pItem;
 const SfxItemSet* pExampleSet = GetTabDialog()->GetExampleSet();
-sal_uInt16 nTmpNumLvl = SAL_MAX_UINT16;
+sal_uInt16 nTmpNumLvl = 1;
 if(pExampleSet)
 {
 if(SfxItemState::SET == 
pExampleSet->GetItemState(SID_PARAM_NUM_PRESET, false, ))
@@ -1275,15 +1275,11 @@ voidSvxNumOptionsTabPage::ActivatePage(const 
SfxItemSet& rSet)
 if(*pActNum != *pSaveNum ||
 nActNumLvl != nTmpNumLvl)
 {
-*pActNum = *pSaveNum;
 nActNumLvl = nTmpNumLvl;
 sal_uInt16 nMask = 1;
 m_pLevelLB->SetUpdateMode(false);
 m_pLevelLB->SetNoSelection();
-if(bModified)
-m_pLevelLB->SelectEntryPos( 0 );
-else
-m_pLevelLB->SelectEntryPos( pActNum->GetLevelCount(), nActNumLvl 
== SAL_MAX_UINT16);
+m_pLevelLB->SelectEntryPos( pActNum->GetLevelCount(), nActNumLvl == 
SAL_MAX_UINT16);
 if(nActNumLvl != SAL_MAX_UINT16)
 for(sal_uInt16 i = 0; i < pActNum->GetLevelCount(); i++)
 {
@@ -1292,6 +1288,7 @@ voidSvxNumOptionsTabPage::ActivatePage(const 
SfxItemSet& rSet)
 nMask <<= 1 ;
 }
 m_pLevelLB->SetUpdateMode(true);
+*pActNum = *pSaveNum;
 
 InitControls();
 }
@@ -1358,11 +1355,7 @@ voidSvxNumOptionsTabPage::Reset( const SfxItemSet* 
rSet )
 sal_uInt16 nMask = 1;
 m_pLevelLB->SetUpdateMode(false);
 m_pLevelLB->SetNoSelection();
-if(nActNumLvl == SAL_MAX_UINT16  && !bModified)
-{
-m_pLevelLB->SelectEntryPos( 0 );
-}
-else if (nActNumLvl == SAL_MAX_UINT16)
+if (nActNumLvl == SAL_MAX_UINT16)
 {
 m_pLevelLB->SelectEntryPos( pSaveNum->GetLevelCount() );
 }
@@ -2636,10 +2629,9 @@ 
SvxNumPositionTabPage::SvxNumPositionTabPage(vcl::Window* pParent,
 : SfxTabPage(pParent, "NumberingPositionPage", 
"cui/ui/numberingpositionpage.ui", )
 , pActNum(nullptr)
 , pSaveNum(nullptr)
-, nActNumLvl(SAL_MAX_UINT16)
+, nActNumLvl(1)
 , nNumItemId(SID_ATTR_NUMBERING_RULE)
 , bModified(false)
-, bDefault(true)
 , bPreset(false)
 , bInInintControl(false)
 , bLabelAlignmentPosAndSpaceModeActive(false)
@@ -2915,7 +2907,7 @@ void SvxNumPositionTabPage::InitControls()
 m_pAlign2LB->SetNoSelection();
 }
 
-if ( bSameLabelFollowedBy || bDefault )
+if ( bSameLabelFollowedBy )
 {
 sal_Int32 nPos = 0; // LISTTAB
 if ( aNumFmtArr[nLvl]->GetLabelFollowedBy() == SvxNumberFormat::SPACE )
@@ -2937,7 +2929,7 @@ void SvxNumPositionTabPage::InitControls()
 {
 m_pListtabFT->Enable();
 m_pListtabMF->Enable();
-if ( bSameListtab || bDefault )
+if ( bSameListtab )
 {
 SetMetricValue(*m_pListtabMF, aNumFmtArr[nLvl]->GetListtabPos(), 
eCoreUnit);
 }
@@ -2953,7 +2945,7 @@ void SvxNumPositionTabPage::InitControls()
 

[Libreoffice-bugs] [Bug 105115] New: Major bug in font reconnaisance

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105115

Bug ID: 105115
   Summary: Major bug in font reconnaisance
   Product: LibreOffice
   Version: 5.2.4.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jlbr...@portugalmail.com

There are entire font groups of the same type which you install, but only one
of the many are shown in the LibreOffice font selection list. There are some
fonts, if I'm not mistaken, in which specifically only the last one installed
of the many fonts of the same type is displayed in the font list.

The last font I noticed LO displayed just one of the many, was the popular free
font Exo, by Natanel Gama. There were 18 Exo fonts in the same Exo type, I
installed them all, but only one gets displayed in the font selection list.

By the way...when the .zip file when the Exo fonts inside opens and you select
all of the fonts and press enter to open them, it appears a warning saying one
or more files may damage the computer, but if you select a place in you disk to
unzip them and them open them, the warning does not appear.

I don't know if that is dangerous or if that warning is caused by something
inside the fonts that may be related to the bug I speak of.

I say that because despite installing all of the 18 fonts, just some of them
were in the windows font file.

So, is the bug from LO, from the font, from something inside the font, or
something else? Is it something dangerous?

Waiting for an answer...

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


[Libreoffice-bugs] [Bug 96821] ROUND changes integers when it should not

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96821

--- Comment #8 from mwelin...@gmail.com ---
C1=1024*1024*1024*1024*1024*4

IEEE-758 [for binary formats] doesn't do decimal digits.  It does binary
digits.  C1 requires *one* binary digit of mantissa.

On page 8 of the 2008 version of the standard you will find details of
the "binary64" format that corresponds to the C "double" type on all
modern hardware.  53 bits for mantissa, 11 bits for exponent, and one
sign bit.  That adds to 65 bits, but the most significant bit for the
mantissa isn't stored as it is always 1.

So C1 is perfectly representable as is B1 (=C1+1), although B1 is
just at the limit of what can be represented.  But look what happens
if someone tries to round to nearest integer using this code with x=B1:

   x = std::floor (x + 0.5);   // WRONG

Adding 0.5 to x produces a number that is precisely midway between two
representable numbers, which are x and x+1.  IEEE-758 specifies to round
according to the current rounding mode which, typically, is round-to-even. 
Therefore the rounding result will be x+1.  std::floor will not change
that.  The intent with the above code was to add 0.5 and have std::floor
throw away the decimal part.  That works fine for smaller numbers, but
not for the magnitude of B1.  It also works for numbers above 2*B1 because
they are all even, so adding 0.5 and rounding will leave the number
unchanged.

You might want to take a look at "man round", but note that it may not do
the right thing for negative numbers.

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


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

2017-01-04 Thread Tamás Zolnai
 chart2/source/controller/dialogs/tp_ChartType.cxx |4 
 1 file changed, 4 insertions(+)

New commits:
commit a3cf075880db31f77cd0550e0ee25eca931c6a40
Author: Tamás Zolnai 
Date:   Thu Jan 5 02:17:51 2017 +0100

I miss empty lines from between these function definitions

Change-Id: Icec3a948a92bf54bfc442b34cf806e053a9096f3

diff --git a/chart2/source/controller/dialogs/tp_ChartType.cxx 
b/chart2/source/controller/dialogs/tp_ChartType.cxx
index fedfd2e..46d14e0 100644
--- a/chart2/source/controller/dialogs/tp_ChartType.cxx
+++ b/chart2/source/controller/dialogs/tp_ChartType.cxx
@@ -805,6 +805,7 @@ ChartTypeParameter ChartTypeTabPage::getCurrentParamter() 
const
 m_pGL3DResourceGroup->fillParameter(aParameter);
 return aParameter;
 }
+
 void ChartTypeTabPage::commitToModel( const ChartTypeParameter& rParameter )
 {
 if( !m_pCurrentMainType )
@@ -814,6 +815,7 @@ void ChartTypeTabPage::commitToModel( const 
ChartTypeParameter& rParameter )
 ControllerLockGuardUNO aLockedControllers( uno::Reference< frame::XModel 
>( m_xChartModel, uno::UNO_QUERY ) );
 m_pCurrentMainType->commitToModel( rParameter, m_xChartModel );
 }
+
 void ChartTypeTabPage::stateChanged( ChangingResource* /*pResource*/ )
 {
 if(m_nChangingCalls)
@@ -845,6 +847,7 @@ void ChartTypeTabPage::stateChanged( ChangingResource* 
/*pResource*/ )
 
 m_nChangingCalls--;
 }
+
 ChartTypeDialogController* ChartTypeTabPage::getSelectedMainType()
 {
 ChartTypeDialogController* pTypeController = nullptr;
@@ -854,6 +857,7 @@ ChartTypeDialogController* 
ChartTypeTabPage::getSelectedMainType()
 pTypeController = m_aChartTypeDialogControllerList[nM];
 return pTypeController;
 }
+
 IMPL_LINK_NOARG(ChartTypeTabPage, SelectSubTypeHdl, ValueSet*, void)
 {
 if( m_pCurrentMainType )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-01-04 Thread Markus Mohrhard
 basctl/source/basicide/scriptdocument.cxx |   10 ++
 1 file changed, 10 insertions(+)

New commits:
commit 2be139d76bdb66e77719613d802dc0047c284456
Author: Markus Mohrhard 
Date:   Wed Jan 4 23:58:13 2017 +0100

tdf#105069, store the VBA module info for new modules as well

This was never a problem until we started to export the VBA stream
instead of just writing back the imported stream.

Change-Id: I4e20e717bebd3dc649efcf1b9c18b6e5053303d9
Reviewed-on: https://gerrit.libreoffice.org/32741
Reviewed-by: Markus Mohrhard 
Tested-by: Markus Mohrhard 

diff --git a/basctl/source/basicide/scriptdocument.cxx 
b/basctl/source/basicide/scriptdocument.cxx
index a99fefa..135ea2b 100644
--- a/basctl/source/basicide/scriptdocument.cxx
+++ b/basctl/source/basicide/scriptdocument.cxx
@@ -34,6 +34,8 @@
 #include 
 #include 
 #include 
+#include 
+#include 
 
 #include 
 #include 
@@ -669,6 +671,14 @@ namespace basctl
 if ( _bCreateMain )
 _out_rNewModuleCode += "Sub Main\n\nEnd Sub\n" ;
 
+Reference< XVBAModuleInfo > xVBAModuleInfo(xLib, UNO_QUERY);
+if (xVBAModuleInfo.is())
+{
+css::script::ModuleInfo aModuleInfo;
+aModuleInfo.ModuleType = css::script::ModuleType::NORMAL;
+xVBAModuleInfo->insertModuleInfo(_rModName, aModuleInfo);
+}
+
 // insert module into library
 xLib->insertByName( _rModName, makeAny( _out_rNewModuleCode ) );
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-01-04 Thread Tamás Zolnai
 chart2/source/controller/dialogs/dlg_ChartType.cxx  |1 
 chart2/source/controller/dialogs/dlg_CreationWizard.cxx |2 -
 chart2/source/controller/dialogs/tp_ChartType.cxx   |   20 +++-
 chart2/source/controller/dialogs/tp_ChartType.hxx   |3 --
 4 files changed, 6 insertions(+), 20 deletions(-)

New commits:
commit e885c4429ab48d32f74c3a04a6e9e3a3ac492ee1
Author: Tamás Zolnai 
Date:   Thu Jan 5 02:02:04 2017 +0100

m_bDoLiveUpdate is always true

Change-Id: I169027a02bd4e0e5c2e0011e6aca4d6063547ca0

diff --git a/chart2/source/controller/dialogs/dlg_ChartType.cxx 
b/chart2/source/controller/dialogs/dlg_ChartType.cxx
index 4a0470f..fa260e0 100644
--- a/chart2/source/controller/dialogs/dlg_ChartType.cxx
+++ b/chart2/source/controller/dialogs/dlg_ChartType.cxx
@@ -43,7 +43,6 @@ ChartTypeDialog::ChartTypeDialog( vcl::Window* pParent
 m_pChartTypeTabPage = VclPtr::Create(
 get_content_area(),
 uno::Reference::query(m_xChartModel),
-true/*live update*/,
 false/*don't show title description*/);
 
 m_pChartTypeTabPage->initializePage();
diff --git a/chart2/source/controller/dialogs/dlg_CreationWizard.cxx 
b/chart2/source/controller/dialogs/dlg_CreationWizard.cxx
index c3cb304..501272f 100644
--- a/chart2/source/controller/dialogs/dlg_CreationWizard.cxx
+++ b/chart2/source/controller/dialogs/dlg_CreationWizard.cxx
@@ -96,7 +96,7 @@ VclPtr CreationWizard::createPage(WizardState nState)
 case STATE_CHARTTYPE:
 {
 m_aTimerTriggeredControllerLock.startTimer();
-VclPtrInstance 
pChartTypeTabPage(this,m_xChartModel,true/*bDoLiveUpdate*/);
+VclPtrInstance pChartTypeTabPage(this,m_xChartModel);
 pRet  = pChartTypeTabPage;
 m_pTemplateProvider = pChartTypeTabPage;
 if (m_pDialogModel)
diff --git a/chart2/source/controller/dialogs/tp_ChartType.cxx 
b/chart2/source/controller/dialogs/tp_ChartType.cxx
index fc1c9be..fedfd2e 100644
--- a/chart2/source/controller/dialogs/tp_ChartType.cxx
+++ b/chart2/source/controller/dialogs/tp_ChartType.cxx
@@ -665,7 +665,7 @@ IMPL_LINK_NOARG(GeometryResourceGroup, GeometryChangeHdl, 
ListBox&, void)
 
 ChartTypeTabPage::ChartTypeTabPage(vcl::Window* pParent
 , const uno::Reference< XChartDocument >& xChartModel
-, bool bDoLiveUpdate, bool bShowDescription)
+, bool bShowDescription)
 : OWizardPage(pParent, "tp_ChartType",
 "modules/schart/ui/tp_ChartType.ui")
 , m_pDim3DLookResourceGroup( new Dim3DLookResourceGroup(this) )
@@ -678,7 +678,6 @@ ChartTypeTabPage::ChartTypeTabPage(vcl::Window* pParent
 , m_aChartTypeDialogControllerList(0)
 , m_pCurrentMainType(nullptr)
 , m_nChangingCalls(0)
-, m_bDoLiveUpdate(bDoLiveUpdate)
 , m_aTimerTriggeredControllerLock( uno::Reference< frame::XModel >( 
m_xChartModel, uno::UNO_QUERY ) )
 {
 get(m_pFT_ChooseType, "FT_CAPTION_FOR_WIZARD");
@@ -827,8 +826,7 @@ void ChartTypeTabPage::stateChanged( ChangingResource* 
/*pResource*/ )
 m_pCurrentMainType->adjustParameterToSubType( aParameter );
 m_pCurrentMainType->adjustSubTypeAndEnableControls( aParameter );
 }
-if( m_bDoLiveUpdate )
-commitToModel( aParameter );
+commitToModel( aParameter );
 
 //detect the new ThreeDLookScheme
 uno::Reference xDiagram = 
ChartModelHelper::findDiagram(m_xChartModel);
@@ -863,8 +861,7 @@ IMPL_LINK_NOARG(ChartTypeTabPage, SelectSubTypeHdl, 
ValueSet*, void)
 ChartTypeParameter aParameter( this->getCurrentParamter() );
 m_pCurrentMainType->adjustParameterToSubType( aParameter );
 this->fillAllControls( aParameter, false );
-if( m_bDoLiveUpdate )
-commitToModel( aParameter );
+commitToModel( aParameter );
 }
 }
 
@@ -889,8 +886,7 @@ void ChartTypeTabPage::selectMainType()
 this->showAllControls(*m_pCurrentMainType);
 
 m_pCurrentMainType->adjustParameterToMainType( aParameter );
-if( m_bDoLiveUpdate )
-commitToModel( aParameter );
+commitToModel( aParameter );
 //detect the new ThreeDLookScheme
 aParameter.eThreeDLookScheme = ThreeDHelper::detectScheme( 
ChartModelHelper::findDiagram( m_xChartModel ) );
 if(!aParameter.b3DLook && 
aParameter.eThreeDLookScheme!=ThreeDLookScheme_Realistic )
@@ -1013,14 +1009,6 @@ void ChartTypeTabPage::initializePage()
 
 bool ChartTypeTabPage::commitPage( ::svt::WizardTypes::CommitPageReason 
/*eReason*/ )
 {
-//commit changes to model
-if( !m_bDoLiveUpdate && m_pCurrentMainType )
-{
-ChartTypeParameter aParameter( this->getCurrentParamter() );
-m_pCurrentMainType->adjustParameterToSubType( aParameter );
-commitToModel( aParameter );
-}
-
 return true; // return false if this page should not be left
 }
 
diff --git a/chart2/source/controller/dialogs/tp_ChartType.hxx 

[Libreoffice-bugs] [Bug 68573] FORMATTING:Underline enhancement (see comment 6)

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68573

V Stuart Foote  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 100223] underlining, overlining and strikeout are miscalculated when fallback glyph substitution is present , U+25cf for example on Droid, Caladea or Gentium fonts

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100223

V Stuart Foote  changed:

   What|Removed |Added

 CC|chris.sherloc...@gmail.com  |khaledho...@eglug.org
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=68
   ||573

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

Not sure, but seems that with HarfBuzz we get better layout for the underlining
when a fallback font glyph is used.

This needs another look.

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


[Libreoffice-bugs] [Bug 68573] FORMATTING:Underline enhancement (see comment 6)

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68573

V Stuart Foote  changed:

   What|Removed |Added

Summary|FORMATTING:Underline|FORMATTING:Underline
   |enhancement |enhancement (see comment 6)

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


[Libreoffice-bugs] [Bug 68573] FORMATTING:Underline enhancement

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68573

--- Comment #11 from V Stuart Foote  ---
*** Bug 103508 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 103508] Underline, Strikethrough, and Overline sizes and position are permanently fixed and cannot be adjusted

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103508

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
 Resolution|WONTFIX |DUPLICATE

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


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

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


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

2017-01-04 Thread Tamás Zolnai
 chart2/source/controller/dialogs/dlg_CreationWizard.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 1f9fcc141370ddbd4809ce44ee0c256672bc64a3
Author: Tamás Zolnai 
Date:   Thu Jan 5 01:19:43 2017 +0100

Remove useless explicit bool conversion

Change-Id: I81caa89fe2ebfb88ce4eb36b8edb9460e9aca9c8

diff --git a/chart2/source/controller/dialogs/dlg_CreationWizard.cxx 
b/chart2/source/controller/dialogs/dlg_CreationWizard.cxx
index 21f6e28..c3cb304 100644
--- a/chart2/source/controller/dialogs/dlg_CreationWizard.cxx
+++ b/chart2/source/controller/dialogs/dlg_CreationWizard.cxx
@@ -148,8 +148,8 @@ svt::WizardTypes::WizardState 
CreationWizard::determineNextState( WizardState nC
 void CreationWizard::enterState(WizardState nState)
 {
 m_aTimerTriggeredControllerLock.startTimer();
-enableButtons( WizardButtonFlags::PREVIOUS, bool( nState > STATE_FIRST ) );
-enableButtons( WizardButtonFlags::NEXT, bool( nState < m_nLastState ) );
+enableButtons( WizardButtonFlags::PREVIOUS, nState > STATE_FIRST );
+enableButtons( WizardButtonFlags::NEXT, nState < m_nLastState );
 if( isStateEnabled( nState ))
 svt::RoadmapWizard::enterState(nState);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 68573] FORMATTING:Underline enhancement

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68573

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||58941


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=58941
[Bug 58941] Support enabling optional smart font features
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103995] underline improvement

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103995

V Stuart Foote  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 68573] FORMATTING:Underline enhancement

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68573

V Stuart Foote  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 58941] Support enabling optional smart font features

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=58941

V Stuart Foote  changed:

   What|Removed |Added

 Blocks||68573


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 102262] FILEOPEN Underline appearance changes with text font

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102262

V Stuart Foote  changed:

   What|Removed |Added

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

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


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

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


[Libreoffice-bugs] [Bug 68573] FORMATTING:Underline enhancement

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68573

V Stuart Foote  changed:

   What|Removed |Added

 CC||oliver.san...@tu-dresden.de

--- Comment #10 from V Stuart Foote  ---
*** Bug 102262 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 68573] FORMATTING:Underline enhancement

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68573

V Stuart Foote  changed:

   What|Removed |Added

 CC||minuteme...@yahoo.com

--- Comment #9 from V Stuart Foote  ---
*** Bug 105087 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 71732] [META] Bugs related to text rendering, typography and font features in LO

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71732

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||105087


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=105087
[Bug 105087] Thickness and sizes of dashes/dots in Underline vary according to
typeface font in use, rather than remaining constant irrelevant of typeface
font in use.
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 58941] Support enabling optional smart font features

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=58941

V Stuart Foote  changed:

   What|Removed |Added

 Blocks||105087


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=105087
[Bug 105087] Thickness and sizes of dashes/dots in Underline vary according to
typeface font in use, rather than remaining constant irrelevant of typeface
font in use.
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 105087] Thickness and sizes of dashes/ dots in Underline vary according to typeface font in use, rather than remaining constant irrelevant of typeface font in use.

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105087

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu
  Component|Writer  |graphics stack
 Blocks||71732
 Depends on||58941
 Resolution|--- |DUPLICATE
 OS|Linux (All) |All

--- Comment #1 from V Stuart Foote  ---


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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=58941
[Bug 58941] Support enabling optional smart font features
https://bugs.documentfoundation.org/show_bug.cgi?id=71732
[Bug 71732] [META] Bugs related to text rendering, typography and font features
in LO
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 71732] [META] Bugs related to text rendering, typography and font features in LO

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71732
Bug 71732 depends on bug 105087, which changed state.

Bug 105087 Summary: Thickness and sizes of dashes/dots in Underline vary 
according to typeface font in use, rather than remaining constant irrelevant of 
typeface font in use.
https://bugs.documentfoundation.org/show_bug.cgi?id=105087

   What|Removed |Added

 Status|UNCONFIRMED |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 105033] impossible to set transparent background to a set of table cells painted with different color backgrounds

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105033

--- Comment #5 from Gabriele Ponzo  ---
I can confirm this behavior with:
Versione: 5.2.3.3
Build ID: d54a8868f08a7b39642414cf2c8ef2f228f780cf
Thread CPU: 4; Versione SO: Mac OS X 10.8.5; Resa interfaccia: GL; 
Versione locale: it-IT (it.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 96821] ROUND changes integers when it should not

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96821

--- Comment #7 from m.a.riosv  ---

C1=1024*1024*1024*1024*1024*4 = 4503599627370496

If I'm counting well there are sixteen digits on the result.

and if I'm not wrong IEEE 754 specification it's limited to 15 digits of
precision.

https://lists.freedesktop.org/archives/libreoffice-bugs/2014-August/215620.html
https://support.microsoft.com/en-us/kb/78113

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


[Libreoffice-bugs] [Bug 96821] ROUND changes integers when it should not

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96821

--- Comment #6 from mwelin...@gmail.com ---
Bug 67026 is unrelated.  That one is about problems arising from 1/10 not
being exactly representable in binary.  Old news.

This one is about wrong code implementing ROUND causing it to man-handle
some integers.  (And that number just below 0.5 too.)

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


[Libreoffice-bugs] [Bug 96280] Erratic behavior of the MATCH() function using Regular Expressions

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96280

m.a.riosv  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #6 from m.a.riosv  ---
I can't reproduce now.
Version: 5.2.4.1 (x64)
Build ID: 9b50003582f07ac674d6451e411e9b77cccd2b22
CPU Threads: 4; OS Version: Windows 6.19; UI Render: default; 
Locale: es-ES (es_ES); Calc: group

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


[Libreoffice-bugs] [Bug 104944] gtk3: Some mouse events go to the wrong window after focus grab

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104944

Xisco Faulí  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 74636] FORMATTING: ooo-emphasis-vertical-highlight broken

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=74636

Luke  changed:

   What|Removed |Added

   Priority|low |medium

-- 
You are receiving this mail because:
You 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 - sc/source

2017-01-04 Thread Eike Rathke
 sc/source/core/data/clipcontext.cxx |   12 
 1 file changed, 12 insertions(+)

New commits:
commit 3afe82bd63fde41d2a88418fb64e4ff587b05436
Author: Eike Rathke 
Date:   Wed Jan 4 21:47:20 2017 +0100

handle paste special of single formula cell if IsEmptyDisplayedAsString()

Similar to CopyCellsFromClipHandler.

Change-Id: I7da8a55c3648c6f04c5f3b11459764fd42f51399

diff --git a/sc/source/core/data/clipcontext.cxx 
b/sc/source/core/data/clipcontext.cxx
index 784437f..b03f164 100644
--- a/sc/source/core/data/clipcontext.cxx
+++ b/sc/source/core/data/clipcontext.cxx
@@ -219,6 +219,11 @@ void CopyFromClipContext::setSingleCell( const ScAddress& 
rSrcPos, const ScColum
 rSrcCell.set(pErrCell);
 }
 }
+else if (rSrcCell.mpFormula->IsEmptyDisplayedAsString())
+{
+// Empty stays empty and doesn't become 0.
+rSrcCell.clear();
+}
 else if (rSrcCell.mpFormula->IsValue())
 {
 bool bPaste = isDateCell(rSrcCol, rSrcPos.Row()) ? bDateTime : 
bNumeric;
commit 12ecd30476f17c6f6efde976f8e56d604eda0f1e
Author: Eike Rathke 
Date:   Wed Jan 4 21:23:40 2017 +0100

handle paste special of single formula cell with error result

This apparently was never implemented, unlike in the block pasting code that
handles it fine. Formula cells with error results were always copied as is 
if
numeric was requested, even if formulas weren't requested.

Change-Id: Id550c4e757b6bb2c06aa0637328216383cdf3d6b

diff --git a/sc/source/core/data/clipcontext.cxx 
b/sc/source/core/data/clipcontext.cxx
index 8b0ce0d..784437f 100644
--- a/sc/source/core/data/clipcontext.cxx
+++ b/sc/source/core/data/clipcontext.cxx
@@ -211,6 +211,13 @@ void CopyFromClipContext::setSingleCell( const ScAddress& 
rSrcPos, const ScColum
 if (!bNumeric)
 // Error code is treated as numeric value. Don't paste it.
 rSrcCell.clear();
+else
+{
+// Turn this into a formula cell with just the error code.
+ScFormulaCell* pErrCell = new ScFormulaCell(mpClipDoc, 
rSrcPos);
+pErrCell->SetErrCode(nErr);
+rSrcCell.set(pErrCell);
+}
 }
 else if (rSrcCell.mpFormula->IsValue())
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 87298] Calc "Text to Columns" function adds unexpected rows to data!!

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87298

m.a.riosv  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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


[Libreoffice-bugs] [Bug 96821] ROUND changes integers when it should not

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96821

--- Comment #5 from m.a.riosv  ---
https://bugs.documentfoundation.org/show_bug.cgi?id=67026

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


[Libreoffice-bugs] [Bug 81378] Permanent Crashes and Content Loss in Presentations (" Bad allocation" warning and crash)

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81378

ber...@mayoff.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #22 from ber...@mayoff.com ---
Works for me in Impress Version: 5.1.6.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 105069] Cannot save a new VBA module or worksheet in an existing XLS or XLSX file

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105069

Markus Mohrhard  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |markus.mohrhard@googlemail.
   |desktop.org |com

--- Comment #7 from Markus Mohrhard  ---
This is a problem coming from the VBA export work. In the old code we could not
export the changed VBA stream so it was not a problem that we never correctly
added new modules to the VBA part of the basic library. I think I have a simple
fix for that.

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


[Libreoffice-bugs] [Bug 104270] COMMENTING: Inserting a Comment at the end of paragraph causes it' s termination symbol to shift right

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104270

Aron Budea  changed:

   What|Removed |Added

 CC||mark...@gmail.com

--- Comment #4 from Aron Budea  ---
This bug started with the following commit. Adding Cc: to Mark Hung. Please
take a look sometimes.

author  Mark Hung    2015-08-07 16:18:20 (GMT)
committer   Norbert Thiebaud   2015-08-15 23:07:32
(GMT)

"Fix tdf#82176 CJK: Cursor position, line selection and non-printing
characters do not take account of hanging punctuation. Note that
placing a cursor next to the hanging puncuation is still not possible,
but the selection and the non-printing characters works fine now."

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


[Libreoffice-bugs] [Bug 104270] COMMENTING: Inserting a Comment at the end of paragraph causes it' s termination symbol to shift right

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104270

Aron Budea  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected

--- Comment #3 from Aron Budea  ---
3747e55ab76b05904deb47d0791857c2c1ee4911 is the first bad commit
commit 3747e55ab76b05904deb47d0791857c2c1ee4911
Author: Norbert Thiebaud 
Date:   Sat Aug 15 16:10:09 2015 -0700

source sha:26d8d33f3adfcbfd49ef1ea809202deabcea4957

# bad: [05d11632892a322664fb52bac90b2598b7fb7544] source
sha:5616d22b57a9a5e57d545e912e029162a230829b
# good: [c1efd324c6ad448ac9edb030dc9738b9e6899e4d] source
sha:ab465b90f6c6da5595393a0ba73f33a1e71a2b65
git bisect start '05d11632892a322664fb52bac90b2598b7fb7544' 'oldest'
# bad: [97526ab777da7e58ce283c05498262ecdd4d6f7f] source
sha:4ea70f87f7a2b61eda6e5ab1f48debf6fcfadc1f
git bisect bad 97526ab777da7e58ce283c05498262ecdd4d6f7f
# bad: [97526ab777da7e58ce283c05498262ecdd4d6f7f] source
sha:4ea70f87f7a2b61eda6e5ab1f48debf6fcfadc1f
git bisect bad 97526ab777da7e58ce283c05498262ecdd4d6f7f
# good: [2202cdaa0eae3f646f1285a0ea45934edeb26e8a] source
sha:a88bf8fd10c42a15e5d6e66da656889c82b4933a
git bisect good 2202cdaa0eae3f646f1285a0ea45934edeb26e8a
# good: [13169de9868218d603d1ae26805ebf4583e7d628] source
sha:6f98a0ab51cc5c860576b4ad44478b438cc5a5eb
git bisect good 13169de9868218d603d1ae26805ebf4583e7d628
# bad: [1c81e0f3ca26bf56c3e7948016ca44369345a120] source
sha:48a047f2f4e7b4b3bed33a99d37fd48025381646
git bisect bad 1c81e0f3ca26bf56c3e7948016ca44369345a120
# bad: [2a060e13c75dba5681397fc3b994a9abddcb55fc] source
sha:866e287adee448c1c8b431c6c084d3fe3283649d
git bisect bad 2a060e13c75dba5681397fc3b994a9abddcb55fc
# good: [ef09eb8df0418a65cbd4cc14953cf1ef8d0f343c] source
sha:ca6c2bab8771a209fde937599bf9cecea2b77104
git bisect good ef09eb8df0418a65cbd4cc14953cf1ef8d0f343c
# good: [9bb89f78f7e42311e81cf2bf0ea6f1a59041d479] source
sha:b5be942585db167aae58a4b820e9786f80a84096
git bisect good 9bb89f78f7e42311e81cf2bf0ea6f1a59041d479
# good: [c11f783d99cb2f0e8e99f85befcd2d0178acfbc1] source
sha:2bfeabde75d1e99879465fee6fe6a97357739ae2
git bisect good c11f783d99cb2f0e8e99f85befcd2d0178acfbc1
# bad: [f988305b8f230085b0e6ddc1abed78fbcce9247a] source
sha:0a22f4fd6d7496678822731a7bdd37687f717adf
git bisect bad f988305b8f230085b0e6ddc1abed78fbcce9247a
# good: [ffa457586a6e2602181ffc38a4062db7134010ae] source
sha:f089de7dc5c367a3123129b08a9050b3bacc4eba
git bisect good ffa457586a6e2602181ffc38a4062db7134010ae
# good: [81e7e4741dbb9ea5a72af1402da3988bf4f7e665] source
sha:929954e0108897c4882660b4ce9cb5d4cf1077ec
git bisect good 81e7e4741dbb9ea5a72af1402da3988bf4f7e665
# bad: [3ee37671577ec70c0505a3d7993c95854fd59ece] source
sha:6cd04e9ea447a4828a6fc03d47a7d136f3914501
git bisect bad 3ee37671577ec70c0505a3d7993c95854fd59ece
# bad: [3747e55ab76b05904deb47d0791857c2c1ee4911] source
sha:26d8d33f3adfcbfd49ef1ea809202deabcea4957
git bisect bad 3747e55ab76b05904deb47d0791857c2c1ee4911
# first bad commit: [3747e55ab76b05904deb47d0791857c2c1ee4911] source
sha:26d8d33f3adfcbfd49ef1ea809202deabcea4957

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


[Libreoffice-bugs] [Bug 90708] Support display of SI units (like Gnumeric)

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90708

luke.a.som...@gmail.com changed:

   What|Removed |Added

 CC||luke.a.som...@gmail.com

--- Comment #8 from luke.a.som...@gmail.com ---
Agreed - the multipliers with no units would be very, very nice, and should be
relatively simple to do – it's just a number format replacing 'E+03' with 'k',
etc.

This is especially so, compared to the potentially massive undertaking
involving unit verification between cells, which could end up sprawled all
over.

--- To answer the questions asked originally ---

- a list of multiplier (k, M, G, T, P,..., m, µ, n, p, f...) is necessary, as
well as their equivalent in all language (non-latin)

The list is at https://en.wikipedia.org/wiki/Metric_prefix in the box at right;
we'd leave out those that are not integer powers of 1000.

If this moves forward, I can gather the values for Russian, Chinese, Japanese,
and perhaps Zulu by asking relevant friends and relatives who are scientists
and native speakers of those languages.

Past that, what process is usually taken for internationalizing new text?

- what should be displayed if value is higher than 1000 times the largest
multiplier?
- what should be displayed if value is less than 1/1000 times the smallest
multiplier?

Fall back on numeric engineering notation with no prefix if less than 10^-18 or
as large as 10^21.

The other questions do not apply to this simpler feature, as it's just a
display 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 104944] gtk3: Some mouse events go to the wrong window after focus grab

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104944

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:5.4.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 105099] ctrl+. should give you the current date

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105099

Stefan Grotz  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTABUG

--- Comment #2 from Stefan Grotz  ---
(In reply to Jacques Guilleron from comment #1)
> Hi Stefan,
> 
> Actually, "Ctrl+;" do that.
> Isn't it easy?
> "Ctrl+." is available however.
> You can find it by selecting
> Tools > Custumize... > Keyboard.
> 
> Jacques

Oh thank you! That is very helpful!

-- 
You are receiving this mail because:
You 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: 5 commits - include/svx officecfg/registry sc/source sd/source svx/source svx/util sw/source

2017-01-04 Thread Maxim Monastirsky
 include/svx/dialogs.hrc |   10 
 include/svx/linectrl.hxx|   62 -
 officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu |   11 
 sc/source/ui/app/scdll.cxx  |1 
 sd/source/ui/app/sddll.cxx  |2 
 svx/source/tbxctrls/extrusioncontrols.src   |5 
 svx/source/tbxctrls/linectrl.cxx|  333 
+++---
 svx/source/tbxctrls/tbcontrl.cxx|   50 -
 svx/source/tbxctrls/tbcontrl.src|   30 
 svx/util/svx.component  |4 
 sw/source/uibase/app/swmodule.cxx   |1 
 11 files changed, 162 insertions(+), 347 deletions(-)

New commits:
commit 9ae8e4d35681890c5db153c53c74377428fa31d4
Author: Maxim Monastirsky 
Date:   Sun Dec 25 03:11:31 2016 +0200

Base SvxLineEndWindow on ToolbarPopup

Fixes size and position issues under gtk3/wayland

Change-Id: I357a5935e2b44fd3d5effde8cf7d3499e26384db

diff --git a/include/svx/linectrl.hxx b/include/svx/linectrl.hxx
index bc6f82b..2c47611 100644
--- a/include/svx/linectrl.hxx
+++ b/include/svx/linectrl.hxx
@@ -72,62 +72,6 @@ public:
 virtual VclPtr CreateItemWindow( vcl::Window *pParent ) 
override;
 };
 
-
-// class SvxLineEndWindow
-
-class SvxLineEndWindow : public SfxPopupWindow
-{
-private:
-XLineEndListRef  mpLineEndList;
-VclPtr mpLineEndSet;
-sal_uInt16   mnCols;
-sal_uInt16   mnLines;
-Size maBmpSize;
-css::uno::Reference< css::frame::XFrame > mxFrame;
-
-
-DECL_LINK( SelectHdl, ValueSet*, void );
-voidFillValueSet();
-voidSetSize();
-voidimplInit();
-
-protected:
-/** This function is called when the window gets the focus.  It grabs
-the focus to the line ends value set so that it can be controlled with
-the keyboard.
-*/
-virtual void GetFocus() override;
-
-public:
-SvxLineEndWindow( sal_uInt16 nId,
-  const css::uno::Reference< css::frame::XFrame >& rFrame,
-  vcl::Window* pParentWindow,
-  const OUString& rWndTitle );
-virtual ~SvxLineEndWindow() override;
-virtual voiddispose() override;
-
-voidStartSelection();
-
-virtual voidstatusChanged( const css::frame::FeatureStateEvent& rEvent 
) override;
-};
-
-
-// class SvxLineEndToolBoxControl
-
-
-class SVX_DLLPUBLIC SvxLineEndToolBoxControl : public SfxToolBoxControl
-{
-public:
-SFX_DECL_TOOLBOX_CONTROL();
-SvxLineEndToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& 
rTbx );
-virtual ~SvxLineEndToolBoxControl() override;
-
-virtual voidStateChanged( sal_uInt16 nSID, SfxItemState 
eState,
-  const SfxPoolItem* pState ) 
override;
-virtual VclPtr CreatePopupWindow() override;
-};
-
-
 #endif
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
index 631d5a2..2ec77ea 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
@@ -1130,6 +1130,17 @@
   
com.sun.star.comp.sfx2.ClassificationCategoriesController
 
   
+  
+
+  .uno:LineEndStyle
+
+
+  
+
+
+  com.sun.star.comp.svx.LineEndToolBoxControl
+
+  
   
 
   .uno:SetBorderStyle
diff --git a/sc/source/ui/app/scdll.cxx b/sc/source/ui/app/scdll.cxx
index 6bec013..0d9df65 100644
--- a/sc/source/ui/app/scdll.cxx
+++ b/sc/source/ui/app/scdll.cxx
@@ -162,7 +162,6 @@ void ScDLL::Init()
 SvxLineWidthToolBoxControl  ::RegisterControl(0, pMod);
 SvxColorToolBoxControl  ::RegisterControl(SID_ATTR_LINE_COLOR, 
 pMod);
 SvxColorToolBoxControl  ::RegisterControl(SID_ATTR_FILL_COLOR, 
 pMod);
-SvxLineEndToolBoxControl::RegisterControl(SID_ATTR_LINEEND_STYLE,  
 pMod);
 SvxStyleToolBoxControl  ::RegisterControl(SID_STYLE_APPLY, 
 pMod);
 SvxColorToolBoxControl  ::RegisterControl(SID_ATTR_CHAR_COLOR, 
 pMod);
 SvxColorToolBoxControl  ::RegisterControl(SID_BACKGROUND_COLOR,
 pMod);
diff --git a/sd/source/ui/app/sddll.cxx b/sd/source/ui/app/sddll.cxx
index 97a4e08d..1f467d7 100644
--- a/sd/source/ui/app/sddll.cxx
+++ b/sd/source/ui/app/sddll.cxx
@@ -186,8 +186,6 @@ void SdDLL::RegisterControllers(SdModule* pMod)
 SvxColorToolBoxControl::RegisterControl(SID_ATTR_LINE_COLOR, pMod);
 

[Libreoffice-bugs] [Bug 94448] UI: Draw’s context menu lacks Text option

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94448

Aron Budea  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisectNotNeeded

-- 
You are receiving this mail because:
You 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/unx

2017-01-04 Thread Maxim Monastirsky
 vcl/unx/gtk3/gtk3gtkframe.cxx |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

New commits:
commit 23a13694a5a70098b5ecd58b99d99618111f3ea5
Author: Maxim Monastirsky 
Date:   Wed Dec 28 01:02:33 2016 +0200

tdf#104944 gtk3: Ignore mouse up event if the wrong frame

Change-Id: I3d0aad6d2b434866df9110d3b8493fec2d2c94fe
Reviewed-on: https://gerrit.libreoffice.org/32465
Tested-by: Jenkins 
Reviewed-by: Maxim Monastirsky 

diff --git a/vcl/unx/gtk3/gtk3gtkframe.cxx b/vcl/unx/gtk3/gtk3gtkframe.cxx
index 8c91660..3f49b65 100644
--- a/vcl/unx/gtk3/gtk3gtkframe.cxx
+++ b/vcl/unx/gtk3/gtk3gtkframe.cxx
@@ -2611,11 +2611,12 @@ gboolean GtkSalFrame::signalButton( GtkWidget*, 
GdkEventButton* pEvent, gpointer
 
 vcl::DeletionListener aDel( pThis );
 
-if (pEvent->type == GDK_BUTTON_PRESS && pThis->isFloatGrabWindow())
+if (pThis->isFloatGrabWindow() && pEvent->window != 
widget_get_window(pThis->getMouseEventWidget()))
 {
-bool bClosePopups = (pEvent->window != 
widget_get_window(pThis->getMouseEventWidget()));
-if (bClosePopups)
+if (pEvent->type == GDK_BUTTON_PRESS)
 pThis->closePopup();
+else if (pEvent->type == GDK_BUTTON_RELEASE)
+return true;
 }
 
 if (!aDel.isDeleted())
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104944] gtk3: Some mouse events go to the wrong window after focus grab

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104944

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

http://cgit.freedesktop.org/libreoffice/core/commit/?id=23a13694a5a70098b5ecd58b99d99618111f3ea5

tdf#104944 gtk3: Ignore mouse up event if the wrong frame

It will be available in 5.4.0.

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

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

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


[Libreoffice-bugs] [Bug 85448] FILESAVE: Result formatted with 'clear direct formatting' gets re-formatted after .ods save-load roundtrip

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85448

--- Comment #5 from cle...@gmail.com ---
still happens

Version: 5.2.3.3
Build ID: d54a8868f08a7b39642414cf2c8ef2f228f780cf

-- 
You are receiving this mail because:
You 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' - ucb/source

2017-01-04 Thread Damjan Jovanovic
 ucb/source/ucp/expand/ucpexpand.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 76017e27756913851d126b1fb966c0ab473e60d6
Author: Damjan Jovanovic 
Date:   Wed Jan 4 18:15:13 2017 +

Fix a regression that caused AOO to crash on startup, due to the

ucpexpand1 library no longer exporting symbols after the port to gbuild.

Patch by: me

diff --git a/ucb/source/ucp/expand/ucpexpand.cxx 
b/ucb/source/ucp/expand/ucpexpand.cxx
index 570c03a..ee63771 100644
--- a/ucb/source/ucp/expand/ucpexpand.cxx
+++ b/ucb/source/ucp/expand/ucpexpand.cxx
@@ -263,13 +263,13 @@ static const ::cppu::ImplementationEntry s_entries [] =
 extern "C"
 {
 
-void SAL_CALL component_getImplementationEnvironment(
+SAL_DLLPUBLIC_EXPORT void SAL_CALL component_getImplementationEnvironment(
 const sal_Char ** ppEnvTypeName, uno_Environment ** )
 {
 *ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME;
 }
 
-void * SAL_CALL component_getFactory(
+SAL_DLLPUBLIC_EXPORT void * SAL_CALL component_getFactory(
 const sal_Char * pImplName,
 lang::XMultiServiceFactory * pServiceManager,
 registry::XRegistryKey * pRegistryKey )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 95397] Calc AutoFormat instructions

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95397

--- Comment #3 from gmarco  ---
(In reply to QA Administrators from comment #2)

Running LO 5.2.3.3  Win10  it seems nothing changed.

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


[Libreoffice-bugs] [Bug 84877] In JPEG export, fields coerced to valid values so quickly that it interferes with entry

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84877

--- Comment #5 from luke.a.som...@gmail.com ---
Problem persists in LibreOffice 5.2.4.2 for mac. Apparently unchanged.

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


[Libreoffice-bugs] [Bug 92825] [META] Update help for all menu changes

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92825
Bug 92825 depends on bug 103244, which changed state.

Bug 103244 Summary: [LOCALHELP] Incorrect menu path to Tools - Protect 
Sheet/Spreadsheet in Calc
https://bugs.documentfoundation.org/show_bug.cgi?id=103244

   What|Removed |Added

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

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


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

2017-01-04 Thread Zdeněk Crhonek
 sc/qa/unit/data/functions/text/fods/unicode.fods | 2583 +++
 1 file changed, 2583 insertions(+)

New commits:
commit f883b687a1733756aff57acb8775351099515ee7
Author: Zdeněk Crhonek 
Date:   Wed Jan 4 17:55:54 2017 +0100

add UNICODE test case

Change-Id: I4b3a560b7e0a82f204d16c740836d02ba63d955e
Reviewed-on: https://gerrit.libreoffice.org/32734
Reviewed-by: Markus Mohrhard 
Tested-by: Markus Mohrhard 

diff --git a/sc/qa/unit/data/functions/text/fods/unicode.fods 
b/sc/qa/unit/data/functions/text/fods/unicode.fods
new file mode 100644
index 000..20c8f83
--- /dev/null
+++ b/sc/qa/unit/data/functions/text/fods/unicode.fods
@@ -0,0 +1,2583 @@
+
+
+http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:scr
 ipt="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:form
 x="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
+ 
2017-01-02T19:55:59.875194457P0D1LibreOfficeDev/5.4.0.0.alpha0$Linux_X86_64
 
LibreOffice_project/9fb55f7b1de8be1c3f86a4ae540f648574d3ed45
+ 
+  
+   0
+   0
+   30846
+   31434
+   
+
+ view1
+ 
+  
+   2
+   8
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   85
+   60
+   true
+   false
+  
+  
+   4
+   1
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   85
+   60
+   true
+   false
+  
+ 
+ Sheet2
+ 1241
+ 0
+ 85
+ 60
+ false
+ true
+ true
+ true
+ 12632256
+ true
+ true
+ true
+ true
+ false
+ false
+ false
+ 1270
+ 1270
+ 1
+ 1
+ true
+ false
+
+   
+  
+  
+   7
+   false
+   false
+   true
+   true
+   false
+   false
+   false
+   1270
+   1270
+   true
+   true
+   true
+   true
+   true
+   false
+   12632256
+   false
+   Lexmark-E352dn
+   
+
+ en
+ US
+ 
+ 
+ 
+
+
+ zh
+ CN
+ 
+ :!),.:;?]}¢、。〉》」』】〕〗〞︰︱︳﹐、﹒﹔﹕﹖﹗﹚﹜﹞!),.:;?|}︴︶︸︺︼︾﹀﹂﹄﹏、~ï¿
 ã€…‖•·ˇˉ―--′’”
+ ([{£¥‵〈《「『【〔〖([{£¥〝︵︷︹︻︽︿﹁﹃﹙﹛﹝({“‘
+
+   
+   true
+   true
+   3
+   1
+   true
+   1
+   true
+   rgH+/0xleG1hcmstRTM1MmRuQ1VQUzpMZXhtYXJrLUUzNTJkbgAWAAMAzwAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9TGV4bWFyay1FMzUyZG4Kb3JpZW50YXRpb249UG9ydHJhaXQKY29waWVzPTEKY29sbGF0ZT1mYWxzZQptYXJnaW5kYWp1c3RtZW50PTAsMCwwLDAKY29sb3JkZXB0aD0yNApwc2xldmVsPTAKcGRmZGV2aWNlPTEKY29sb3JkZXZpY2U9MApQUERDb250ZXhEYXRhCkR1cGxleDpOb25lAElucHV0U2xvdDpUcmF5MQBQYWdlU2l6ZTpBNAAAEgBDT01QQVRfRFVQTEVYX01PREUPAER1cGxleE1vZGU6Ok9mZg==
+   false
+   0
+  
+ 
+ 
+  
+   http://openoffice.org/2004/office; 
xmlns:xlink="http://www.w3.org/1999/xlink"/>
+  
+ 
+ 
+  
+  
+  
+  
+  
+  
+  
+ 
+ 
+  
+   
+   
+  
+  
+   
+  
+  
+   
+
+   Kč
+  
+  
+   
+   -
+   
+
+   Kč
+   
+  
+  
+   £
+   
+  
+  
+   -
+   £
+   
+   
+  
+  
+   £
+   

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

2017-01-04 Thread Zdeněk Crhonek
 sc/qa/unit/data/functions/statistical/fods/permutationa.fods | 4325 +++
 1 file changed, 4325 insertions(+)

New commits:
commit bf3a9d7d691f1bd8b951a14964c8c7480f5d67ac
Author: Zdeněk Crhonek 
Date:   Wed Jan 4 18:08:26 2017 +0100

add PERMUTATIONA test case

Change-Id: Id853563e39eeb9f31ca5ffd0e72a317989a4791e
Reviewed-on: https://gerrit.libreoffice.org/32735
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sc/qa/unit/data/functions/statistical/fods/permutationa.fods 
b/sc/qa/unit/data/functions/statistical/fods/permutationa.fods
new file mode 100644
index 000..75d5a21
--- /dev/null
+++ b/sc/qa/unit/data/functions/statistical/fods/permutationa.fods
@@ -0,0 +1,4325 @@
+
+
+http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:scr
 ipt="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:form
 x="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
+ 
2017-01-04T18:05:40.160084692P0D1LibreOfficeDev/5.4.0.0.alpha0$Linux_X86_64
 
LibreOffice_project/9fb55f7b1de8be1c3f86a4ae540f648574d3ed45
+ 
+  
+   0
+   0
+   39334
+   10795
+   
+
+ view1
+ 
+  
+   2
+   8
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   100
+   60
+   true
+   false
+  
+  
+   4
+   10
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   100
+   60
+   true
+   false
+  
+ 
+ Sheet2
+ 1241
+ 0
+ 100
+ 60
+ false
+ true
+ true
+ true
+ 12632256
+ true
+ true
+ true
+ true
+ true
+ false
+ false
+ 1270
+ 1270
+ 1
+ 1
+ true
+ false
+
+   
+  
+  
+   7
+   false
+   false
+   true
+   true
+   false
+   false
+   false
+   1270
+   1270
+   true
+   true
+   true
+   true
+   true
+   false
+   12632256
+   false
+   Lexmark-E352dn
+   
+
+ cs
+ CZ
+ 
+ 
+ 
+
+
+ de
+ DE
+ 
+ 
+ 
+
+
+ en
+ US
+ 
+ 
+ 
+
+
+ nl
+ NL
+ 
+ 
+ 
+
+   
+   true
+   true
+   3
+   1
+   true
+   1
+   true
+   sgH+/0xleG1hcmstRTM1MmRuQ1VQUzpMZXhtYXJrLUUzNTJkbgAWAAMA0wAIAFZUAAAkbQAASm9iRGF0YSAxCnByaW50ZXI9TGV4bWFyay1FMzUyZG4Kb3JpZW50YXRpb249UG9ydHJhaXQKY29waWVzPTEKY29sbGF0ZT1mYWxzZQptYXJnaW5kYWp1c3RtZW50PTAsMCwwLDAKY29sb3JkZXB0aD0yNApwc2xldmVsPTAKcGRmZGV2aWNlPTEKY29sb3JkZXZpY2U9MApQUERDb250ZXhEYXRhCkR1cGxleDpOb25lAElucHV0U2xvdDpUcmF5MQBQYWdlU2l6ZTpMZXR0ZXIAABIAQ09NUEFUX0RVUExFWF9NT0RFDwBEdXBsZXhNb2RlOjpPZmY=
+   false
+   0
+  
+ 
+ 
+  
+   http://openoffice.org/2004/office; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
+
+   
+  
+ 
+ 
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+ 
+ 
+  
+   
+   
+  
+  
+   
+  
+  
+   
+  
+  
+   
+
+   Kč
+  
+  
+   
+   -
+   
+
+   Kč
+   
+  
+  
+
+   
+
+  
+  
+
+   (
+   
+   )
+  
+  
+
+   -
+   
+
+  
+  
+   
+
+   
+   
+   
+  
+  
+   
+  
+  
+   
+  
+  

Re: Need for a 5.2.4.3 build? Windows font handling issue.

2017-01-04 Thread Markus Mohrhard
Hey,

On Wed, Jan 4, 2017 at 9:47 PM, V Stuart Foote 
wrote:

> The BZ issue for this is  tdf#105015 -- Crash in:
> ImplReleaseTempFonts(SalData &)
>    .
>
>
>

This issue and the shutdown crasah are known and will be discussed in the
ESC call.

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


[Libreoffice-bugs] [Bug 103553] FORMATTING: Writer show zero page borders in specific docx file

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103553

Aron Budea  changed:

   What|Removed |Added

Version|4.1 all versions|3.6.0.4 release

--- Comment #3 from Aron Budea  ---
Page border already missing in 3.6.0.4, is there in 3.5.0.3 / Ubuntu 16.04.
Adjusting version.

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


[Libreoffice-bugs] [Bug 96183] CONVERT and CONVERT_ADD Calc functions

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96183

--- Comment #4 from gmarco  ---
(In reply to QA Administrators from comment #3)

Running LO 5.2.3.3  Win10  nothing changed.

-- 
You are receiving this mail because:
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: Libreoffice service fails in OBS (openSUSE)

2017-01-04 Thread Tomáš Chvátal
2017-01-04 21:57 GMT+01:00 Michael Stahl :

> On 01/04/2017 09:46 PM, Tomáš Chvátal wrote:
> > Hello all,
> >
> > These tests fail for me bit weirdly because I can't make heads or tails
> > from what is happening thus any help appreciated:
> >
> > [ 8317s] make[1]: *** [/home/abuild/rpmbuild/BUILD/libreoffice-
> > 5.3.0.0.beta2/solenv/gbuild/CppunitTest.mk:101:
> > /home/abuild/rpmbuild/BUILD/libreoffice-
> > 5.3.0.0.beta2/workdir/CppunitTest/services.test] Error 1
> >
> > *snip lot of no obvious way...*
> > [ 8317s] no obvious way to instantiate implementation
> > "com.sun.star.svtools.RemoteFilePicker"
> > [ 8317s] unknown:0:(anonymous namespace)::Test::test
> > [ 8317s] uncaught exception of type std::bad_alloc
> > [ 8317s] - std::bad_alloc
> > [ 8317s]
> > [ 8317s] (anonymous namespace)::Test::test finished in: 7520ms
> > [ 8317s] ##Failure Location unknown## : Error
> > [ 8317s] Test name: (anonymous namespace)::Test::test[ 8291.272351]
> > serial8250: too much work for irq4
> > [ 8317s]
> > [ 8317s] uncaught exception of type std::bad_alloc
> > [ 8317s] - std::bad_alloc
> >
> > For the full logs with gdb please see attachment.
>
> > Thread 1 "cppunittester" received signal SIGSEGV, Segmentation fault.
> > 0x7fffb36a62b4 in ?? ()
> > #0  0x7fffb36a62b4 in  ()
> > #1  0x0246 in  ()
> > #2  0x7fffb36a6160 in  ()
> > #3  0x7fff1710 in  ()
> > #4  0x7fff16b0 in  ()
> > #5  0x7fffc365360d in VM_Version::get_processor_features() () at
> /usr/lib64/jvm/java-1.8.0-openjdk-1.8.0/jre/lib/amd64/server/libjvm.so
>
> that's the usual JVM start-up segfault and perfectly normal.
>
> you need to run it until the bad_alloc is thrown.
>
> Gotcha, how about following:

(gdb) bt
#0  0x77657b00 in __cxa_throw () at /usr/lib64/libstdc++.so.6
#1  0x7fffe05d902e in
ooo::vba::getXSomethingFromArgs(com::sun::star::uno::Sequence
const&, int, bool) ()
at
/home/abuild/rpmbuild/BUILD/libreoffice-5.3.0.0.beta2/instdir/program/libvbahelperlo.so
#2  0x7fffe05e3734 in
VbaEventsHelperBase::VbaEventsHelperBase(com::sun::star::uno::Sequence
const&,
com::sun::star::uno::Reference
const&) () at
/home/abuild/rpmbuild/BUILD/libreoffice-5.3.0.0.beta2/instdir/program/libvbahelperlo.so
#3  0x7fffe01fcfed in
ScVbaEventsHelper::ScVbaEventsHelper(com::sun::star::uno::Sequence
const&,
com::sun::star::uno::Reference
const&) ()
at
/home/abuild/rpmbuild/BUILD/libreoffice-5.3.0.0.beta2/instdir/program/libvbaobjlo.so
#4  0x7fffe01fd513 in ScVbaEventsHelper_get_implementation() () at
/home/abuild/rpmbuild/BUILD/libreoffice-5.3.0.0.beta2/instdir/program/libvbaobjlo.so
#5  0x7602fc5f in
cppuhelper::ServiceManager::Data::Implementation::createInstance(com::sun::star::uno::Reference
const&, bool) ()
at
/home/abuild/rpmbuild/BUILD/libreoffice-5.3.0.0.beta2/instdir/program/libuno_cppuhelpergcc3.so.3
#6  0x760333c2 in
cppuhelper::ServiceManager::createInstanceWithContext(rtl::OUString const&,
com::sun::star::uno::Reference
const&) ()
at
/home/abuild/rpmbuild/BUILD/libreoffice-5.3.0.0.beta2/instdir/program/libuno_cppuhelpergcc3.so.3
#7  0x7fffe1617b26 in createInstance() () at
/home/abuild/rpmbuild/BUILD/libreoffice-5.3.0.0.beta2/workdir/LinkTarget/CppunitTest/libtest_services.so
#8  0x7fffe161cd5a in test() () at
/home/abuild/rpmbuild/BUILD/libreoffice-5.3.0.0.beta2/workdir/LinkTarget/CppunitTest/libtest_services.so
#9  0x77bc0bb2 in CppUnit::TestCaseMethodFunctor::operator()()
const () at /usr/lib64/libcppunit-1.13.so.0
#10 0x764e1610 in protect() () at
/home/abuild/rpmbuild/BUILD/libreoffice-5.3.0.0.beta2/workdir/LinkTarget/Library/unoexceptionprotector.so
#11 0x77bb76b0 in
CppUnit::DefaultProtector::protect(CppUnit::Functor const&,
CppUnit::ProtectorContext const&) () at /usr/lib64/libcppunit-1.13.so.0
#12 0x77bbe0cd in CppUnit::ProtectorChain::protect(CppUnit::Functor
const&, CppUnit::ProtectorContext const&) () at
/usr/lib64/libcppunit-1.13.so.0
#13 0x77bc675a in CppUnit::TestResult::protect(CppUnit::Functor
const&, CppUnit::Test*, std::string const&) () at
/usr/lib64/libcppunit-1.13.so.0
#14 0x77bc08ba in CppUnit::TestCase::run(CppUnit::TestResult*) ()
at /usr/lib64/libcppunit-1.13.so.0
#15 0x77bc0f03 in
CppUnit::TestComposite::doRunChildTests(CppUnit::TestResult*) () at
/usr/lib64/libcppunit-1.13.so.0
#16 0x77bc0e1e in CppUnit::TestComposite::run(CppUnit::TestResult*)
() at /usr/lib64/libcppunit-1.13.so.0
#17 0x77bc0f03 in
CppUnit::TestComposite::doRunChildTests(CppUnit::TestResult*) () at
/usr/lib64/libcppunit-1.13.so.0
#18 0x77bc0e1e in CppUnit::TestComposite::run(CppUnit::TestResult*)
() at /usr/lib64/libcppunit-1.13.so.0
#19 0x77bc6492 in CppUnit::TestResult::runTest(CppUnit::Test*) ()
at /usr/lib64/libcppunit-1.13.so.0
#20 0x77bc876e in CppUnit::TestRunner::run(CppUnit::TestResult&,
std::string const&) () at 

[Libreoffice-bugs] [Bug 93361] Pivot table column total doesn't work

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93361

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #4 from Aron Budea  ---
Can anyone attach a simple test 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-bugs] [Bug 103218] Imported XSLX wrong image boundaries

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103218

Aron Budea  changed:

   What|Removed |Added

   Keywords||filter:xlsx
 CC||ba...@caesar.elte.hu
Version|4.1 all versions|3.6.0.4 release
 Whiteboard||interoperability

--- Comment #5 from Aron Budea  ---
Looks correct in 3.5.0.3, incorrect in 3.6.0.4 / Ubuntu 16.04.

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


[Libreoffice-bugs] [Bug 105053] Line spacing width differs between next line break and continue wrap around to next line

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105053

NARAYAN  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTABUG

--- Comment #4 from NARAYAN  ---
Based on experience and the comments , this is closed as 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 105114] New: Conditional formatting crashes while editing any condition 2nd time

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105114

Bug ID: 105114
   Summary: Conditional formatting crashes while editing any
condition 2nd time
   Product: LibreOffice
   Version: 5.2.4.2 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: karsten.henn...@gmx.de

Description:
When I editing any condition in conditional formatting i can do it only one
time. The second time of editing of the same or another condition and click ok
the window will be closed completely. The function "conditional formatting"
crashed.

It don't work in win64 5.3.0.1 too but in Debx86_64 5.1.4.2.

Steps to Reproduce:
1.create some conditional formattings in calc
2.select Conditional formatting and then Edit
3.edit anyone condition and press ok
4. select the same or another contition for editing
5. after editing press ok

Actual Results:  
The window for conditional formatting will be closed completely. Changes for
conditions are not saved.

Expected Results:
Return to the list of condition, change is confirmed and the next condition can
be edited.


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:50.0) Gecko/20100101
Firefox/50.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 105054] New installation only available to Admin user account, not to other non-admin users.

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105054

--- Comment #3 from Martin  ---
(In reply to Buovjaga from comment #1)
> What is the operating system version?

I think the OS is OSX 10.10 or maybe 10.12 (it's not my machine and not at my
home so I can't check easily). It was purchased last month so it will be
current.
If you need me to be specific then I can get the info in a couple of days.
Thanks for your help.

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


[Libreoffice-bugs] [Bug 105054] New installation only available to Admin user account, not to other non-admin users.

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105054

--- Comment #2 from Martin  ---
I think the OS is OSX 10.10 or maybe 10.12 (it's not my machine and not at my
home so I can't check easily). It was purchased last month so it will be
current.
If you need me to be specific then I can get the info in a couple of days.
Thanks for your help.

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


[Libreoffice-bugs] [Bug 96140] TIMEVALUE Calc function described incorrectly in the Italian documentation

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96140

--- Comment #12 from gmarco  ---
Created attachment 130160
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130160=edit
ods sample

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


[Libreoffice-bugs] [Bug 96140] TIMEVALUE Calc function described incorrectly in the Italian documentation

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96140

--- Comment #11 from gmarco  ---
(In reply to QA Administrators from comment #10)

Running LO 5.2.3.3  Win10  nothing changed.
Look at the new attachment for some examples and notes.
Further I note that anti and post meridian espress in Calc with the letters "m"
and "p" are unusual in IT:
I translate what you can read about at the link
http://tp.linux.it/data_ora_valuta.html
TIMEVALUE.
The conventional notation to indicate a time in Italian language is "o:mm:ss"
with the hour expressed in 24-hour format without leading zero.
Expressed in the syntax of the GNU program date(1) becomes: %k:%M:%S
Examples:
13:00:56
4:12
The presence of leading zeros (obtained with dates(1) by replacing the %k with
%H) is allowed in case you have the need for alignment issues or ordering.
It should be noted, that only for the alignment motivation, the agreement for
date(1) provides for the possibility to use the "_" and "-" modifiers to hide
some digit.
Consult the man page for more information.
In case you must use the 12-hour format, morning and afternoon should be
rendered as "a.m." and "p.m.". Any other expression (AM/PM or A.M./P.M and so
on) is to be avoided.
Also in case you must use the 12-hour format, the issue date(1) to use for the
hour is %-I

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


[Libreoffice-bugs] [Bug 105113] MAILMERGE label. If you select same record to print, first label is always the first record of the table

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105113

LordByte  changed:

   What|Removed |Added

 CC||damiano.guerr...@gmail.com

--- Comment #1 from LordByte  ---
Created attachment 130159
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130159=edit
Write Document that contain label

This document contain page label definition for mailmerge

-- 
You are receiving this mail because:
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: Libreoffice service fails in OBS (openSUSE)

2017-01-04 Thread Michael Stahl
On 01/04/2017 09:46 PM, Tomáš Chvátal wrote:
> Hello all,
> 
> These tests fail for me bit weirdly because I can't make heads or tails
> from what is happening thus any help appreciated:
> 
> [ 8317s] make[1]: *** [/home/abuild/rpmbuild/BUILD/libreoffice-
> 5.3.0.0.beta2/solenv/gbuild/CppunitTest.mk:101:
> /home/abuild/rpmbuild/BUILD/libreoffice-
> 5.3.0.0.beta2/workdir/CppunitTest/services.test] Error 1
> 
> *snip lot of no obvious way...*
> [ 8317s] no obvious way to instantiate implementation
> "com.sun.star.svtools.RemoteFilePicker"
> [ 8317s] unknown:0:(anonymous namespace)::Test::test
> [ 8317s] uncaught exception of type std::bad_alloc
> [ 8317s] - std::bad_alloc
> [ 8317s] 
> [ 8317s] (anonymous namespace)::Test::test finished in: 7520ms
> [ 8317s] ##Failure Location unknown## : Error
> [ 8317s] Test name: (anonymous namespace)::Test::test[ 8291.272351]
> serial8250: too much work for irq4
> [ 8317s] 
> [ 8317s] uncaught exception of type std::bad_alloc
> [ 8317s] - std::bad_alloc
> 
> For the full logs with gdb please see attachment.

> Thread 1 "cppunittester" received signal SIGSEGV, Segmentation fault.
> 0x7fffb36a62b4 in ?? ()
> #0  0x7fffb36a62b4 in  ()
> #1  0x0246 in  ()
> #2  0x7fffb36a6160 in  ()
> #3  0x7fff1710 in  ()
> #4  0x7fff16b0 in  ()
> #5  0x7fffc365360d in VM_Version::get_processor_features() () at 
> /usr/lib64/jvm/java-1.8.0-openjdk-1.8.0/jre/lib/amd64/server/libjvm.so

that's the usual JVM start-up segfault and perfectly normal.

you need to run it until the bad_alloc is thrown.


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


[Libreoffice-bugs] [Bug 105113] New: MAILMERGE label. If you select same record to print, first label is always the first record of the table

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105113

Bug ID: 105113
   Summary: MAILMERGE label. If you select same record to print,
first label is always the first record of the table
   Product: LibreOffice
   Version: 5.2.3.3 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: damiano.guerr...@gmail.com

Description:
I have created a sheet of labels (A4 page with 8 labels per page).
This label contain address and names from Base DB (I have created a View from a
table).
When I try to print libreoffice ask me if i want to do a mailmerge and i press
OK.
In the record selection window i have chose to print only record from 35 to 40,
but if i print (or if I try to create an output document) , the first label is
completed with data from the first record of the table.
I have try to select record with mouse or to write record interval in apposite
field but result is exactly the same. First label contain data from the first
record of the table.



Steps to Reproduce:
1. create document for mailmerge (Connected to Base DB)
2. Select print
3. chose record interval that not contain first record
4. Print (or generate output document) 

Actual Results:  
First label in page contain data from the first record of the table.

Expected Results:
First label in page contain data from the first record of the selected interval


Reproducible: Always

User Profile Reset: No

Additional Info:
I have this problem on linux (Fedora 25 x86_64) and on Windows 7 Pro (64 bit)


User-Agent: Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:50.0) Gecko/20100101
Firefox/50.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 87218] FILEOPEN: table displayed in wrong position in .rtf

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87218

Aron Budea  changed:

   What|Removed |Added

   Priority|low |medium
   Hardware|Other   |All
Version|4.1 all versions|3.5.0 release
 Whiteboard||interoperability

--- Comment #9 from Aron Budea  ---
Table already appears on the left side in 3.5.0.3 / Ubuntu 16.04.

-- 
You are receiving this mail because:
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: Need for a 5.2.4.3 build? Windows font handling issue.

2017-01-04 Thread V Stuart Foote
The BZ issue for this is  tdf#105015 -- Crash in:
ImplReleaseTempFonts(SalData &)
   .



--
View this message in context: 
http://nabble.documentfoundation.org/Need-for-a-5-2-4-3-build-Windows-font-handling-issue-tp4204127p4204375.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


Libreoffice service fails in OBS (openSUSE)

2017-01-04 Thread Tomáš Chvátal
Hello all,

These tests fail for me bit weirdly because I can't make heads or tails
from what is happening thus any help appreciated:

[ 8317s] make[1]: *** [/home/abuild/rpmbuild/BUILD/libreoffice-
5.3.0.0.beta2/solenv/gbuild/CppunitTest.mk:101:
/home/abuild/rpmbuild/BUILD/libreoffice-
5.3.0.0.beta2/workdir/CppunitTest/services.test] Error 1

*snip lot of no obvious way...*
[ 8317s] no obvious way to instantiate implementation
"com.sun.star.svtools.RemoteFilePicker"
[ 8317s] unknown:0:(anonymous namespace)::Test::test
[ 8317s] uncaught exception of type std::bad_alloc
[ 8317s] - std::bad_alloc
[ 8317s]
[ 8317s] (anonymous namespace)::Test::test finished in: 7520ms
[ 8317s] ##Failure Location unknown## : Error
[ 8317s] Test name: (anonymous namespace)::Test::test[ 8291.272351]
serial8250: too much work for irq4
[ 8317s]
[ 8317s] uncaught exception of type std::bad_alloc
[ 8317s] - std::bad_alloc

For the full logs with gdb please see attachment.

TIA

Tom


backtraced-crash.txt.gz
Description: GNU Zip compressed data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 105015] Crash in: ImplReleaseTempFonts(SalData &)

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105015

V Stuart Foote  changed:

   What|Removed |Added

URL||http://nabble.documentfound
   ||ation.org/Need-for-a-5-2-4-
   ||3-build-Windows-font-handli
   ||ng-issue-tc4204127.html
 CC||vstuart.fo...@utsa.edu
  Component|Calc|graphics stack
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||3514
 Whiteboard||target:5.2.5

--- Comment #10 from V Stuart Foote  ---
This was side effect of backport to 5.2.4 of tdf#103514: Always ignore bitmap
fonts on Windows

It has been reverted with:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=f420f4c2e84deb182e4f675c1a0d45bede110ff2=libreoffice-5-2

5.2.4.2 Windows builds will continue to produce this issue. Requested a 5.2.4.3
build but that gained no traction.


=-ref-=

http://crashreport.libreoffice.org/stats/signature/ImplReleaseTempFonts(SalData%20&)

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


[Libreoffice-bugs] [Bug 87165] FILEOPEN: text missing in tables in .rtf

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87165

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
Version|4.1 all versions|3.5.0 release
 Whiteboard||interoperability

--- Comment #10 from Aron Budea  ---
This deteriorates in multiple steps.
In 3.5.0.3 the rows with the missing text are flattened, but the text can still
be found via search.
In 4.0.0.3 the text can't be found anymore at 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 105112] New: Firebird: Aggregate functions don't work - EVERY, ANY, SOME, COLLECT, FUSION, INTERSECTION

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105112

Bug ID: 105112
   Summary: Firebird: Aggregate functions don't work - EVERY, ANY,
SOME, COLLECT, FUSION, INTERSECTION
   Product: LibreOffice
   Version: 5.4.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rob...@familiegrosskopf.de

Created attachment 130158
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130158=edit
Open the query for editing and try to change to the named functions - all
doesn't exist.

Many function appear in the GUI when creating a query for Firebird. The
following functions won't work with Firebird:
EVERY, ANY, SOME, COLLECT, FUSION, INTERSECTION

Try the attached database and the query. Change to every of the function. start
the query. Function is unknown.

ANY and SOME are used in Firebird for subqueries only and have other sense. All
other functions are unknown.

All these functions shouldn't appear when creating a query with Firebird with
the GUI.
Tested all these with 
Version: 5.4.0.0.alpha0+
Build ID: 2a4cd80abcf9e515d1ce3b3a944b573bdc42bff2
CPU Threads: 4; OS Version: Linux 4.1; UI Render: default; VCL: kde4; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2016-12-22_00:18:04
Locale: de-DE (de_DE.UTF-8); Calc: group

-- 
You are receiving this mail because:
You 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: 5 commits - icon-themes/elementary icon-themes/galaxy include/vcl svx/source vcl/source

2017-01-04 Thread Caolán McNamara
 dev/null |binary
 icon-themes/elementary/vcl/res/check.png |binary
 icon-themes/elementary/vcl/res/checkmono.png |binary
 icon-themes/elementary/vcl/res/radio.png |binary
 icon-themes/elementary/vcl/res/radiomono.png |binary
 icon-themes/galaxy/vcl/res/check.png |binary
 icon-themes/galaxy/vcl/res/checkmono.png |binary
 icon-themes/galaxy/vcl/res/radio.png |binary
 icon-themes/galaxy/vcl/res/radiomono.png |binary
 include/vcl/image.hxx|9 +--
 include/vcl/splitwin.hxx |1 
 svx/source/dialog/frmsel.cxx |2 
 vcl/source/control/button.cxx|3 -
 vcl/source/image/ImageList.cxx   |9 ---
 vcl/source/src/images.src|4 -
 vcl/source/window/splitwin.cxx   |   66 ---
 16 files changed, 9 insertions(+), 85 deletions(-)

New commits:
commit 59ad262ab97c497c3e8a24d2e4a65b38f1d1dbec
Author: Caolán McNamara 
Date:   Wed Jan 4 18:47:55 2017 +

last bitmaps that pMaskColor arg was used on converted to true transparency

Change-Id: I99bb32355bc53e2c870f84e60fc1e35b9dfe8270

diff --git a/include/vcl/image.hxx b/include/vcl/image.hxx
index f2aceb4..d086c3e 100644
--- a/include/vcl/image.hxx
+++ b/include/vcl/image.hxx
@@ -82,7 +82,6 @@ public:
const std::vector< OUString >  
);
 voidInsertFromHorizontalBitmap(const ResId& rResId,
 sal_uInt16   nCount,
-const Color *pNonAlphaMaskColor,
 const Color *pSearchColors,
 const Color *pReplaceColors,
 sal_uLongnColorCount);
diff --git a/svx/source/dialog/frmsel.cxx b/svx/source/dialog/frmsel.cxx
index a459bf4..1f045ba 100644
--- a/svx/source/dialog/frmsel.cxx
+++ b/svx/source/dialog/frmsel.cxx
@@ -321,7 +321,7 @@ void FrameSelectorImpl::InitArrowImageList()
 
 GetRes( SVX_RES( RID_SVXSTR_BORDER_CONTROL ).SetRT( RSC_RESOURCE ) );
 maILArrows.InsertFromHorizontalBitmap(
-SVX_RES( BMP_FRMSEL_ARROWS ), 16, nullptr, pColorAry1, pColorAry2, 3);
+SVX_RES( BMP_FRMSEL_ARROWS ), 16, pColorAry1, pColorAry2, 3);
 FreeResource();
 DBG_ASSERT( maILArrows.GetImageSize().Height() == 
maILArrows.GetImageSize().Width(),
 "svx::FrameSelectorImpl::InitArrowImageList - images are not squarish" 
);
diff --git a/vcl/source/control/button.cxx b/vcl/source/control/button.cxx
index 6eceff6..d88ad04 100644
--- a/vcl/source/control/button.cxx
+++ b/vcl/source/control/button.cxx
@@ -2764,10 +2764,9 @@ static void LoadThemedImageList (const StyleSettings 
,
 aColorAry2[4] = rStyleSettings.GetDarkShadowColor();
 aColorAry2[5] = rStyleSettings.GetWindowTextColor();
 
-Color aMaskColor(0x00, 0x00, 0xFF );
 static_assert( sizeof(aColorAry1) == sizeof(aColorAry2), "aColorAry1 must 
match aColorAry2" );
 // FIXME: do we want the mask for the checkbox ?
-pList->InsertFromHorizontalBitmap (rResId, nImages, ,
+pList->InsertFromHorizontalBitmap (rResId, nImages,
 aColorAry1, aColorAry2, SAL_N_ELEMENTS(aColorAry1));
 }
 
diff --git a/vcl/source/image/ImageList.cxx b/vcl/source/image/ImageList.cxx
index 748e19d..e9b8c33 100644
--- a/vcl/source/image/ImageList.cxx
+++ b/vcl/source/image/ImageList.cxx
@@ -120,19 +120,12 @@ void ImageList::InsertFromHorizontalStrip( const BitmapEx 
,
 
 void ImageList::InsertFromHorizontalBitmap( const ResId& rResId,
 sal_uInt16   nCount,
-const Color *pMaskColor,
 const Color *pSearchColors,
 const Color *pReplaceColors,
 sal_uLongnColorCount)
 {
 BitmapEx aBmpEx( rResId );
-if (!aBmpEx.IsTransparent())
-{
-if( pMaskColor )
-aBmpEx = BitmapEx( aBmpEx.GetBitmap(), *pMaskColor );
-else
-aBmpEx = BitmapEx( aBmpEx.GetBitmap() );
-}
+
 if ( nColorCount && pSearchColors && pReplaceColors )
 aBmpEx.Replace( pSearchColors, pReplaceColors, nColorCount );
 
commit f1a8e00764b32c3b799ecd40dcb4dd632493bc45
Author: Caolán McNamara 
Date:   Wed Jan 4 18:39:34 2017 +

replace the blue which will be set to transparent, with transparent

Change-Id: I95923685d412145e88b672a50311c767d1425493

diff --git a/icon-themes/elementary/vcl/res/check.png 
b/icon-themes/elementary/vcl/res/check.png
index daeddd2..05f8b1c 100644
Binary files a/icon-themes/elementary/vcl/res/check.png and 
b/icon-themes/elementary/vcl/res/check.png differ
diff --git a/icon-themes/elementary/vcl/res/checkmono.png 

[Libreoffice-bugs] [Bug 63642] Math formula looses custom font settings on save as Flat XML

2017-01-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63642

--- Comment #9 from Mike Kaganski  ---
Still reproducible with Version: 5.3.0.1 (x64)
Build ID: 3b800451b1d0c48045de03b5b3c7bbbac87f20d9
CPU Threads: 4; OS Version: Windows 6.19; UI Render: default; Layout Engine:
new; 
Locale: en-US (ru_RU); Calc: group

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


  1   2   3   4   5   >