[Libreoffice-bugs] [Bug 47414] Import of MathML into OpenOffice / LibreOffice

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47414

WilfriedH  changed:

   What|Removed |Added

Version|unspecified |Inherited From OOo

--- Comment #5 from WilfriedH  ---
Tested with LO5.0.4 against LO3.3.0. Problems with arrays are exactly the same.
Some multiple indices are better supported in 5.0.4, some are worse in 5.0.4.
Attached: A zip file with screenshots of both 5.0.4 and 3.3.0 with differences
marked by red rectangles.

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


[Libreoffice-bugs] [Bug 47414] Import of MathML into OpenOffice / LibreOffice

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47414

--- Comment #6 from WilfriedH  ---
Created attachment 122158
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122158=edit
screenshots of equations in LO5.0.4 and LO3.3.0

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


[Libreoffice-bugs] [Bug 97319] New: All unicode SEP codepoints no longer rendered

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97319

Bug ID: 97319
   Summary: All unicode SEP codepoints no longer rendered
   Product: LibreOffice
   Version: 5.2.0.0.alpha0+ Master
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: graphics stack
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: vstuart.fo...@utsa.edu

On Windows 10 Pro 64-bit en-US with
Version: 5.2.0.0.alpha0+
Build ID: c81eddbb20c84280aa64c712e34c829380b24527
CPU Threads: 8; OS Version: Windows 6.19; UI Render: GL; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-01-22_04:19:03
Locale: en-US (en_US)

with or without OpenGL enabled.

Have lost the SEP Unicode codepoints above  both in documents and in the
special character dialog.

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


[Libreoffice-bugs] [Bug 97319] All unicode SEP codepoints no longer rendered

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97319

V Stuart Foote  changed:

   What|Removed |Added

   Priority|medium  |high
 CC||chris.sherl...@collabora.co
   ||m, mst...@redhat.com,
   ||t...@iki.fi,
   ||vstuart.fo...@utsa.edu

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


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

2016-01-22 Thread Jan Holesovsky
 loleaflet/src/layer/tile/TileLayer.js |   16 +++-
 1 file changed, 15 insertions(+), 1 deletion(-)

New commits:
commit 937a35f5dc7d6173b6a7950083bb777687923086
Author: Jan Holesovsky 
Date:   Fri Jan 22 16:26:46 2016 +0100

loleaflet: Implement rich copy / paste inside the document.

diff --git a/loleaflet/src/layer/tile/TileLayer.js 
b/loleaflet/src/layer/tile/TileLayer.js
index d1544aa..22d8306 100644
--- a/loleaflet/src/layer/tile/TileLayer.js
+++ b/loleaflet/src/layer/tile/TileLayer.js
@@ -1010,6 +1010,10 @@ L.TileLayer = L.GridLayer.extend({
e.preventDefault();
if (this._selectionTextContent) {
L.Compatibility.clipboardSet(e, 
this._selectionTextContent);
+
+   // remember the copied text, for rich copy/paste inside 
a document
+   this._selectionTextHash = this._selectionTextContent;
+   this._map._socket.sendMessage('uno .uno:Copy');
}
},
 
@@ -1018,6 +1022,9 @@ L.TileLayer = L.GridLayer.extend({
e.preventDefault();
if (this._selectionTextContent) {
L.Compatibility.clipboardSet(e, 
this._selectionTextContent);
+
+   // remember the copied text, for rich copy/paste inside 
a document
+   this._selectionTextHash = this._selectionTextContent;
this._map._socket.sendMessage('uno .uno:Cut');
}
},
@@ -1027,7 +1034,14 @@ L.TileLayer = L.GridLayer.extend({
e.preventDefault();
var pasteString = L.Compatibility.clipboardGet(e);
if (pasteString) {
-   this._map._socket.sendMessage('paste 
mimetype=text/plain;charset=utf-8\n' + pasteString);
+   if (pasteString === this._selectionTextHash) {
+   // content of the clipboard did not change, we 
can do rich
+   // paste
+   this._map._socket.sendMessage('uno .uno:Paste');
+   }
+   else {
+   this._map._socket.sendMessage('paste 
mimetype=text/plain;charset=utf-8\n' + pasteString);
+   }
}
},
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-01-22 Thread Jan Holesovsky
 loleaflet/src/layer/tile/TileLayer.js |   16 +++-
 1 file changed, 15 insertions(+), 1 deletion(-)

New commits:
commit 1da4769924d465f9dbe3fea6be39f74156ed7555
Author: Jan Holesovsky 
Date:   Fri Jan 22 16:26:46 2016 +0100

loleaflet: Implement rich copy / paste inside the document.

diff --git a/loleaflet/src/layer/tile/TileLayer.js 
b/loleaflet/src/layer/tile/TileLayer.js
index 27564b1..55e7004 100644
--- a/loleaflet/src/layer/tile/TileLayer.js
+++ b/loleaflet/src/layer/tile/TileLayer.js
@@ -951,6 +951,10 @@ L.TileLayer = L.GridLayer.extend({
e.preventDefault();
if (this._selectionTextContent) {
L.Compatibility.clipboardSet(e, 
this._selectionTextContent);
+
+   // remember the copied text, for rich copy/paste inside 
a document
+   this._selectionTextHash = this._selectionTextContent;
+   this._map._socket.sendMessage('uno .uno:Copy');
}
},
 
@@ -959,6 +963,9 @@ L.TileLayer = L.GridLayer.extend({
e.preventDefault();
if (this._selectionTextContent) {
L.Compatibility.clipboardSet(e, 
this._selectionTextContent);
+
+   // remember the copied text, for rich copy/paste inside 
a document
+   this._selectionTextHash = this._selectionTextContent;
this._map._socket.sendMessage('uno .uno:Cut');
}
},
@@ -968,7 +975,14 @@ L.TileLayer = L.GridLayer.extend({
e.preventDefault();
var pasteString = L.Compatibility.clipboardGet(e);
if (pasteString) {
-   this._map._socket.sendMessage('paste 
mimetype=text/plain;charset=utf-8\n' + pasteString);
+   if (pasteString === this._selectionTextHash) {
+   // content of the clipboard did not change, we 
can do rich
+   // paste
+   this._map._socket.sendMessage('uno .uno:Paste');
+   }
+   else {
+   this._map._socket.sendMessage('paste 
mimetype=text/plain;charset=utf-8\n' + pasteString);
+   }
}
},
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Py_hash_t on python27

2016-01-22 Thread Michael Stahl
On 22.01.2016 17:40, Richard PALO wrote:
> Le 22/01/16 17:35, Rene Engelhard a écrit :
>> On Fri, Jan 22, 2016 at 05:26:05PM +0100, Richard PALO wrote:
>> -#if PY_VERSION_HEX < 0x0207
>> +#if PY_VERSION_HEX < 0x0302
>>
>> Whose are not supported. As said, PyUNO needs python >= 3.3 for python 3.
>> See http://cgit.freedesktop.org/libreoffice/core/tree/configure.ac#n8071
>>
>> No idea whether python 2.7 is supposed to be still supported, don't think
>> with 5.1s improved pyUNO.. I stopped building the extra pyUNO package for
>> python 2 longish ago.

yes, 2.7 is still supported, RHEL 7 doesn't have anything newer sadly.
i also remember there were some patches to build with 2.6 too from SuSE
a couple weeks ago.

> We patched that long ago, and things seem to work okay (is there something in 
> particular to watch out for?)
> because LO always seemed to pick up the wrong python...!

the configure intentionally checks only for python 3 by default because
you only want to use python 2 if you have no alternative, and you're
supposed to set environment variables like here:

http://pkgs.fedoraproject.org/cgit/rpms/libreoffice.git/tree/libreoffice.spec#n1009

>> --- configure.ac.orig2016-01-13 01:56:20.0 +
>> +++ configure.ac
>> @@ -7997,7 +7997,7 @@ no|disable)
>> @@ -8050,9 +8050,9 @@ if test $enable_python = system; then
>>  elif test "$cross_compiling" != yes; then
>>  # Unset variables set by the above AM_PATH_PYTHON so that
>>  # we actually do check anew.
>> -unset PYTHON am_cv_pathless_PYTHON ac_cv_path_PYTHON 
>> am_cv_python_version am_cv_python_platform am_cv_python_pythondir 
>> am_cv_python_pyexecdir
>> +#unset PYTHON am_cv_pathless_PYTHON ac_cv_path_PYTHON 
>> am_cv_python_version am_cv_python_platform am_cv_python_pythondir 
>> am_cv_python_pyexecdir
>>  # This causes an error if no python command is found
>> -AM_PATH_PYTHON([3.3])
>> +AM_PATH_PYTHON([2.6])

... of course this should work too :)


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


[Libreoffice-commits] core.git: 2 commits - i18nlangtag/qa i18nlangtag/source i18npool/source include/i18nlangtag

2016-01-22 Thread Eike Rathke
 i18nlangtag/qa/cppunit/test_languagetag.cxx |1 
 i18nlangtag/source/isolang/isolang.cxx  |4 
 i18npool/source/localedata/data/eu.xml  |  376 
 i18npool/source/localedata/data/eu_ES.xml   |  376 
 i18npool/source/localedata/localedata.cxx   |2 
 include/i18nlangtag/lang.h  |   10 
 6 files changed, 390 insertions(+), 379 deletions(-)

New commits:
commit 72c5e230f9cda8e18f63f7bbc6567487b4c5a5e0
Author: Eike Rathke 
Date:   Fri Jan 22 21:46:30 2016 +0100

tdf#97315 add Basque [eu-ES] and map [eu] to [eu-ES]

Change-Id: I89641fa82f0d0129aeff0d86a10be26cdc721dfc

diff --git a/i18nlangtag/qa/cppunit/test_languagetag.cxx 
b/i18nlangtag/qa/cppunit/test_languagetag.cxx
index 76ef5a3..8696408 100644
--- a/i18nlangtag/qa/cppunit/test_languagetag.cxx
+++ b/i18nlangtag/qa/cppunit/test_languagetag.cxx
@@ -684,6 +684,7 @@ static bool checkMapping( const OUString& rStr1, const 
OUString& rStr2 )
 if (rStr1 == "ku-SY"   ) return rStr2 == "kmr-Latn-SY";
 if (rStr1 == "ku-IQ"   ) return rStr2 == "ckb-IQ";
 if (rStr1 == "ku-IR"   ) return rStr2 == "ckb-IR";
+if (rStr1 == "eu"  ) return rStr2 == "eu-ES";
 return rStr1 == rStr2;
 }
 
diff --git a/i18nlangtag/source/isolang/isolang.cxx 
b/i18nlangtag/source/isolang/isolang.cxx
index c005c19..2161f7a 100644
--- a/i18nlangtag/source/isolang/isolang.cxx
+++ b/i18nlangtag/source/isolang/isolang.cxx
@@ -239,7 +239,8 @@ static IsoLanguageCountryEntry const aImplIsoLangEntries[] =
 { LANGUAGE_USER_ARABIC_SOMALIA, "ar", "SO", 0 },
 { LANGUAGE_USER_ARABIC_SUDAN,   "ar", "SD", 0 },
 { LANGUAGE_ARABIC_PRIMARY_ONLY, "ar", ""  , 0 },
-{ LANGUAGE_BASQUE,  "eu", ""  , 0 },
+{ LANGUAGE_BASQUE,  "eu", "ES", 0 },
+{ LANGUAGE_BASQUE,  "eu", ""  , kSAME },// our 
earlier definition
 { LANGUAGE_BULGARIAN,   "bg", "BG", 0 },
 { LANGUAGE_CZECH,   "cs", "CZ", 0 },
 { LANGUAGE_CZECH,   "cz", ""  , kSAME },
@@ -1114,7 +1115,6 @@ css::lang::Locale 
MsLangId::Conversion::lookupFallbackLocale(
 switch (pEntry->mnLang)
 {
 // These are known to have no country assigned.
-case LANGUAGE_BASQUE:
 case LANGUAGE_USER_ESPERANTO:
 case LANGUAGE_USER_INTERLINGUA:
 case LANGUAGE_USER_INTERLINGUE:
diff --git a/i18npool/source/localedata/data/eu.xml 
b/i18npool/source/localedata/data/eu_ES.xml
similarity index 99%
rename from i18npool/source/localedata/data/eu.xml
rename to i18npool/source/localedata/data/eu_ES.xml
index 8de7c60..cc7c6d5 100644
--- a/i18npool/source/localedata/data/eu.xml
+++ b/i18npool/source/localedata/data/eu_ES.xml
@@ -24,8 +24,8 @@
   Basque
 
 
-  
-  
+  ES
+  Spain
 
   
   
diff --git a/i18npool/source/localedata/localedata.cxx 
b/i18npool/source/localedata/localedata.cxx
index e91ac3f3..d8f5ed0 100644
--- a/i18npool/source/localedata/localedata.cxx
+++ b/i18npool/source/localedata/localedata.cxx
@@ -152,7 +152,7 @@ static const struct {
 { "sr_CS",  lcl_DATA_EURO },
 { "hr_HR",  lcl_DATA_EURO },
 { "bs_BA",  lcl_DATA_EURO },
-{ "eu", lcl_DATA_EURO },
+{ "eu_ES",  lcl_DATA_EURO },
 { "fo_FO",  lcl_DATA_EURO },
 { "ga_IE",  lcl_DATA_EURO },
 { "gd_GB",  lcl_DATA_EURO },
commit 43507882386f5d576e4f6c49dfd578630167d893
Author: Eike Rathke 
Date:   Fri Jan 22 18:18:33 2016 +0100

document some naming conventions

Change-Id: Id73c7b56c58855fc5ae2304274b6da97272037b8

diff --git a/include/i18nlangtag/lang.h b/include/i18nlangtag/lang.h
index 51310f9..0144831 100644
--- a/include/i18nlangtag/lang.h
+++ b/include/i18nlangtag/lang.h
@@ -107,6 +107,16 @@ typedef unsigned short LanguageType;
 /* NOTE: this is taken from the MS documentation! Not supported by OOo/SO! */
 #define LANGUAGE_INVARIANT  0x007F
 
+/* Naming conventions:
+ * * ..._LSO suffix indicates a Language-Script-Only mapping, i.e. no country
+ *   assignment in i18nlangtag/source/isolang/isolang.cxx.
+ *   Used for backward compatibility or where MS assigned such values and they
+ *   should be explicitly handled.
+ * * LANGUAGE_USER_... for our user-defined IDs.
+ * * LANGUAGE_OBSOLETE_USER_... for a user-defined ID that has been replaced by
+ *   a value defined by MS.
+ */
+
 #define LANGUAGE_AFRIKAANS  0x0436
 #define LANGUAGE_ALBANIAN   0x041C
 #define LANGUAGE_ALSATIAN_FRANCE0x0484
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97325] UI: Ability to Generate a report withing Calc Compare Document (Spreadsheet Compare)

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97325

telefranci...@gmail.com changed:

   What|Removed |Added

Summary|Ability to Generate a   |UI: Ability to Generate a
   |report withing Calc Compare |report withing Calc Compare
   |Document (Spreadsheet   |Document (Spreadsheet
   |Compare)|Compare)

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


[Libreoffice-bugs] [Bug 97327] New: Calc Compare Document (Spreadsheet Compare) doesn't works well when comparing documents with different number of Sheets.

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97327

Bug ID: 97327
   Summary: Calc Compare Document (Spreadsheet Compare) doesn't
works well when comparing documents with different
number of Sheets.
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: telefranci...@gmail.com

How to reproduce:

1. Have one spreadsheet with one or more sheets (preferably filled with some
data).
2. Copy this spreadsheet and add another Sheet into it and fill this new one
sheet with some data.
3. Do Edit > Compare Document and compare against the other (doesn't matter if
you do it with the first document or the one opened it happens in work ways).
4. ??? No changes.

Calc Compare Document (Spreadsheet Compare) should show in the "Manage Changes"
list of "Compare Document" that a New Sheet has been added (shall it show the
values in the new sheet as changes? Let's discuss that in the bug :) ).

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


[Libreoffice-bugs] [Bug 87360] Spacing to content should be disabled for images

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87360

--- Comment #7 from Joshua  ---
http://url.dsl.pp.ua/875575/pils/page.php

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


[Libreoffice-commits] core.git: Changes to 'refs/tags/cp-5.0-19'

2016-01-22 Thread Andras Timar
Tag 'cp-5.0-19' created by Andras Timar  at 
2016-01-19 20:26 -0800

cp-5.0-19

Changes since cp-5.0-18-22:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] translations.git: Changes to 'refs/tags/cp-5.0-19'

2016-01-22 Thread Christian Lohmaier
Tag 'cp-5.0-19' created by Andras Timar  at 
2016-01-19 20:26 -0800

cp-5.0-19

Changes since cp-5.0-14-23:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: Changes to 'refs/tags/cp-5.0-19'

2016-01-22 Thread Christian Lohmaier
Tag 'cp-5.0-19' created by Andras Timar  at 
2016-01-19 20:26 -0800

cp-5.0-19

Changes since cp-5.0-18:
Christian Lohmaier (1):
   should not be empty/self-closing element ()

---
 source/text/shared/01/0222.xhp  |2 +-
 source/text/swriter/01/04020100.xhp |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

--- Comment #9 from Ofir  ---
It's not Windows 7 specific because I reproduced on Ubuntu 14.04 as well.
I asked you to test LibreOffice 5.1.0.2 not 5.2.0.0.

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


[Libreoffice-bugs] [Bug 97329] New: Wrong Spaces Placement Between Arabic Words

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97329

Bug ID: 97329
   Summary: Wrong Spaces Placement Between Arabic Words
   Product: LibreOffice
   Version: 5.2.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tech...@gmail.com

Created attachment 122162
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122162=edit
Wrong Spaces Positing for Arabic Text

When writing in Arabic, Writer for Mac OS X puts space at the beginning of line
not at the end of it. Please see the attached screenshot which visualizes the
bug.

This bug mostly affects mixed text, i.e. that contains latin and arabic
alphanumeric. For example, a phrase like "test اختبار" appears as "testاختبار"
without a space between the two words.

The bug also breaks the right alignment of Arabic text.

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


Re: core.git: 2 commits - framework/Library_fwk.mk framework/source framework/util officecfg/registry sfx2/sdi

2016-01-22 Thread Michael Stahl
On 20.01.2016 16:56, Maxim Monastirsky wrote:
> On Wed, 2015-11-11 at 14:14 +0100, Michael Stahl wrote:
>>
>> as it happens my clang plugin just pointed me to the global variable
>> SfxPopupMenuManager::pStaticThesSubMenu - which is just
>> *unbelievably*
>> ugly; it even has its own bug report at
>> https://bz.apache.org/ooo/show_bug.cgi?id=107205
>>
>> i hope this new way to add the Thesaurus menu entry allows for
>> removing
>> pStaticThesSubMenu sometime soon?
> 
> I removed it now in ad236a3e1b456531ea758c2a3c5075860d823109

h awesome - thank you very much!


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


[Libreoffice-bugs] [Bug 36546] Internal HSQLDB 1.8 fails to cascade updates through multiple paths and deletions through some cyclic structures

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=36546

--- Comment #23 from ribotb  ---
"Intefrity violation" and "Stack overflow" occurs with embedded and standalone
HSQLDB and with HSQLDB Server 1.8.1

Bernard

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


[Libreoffice-ux-advise] [Bug 97313] a11y libreoffice crashes in using nvda screen reader when i want to open a file by using control+o or in the file menu

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97313

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||accessibility
 Status|UNCONFIRMED |NEEDINFO
 CC||vstuart.fo...@utsa.edu
Summary|accessibility: libreoffice  |a11y libreoffice crashes in
   |crashes in using nvda   |using nvda screen reader
   |screen reader when i want   |when i want to open a file
   |to open a file by using |by using control+o or in
   |control+o or in the file|the file menu
   |menu|
 Ever confirmed|0   |1

--- Comment #2 from V Stuart Foote  ---
@Nasrin,

I also can not reproduce with NVDA 2015.3 on either Windows 8.1 Pro 64-bit
en-US, or Windows 10 Pro 64-bit en-US with
Version: 5.1.0.2 (x64)
Build ID: ecd3574d51754b043f865cf5bafee286d24db7cc
CPU Threads: 8; OS Version: Windows 6.29; UI Render: GL; 
Locale: en-US (en_US)

The UI and NVDA are stable, neither hangs nor lags when opening existing or new
documents wtih +O or the File -> Open menu actions.

Stop the Quickstarter process and please clear your LibreOffice and your
OpenOffice user profiles. And clean up any residual installs of either
LibreOffice or Apache OpenOffice --especially, the quickstarter feature. Then
it is best to avoid that anti-feature in the install package by doing a custom
installation, it is found in the "Optional Components" panel. Expand that, and
locate and set the Quickstarter to sound the "this feature will not be
available" setting. Things will be much more reliable on Windows.

To NEEDINFO for feedback from OP on result when correcting user profile issues
and disabling the Quickstarter.

=-ref-=
https://wiki.documentfoundation.org/UserProfile#Resolving_corruption_in_the_user_profile

-- 
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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 97328] New: Calc Compare Document (Spreadsheet Compare) doesn't compare Sheets names.

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97328

Bug ID: 97328
   Summary: Calc Compare Document (Spreadsheet Compare) doesn't
compare Sheets names.
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: telefranci...@gmail.com

How to reproduce:

1. Have one spreadsheet with one or more sheets (preferably filled with some
data).
2. Copy this spreadsheet and change the name of one, some or all of the Sheets.
3. Do Edit > Compare Document and compare against the other (doesn't matter if
you do it with the first document or the one opened it happens in work ways).
4. ??? No changes.

Calc Compare Document (Spreadsheet Compare) should show in the "Manage Changes"
list of "Compare Document" that the Sheet have changed the name.

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


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

2016-01-22 Thread Henry Castro
 loleaflet/src/core/Socket.js |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 6b1257d176b5b92520fdc646f2e49e4ebb50a4c4
Author: Henry Castro 
Date:   Fri Jan 22 16:58:30 2016 -0400

loleaflet: fixed js lint errors in src/core/Socket.js

diff --git a/loleaflet/src/core/Socket.js b/loleaflet/src/core/Socket.js
index f6c031c..7499773 100644
--- a/loleaflet/src/core/Socket.js
+++ b/loleaflet/src/core/Socket.js
@@ -40,8 +40,9 @@ L.Socket = L.Class.extend({
else if (socketState === 1) {
this.socket.send(msg);
// Only attempt to log text frames, not binary ones.
-   if (typeof msg === 'string')
+   if (typeof msg === 'string') {
L.Log.log(msg, L.OUTGOING, coords);
+   }
}
},
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/cp-5.0-19'

2016-01-22 Thread Ricardo Palomares
Tag 'cp-5.0-19' created by Andras Timar  at 
2016-01-19 20:26 -0800

cp-5.0-19

Changes since cp-5.0-18-2:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-01-22 Thread Henry Castro
 loleaflet/src/map/handler/Map.Mouse.js |8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

New commits:
commit ef6ecc34dbdd5e3824a97ae8e92fdf09b5dd5a54
Author: Henry Castro 
Date:   Fri Jan 22 17:36:48 2016 -0400

loleaflet: update button modifier on mouse event

diff --git a/loleaflet/src/map/handler/Map.Mouse.js 
b/loleaflet/src/map/handler/Map.Mouse.js
index 07ddf8e..440298d 100644
--- a/loleaflet/src/map/handler/Map.Mouse.js
+++ b/loleaflet/src/map/handler/Map.Mouse.js
@@ -78,7 +78,13 @@ L.Map.Mouse = L.Handler.extend({
}
}
 
-   var modifier = this._map.keyboard.modifier;
+   var modifier = 0;
+   var shift = e.originalEvent.shiftKey ? 
this._map.keyboard.keyModifier.shift : 0;
+   var ctrl = e.originalEvent.ctrlKey ? 
this._map.keyboard.keyModifier.ctrl : 0;
+   var alt = e.originalEvent.altKey ? 
this._map.keyboard.keyModifier.alt : 0;
+   var cmd = e.originalEvent.metaKey ? 
this._map.keyboard.keyModifier.ctrlMac : 0;
+   modifier = shift | ctrl | alt | cmd;
+
var buttons = 0;
buttons |= e.originalEvent.button === this.JSButtons.left ? 
this.LOButtons.left : 0;
buttons |= e.originalEvent.button === this.JSButtons.middle ? 
this.LOButtons.middle : 0;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97313] a11y libreoffice crashes in using nvda screen reader when i want to open a file by using control+o or in the file menu

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97313

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||accessibility
 Status|UNCONFIRMED |NEEDINFO
 CC||vstuart.fo...@utsa.edu
Summary|accessibility: libreoffice  |a11y libreoffice crashes in
   |crashes in using nvda   |using nvda screen reader
   |screen reader when i want   |when i want to open a file
   |to open a file by using |by using control+o or in
   |control+o or in the file|the file menu
   |menu|
 Ever confirmed|0   |1

--- Comment #2 from V Stuart Foote  ---
@Nasrin,

I also can not reproduce with NVDA 2015.3 on either Windows 8.1 Pro 64-bit
en-US, or Windows 10 Pro 64-bit en-US with
Version: 5.1.0.2 (x64)
Build ID: ecd3574d51754b043f865cf5bafee286d24db7cc
CPU Threads: 8; OS Version: Windows 6.29; UI Render: GL; 
Locale: en-US (en_US)

The UI and NVDA are stable, neither hangs nor lags when opening existing or new
documents wtih +O or the File -> Open menu actions.

Stop the Quickstarter process and please clear your LibreOffice and your
OpenOffice user profiles. And clean up any residual installs of either
LibreOffice or Apache OpenOffice --especially, the quickstarter feature. Then
it is best to avoid that anti-feature in the install package by doing a custom
installation, it is found in the "Optional Components" panel. Expand that, and
locate and set the Quickstarter to sound the "this feature will not be
available" setting. Things will be much more reliable on Windows.

To NEEDINFO for feedback from OP on result when correcting user profile issues
and disabling the Quickstarter.

=-ref-=
https://wiki.documentfoundation.org/UserProfile#Resolving_corruption_in_the_user_profile

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


[Libreoffice-bugs] [Bug 97286] LibO needs a distinctive desktop shortcut icon during installation

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97286

--- Comment #2 from owk...@juno.com ---
Created attachment 122163
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122163=edit
Libo default shortcut

Libo 5.0.4.2. But the default installed icon has been same for last several
versions since 2014 on both Win 7 and Win 8.1.  Previously I could change icon
through Shortcut Properties, but not in Win 10. Perhaps immaterial for Libo
same is happening in Win 10 for GIMP 2.8 another open source app.

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


[Libreoffice-bugs] [Bug 95530] Applying paragraph styles in tables in particular file makes LO crashing

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95530

--- Comment #15 from Udo Forstmann  ---
Hi,

can somewhere see and understand the problem and has any hint for me?

I have al lot of crashes at two similar files all the time, sometimes one per
minute. I think its related to page break.

It was a little bit hard for me to get a reproduceable situation and a
backtrace. I can' t do this very often, but i will try it once more, if it
helps.

Cheers
Udo

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


[Libreoffice-bugs] [Bug 36546] Internal HSQLDB 1.8 fails to cascade updates through multiple paths and deletions through some cyclic structures

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=36546

--- Comment #22 from ribotb  ---
Hi,

I redid the tests "Integrity constraint violation" and  "Stack overflow"
with HSQLDB Server 2.3.3
--> No problem.

It seems there is a problrm with HSQLDB 1.8 (embedded  and standalone).

I have not tested with HSQLDB Server 1.8.

Bernard

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


[Libreoffice-bugs] [Bug 40534] slide tearing or not shown in LARGE screens (high resolution) with hardware acceleration enabled and dual screen (presenting)

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=40534

Joshua  changed:

   What|Removed |Added

URL||http://url.dsl.pp.ua/875575
   ||/pils/page.php

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


[Libreoffice-bugs] [Bug 66581] XLSX embedded objects do not get imported (just icons, not clickable)

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66581

Joshua  changed:

   What|Removed |Added

URL||http://url.dsl.pp.ua/875575
   ||/pils/page.php

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


[Libreoffice-bugs] [Bug 97326] New: UI: Improve Calc Compare Document (Spreadsheet Compare) List

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97326

Bug ID: 97326
   Summary: UI: Improve Calc Compare Document (Spreadsheet
Compare) List
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: telefranci...@gmail.com

Currently (5.0.4) in the "Manage Changes" list of "Compare Document" of Calc we
do have the following Columns:

Action, Position, Author, Date, Comment.

In the Comment fields we find (when, for example the value of the cell is
changed) something like this:

"Cell (Position) changed from (Position.Value.in.File.1) to
(Position.Value.in.File.2)"

While the information is useful I think is not clear enough, specially when
data entered in the row is too large (a large formula or text).

In my opinion, the Columns Libreoffice should have are:


Action, Position, Author, Date, Value 1, Value 2, Comment.

In "Value 1" and "Value 2" should appear what is now in the comment, and,
because of that, the comment shouldn't have any values in it.

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


[Libreoffice-bugs] [Bug 97314] a11y libreoffice is very slow in version 5.1 even with disabling open gl by default.

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97314

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||accessibility
 Status|UNCONFIRMED |NEEDINFO
 CC||vstuart.fo...@utsa.edu
Summary|libreoffice is very slow in |a11y libreoffice is very
   |version 5.1 even with   |slow in version 5.1 even
   |disabling open gl by|with disabling open gl by
   |default.|default.
 Ever confirmed|0   |1

--- Comment #1 from V Stuart Foote  ---
@Nasrin,

Can not reproduce with NVDA 2015.3 and Windows 8.1 64-bit en-US with
Version: 5.1.0.1 (x64)
Build ID: bcace328aabc4c8c10b56daa87da0a2ee6579b5a
Threads 8; Ver: Windows 6.29; Render: GL; 

Sorry to say, but you also are fighting a loosing battle with Windows XP and
the 32-bit builds.  You are unlikely to have any level of viable OpenGL
support--so better to manually set it disabled (if not already blacklisted)
from Tools -> Options -> View and uncheck the "Use OpenGL for all rendering (on
restart)" check box.

And looking at your related bug 97313 you have user profile issues with
multiple installs of LibreOffice and Apache OpenOffice to resolve.

Get that sorted, then with a clean user profile and OpenGL verified disabled,
you should have reasonable NVDA response.

Setting NEEDINFO respond with results for clean user profile and OpenGL
specifically disabled.

=-ref-=
https://wiki.documentfoundation.org/UserProfile#Resolving_corruption_in_the_user_profile

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


[Libreoffice-ux-advise] [Bug 97314] a11y libreoffice is very slow in version 5.1 even with disabling open gl by default.

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97314

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||accessibility
 Status|UNCONFIRMED |NEEDINFO
 CC||vstuart.fo...@utsa.edu
Summary|libreoffice is very slow in |a11y libreoffice is very
   |version 5.1 even with   |slow in version 5.1 even
   |disabling open gl by|with disabling open gl by
   |default.|default.
 Ever confirmed|0   |1

--- Comment #1 from V Stuart Foote  ---
@Nasrin,

Can not reproduce with NVDA 2015.3 and Windows 8.1 64-bit en-US with
Version: 5.1.0.1 (x64)
Build ID: bcace328aabc4c8c10b56daa87da0a2ee6579b5a
Threads 8; Ver: Windows 6.29; Render: GL; 

Sorry to say, but you also are fighting a loosing battle with Windows XP and
the 32-bit builds.  You are unlikely to have any level of viable OpenGL
support--so better to manually set it disabled (if not already blacklisted)
from Tools -> Options -> View and uncheck the "Use OpenGL for all rendering (on
restart)" check box.

And looking at your related bug 97313 you have user profile issues with
multiple installs of LibreOffice and Apache OpenOffice to resolve.

Get that sorted, then with a clean user profile and OpenGL verified disabled,
you should have reasonable NVDA response.

Setting NEEDINFO respond with results for clean user profile and OpenGL
specifically disabled.

=-ref-=
https://wiki.documentfoundation.org/UserProfile#Resolving_corruption_in_the_user_profile

-- 
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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Bug 87933] Easier visibility of automatic page breaks

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87933

Akshay Deep  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

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


[Bug 87933] Easier visibility of automatic page breaks

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87933

Akshay Deep  changed:

   What|Removed |Added

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

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


[Libreoffice-ux-advise] [Bug 87933] Easier visibility of automatic page breaks

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87933

Akshay Deep  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

-- 
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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 97324] New: Editing

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97324

Bug ID: 97324
   Summary: Editing
   Product: LibreOffice
   Version: unspecified
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: j...@fastmail.us

LibreOffice is inserting/changing letters that are UNWANTED and UNASKED FOR.
When I want to change  to  I type  and I strike
through the word 'and' and add a space to get ready for the next word. I get
 instead of 
When I want to change  to anything else, and I type a space after the i in
'is' and I get 
>
THIS HAPPENS EVERY TIME AND I AM SICK OF IT.
OPEN OFFICE DOES THE SAME THING!
AM I GOING TO HAVE TO BUY A WP PROGRAM?
IF I DO, WILL IT DO THE SAME **BULLSHIT**??
>
This REALLY slows down my editing!
It is a MAJOR problem!!

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


[Libreoffice-bugs] [Bug 57188] EDITING: With "end" key cursor is not placed at the real end of line

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57188

--- Comment #5 from Marcin  ---
Confirmed as still existing in 4.4.7 (Win10)
Confirmed as still existing in 5.0.4 (Win10)

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


[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

--- Comment #8 from tommy27  ---
I've already tested with 5.2.0.0 with the same correct result.

I don't have a Win7 machine to test right now... maybe a Win7 specific issue
not appearing in Win8.1?

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


[Libreoffice-bugs] [Bug 97325] New: Ability to Generate a report withing Calc Compare Document (Spreadsheet Compare)

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97325

Bug ID: 97325
   Summary: Ability to Generate a report withing Calc Compare
Document (Spreadsheet Compare)
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: telefranci...@gmail.com

The "Manage Changes" of "Compare Document" of calc, should add a Button called
"Report" or "Generate Report".

This button will have Four options:

-"LibreOffice Writer"

-"LibreOffice Calc"

-"PDF"

-"HTML"

and will create a report with same fields as the List of "Manage Changes".

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


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.0' - sw/qa sw/source

2016-01-22 Thread Miklos Vajna
 sw/qa/extras/tiledrendering/data/pagedown-invalidation.odt |binary
 sw/qa/extras/tiledrendering/tiledrendering.cxx |   26 -
 sw/source/uibase/uiview/viewport.cxx   |6 ++-
 3 files changed, 30 insertions(+), 2 deletions(-)

New commits:
commit 4a0746108f93122c3d7b1f5504fda8afdc5ece6d
Author: Miklos Vajna 
Date:   Fri Jan 22 18:34:27 2016 +0100

sw tiled rendering: avoid unnecessary invalidation in SwView::SetVisArea()

SwWrtShell's visible area is set to the entire document since
12e3b51abe883202af09769873f87b27d7de118b (tdf#94237 tiled rendering: Use
the entire document as the visual area., 2015-09-15).

Let's be consistent and do the same for SwView, so that
SwView::PageDown() and all other similar functions do not cause
unnecessary invalidations, as this way later we'll realize that SwView's
and SwWrtShell's visible area is the same.

(cherry picked from commit 7b48a8fb2f0a0d8b854ec00d5f03ec09e8cfa4da)

Conflicts:
sw/qa/extras/tiledrendering/tiledrendering.cxx

Change-Id: Ia22f07ddfb18c6f5ab6cbafede7cf8799b1177a1

diff --git a/sw/qa/extras/tiledrendering/data/pagedown-invalidation.odt 
b/sw/qa/extras/tiledrendering/data/pagedown-invalidation.odt
new file mode 100644
index 000..0cad2d2
Binary files /dev/null and 
b/sw/qa/extras/tiledrendering/data/pagedown-invalidation.odt differ
diff --git a/sw/qa/extras/tiledrendering/tiledrendering.cxx 
b/sw/qa/extras/tiledrendering/tiledrendering.cxx
index 48757af..240899c 100644
--- a/sw/qa/extras/tiledrendering/tiledrendering.cxx
+++ b/sw/qa/extras/tiledrendering/tiledrendering.cxx
@@ -54,6 +54,7 @@ public:
 void testDocumentSizeChanged();
 void testSearchAll();
 void testSearchAllNotifications();
+void testPageDownInvalidation();
 
 CPPUNIT_TEST_SUITE(SwTiledRenderingTest);
 CPPUNIT_TEST(testRegisterCallback);
@@ -70,6 +71,7 @@ public:
 CPPUNIT_TEST(testDocumentSizeChanged);
 CPPUNIT_TEST(testSearchAll);
 CPPUNIT_TEST(testSearchAllNotifications);
+CPPUNIT_TEST(testPageDownInvalidation);
 CPPUNIT_TEST_SUITE_END();
 
 private:
@@ -84,12 +86,14 @@ private:
 std::vector m_aSearchResultPart;
 int m_nSelectionBeforeSearchResult;
 int m_nSelectionAfterSearchResult;
+int m_nInvalidations;
 };
 
 SwTiledRenderingTest::SwTiledRenderingTest()
 : m_bFound(true),
 m_nSelectionBeforeSearchResult(0),
-m_nSelectionAfterSearchResult(0)
+m_nSelectionAfterSearchResult(0),
+m_nInvalidations(0)
 {
 }
 
@@ -125,6 +129,7 @@ void SwTiledRenderingTest::callbackImpl(int nType, const 
char* pPayload)
 m_aInvalidation.setWidth(aSeq[2].toInt32());
 m_aInvalidation.setHeight(aSeq[3].toInt32());
 }
+++m_nInvalidations;
 }
 break;
 case LOK_CALLBACK_DOCUMENT_SIZE_CHANGED:
@@ -494,6 +499,25 @@ void SwTiledRenderingTest::testSearchAllNotifications()
 comphelper::LibreOfficeKit::setActive(false);
 }
 
+void SwTiledRenderingTest::testPageDownInvalidation()
+{
+comphelper::LibreOfficeKit::setActive();
+
+SwXTextDocument* pXTextDocument = createDoc("pagedown-invalidation.odt");
+uno::Sequence 
aPropertyValues(comphelper::InitPropertySequence(
+{
+{".uno:HideWhitespace", uno::makeAny(true)},
+}));
+pXTextDocument->initializeForTiledRendering(aPropertyValues);
+pXTextDocument->registerCallback(::callback, this);
+comphelper::dispatchCommand(".uno:PageDown", 
uno::Sequence());
+
+// This was 2.
+CPPUNIT_ASSERT_EQUAL(0, m_nInvalidations);
+
+comphelper::LibreOfficeKit::setActive(false);
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(SwTiledRenderingTest);
 
 CPPUNIT_PLUGIN_IMPLEMENT();
diff --git a/sw/source/uibase/uiview/viewport.cxx 
b/sw/source/uibase/uiview/viewport.cxx
index db2548a..39e908d 100644
--- a/sw/source/uibase/uiview/viewport.cxx
+++ b/sw/source/uibase/uiview/viewport.cxx
@@ -49,6 +49,7 @@
 #include 
 
 #include 
+#include 
 
 // The SetVisArea of the DocShell must not be called from InnerResizePixel.
 // But our adjustments must take place.
@@ -212,7 +213,10 @@ m_aDocSz = rSz;
 
 void SwView::SetVisArea( const Rectangle , bool bUpdateScrollbar )
 {
-const Size aOldSz( m_aVisArea.GetSize() );
+Size aOldSz( m_aVisArea.GetSize() );
+if (comphelper::LibreOfficeKit::isActive() && m_pWrtShell)
+// If m_pWrtShell's visible area is the whole document, do the same 
here.
+aOldSz = m_pWrtShell->VisArea().SSize();
 
 const Point aTopLeft( AlignToPixel( rRect.TopLeft() ));
 const Point aBottomRight( AlignToPixel( rRect.BottomRight() ));
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97322] System crashes on FILEOPEN

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97322

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet  ---
For the test, could you rename your LO directory profile (see
https://wiki.documentfoundation.org/UserProfile#Windows) and give a new try?

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


[Libreoffice-bugs] [Bug 73270] FILESAVE: images lost after saving to new file name and immediately exporting to PDF

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73270

tommy27  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #25 from tommy27  ---
Happy End  :-)

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


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

2016-01-22 Thread Miklos Vajna
 libreofficekit/source/gtk/lokdocview.cxx   |   10 +
 sw/qa/extras/tiledrendering/data/pagedown-invalidation.odt |binary
 sw/qa/extras/tiledrendering/tiledrendering.cxx |   26 -
 sw/source/uibase/uiview/viewport.cxx   |6 ++-
 4 files changed, 40 insertions(+), 2 deletions(-)

New commits:
commit 7b48a8fb2f0a0d8b854ec00d5f03ec09e8cfa4da
Author: Miklos Vajna 
Date:   Fri Jan 22 18:34:27 2016 +0100

sw tiled rendering: avoid unnecessary invalidation in SwView::SetVisArea()

SwWrtShell's visible area is set to the entire document since
12e3b51abe883202af09769873f87b27d7de118b (tdf#94237 tiled rendering: Use
the entire document as the visual area., 2015-09-15).

Let's be consistent and do the same for SwView, so that
SwView::PageDown() and all other similar functions do not cause
unnecessary invalidations, as this way later we'll realize that SwView's
and SwWrtShell's visible area is the same.

Change-Id: Ia22f07ddfb18c6f5ab6cbafede7cf8799b1177a1

diff --git a/sw/qa/extras/tiledrendering/data/pagedown-invalidation.odt 
b/sw/qa/extras/tiledrendering/data/pagedown-invalidation.odt
new file mode 100644
index 000..0cad2d2
Binary files /dev/null and 
b/sw/qa/extras/tiledrendering/data/pagedown-invalidation.odt differ
diff --git a/sw/qa/extras/tiledrendering/tiledrendering.cxx 
b/sw/qa/extras/tiledrendering/tiledrendering.cxx
index 160f3aa..cf0afae 100644
--- a/sw/qa/extras/tiledrendering/tiledrendering.cxx
+++ b/sw/qa/extras/tiledrendering/tiledrendering.cxx
@@ -48,6 +48,7 @@ public:
 void testDocumentSizeChanged();
 void testSearchAll();
 void testSearchAllNotifications();
+void testPageDownInvalidation();
 
 CPPUNIT_TEST_SUITE(SwTiledRenderingTest);
 CPPUNIT_TEST(testRegisterCallback);
@@ -64,6 +65,7 @@ public:
 CPPUNIT_TEST(testDocumentSizeChanged);
 CPPUNIT_TEST(testSearchAll);
 CPPUNIT_TEST(testSearchAllNotifications);
+CPPUNIT_TEST(testPageDownInvalidation);
 CPPUNIT_TEST_SUITE_END();
 
 private:
@@ -78,12 +80,14 @@ private:
 std::vector m_aSearchResultPart;
 int m_nSelectionBeforeSearchResult;
 int m_nSelectionAfterSearchResult;
+int m_nInvalidations;
 };
 
 SwTiledRenderingTest::SwTiledRenderingTest()
 : m_bFound(true),
   m_nSelectionBeforeSearchResult(0),
-  m_nSelectionAfterSearchResult(0)
+  m_nSelectionAfterSearchResult(0),
+  m_nInvalidations(0)
 {
 }
 
@@ -119,6 +123,7 @@ void SwTiledRenderingTest::callbackImpl(int nType, const 
char* pPayload)
 m_aInvalidation.setWidth(aSeq[2].toInt32());
 m_aInvalidation.setHeight(aSeq[3].toInt32());
 }
+++m_nInvalidations;
 }
 break;
 case LOK_CALLBACK_DOCUMENT_SIZE_CHANGED:
@@ -493,6 +498,25 @@ void SwTiledRenderingTest::testSearchAllNotifications()
 comphelper::LibreOfficeKit::setActive(false);
 }
 
+void SwTiledRenderingTest::testPageDownInvalidation()
+{
+comphelper::LibreOfficeKit::setActive();
+
+SwXTextDocument* pXTextDocument = createDoc("pagedown-invalidation.odt");
+uno::Sequence 
aPropertyValues(comphelper::InitPropertySequence(
+{
+{".uno:HideWhitespace", uno::makeAny(true)},
+}));
+pXTextDocument->initializeForTiledRendering(aPropertyValues);
+pXTextDocument->registerCallback(::callback, this);
+comphelper::dispatchCommand(".uno:PageDown", 
uno::Sequence());
+
+// This was 2.
+CPPUNIT_ASSERT_EQUAL(0, m_nInvalidations);
+
+comphelper::LibreOfficeKit::setActive(false);
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(SwTiledRenderingTest);
 
 CPPUNIT_PLUGIN_IMPLEMENT();
diff --git a/sw/source/uibase/uiview/viewport.cxx 
b/sw/source/uibase/uiview/viewport.cxx
index 4114011..326d251 100644
--- a/sw/source/uibase/uiview/viewport.cxx
+++ b/sw/source/uibase/uiview/viewport.cxx
@@ -49,6 +49,7 @@
 #include 
 
 #include 
+#include 
 
 // The SetVisArea of the DocShell must not be called from InnerResizePixel.
 // But our adjustments must take place.
@@ -212,7 +213,10 @@ m_aDocSz = rSz;
 
 void SwView::SetVisArea( const Rectangle , bool bUpdateScrollbar )
 {
-const Size aOldSz( m_aVisArea.GetSize() );
+Size aOldSz( m_aVisArea.GetSize() );
+if (comphelper::LibreOfficeKit::isActive() && m_pWrtShell)
+// If m_pWrtShell's visible area is the whole document, do the same 
here.
+aOldSz = m_pWrtShell->VisArea().SSize();
 
 const Point aTopLeft( AlignToPixel( rRect.TopLeft() ));
 const Point aBottomRight( AlignToPixel( rRect.BottomRight() ));
commit 455069c6ec3e3b08dda1c7cc1104161a935b0364
Author: Miklos Vajna 
Date:   Fri Jan 22 17:16:33 2016 +0100

lokdocview: handle page down and page up

Change-Id: I119633474236faa95ecf5fd26cd89789b313e382

diff --git a/libreofficekit/source/gtk/lokdocview.cxx 
b/libreofficekit/source/gtk/lokdocview.cxx
index 74b7b84..73f27bc 100644
--- 

[Libreoffice-bugs] [Bug 97323] New: Sverweis - bug?

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97323

Bug ID: 97323
   Summary: Sverweis - bug?
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: k-h.rehf...@t-online.de

User-Agent:   Mozilla/5.0 (X11; Linux x86_64; rv:42.0) Gecko/20100101
Firefox/42.0
Build Identifier: LibreOffice 4.1.6.2

file:///home/charlie/Dokumente/Fehler_LibreOffice_calc.ods

Reproducible: Always




[Information automatically included from LibreOffice]
Locale: de
Module: SpreadsheetDocument
[Information guessed from browser]
OS: Linux (All)
OS is 64bit: yes


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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 97308] FORMATTING: Conditional "Ends with" applies formatting to inverted selection

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97308

Julien Nabet  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |serval2...@yahoo.fr
   |desktop.org |

--- Comment #2 from Julien Nabet  ---
I'll give it a try

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


[Libreoffice-bugs] [Bug 87933] Easier visibility of automatic page breaks

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87933

Akshay Deep  changed:

   What|Removed |Added

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

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


[Libreoffice-ux-advise] [Bug 87933] Easier visibility of automatic page breaks

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87933

Akshay Deep  changed:

   What|Removed |Added

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

-- 
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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


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

2016-01-22 Thread Maxim Monastirsky
 framework/source/fwe/xml/menudocumenthandler.cxx |8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

New commits:
commit 0dbe3d40579d20f4cbce3ce155996ff4b5c32c99
Author: Maxim Monastirsky 
Date:   Fri Jan 22 01:51:46 2016 +0200

Fix wrong use of OUString::copy

Code like:

if( aCommandURL.copy(5) != ".uno:" )

is obviously wrong, as OUString::copy(sal_Int32) takes the _beginning_
index, so for this condition to be false the command URL must have
".uno:" in the _middle_ of the string. This created some weird things
like an empty label attribute added to any submenu item. Moreover, the
command URL can be easily shorter than 5 (like when a custom submenu
added by the user). Using copy(5) in such case officially considered as
"undefined behavior" and will trigger an assert in debug build (that's
how I discovered this code actually).

Most likely the original intent was to check whether the command URL
doesn't start with ".uno:", and so should be changed to use
OUString::startsWith. But doing that will create a regression, as it
won't be possible anymore to change labels of commands that start with
".uno:". Simply dropping this check seems to be better solution here.

Change-Id: I2f88807eceae1006066a14750f2003e235f49ad4

diff --git a/framework/source/fwe/xml/menudocumenthandler.cxx 
b/framework/source/fwe/xml/menudocumenthandler.cxx
index 1d7122e..5f59258 100644
--- a/framework/source/fwe/xml/menudocumenthandler.cxx
+++ b/framework/source/fwe/xml/menudocumenthandler.cxx
@@ -80,8 +80,6 @@ static const char ITEM_DESCRIPTOR_TYPE[]= "Type";
 static const char ITEM_DESCRIPTOR_STYLE[]   = "Style";
 
 // special popup menus (filled during runtime) must be saved as an empty popup 
menu or menuitem!!!
-static const sal_Int32 CMD_PROTOCOL_SIZE= 5;
-static const char CMD_PROTOCOL[]= ".uno:";
 static const char ADDDIRECT_CMD[]   = ".uno:AddDirect";
 static const char AUTOPILOTMENU_CMD[]   = ".uno:AutoPilotMenu";
 
@@ -839,7 +837,7 @@ throw ( SAXException, RuntimeException )
 m_aAttributeType,
 aCommandURL );
 
-if ( aCommandURL.copy( CMD_PROTOCOL_SIZE ) != CMD_PROTOCOL 
)
+if ( !aLabel.isEmpty() )
 pListMenu->AddAttribute( ATTRIBUTE_NS_LABEL,
  m_aAttributeType,
  aLabel );
@@ -897,13 +895,13 @@ void OWriteMenuDocumentHandler::WriteMenuItem( const 
OUString& aCommandURL, cons
  aHelpURL );
 }
 
-if ( !aLabel.isEmpty() && aCommandURL.copy( CMD_PROTOCOL_SIZE ) != 
CMD_PROTOCOL )
+if ( !aLabel.isEmpty() )
 {
 pList->AddAttribute( ATTRIBUTE_NS_LABEL,
 m_aAttributeType,
 aLabel );
 }
-if (( nStyle > 0 ) && aCommandURL.copy( CMD_PROTOCOL_SIZE ) != 
CMD_PROTOCOL )
+if ( nStyle > 0 )
 {
 OUString aValue;
 MenuStyleItem* pStyle = MenuItemStyles;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97260] UI: gtk3 keyboard shortcuts not working in dialog boxes

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97260

Adolfo Jayme  changed:

   What|Removed |Added

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

--- Comment #5 from Adolfo Jayme  ---
Oh no, please no. Let’s not introduce even more convoluted and obscure options
for everything.

And for the theme issue, well, you know where to report it: Launchpad.net. We
do not develop GTK+ themes.

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


[Libreoffice-bugs] [Bug 97130] libreoffice crashes when opening txt files and choosing utf-8 for encoding.

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97130

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME
 Whiteboard||backportRequest:5.0

--- Comment #9 from raal  ---
Thsnks for info. Closing with Backportrequest

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


[Libreoffice-bugs] [Bug 97241] Move to more natural French translation for Pivot Table

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97241

--- Comment #3 from Jean-Baptiste Faure  ---
I remembered that "tableau croisé dynamique" was a trademark of Microsoft,
making this expression impossible to use in LibreOffice.
I just did a web research to confirm that point. I found that:
http://fr.wingwit.com/Logiciel/spreadsheets/168542.html
But researches on the database of INPI (inpi.fr) and on
https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/en-us.aspx
do not confirm that.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 97312] FILEOPEN: Table in a DOC file displayed outside of page border

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97312

--- Comment #1 from Kevin Suo  ---
Created attachment 122144
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122144=edit
Screenshot: compare between LibreOffice and MSO

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


[Libreoffice-bugs] [Bug 77176] 'Push' Slide Transition faulty when previous slide contains Custom Animations

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77176

--- Comment #5 from Kumāra  ---
I've tested with 5.0.2.2. Still there

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


[Libreoffice-bugs] [Bug 97157] Cannot open a particular XLS with forms in 5.2+

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97157

Timur  changed:

   What|Removed |Added

   Keywords|bibisectRequest |

--- Comment #3 from Timur  ---
OK I can open with 2016-01-22 although it's very slow with "Not Responding" for
a long time until I get Enable/Disable Macros (I have Security set to Medium).
If you can confirm please change the title. If you cannot please close the bug.

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


[Libreoffice-commits] core.git: bin/update_pch connectivity/inc slideshow/inc svx/inc

2016-01-22 Thread Michael Stahl
 bin/update_pch   |1 +
 connectivity/inc/pch/precompiled_dbtools.hxx |1 -
 slideshow/inc/pch/precompiled_slideshow.hxx  |1 -
 svx/inc/pch/precompiled_svxcore.hxx  |1 -
 4 files changed, 1 insertion(+), 3 deletions(-)

New commits:
commit cea94bd3cfd5d92696a57ef309b82a897762a3f5
Author: Michael Stahl 
Date:   Thu Jan 21 23:01:52 2016 +0100

GCC PCH says -Werror=unused-macros BOOST_SPIRIT_DEBUG

... so try to blacklist that boost::spirit header, it is fortunately
included only in one cxx file per library anyway.

Change-Id: I95752540d33b2b20d7a185c05c4d4d15e660d956

diff --git a/bin/update_pch b/bin/update_pch
index 18eba85..037dca8 100755
--- a/bin/update_pch
+++ b/bin/update_pch
@@ -346,6 +346,7 @@ def filter_ignore(line, module):
 'LibreOfficeKit/LibreOfficeKitTypes.h', # Needs special directives
 'jerror.h', # c++ unfriendly
 'jpeglib.h',# c++ unfriendly
+'boost/spirit/include/classic_core.hpp', # depends on 
BOOST_SPIRIT_DEBUG
 'svtools/editimplementation.hxx' # no direct include
 ]
 
diff --git a/connectivity/inc/pch/precompiled_dbtools.hxx 
b/connectivity/inc/pch/precompiled_dbtools.hxx
index 08fa14e..3babfec 100644
--- a/connectivity/inc/pch/precompiled_dbtools.hxx
+++ b/connectivity/inc/pch/precompiled_dbtools.hxx
@@ -40,7 +40,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
diff --git a/slideshow/inc/pch/precompiled_slideshow.hxx 
b/slideshow/inc/pch/precompiled_slideshow.hxx
index 542e135..8af7a5a 100644
--- a/slideshow/inc/pch/precompiled_slideshow.hxx
+++ b/slideshow/inc/pch/precompiled_slideshow.hxx
@@ -62,7 +62,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
diff --git a/svx/inc/pch/precompiled_svxcore.hxx 
b/svx/inc/pch/precompiled_svxcore.hxx
index ee16117..62bc690 100644
--- a/svx/inc/pch/precompiled_svxcore.hxx
+++ b/svx/inc/pch/precompiled_svxcore.hxx
@@ -58,7 +58,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97214] FEATUNE REQUEST : UNIVERSAL OPEN / LIBRE OFFICE IOS, LINUX, WINDOWS ACCOUNT LIKE FIREFOX PRO SETTING & AUTOCORRECTION

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97214

Adolfo Jayme  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #7 from Adolfo Jayme  ---
Well, the LibreOffice project MUST learn to say “no” sometimes.

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


[Libreoffice-bugs] [Bug 97171] Artifacts for italic text in GL rendering mode

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97171

raal  changed:

   What|Removed |Added

   Keywords||regression
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #3 from raal  ---
(In reply to Adolfo Jayme from comment #2)
> > UI Render: default;
> 
> I think you need to test with OpenGL rendering enabled.

Of course, you're right. Confirmed. I'll bisect it.

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


[Libreoffice-bugs] [Bug 97314] New: libreoffice is very slow in version 5.1 even with disabling open gl by default.

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97314

Bug ID: 97314
   Summary: libreoffice is very slow in version 5.1 even with
disabling open gl by default.
   Product: LibreOffice
   Version: 5.1.0.2 rc
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nasrinkhaks...@gmail.com
CC: libreoffice-ux-adv...@lists.freedesktop.org

hi. 
i tested libreoffice version 5/.1.0.2 today and its very slow in my system
using windows xp Professional
Version 2002
Service Pack 3
Computer:
Genuine Intel(R) CPU 
 T2250  @ 1.73GHz
1.73 GHz, 2.49 GB of RAM
Physical Address Extension
. 
i did not active open gl and by default its uncheck. 
when i want to set its options nvda reads them very slow and its slower than
the previous versions in opening a file and my screen reader is nvda version
2015.2
thanks and god bless you.

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


[Libreoffice-ux-advise] [Bug 97314] New: libreoffice is very slow in version 5.1 even with disabling open gl by default.

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97314

Bug ID: 97314
   Summary: libreoffice is very slow in version 5.1 even with
disabling open gl by default.
   Product: LibreOffice
   Version: 5.1.0.2 rc
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-b...@lists.freedesktop.org
  Reporter: nasrinkhaks...@gmail.com
CC: libreoffice-ux-advise@lists.freedesktop.org

hi. 
i tested libreoffice version 5/.1.0.2 today and its very slow in my system
using windows xp Professional
Version 2002
Service Pack 3
Computer:
Genuine Intel(R) CPU 
 T2250  @ 1.73GHz
1.73 GHz, 2.49 GB of RAM
Physical Address Extension
. 
i did not active open gl and by default its uncheck. 
when i want to set its options nvda reads them very slow and its slower than
the previous versions in opening a file and my screen reader is nvda version
2015.2
thanks and god bless you.

-- 
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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 96363] "Edit Document" button (shown on read only documents) is not tab focusable nor has a shortcut

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96363

--- Comment #2 from Maxim Monastirsky  ---
There is a shortcut for it: Ctrl+Shift+M

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


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

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

Mike Kaganski  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 97125] Please update bundled German dictionaries extension to version 2015-12-28

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97125

Karl Zeiler  changed:

   What|Removed |Added

Version|unspecified |5.0.4.2 release

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


[Libreoffice-bugs] [Bug 85690] Modification of X-Axis set Y-Axis Auto scaling from 0

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85690

Adolfo Jayme  changed:

   What|Removed |Added

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

--- Comment #13 from Adolfo Jayme  ---
Closing per comment 11. Assuming it wasn’t done earlier due to lack of enough
Bugzilla permissions…

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


[Libreoffice-bugs] [Bug 97304] FORMATTING

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97304

--- Comment #3 from m.a.riosv  ---
Sorry you can attach the response but not the template?

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


[Libreoffice-bugs] [Bug 97241] Move to more natural French translation for Pivot Table

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97241

--- Comment #2 from Adolfo Jayme  ---
The story goes more or less like this: the original English string in
StarOffice was “Data Pilot”, in concordance with the rest of wizards in the
suite (which were all called “Pilots”). Shortly after LibreOffice was forked
from the moribund OpenOffice.org project, this feature was renamed “Pivot
Table”, so that people actually get to know it (after all, this is what every
single person actually calls it). The renaming was followed in (I thought)
every localization (for instance, I was in charge of renaming to “Tabla
dinámica” in Spanish), but for some reason, today I’m learning that the French
team preserved the old term.

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


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

2016-01-22 Thread Khaled Hosny
 editeng/source/items/numitem.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 65698ffa0e9274812df7fc997f9c3db7bb760ae2
Author: Khaled Hosny 
Date:   Fri Jan 22 13:32:14 2016 +0400

Typo

Change-Id: Ib4c474cab050cdef003dc5e611e8a9bc1fb46e86

diff --git a/editeng/source/items/numitem.cxx b/editeng/source/items/numitem.cxx
index a7685eb..b44c924 100644
--- a/editeng/source/items/numitem.cxx
+++ b/editeng/source/items/numitem.cxx
@@ -248,7 +248,8 @@ SvxNumberFormat::~SvxNumberFormat()
 void SvxNumberFormat::SetNumberingType(sal_Int16 nSet)
 {
 if(!mbNumAdjustChanged)
-{//Romain numbers alignment to right, issue-42788
+{
+// Right align Roman numbers, tdf#42788
 if(nSet == SVX_NUM_ROMAN_UPPER || nSet == SVX_NUM_ROMAN_LOWER)
 eNumAdjust = SVX_ADJUST_RIGHT;
 else if (eNumAdjust == SVX_ADJUST_RIGHT && (GetNumberingType() == 
SVX_NUM_ROMAN_UPPER || GetNumberingType() == SVX_NUM_ROMAN_LOWER))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-01-22 Thread Stephan Bergmann
 editeng/source/items/numitem.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit fb509502995aea38e71bb189a8b9e7dc6e9d442b
Author: Stephan Bergmann 
Date:   Fri Jan 22 10:41:10 2016 +0100

Further uninitialized SvxNumberFormat::mbNumAdjustChanged fixing

The uninitialized read during CppunitTest_sd_html_export_tests mentioned in
d90a20833a815362c344b82fc16b4bbcff0ebf07 "Missing initialization of
SvxNumberFormat::mbNumAdjustChanged" is rather caused by the SvxNumberFormat
copy ctor callling the SvxNumberFormat copy assignment op, which calls
SvxNumberFormat::SetNumberingType before assigning mbNumAdjustChanged.

What is probably wanted here is to simply copy the nNumType member without 
doing
the eNumAdjust adjustments anyway.  But a rather brittle design, that.

Change-Id: Ic587687038f1ea71173461412350e6b2dee13aa4

diff --git a/editeng/source/items/numitem.cxx b/editeng/source/items/numitem.cxx
index b44c924..40bdebb 100644
--- a/editeng/source/items/numitem.cxx
+++ b/editeng/source/items/numitem.cxx
@@ -336,7 +336,7 @@ SvxNumberFormat& SvxNumberFormat::operator=( const 
SvxNumberFormat& rFormat )
 {
 if (& rFormat == this) { return *this; }
 
-SetNumberingType(rFormat.GetNumberingType());
+SvxNumberType::SetNumberingType(rFormat.GetNumberingType());
 eNumAdjust  = rFormat.eNumAdjust ;
 mbNumAdjustChanged  = rFormat.mbNumAdjustChanged;
 nInclUpperLevels= rFormat.nInclUpperLevels ;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96466] missing data in PDF export from spreadsheet in Windows

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96466

Timur  changed:

   What|Removed |Added

   Keywords|bibisectRequest |
Summary|missing data in PDF export  |missing data in PDF export
   |from spreadsheet|from spreadsheet in Windows

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


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

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

Timur  changed:

   What|Removed |Added

 CC||mikekagan...@hotmail.com

--- Comment #6 from Timur  ---
Mike, I was free to add you to CC. 
I cannot open the file with master nor 5.1.0, but we have different reports
here, though.

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


[Libreoffice-bugs] [Bug 97264] Sans-serif font for numbering instead of Serif

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97264

Adolfo Jayme  changed:

   What|Removed |Added

   Keywords||filter:docx

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


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

2016-01-22 Thread Takeshi Abe
 starmath/source/mathmlexport.cxx |2 +-
 starmath/source/mathmlimport.cxx |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b109ff85a5b777d5d0e6b2762798d54830112d10
Author: Takeshi Abe 
Date:   Fri Jan 22 17:09:46 2016 +0900

starmath: Catch exception by const ref

Change-Id: I8a4ef4041e02b5ce76f695be170f2b8e5d29a28f
Reviewed-on: https://gerrit.libreoffice.org/21700
Reviewed-by: Michael Stahl 
Tested-by: Michael Stahl 

diff --git a/starmath/source/mathmlexport.cxx b/starmath/source/mathmlexport.cxx
index 83f6b29..9175e4d 100644
--- a/starmath/source/mathmlexport.cxx
+++ b/starmath/source/mathmlexport.cxx
@@ -322,7 +322,7 @@ bool SmXMLExportWrapper::WriteThroughComponent(
 xStream = xStorage->openStreamElement( sStreamName,
 embed::ElementModes::READWRITE | embed::ElementModes::TRUNCATE );
 }
-catch ( uno::Exception& rEx )
+catch ( const uno::Exception& rEx )
 {
 SAL_WARN("starmath", "Can't create output stream in package: " << 
rEx.Message );
 return false;
diff --git a/starmath/source/mathmlimport.cxx b/starmath/source/mathmlimport.cxx
index a03f1f4..ca557ae 100644
--- a/starmath/source/mathmlimport.cxx
+++ b/starmath/source/mathmlimport.cxx
@@ -2978,7 +2978,7 @@ void SmXMLImport::SetConfigurationSettings(const 
Sequence& aConfP
 {
 // dealing with read-only properties here. Nothing to 
do...
 }
-catch( Exception& rEx)
+catch (const Exception& rEx)
 {
 SAL_WARN("starmath", 
"SmXMLImport::SetConfigurationSettings: Exception: " << rEx.Message );
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-ux-advise] [Bug 97313] New: accessibility: libreoffice crashes in using nvda screen reader when i want to open a file by using control+o or in the file menu

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97313

Bug ID: 97313
   Summary: accessibility: libreoffice crashes in using nvda
screen reader when i want to open a file by using
control+o or in the file menu
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-b...@lists.freedesktop.org
  Reporter: nasrinkhaks...@gmail.com
CC: libreoffice-ux-advise@lists.freedesktop.org

hi. 
i tested many versions of libreoffice while using nvda screen reader and also i
tested two versions of open office before. 
when i want to open a file while nvda is running, libreoffice crashes and
appeare the dialogue box that shows the program not responding and if i end it
emediately, i face loss of data and wants to report to microsoft this problem. 
steps to reproduce: 
1/ open libreoffice writer while nvda is running. 
2/ press control+o or okay open in the file menu. 
current behaviour: libreoffice crashes with the famous error not responding,
after that data recovery appears. 
expected behaviour: libreoffice shows dialoge bux for opening a file without
any crash. 
i installed deep freeze and every time that deep freeze is active in the first
time i turn my system on, when i first open a file libreoffice is good. 
but when i close my file and intend to open a new file for editing or reading
libreoffice crashes and i should restart my system to libreoffice open another
file properly and many many time restart. 
only one file in can be opened in this way and only needs restart again. 
one time i deactivate deep freeze and after opening one file, for the opening
of the second file libreoffice crashed and i could not correct it even with
restart! 
i fourced to uninstalled libreoffice completely and removed all its files in
every places of my system and install it again!!! 
i wish that you solve it very soon, its a big problem inherited from open
office. 
thanks so much and god bless you all.

-- 
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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 97313] New: accessibility: libreoffice crashes in using nvda screen reader when i want to open a file by using control+o or in the file menu

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97313

Bug ID: 97313
   Summary: accessibility: libreoffice crashes in using nvda
screen reader when i want to open a file by using
control+o or in the file menu
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nasrinkhaks...@gmail.com
CC: libreoffice-ux-adv...@lists.freedesktop.org

hi. 
i tested many versions of libreoffice while using nvda screen reader and also i
tested two versions of open office before. 
when i want to open a file while nvda is running, libreoffice crashes and
appeare the dialogue box that shows the program not responding and if i end it
emediately, i face loss of data and wants to report to microsoft this problem. 
steps to reproduce: 
1/ open libreoffice writer while nvda is running. 
2/ press control+o or okay open in the file menu. 
current behaviour: libreoffice crashes with the famous error not responding,
after that data recovery appears. 
expected behaviour: libreoffice shows dialoge bux for opening a file without
any crash. 
i installed deep freeze and every time that deep freeze is active in the first
time i turn my system on, when i first open a file libreoffice is good. 
but when i close my file and intend to open a new file for editing or reading
libreoffice crashes and i should restart my system to libreoffice open another
file properly and many many time restart. 
only one file in can be opened in this way and only needs restart again. 
one time i deactivate deep freeze and after opening one file, for the opening
of the second file libreoffice crashed and i could not correct it even with
restart! 
i fourced to uninstalled libreoffice completely and removed all its files in
every places of my system and install it again!!! 
i wish that you solve it very soon, its a big problem inherited from open
office. 
thanks so much and god bless you all.

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


[Libreoffice-bugs] [Bug 97304] FORMATTING

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97304

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 97308] FORMATTING: Conditional "Ends with" applies formatting to inverted selection

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97308

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||miguelangelrv@libreoffice.o
   ||rg
 Ever confirmed|0   |1

--- Comment #1 from m.a.riosv  ---
Hi @Matthew, thanks for reporting.

Reproducible.
Win7x64
Version: 5.0.5.1 (x64) Build ID: 7609023f63524a6c8326f6c82e7e23f55a5b7bb5

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


[Libreoffice-bugs] [Bug 91017] [Regression] Black squares hide content of WMF image

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91017

Armin Le Grand  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |armin.le.gr...@me.com
   |desktop.org |

--- Comment #12 from Armin Le Grand  ---
Had to check/adapt the display pipeline to not lose the imported Mask/Alpha
information. Adapted WinMtfOutput::ImplDrawBitmap to take Alpha into account
when blending against complex clip regions.
The display chain imports WMF as Metafile, that gets converted to Primitives.
If WMF import would create Primitives in the 1st place blendigs like that would
be more simple (could be expressed as clipping/Mask) and more original data
could be preserved.

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


[Libreoffice-bugs] [Bug 75972] FILEOPEN: SAXParseException on one .DOCX (summary in comment 7)

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75972

Mike Kaganski  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 93529] Meta: VCL/OpenGL tracker bug for 5.0+

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93529
Bug 93529 depends on bug 95648, which changed state.

Bug 95648 Summary: When OpenGL rendering is active-- Graphite font has black 
blocks when used in a justified paragraph
https://bugs.documentfoundation.org/show_bug.cgi?id=95648

   What|Removed |Added

 Status|VERIFIED|REOPENED
 Resolution|FIXED   |---

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


[Libreoffice-bugs] [Bug 95648] When OpenGL rendering is active-- Graphite font has black blocks when used in a justified paragraph

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95648

Pierre C  changed:

   What|Removed |Added

 Status|VERIFIED|REOPENED
 Resolution|FIXED   |---

--- Comment #19 from Pierre C  ---
Reopening the bug as it is present in 5.0 branch, and this branch is not ended

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


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

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

Bug 95648 Summary: When OpenGL rendering is active-- Graphite font has black 
blocks when used in a justified paragraph
https://bugs.documentfoundation.org/show_bug.cgi?id=95648

   What|Removed |Added

 Status|VERIFIED|REOPENED
 Resolution|FIXED   |---

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


[Libreoffice-bugs] [Bug 96733] Outline numbering off when skipping outline levels (when compared with LaTeX)

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96733

--- Comment #12 from Virgil  ---
Created attachment 122164
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122164=edit
A file demonstrating three ways of producing numbering in LO

The attached file demonstrates three different ways of applying numbering. The
different methods are described in the text in the file. In all three methods,
I used the same Heading styles created through Outline numbering with three
different methods of producing my numbered normal text. In the first example, I
simply applied manual numbering through the numbering toolbar to the standard
Text Body style. This method provides properly numbered headings and paragraphs
throughout. In the second example, I used the Numbering 1 paragraph style and
apply "Numbering 1" to the style itself. You'll notice that my normal
paragraphs do not automatically restart at "1" after an intervening heading in
the same way that they do with "toolbar" numbering. In the third example, I
used my outline styles that I have previously described in this bug report.
You'll notice that in this example, the first example of "Heading 3" is
numbered "3.2" instead of the "proper" 3.1.

If these three different behaviors are what the LO developers intended in the
design of LO, then I guess there's no bug. If it's not what you intended, then
you might consider whether there may, indeed, be a bug, or at least a better
design. Regardless, it seems a shame to me that the method that provides the
most proper numbering in a typical outline is the most manual and cumbersome
method to use. I've come to really love using paragraph styles and it appears
as if I need to deviate from that practice in order to achieve desired results.

Once again, thank you for your time in this matter. I won't trouble you any
further as I realize you're busy with other things.

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


[Libreoffice-bugs] [Bug 95376] Tab stops incorrectly indented by 5cm when it's 0cm in MS Word

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95376

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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 97117] Libreoffice stops working when formatting the background of a second graph in Calc

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97117

--- Comment #3 from Joaquín Montes R.  ---
Created attachment 122165
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122165=edit
The same small file before modifying the axis.

Hello, 

I renamed the user profile and still the error is appearing. In order to
reproduce it, in this file I am attaching, I have to format the y-axis
typography of the second graph in yellow. This doesn't stop Libreoffice, but
makes a mess with the graph: after it, only one point exists; in the first file
reported, this was the first step in the way the error appeared. 

BTW,  I am working in the Spanish version of Libreoffice.

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


[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

--- Comment #10 from tommy27  ---
maybe in the weekend I could find a Win7 machine to test that bug.

actually I don't feel a bug which is not reproducible under Win 8.1 using 5.0.x
and 5.2.x will appear using LibO 5.1.x

probably Win8.1 is immune to this bug whether the version you use it

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


[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

--- Comment #11 from tommy27  ---
what I see is that you 5.1.0.2 PDF is even worse than the original 5.0.4.2 PDF,
isn't it?

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


[Libreoffice-bugs] [Bug 97286] LibO needs a distinctive desktop shortcut icon during installation

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97286

--- Comment #3 from tommy27  ---
that icon that you call "blank" is the main logo of LibreOffice.

it always had that look (white rectangle with black borders and right upper
corner) so why you consider it "non distinctive" ?

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


[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

tommy27  changed:

   What|Removed |Added

 Attachment #122139|Tommy27 pdf output  |Tommy27 pdf output (LibO
description||5.0.4.2 Win8.1 x64)

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


[Libreoffice-bugs] [Bug 97286] LibO needs a distinctive desktop shortcut icon during installation

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97286

tommy27  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 97294] LibreOffice Writer Freeze

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97294

Cor Nouws  changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME

--- Comment #4 from Cor Nouws  ---
(In reply to Kroontje from comment #3)
> Problems seems to be sold ;)
> I had to update (Install) a NVIDIA Driver
> 
> https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1453812

Thanks for reporting back and glad that it works fine now :)

I set to WorksForMe. We use Fixed for bugs that have been resolved with a know
code commit.
Ciao - Cor

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


[Libreoffice-bugs] [Bug 95530] Applying paragraph styles in tables in particular file makes LO crashing

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95530

--- Comment #16 from Cor Nouws  ---
(In reply to Udo Forstmann from comment #15)
> can somewhere see and understand the problem and has any hint for me?

Other than the hits given, I would have no idea, sorry.
If it is multiple machines on your side, updating drivers will make no sense.
And a fresh userprofile? Try it.
Make the files new from scratch..?
Still, when you have it, and no one here can reproduce it, what can we do?

Cheers - Cor

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


[Libreoffice-bugs] [Bug 95039] Calc Crash Due to Conditional Formatting Bug

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95039

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #19 from Julien Nabet  ---
Beluga: On pc Debian x86-64 with master sources updated today or with LO Debian
package 5.0.4.2, I don't reproduce this.
Would you have some time to give a try to either 5.0.4, 5.1.0.2RC2 perhaps
master daily build? If just one, perhaps master one in order to know if it's
solved at least with the dev most up-to-date.
(http://dev-builds.libreoffice.org/daily/)

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


RE: missed change in uno api since LO5.0?

2016-01-22 Thread Winfried Donkers
> Our ERP system uses basic scripts to create Calc documents. This worked
> fine from the first LO version (3.2?) till 4.4.7, but no longer with
> LO5.0.

Solved the riddle myself :-)

In line
  call oDispatcher.executeDispatch (oDeskTop.CurrentFrame, slotname, "", 0, 
params)
oDesktOp.CurrentFrame should be oCalcDoc.CurrentController.Frame .

That works with LO 4.4 and with 5.0.

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


Re: Failures in OS X builds - too many errors?

2016-01-22 Thread Stephan Bergmann

On 01/21/2016 09:57 AM, Stephan Bergmann wrote:

What is worrying is that this problem only showed up in Jenkins Gerrit
builds, not in Jenkins tinderbox builds.  The two Jenkins Mac
tinderboxes on master, Jenkins_MacOSX and Jenkins_MacOSX_Dbg, stayed
green after 2c9d652dc7f7a1e2d0d8ea0cfcdcf47608a3d84e.


That turned out to be the case because Mac Jenkins Gerrit builds are 
done on a box with an older toolchain than Mac Jenkins tinderbox builds.



Quoting IRC: " shm_get_, cloph, Jenkins_MacOSX tinderbox is a
mystery to me; in

build it broke when compiling sal/cppunittester/cppunittester.cxx;
according to , the
next build of that tb was
,
and that doesn't mention building sal/cppunittester/cppunittester.cxx at
all, and succeeds; how can that be?"


That turned out to be due to the tinderbox page apparently not 
necessarily displaying /every/ build, but only operating at a 
granularity of something like 10 min.


(Thanks to Norbert for providing input on these two mysteries on IRC.)
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2016-01-22 Thread Stephan Bergmann
 editeng/source/items/numitem.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit d90a20833a815362c344b82fc16b4bbcff0ebf07
Author: Stephan Bergmann 
Date:   Fri Jan 22 09:51:15 2016 +0100

Missing initialization of SvxNumberFormat::mbNumAdjustChanged

introduced in 6517141b6233c5f9667031bc92f66109fddf5b76 "tdf#42788: 
FORMATTING -
Numbering/ordered list," causing a read of the uninitialized value in
CppunitTest_sd_html_export_tests.

Change-Id: I7955593999e3a2bedca815ee447d96c1b997a358

diff --git a/editeng/source/items/numitem.cxx b/editeng/source/items/numitem.cxx
index 23ca941..a7685eb 100644
--- a/editeng/source/items/numitem.cxx
+++ b/editeng/source/items/numitem.cxx
@@ -181,7 +181,8 @@ SvxNumberFormat::SvxNumberFormat(const SvxNumberFormat& 
rFormat) :
 }
 
 SvxNumberFormat::SvxNumberFormat( SvStream  )
-: nStart(0)
+: mbNumAdjustChanged(false)
+, nStart(0)
 , nBulletRelSize(100)
 , nFirstLineOffset(0)
 , nAbsLSpace(0)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: jurt/com qadevOOo/tests

2016-01-22 Thread jan iversen
 jurt/com/sun/star/lib/uno/protocols/urp/urp.java|4 +++-
 qadevOOo/tests/java/ifc/accessibility/_XAccessibleText.java |7 +++
 2 files changed, 10 insertions(+), 1 deletion(-)

New commits:
commit e39bf3677109976cae13e1bdff044e2d5769c098
Author: jan iversen 
Date:   Thu Jan 21 19:54:46 2016 +0100

cid#1326191, 1326202

Null references elements, introduced throw

Change-Id: I22bf7de5f20c3ca455df31de2a5d7301b436ed82
Reviewed-on: https://gerrit.libreoffice.org/21691
Reviewed-by: Noel Grandin 
Tested-by: Noel Grandin 

diff --git a/jurt/com/sun/star/lib/uno/protocols/urp/urp.java 
b/jurt/com/sun/star/lib/uno/protocols/urp/urp.java
index 5e7b328..cea15db 100644
--- a/jurt/com/sun/star/lib/uno/protocols/urp/urp.java
+++ b/jurt/com/sun/star/lib/uno/protocols/urp/urp.java
@@ -619,8 +619,10 @@ public final class urp implements IProtocol {
 for (int i = releaseQueue.size(); i > 0;) {
 --i;
 QueuedRelease r = releaseQueue.get(i);
+if (r == null)
+  throw new IOException("releaseQueue unexpected empty");
 writeRequest(
-r.internal, r.objectId, r.type, r.method, r.threadId, null,
+ r.internal, r.objectId, r.type, r.method, r.threadId, null,
 false);
 releaseQueue.remove(i);
 }
diff --git a/qadevOOo/tests/java/ifc/accessibility/_XAccessibleText.java 
b/qadevOOo/tests/java/ifc/accessibility/_XAccessibleText.java
index 9f4f5c0..92082d3 100644
--- a/qadevOOo/tests/java/ifc/accessibility/_XAccessibleText.java
+++ b/qadevOOo/tests/java/ifc/accessibility/_XAccessibleText.java
@@ -475,8 +475,15 @@ public class _XAccessibleText extends MultiMethodTest {
 } catch (com.sun.star.lang.IllegalArgumentException e) {
 }
 
+if (aRect == null) {
+res = false;
+log.print("aRect unexpected null");
+break;
+}
+
 int x = aRect.X + (aRect.Width / 2);
 int y = aRect.Y + (aRect.Height / 2);
+
 Point aPoint = new Point(x, y);
 int nIndex = oObj.getIndexAtPoint(aPoint);
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: editeng/source include/editeng sc/source svx/source sw/source

2016-01-22 Thread Miklos Vajna
 editeng/source/editeng/editview.cxx   |5 -
 editeng/source/editeng/impedit.cxx|6 --
 editeng/source/editeng/impedit.hxx|2 --
 editeng/source/outliner/outlvw.cxx|5 -
 include/editeng/editview.hxx  |1 -
 include/editeng/outliner.hxx  |2 --
 sc/source/ui/app/inputhdl.cxx |9 -
 sc/source/ui/view/viewdata.cxx|1 -
 svx/source/svdraw/svdedxv.cxx |1 -
 sw/source/uibase/docvw/PostItMgr.cxx  |1 -
 sw/source/uibase/docvw/SidebarWin.cxx |1 -
 11 files changed, 34 deletions(-)

New commits:
commit fb7edcd806aad98ad61e60b4165771ca3ae13ef3
Author: Miklos Vajna 
Date:   Fri Jan 22 09:14:25 2016 +0100

editeng: ImpEditView::mbTiledRendering is never read

Change-Id: Ie8e33d075f0cedbb9f7148717c4318f4494ed419

diff --git a/editeng/source/editeng/editview.cxx 
b/editeng/source/editeng/editview.cxx
index f936d4e..14c2b24 100644
--- a/editeng/source/editeng/editview.cxx
+++ b/editeng/source/editeng/editview.cxx
@@ -583,11 +583,6 @@ Color EditView::GetBackgroundColor() const
 return pImpEditView->GetBackgroundColor();
 }
 
-void EditView::setTiledRendering(bool bTiledRendering)
-{
-pImpEditView->setTiledRendering(bTiledRendering);
-}
-
 void EditView::registerLibreOfficeKitCallback(LibreOfficeKitCallback 
pCallback, void* pLibreOfficeKitData, OutlinerSearchable *pSearchable)
 {
 pImpEditView->registerLibreOfficeKitCallback(pCallback, 
pLibreOfficeKitData, pSearchable);
diff --git a/editeng/source/editeng/impedit.cxx 
b/editeng/source/editeng/impedit.cxx
index 0fc72ff..36bd526 100644
--- a/editeng/source/editeng/impedit.cxx
+++ b/editeng/source/editeng/impedit.cxx
@@ -79,7 +79,6 @@ ImpEditView::ImpEditView( EditView* pView, EditEngine* pEng, 
vcl::Window* pWindo
 pOutWin = pWindow;
 pPointer= nullptr;
 pBackgroundColor= nullptr;
-mbTiledRendering= false;
 mpLibreOfficeKitCallback = nullptr;
 mpLibreOfficeKitData = nullptr;
 mpLibreOfficeKitSearchable = nullptr;
@@ -120,11 +119,6 @@ void ImpEditView::SetBackgroundColor( const Color& rColor )
 pBackgroundColor = new Color( rColor );
 }
 
-void ImpEditView::setTiledRendering(bool bTiledRendering)
-{
-mbTiledRendering = bTiledRendering;
-}
-
 void ImpEditView::registerLibreOfficeKitCallback(LibreOfficeKitCallback 
pCallback, void* pData, OutlinerSearchable* pSearchable)
 {
 mpLibreOfficeKitCallback = pCallback;
diff --git a/editeng/source/editeng/impedit.hxx 
b/editeng/source/editeng/impedit.hxx
index 57e03f7..1962b7e 100644
--- a/editeng/source/editeng/impedit.hxx
+++ b/editeng/source/editeng/impedit.hxx
@@ -222,7 +222,6 @@ private:
 EditView*   pEditView;
 vcl::Cursor*pCursor;
 Color*  pBackgroundColor;
-boolmbTiledRendering;
 LibreOfficeKitCallback mpLibreOfficeKitCallback;
 void* mpLibreOfficeKitData;
 OutlinerSearchable* mpLibreOfficeKitSearchable;
@@ -370,7 +369,6 @@ public:
 const Color&GetBackgroundColor() const {
 return ( pBackgroundColor ? *pBackgroundColor : 
pOutWin->GetBackground().GetColor() ); }
 
-voidsetTiledRendering(bool bTiledRendering);
 /// @see vcl::ITiledRenderable::registerCallback().
 void registerLibreOfficeKitCallback(LibreOfficeKitCallback pCallback, 
void* pLibreOfficeKitData, OutlinerSearchable* pSearchable);
 /// Invokes the registered callback, if there are any.
diff --git a/editeng/source/outliner/outlvw.cxx 
b/editeng/source/outliner/outlvw.cxx
index d624eb6..6240c0f 100644
--- a/editeng/source/outliner/outlvw.cxx
+++ b/editeng/source/outliner/outlvw.cxx
@@ -1431,11 +1431,6 @@ void OutlinerView::SetBackgroundColor( const Color& 
rColor )
 pEditView->SetBackgroundColor( rColor );
 }
 
-void OutlinerView::setTiledRendering(bool bTiledRendering)
-{
-pEditView->setTiledRendering(bTiledRendering);
-}
-
 void OutlinerView::registerLibreOfficeKitCallback(LibreOfficeKitCallback 
pCallback, void* pLibreOfficeKitData, OutlinerSearchable* pSearchable)
 {
 pEditView->registerLibreOfficeKitCallback(pCallback, pLibreOfficeKitData, 
pSearchable);
diff --git a/include/editeng/editview.hxx b/include/editeng/editview.hxx
index 21343f5..9c1c541 100644
--- a/include/editeng/editview.hxx
+++ b/include/editeng/editview.hxx
@@ -182,7 +182,6 @@ public:
 voidSetBackgroundColor( const Color& rColor );
 Color   GetBackgroundColor() const;
 
-voidsetTiledRendering(bool bTiledRendering);
 /// @see vcl::ITiledRenderable::registerCallback().
 void registerLibreOfficeKitCallback(LibreOfficeKitCallback pCallback, 
void* pLibreOfficeKitData, OutlinerSearchable *pSearchable);
 
diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx
index 6ea221e..8e428f2 100644
--- a/include/editeng/outliner.hxx
+++ b/include/editeng/outliner.hxx
@@ 

[Libreoffice-bugs] [Bug 94641] issues with vtags and xmlParseMemory

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94641

--- Comment #7 from Richard PALO  ---
Created attachment 122142
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122142=edit
for example, here is translations/source/is/svx/inc.po  (icelandic)

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


[Libreoffice-bugs] [Bug 91017] [Regression] Black squares hide content of WMF image

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91017

--- Comment #11 from Armin Le Grand  ---
Can read bitmaps with alpha now, but their usage in
WinMtfOutput::ImplDrawBitmap modifies tham due to mbComplexClip being set. That
sets them full black again since only mask is used, no alpha support.

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


[Libreoffice-bugs] [Bug 97171] Artifacts for italic text in GL rendering mode

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97171

--- Comment #2 from Adolfo Jayme  ---
> UI Render: default;

I think you need to test with OpenGL rendering enabled.

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


[Libreoffice-bugs] [Bug 96420] Glyph replacement causes caret misplacement and/or mis-rendered replacement glyph

2016-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96420

--- Comment #10 from Commit Notification 
 ---
Tor Lillqvist committed a patch related to this issue.
It has been pushed to "libreoffice-5-1":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=bf417a38c401868bb246e846d4c697cf840771e1=libreoffice-5-1

tdf#96420: Re-introduce SimpleWinLayout

It will be available in 5.1.1.

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

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

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


  1   2   3   >