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

2017-05-25 Thread Julien Nabet
 connectivity/source/drivers/firebird/Table.cxx |   22 +++---
 1 file changed, 11 insertions(+), 11 deletions(-)

New commits:
commit c751318868f3f0082b2c86df493216d452b8ecc5
Author: Julien Nabet 
Date:   Thu May 25 10:14:30 2017 +0200

Related tdf#108068: Use new name of column when it's been changed

First fix simple case, the rename of a column which is not a primary key

Change-Id: Ia0de8e531021cbec0409408008c541c25a4bcd85
Reviewed-on: https://gerrit.libreoffice.org/38014
Tested-by: Jenkins 
Reviewed-by: Lionel Elie Mamane 

diff --git a/connectivity/source/drivers/firebird/Table.cxx 
b/connectivity/source/drivers/firebird/Table.cxx
index 7f71d1ebfbac..eefcc9698e99 100644
--- a/connectivity/source/drivers/firebird/Table.cxx
+++ b/connectivity/source/drivers/firebird/Table.cxx
@@ -132,17 +132,6 @@ void SAL_CALL Table::alterColumnByName(const OUString& 
rColName,
 bool bDefaultChanged = xColumn->getPropertyValue("DefaultValue")
  != 
rDescriptor->getPropertyValue("DefaultValue");
 
-// TODO: quote identifiers as needed.
-if (bNameChanged)
-{
-OUString sNewTableName;
-rDescriptor->getPropertyValue("Name") >>= sNewTableName;
-OUString sSql(getAlterTableColumn(rColName)
-+ " TO \"" + sNewTableName + "\"");
-
-getConnection()->createStatement()->execute(sSql);
-}
-
 if (bTypeChanged || bTypeNameChanged || bPrecisionChanged || bScaleChanged)
 {
 // If bPrecisionChanged this will only succeed if we have increased the
@@ -216,6 +205,17 @@ void SAL_CALL Table::alterColumnByName(const OUString& 
rColName,
 
 getConnection()->createStatement()->execute(sSql);
 }
+// TODO: quote identifiers as needed.
+if (bNameChanged)
+{
+OUString sNewTableName;
+rDescriptor->getPropertyValue("Name") >>= sNewTableName;
+OUString sSql(getAlterTableColumn(rColName)
++ " TO \"" + sNewTableName + "\"");
+
+getConnection()->createStatement()->execute(sSql);
+}
+
 
 m_pColumns->refresh();
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 43699] Extract, copy or export Chart data tables from Charts in Writer documents

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43699

Francisco  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 81514] Allow export individual chart data into a different file (TXT, CVS, ODS, etc)

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81514

Francisco  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 108032] PNGs are expanded 20 times on export (w/lossless!), leading to bloated PDFs.

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108032

--- Comment #4 from agere  ---
Somehow, removing ~/.config/libreoffice allowed Writer to run, and I could
export the document again. 

$ du -hkx *pdf 
53460   Руководство по системе управления порталом.pdf
1676Руководство по системе управления порталом test.pdf
53484   Руководство по системе управления порталом (LO 5.2.7.2).pdf
1952Руководство по системе управления порталом w\o PDF\A-a1.pdf

As one can see, the PDF didn’t get any lighter, even got additional 24 KB to
the old 53400.

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


[Libreoffice-bugs] [Bug 108031] FILEOPEN XLSX: Area chart labels not rotated

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108031

Pénzes Dávid  changed:

   What|Removed |Added

 Blocks||75057


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=75057
[Bug 75057] [META] .docx and .xlsx MSO related CHART object issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108068] Can't change Primary Key's name with Firebird Embedded db.

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108068

Lionel Elie Mamane  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||lio...@mamane.lu
 Resolution|--- |NOTOURBUG

--- Comment #2 from Lionel Elie Mamane  ---
>From the Firebird 2.5 documentation:

 * It will not be possible to change the name of a column
   that is included in any constraint: PRIMARY KEY , UNIQUE
   key, FOREIGN KEY , column constraint or the CHECK constraint
   of the table.

 * Renaming a column will also be disallowed if the column
   is used in any trigger, stored procedure or view.


I agree this is unfortunate, but this needs to be enhanced / fixed in Firebird,
so is best tracked in the firebird bugtracker.

On the LibreOffice side, we could, to better work around this firebird
limitation, instead of trying to drop and recreate the column, try to drop the
primary key, change the name and create the primary key again. This would solve
this particular scenario, but there will always be other scenarios left.

Note the user can remove the primary key, then rename, then recreate the
primary key. Will work, but not good from a user-friendliness point of view.

(In reply to Julien Nabet from comment #1)
> I noticed this on console:
> warn:connectivity.firebird:12867:1:connectivity/source/drivers/firebird/
> Statement.cxx:122: isc_dsql_execute failed
> warn:connectivity.firebird:12867:1:connectivity/source/drivers/firebird/Util.
> cxx:52: firebird_sdbc error:
> *unsuccessful metadata update
> *ALTER TABLE Table1 failed
> *action cancelled by trigger (1) to preserve data integrity
> *Cannot update index segment used by an Integrity Constraint
> caused by
> 'ALTER TABLE "Table1" ALTER COLUMN "ID"  TO "ID2"'

We should show this error message to the user. Would give hir a hint how to
deal with the situation rather than the misleading "propose to drop/recreate
the column".

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


[Libreoffice-bugs] [Bug 75057] [META] .docx and .xlsx MSO related CHART object issues

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75057

Pénzes Dávid  changed:

   What|Removed |Added

 Depends on||108031


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108031
[Bug 108031] FILEOPEN XLSX: Area chart labels not rotated
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108032] PNGs are expanded 20 times on export (w/lossless!), leading to bloated PDFs.

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108032

agere  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
Version|5.1.4.2 release |5.2.7.2 release
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 108028] Long chart title should automatically break

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108028

Pénzes Dávid  changed:

   What|Removed |Added

 Blocks||90486


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 90486] [META] Chart bugs and enhancements

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486

Pénzes Dávid  changed:

   What|Removed |Added

 Depends on||108028


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108028
[Bug 108028] Long chart title should automatically break
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 61350] Page separator line is slowing down page scrolling

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61350

--- Comment #19 from David  ---
The problem is most apparent to me when using the scroll wheel on the mouse,
which is usually how I scroll.

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


[Libreoffice-bugs] [Bug 108021] Text break is not supported for column chart X axis if text is rotated

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108021

Pénzes Dávid  changed:

   What|Removed |Added

 Blocks||90486


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 90486] [META] Chart bugs and enhancements

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486

Pénzes Dávid  changed:

   What|Removed |Added

 Depends on||108021


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108021
[Bug 108021] Text break is not supported for column chart X axis if text is
rotated
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 105002] MailMerge: Writer crashes using wizard 2nd time thru

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105002

--- Comment #18 from Xisco Faulí  ---
Pushed to master:
https://cgit.freedesktop.org/libreoffice/core/commit/?id=ce40f2798f0fa2f8f6e3084e4bbbd50e749c55d6

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


[Libreoffice-bugs] [Bug 108081] New: Search treats double space (and more) as single

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108081

Bug ID: 108081
   Summary: Search treats double space (and more) as single
   Product: LibreOffice Online
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cputt...@gmail.com

When searching for double spaces, search matches all single spaces. Also tried
with 3 and 4 spaces with same results. Tested on the Nextcloud corporate
installation and the public demo hosted by Pydio.

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


[Libreoffice-bugs] [Bug 72918] [FILEOPEN] LO should give error message and not crash when failing to load large document

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72918

Xisco Faulí  changed:

   What|Removed |Added

Version|4.2.0.1 rc  |Inherited From OOo

--- Comment #12 from Xisco Faulí  ---
Also reproduced in

LibreOffice 3.3.0 
OOO330m19 (Build:6)
tag libreoffice-3.3.0.4

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


[Libreoffice-bugs] [Bug 72918] [FILEOPEN] LO should give error message and not crash when failing to load large document

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72918

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #11 from Xisco Faulí  ---
Still reproducible in 

Version: 5.5.0.0.alpha0+
Build ID: 7662b11cad6105d56fb9acc9c431c89d3b68dc89
CPU threads: 1; OS: Windows 6.1; UI render: default; 
TinderBox: Win-x86@39, Branch:master, Time: 2017-05-20_10:09:09
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 107589] Addition of a description field to the Frame, Image and Object dialogs

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107589

Gülşah Köse  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |gulsah.1...@gmail.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 108077] [FILESAVE DOCX] Triangle points in Points and Lines chart appear upside down

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108077

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||xiscofa...@libreoffice.org
Version|5.3.3.2 release |4.3 all versions
 Ever confirmed|0   |1

--- Comment #3 from Xisco Faulí  ---
Confirmed in

Version: 5.4.0.0.alpha1+
Build ID: 74d2e606fd3605fe0a585f596eaa215ae4e20d18
CPU Threads: 4; OS Version: Linux 4.8; UI Render: default; VCL: gtk2; 
Locale: en-US (ca_ES.UTF-8); Calc: group

and

Version: 4.2.0.0.alpha1+
Build ID: fc8f44e82de4ebdd50ac5fbb9207cd1a59a927e3

In previous versions the chart wasn't exported. in banch 4.3 it was exported as
a pie chart.

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


[Libreoffice-bugs] [Bug 108061] [FILESAVE DOCX] Chart area fill property lost when saved as DOCX

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108061

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #3 from Xisco Faulí  ---
Hello Gabor,
Could you please point me where the problem is?
I can't see any difference in the attached screenshot.

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


[Libreoffice-bugs] [Bug 90486] [META] Chart bugs and enhancements

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486

Xisco Faulí  changed:

   What|Removed |Added

 Depends on|108080  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108080
[Bug 108080] [FILESAVE DOCX] Column Chart doesn't preserve color scheme when
changed to Pie chart, and later changed back to Column chart
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108080] [FILESAVE DOCX] Column Chart doesn' t preserve color scheme when changed to Pie chart, and later changed back to Column chart

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108080

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||xiscofa...@libreoffice.org
Version|5.3.3.2 release |4.3 all versions
 Blocks|90486   |75057
 Ever confirmed|0   |1

--- Comment #3 from Xisco Faulí  ---
Confirmed in

Version: 5.4.0.0.alpha1+
Build ID: 74d2e606fd3605fe0a585f596eaa215ae4e20d18
CPU Threads: 4; OS Version: Linux 4.8; UI Render: default; VCL: gtk2; 
Locale: en-US (ca_ES.UTF-8); Calc: group

and

Version: 4.2.0.0.alpha1+
Build ID: fc8f44e82de4ebdd50ac5fbb9207cd1a59a927e3

In previous versions the chart wasn't exported. in banch 4.3 it was exported as
a pie chart.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=75057
[Bug 75057] [META] .docx and .xlsx MSO related CHART object issues
https://bugs.documentfoundation.org/show_bug.cgi?id=90486
[Bug 90486] [META] Chart bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75057] [META] .docx and .xlsx MSO related CHART object issues

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75057

Xisco Faulí  changed:

   What|Removed |Added

 Depends on||108080


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108080
[Bug 108080] [FILESAVE DOCX] Column Chart doesn't preserve color scheme when
changed to Pie chart, and later changed back to Column chart
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2017-05-25 Thread Marco Cecchetti
 loleaflet/src/control/Control.Header.js |   11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

New commits:
commit cedeb72b71e26eb04f5763a8cbd858b17185a8e4
Author: Marco Cecchetti 
Date:   Mon May 22 18:05:05 2017 +0200

loleflet - sc: header incorrectly shows selection sometimes

Problem:
- Select a whole row, let's say row 10.
- Select a whole column, let's say column I.

=> Columns headers right from I, (J, K etc.) are still highlighted.
Similarly if a column selected first, and a row next.

Change-Id: I13ad0e2a152ddbf96c4889a3aea5129885bc95b5
Reviewed-on: https://gerrit.libreoffice.org/38002
Reviewed-by: Jan Holesovsky 
Tested-by: Jan Holesovsky 

diff --git a/loleaflet/src/control/Control.Header.js 
b/loleaflet/src/control/Control.Header.js
index 13bcd947..7b309339 100644
--- a/loleaflet/src/control/Control.Header.js
+++ b/loleaflet/src/control/Control.Header.js
@@ -33,11 +33,8 @@ L.Control.Header = L.Control.extend({
if (this._selection.start === -1 && this._selection.end === -1)
return;
var childs = element.children;
-   // if the selection is cleared when the end selection cell is 
not in the current viewport,
-   // we have _selection.end === -1, since only a portion of the 
header is fetched;
-   // so, without the following hack, the selection would not be 
cleared correctly
var start = (this._selection.start === -1) ? 0 : 
this._selection.start;
-   var end = (this._selection.end === -1) ? childs.length : 
this._selection.end + 1;
+   var end = this._selection.end + 1;
for (var iterator = start; iterator < end; iterator++) {
this.unselect(childs[iterator]);
}
@@ -72,6 +69,12 @@ L.Control.Header = L.Control.extend({
}
}
 
+   // if end is greater than the last fetched header position set 
itEnd to the max possible value
+   // without this hack selecting a whole row and then a whole 
column (or viceversa) leads to an incorrect selection
+   if (itStart !== -1 && itEnd === -1) {
+   itEnd = childs.length - 1;
+   }
+
// we need to unselect the row (column) header entry for the 
current cell cursor position
// since the selection could be due to selecting a whole row 
(column), so the selection
// does not start by clicking on a cell
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-05-25 Thread Marco Cecchetti
 loleaflet/src/control/Control.Header.js |   11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

New commits:
commit 1588d2fe12960f2f530e39340636b6393ca21571
Author: Marco Cecchetti 
Date:   Mon May 22 18:05:05 2017 +0200

loleflet - sc: header incorrectly shows selection sometimes

Problem:
- Select a whole row, let's say row 10.
- Select a whole column, let's say column I.

=> Columns headers right from I, (J, K etc.) are still highlighted.
Similarly if a column selected first, and a row next.

Change-Id: I13ad0e2a152ddbf96c4889a3aea5129885bc95b5
Reviewed-on: https://gerrit.libreoffice.org/38000
Reviewed-by: Jan Holesovsky 
Tested-by: Jan Holesovsky 

diff --git a/loleaflet/src/control/Control.Header.js 
b/loleaflet/src/control/Control.Header.js
index 13bcd947..7b309339 100644
--- a/loleaflet/src/control/Control.Header.js
+++ b/loleaflet/src/control/Control.Header.js
@@ -33,11 +33,8 @@ L.Control.Header = L.Control.extend({
if (this._selection.start === -1 && this._selection.end === -1)
return;
var childs = element.children;
-   // if the selection is cleared when the end selection cell is 
not in the current viewport,
-   // we have _selection.end === -1, since only a portion of the 
header is fetched;
-   // so, without the following hack, the selection would not be 
cleared correctly
var start = (this._selection.start === -1) ? 0 : 
this._selection.start;
-   var end = (this._selection.end === -1) ? childs.length : 
this._selection.end + 1;
+   var end = this._selection.end + 1;
for (var iterator = start; iterator < end; iterator++) {
this.unselect(childs[iterator]);
}
@@ -72,6 +69,12 @@ L.Control.Header = L.Control.extend({
}
}
 
+   // if end is greater than the last fetched header position set 
itEnd to the max possible value
+   // without this hack selecting a whole row and then a whole 
column (or viceversa) leads to an incorrect selection
+   if (itStart !== -1 && itEnd === -1) {
+   itEnd = childs.length - 1;
+   }
+
// we need to unselect the row (column) header entry for the 
current cell cursor position
// since the selection could be due to selecting a whole row 
(column), so the selection
// does not start by clicking on a cell
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-2-1' - loleaflet/dist

2017-05-25 Thread Marco Cecchetti
 loleaflet/dist/toolbar/toolbar.js |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 7e864dcfe57f45fcf5bb3d424ecee1f0ba31bd66
Author: Marco Cecchetti 
Date:   Tue May 23 15:20:34 2017 +0200

loleaflet: calc: styles are visible in fonts dropdown

Change-Id: Ia909ed9f35d6a1c80f6696abeddefe2d4ad2d6a0
Reviewed-on: https://gerrit.libreoffice.org/38003
Reviewed-by: Jan Holesovsky 
Tested-by: Jan Holesovsky 

diff --git a/loleaflet/dist/toolbar/toolbar.js 
b/loleaflet/dist/toolbar/toolbar.js
index 11ad3244..ca6fea60 100644
--- a/loleaflet/dist/toolbar/toolbar.js
+++ b/loleaflet/dist/toolbar/toolbar.js
@@ -1316,6 +1316,7 @@ function updateCommandValues() {
if (typeof commandValues === 'undefined') {
return;
}
+   data = []; // reset data in order to avoid that the font select 
box is populated with styles, too.
// Old browsers like IE11 et al don't like Object.keys with
// empty arguments
if (typeof commandValues === 'object') {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-05-25 Thread Marco Cecchetti
 loleaflet/dist/toolbar/toolbar.js |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 061c720ee1b7b018c58a1c994e5352ca268a2e67
Author: Marco Cecchetti 
Date:   Tue May 23 15:20:34 2017 +0200

loleaflet: calc: styles are visible in fonts dropdown

Change-Id: Ia909ed9f35d6a1c80f6696abeddefe2d4ad2d6a0
Reviewed-on: https://gerrit.libreoffice.org/38001
Reviewed-by: Jan Holesovsky 
Tested-by: Jan Holesovsky 

diff --git a/loleaflet/dist/toolbar/toolbar.js 
b/loleaflet/dist/toolbar/toolbar.js
index e295c9ea..18c996bf 100644
--- a/loleaflet/dist/toolbar/toolbar.js
+++ b/loleaflet/dist/toolbar/toolbar.js
@@ -1331,6 +1331,7 @@ function updateCommandValues() {
if (typeof commandValues === 'undefined') {
return;
}
+   data = []; // reset data in order to avoid that the font select 
box is populated with styles, too.
// Old browsers like IE11 et al don't like Object.keys with
// empty arguments
if (typeof commandValues === 'object') {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-05-25 Thread Caolán McNamara
 wizards/source/tools/Misc.xba |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 70fe321f3cadfb4c71bd2948d3b0651ab50ff009
Author: Caolán McNamara 
Date:   Thu May 25 09:43:12 2017 +0100

match GetStarOfficeLocale with NLPSolver.ResourceManager

for better or worse is another issue

Change-Id: I2019c7506b95eb97461afc9b1d41782e0a9b2504

diff --git a/wizards/source/tools/Misc.xba b/wizards/source/tools/Misc.xba
index 9c19c7c967fe..f5950afd1f18 100644
--- a/wizards/source/tools/Misc.xba
+++ b/wizards/source/tools/Misc.xba
@@ -101,6 +101,9 @@ Dim oMasterKey
If Ubound(sLocaleList())  0 Then
aLocLocale.Country = sLocaleList(1)
End If
+   If Ubound(sLocaleList())  1 Then
+   aLocLocale.Variant = sLocaleList(2)
+   End If
GetStarOfficeLocale() = aLocLocale
 End Function
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: wsd/ClientSession.cpp wsd/reference.txt

2017-05-25 Thread Pranav Kant
 wsd/ClientSession.cpp |4 ++--
 wsd/reference.txt |8 +++-
 2 files changed, 5 insertions(+), 7 deletions(-)

New commits:
commit 1a1ab5fd5751f9d6353bb91be918e96cf9c53b90
Author: Pranav Kant 
Date:   Thu May 25 14:11:33 2017 +0530

wsd: Only disable copying when DisableCopy is mentioned

Earlier, DisableCopy was a misnomer disabling both copy and paste. Now
it only disables copy from the document but allows pasting into the
document.

Change-Id: I8ddfdd493918331276f0656468d3b94c4283fa4d

diff --git a/wsd/ClientSession.cpp b/wsd/ClientSession.cpp
index 387f7629..4a886a43 100644
--- a/wsd/ClientSession.cpp
+++ b/wsd/ClientSession.cpp
@@ -420,12 +420,12 @@ bool ClientSession::filterMessage(const std::string& 
message) const
 LOG_WRN("No value of id in downloadas message");
 }
 }
-else if (tokens[0] == "gettextselection" || tokens[0] == "paste" || 
tokens[0] == "insertfile")
+else if (tokens[0] == "gettextselection")
 {
 if (_wopiFileInfo && _wopiFileInfo->_disableCopy)
 {
 allowed = false;
-LOG_WRN("WOPI host has disabled copying to/from the document");
+LOG_WRN("WOPI host has disabled copying from the document");
 }
 }
 else if (isReadOnly())
diff --git a/wsd/reference.txt b/wsd/reference.txt
index e1af6d4b..5c706621 100644
--- a/wsd/reference.txt
+++ b/wsd/reference.txt
@@ -41,11 +41,9 @@ DisableExport
HideExportOption is assumed to be true
 
 DisableCopy
-   Disables copy/paste from/to the document in libreoffice online backend.
-   However, it is still possible to do an "internal" cut/copy/paste i.e
-   copy from the document and paste to the same document view. The context
-   menu options pertaining to cut/copy/paste would be renamed to 'Internal
-   Cut/Copy/Paste' when this option is mentioned.
+   Disables copying from the document in libreoffice online
+   backend. Pasting into the document would still be possible.
+   However, it is still possible to do an "internal" cut/copy/paste.
 
 EnableOwnerTermination
If set to true, it allows the document owner (the one with OwnerId =
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-05-25 Thread Caolán McNamara
 wizards/source/tools/Misc.xba |8 
 1 file changed, 8 deletions(-)

New commits:
commit 63e3a8b48aff32886acea504500a764234b60793
Author: Caolán McNamara 
Date:   Thu May 25 09:36:03 2017 +0100

GetLocale is unused

Change-Id: I106caf2e32236eea5b5517171c277533c4957c0e

diff --git a/wizards/source/tools/Misc.xba b/wizards/source/tools/Misc.xba
index 0d6e2afaf6c6..9c19c7c967fe 100644
--- a/wizards/source/tools/Misc.xba
+++ b/wizards/source/tools/Misc.xba
@@ -732,14 +732,6 @@ Function IsFatOffice() As Boolean
 End Function
 
 
-Function GetLocale(sLanguage as String, sCountry as String)
-Dim oLocale as New com.sun.star.lang.Locale
-   oLocale.Language = sLanguage
-   oLocale.Country = sCountry
-   GetLocale = oLocale
-End Function
-
-
 Sub ToggleDesignMode(oDocument as Object)
 Dim aSwitchMode as new com.sun.star.util.URL
aSwitchMode.Complete = .uno:SwitchControlDesignMode
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-2-1' - loleaflet/debug loleaflet/main.js loleaflet/src

2017-05-25 Thread Henry Castro
 loleaflet/debug/document/loleaflet.html  |1 +
 loleaflet/main.js|3 +++
 loleaflet/src/control/Control.Menubar.js |6 +-
 3 files changed, 9 insertions(+), 1 deletion(-)

New commits:
commit 76cc33b5f42c4649475b44fce614d82818f8f8ab
Author: Henry Castro 
Date:   Wed May 24 10:28:14 2017 -0400

loleaflet: add parameter to disable 'About' menu

Change-Id: I07fa655b8318f78d7e479a3dc34830ebe5f81a2e
Reviewed-on: https://gerrit.libreoffice.org/37991
Reviewed-by: Jan Holesovsky 
Tested-by: Jan Holesovsky 

diff --git a/loleaflet/debug/document/loleaflet.html 
b/loleaflet/debug/document/loleaflet.html
index 33364cea..f5462f84 100644
--- a/loleaflet/debug/document/loleaflet.html
+++ b/loleaflet/debug/document/loleaflet.html
@@ -106,6 +106,7 @@
 var permission = getParameterByName('permission') || 'edit';
 var timestamp = getParameterByName('timestamp');
 var closebutton = getParameterByName('closebutton');
+var disableAbout = getParameterByName('disableabout');
 if (wopiSrc === '' && filePath === '') {
 vex.dialog.alert(wrongwopisrc);
 }
diff --git a/loleaflet/main.js b/loleaflet/main.js
index 48200cd9..2fb44b3d 100644
--- a/loleaflet/main.js
+++ b/loleaflet/main.js
@@ -75,6 +75,8 @@ var closebutton = getParameterByName('closebutton');
 var revHistoryEnabled = getParameterByName('revisionhistory');
 // Should the document go inactive or not
 var alwaysActive = getParameterByName('alwaysactive');
+// Disable the about dialog
+var disableAbout = getParameterByName('disableabout');
 // Loleaflet Debug mode
 var debugMode = getParameterByName('debug');
 if (wopiSrc === '' && filePath === '') {
@@ -88,6 +90,7 @@ if (host === '') {
 // TODO: Get rid of these globals
 global.closebutton = closebutton;
 global.revHistoryEnabled = revHistoryEnabled;
+global.disableAbout = disableAbout;
 global.title = title;
 global.errorMessages = errorMessages;
 var docURL, docParams;
diff --git a/loleaflet/src/control/Control.Menubar.js 
b/loleaflet/src/control/Control.Menubar.js
index 8206ab5c..29c64bbb 100644
--- a/loleaflet/src/control/Control.Menubar.js
+++ b/loleaflet/src/control/Control.Menubar.js
@@ -2,7 +2,7 @@
 * Control.Menubar
 */
 
-/* global $ _ map title vex revHistoryEnabled closebutton */
+/* global $ _ map title vex revHistoryEnabled closebutton disableAbout*/
 L.Control.Menubar = L.Control.extend({
// TODO: Some mechanism to stop the need to copy duplicate menus (eg. 
Help)
options: {
@@ -541,6 +541,10 @@ L.Control.Menubar = L.Control.extend({
_createMenu: function(menu) {
var itemList = [];
for (var i in menu) {
+   if (menu[i].id === 'about' && disableAbout) {
+   continue;
+   }
+
if (map._permission === 'readonly' && menu[i].type === 
'menu') {
var found = false;
for (var j in 
this.options.allowedReadonlyMenus) {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 105316] Crash in OutputDevice::InitLineColor() when stressing the Select Theme Categories

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105316

--- Comment #7 from Michael Meeks  ---
Created attachment 133562
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133562=edit
protect VCL usage ...

Sample patch, un-tested / compiled - might help etc. =) Of course, taking the
SolarMutex rather defeats the purpose of threading this in the 1st instance ;-)
Quite possibly we want to download the file in the thread and outside the
SolarMutexGuard - and save it locally, before importing the image with a local
file (might be worth a try) ...

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

2017-05-25 Thread Mark Hung
 vcl/qa/cppunit/pdfexport/pdfexport.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 002b4584e1db1c9ed776479ff8f99c21e957
Author: Mark Hung 
Date:   Wed May 24 20:14:35 2017 +0800

Bypass PdfExportTest::testTdf107868() in 64-bit Windows

It also failed with VS2015. Just bypass it now.

Change-Id: Ic657d1d341e8c9598e163f5f32b6e0bbee3959e4
Reviewed-on: https://gerrit.libreoffice.org/37987
Tested-by: Jenkins 
Reviewed-by: Mark Hung 

diff --git a/vcl/qa/cppunit/pdfexport/pdfexport.cxx 
b/vcl/qa/cppunit/pdfexport/pdfexport.cxx
index 9d42dfa5489e..f4fbf022e198 100644
--- a/vcl/qa/cppunit/pdfexport/pdfexport.cxx
+++ b/vcl/qa/cppunit/pdfexport/pdfexport.cxx
@@ -266,8 +266,8 @@ void PdfExportTest::testTdf105461()
 void PdfExportTest::testTdf107868()
 {
 // FIXME: Why does this fail on macOS?
-// FIXME: Why does this fail when building 64bit with VS2017?
-#if !defined MACOSX && !(defined _WIN64 && _MSC_VER >= 1910)
+// FIXME: Why does this fail when building 64bit?
+#if !defined MACOSX && !defined _WIN64
 // Import the bugdoc and print to PDF.
 OUString aURL = m_directories.getURLFromSrc(DATA_DIRECTORY) + 
"tdf107868.odt";
 mxComponent = loadFromDesktop(aURL);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 105316] Crash in OutputDevice::InitLineColor() when stressing the Select Theme Categories

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105316

--- Comment #6 from Michael Meeks  ---
Wow this is bad:

#18 0x2aaab466c8a7 in Button::SetModeImage (this=0x5bfea100,
rImage=...) at /home/julien/lo/libreoffice/vcl/source/control/button.cxx:178
#19 0x2aaaf99fd828 in SelectPersonaDialog::ClearSearchResults
(this=0x5ba85680) at
/home/julien/lo/libreoffice/cui/source/options/personalization.cxx:261
#20 0x2aaaf9a00707 in SearchAndParseThread::execute (this=0x5bf45410)
at /home/julien/lo/libreoffice/cui/source/options/personalization.cxx:680
#21 0x2f506ed8 in salhelper::Thread::run (this=0x5bf45410) at
/home/julien/lo/libreoffice/salhelper/source/thread.cxx:40

We should never call random VCL methods like Button::SetModeImage from a thread
without first taking the Solar Mutex - that is what is caught here ...

Quite probably we should add more of these checks to random Window:: methods to
ensure that the correct thread is running =)

I imagine this is the root of the crash.

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


[Libreoffice-bugs] [Bug 108080] [FILESAVE DOCX] Column Chart doesn' t preserve color scheme when changed to Pie chart, and later changed back to Column chart

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108080

--- Comment #1 from Gabor Kelemen  ---
Created attachment 133560
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133560=edit
Example file saved to docx from LO 5.3

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


[Libreoffice-bugs] [Bug 108080] [FILESAVE DOCX] Column Chart doesn' t preserve color scheme when changed to Pie chart, and later changed back to Column chart

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108080

Gabor Kelemen  changed:

   What|Removed |Added

 Blocks||90486


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 90486] [META] Chart bugs and enhancements

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486

Gabor Kelemen  changed:

   What|Removed |Added

 Depends on||108080


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108080
[Bug 108080] [FILESAVE DOCX] Column Chart doesn't preserve color scheme when
changed to Pie chart, and later changed back to Column chart
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108080] [FILESAVE DOCX] Column Chart doesn' t preserve color scheme when changed to Pie chart, and later changed back to Column chart

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108080

--- Comment #2 from Gabor Kelemen  ---
Created attachment 133561
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133561=edit
Docx in Word 2013 and odt in LO 5.3 side by side

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


[Libreoffice-bugs] [Bug 108080] New: [FILESAVE DOCX] Column Chart doesn' t preserve color scheme when changed to Pie chart, and later changed back to Column chart

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108080

Bug ID: 108080
   Summary: [FILESAVE DOCX] Column Chart doesn't preserve color
scheme when changed to Pie chart, and later changed
back to Column chart
   Product: LibreOffice
   Version: 5.3.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Chart
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com

Created attachment 133559
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133559=edit
Example file from LO 5.3

By default the same data series in different data points have the same color.
This means that if you have 4 data points with 3 data series each in a chart
the “data series 1” columns are all blue, the “data series 2” columns are all
orange and the “data series 3” columns are all yellow. This is the default
setting for column charts in LibreOffice. 
Now change the type of the chart to Pie chart, save the document as ODT, and
then reopen it in LibreOffice. 
Change the chart type back to Column chart, and now the data points have the
same color: all data series in “data point 1” are blue, all data series in
“data point 2” are orange, all data series in “data point 3” are yellow and all
data series in “data point 4” are green. 
Now save the file as a DOCX, reopen the DOCX file, and the colors in the chart
are reverted to the original settings: “data series 1” columns are all blue,
the “data series 2” columns are all orange and the “data series 3” columns are
all yellow.

Steps to reproduce:
1. Create an empty text document in LibreOffice Writer
2. Insert a Chart
3. Change the chart type to Pie chart
4. Save the file as ODT
5. Reopen the file in LibreOffice Writer.
6. Change the chart type back to line chart.
7. Save the file as ODT.
8. Save the file as DOCX.
9. Compare the ODT and the DOCX files.

Actual results:
The colors of the columns are different in the ODT and in the DOCX file.

Expected results:
The colors of the columns should be consistent across the ODT and DOCX files.

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


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

2017-05-25 Thread Maxim Monastirsky
 sw/source/uibase/app/apphdl.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit ce40f2798f0fa2f8f6e3084e4bbbd50e749c55d6
Author: Maxim Monastirsky 
Date:   Thu May 25 02:17:06 2017 +0300

tdf#105002 Don't crash on mail wizard recreation

Change-Id: I8af4753cc654ec475d40223a64afa50a9de332ab
Reviewed-on: https://gerrit.libreoffice.org/38007
Tested-by: Jenkins 
Reviewed-by: Jan Holesovsky 

diff --git a/sw/source/uibase/app/apphdl.cxx b/sw/source/uibase/app/apphdl.cxx
index 61e98ca892ca..79e4fb4d8ceb 100644
--- a/sw/source/uibase/app/apphdl.cxx
+++ b/sw/source/uibase/app/apphdl.cxx
@@ -566,6 +566,7 @@ IMPL_LINK_NOARG( SwMailMergeWizardExecutor, EndDialogHdl, 
Dialog&, void )
 xMMConfig->SetTargetView(nullptr);
 
 // destroy wizard asynchronously
+m_pWizardToDestroyInCallback = m_pWizard;
 Application::PostUserEvent(
 LINK( this, SwMailMergeWizardExecutor, CloseFrameHdl ), 
m_pWizard );
 
@@ -659,6 +660,7 @@ IMPL_LINK_NOARG(SwMailMergeWizardExecutor, CloseFrameHdl, 
void*, void)
 m_pView2Close->GetViewFrame()->DoClose();
 m_pView2Close = nullptr;
 }
+m_pWizardToDestroyInCallback.disposeAndClear();
 }
 } // namespace
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 108027] FILEOPEN XLSX: The column descriptions of a column chart disappear

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108027

Pénzes Dávid  changed:

   What|Removed |Added

 Blocks||75057


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=75057
[Bug 75057] [META] .docx and .xlsx MSO related CHART object issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75057] [META] .docx and .xlsx MSO related CHART object issues

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75057

Pénzes Dávid  changed:

   What|Removed |Added

 Depends on||108027


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108027
[Bug 108027] FILEOPEN XLSX: The column descriptions of a column chart disappear
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108022] FILESAVE DOCX: One column chart is exported instead of two

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108022

Pénzes Dávid  changed:

   What|Removed |Added

 Blocks||75057


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=75057
[Bug 75057] [META] .docx and .xlsx MSO related CHART object issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75057] [META] .docx and .xlsx MSO related CHART object issues

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75057

Pénzes Dávid  changed:

   What|Removed |Added

 Depends on||108022


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108022
[Bug 108022] FILESAVE DOCX: One column chart is exported instead of two
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108029] XLSX FILESAVE: The columns of the column chart disappear

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108029

Pénzes Dávid  changed:

   What|Removed |Added

 Blocks||75057


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=75057
[Bug 75057] [META] .docx and .xlsx MSO related CHART object issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108061] [FILESAVE DOCX] Chart area fill property lost when saved as DOCX

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108061

Pénzes Dávid  changed:

   What|Removed |Added

 Blocks||75057


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=75057
[Bug 75057] [META] .docx and .xlsx MSO related CHART object issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75057] [META] .docx and .xlsx MSO related CHART object issues

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75057

Pénzes Dávid  changed:

   What|Removed |Added

 Depends on||108029


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108029
[Bug 108029] XLSX FILESAVE: The columns of the column chart disappear
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75057] [META] .docx and .xlsx MSO related CHART object issues

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75057

Pénzes Dávid  changed:

   What|Removed |Added

 Depends on||108061


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108061
[Bug 108061] [FILESAVE DOCX] Chart area fill property lost when saved as DOCX
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108059] [FILESAVE DOCX] Pie and Donut charts appear mirrored in MS Word 2013 when saved in Writer as DOCX

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108059

Pénzes Dávid  changed:

   What|Removed |Added

 Blocks||75057


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=75057
[Bug 75057] [META] .docx and .xlsx MSO related CHART object issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75057] [META] .docx and .xlsx MSO related CHART object issues

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75057

Pénzes Dávid  changed:

   What|Removed |Added

 Depends on||108059


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108059
[Bug 108059] [FILESAVE DOCX] Pie and Donut charts appear mirrored in MS Word
2013 when saved in Writer as DOCX
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108077] [FILESAVE DOCX] Triangle points in Points and Lines chart appear upside down

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108077

Pénzes Dávid  changed:

   What|Removed |Added

 Blocks||75057


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=75057
[Bug 75057] [META] .docx and .xlsx MSO related CHART object issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108064] [FILESAVE DOCX] Border Line Style property of the data series not preserved when saved as DOCX

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108064

Pénzes Dávid  changed:

   What|Removed |Added

 Blocks||104520


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 75057] [META] .docx and .xlsx MSO related CHART object issues

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75057

Pénzes Dávid  changed:

   What|Removed |Added

 Depends on||108077


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108077
[Bug 108077] [FILESAVE DOCX] Triangle points in Points and Lines chart appear
upside down
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104520] [META] DOCX (OOXML) bug tracker

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104520

Pénzes Dávid  changed:

   What|Removed |Added

 Depends on||108064


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108064
[Bug 108064] [FILESAVE DOCX] Border Line Style property of the data series not
preserved when saved as DOCX
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75057] [META] .docx and .xlsx MSO related CHART object issues

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75057

Pénzes Dávid  changed:

   What|Removed |Added

 Depends on||108078


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108078
[Bug 108078] [FILESAVE DOCX] Chart title area fill property lost when saved as
DOCX
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108078] [FILESAVE DOCX] Chart title area fill property lost when saved as DOCX

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108078

Pénzes Dávid  changed:

   What|Removed |Added

 Blocks||75057


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=75057
[Bug 75057] [META] .docx and .xlsx MSO related CHART object issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108079] [FILESAVE DOCX] Chart legend size and position not retained when saved to DOCX

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108079

--- Comment #2 from Gabor Kelemen  ---
Created attachment 133558
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133558=edit
Docx in Word 2013 and odt in LO 5.3 side by side

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


[Libreoffice-bugs] [Bug 75057] [META] .docx and .xlsx MSO related CHART object issues

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75057

Pénzes Dávid  changed:

   What|Removed |Added

 Depends on||108079


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108079
[Bug 108079] [FILESAVE DOCX] Chart legend size and position not retained when
saved to DOCX
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108079] [FILESAVE DOCX] Chart legend size and position not retained when saved to DOCX

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108079

Pénzes Dávid  changed:

   What|Removed |Added

 Blocks||75057


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=75057
[Bug 75057] [META] .docx and .xlsx MSO related CHART object issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108079] [FILESAVE DOCX] Chart legend size and position not retained when saved to DOCX

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108079

--- Comment #1 from Gabor Kelemen  ---
Created attachment 133557
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133557=edit
Example file saved to docx from LO 5.3

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


[Libreoffice-bugs] [Bug 108079] New: [FILESAVE DOCX] Chart legend size and position not retained when saved to DOCX

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108079

Bug ID: 108079
   Summary: [FILESAVE DOCX] Chart legend size and position not
retained when saved to DOCX
   Product: LibreOffice
   Version: 5.3.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Chart
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com

Created attachment 133556
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133556=edit
Example file from LO 5.3

The Chart legend size and position changes to the bottom left corner when the
document is saved as DOCX.

Steps to reproduce:
1. Create an empty text document in LibreOffice Writer
2. Insert a Chart
3. Reposition and resize the chart legend. We put it below the chart, to have
all items in one row 
4. Save the file as DOCX
5. Reopen the file in LibreOffice Writer or Microsoft Word 2013

Actual results:
The chart legend changes size and moves to a different position.

Expected results:
The chart legend should appear consistent with the original ODT file.

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


[Libreoffice-bugs] [Bug 108078] [FILESAVE DOCX] Chart title area fill property lost when saved as DOCX

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108078

--- Comment #2 from Gabor Kelemen  ---
Created attachment 133555
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133555=edit
Docx in Word 2013 and odt in LO 5.3 side by side

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


[Libreoffice-bugs] [Bug 108078] [FILESAVE DOCX] Chart title area fill property lost when saved as DOCX

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108078

--- Comment #1 from Gabor Kelemen  ---
Created attachment 133554
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133554=edit
Example file saved to docx from LO 5.3

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


[Libreoffice-bugs] [Bug 108078] New: [FILESAVE DOCX] Chart title area fill property lost when saved as DOCX

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108078

Bug ID: 108078
   Summary: [FILESAVE DOCX] Chart title area fill property lost
when saved as DOCX
   Product: LibreOffice
   Version: 5.3.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Chart
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com

Created attachment 133553
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133553=edit
Example file from LO 5.3

The Chart title area fill property isn't preserved when the document is saved
as DOCX. This bug is consistent regardless of the type of the Area Fill, so it
can be reproduced with Color, Gradient, Hatching and Bitmap fill.

Steps to reproduce:
1. Create an empty text document in LibreOffice Writer
2. Insert a Chart
3. Insert a Chart title
3. Change the Chart title area fill from None to anything else (Color,
Gradient, Hatching or Bitmap)
4. Save the file as DOCX
5. Reopen the file in LibreOffice Writer or Microsoft Word 2013

Actual results:
The chart title area fill disappears.

Expected results:
The chart title area fill should be preserved.

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


[Libreoffice-bugs] [Bug 108064] [FILESAVE DOCX] Border Line Style property of the data series not preserved when saved as DOCX

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108064

Jacques Guilleron  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||guillero...@aol.com
 Ever confirmed|0   |1

--- Comment #3 from Jacques Guilleron  ---
Hello Gabor,

I reproduce with
LO 5.5.0.0.alpha0+ Build ID: 0e6297932252403883a6057feee488e4ee2bc360
CPU threads: 2; OS: Windows 6.1; UI render: default; 
TinderBox: Win-x86@39, Branch:master, Time: 2017-05-23_00:14:17
Locale: fr-FR (fr_FR); Calc: CL
and
LO 4.2.0.0.beta1 Build ID: f4ca7b35f580827ad2c69ea6d29f7c9b48ebbac7
& Windows 7 Home

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


[Libreoffice-bugs] [Bug 91913] BASIC Editor: Line number display activation does not survive LO restart; line number column opens too narrow

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91913

tagezi  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||lera.goncha...@gmail.com
   Assignee|libreoffice-b...@lists.free |lera.goncha...@gmail.com
   |desktop.org |

--- Comment #4 from tagezi  ---
I took this issue.

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


[Libreoffice-bugs] [Bug 104520] [META] DOCX (OOXML) bug tracker

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104520

Pénzes Dávid  changed:

   What|Removed |Added

 Depends on||108077


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108077
[Bug 108077] [FILESAVE DOCX] Triangle points in Points and Lines chart appear
upside down
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108077] [FILESAVE DOCX] Triangle points in Points and Lines chart appear upside down

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108077

Pénzes Dávid  changed:

   What|Removed |Added

 Blocks||104520


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 108077] [FILESAVE DOCX] Triangle points in Points and Lines chart appear upside down

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108077

--- Comment #2 from Gabor Kelemen  ---
Created attachment 133552
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133552=edit
Docx in Word 2013 and odt in LO 5.3 side by side

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


[Libreoffice-bugs] [Bug 108077] [FILESAVE DOCX] Triangle points in Points and Lines chart appear upside down

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108077

--- Comment #1 from Gabor Kelemen  ---
Created attachment 133551
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133551=edit
Example file saved to docx from LO 5.3

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


[Libreoffice-bugs] [Bug 108077] New: [FILESAVE DOCX] Triangle points in Points and Lines chart appear upside down

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108077

Bug ID: 108077
   Summary: [FILESAVE DOCX] Triangle points in Points and Lines
chart appear upside down
   Product: LibreOffice
   Version: 5.3.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Chart
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com

Created attachment 133550
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133550=edit
Example file from LO 5.3

Triangle shaped points appear upside down in Points and Lines charts when the
file is saved as DOCX.

Steps to reproduce:
1. Create an empty text document in LibreOffice Writer
2. Insert a Chart
3. Change the chart type to Points and Lines
4. Save the file as DOCX
5. Reopen the file either in LibreOffice Writer or Microsoft Word 2013

Actual results:
The triangles are upside down

Expected results:
The triangles in the DOCX file should look like in the ODT file

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


[Libreoffice-bugs] [Bug 107979] Memory leak

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107979

--- Comment #8 from fred...@free.fr ---
Thanks to a system crash, here is a little test I could run:

Turn on computer after a system crash.

Open LibreOffice and agree the file recuperation, consisting of:
2 .xlsx (48 kiB and 54 kiB), each with 16 conditional formatting rules and 7
sheets of pure text
1 .ods with 7 sheets, each with only 1 line of pure text (between 20 and 120
columns) (14,5 kiB)
1 CSV (2 MiB) of pure text (approx 5,500 lines of 100 columns)

At that point, soffice.bin's RAM usage is 160 MiB.

Then I applied to 12 CSV files, each consisting of only one line of 20 to 120
columns and weighing between 281 B and 1.2 kiB), the exactly identical sequence
as following:
[Open CSV, remove one column, save (still as CSV) and close]

At that point, soffice.bin's RAM usage is 205 MiB.

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

2017-05-25 Thread Michael Stahl
 sdext/source/presenter/PresenterScrollBar.cxx |1 
 sdext/source/presenter/PresenterScrollBar.hxx |3 
 sdext/source/presenter/PresenterTextView.cxx  |6 +
 sdext/source/presenter/PresenterTextView.hxx  |2 
 sdext/source/presenter/PresenterTimer.cxx |   99 +++---
 sdext/source/presenter/PresenterTimer.hxx |2 
 6 files changed, 104 insertions(+), 9 deletions(-)

New commits:
commit 1a14a0404ef02a76cfc3b6bfd50b1c78bb150d45
Author: Michael Stahl 
Date:   Wed May 24 16:14:56 2017 +0200

rhbz#1425304 sdext: join TimerScheduler thread before shutdown

Use a osl::Condition to interrupt the waiting thread, and join it.

Change-Id: I638a2495afd082446c39faf9362578bd0f758d04
(cherry picked from commit 15b033d1dd09cd1898a994a0f12e38ed5cf847cb)
Reviewed-on: https://gerrit.libreoffice.org/37992
Tested-by: Jenkins 
Reviewed-by: Miklos Vajna 

diff --git a/sdext/source/presenter/PresenterScrollBar.cxx 
b/sdext/source/presenter/PresenterScrollBar.cxx
index 8cba1bcafa01..831c0ec274bb 100644
--- a/sdext/source/presenter/PresenterScrollBar.cxx
+++ b/sdext/source/presenter/PresenterScrollBar.cxx
@@ -802,6 +802,7 @@ void PresenterScrollBar::MousePressRepeater::Start (const 
PresenterScrollBar::Ar
 // Schedule repeated executions.
 auto pThis(shared_from_this());
 mnMousePressRepeaterTaskId = PresenterTimer::ScheduleRepeatedTask (
+mpScrollBar->GetComponentContext(),
 [pThis] (TimeValue const& rTime) { return pThis->Callback(rTime); 
},
 5,
 25000);
diff --git a/sdext/source/presenter/PresenterScrollBar.hxx 
b/sdext/source/presenter/PresenterScrollBar.hxx
index 7706ce4ea5aa..1c51194e897b 100644
--- a/sdext/source/presenter/PresenterScrollBar.hxx
+++ b/sdext/source/presenter/PresenterScrollBar.hxx
@@ -60,6 +60,9 @@ public:
 
 virtual void SAL_CALL disposing() override;
 
+css::uno::Reference const&
+GetComponentContext() { return mxComponentContext; }
+
 void SetVisible (const bool bIsVisible);
 
 /** Set the bounding box of the scroll bar.
diff --git a/sdext/source/presenter/PresenterTextView.cxx 
b/sdext/source/presenter/PresenterTextView.cxx
index 8e3800b46479..1946696b4b89 100644
--- a/sdext/source/presenter/PresenterTextView.cxx
+++ b/sdext/source/presenter/PresenterTextView.cxx
@@ -73,6 +73,7 @@ PresenterTextView::PresenterTextView (
   mpFont(),
   maParagraphs(),
   mpCaret(new PresenterTextCaret(
+  rxContext,
   [this] (sal_Int32 const nParagraphIndex, sal_Int32 const 
nCharacterIndex)
   { return this->GetCaretBounds(nParagraphIndex, nCharacterIndex); 
},
   rInvalidator)),
@@ -1077,9 +1078,11 @@ void PresenterTextParagraph::SetupCellArray (
 //= PresenterTextCaret 
 
 PresenterTextCaret::PresenterTextCaret (
+uno::Reference const& xContext,
 const ::std::function& rCharacterBoundsAccess,
 const ::std::function& rInvalidator)
-: mnParagraphIndex(-1),
+: m_xContext(xContext)
+, mnParagraphIndex(-1),
   mnCharacterIndex(-1),
   mnCaretBlinkTaskId(0),
   mbIsCaretVisible(false),
@@ -1100,6 +1103,7 @@ void PresenterTextCaret::ShowCaret()
 if (mnCaretBlinkTaskId == 0)
 {
 mnCaretBlinkTaskId = PresenterTimer::ScheduleRepeatedTask (
+m_xContext,
 [this] (TimeValue const&) { return this->InvertCaret(); },
 CaretBlinkIntervall,
 CaretBlinkIntervall);
diff --git a/sdext/source/presenter/PresenterTextView.hxx 
b/sdext/source/presenter/PresenterTextView.hxx
index b56bd5a85f31..9fc7fd663e1f 100644
--- a/sdext/source/presenter/PresenterTextView.hxx
+++ b/sdext/source/presenter/PresenterTextView.hxx
@@ -41,6 +41,7 @@ class PresenterTextCaret
 {
 public:
 PresenterTextCaret (
+css::uno::Reference const& xContext,
 const ::std::function&
 rCharacterBoundsAccess,
 const ::std::function&
@@ -69,6 +70,7 @@ public:
 const css::awt::Rectangle& GetBounds() const;
 
 private:
+css::uno::Reference const& m_xContext;
 sal_Int32 mnParagraphIndex;
 sal_Int32 mnCharacterIndex;
 sal_Int32 mnCaretBlinkTaskId;
diff --git a/sdext/source/presenter/PresenterTimer.cxx 
b/sdext/source/presenter/PresenterTimer.cxx
index e9d3117ba323..6d4897642c42 100644
--- a/sdext/source/presenter/PresenterTimer.cxx
+++ b/sdext/source/presenter/PresenterTimer.cxx
@@ -18,10 +18,15 @@
  */
 
 #include "PresenterTimer.hxx"
+
 #include 
 #include 
+#include 
+#include 
+
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -71,7 +76,8 @@ class TimerScheduler
   public ::osl::Thread
 {
 public:
-static std::shared_ptr Instance();
+static std::shared_ptr Instance(
+uno::Reference const& xContext);
 static SharedTimerTask 

[Libreoffice-bugs] [Bug 108076] New: Cell Styles don' t provide formatting functionality as the term "style" leads the user to expect

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108076

Bug ID: 108076
   Summary: Cell Styles don't provide formatting functionality as
the term "style" leads the user to expect
   Product: LibreOffice
   Version: 5.3.2.2 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: timbacont...@gmail.com

Description:
A "style" is understood by most users to be - as has been long established in
Microsoft Word - a way to easily apply a user-defined set of character (or
paragraph or cell) attributes to the user's selection. For example, a style
might make the selected characters superscript and 6 pt size without affecting
any other character attributes. Each such style would then be accessible via a
user-defined keyboard shortcut, allowing the user to quickly go through a large
spreadsheet and apply, or change, the visual appearance.

If Calc 5.3.2.2 allows this it's insanely unintuitive and the help file is no
help whatsoever. My attempts to create styles, when applied, seem to try to
change every single parameter (and seem to do this in a very buggy way,
although I'm not sure it's a bug because I can't understand how the UI is
supposed to work).

Steps to Reproduce:
1. try to use styles as described
2. try to use the help pages
3. _?

Actual Results:  
Extreme frustration

Expected Results:
If it's called a "style" - obviously a tip of the hat to Microsoft Word - it
should work as well or (preferably) better than Word, and someone who is
comfortable with Word styles (e.g., about 1 billion people) should be able to
intuit how Calc works. In lieu of that, the help file should explain, in detail
and in friendly fashion, what is different and why, and how to use styles to
save time.


Reproducible: Always

User Profile Reset: No

Additional Info:


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

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


[Libreoffice-commits] core.git: download.lst external/poppler

2017-05-25 Thread David Tardon
 download.lst|4 ++--
 external/poppler/ExternalProject_poppler.mk |2 +-
 external/poppler/ubsan.patch.0  |2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit b12e16f8fc186117cbb20cc3866bf052a3d75515
Author: David Tardon 
Date:   Wed May 24 19:09:54 2017 +0200

upload poppler 0.55.0

Change-Id: I19b7d324a2dc50d006b4d255ddb6a5c1f15bc616
Reviewed-on: https://gerrit.libreoffice.org/37998
Tested-by: Jenkins 
Reviewed-by: David Tardon 

diff --git a/download.lst b/download.lst
index 619a2c77038e..5bdeab91e5a9 100644
--- a/download.lst
+++ b/download.lst
@@ -191,8 +191,8 @@ export PIXMAN_SHA256SUM := 
21b6b249b51c6800dc9553b65106e1e37d0e25df942c90531d4c3
 export PIXMAN_TARBALL := e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz
 export PNG_SHA256SUM := 
b6cec903e74e9fdd7b5bbcde0ab2415dd12f2f9e84d9e4d9ddd2ba26a41623b2
 export PNG_TARBALL := libpng-1.6.28.tar.gz
-export POPPLER_SHA256SUM := 
528b661738839f9a25f6e580fcd2d5db007e0a1948580c6489f0062798ca1992
-export POPPLER_TARBALL := poppler-0.52.0.tar.xz
+export POPPLER_SHA256SUM := 
537f2bc60d796525705ad9ca8e46899dcc99c2e9480b80051808bae265cdc658
+export POPPLER_TARBALL := poppler-0.55.0.tar.xz
 export POSTGRESQL_SHA256SUM := 
db61d498105a7d5fe46185e67ac830c878cdd7dc1f82a87f06b842217924c461
 export POSTGRESQL_TARBALL := 
c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2
 export PYTHON_SHA256SUM := 
d8890b84d773cd7059e597dbefa510340de8336ec9b9e9032bf030f19291565a
diff --git a/external/poppler/ExternalProject_poppler.mk 
b/external/poppler/ExternalProject_poppler.mk
index 2a83b164ce4d..83d51b9ea9e7 100644
--- a/external/poppler/ExternalProject_poppler.mk
+++ b/external/poppler/ExternalProject_poppler.mk
@@ -28,7 +28,7 @@ $(call gb_ExternalProject_get_state_target,poppler,build) :
--disable-shared \
--enable-xpdf-headers \
--disable-poppler-cpp \
-   --disable-libopenjpeg \
+   --enable-libopenjpeg=none \
--disable-libtiff \
--enable-libjpeg \
--disable-libpng \
diff --git a/external/poppler/ubsan.patch.0 b/external/poppler/ubsan.patch.0
index 67675253b5ad..e0bf164ce7fc 100644
--- a/external/poppler/ubsan.patch.0
+++ b/external/poppler/ubsan.patch.0
@@ -195,7 +195,7 @@
 +return f;
 +  }
  
-   virtual ~FormFieldChoice();
+   ~FormFieldChoice();
  
 @@ -491,8 +523,16 @@
  //
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 108059] [FILESAVE DOCX] Pie and Donut charts appear mirrored in MS Word 2013 when saved in Writer as DOCX

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108059

Jacques Guilleron  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||guillero...@aol.com
 Ever confirmed|0   |1

--- Comment #3 from Jacques Guilleron  ---
Hello,

I reproduce with
LO 5.5.0.0.alpha0+ Build ID: 0e6297932252403883a6057feee488e4ee2bc360
CPU threads: 2; OS: Windows 6.1; UI render: default; 
TinderBox: Win-x86@39, Branch:master, Time: 2017-05-23_00:14:17
Locale: fr-FR (fr_FR); Calc: CL
also with
LO 4.2.0.0.beta1 Build ID: f4ca7b35f580827ad2c69ea6d29f7c9b48ebbac7
& Windows 7 Home.

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


[Libreoffice-bugs] [Bug 108068] Can't change Primary Key's name with Firebird Embedded db.

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108068

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||serval2...@yahoo.fr
 Ever confirmed|0   |1

--- Comment #1 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated yesterday, I could reproduce
this except the nitpick that first value is 1 and not 0
I noticed this on console:
warn:connectivity.firebird:12867:1:connectivity/source/drivers/firebird/Statement.cxx:122:
isc_dsql_execute failed
warn:connectivity.firebird:12867:1:connectivity/source/drivers/firebird/Util.cxx:52:
firebird_sdbc error:
*unsuccessful metadata update
*ALTER TABLE Table1 failed
*action cancelled by trigger (1) to preserve data integrity
*Cannot update index segment used by an Integrity Constraint
caused by
'ALTER TABLE "Table1" ALTER COLUMN "ID"  TO "ID2"'

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


[Libreoffice-bugs] [Bug 108075] [META] Scrolling and Page up/down issues

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108075

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||100419


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100419
[Bug 100419] Can't scroll to the last page in print preview
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 100419] Can't scroll to the last page in print preview

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100419

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108075


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108075
[Bug 108075] [META] Scrolling and Page up/down issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107836] [META] Page and section column bugs and enhancements

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107836

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||99847


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=99847
[Bug 99847] "ENTER" from last page-row of a 3-column table -> cursor halfway
down next page
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 99847] "ENTER" from last page-row of a 3-column table -> cursor halfway down next page

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99847

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||107836


Referenced Bugs:

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


[Libreoffice-ux-advise] [Bug 101252] Alphabetical User-Defined index

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101252

--- Comment #10 from Hamid  ---
Usefulness of the requested feature is that the reader of the document learns
description of the term on the page from the footer when reading that page, but
the term might be used in other parts of the document so knowing there is
something at the end (glossary) to refer to helps else they have to try to
locate the (usually) first apparition.

BTW I think LO is good for novice to intermediate users. It lacks the under the
hood map for skilled users to do these types of plumbings. The problem is lack
of documentation on these areas and sometimes functionality is buggy since few
encounter such heights.

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


[Libreoffice-bugs] [Bug 101252] Alphabetical User-Defined index

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101252

--- Comment #10 from Hamid  ---
Usefulness of the requested feature is that the reader of the document learns
description of the term on the page from the footer when reading that page, but
the term might be used in other parts of the document so knowing there is
something at the end (glossary) to refer to helps else they have to try to
locate the (usually) first apparition.

BTW I think LO is good for novice to intermediate users. It lacks the under the
hood map for skilled users to do these types of plumbings. The problem is lack
of documentation on these areas and sometimes functionality is buggy since few
encounter such heights.

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


[Libreoffice-bugs] [Bug 108075] [META] Scrolling and Page up/down issues

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108075

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||61350


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=61350
[Bug 61350] Page separator line is slowing down page scrolling
-- 
You are receiving this mail because:
You 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: external/libxmlsec

2017-05-25 Thread Miklos Vajna
 external/libxmlsec/ExternalProject_xmlsec.mk |2 -
 external/libxmlsec/xmlsec1-configure.patch.1 |   32 ---
 2 files changed, 1 insertion(+), 33 deletions(-)

New commits:
commit a4b5bc2330e3656084dab21459e9b7ae1f58ebaf
Author: Miklos Vajna 
Date:   Wed May 24 21:41:17 2017 +0200

xmlsec: use configure flags instead of patching out apps/docs

These flags are new in xmlsec-1.2.24.

Change-Id: If32faa6e1d3a5f51fa4d631973d8bd0962783a34
Reviewed-on: https://gerrit.libreoffice.org/38004
Tested-by: Jenkins 
Reviewed-by: Miklos Vajna 

diff --git a/external/libxmlsec/ExternalProject_xmlsec.mk 
b/external/libxmlsec/ExternalProject_xmlsec.mk
index 33fe25bb6977..133b5505ac9e 100644
--- a/external/libxmlsec/ExternalProject_xmlsec.mk
+++ b/external/libxmlsec/ExternalProject_xmlsec.mk
@@ -38,7 +38,7 @@ $(call gb_ExternalProject_get_state_target,xmlsec,build) :
$(if $(filter AIX,$(OS)),ACLOCAL="aclocal -I 
/opt/freeware/share/aclocal") \
autoreconf \
&& ./configure \
-   --with-pic --disable-shared --disable-crypto-dl 
--without-libxslt --without-gnutls \
+   --with-pic --disable-shared --disable-crypto-dl 
--without-libxslt --without-gnutls --disable-apps --disable-docs \
$(if 
$(verbose),--disable-silent-rules,--enable-silent-rules) \
CFLAGS="$(CFLAGS) $(if 
$(debug),$(gb_COMPILERNOOPTFLAGS) $(gb_DEBUGINFO_FLAGS) 
$(gb_DEBUG_CFLAGS),$(gb_COMPILEROPTFLAGS)) $(gb_VISIBILITY_FLAGS)" \
$(if $(or $(filter-out 
ANDROID,$(OS)),$(DISABLE_OPENSSL)),--without-openssl,--with-openssl=$(call 
gb_UnpackedTarball_get_dir,openssl)) \
diff --git a/external/libxmlsec/xmlsec1-configure.patch.1 
b/external/libxmlsec/xmlsec1-configure.patch.1
index 5718e223cad7..5d53684a99f9 100644
--- a/external/libxmlsec/xmlsec1-configure.patch.1
+++ b/external/libxmlsec/xmlsec1-configure.patch.1
@@ -15,38 +15,6 @@ Conflicts:
  win32/Makefile.msvc |  2 +-
  4 files changed, 44 insertions(+), 16 deletions(-)
 
-diff --git a/Makefile.am b/Makefile.am
-index 82e26656..dac213ad 100644
 a/Makefile.am
-+++ b/Makefile.am
-@@ -3,10 +3,10 @@ NULL =
- SAFE_VERSION  = @XMLSEC_VERSION_SAFE@
- SUBDIRS   = include src
- if XMLSEC_APPS
--SUBDIRS += apps
-+SUBDIRS += 
- endif
- if XMLSEC_DOCS
--SUBDIRS += man docs
-+SUBDIRS += 
- endif
- TEST_APP  = apps/xmlsec1$(EXEEXT)
- DEFAULT_CRYPTO= @XMLSEC_DEFAULT_CRYPTO@
-diff --git a/Makefile.in b/Makefile.in
-index ef0aed99..73f9db9c 100644
 a/Makefile.in
-+++ b/Makefile.in
-@@ -89,8 +89,8 @@ PRE_UNINSTALL = :
- POST_UNINSTALL = :
- build_triplet = @build@
- host_triplet = @host@
--@XMLSEC_APPS_TRUE@am__append_1 = apps
--@XMLSEC_DOCS_TRUE@am__append_2 = man docs
-+@XMLSEC_APPS_TRUE@am__append_1 = 
-+@XMLSEC_DOCS_TRUE@am__append_2 = 
- subdir = .
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
- am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
 diff --git a/configure.ac b/configure.ac
 index c100f92e..6e5c387b 100644
 --- a/configure.ac
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 61350] Page separator line is slowing down page scrolling

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61350

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108075


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108075
[Bug 108075] [META] Scrolling and Page up/down issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 105368] Horizontal line sticks to upper edge of the screen while moved with up/ down arrow keys, if the line extends outside the visible page area

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105368

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||107923


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 107923] [META] Zoom issues

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107923

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||105368


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=105368
[Bug 105368] Horizontal line sticks to upper edge of the screen while moved
with up/down arrow keys, if the line extends outside the visible page area
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 98976] [EDITING] Page Up / Page Down do not work in Outline View

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98976

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108075


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108075
[Bug 108075] [META] Scrolling and Page up/down issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108075] [META] Scrolling and Page up/down issues

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108075

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||98976


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=98976
[Bug 98976] [EDITING] Page Up / Page Down do not work in Outline View
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 79570] VIEWING: In print preview, page up & page down dont function properly at specific zoom levels

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79570

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108075


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108075
[Bug 108075] [META] Scrolling and Page up/down issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108075] [META] Scrolling and Page up/down issues

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108075

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||79570


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=79570
[Bug 79570] VIEWING: In print preview, page up & page down dont function
properly at specific zoom levels
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 61496] PageDown when pressing the space bar in ReadOnly mode

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61496

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108075


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108075
[Bug 108075] [META] Scrolling and Page up/down issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108075] [META] Scrolling and Page up/down issues

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108075

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||61496


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=61496
[Bug 61496] PageDown when pressing the space bar in ReadOnly mode
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 98782] Page Up/Page Down don't work properly

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98782

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108075


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108075
[Bug 108075] [META] Scrolling and Page up/down issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108075] [META] Scrolling and Page up/down issues

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108075

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||98782


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=98782
[Bug 98782] Page Up/Page Down don't work properly
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90486] [META] Chart bugs and enhancements

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486

--- Comment #7 from Buovjaga  ---
This meta bug has gotten out of hand with all sorts of additional meta bug
deps, crashes etc. It should be decided what this is for vs. the Chart
component to avoid useless work.

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


[Libreoffice-bugs] [Bug 70809] EDITING: Selecting with mouse: too fast change / jumping to next/previous page (view part)

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70809

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108075
 Depends on|108075  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108075
[Bug 108075] [META] Scrolling and Page up/down issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 105776] Writer page-down & page-up navigation in default single-page view

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105776

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108075
 Depends on|108075  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108075
[Bug 108075] [META] Scrolling and Page up/down issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107309] VIEWING: and skip over rows

2017-05-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107309

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108075
 Depends on|108075  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108075
[Bug 108075] [META] Scrolling and Page up/down issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


<    1   2   3   4   >