[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-1-0' - 2 commits - loleaflet/dist loleaflet/src loolwsd/LOOLWSD.cpp loolwsd/test

2016-09-30 Thread Pranav Kant
 loleaflet/dist/l10n/help-localizations.json   |  232 -
 loleaflet/dist/l10n/localizations.json|  232 -
 loleaflet/dist/l10n/styles-localizations.json |  238 +-
 loleaflet/dist/l10n/uno-localizations.json|  238 +-
 loleaflet/dist/toolbar.css|  108 +--
 loleaflet/src/core/Socket.js  |8 
 loleaflet/src/layer/marker/ProgressOverlay.js |3 
 loleaflet/src/layer/tile/TileLayer.js |2 
 loleaflet/src/map/Map.js  |   35 ++-
 loleaflet/src/map/handler/Map.FileInserter.js |3 
 loolwsd/LOOLWSD.cpp   |   63 --
 loolwsd/test/UnitAdmin.cpp|9 
 loolwsd/test/helpers.hpp  |5 
 loolwsd/test/httpwstest.cpp   |   16 -
 14 files changed, 617 insertions(+), 575 deletions(-)

New commits:
commit 998f68d0ccf9313f783223d7cfd573d5b2123910
Author: Pranav Kant 
Date:   Tue Sep 20 15:15:56 2016 +0530

Fix leaked connecting spinner; smooth reconnection

Also, if doc is already loaded, and we try to reconnect a
disconnected session, show spinner on bottom toolbar instead of
on the document.

List of cherry-picked commits:

loleaflet: Fix some cases of leaked connecting spinner
(cherry picked from commit f84cad1e8d8ac18cc39e68a156ed06961875e349)

loleaflet: Set permission to default after reconnecting
(cherry picked from commit 7db798992fac2975e7b785ef4c6c42bf5b3c0e21)

loleaflet: Smooth reconnection of documents
(cherry picked from commit 460ca57dab5aae99f10439dd0f66e7ebe89396c3)

loleaflet: Start spinner when added to map
(cherry picked from commit afe14df0476835b49d4d12a56e263a52c86dbd9b)

loleaflet: Better to have 'reconnected' signal here
(cherry picked from commit c23b37f352ec3ddf83f4d4d4a8ab1290368113fa)

loleaflet: Move loading spinner to toolbar-down when doc loaded
(cherry picked from commit b6448a8864aa05a9f779447cc43abcd47158e5dd)

diff --git a/loleaflet/src/core/Socket.js b/loleaflet/src/core/Socket.js
index 0c3c89f..abf9165 100644
--- a/loleaflet/src/core/Socket.js
+++ b/loleaflet/src/core/Socket.js
@@ -75,7 +75,6 @@ L.Socket = L.Class.extend({
if (this._map._docLayer) {
// we are reconnecting after a lost connection
msg += ' part=' + this._map.getCurrentPartNumber();
-   this._map.fire('statusindicator', {statusType : 
'reconnected'});
}
if (this._map.options.timestamp) {
msg += ' timestamp=' + this._map.options.timestamp;
@@ -263,6 +262,11 @@ L.Socket = L.Class.extend({
this._map._docLayer = docLayer;
this._map.addLayer(docLayer);
this._map.fire('doclayerinit');
+   } else if (textMsg.startsWith('status:')) {
+   // we are reconnecting ...
+   this._map._docLayer._onMessage('invalidatetiles: 
EMPTY', null);
+   this._map.fire('statusindicator', {statusType: 
'reconnected'});
+   this._map.setPermission(this._map.options.permission);
}
 
// these can arrive very early during the startup
diff --git a/loleaflet/src/layer/marker/ProgressOverlay.js 
b/loleaflet/src/layer/marker/ProgressOverlay.js
index 91785e9..a6f7e35 100644
--- a/loleaflet/src/layer/marker/ProgressOverlay.js
+++ b/loleaflet/src/layer/marker/ProgressOverlay.js
@@ -20,6 +20,7 @@ L.ProgressOverlay = L.Layer.extend({
this.update();
}
 
+   this._spinnerInterval = 
L.LOUtil.startSpinner(this._spinnerCanvas, this.options.spinnerSpeed);
this._map.on('moveend', this.update, this);
},
 
@@ -56,8 +57,6 @@ L.ProgressOverlay = L.Layer.extend({
 
this._container.style.width  = this._size.x + 'px';
 
-   this._spinnerInterval = 
L.LOUtil.startSpinner(this._spinnerCanvas, this.options.spinnerSpeed);
-
L.DomEvent
.disableClickPropagation(this._progress)
.disableScrollPropagation(this._container);
diff --git a/loleaflet/src/map/Map.js b/loleaflet/src/map/Map.js
index 7467a8e..ea3f06f 100644
--- a/loleaflet/src/map/Map.js
+++ b/loleaflet/src/map/Map.js
@@ -2,7 +2,7 @@
  * L.Map is the central class of the API - it is used to create a map.
  */
 
-/* global vex $ */
+/* global vex $ w2ui w2utils */
 L.Map = L.Evented.extend({
 
options: {
@@ -129,6 +129,13 @@ L.Map = L.Evented.extend({
},
 
showBusy: function(label, bar) {
+   // If document is already loaded, ask the toolbar widget to 
show busy
+   // status on the bottom 

[Libreoffice-bugs] [Bug 98438] Table toolbar is missing the Fixed, Fixed/Proportional, and Variable icons described in Help text

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98438

Adolfo Jayme  changed:

   What|Removed |Added

Version|5.0.5.2 release |Inherited From OOo
   Assignee|libreoffice-b...@lists.free |kelem...@ubuntu.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-commits] core.git: Branch 'libreoffice-5-2' - cui/source

2016-09-30 Thread Caolán McNamara
 cui/source/tabpages/border.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4235b69dad089432911bb576d7e9412e55843ec6
Author: Caolán McNamara 
Date:   Wed Sep 28 08:53:44 2016 +0100

Resolves: tdf#101475 adjacent cells text is still too wide

Change-Id: I8fae7197b191de4346a4fb0f2226c63bc615b29d
Reviewed-on: https://gerrit.libreoffice.org/29346
Tested-by: Jenkins 
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/cui/source/tabpages/border.cxx b/cui/source/tabpages/border.cxx
index 10e0302..d252831 100644
--- a/cui/source/tabpages/border.cxx
+++ b/cui/source/tabpages/border.cxx
@@ -140,7 +140,7 @@ SvxBorderTabPage::SvxBorderTabPage(vcl::Window* pParent, 
const SfxItemSet& rCore
 //tdf#99963, we need height-for-width support here, but for now we can
 //bodge it
 Size aPrefSize(m_pRemoveAdjcentCellBordersCB->get_preferred_size());
-Size 
aSize(m_pRemoveAdjcentCellBordersCB->CalcMinimumSize(36*approximate_char_width()));
+Size 
aSize(m_pRemoveAdjcentCellBordersCB->CalcMinimumSize(20*approximate_char_width()));
 if (aPrefSize.Width() > aSize.Width())
 {
 m_pRemoveAdjcentCellBordersCB->set_width_request(aSize.Width());
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100626] SID_NEWDOCDIRECT / .uno: AddDirect assigned N_MOD1 and File menu action, opens a new document but does not direct edit cursor focus into the document

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100626

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #12 from raal  ---
no repro:Version: 5.3.0.0.alpha0+
Build ID: 73c7e0921d752df53004ed55735f3ecc592f
CPU Threads: 4; OS Version: Windows 6.1; UI Render: default; 
Locale: en-US (cs_CZ); 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 102836] Please add "Make default" option for "Page Setting" to make user setting default

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102836

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---
Change your default template (persistent and recorded per user to their
profile).

This is trivial to do by modifying the Page style (start clean with the
Default), and then saving it as a template (File -> Templates -> Save as
Template). 

And make it your new default template during save. Or use the Manage Template
dialog.

In Draw and Impress it is referenced as Master slide, but the default Template
is created and set the same way.

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


[Libreoffice-bugs] [Bug 102905] Saving an odt file as OOXML makes the original odt file changed

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102905

--- Comment #2 from Franklin Weng  ---
Created attachment 127759
  --> https://bugs.documentfoundation.org/attachment.cgi?id=127759=edit
The original ODT file after saving as docx

Since I'm using Save As...  the original file should not have been changed.

However after closing the window and reopen it, the original ODT file was
changed.

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


[Libreoffice-bugs] [Bug 102905] Saving an odt file as OOXML makes the original odt file changed

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102905

--- Comment #1 from Franklin Weng  ---
Created attachment 127758
  --> https://bugs.documentfoundation.org/attachment.cgi?id=127758=edit
Saved OOXML file

The saved OOXML (docx) file, whose layout/display is not correctly either

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


[Libreoffice-bugs] [Bug 102905] New: Saving an odt file as OOXML makes the original odt file changed

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102905

Bug ID: 102905
   Summary: Saving an odt file as OOXML makes the original odt
file changed
   Product: LibreOffice
   Version: 5.1.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: frank...@goodhorse.idv.tw

Created attachment 127757
  --> https://bugs.documentfoundation.org/attachment.cgi?id=127757=edit
The Original ODT file

For the screenshot please reference

http://imgur.com/a/LcCUa

The attached file is a normal ODT file, with fonts from Microsoft (but also
installed in my Kubuntu box).  

The original odt file (as attached file):
http://imgur.com/HjqVvbW

Use Save As... to save this file in OOXML format:
http://imgur.com/sv3C5io

Something wrong with saved OOXML file (will attach as the second file):
http://imgur.com/YTSkA50

The original file should not have been changed, but after closing the window
and reopen the original file, it was changed (will attach as the third file):
http://imgur.com/wCUcONB

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


[Libreoffice-bugs] [Bug 102904] Calc crashes when filtering dates

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102904

--- Comment #2 from Robert Gonzalez MX  ---
Created attachment 127756
  --> https://bugs.documentfoundation.org/attachment.cgi?id=127756=edit
Screenshots

-- 
You are receiving this mail because:
You 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 102844] Windows Taskbar icons are too similar

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102844

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
  Component|LibreOffice |UI
 Resolution|--- |WONTFIX

--- Comment #2 from V Stuart Foote  ---
Given current branding artwork, the icons ODF themed icons pinned to the
Windows task bar are easily distinguishable and appropriate for use.

The attached clip shows taskbar pinned instance of Calc, Impress, Writer, Draw
and Math formula document respectively.

No reason to change at this point absent rework of the branding art.

-- 
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 102688] Crash in: vcl::Window::dispose()

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102688

--- Comment #4 from Mike Kaganski  ---
(In reply to fiftyigfuci_f_mi from comment #3)
> warn:legacy.osl:26135:1:xmloff/source/core/xmlerror.cxx:178: An error or a
> warning has occurred during XML import/export!
> Position:
> Row, Column: 2,10086945

The row/column number in this case is character position in XML: line 2, char
10086945. It has nothing to do with Calc column, though wording may be
confusing.

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


[Libreoffice-bugs] [Bug 102844] Windows Taskbar icons are too similar

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102844

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
  Component|LibreOffice |UI
 Resolution|--- |WONTFIX

--- Comment #2 from V Stuart Foote  ---
Given current branding artwork, the icons ODF themed icons pinned to the
Windows task bar are easily distinguishable and appropriate for use.

The attached clip shows taskbar pinned instance of Calc, Impress, Writer, Draw
and Math formula document respectively.

No reason to change at this point absent rework of the branding art.

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


[Libreoffice-bugs] [Bug 102904] Calc crashes when filtering dates

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102904

Robert Gonzalez MX  changed:

   What|Removed |Added

Version|unspecified |5.1.5.2 release
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=99
   ||422

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


[Libreoffice-bugs] [Bug 102904] Calc crashes when filtering dates

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102904

Robert Gonzalez MX  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 94422] No mnemonics / accelerators in Start Center for Open etc... and documents

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94422

Robert Gonzalez MX  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 102904] Calc crashes when filtering dates

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102904

Robert Gonzalez MX  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 94422] No mnemonics / accelerators in Start Center for Open etc... and documents

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94422

Robert Gonzalez MX  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 102844] Windows Taskbar icons are too similar

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102844

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---
Created attachment 127755
  --> https://bugs.documentfoundation.org/attachment.cgi?id=127755=edit
LibreOffice module entries on Windows taskbar

The designs icon designs pinned to Windows taskbar are clearly legible--both by
color and by our ODF motif document types.

See no advantage to changing.

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


[Libreoffice-bugs] [Bug 102904] Calc crashes when filtering dates

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102904

Robert Gonzalez MX  changed:

   What|Removed |Added

 CC||riggra...@gmail.com

--- Comment #1 from Robert Gonzalez MX  ---
Created attachment 127754
  --> https://bugs.documentfoundation.org/attachment.cgi?id=127754=edit
Test file with dates

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


[Libreoffice-bugs] [Bug 102904] New: Calc crashes when filtering dates

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102904

Bug ID: 102904
   Summary: Calc crashes when filtering dates
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: riggra...@gmail.com

User-Agent:   Mozilla/5.0 (Windows NT 10.0; WOW64; rv:49.0) Gecko/20100101
Firefox/49.0
Build Identifier: Version: 5.1.5.2 Build ID:
7a864d8825610a8c07cfc3bc01dd4fce6a9447e5

Hi.

When the filter is active in a spreadsheet and the field contents is a date,
after applying a filter and trying to select “all”, Calc crashes.



Reproducible: Always

Steps to Reproduce:
Steps to reproduce:
Open test file provided
Open the filtering pane in field7
Select option “Not Empty”
The filter is applied ok
Open the filtering pane again
Select option “All”, at the bottom
Calc crashes.

Actual Results:  
This behavior only happens with columns that have dates, and not with other
types of data like time or numbers.

Note that if the option “2016” is selected, the “All” option also is activated,
and Calc would not crash, so this serves for a workaround.


This is related to bug 99422 for LO 5.2 wich was fixed


Reset User Profile?No

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


[Libreoffice-bugs] [Bug 102901] Crash while scrolling fonts

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102901

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1

--- Comment #2 from V Stuart Foote  ---
Does the crash still occur if you disable Tools -> Options -> View: Font Lists
"Show preview of fonts" by unchecking it and restarting.

The list of fonts will then just show in the system font with no preview.

Also, is there a particular font that seems to cause the crash?

Do you have a crash if rather than the Font drop list box on the Formatting
toolbar you use the Character properties dialog and scroll the fonts there?
Again is there a particular font that seems to cause 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 99792] Formula objects display eight handles but none of them can be used for anything

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99792

V Stuart Foote  changed:

   What|Removed |Added

 CC||sergiogenil...@gmail.com

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

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


[Libreoffice-bugs] [Bug 102903] Formula box does not fit to the equation during edition

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102903

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---
The OLE object will resize using position and size from context menu,
unprotecting size and setting as needed.  There is no graphical handle drag
implemented for the OLE formulas.

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

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

2016-09-30 Thread Markus Mohrhard
 oox/source/export/chartexport.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 74b2cc607448d24146bd3508abb832d6ab42cb56
Author: Markus Mohrhard 
Date:   Sat Oct 1 00:32:28 2016 +0200

tdf#96161, always write the varyColors element

The default value changed between MSO 2007 and 2010 so we need to always 
write the value.

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

diff --git a/oox/source/export/chartexport.cxx 
b/oox/source/export/chartexport.cxx
index bf287d0..ccfc244 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -1713,6 +1713,8 @@ void ChartExport::exportLineChart( const Reference< 
chart2::XChartType >& xChart
 FSEND );
 
 exportGrouping( );
+pFS->singleElement(FSNS(XML_c, XML_varyColors),
+XML_val, "0", FSEND);
 // TODO: show marker symbol in series?
 bool bPrimaryAxes = true;
 exportSeries(xChartType, *itr, bPrimaryAxes);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-09-30 Thread Markus Mohrhard
 sc/inc/rangelst.hxx  |2 +-
 sc/source/core/tool/rangelst.cxx |   22 +++---
 2 files changed, 20 insertions(+), 4 deletions(-)

New commits:
commit 5f658dc87794036182aa1f8586d82c5ee997cd8b
Author: Markus Mohrhard 
Date:   Sat Oct 1 01:31:09 2016 +0200

tdf#101910, mark ScRangeList updated when DeleteArea was used

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

diff --git a/sc/inc/rangelst.hxx b/sc/inc/rangelst.hxx
index fb1df78..18eb33d 100644
--- a/sc/inc/rangelst.hxx
+++ b/sc/inc/rangelst.hxx
@@ -61,7 +61,7 @@ public:
 /** For now this method assumes that nTab1 == nTab2
  * The algorithm will be much more complicated if nTab1 != nTab2
  */
-voidDeleteArea( SCCOL nCol1, SCROW nRow1, SCTAB nTab1, SCCOL 
nCol2,
+boolDeleteArea( SCCOL nCol1, SCROW nRow1, SCTAB nTab1, SCCOL 
nCol2,
 SCROW nRow2, SCTAB nTab2 );
 
 const ScRange*  Find( const ScAddress& ) const;
diff --git a/sc/source/core/tool/rangelst.cxx b/sc/source/core/tool/rangelst.cxx
index 6d3f1db..2081352 100644
--- a/sc/source/core/tool/rangelst.cxx
+++ b/sc/source/core/tool/rangelst.cxx
@@ -397,11 +397,11 @@ bool ScRangeList::UpdateReference(
 {
 if(nDx < 0)
 {
-DeleteArea(nCol1+nDx, nRow1, nTab1, nCol1-1, nRow2, nTab2);
+bChanged = DeleteArea(nCol1+nDx, nRow1, nTab1, nCol1-1, nRow2, 
nTab2);
 }
 if(nDy < 0)
 {
-DeleteArea(nCol1, nRow1+nDy, nTab1, nCol2, nRow1-1, nTab2);
+bChanged = DeleteArea(nCol1, nRow1+nDy, nTab1, nCol2, nRow1-1, 
nTab2);
 }
 SAL_WARN_IF(nDx < 0 && nDy < 0, "sc", "nDx and nDy are negative, 
check why");
 }
@@ -939,9 +939,10 @@ bool handleFourRanges( const ScRange& rDelRange, ScRange* 
p, std::vector= p.aEnd.X()
 // && ( r.aStart.Y() <= p.aStart.Y() || r.aEnd.Y() >= r.aEnd.Y() )
 if(handleOneRange( aRange, *itr ))
+{
+bChanged = true;
 continue;
+}
 
 // getting two ranges
 // r.aStart.X()
 else if(handleTwoRanges( aRange, *itr, aNewRanges ))
+{
+bChanged = true;
 continue;
+}
 
 // getting 3 ranges
 // r.aStart.X() > p.aStart.X() && r.aEnd.X() >= p.aEnd.X()
@@ -988,16 +996,24 @@ void ScRangeList::DeleteArea( SCCOL nCol1, SCROW nRow1, 
SCTAB nTab1,
 // r.aStart.X() <= p.aStart.X() && r.aEnd.X() < p.aEnd.X()
 // && r.aStart.Y() > p.aStart.Y() && r.aEnd.Y() < p.aEnd.Y()
 else if(handleThreeRanges( aRange, *itr, aNewRanges ))
+{
+bChanged = true;
 continue;
+}
 
 // getting 4 ranges
 // r.aStart.X() > p.aStart.X() && r.aEnd().X() < p.aEnd.X()
 // && r.aStart.Y() > p.aStart.Y() && r.aEnd().Y() < p.aEnd.Y()
 else if(handleFourRanges( aRange, *itr, aNewRanges ))
+{
+bChanged = true;
 continue;
+}
 }
 for(vector::iterator itr = aNewRanges.begin(); itr != 
aNewRanges.end(); ++itr)
 Join( *itr);
+
+return bChanged;
 }
 
 const ScRange* ScRangeList::Find( const ScAddress& rAdr ) const
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 102846] Infinite loop CSV import

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102846

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #1 from Xisco Faulí  ---
I can't reproduce it in

Version: 5.3.0.0.alpha0+
Build ID: 33a2e47c907f7e2c1995b4a1e910dec94c3cedb4
CPU Threads: 4; OS Version: Linux 4.2; UI Render: default; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group

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


New Defects reported by Coverity Scan for LibreOffice

2016-09-30 Thread scan-admin

Hi,

Please find the latest report on new defect(s) introduced to LibreOffice found 
with Coverity Scan.

2 new defect(s) introduced to LibreOffice found with Coverity Scan.
10 defect(s), reported by Coverity Scan earlier, were marked fixed in the 
recent build analyzed by Coverity Scan.

New defect(s) Reported-by: Coverity Scan
Showing 2 of 2 defect(s)


** CID 1373442:  Uninitialized members  (UNINIT_CTOR)
/svx/source/dialog/graphctl.cxx: 76 in GraphCtrl::GraphCtrl(vcl::Window *, 
long)()



*** CID 1373442:  Uninitialized members  (UNINIT_CTOR)
/svx/source/dialog/graphctl.cxx: 76 in GraphCtrl::GraphCtrl(vcl::Window *, 
long)()
70 {
71 pUserCall = new GraphCtrlUserCall( *this );
72 aUpdateIdle.SetPriority( SchedulerPriority::LOWEST );
73 aUpdateIdle.SetIdleHdl( LINK( this, GraphCtrl, UpdateHdl ) );
74 aUpdateIdle.Start();
75 EnableRTL( false );
>>> CID 1373442:  Uninitialized members  (UNINIT_CTOR)
>>> Non-static class member "mbInIdleUpdate" is not initialized in this 
>>> constructor nor in any functions that it calls.
76 }
77 
78 VCL_BUILDER_DECL_FACTORY(GraphCtrl)
79 {
80 WinBits nWinStyle = 0;
81 OString sBorder = VclBuilder::extractCustomProperty(rMap);

** CID 1373441:  Incorrect expression  (ASSERT_SIDE_EFFECT)
/i18npool/qa/cppunit/test_breakiterator.cxx: 540 in 
TestBreakIterator::testWordBoundaries()()



*** CID 1373441:  Incorrect expression  (ASSERT_SIDE_EFFECT)
/i18npool/qa/cppunit/test_breakiterator.cxx: 540 in 
TestBreakIterator::testWordBoundaries()()
534 do
535 {
536 CPPUNIT_ASSERT(i < SAL_N_ELEMENTS(aExpected));
537 aBounds = m_xBreak->getWordBoundary(aTest, nPos, 
aLocale,
538 i18n::WordType::DICTIONARY_WORD, true);
539 CPPUNIT_ASSERT_EQUAL(aExpected[i++], aBounds.startPos);
>>> CID 1373441:  Incorrect expression  (ASSERT_SIDE_EFFECT)
>>> Argument "i++" of assertEquals() has a side effect.  The containing 
>>> function might work differently in a non-debug build.
540 CPPUNIT_ASSERT_EQUAL(aExpected[i++], aBounds.endPos);
541 nPos = aBounds.endPos;
542 }
543 while (nPos++ < aTest.getLength());
544 CPPUNIT_ASSERT_EQUAL(SAL_N_ELEMENTS(aExpected), i);
545 }



To view the defects in Coverity Scan visit, 
https://u2389337.ct.sendgrid.net/wf/click?upn=08onrYu34A-2BWcWUl-2F-2BfV0V05UPxvVjWch-2Bd2MGckcRZBnDJeNb0HijxaS4JNJPxk3kpyAm2AYqo71yXmnOxB72ibeUH-2F-2F1Lhi9AZq3dRu-2F4-3D_g-2BrHdvqzaBa155F-2F8AmPhpJzY63UzWDisJV95WUBpGhqFw1ICExHG8aMaV2EoFpyAye-2F8u9A-2FzK1ycw-2F-2FYd4Cy3p0MN9ZjblAu9vGZPqhylWxj1RukIl9lu3ZyXzWJyhbVv3WQk-2BBNzGLztoEtX8oU5ayPmQlMqVUQjL4QgyIYBntsqfiovo6CmQkNv8oKyiTDm2sasof0BPpdFKZ6a4co8Jw3seoboHoVJA3qvhYGM-3D

To manage Coverity Scan email notifications for 
"libreoffice@lists.freedesktop.org", click 
https://u2389337.ct.sendgrid.net/wf/click?upn=08onrYu34A-2BWcWUl-2F-2BfV0V05UPxvVjWch-2Bd2MGckcRbVDbis712qZDP-2FA8y06Nq4k1FZJSDV-2FTHi5VQof9xGafB4oBwGYxuHHknceo2QLpCrZ44Ciy7AqBR2QyX6OCB5N5X-2B1MAElavPQhH6nLwozJzqOkt2k8uOkYf2ZoppNa9QVe0T3fEZVQ7Kky1tOkLz_g-2BrHdvqzaBa155F-2F8AmPhpJzY63UzWDisJV95WUBpGhqFw1ICExHG8aMaV2EoFpyAye-2F8u9A-2FzK1ycw-2F-2FYd4CzbhPOQ-2B38xn-2BBAu51g6dxdUcNb09tOFxtUSpI-2BD-2FodL3AUlPOUsCwG5a36-2FE3HeAmA4aklNF-2FEcIy7blZE7CdrejqTztW5iuDcUcb8nOxZZj-2B3NhIfSIOQlM3qKIVWSl520RJLS80Vfl5WlYBPNDCM-3D

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


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

2016-09-30 Thread Markus Mohrhard
 include/vcl/uitest/uiobject.hxx |5 +
 1 file changed, 5 insertions(+)

New commits:
commit cf4ff92144726a91508fcaf4be21170eac5cb99a
Author: Markus Mohrhard 
Date:   Fri Sep 30 16:52:18 2016 +0200

add missing include guards

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

diff --git a/include/vcl/uitest/uiobject.hxx b/include/vcl/uitest/uiobject.hxx
index d9d6831..81ce297 100644
--- a/include/vcl/uitest/uiobject.hxx
+++ b/include/vcl/uitest/uiobject.hxx
@@ -7,6 +7,9 @@
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  */
 
+#ifndef INCLUDED_VCL_UITEST_UIOBJECT_HXX
+#define INCLUDED_VCL_UITEST_UIOBJECT_HXX
+
 #include 
 #include 
 #include 
@@ -355,4 +358,6 @@ protected:
 virtual OUString get_name() const override;
 };
 
+#endif
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 101910] Deleted data row does not update chart range

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101910

Markus Mohrhard  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |markus.mohrhard@googlemail.
   |desktop.org |com

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


[Libreoffice-commits] online.git: 2 commits - loolwsd/Makefile.am loolwsd/MessageQueue.cpp

2016-09-30 Thread Jan Holesovsky
 loolwsd/Makefile.am  |9 -
 loolwsd/MessageQueue.cpp |4 
 2 files changed, 12 insertions(+), 1 deletion(-)

New commits:
commit 2e3f297c8ae28b0d481a7600e81a4dbf5c080146
Author: Jan Holesovsky 
Date:   Fri Sep 30 23:53:48 2016 +0200

Add a callgrind target too.

Change-Id: Ib04e3ccd136766f9d8eb4f99e711390cb09eeb31

diff --git a/loolwsd/Makefile.am b/loolwsd/Makefile.am
index 295d120..2bd5701 100644
--- a/loolwsd/Makefile.am
+++ b/loolwsd/Makefile.am
@@ -154,12 +154,19 @@ run: all @JAILS_PATH@ @SYSTEMPLATE_PATH@/system_stamp
  --o:child_root_path="@JAILS_PATH@" 
--o:storage.filesystem[@allow]=true \
  --o:admin_console.username=admin 
--o:admin_console.password=admin
 
-run_valgrind: all @JAILS_PATH@ @SYSTEMPLATE_PATH@/system_stamp
+run-valgrind: all @JAILS_PATH@ @SYSTEMPLATE_PATH@/system_stamp
@echo "Launching loolwsd under valgrind (but not forkit/loolkit, yet)"
valgrind --tool=memcheck --trace-children=no -v --read-var-info=yes \
./loolwsd --o:sys_template_path="@SYSTEMPLATE_PATH@" 
--o:lo_template_path="@LO_PATH@" \
  --o:child_root_path="@JAILS_PATH@" 
--o:storage.filesystem[@allow]=true \
  --o:admin_console.username=admin 
--o:admin_console.password=admin
+
+run-callgrind: all @JAILS_PATH@ @SYSTEMPLATE_PATH@/system_stamp
+   @echo "Launching loolwsd under valgrind (but not forkit/loolkit, yet)"
+   valgrind --tool=callgrind --simulate-cache=yes --dump-instr=yes 
--num-callers=50 --error-limit=no \
+   ./loolwsd --o:sys_template_path="@SYSTEMPLATE_PATH@" 
--o:lo_template_path="@LO_PATH@" \
+ --o:child_root_path="@JAILS_PATH@" 
--o:storage.filesystem[@allow]=true \
+ --o:admin_console.username=admin 
--o:admin_console.password=admin
 else
 
 SYSTEM_STAMP =
commit 9c5967a432888ce2c4519552746055938e9f5782
Author: Jan Holesovsky 
Date:   Fri Sep 30 23:06:26 2016 +0200

Early break when we have found the highest priority tile.

Change-Id: I47f00dfb67c1a713b1c7fa9fef7a9cc8c59bde00

diff --git a/loolwsd/MessageQueue.cpp b/loolwsd/MessageQueue.cpp
index 0a49051..f06f670 100644
--- a/loolwsd/MessageQueue.cpp
+++ b/loolwsd/MessageQueue.cpp
@@ -211,6 +211,10 @@ MessageQueue::Payload TileQueue::get_impl()
 prioritySoFar = p;
 prioritized = i;
 msg = prio;
+
+// found the highest priority already?
+if (prioritySoFar == static_cast(_viewOrder.size()) - 1)
+break;
 }
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100830] FILEOPEN: OOXML - Transparency Not Imported for Bitmap Filled Shapes

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100830

Miklos Vajna  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |vmik...@collabora.co.uk
   |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 96161] FILESAVE and FORMATTING: Y-axis values changed on a graphic after saving in .xlsx format

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96161

Markus Mohrhard  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |markus.mohrhard@googlemail.
   |desktop.org |com

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


[Libreoffice-bugs] [Bug 102903] New: Formula box does not fit to the equation during edition

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102903

Bug ID: 102903
   Summary: Formula box does not fit to the equation during
edition
   Product: LibreOffice
   Version: 5.2.2.2 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sergiogenil...@gmail.com

Created attachment 127753
  --> https://bugs.documentfoundation.org/attachment.cgi?id=127753=edit
Scrollbars instead adjust the box to the equation

The equation box does not adjust to the equation during edition. Instead of
adjusting appear scrollbars, making it difficult to use. In Libreoffice Writer
it fits perfectly.

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


[Libreoffice-bugs] [Bug 102360] Font size is bigger than expected

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102360

Miklos Vajna  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

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


[Libreoffice-bugs] [Bug 102360] Font size is bigger than expected

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102360

--- Comment #7 from Miklos Vajna  ---
Created attachment 127752
  --> https://bugs.documentfoundation.org/attachment.cgi?id=127752=edit
New LO import result of slide 7.

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


[Libreoffice-bugs] [Bug 102360] Font size is bigger than expected

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102360

--- Comment #6 from Miklos Vajna  ---
Created attachment 127751
  --> https://bugs.documentfoundation.org/attachment.cgi?id=127751=edit
Old LO import result of slide 7.

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

2016-09-30 Thread Michael Stahl
 sal/osl/w32/thread.c |   20 
 1 file changed, 20 insertions(+)

New commits:
commit 8e7997fe0c4f5a20918fbaabc1a00fd0db070b95
Author: Michael Stahl 
Date:   Fri Sep 30 23:40:05 2016 +0200

sal: WNT: print errno when oslCreateThread fails

Change-Id: Iad0a2a7ba68b3f43c22e0b5a3cee646f8baba30e

diff --git a/sal/osl/w32/thread.c b/sal/osl/w32/thread.c
index eb7f222..28b5f11 100644
--- a/sal/osl/w32/thread.c
+++ b/sal/osl/w32/thread.c
@@ -25,6 +25,7 @@
 #include 
 #include 
 #include 
+#include 
 
 /*
 Thread-data structure hidden behind oslThread:
@@ -94,6 +95,25 @@ static oslThread oslCreateThread(oslWorkerFunction pWorker,
 
 if(pThreadImpl->m_hThread == 0)
 {
+switch (errno)
+{
+case EAGAIN:
+fprintf(stderr, "_beginthreadex errno EAGAIN\n");
+break;
+case EINVAL:
+fprintf(stderr, "_beginthreadex errno EINVAL\n");
+break;
+case EACCES:
+fprintf(stderr, "_beginthreadex errno EACCES\n");
+break;
+case ENOMEM:
+fprintf(stderr, "_beginthreadex undocumented errno ENOMEM - 
this means not enough VM for stack\n");
+break;
+default:
+fprintf(stderr, "_beginthreadex unexpected errno %d\n", errno);
+break;
+}
+
 /* create failed */
 free(pThreadImpl);
 return 0;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 102360] Font size is bigger than expected

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102360

--- Comment #5 from Miklos Vajna  ---
Created attachment 127750
  --> https://bugs.documentfoundation.org/attachment.cgi?id=127750=edit
MSO import result of slide 7.

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


[Libreoffice-bugs] [Bug 102360] Font size is bigger than expected

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102360

--- Comment #4 from Miklos Vajna  ---
Xisco, I'm not sure this is a regression at all. Let me attach screenshots of
slide 7 from MSO, the old LO import result and the new LO import result.

Can we agree that the new import result matches the MSO one, not the old one?
;-)

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


[Libreoffice-bugs] [Bug 95579] Writer SEH Exception on DOCX, regression in 5.1+

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95579

Michael Stahl  changed:

   What|Removed |Added

   Keywords|regression  |
 Status|UNCONFIRMED |NEW
 CC||mst...@redhat.com
   Hardware|Other   |x86 (IA32)
 Ever confirmed|0   |1

--- Comment #11 from Michael Stahl  ---
i don't get a SEH exception but the crash from comment #9,
"osl::Thread::create failed".

the document contains a lot of OLE objects of type "Equation.DSMT4"
which is a MathType version that our Math doesn't support yet
(only versions up to 3 are supported),
so they cannot be converted on import.

OpenIStorageFromURL_Impl calls StgOpenStorage for each of them
and that allocates 4MB of virtual memory, of which only 20kb or
so are actually committed because the objects are small.

all of these OLE object allocations eat 1GB of VM, and together
with the rest of the allocations this brings us very close
to the 2GB VM limit on Win32, and thus there isn't enough
contiguous VM left to allocate a 9MB thread stack for every CPU
when spinning up the comphelper threadpool.

the thread pool is used to scale bitmaps in VCL.

i'm not sure how exactly this was working in older versions...
the substantial problem is the 4MB of VM per OLE object in
LOADED state and that code doesn't look changed recently.

for comparison i've looked at a 4.3.7.2 release build and it
has the same 1GB VM for OLEs; the total VM usage is a little
lower than debug build of current master but if you insert 20 more
OLEs you will get the same problem; thus i'm removing "regression".

i guess the best approach here is "use the 64-bit build".

-- 
You are receiving this mail because:
You 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 'distro/collabora/cp-5.1' - sc/source

2016-09-30 Thread Marco Cecchetti
 sc/source/ui/view/gridwin4.cxx |   79 +
 sc/source/ui/view/tabview3.cxx |4 +-
 2 files changed, 43 insertions(+), 40 deletions(-)

New commits:
commit eeac6e6cc5f343193bf2942f203237d09c070eec
Author: Marco Cecchetti 
Date:   Fri Sep 30 23:31:15 2016 +0200

Calc: fixed bug in parallel cell editing

The background color by the wrong edit view was used causing a
segmentation fault.

Change-Id: Ife489989e382d6f4f905f0ca305928e64bbce588

diff --git a/sc/source/ui/view/gridwin4.cxx b/sc/source/ui/view/gridwin4.cxx
index 1adf3f0..a3a171c 100644
--- a/sc/source/ui/view/gridwin4.cxx
+++ b/sc/source/ui/view/gridwin4.cxx
@@ -993,55 +993,58 @@ void ScGridWindow::DrawContent(OutputDevice , 
const ScTableInfo& rTableI
 if (bOtherEditMode && rOtherViewData.GetRefTabNo() == nTab)
 {
 EditView* pOtherEditView = 
rOtherViewData.GetEditView(eOtherWhich);
-Point aOtherScrPos = rOtherViewData.GetScrPos( nX1, 
nY1, eOtherWhich );
-if ( bLayoutRTL )
+if (pOtherEditView)
 {
-long nEndPixel = pViewData->GetScrPos( nX2+1, 
maVisibleRange.mnRow1, eWhich ).X();
-aOtherScrPos.X() = nEndPixel + 1;
-}
+// TODO: implement the RTL layout case
+//Point aOtherScrPos = rOtherViewData.GetScrPos( 
nX1, nY1, eOtherWhich );
+//if ( bLayoutRTL )
+//{
+//long nEndPixel = rOtherViewData.GetScrPos( 
nX2+1, maVisibleRange.mnRow1, eWhich ).X();
+//aOtherScrPos.X() = nEndPixel + 1;
+//}
 
-long nScreenX = aOutputData.nScrX;
-long nScreenY = aOutputData.nScrY;
-long nScreenW = aOutputData.GetScrW();
-long nScreenH = aOutputData.GetScrH();
+long nScreenX = aOutputData.nScrX;
+long nScreenY = aOutputData.nScrY;
+long nScreenW = aOutputData.GetScrW();
+long nScreenH = aOutputData.GetScrH();
 
-rDevice.SetLineColor();
-rDevice.SetFillColor(pEditView->GetBackgroundColor());
-Point aStart = rOtherViewData.GetScrPos( nCol1, nRow1, 
eOtherWhich );
-Point aEnd = rOtherViewData.GetScrPos( nCol2+1, 
nRow2+1, eOtherWhich );
+rDevice.SetLineColor();
+
rDevice.SetFillColor(pOtherEditView->GetBackgroundColor());
+Point aStart = rOtherViewData.GetScrPos( nCol1, 
nRow1, eOtherWhich );
+Point aEnd = rOtherViewData.GetScrPos( nCol2+1, 
nRow2+1, eOtherWhich );
 
-// don't overwrite grid
-long nLayoutSign = bLayoutRTL ? -1 : 1;
-aEnd.X() -= 2 * nLayoutSign;
-aEnd.Y() -= 2;
+// don't overwrite grid
+long nLayoutSign = bLayoutRTL ? -1 : 1;
+aEnd.X() -= 2 * nLayoutSign;
+aEnd.Y() -= 2;
 
-Rectangle aBackground(aStart, aEnd);
+Rectangle aBackground(aStart, aEnd);
 
-aBackground += Point(nScreenX, nScreenY);
-rDevice.SetMapMode(aDrawMode);
+aBackground += Point(nScreenX, nScreenY);
+rDevice.SetMapMode(aDrawMode);
 
 
-// paint the background
-rDevice.DrawRect(rDevice.PixelToLogic(aBackground));
+// paint the background
+
rDevice.DrawRect(rDevice.PixelToLogic(aBackground));
 
-if (bIsTiledRendering)
-{
-auto aOrigin = aOriginalMode.GetOrigin();
-aOrigin.setX(aOrigin.getX() / TWIPS_PER_PIXEL + 
nScrX);
-aOrigin.setY(aOrigin.getY() / TWIPS_PER_PIXEL + 
nScrY);
-static const double twipFactor = 15 * 1.7639; 
// 26.4585
-aOrigin = Point(aOrigin.getX() * twipFactor,
-aOrigin.getY() * twipFactor);
-MapMode aNew = rDevice.GetMapMode();
-aNew.SetOrigin(aOrigin);
-rDevice.SetMapMode(aNew);
-}
+if (bIsTiledRendering)
+  

[Libreoffice-bugs] [Bug 42989] FORMATTING: Selecting Multiple Cells with Different Formats Show as Same Format and Can 't Be Changed as a Group

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42989

Harald Koester  changed:

   What|Removed |Added

Version|3.3.4 release   |Inherited From OOo

--- Comment #8 from Harald Koester  ---
I did some more research: 

(1) In Calc it is possible to change cells with different number formats as a
group if you change the category. E.g. step 2 of initial report:

Format > Cells... > select category 'Currency' > OK

In this case all cells are formated as currency. The bug only appears, if you
keep the displayed category.

(2) In Writer it is always possible to change cells with different number
formats as a group. Only the displayed number format is wrong.


Bug still exists in version 5.2.2 with Win7.
Bug already exists in version 3.3.0. Hence inherited from OOo.

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


[Libreoffice-bugs] [Bug 101948] Search fails to find specified indentation in imported Word document

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101948

raal  changed:

   What|Removed |Added

 CC||r...@post.cz
Version|5.0.5.2 release |4.4.0.0.alpha0+ Master

--- Comment #2 from raal  ---
Reproducible with Version: 4.4.0.0.alpha0+, win7

-- 
You are receiving this mail because:
You 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: 3 commits - loolwsd/MessageQueue.cpp loolwsd/MessageQueue.hpp loolwsd/test

2016-09-30 Thread Jan Holesovsky
 loolwsd/MessageQueue.cpp|   26 +-
 loolwsd/MessageQueue.hpp|   16 +---
 loolwsd/test/TileQueueTests.cpp |   39 +++
 3 files changed, 61 insertions(+), 20 deletions(-)

New commits:
commit cbf9556b0a9fc7117471da8b43882fe186f75981
Author: Jan Holesovsky 
Date:   Fri Sep 30 22:38:20 2016 +0200

Simplify the code around priorities and view ordering in TileQueue.

No functional change.

Change-Id: If34747a069032b13d7d9eb232b1bf10cef967afa

diff --git a/loolwsd/MessageQueue.cpp b/loolwsd/MessageQueue.cpp
index 8a37e80..0a49051 100644
--- a/loolwsd/MessageQueue.cpp
+++ b/loolwsd/MessageQueue.cpp
@@ -163,7 +163,7 @@ int TileQueue::priority(const std::string& tileMsg)
 {
 auto tile = TileDesc::parse(tileMsg); //FIXME: Expensive, avoid.
 
-for (size_t i = 0; i < _viewOrder.size(); ++i)
+for (int i = static_cast(_viewOrder.size()) - 1; i >= 0; --i)
 {
 auto& cursor = _cursorPositions[_viewOrder[i]];
 if (tile.intersectsWithRect(cursor.X, cursor.Y, cursor.Width, 
cursor.Height))
@@ -205,10 +205,8 @@ MessageQueue::Payload TileQueue::get_impl()
 break;
 
 int p = priority(prio);
-if (p == -1)
-continue;
 
-if (prioritySoFar == -1 || p < prioritySoFar)
+if (p > prioritySoFar)
 {
 prioritySoFar = p;
 prioritized = i;
diff --git a/loolwsd/MessageQueue.hpp b/loolwsd/MessageQueue.hpp
index 3bf778c..2a13484 100644
--- a/loolwsd/MessageQueue.hpp
+++ b/loolwsd/MessageQueue.hpp
@@ -108,7 +108,7 @@ public:
 _viewOrder.erase(view);
 }
 
-_viewOrder.push_front(viewId);
+_viewOrder.push_back(viewId);
 }
 
 void removeCursorPosition(int viewId)
@@ -132,16 +132,16 @@ private:
 void removeDuplicate(const std::string& tileMsg);
 
 /// Priority of the given tile message.
-/// 0 is the highest prio, the bigger is the value, the lower is the prio.
-/// -1 means the lowest prio (the tile does not intersect any of the 
cursors).
+/// -1 means the lowest prio (the tile does not intersect any of the 
cursors),
+/// the higher the number, the bigger is priority [up to 
_viewOrder.size()-1].
 int priority(const std::string& tileMsg);
 
 private:
 std::map _cursorPositions;
 
 /// Check the views in the order of how the editing (cursor movement) has
-/// been happening.
-std::deque _viewOrder;
+/// been happening (0 == oldest, size() - 1 == newest).
+std::vector _viewOrder;
 };
 
 #endif
commit f101b2b7cbbec2392109b6e8d5a095b2a0214216
Author: Jan Holesovsky 
Date:   Fri Sep 30 22:02:22 2016 +0200

Check we get views prioritized according to when the cursor was updated.

Fails with any of e5adf272b876b0d6afd8aa989c005d8a4bed5f96,
d9c90e30fd9f02a7287183d2b58195f547fb92da or
4e7ba53a2b0c91c35d93f11e114a9e56dc467555 reverted.

Change-Id: I5a9384f20ae1f64e29509ec568670e29c3c4eb94

diff --git a/loolwsd/MessageQueue.hpp b/loolwsd/MessageQueue.hpp
index 33edeeb..3bf778c 100644
--- a/loolwsd/MessageQueue.hpp
+++ b/loolwsd/MessageQueue.hpp
@@ -21,8 +21,6 @@
 */
 class MessageQueue
 {
-friend class TileQueueTests;
-
 public:
 
 typedef std::vector Payload;
@@ -73,6 +71,8 @@ protected:
 */
 class TileQueue : public MessageQueue
 {
+friend class TileQueueTests;
+
 private:
 
 class CursorPosition
diff --git a/loolwsd/test/TileQueueTests.cpp b/loolwsd/test/TileQueueTests.cpp
index 49a45c2..efe13cf 100644
--- a/loolwsd/test/TileQueueTests.cpp
+++ b/loolwsd/test/TileQueueTests.cpp
@@ -42,12 +42,14 @@ class TileQueueTests : public CPPUNIT_NS::TestFixture
 CPPUNIT_TEST(testTileQueuePriority);
 CPPUNIT_TEST(testTileCombinedRendering);
 CPPUNIT_TEST(testTileRecombining);
+CPPUNIT_TEST(testViewOrder);
 
 CPPUNIT_TEST_SUITE_END();
 
 void testTileQueuePriority();
 void testTileCombinedRendering();
 void testTileRecombining();
+void testViewOrder();
 };
 
 void TileQueueTests::testTileQueuePriority()
@@ -149,6 +151,43 @@ void TileQueueTests::testTileRecombining()
 CPPUNIT_ASSERT_EQUAL(0, static_cast(queue._queue.size()));
 }
 
+void TileQueueTests::testViewOrder()
+{
+TileQueue queue;
+
+// should result in the 3, 2, 1, 0 order of the views
+queue.updateCursorPosition(0, 0, 0, 0, 10, 100);
+queue.updateCursorPosition(2, 0, 0, 0, 10, 100);
+queue.updateCursorPosition(1, 0, 0, 7680, 10, 100);
+queue.updateCursorPosition(3, 0, 0, 0, 10, 100);
+queue.updateCursorPosition(2, 0, 0, 15360, 10, 100);
+queue.updateCursorPosition(3, 0, 0, 23040, 10, 100);
+
+const std::vector tiles =
+{
+"tile part=0 width=256 height=256 tileposx=0 tileposy=0 tilewidth=3840 
tileheight=3840 ver=-1",
+"tile part=0 width=256 height=256 tileposx=0 tileposy=7680 
tilewidth=3840 

[Libreoffice-bugs] [Bug 101470] Paragraph style drop down list doesn' t allow edit a style that is not selected

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101470

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #7 from raal  ---
note: unable to bisect, lots of skipped commits; ~/bibisect-win32-5.2

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


[Libreoffice-bugs] [Bug 94305] Text lines get cut in half after scrolling or navigating

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94305

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #5 from Buovjaga  ---
(In reply to Yousuf Philips (jay) from comment #4)
> Hi Costin,
> 
> The screencast seems to look like there was a problem with the line spacing.
> Is it possible for you to share the document so we can look into the exact
> cause of the problem.

I guess this has to be thrown back to NEEDINFO :)

Set to NEEDINFO.
Change back to UNCONFIRMED after you have provided the document.

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


[Libreoffice-bugs] [Bug 102894] Date Format -- option for user-defined default

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102894

Eike Rathke  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

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


[Libreoffice-bugs] [Bug 101735] Single page location

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101735

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #5 from Buovjaga  ---
(In reply to Jean-Baptiste Faure from comment #4)
> Try to use the single page view: in the status bar just left of the zoom
> slider, choose the first left icon instead of the second.

Setting to NEEDINFO while we wait for reply.

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


[Libreoffice-bugs] [Bug 46448] Allow custom locale settings for decimal separator, group separator, default date and time formats

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46448

Eike Rathke  changed:

   What|Removed |Added

 CC||mac...@gmail.com

--- Comment #15 from Eike Rathke  ---
*** Bug 102894 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 102894] Date Format -- option for user-defined default

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102894

Eike Rathke  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #2 from Eike Rathke  ---


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

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


[Libreoffice-bugs] [Bug 84510] Spellcheck ignores disabled "check upper-case" and " check special regions" for Zotero references

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84510

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||todven...@suomi24.fi
 Resolution|--- |INSUFFICIENTDATA

--- Comment #6 from Buovjaga  ---
Ok, closing.

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


[Libreoffice-bugs] [Bug 101987] Spellcheck dialog freezes for several seconds for every action chosen during Spelling Dialogue

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101987

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #1 from Buovjaga  ---
Which operating system are you using?

Set to NEEDINFO.
Change back to UNCONFIRMED after you have provided the information.

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


[Libreoffice-bugs] [Bug 101982] Images not viewed properly in WRITER

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101982

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #1 from Buovjaga  ---
Please attach an example document.

Set to NEEDINFO.
Change back to UNCONFIRMED after you have provided the document.

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


[Libreoffice-bugs] [Bug 100298] Style names come and go (are blanked out / white) in Styles and Formatting window (OSX ≤ 10.10)

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100298

--- Comment #15 from Harry  ---
It appears that styles were added from the many Word documents I have viewed
and edited with this program.  Could this have corrupted my style data file?  I
would be happy to post it if someone is interested and can tell me where it is
stored.

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


[Libreoffice-bugs] [Bug 102902] dial * {{ 1~877~424~6647 }} * Hotmail support number USA / Hotmail phone number USA

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102902

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

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


[Libreoffice-bugs] [Bug 102224] Google crosextra fonts missing kerning - difference to MS C fonts ( and Windows to Linux)

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102224

Johnny_M  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression

--- Comment #6 from Johnny_M  ---
Sorry for indecisiveness, but from the user point of view it does look like a
regression: kerning works for Crosextra fonts in LO 5.0 (although always-on for
all fonts), but doesn't since LO 5.1. Or otherwise an "implementationError".
Anyway, a bibisect would be useful.

By the way, I've checked a longer Writer document using Carlito font and
justified alignment with hyphenation (for better line space usage) and the
difference between its line break occurrence on Linux and Windows is
significant. It accumulates, leading to headings being moved, resulting in
incorrect page numbering in the table of contents (although its links still
work).

With LO 5.0, the difference in line break occurrence between Linux and Windows
is much smaller (by factor 20, I guess).

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


[Libreoffice-bugs] [Bug 102889] quickbooks DAV quickbooks error support number quickbooks error SUPPORT phone number (1888))()43)64( 111 DAVA DAV quickbooks error technical support phone number 1888)4

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102889

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||xiscofa...@libreoffice.org
  Component|General |deletionrequest
Version|1.13|unspecified
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

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


[Libreoffice-bugs] [Bug 100298] Style names come and go (are blanked out / white) in Styles and Formatting window (OSX ≤ 10.10)

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100298

--- Comment #14 from Harry  ---
I just added 2 attachments, a short .ODT document, 
"Short document that illustrates the bug on my Mac OS 10.9.5.",
and a screenshot of it displaying the style name defects,
"Image of defect showing document in previous attachment, defects
highlighted.".

The weird behavior is that the Style name, "Title", disappeared as soon as I
selected the title text and selected that style for it.  

The other 2 style names disappeared only after I manipulated the widths of the
full document window and the Styles and Formatting pane.  When I readjusted the
document window, the 2 other style names reappeared.  I noted that readjusting
the Styles and Formatting pane width did not bring back the style names; only
adjusting the full document window did that. 

I could not get the Title style name to reappear.  

Perhaps 2 different bugs are at work here? 

The font size of Title is 28.  The font size of the other 2 affected styles
shown are,
"Subtitle":  18
"Table Index Heading": 16 

Another style also affected, but not shown in the captured image is
"Heading 1":  18.2
.

This is on a Macbook Air, 13 inch, late 2010, with Intel Core 2 Duo, NVIDIA
GeForce 320M 256 MB.

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


[Libreoffice-bugs] [Bug 102902] New: dial * {{ 1~877~424~6647 }} * Hotmail support number USA / Hotmail phone number USA

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102902

Bug ID: 102902
   Summary: dial *  {{ 1~877~424~6647 }} * Hotmail support number
USA / Hotmail phone number USA
   Product: cppunit
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ah86571...@gmail.com

dial *  {{ 1~877~424~6647 }} * Hotmail support number USA / Hotmail phone
number USA 

dial *  {{ 1~877~424~6647 }} * Hotmail support number USA / Hotmail phone
number USA 

dial *  {{ 1~877~424~6647 }} * Hotmail support number USA / Hotmail phone
number USA 

dial *  {{ 1~877~424~6647 }} * Hotmail support number USA / Hotmail phone
number USA 

dial *  {{ 1~877~424~6647 }} * Hotmail support number USA / Hotmail phone
number USA 

Hotmail / outlook ? ? Hotmail support phone number

All

?nline Support Hotmail ™ ™Support ms office phone ...

toll free helpline Hotmail phone number ? ? 

toll free hotline number for Hotmail 

Hotmail / outlook ? ? Hotmail support phone number

toll free Hotmail customer service phone number? ? 

toll free Hotmail support

toll free Hotmail support number

toll free Hotmail support phone number

toll free Hotmail technical support number

toll free number for Hotmail issue

toll free number for Hotmail tech support

toll free number for Hotmail technical support? ? 

toll free number Hotmail tech support

toll free number Hotmail technical support

toll free number of Hotmail customer service

toll free phone number for Hotmail 

toll free technical helpline number

toll free technical support phone number

toll free technical support phone number for Hotmail ? ? 

Hotmail tech support number

Hotmail tech support phone number

Hotmail technical support number

Hotmail technical support phone number

Hotmail toll free customer care number

Hotmail toll free number

Hotmail antivirus customer care? ? 

 Hotmail contact number usa

 Hotmail contact phone number

 Hotmail contact phone number usa

 Hotmail customer care number usa toll free

 Hotmail customer care tchnical support? ? 

 Hotmail customer care usa

 Hotmail customer service number

 Hotmail customer service number usa

 Hotmail customer service phone number?1- ? Outlook Hotmail customer service
toll free number

 Outlook Hotmail customer support contact number

 Outlook Hotmail customer support telephone number

 Outlook Hotmail tech support contact number

 Outlook Hotmail tech support phone number

 Outlook Hotmail tech support telephone number

Outlook Hotmail tech support toll free number

 Outlook Hotmail technical support contact number

 Outlook Hotmail technical support phone number

 Outlook Hotmail technical support telephone number

 Hotmail phone number customer service

 Hotmail phone number customer support

 Hotmail phone number support

 Hotmail phone number tech support

 Hotmail phone number usa

 Hotmail phone numbers customer support

 Hotmail phone support

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


[Libreoffice-bugs] [Bug 102851] Err 522 (Circular Reference) when formula replaced with numeric value (intermittent but repeatable)

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102851

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||ba...@caesar.elte.hu
 Ever confirmed|0   |1

--- Comment #1 from Aron Budea  ---
First of all, please try with a current version (5.1.5 or 5.2.2). [1] has
details on installing different versions separately.

[1] https://wiki.documentfoundation.org/Installing_in_parallel

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


[Libreoffice-bugs] [Bug 102894] Date Format -- option for user-defined default

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102894

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||ba...@caesar.elte.hu
 Ever confirmed|0   |1

--- Comment #1 from Aron Budea  ---
This is what you can do:
https://ask.libreoffice.org/en/question/24722/how-to-change-the-default-date-format-in-calc-to-show-4-digit-years/

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


[Libreoffice-bugs] [Bug 102845] Writer : consecutive numbering, impossible to change numbering level at document start

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102845

Cor Nouws  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||c...@nouenoff.nl
 Resolution|--- |INSUFFICIENTDATA

--- Comment #2 from Cor Nouws  ---
(In reply to bug.reporter.21 from comment #1)
> Sorry, this is not a minimal example.
> Apparently the paragraph style is also involved in the problem,
> but I have not yet discovered how exactly.

Yes please do that and reopen - or file a new one - if appropriate.
You may also consider to ask suggestions at one of these options:
 http://www.libreoffice.org/get-help/community-support/

Regards - Cor

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


[Libreoffice-bugs] [Bug 100298] Style names come and go (are blanked out / white) in Styles and Formatting window (OSX ≤ 10.10)

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100298

--- Comment #13 from Harry  ---
Created attachment 127749
  --> https://bugs.documentfoundation.org/attachment.cgi?id=127749=edit
Image of defect showing document in previous attachment, defects highlighted.

Note that style names appear to be displayed in very tiny (single pixel high)
font!

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


[Libreoffice-bugs] [Bug 100298] Style names come and go (are blanked out / white) in Styles and Formatting window (OSX ≤ 10.10)

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100298

--- Comment #12 from Harry  ---
Created attachment 127748
  --> https://bugs.documentfoundation.org/attachment.cgi?id=127748=edit
Short document that illustrates the bug on my Mac OS 10.9.5.

Image follows as another attachment.  Note that style names are too tiny; not
invisible.

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


[Libreoffice-bugs] [Bug 102899] Indiana @@ {{ 1~877~424~6647 }} Hotmail phone number USA / Hotmail support number / Hotmail help number USA

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102899

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

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


[Libreoffice-bugs] [Bug 102900] Toll-free Number "" 1~877~4214~6647 "" Hotmail phone number USA / Hotmail support number USA

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102900

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

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


[Libreoffice-bugs] [Bug 102884] Nova Scotia*****/ *1844-305-5565 HP PRINTER CUSTOMER TOLL FREE SUPPORT PHONE NUMBER /*/*

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102884

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|libcdr  |LibreOffice

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


[Libreoffice-bugs] [Bug 101711] Background image turns to solid blue for all slides after copy/paste

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101711

--- Comment #8 from Buovjaga  ---
Yep I can still repro in 5.3

Again, for testers: you have to use the master slide to set the background
image and then copy slide in the normal view.

Arch Linux 64-bit, KDE Plasma 5
Version: 5.3.0.0.alpha0+
Build ID: 8e812b87ff7f8c5bf2c6f8858646c55effd2eea3
CPU Threads: 8; OS Version: Linux 4.7; UI Render: default; 
Locale: fi-FI (fi_FI.UTF-8); Calc: group
Built on September 30th 2016

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


[Libreoffice-bugs] [Bug 102879] :(͡° ͜ʖ ͡°): Manitoba"" (1-844)+305+5565 hp printer technical support phone number //

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102879

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|FirefoxOS app   |deletionrequest
Version|2.2.0   |unspecified
 Resolution|--- |INVALID
Product|Impress Remote  |LibreOffice

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


[Libreoffice-bugs] [Bug 102885] HP PRINTER 1844 305 5565 TOLL FREE SUPPORT PHONE NUMBER ]]][[ [ Nunavut

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102885

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|libetonyek  |LibreOffice

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


[Libreoffice-bugs] [Bug 102883] 8443055565 HP PRINTER CUSTOMER ONLINE CARE SUPPORT PHONE NUMBER Northwest Territories

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102883

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|libcdr  |LibreOffice

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


[Libreoffice-bugs] [Bug 102877] British Columbia++18443055565)) hp printer technical support phone number

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102877

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
Version|2.2.3   |unspecified
 Resolution|--- |INVALID
Product|Impress Remote  |LibreOffice

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


[Libreoffice-bugs] [Bug 102892] Quebec++<><><><><<> 18443055565 HP PRINTER FREE CUSTOMER SUPPORT PHONE NUMBER ....

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102892

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|libexttextcat   |LibreOffice

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


[Libreoffice-bugs] [Bug 102890] (HP) PRINTER 1844 (305) 55.65 CUSTOMER FREE SUPPORT PHONE < NUMBER>Quebec

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102890

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|libexttextcat   |LibreOffice

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


[Libreoffice-bugs] [Bug 102886] HP PRINTER 1844 305 5565 TOLL SUPPORT PHONE NUMBER ]]][[[ Ontario

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102886

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|libetonyek  |LibreOffice

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


[Libreoffice-bugs] [Bug 102876] *18443055565 hp printer tech support phone number Alberta

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102876

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|Document Liberation Project |LibreOffice

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


[Libreoffice-bugs] [Bug 102888] (HP) PRINTER 1844 (305) 5565 TOLL SUPPORT PHONE NUMBER Prince Edward Island

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102888

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|libexttextcat   |LibreOffice

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


[Libreoffice-bugs] [Bug 102880] ** 1844 305 5565-- HP PRINTER CUSTOMER SUPPORT PHONE NUMBER / New Brunswick

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102880

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|iOS app |deletionrequest
Version|2.2.0   |unspecified
 Resolution|--- |INVALID
Product|Impress Remote  |LibreOffice

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


[Libreoffice-bugs] [Bug 102875] Try Now! 1844 305 5565 HP printer support phone number canada

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102875

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|Document Liberation Project |LibreOffice

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


[Libreoffice-bugs] [Bug 102893] 1844 3055565 HP PRINTER FREE SUPPORT PHONE NUMBER

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102893

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|libmspub|LibreOffice

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


[Libreoffice-bugs] [Bug 102882] 18443055565 HP PRINTER CUSTOMER CARE SUPPORT PHONE NUMBER Newfoundland and Labrador

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102882

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|libabw  |LibreOffice

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


[Libreoffice-bugs] [Bug 102901] Crash while scrolling fonts

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102901

--- Comment #1 from Francisco  ---
I forgot:

Versión: 5.2.2.2 (x64)
Id. de compilación: 8f96e87c890bf8fa77463cd4b640a2312823f3ad
Subprocesos de CPU: 4; Versión de SO: Windows 6.29; Renderizado de IU: GL; 
Configuración regional: es-AR (es_AR); 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 102901] New: Crash while scrolling fonts

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102901

Bug ID: 102901
   Summary: Crash while scrolling fonts
   Product: LibreOffice
   Version: 5.2.2.2 rc
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: franciscoadriansanc...@gmail.com

As title says, with a fresh environment on a just installed LibO 5.2.2

Steps
1) Create a new document
2) Don't type anything, just scroll down and up your fonts

Result
1) Crash

Expected:
1) No crash

I can reproduce this any time in mi notebook. Also, 2 crash reports were sent
(there was a third one but it hanged it self and never finished):

http://crashreport.libreoffice.org/stats/crash_details/006ad417-2dd0-4044-bdf6-d3218e2551bd

http://crashreport.libreoffice.org/stats/crash_details/c6c1cc96-1324-4f52-8f4e-b3be6a76a605
 

I check on Writer and Impress. I guess it would be the same for the rest of the
apps.

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


[Libreoffice-bugs] [Bug 101711] Background image turns to solid blue for all slides after copy/paste

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101711

--- Comment #7 from daretheh...@gmail.com  ---
(In reply to daretheh...@gmail.com from comment #6)
> (In reply to Buovjaga from comment #5)
> > (In reply to daretheh...@gmail.com from comment #4)
> > > I noticed this strange behavior myself in my current Linux Mint LMDE 
> > > version
> > > of LibreOffice (5.1.0.3), so I tried upgrading to a Jessie backport
> > > (5.1.5.2) but this had the same problem.  So I tried the newest version I
> > > could find (5.2.2.2) and the problem was there as well.  
> > > 
> > > Are there some experimental fixed debs that I can try?
> > 
> > This 32-bit build is from a date that should surely have it:
> > http://dev-builds.libreoffice.org/daily/libreoffice-5-1/Linux-rpm_deb-x86@71-
> > TDF/current/
> > https://wiki.documentfoundation.org/Installing_in_parallel/Linux
> 
> Thanks for this!  I started to install these DEBs, but found out that they
> are i386-based (?) instead of amd64, so I have a whole bunch of missing
> libraries.  Unless there are some amd64 ones around, I might have to wait
> for the fix to show up in the official places.  Advice?

Actually, I added all the extra stuff (sufficiently to start Impress), and
unfortunately found that the bug exists in that version as well :(

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


Re: Need help compiling using the --enable-vlc option.

2016-09-30 Thread Kirk Puppy
Wow, that was easy. Thanks for your help Rene!

On Fri, Sep 30, 2016 at 9:11 AM, Rene Engelhard  wrote:

> Hi,
>
> On Wed, Sep 28, 2016 at 10:35:39AM -0400, Kirk Puppy wrote:
> > So I built with --enable-vlc, but libreoffice still seemed to
> try and
> >use gstreamer. When I would try and insert video into Impress I would
> get
> >a gstreamer missing pluggins error on the terminal.
> > So then I tried compiling with --enable-vlc,
> --disable-gstreamer-1-0,
> >and --disable-gstreamer-0-10. Now when I try to insert video into
> impress,
> >I don't see any errors about gstreamer. But Impress pops up an error
> >message "The format of the selected file is not supported".  I tried
> mp4,
> >avi, and mkv. All have the same error message. Is there something
> else I
> >need for using VLC? Is Gstreamer required?
>
> % grep -ri experimental *
> source/vlc/vlcuno.cxx:// Experimental for now - code is neither
> elegant nor well tested.
> source/vlc/vlcuno.cxx:if (!xContext.is() ||
> !officecfg::Office::Common::Misc::ExperimentalMode::get(xContext))
> source/vlc/vlcuno.cxx:// Experimental for now - code is neither
> elegant nor well tested.
> source/vlc/vlcuno.cxx:if (!xContext.is() ||
> !officecfg::Office::Common::Misc::ExperimentalMode::get(xContext))
>
> So I guess you want to enable experimental features?
> (in Tools -> Options -> Advanced)
>
> Regards,
>
> Rene
>
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2016-09-30 Thread Zdeněk Crhonek
 sc/qa/unit/data/functions/fods/rate.fods | 7546 +++
 1 file changed, 7546 insertions(+)

New commits:
commit 33a2e47c907f7e2c1995b4a1e910dec94c3cedb4
Author: Zdeněk Crhonek 
Date:   Tue Sep 13 23:43:18 2016 +0200

add RATE test case

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

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

[Libreoffice-bugs] [Bug 101711] Background image turns to solid blue for all slides after copy/paste

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101711

--- Comment #6 from daretheh...@gmail.com  ---
(In reply to Buovjaga from comment #5)
> (In reply to daretheh...@gmail.com from comment #4)
> > I noticed this strange behavior myself in my current Linux Mint LMDE version
> > of LibreOffice (5.1.0.3), so I tried upgrading to a Jessie backport
> > (5.1.5.2) but this had the same problem.  So I tried the newest version I
> > could find (5.2.2.2) and the problem was there as well.  
> > 
> > Are there some experimental fixed debs that I can try?
> 
> This 32-bit build is from a date that should surely have it:
> http://dev-builds.libreoffice.org/daily/libreoffice-5-1/Linux-rpm_deb-x86@71-
> TDF/current/
> https://wiki.documentfoundation.org/Installing_in_parallel/Linux

Thanks for this!  I started to install these DEBs, but found out that they are
i386-based (?) instead of amd64, so I have a whole bunch of missing libraries. 
Unless there are some amd64 ones around, I might have to wait for the fix to
show up in the official places.  Advice?

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


[Libreoffice-bugs] [Bug 102900] New: Toll-free Number "" 1~877~4214~6647 "" Hotmail phone number USA / Hotmail support number USA

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102900

Bug ID: 102900
   Summary: Toll-free Number "" 1~877~4214~6647 "" Hotmail phone
number USA / Hotmail support number USA
   Product: cppunit
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: corazachar...@gmail.com

Toll-free Number "" 1~877~4214~6647 "" Hotmail phone number USA / Hotmail
support number USA 

Toll-free Number "" 1~877~4214~6647 "" Hotmail phone number USA / Hotmail
support number USA 

Toll-free Number "" 1~877~4214~6647 "" Hotmail phone number USA / Hotmail
support number USA 

Toll-free Number "" 1~877~4214~6647 "" Hotmail phone number USA / Hotmail
support number USA 

Toll-free Number "" 1~877~4214~6647 "" Hotmail phone number USA / Hotmail
support number USA 

Toll-free Number "" 1~877~4214~6647 "" Hotmail phone number USA / Hotmail
support number USA 

Hotmail help support 1.877.424.66➃➆ Ϯ Ϯ Ϯ phone number Hotmail customer care
service support phone number

Hotmail help support 1.877.424.66➃➆ Ϯ Ϯ Ϯ phone number Hotmail customer care
service support phone number

Hotmail help support 1.877.424.66➃➆ Ϯ Ϯ Ϯ phone number Hotmail customer care
service support phone number

Hotmail help support 1.877.424.66➃➆ Ϯ Ϯ Ϯ phone number Hotmail customer care
service support phone number

Hotmail / outlook ?1-877-???-6647 ? Hotmail support phone number

All

?nline Support Hotmail ™1-877-???-6647™Support ms office phone ...

+(1)+(877-???-6647) Hotmail toll free phone number(1)(877)(???)(6647)

toll free helpline Hotmail phone number ? ? 

toll free hotline number for Hotmail 

Hotmail / outlook ?1-877-???-6647 ? Hotmail support phone number

toll free Hotmail customer service phone number? ? 

toll free Hotmail support

toll free Hotmail support number

toll free Hotmail support phone number

toll free Hotmail technical support number

toll free number for Hotmail issue

toll free number for Hotmail tech support

toll free number for Hotmail technical support? ? 

toll free number Hotmail tech support

toll free number Hotmail technical support

toll free number of Hotmail customer service

toll free phone number for Hotmail 

toll free technical helpline number

toll free technical support phone number 

toll free technical support phone number for Hotmail ? ? 

Hotmail tech support number

Hotmail tech support phone number

Hotmail technical support number

Hotmail technical support phone number

Hotmail toll free customer care number

Hotmail toll free number

Hotmail antivirus customer care?1-877-???-6647 ? 

 Hotmail contact number usa 

 Hotmail contact phone number

 Hotmail contact phone number usa

 Hotmail customer care number usa toll free

 Hotmail customer care tchnical support? ? 

 Hotmail customer care usa

 Hotmail customer service number

 Hotmail customer service number usa

 Hotmail customer service phone number?1-1-877-???-6647? Outlook Hotmail
customer service toll free number

 Outlook Hotmail customer support contact number

 Outlook Hotmail customer support telephone number

 Outlook Hotmail tech support contact number

 Outlook Hotmail tech support phone number

 Outlook Hotmail tech support telephone number

Outlook Hotmail tech support toll free number

 Outlook Hotmail technical support contact number

 Outlook Hotmail technical support phone number

 Outlook Hotmail technical support telephone number

 Hotmail phone number customer service

 Hotmail phone number customer support

 Hotmail phone number support

 Hotmail phone number tech support

 Hotmail phone number usa

 Hotmail phone numbers customer support

 Hotmail phone support

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


[Libreoffice-bugs] [Bug 102899] New: Indiana @@ {{ 1~877~424~6647 }} Hotmail phone number USA / Hotmail support number / Hotmail help number USA

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102899

Bug ID: 102899
   Summary: Indiana @@ {{ 1~877~424~6647 }} Hotmail phone number
USA / Hotmail support number / Hotmail help number USA
   Product: cppunit
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: corazachar...@gmail.com

Indiana @@ {{ 1~877~424~6647 }} Hotmail phone number USA / Hotmail support
number / Hotmail help number USA 

Indiana @@ {{ 1~877~424~6647 }} Hotmail phone number USA / Hotmail support
number / Hotmail help number USA 

Indiana @@ {{ 1~877~424~6647 }} Hotmail phone number USA / Hotmail support
number / Hotmail help number USA 

Indiana @@ {{ 1~877~424~6647 }} Hotmail phone number USA / Hotmail support
number / Hotmail help number USA 

Indiana @@ {{ 1~877~424~6647 }} Hotmail phone number USA / Hotmail support
number / Hotmail help number USA 

hotmail phone number, hotmail help



Outlook is Microsoft’s browser based email service. Microsoft decided to
replace Hotmail by Outlook. Many features are included in the web mail service
offered by Microsoft. Call the technical professionals now on our
Outlook/Hotmail Customer Service Phone Number. Now it’s possible to get high
quality tech support and solutions for email clients, email services and
browser based email services. Contact us to get solutions. Call us on our
Outlook/Hotmail Customer Care Phone Number. Our dedicated staff of technical
professionals is always on call. They are always ready to help you.



We’re able to fix the following types of issues:



 Quick online solutions are offered by us for issues like email client not
working, email client not taking password, email client not updating mails,
etc. Call the experienced professionals now on our Outlook/Hotmail Technical
Support Phone Number. Call us to get online solutions for Outlook web mail,
Microsoft Outlook and Outlook Express. Contact the email recovery professionals
now on our Outlook/Hotmail Helpline Phone Number.



Outlook/Hotmail Technical Support



Outlook/Hotmail Customer Support



Outlook/Hotmail Customer Care



Outlook/Hotmail Customer Service



Outlook/Hotmail Contact Number



Outlook/Hotmail Phone Number



Outlook/Hotmail Help Line Number



Outlook/Hotmail Toll Free Number



Outlook/Hotmail Support Phone Number



Outlook/Hotmail Tech Support Number



Outlook/Hotmail Technical Support Number



Outlook/Hotmail Customer Support Number



Outlook/Hotmail Customer Care Number



Outlook/Hotmail Customer Service Number



Outlook/Hotmail Password Reset Number



Outlook/Hotmail Password Recovery Number



Outlook/Hotmail Tech Support Phone Number



Outlook/Hotmail Technical Support Phone Number



Outlook/Hotmail Customer Support Phone Number



Outlook/Hotmail Customer Care Phone Number



Outlook/Hotmail Customer Service Phone Number



Outlook/Hotmail Password Reset Phone Number



Outlook/Hotmail Password Recovery Phone Number



We offer Hotmail outlook Password recovery support with easy and simple steps.
We are proud to be one of the best place who bring essential technical support
and password recovery solution through one and only,We are one of the best and
mostoutstanding place who bring essential support for complete account issues,
from small to biggest each and every error is being eliminated with our experts
help,All the errors of windows live mail account, is being resolved through our
expert engineers help. They within minutes completely eliminate technical
errors and also offer lifetime security protection for your account.The
certified engineers of our team are always available to give instant support
configuration and synchronization related errors.We offer exceptional and
totally unique support to each and every user through ultimate Hotmail customer
care number for easy access of their account. Our services are simply great and
unique, users can eradicate each and every issue on their own sometimes, but
unfortunately there are certain technical errors which need prompt support and
we resolve it, with excellent technical support



outlook phone number



hotmail phone number change



hotmail phone number verification



msn phone number



hotmail phone number required



hotmail customer care phone number



sbcglobal support phone number



hotmail sign in



hotmail tech support number 



hotmail tech support number contact details 



Hotmail helpline number 



Hotmail helpline number usa 



Hotmail helpline number uk 



Hotmail helpline phone number 



hotmail helpline telephone number 



hotmail helpline telephone number uk 



hotmail helpline telephone number usa 



windows live hotmail customer service 



microsoft hotmail support phone number 



microsoft hotmail helpline number 

[Libreoffice-bugs] [Bug 102866] Minnesota {{ 1~877~424~6647 }} Hotmail support Phone number / Hotmail phone number USA

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102866

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

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


[Libreoffice-bugs] [Bug 102860] California @@! 1~877~424~6647 !@@ Hotmail support number / hotmail phone number USA

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102860

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

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


[Libreoffice-bugs] [Bug 102881] Dial {((1~877~424~6647 ))} Hotmail phone number USA / Hotmail support number USA

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102881

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

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


[Libreoffice-bugs] [Bug 102891] Toll-free number {{ 1~877~424~6647 }} Hotmail support number USA / Hotmail phone number USA

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102891

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

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


[Libreoffice-bugs] [Bug 102887] Dial now @! 1~877~424~6647 @@! Hotmail phone number / Hotmail support number USA

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102887

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

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


[Libreoffice-bugs] [Bug 102874] Try Now "" 1~877~424~6647 "" {} Hotmail phone number USA / Hotmail support number USA

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102874

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

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


[Libreoffice-bugs] [Bug 102871] {"" 1~877~424~6647 '''' } Hotmail phone number / Hotmail support number USA

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102871

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

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


[Libreoffice-bugs] [Bug 102898] Everyday 24*7 >"" 1~877~424~6647 "" Hotmail support number USA / Hotmail phone number USA / Hotmail help number USA

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102898

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

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


[Libreoffice-bugs] [Bug 102897] Virginia @@ 1~877~424~6647 @@ Hotmail phone number USA / Hotmail support number / hotmail help number USA

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102897

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

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


[Libreoffice-bugs] [Bug 102878] @!@ 1~877~424~6647 @! @ Hotmail support number / Hotmail phone number USA

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102878

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

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


[Libreoffice-bugs] [Bug 102869] Minnesota@@ 1~877~424~6647 @@ Hotmail support number / Hotmail phone number USA

2016-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102869

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

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


  1   2   3   4   5   >