[Libreoffice-bugs] [Bug 105403] Hidden drop-down list in dialogue Tools-Option-LibreOffice-View in RU-locale

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

Mike Kaganski  changed:

   What|Removed |Added

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

--- Comment #2 from Mike Kaganski  ---
Confirmed with Version: 5.3.0.2 (x64)
Build ID: 5ad7b2889021c491af62f7930a4b1cb631392f16
CPU Threads: 4; OS Version: Windows 6.19; UI Render: GL; Layout Engine: new; 
Locale: ru-RU (ru_RU); Calc: group

Impossible to reproduce on earlier versions of 5-3 branch because of unfinished
localization in those versions.

OK with Version: 5.2.5.1 (x64)
Build ID: 0312e1a284a7d50ca85a365c316c7abbf20a4d22
CPU Threads: 4; OS Version: Windows 6.19; UI Render: GL; 
Locale: ru-RU (ru_RU); Calc: CL

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


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

2017-01-17 Thread Stephan Bergmann
 external/firebird/UnpackedTarball_firebird.mk |1 -
 external/firebird/debug-gfix-failure.patch|   22 --
 external/firebird/macosx-elcapitan-dyld.patch |6 +++---
 3 files changed, 3 insertions(+), 26 deletions(-)

New commits:
commit c8bdf901efd034f24bacf5e2d617a00bb1692238
Author: Stephan Bergmann 
Date:   Tue Jan 17 18:13:19 2017 +0100

Revert "external/firebird: Try track down "Couldn't turn forced writes off" 
failure"

This reverts commit 128e7ce3ffa50b11b2d5ff9777a27b095a84e5d7 (plus
40b44f7eb25114e5e4e19e571b8781580a938ca6 "Remove line again that was 
committed
in error" follow-up), now that the cause is found and addressed with
592f4f6a5941e42e6b2b3fa76e74b8ad509724c9 "external/firebird: Backport fix 
for
CORE-5452 causing spurious SEGV".

Change-Id: I84ddc90707693c2577ad0cd913e987bc9e173e34
Reviewed-on: https://gerrit.libreoffice.org/33229
Reviewed-by: Stephan Bergmann 
Tested-by: Stephan Bergmann 

diff --git a/external/firebird/UnpackedTarball_firebird.mk 
b/external/firebird/UnpackedTarball_firebird.mk
index d62bad7..e30048d 100644
--- a/external/firebird/UnpackedTarball_firebird.mk
+++ b/external/firebird/UnpackedTarball_firebird.mk
@@ -20,7 +20,6 @@ $(eval $(call gb_UnpackedTarball_add_patches,firebird,\
external/firebird/firebird-cloop-compiler.patch.1 \
external/firebird/firebird-gcc6.patch.1 \
external/firebird/wnt-dbgutil.patch \
-   external/firebird/debug-gfix-failure.patch \
external/firebird/libc++.patch \

external/firebird/0001-Avoid-hangup-in-SS-when-error-happens-at-system-atta.patch.1
 \

external/firebird/0002-Backported-fix-for-CORE-5452-Segfault-when-engine-s-.patch.1
 \
diff --git a/external/firebird/debug-gfix-failure.patch 
b/external/firebird/debug-gfix-failure.patch
deleted file mode 100644
index 8b0c121..000
--- a/external/firebird/debug-gfix-failure.patch
+++ /dev/null
@@ -1,22 +0,0 @@
 examples/empbuild/empbuild.e
-+++ examples/empbuild/empbuild.e
-@@ -65,6 +65,7 @@
-  *
-  **/
- TEXT  cmd [140];
-+int status;
- 
- if (argc > 1)
- strcpy (Db_name, argv[1]);
-@@ -95,9 +96,9 @@
- 
- printf ("Turning forced writes off\n");
- sprintf (cmd, "gfix -write async %s", Db_name);
--if (system (cmd))
-+if ((status = system (cmd)))
- {
--printf ("Couldn't turn forced writes off\n");
-+printf ("Couldn't turn forced writes off (%d)\n", status);
- exit (FINI_ERROR);
- }
- 
diff --git a/external/firebird/macosx-elcapitan-dyld.patch 
b/external/firebird/macosx-elcapitan-dyld.patch
index d8c0b2b..134cdd9 100644
--- a/external/firebird/macosx-elcapitan-dyld.patch
+++ b/external/firebird/macosx-elcapitan-dyld.patch
@@ -6,9 +6,9 @@
   **/
 -TEXT  cmd [140];
 +TEXT  cmd [8000];
- int status;
  
  if (argc > 1)
+ strcpy (Db_name, argv[1]);
 @@ -94,7 +94,9 @@
  }
  
@@ -17,9 +17,9 @@
 +if (!lp) lp = "";
 -sprintf (cmd, "gfix -write async %s", Db_name);
 +sprintf (cmd, "DYLD_LIBRARY_PATH=%s gfix -write async %s", lp, Db_name);
- if ((status = system (cmd)))
+ if (system (cmd))
  {
- printf ("Couldn't turn forced writes off (%d)\n", status);
+ printf ("Couldn't turn forced writes off\n");
 @@ -104,7 +106,7 @@
  }
  
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-01-17 Thread Stephan Bergmann
 cppuhelper/source/shlib.cxx |4 
 1 file changed, 4 insertions(+)

New commits:
commit cbc0b5e1f322418f190c1faa056be87f762d4f4b
Author: Stephan Bergmann 
Date:   Wed Jan 18 08:39:37 2017 +0100

-Werror=unused-function (DISABLE_DYNLOADING)

Change-Id: I2d70946423c6b1fe56d1630d6982e91bd5c7d81a

diff --git a/cppuhelper/source/shlib.cxx b/cppuhelper/source/shlib.cxx
index fa88cc4..e3791ac 100644
--- a/cppuhelper/source/shlib.cxx
+++ b/cppuhelper/source/shlib.cxx
@@ -160,6 +160,8 @@ css::uno::Reference 
invokeComponentFactory(
 }
 }
 
+#if !defined DISABLE_DYNLOADING
+
 extern "C" void getInstance(va_list * args) {
 cppuhelper::ImplementationConstructorFn * fn = va_arg(*args, 
cppuhelper::ImplementationConstructorFn *);
 void * ctxt = va_arg(*args, void *);
@@ -224,6 +226,8 @@ cppuhelper::WrapperConstructorFn mapConstructorFn(
 }
 }
 
+#endif
+
 }
 
 void cppuhelper::detail::loadSharedLibComponentFactory(
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 105403] Hidden drop-down list in dialogue Tools-Option-LibreOffice-View in RU-locale

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

--- Comment #1 from kompilainenn <79045_79...@mail.ru> ---
Created attachment 130516
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130516=edit
Screenshots with problems hidden drop-down lists

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


[Libreoffice-bugs] [Bug 105403] New: Hidden drop-down list in dialogue Tools-Option-LibreOffice-View in RU-locale

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

Bug ID: 105403
   Summary: Hidden drop-down list in dialogue
Tools-Option-LibreOffice-View in RU-locale
   Product: LibreOffice
   Version: 5.3.0.1 rc
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 79045_79...@mail.ru

Description:
Hidden drop-down list in dialogue Tools-Option-LibreOffice-View in RU-locale
(see screenshots in attach) in LibreOffice 5.3.0.2
Version: 5.3.0.2
Build ID: 5ad7b2889021c491af62f7930a4b1cb631392f16
CPU Threads: 4; OS Version: Windows 6.1; UI Render: default; Layout Engine:
new; 
Locale: ru-RU (ru_RU); Calc: group

Steps to Reproduce:
1. With install LibreOfiice you should to install two language English (USA)
and Russian
2. Open menu Tools-Option-LibreOffice-View in EN-locale - drop-down lists are
OK
3. Open menu Tools-Option-LibreOffice-View in RU-locale - drop-down lists
aren't OK. They are hidden, but if dialogue is widening, then this lists become
visible 

Actual Results:  
drop-down lists aren't OK. They are hidden

Expected Results:
drop-down lists are normal view


Reproducible: Always

User Profile Reset: No

Additional Info:


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

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-3-0' - translations

2017-01-17 Thread Andras Timar
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4a17897ff3b8aeadaa0e7effc997ba43fb8e17e0
Author: Andras Timar 
Date:   Wed Jan 18 08:04:00 2017 +0100

Updated core
Project: translations  ef5aa6bddae942a0ec66fa7ff130b46fabd94729

Updated Slovenian translation

Change-Id: Idaa5cc0ba76346f676568f1b045187cbfc2cf6bb
(cherry picked from commit 969ab027d097bdf9585f875a349753d6ccfe702e)
Signed-off-by: Andras Timar 

diff --git a/translations b/translations
index 926afa6..ef5aa6b 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 926afa627d6ae0dd84c6a27843f353b7090bdc97
+Subproject commit ef5aa6bddae942a0ec66fa7ff130b46fabd94729
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] translations.git: Branch 'libreoffice-5-3-0' - source/sl

2017-01-17 Thread Andras Timar
 source/sl/cui/uiconfig/ui.po  |4 
 source/sl/helpcontent2/source/text/scalc/01.po|8 -
 source/sl/helpcontent2/source/text/shared/00.po   |   22 ++--
 source/sl/helpcontent2/source/text/shared/01.po   |   18 +--
 source/sl/helpcontent2/source/text/shared/guide.po|   50 +-
 source/sl/helpcontent2/source/text/shared/optionen.po |   10 +-
 source/sl/officecfg/registry/data/org/openoffice/Office/UI.po |   12 +-
 source/sl/sfx2/uiconfig/ui.po |4 
 source/sl/svtools/source/misc.po  |   15 ++-
 9 files changed, 76 insertions(+), 67 deletions(-)

New commits:
commit ef5aa6bddae942a0ec66fa7ff130b46fabd94729
Author: Andras Timar 
Date:   Wed Jan 18 08:04:00 2017 +0100

Updated Slovenian translation

Change-Id: Idaa5cc0ba76346f676568f1b045187cbfc2cf6bb
(cherry picked from commit 969ab027d097bdf9585f875a349753d6ccfe702e)
Signed-off-by: Andras Timar 

diff --git a/source/sl/cui/uiconfig/ui.po b/source/sl/cui/uiconfig/ui.po
index 7c6a9f3..c520e30 100644
--- a/source/sl/cui/uiconfig/ui.po
+++ b/source/sl/cui/uiconfig/ui.po
@@ -3,14 +3,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LibreOffice 5.3\n"
 "Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice_status=UNCONFIRMED=UI\n;
-"POT-Creation-Date: 2017-01-12 14:45+0100\n"
+"POT-Creation-Date: 2017-01-17 09:45+0100\n"
 "PO-Revision-Date: 2017-01-12 22:01+0200\n"
 "Last-Translator: Martin Srebotnjak \n"
 "Language-Team: sl.libreoffice.org\n"
-"Language: sl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: sl\n"
 "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || 
n%100==4 ? 2 : 3);\n"
 "X-Generator: Virtaal 0.7.1\n"
 "X-Accelerator-Marker: ~\n"
diff --git a/source/sl/helpcontent2/source/text/scalc/01.po 
b/source/sl/helpcontent2/source/text/scalc/01.po
index a10a729..f7fc0a6 100644
--- a/source/sl/helpcontent2/source/text/scalc/01.po
+++ b/source/sl/helpcontent2/source/text/scalc/01.po
@@ -3,8 +3,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LibreOffice 5.3\n"
 "Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice_status=UNCONFIRMED=UI\n;
-"POT-Creation-Date: 2017-01-12 14:45+0100\n"
-"PO-Revision-Date: 2017-01-07 11:06+0200\n"
+"POT-Creation-Date: 2017-01-17 09:44+0100\n"
+"PO-Revision-Date: 2017-01-15 02:57+0200\n"
 "Last-Translator: Martin Srebotnjak \n"
 "Language-Team: sl.libreoffice.org\n"
 "MIME-Version: 1.0\n"
@@ -2423,7 +2423,7 @@ msgctxt ""
 "7\n"
 "help.text"
 msgid "You cannot delete a sheet while Edit - Track Changes - Record 
Changes is activated."
-msgstr "Delovnega lista ne morete izbrisati, če je vklopljeno sledenje 
spremembam z ukazom Uredi – Sledenje spremembam – Beleži 
spremembe."
+msgstr "Delovnega lista ne morete izbrisati, če je vklopljeno sledenje 
spremembam z ukazom Uredi – Sledi spremembam – Beleži 
spremembe."
 
 #: 0217.xhp
 msgctxt ""
@@ -54901,7 +54901,7 @@ msgctxt ""
 "4\n"
 "help.text"
 msgid "You cannot sort data if the Record changes options is enabled."
-msgstr "Podatkov ne morete razvrščati, če je omogočena možnost Zapiši 
spremembe."
+msgstr "Podatkov ne morete razvrščati, če je omogočena možnost Beleži 
spremembe."
 
 #: 12030100.xhp
 msgctxt ""
diff --git a/source/sl/helpcontent2/source/text/shared/00.po 
b/source/sl/helpcontent2/source/text/shared/00.po
index 76550a0..9582b76 100644
--- a/source/sl/helpcontent2/source/text/shared/00.po
+++ b/source/sl/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LibreOffice 5.3\n"
 "Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice_status=UNCONFIRMED=UI\n;
-"POT-Creation-Date: 2017-01-12 14:45+0100\n"
-"PO-Revision-Date: 2017-01-07 11:26+0200\n"
+"POT-Creation-Date: 2017-01-17 09:44+0100\n"
+"PO-Revision-Date: 2017-01-15 02:17+0200\n"
 "Last-Translator: Martin Srebotnjak \n"
 "Language-Team: sl.libreoffice.org\n"
 "MIME-Version: 1.0\n"
@@ -7129,7 +7129,7 @@ msgctxt ""
 "555\n"
 "help.text"
 msgid "Choose Edit - Track 
Changes"
-msgstr "Izberite Uredi – Sledenje 
spremembam"
+msgstr "Izberite Uredi – Sledi 
spremembam"
 
 #: 0402.xhp
 msgctxt ""
@@ -7138,7 +7138,7 @@ msgctxt ""
 "556\n"
 "help.text"
 msgid "Choose Edit - Track Changes - Record 
Changes"
-msgstr "Izberite Uredi – Sledenje 
spremembam – Zapiši spremembe"
+msgstr "Izberite Uredi – Sledi spremembam 
– Beleži spremembe"
 
 #: 0402.xhp
 msgctxt ""
@@ -7147,7 +7147,7 @@ msgctxt ""
 "557\n"
 "help.text"
 msgid "Choose Edit - Track Changes - Show 
ChangesChoose Edit - 
Track Changes - Show Changes"
-msgstr "Izberite Uredi – Sledenje spremembam 

[Libreoffice-commits] translations.git: Branch 'libreoffice-5-3' - source/sl

2017-01-17 Thread Andras Timar
 source/sl/cui/uiconfig/ui.po  |4 
 source/sl/helpcontent2/source/text/scalc/01.po|8 -
 source/sl/helpcontent2/source/text/shared/00.po   |   22 ++--
 source/sl/helpcontent2/source/text/shared/01.po   |   18 +--
 source/sl/helpcontent2/source/text/shared/guide.po|   50 +-
 source/sl/helpcontent2/source/text/shared/optionen.po |   10 +-
 source/sl/officecfg/registry/data/org/openoffice/Office/UI.po |   12 +-
 source/sl/sfx2/uiconfig/ui.po |4 
 source/sl/svtools/source/misc.po  |   15 ++-
 9 files changed, 76 insertions(+), 67 deletions(-)

New commits:
commit 969ab027d097bdf9585f875a349753d6ccfe702e
Author: Andras Timar 
Date:   Wed Jan 18 08:04:00 2017 +0100

Updated Slovenian translation

Change-Id: Idaa5cc0ba76346f676568f1b045187cbfc2cf6bb

diff --git a/source/sl/cui/uiconfig/ui.po b/source/sl/cui/uiconfig/ui.po
index 7c6a9f3..c520e30 100644
--- a/source/sl/cui/uiconfig/ui.po
+++ b/source/sl/cui/uiconfig/ui.po
@@ -3,14 +3,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LibreOffice 5.3\n"
 "Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice_status=UNCONFIRMED=UI\n;
-"POT-Creation-Date: 2017-01-12 14:45+0100\n"
+"POT-Creation-Date: 2017-01-17 09:45+0100\n"
 "PO-Revision-Date: 2017-01-12 22:01+0200\n"
 "Last-Translator: Martin Srebotnjak \n"
 "Language-Team: sl.libreoffice.org\n"
-"Language: sl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: sl\n"
 "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || 
n%100==4 ? 2 : 3);\n"
 "X-Generator: Virtaal 0.7.1\n"
 "X-Accelerator-Marker: ~\n"
diff --git a/source/sl/helpcontent2/source/text/scalc/01.po 
b/source/sl/helpcontent2/source/text/scalc/01.po
index a10a729..f7fc0a6 100644
--- a/source/sl/helpcontent2/source/text/scalc/01.po
+++ b/source/sl/helpcontent2/source/text/scalc/01.po
@@ -3,8 +3,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LibreOffice 5.3\n"
 "Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice_status=UNCONFIRMED=UI\n;
-"POT-Creation-Date: 2017-01-12 14:45+0100\n"
-"PO-Revision-Date: 2017-01-07 11:06+0200\n"
+"POT-Creation-Date: 2017-01-17 09:44+0100\n"
+"PO-Revision-Date: 2017-01-15 02:57+0200\n"
 "Last-Translator: Martin Srebotnjak \n"
 "Language-Team: sl.libreoffice.org\n"
 "MIME-Version: 1.0\n"
@@ -2423,7 +2423,7 @@ msgctxt ""
 "7\n"
 "help.text"
 msgid "You cannot delete a sheet while Edit - Track Changes - Record 
Changes is activated."
-msgstr "Delovnega lista ne morete izbrisati, če je vklopljeno sledenje 
spremembam z ukazom Uredi – Sledenje spremembam – Beleži 
spremembe."
+msgstr "Delovnega lista ne morete izbrisati, če je vklopljeno sledenje 
spremembam z ukazom Uredi – Sledi spremembam – Beleži 
spremembe."
 
 #: 0217.xhp
 msgctxt ""
@@ -54901,7 +54901,7 @@ msgctxt ""
 "4\n"
 "help.text"
 msgid "You cannot sort data if the Record changes options is enabled."
-msgstr "Podatkov ne morete razvrščati, če je omogočena možnost Zapiši 
spremembe."
+msgstr "Podatkov ne morete razvrščati, če je omogočena možnost Beleži 
spremembe."
 
 #: 12030100.xhp
 msgctxt ""
diff --git a/source/sl/helpcontent2/source/text/shared/00.po 
b/source/sl/helpcontent2/source/text/shared/00.po
index 76550a0..9582b76 100644
--- a/source/sl/helpcontent2/source/text/shared/00.po
+++ b/source/sl/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LibreOffice 5.3\n"
 "Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice_status=UNCONFIRMED=UI\n;
-"POT-Creation-Date: 2017-01-12 14:45+0100\n"
-"PO-Revision-Date: 2017-01-07 11:26+0200\n"
+"POT-Creation-Date: 2017-01-17 09:44+0100\n"
+"PO-Revision-Date: 2017-01-15 02:17+0200\n"
 "Last-Translator: Martin Srebotnjak \n"
 "Language-Team: sl.libreoffice.org\n"
 "MIME-Version: 1.0\n"
@@ -7129,7 +7129,7 @@ msgctxt ""
 "555\n"
 "help.text"
 msgid "Choose Edit - Track 
Changes"
-msgstr "Izberite Uredi – Sledenje 
spremembam"
+msgstr "Izberite Uredi – Sledi 
spremembam"
 
 #: 0402.xhp
 msgctxt ""
@@ -7138,7 +7138,7 @@ msgctxt ""
 "556\n"
 "help.text"
 msgid "Choose Edit - Track Changes - Record 
Changes"
-msgstr "Izberite Uredi – Sledenje 
spremembam – Zapiši spremembe"
+msgstr "Izberite Uredi – Sledi spremembam 
– Beleži spremembe"
 
 #: 0402.xhp
 msgctxt ""
@@ -7147,7 +7147,7 @@ msgctxt ""
 "557\n"
 "help.text"
 msgid "Choose Edit - Track Changes - Show 
ChangesChoose Edit - 
Track Changes - Show Changes"
-msgstr "Izberite Uredi – Sledenje spremembam – Pokaži 
spremembeIzberite Uredi 
– Sledenje spremembam – Pokaži 
spremembe"
+msgstr "Izberite Uredi – Sledi spremembam – 

[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - translations

2017-01-17 Thread Andras Timar
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 832856e058477dd0edabbe1448f41fbc969d4f7e
Author: Andras Timar 
Date:   Wed Jan 18 08:04:00 2017 +0100

Updated core
Project: translations  969ab027d097bdf9585f875a349753d6ccfe702e

Updated Slovenian translation

Change-Id: Idaa5cc0ba76346f676568f1b045187cbfc2cf6bb

diff --git a/translations b/translations
index c67db29..969ab02 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit c67db291214569e8ed37beced9bc7ba416715755
+Subproject commit 969ab027d097bdf9585f875a349753d6ccfe702e
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-01-17 Thread Zdeněk Crhonek
 sc/qa/unit/data/functions/addin/fods/erf.fods| 5909 ++
 sc/qa/unit/data/functions/addin/fods/erfc.fods   | 5957 +++
 sc/qa/unit/data/functions/addin/fods/factdouble.fods | 5957 +++
 3 files changed, 17823 insertions(+)

New commits:
commit 32cc6ab5f2f4163672b2d2300069a1b1fbbdcd51
Author: Zdeněk Crhonek 
Date:   Tue Jan 17 21:14:56 2017 +0100

add ERF,ERFC,FACTDOUBLE  test case

Change-Id: I1c1b3682a2f4e43b3e3ddaba5ac6e158206494ac
Reviewed-on: https://gerrit.libreoffice.org/33232
Tested-by: Jenkins 
Reviewed-by: Zdenek Crhonek 

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

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

2017-01-17 Thread Noel Grandin
 sd/inc/undo/undoobjects.hxx |2 +-
 sd/source/core/undo/undoobjects.cxx |3 +--
 sd/source/filter/eppt/eppt.hxx  |7 +--
 sd/source/filter/eppt/epptbase.hxx  |3 ++-
 sd/source/filter/eppt/epptso.cxx|   13 +++--
 sd/source/filter/ppt/pptin.cxx  |3 +--
 sd/source/filter/ppt/pptin.hxx  |2 +-
 sd/source/filter/ppt/propread.cxx   |   13 ++---
 sd/source/filter/ppt/propread.hxx   |8 
 sd/source/ui/func/fupage.cxx|   12 +---
 sd/source/ui/inc/fupage.hxx |3 ++-
 sd/source/ui/inc/unosrch.hxx|2 +-
 sd/source/ui/unoidl/unosrch.cxx |3 +--
 13 files changed, 33 insertions(+), 41 deletions(-)

New commits:
commit f3a90d13056ca23708cc4fd9562c99d0b41a4b6f
Author: Noel Grandin 
Date:   Tue Jan 17 10:12:10 2017 +0200

new loplugin: useuniqueptr: sd

Change-Id: I2fc8a2fa57cc00edf2edab9e3722c824e75cb7e5
Reviewed-on: https://gerrit.libreoffice.org/33204
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/sd/inc/undo/undoobjects.hxx b/sd/inc/undo/undoobjects.hxx
index ee2d3bf..a1d208c 100644
--- a/sd/inc/undo/undoobjects.hxx
+++ b/sd/inc/undo/undoobjects.hxx
@@ -92,7 +92,7 @@ public:
 virtual void Redo() override;
 
 private:
-SfxUndoAction* mpUndoAnimation;
+std::unique_ptr mpUndoAnimation;
 boolmbNewEmptyPresObj;
 SdrObjectWeakRef mxSdrObject;
 };
diff --git a/sd/source/core/undo/undoobjects.cxx 
b/sd/source/core/undo/undoobjects.cxx
index d4e7d63..101fd27 100644
--- a/sd/source/core/undo/undoobjects.cxx
+++ b/sd/source/core/undo/undoobjects.cxx
@@ -186,14 +186,13 @@ UndoObjectSetText::UndoObjectSetText( SdrObject& rObject, 
sal_Int32 nText )
 css::uno::Reference< css::drawing::XShape > xShape( 
rObject.getUnoShape(), css::uno::UNO_QUERY );
 if( pPage->getMainSequence()->hasEffect( xShape ) )
 {
-mpUndoAnimation = new UndoAnimation( static_cast< SdDrawDocument* 
>( pPage->GetModel() ), pPage );
+mpUndoAnimation.reset( new UndoAnimation( static_cast< 
SdDrawDocument* >( pPage->GetModel() ), pPage ) );
 }
 }
 }
 
 UndoObjectSetText::~UndoObjectSetText()
 {
-delete mpUndoAnimation;
 }
 
 void UndoObjectSetText::Undo()
diff --git a/sd/source/filter/eppt/eppt.hxx b/sd/source/filter/eppt/eppt.hxx
index 98718fe..0447c25 100644
--- a/sd/source/filter/eppt/eppt.hxx
+++ b/sd/source/filter/eppt/eppt.hxx
@@ -135,12 +135,7 @@ struct PPTExOleObjEntry
 
 struct TextRuleEntry
 {
-SvMemoryStream* pOut;
-
-explicit TextRuleEntry() :
-pOut ( nullptr ){};
-
-~TextRuleEntry() { delete pOut; };
+std::unique_ptr  pOut;
 };
 
 class TextObjBinary : public TextObj
diff --git a/sd/source/filter/eppt/epptbase.hxx 
b/sd/source/filter/eppt/epptbase.hxx
index af03a99..8925ff2 100644
--- a/sd/source/filter/eppt/epptbase.hxx
+++ b/sd/source/filter/eppt/epptbase.hxx
@@ -120,7 +120,8 @@ class PPTExBulletProvider
 SvMemoryStream  aBuExOutlineStream;
 SvMemoryStream  aBuExMasterStream;
 
-EscherGraphicProvider*  pGraphicProv;
+std::unique_ptr
+pGraphicProv;
 
 public:
 
diff --git a/sd/source/filter/eppt/epptso.cxx b/sd/source/filter/eppt/epptso.cxx
index aa1ffcb0..8be0b03 100644
--- a/sd/source/filter/eppt/epptso.cxx
+++ b/sd/source/filter/eppt/epptso.cxx
@@ -97,13 +97,12 @@ using namespace ::com::sun::star;
 #define FIXED_PITCH 0x01
 
 PPTExBulletProvider::PPTExBulletProvider()
+: pGraphicProv( new EscherGraphicProvider( 
EscherGraphicProviderFlags::UseInstances ) )
 {
-pGraphicProv = new EscherGraphicProvider( 
EscherGraphicProviderFlags::UseInstances );
 }
 
 PPTExBulletProvider::~PPTExBulletProvider()
 {
-delete pGraphicProv;
 }
 
 sal_uInt16 PPTExBulletProvider::GetId( const OString& rUniqueId, Size& 
rGraphicSize )
@@ -1266,7 +1265,10 @@ void PPTWriter::ImplWriteTextStyleAtom( SvStream& rOut, 
int nTextInstance, sal_u
 {
 SvStream* pRuleOut = 
 if ( pTextRule )
-pRuleOut = pTextRule->pOut = new SvMemoryStream( 0x100, 
0x100 );
+{
+pTextRule->pOut.reset( new SvMemoryStream( 0x100, 0x100 ) 
);
+pRuleOut = pTextRule->pOut.get();
+}
 
 sal_uInt32 nRulePos = pRuleOut->Tell();
 pRuleOut->WriteUInt32( EPP_TextRulerAtom << 16 ).WriteUInt32( 
0 );
@@ -2763,12 +2765,11 @@ void PPTWriter::ImplWritePage( const PHLayout& rLayout, 
EscherSolverContainer& a
 ImplGetText();
 ImplWriteTextStyleAtom( *pClientTextBox, nTextType, 
nPObjects, , aExtBu, nullptr );
 ImplWriteExtParaHeader( aExtBu, nPObjects++, 
nTextType, nPageNumber + 0x100 );
-

Re: Prublem building LO master in clang 3.6

2017-01-17 Thread Tor Lillqvist
> I'm still on Ubuntu 14.04 and didn't have the time to install a more recent
> version

Well, just don't use the clang plugins then?

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


[Libreoffice-bugs] [Bug 102019] [META] Dialog bugs and enhancements

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

Bug 103574 Summary: Imagemap dialog lacks on confirmation button
https://bugs.documentfoundation.org/show_bug.cgi?id=103574

   What|Removed |Added

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

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


[Libreoffice-ux-advise] [Bug 103574] Imagemap dialog lacks on confirmation button

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

jan iversen  changed:

   What|Removed |Added

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

--- Comment #6 from jan iversen  ---
Assume this is resolved

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


[Libreoffice-bugs] [Bug 104181] FILEOPEN: File format error found at unsatisfied query for interface of type com.sun.star.embed.XRelationshipAccess!

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

Mike Kaganski  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |mikekagan...@hotmail.com
   |desktop.org |

--- Comment #5 from Mike Kaganski  ---
A patch is submitted for review: https://gerrit.libreoffice.org/33244

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


[Libreoffice-bugs] [Bug 105095] Tab after autonumbering footnote vanishes in docx format - not in odt

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

Aron Budea  changed:

   What|Removed |Added

 CC||vmik...@collabora.co.uk

--- Comment #6 from Aron Budea  ---
Hm, the tab doesn't look fake here, but maybe Miklos can explain. The current
behavior started with the commit referenced below, adding Cc: to Miklos Vajna,
please take a look.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=b38629ae210b204a6d24d6e9c5c62eaaf563d494
author  Miklos Vajna   2013-12-05 10:33:56
(GMT)
committer   Miklos Vajna   2013-12-05 10:50:42
(GMT)

"cp#117 DOCX/RTF import: avoid fake tab char in footnotes"

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


[Libreoffice-bugs] [Bug 105095] Tab after autonumbering footnote vanishes in docx format - not in odt

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

Aron Budea  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected

--- Comment #5 from Aron Budea  ---
95bfb76aa0b9fae094d3111dbfc58c29e63975df is the first bad commit
commit 95bfb76aa0b9fae094d3111dbfc58c29e63975df
Author: Matthew Francis 
Date:   Thu May 28 17:37:23 2015 +0800

source-hash-b38629ae210b204a6d24d6e9c5c62eaaf563d494

commit b38629ae210b204a6d24d6e9c5c62eaaf563d494
Author: Miklos Vajna 
AuthorDate: Thu Dec 5 11:33:56 2013 +0100
Commit: Miklos Vajna 
CommitDate: Thu Dec 5 11:50:42 2013 +0100

cp#117 DOCX/RTF import: avoid fake tab char in footnotes

Word wants this, so it's added by the exporter to the document, but on
import we should ignore it.

Change-Id: Idcb669ba624bf462a50a85eb4aacf397afb6efe6

# bad: [74b89c3193673ba9897dc4a4541500ef6e8d9bf7]
source-hash-8f97326bdd3f42fc82aa5e1989fd03b0af1daf64
# good: [9c392cfdfe6e9a9bce98555ea989283a957aa3ad]
source-hash-fc8f44e82de4ebdd50ac5fbb9207cd1a59a927e3
git bisect start 'latest' 'oldest'
# bad: [e289d9d328719fd70e9a2680fd0e4f586a97b3be]
source-hash-3c0a7cf4f67720f2cca2c4eb543f838d5b644e7f
git bisect bad e289d9d328719fd70e9a2680fd0e4f586a97b3be
# bad: [0327d0bc45d60df0d1c8ac2470cf252b6bb8f780]
source-hash-38fed70782ae6ac6b0282897c7abc6fa33a6de9e
git bisect bad 0327d0bc45d60df0d1c8ac2470cf252b6bb8f780
# bad: [130c0f90cdc74b7300c74ee7d49c459ea8b8c4f4]
source-hash-4a969ac35174520f1ffeb4f919f5d7bb6d99a628
git bisect bad 130c0f90cdc74b7300c74ee7d49c459ea8b8c4f4
# bad: [a4ca1d9431eedeb3ce6b22b96cfabc5ccc3cb857]
source-hash-c85f1ed54f64bb7c7d309ec87df9ce8027a4a108
git bisect bad a4ca1d9431eedeb3ce6b22b96cfabc5ccc3cb857
# good: [b41194f886e84e8427e7c389e7cd8e66b888372a]
source-hash-0379f8b6393e99667584a2964bedf82e4306c2fa
git bisect good b41194f886e84e8427e7c389e7cd8e66b888372a
# good: [63e9dbb3a47ee35637f851efbdfb936aa31e5216]
source-hash-ef1b4c3a5ea6e70a3831d29133ca291aee89f177
git bisect good 63e9dbb3a47ee35637f851efbdfb936aa31e5216
# bad: [1bb6fa11d9e3cf955f59730f34094c726a9d931e]
source-hash-b0a16835ab401e8e973b2747aae4667129c13b4f
git bisect bad 1bb6fa11d9e3cf955f59730f34094c726a9d931e
# good: [405345a6365b10be18299c3eacd1ea8849d16cb1]
source-hash-eb45c69b64ef19a33e4c04c6eba3733f18f8b5fc
git bisect good 405345a6365b10be18299c3eacd1ea8849d16cb1
# bad: [3b48147989d130c819a4310d47d4149e4a0cddd9]
source-hash-b415ec8cad8224c58d149626ddc3365575aa855e
git bisect bad 3b48147989d130c819a4310d47d4149e4a0cddd9
# bad: [874fcbc111d4a282b5997e2ecbe49e09db0ee2f7]
source-hash-059cc67245a4f0a62589a0c877aea85e8859c435
git bisect bad 874fcbc111d4a282b5997e2ecbe49e09db0ee2f7
# good: [97411235470b032554fe24333bddc82202fade87]
source-hash-8735d039b00ba4f4ade0d0373b8c6341a9a4d763
git bisect good 97411235470b032554fe24333bddc82202fade87
# good: [230f1c77edc41604522c18a63216201afd74b916]
source-hash-4eaa08f1d4e110dd3c3f464eaf9e7c526b7c28f7
git bisect good 230f1c77edc41604522c18a63216201afd74b916
# good: [76e5a40ae20b4e33a0591b235bf51dee27d4f8dc]
source-hash-215f87fb53164a5fc9af13acdad7fdada2117b60
git bisect good 76e5a40ae20b4e33a0591b235bf51dee27d4f8dc
# bad: [95bfb76aa0b9fae094d3111dbfc58c29e63975df]
source-hash-b38629ae210b204a6d24d6e9c5c62eaaf563d494
git bisect bad 95bfb76aa0b9fae094d3111dbfc58c29e63975df
# first bad commit: [95bfb76aa0b9fae094d3111dbfc58c29e63975df]
source-hash-b38629ae210b204a6d24d6e9c5c62eaaf563d494

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


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

2017-01-17 Thread Zdeněk Crhonek
 sc/qa/unit/data/functions/addin/fods/dec2bin.fods | 5713 +
 sc/qa/unit/data/functions/addin/fods/dec2hex.fods | 5873 +
 sc/qa/unit/data/functions/addin/fods/dec2oct.fods | 5919 ++
 sc/qa/unit/data/functions/addin/fods/delta.fods   | 5705 +
 4 files changed, 23210 insertions(+)

New commits:
commit c06ca5e183c232766468af4ce631e1eda130e7f9
Author: Zdeněk Crhonek 
Date:   Tue Jan 17 20:28:47 2017 +0100

add DELTA,DEC2BIN,DEC2OCT,DEC2HEX test case

Change-Id: Ia157943a1fa5d734691490943a5874fed3951655
Reviewed-on: https://gerrit.libreoffice.org/33231
Tested-by: Jenkins 
Reviewed-by: Zdenek Crhonek 

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

[Libreoffice-bugs] [Bug 101705] Text selection area not showing, or scrambling words inside text selection area

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

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #6 from Aron Budea  ---
Can you please retest with the latest 5.2.4.2 or 5.3.0.1 (RC) releases? Bug
99927 doesn't occur anymore, we can see now if they're related.

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


[Libreoffice-bugs] [Bug 99146] Duplication of footer

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

Karthikeyan Krishnamurthi  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 99927] Changing font in certain cases causes visual glitches in UI ( eg. blank menus and dialogs)

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

Aron Budea  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

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


[Libreoffice-bugs] [Bug 99927] Changing font in certain cases causes visual glitches in UI ( eg. blank menus and dialogs)

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

Aron Budea  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #8 from Aron Budea  ---
I can't reproduce the visual glitches anymore in 5.2.3.3 and 5.3.0.1 / Ubuntu
16.04. Please retest.

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


[Libreoffice-bugs] [Bug 85741] TRACK CHANGES: Automatic activation of the changes toolbar when a user enables record

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

--- Comment #5 from Kevin Suo  ---
Well, finally I find the track changes standard toolbar icon. 
But in my opinion LibreOffice should still pop up the track changes toolbar
when start record.

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


[Libreoffice-bugs] [Bug 85741] TRACK CHANGES: Automatic activation of the changes toolbar when a user enables record

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

--- Comment #4 from Kevin Suo  ---
Remember that we also have track changes in Calc, so this bug should also apply
to Calc.

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


[Libreoffice-bugs] [Bug 85741] TRACK CHANGES: Automatic activation of the changes toolbar when a user enables record

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

Kevin Suo  changed:

   What|Removed |Added

 CC||suokunl...@126.com

--- Comment #3 from Kevin Suo  ---
No track changes toolbar appear when I hit "Edit -> Track Changes -> Start
Track Changes". This bug still exists in the most recent master and 5.3.

Am I missing something? Where is the uno command?

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


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

2017-01-17 Thread Justin Luth
 sw/qa/extras/ooxmlexport/data/tdf92470_footnoteRestart.docx |binary
 sw/qa/extras/ooxmlexport/ooxmlexport3.cxx   |9 +++
 sw/source/filter/ww8/docxattributeoutput.cxx|   14 
 3 files changed, 23 insertions(+)

New commits:
commit 34d32031ed2ab1969377abbc91981a056fe375b7
Author: Justin Luth 
Date:   Mon Jan 16 22:04:32 2017 +0300

tdf#92470 docxexport: add support for XML_numRestart

Although import handled whether footnote numbering restarted
every page, chapter(section) or document, that information
was not being exported in docx.

Change-Id: If9e0a1d53c8610b18b949fd918c5dd7d7bd94682
Reviewed-on: https://gerrit.libreoffice.org/33183
Tested-by: Jenkins 
Reviewed-by: Justin Luth 

diff --git a/sw/qa/extras/ooxmlexport/data/tdf92470_footnoteRestart.docx 
b/sw/qa/extras/ooxmlexport/data/tdf92470_footnoteRestart.docx
new file mode 100755
index 000..b874696
Binary files /dev/null and 
b/sw/qa/extras/ooxmlexport/data/tdf92470_footnoteRestart.docx differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport3.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport3.cxx
index f93ace6..e5e4880 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport3.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport3.cxx
@@ -49,6 +49,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 
@@ -110,6 +111,14 @@ DECLARE_OOXMLEXPORT_TEST(testFdo68787, "fdo68787.docx")
 CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getProperty(xPageStyle, 
"FootnoteLineRelativeWidth"));
 }
 
+DECLARE_OOXMLEXPORT_TEST(testTdf92470_footnoteRestart, 
"tdf92470_footnoteRestart.docx")
+{
+SwXTextDocument* pTextDoc = dynamic_cast(mxComponent.get());
+SwDoc* pDoc = pTextDoc->GetDocShell()->GetDoc();
+CPPUNIT_ASSERT( pDoc );
+CPPUNIT_ASSERT_EQUAL_MESSAGE( "Footnote doesn't restart every Page", 
FTNNUM_PAGE, pDoc->GetFootnoteInfo().eNum );
+}
+
 DECLARE_OOXMLEXPORT_TEST(testCharacterBorder, "charborder.odt")
 {
 uno::Reference xRun(getRun(getParagraph(1),1), 
uno::UNO_QUERY);
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index 8ac45b2..17a592d 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -6989,6 +6989,20 @@ void DocxAttributeOutput::WriteFootnoteEndnotePr( 
::sax_fastparser::FSHelperPtr
 if( info.nFootnoteOffset != 0 )
 fs->singleElementNS( XML_w, XML_numStart, FSNS( XML_w, XML_val ),
 OString::number( info.nFootnoteOffset + 1).getStr(), FSEND );
+
+const SwFootnoteInfo* pFootnoteInfo = dynamic_cast();
+if( pFootnoteInfo )
+{
+switch( pFootnoteInfo->eNum )
+{
+case FTNNUM_PAGE:   fmt = "eachPage"; break;
+case FTNNUM_CHAPTER:fmt = "eachSect"; break;
+default:fmt = nullptr;break;
+}
+if( fmt != nullptr )
+fs->singleElementNS( XML_w, XML_numRestart, FSNS( XML_w, XML_val 
), fmt, FSEND );
+}
+
 if( listtag != 0 ) // we are writing to settings.xml, write also special 
footnote/endnote list
 { // there are currently only two hardcoded ones ( see FootnotesEndnotes())
 fs->singleElementNS( XML_w, listtag, FSNS( XML_w, XML_id ), "0", FSEND 
);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98671] FILESAVE ODP to PPT and PPTX issues

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

Elmar  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #4 from Elmar  ---
Thanks for commenting Timur.
I don't understand them, though.
The FILESAVE AS Microsoft (PPT/PPTX) format does not work.
I gave examples of how it is not working.

Surely one person works on a single function (like FILESAVE)

Are you seriously saying that that if there are 5 issues in this one function
FILESAVE, then one must report 5 bugs, and attach the source ODP, and result
PPT and PPTX to each one?

This sounds like a very ineffective approach and punishing to the bug reporter. 

What is the ration of MSO vs. LO users? 10:1, 100:1? If a PPT(X) does not
display the same way as the ODP I created, than I basically have to redo it in
Powerpoint. Who is prepared to live with that? It is not a matter of not being
willing or committed, but having to be able to pay bills as well.

My workaround is that I export the ODP to PDF and share that with others.

However, if a boss or client wants it in MS format, then that is not an option,
and I am forced to do the original file using Powerpoint.

In the mean time, I am now on LO Version: 5.3.0.1
I saved the original ODP to PPT, and Powerpoint 2010 cannot open the file.

I saved the ODP to PPTX: Powerpoint can open the file

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


[Libreoffice-bugs] [Bug 104828] Several proportional characters shifted to the left within vertical text (Tangut N4694)

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

--- Comment #12 from Volga  ---
Here is an example for how does such glyphs should looks like when they are
upright in vertical writing, I think this is suitable for Tangut N4694.

https://drafts.csswg.org/css-writing-modes-3/#valdef-text-orientation-upright

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


[Libreoffice-bugs] [Bug 104828] Several proportional characters shifted to the left within vertical text (Tangut N4694)

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

--- Comment #11 from Volga  ---
Here is an example for how does such glyphs should looks like when they are
upright in vertical writing:

https://drafts.csswg.org/css-writing-modes-3/#valdef-text-orientation-upright

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


[Libreoffice-bugs] [Bug 105382] File name is percent-encoded when minimize presentation on Impress

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

Takeshi Abe  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||t...@fixedpoint.jp
 Ever confirmed|0   |1

--- Comment #3 from Takeshi Abe  ---
Reproduced the behavior on LibO 5.2.4 on Debian jessie.

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


Wiki building linux dependencies page seems like needs adjustments

2017-01-17 Thread 김광연
I think the wiki dependency page seems like confusing and outdated.
1. deb-src http://http.debian.net/debian/ testing main


deb-src http://archive.ubuntu.com/ubuntu/ xenial main
this sentences are confusing to me. I think It would be less confusing to
For example:
In debian
deb-src http://http.debian.net/debian jessie main
In ubuntu
deb-src http://archive.ubuntu.com/ubuntu/ xenial main restricted
It would be enable to remove #.
2. In first dependency's requirments look like irrelevant.(After some test it 
would be clear)
3. Older debian's step seems irrelevant(I want to remove)
Do i fix it?

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


Re: Prublem building LO master in clang 3.6

2017-01-17 Thread Giuseppe Castagno

On 01/16/2017 10:33 AM, Stephan Bergmann wrote:
...



We removed plugin support for Clang < 3.4 with
,
and I'd like to bump the baseline again in the future, depending on the
oldest version that people are using (for a good reason).  Any specific
reason you're using Clang 3.6?


Not specifically.
I'm still on Ubuntu 14.04 and didn't have the time to install a more 
recent version (apparently 3.8 should be available on my distro).


Thanks.

--
Kind Regards,
Giuseppe Castagno aka beppec56
Acca Esse http://www.acca-esse.eu
giuseppe.castagno at acca-esse.eu
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2017-01-17 Thread Khaled Hosny
 i18npool/source/transliteration/ignoreDiacritics_CTL.cxx |   51 ---
 1 file changed, 29 insertions(+), 22 deletions(-)

New commits:
commit fa2eb4b43fc872c171129d477cfabe9fa29d78ce
Author: Khaled Hosny 
Date:   Tue Jan 17 15:15:36 2017 +0200

Some cleanups, tdf#105170 follow-up

* Do some sanity checks on the arguments.
* Use OUStringBuffer and append to it, instead of OUString.
* Fold the string at once when offsets aren’t needed.

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

diff --git a/i18npool/source/transliteration/ignoreDiacritics_CTL.cxx 
b/i18npool/source/transliteration/ignoreDiacritics_CTL.cxx
index c910b94..7f611bb 100644
--- a/i18npool/source/transliteration/ignoreDiacritics_CTL.cxx
+++ b/i18npool/source/transliteration/ignoreDiacritics_CTL.cxx
@@ -7,9 +7,10 @@
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  */
 
+#include 
 #include 
-#include 
 #include 
+#include 
 
 namespace com { namespace sun { namespace star { namespace i18n {
 
@@ -56,37 +57,43 @@ ignoreDiacritics_CTL::folding(const OUString& rInStr, 
sal_Int32 nStartPos,
 if (!m_transliterator)
 throw css::uno::RuntimeException();
 
-OUString aOutStr;
+if (nStartPos < 0 || nStartPos + nCount > rInStr.getLength())
+throw css::uno::RuntimeException();
 
-sal_Int32 nPosition = nStartPos;
-sal_Int32 nOffset = 0;
 if (useOffset)
+{
+OUStringBuffer aOutBuf(nCount);
 rOffset.realloc(nCount);
 
-while (nPosition < nStartPos + nCount)
-{
-sal_Int32 nIndex = nPosition;
-UChar32 nChar = rInStr.iterateCodePoints();
-UnicodeString aChar(nChar);
-m_transliterator->transliterate(aChar);
+sal_Int32 nPosition = nStartPos;
+sal_Int32 nOffset = 0;
+while (nPosition < nStartPos + nCount)
+{
+sal_Int32 nIndex = nPosition;
+UChar32 nChar = rInStr.iterateCodePoints();
+UnicodeString aUStr(nChar);
+m_transliterator->transliterate(aUStr);
 
-if (useOffset && nOffset + aChar.length() > rOffset.getLength())
-rOffset.realloc(rOffset.getLength() + aChar.length());
+if (nOffset + aUStr.length() > rOffset.getLength())
+rOffset.realloc(rOffset.getLength() + aUStr.length());
 
-for (int32_t i = 0; i < aChar.length(); i++)
-{
-aOutStr += OUStringLiteral1(aChar[i]);
-if (useOffset)
+aOutBuf.append(reinterpret_cast(aUStr.getBuffer()), aUStr.length());
+
+for (int32_t i = 0; i < aUStr.length(); i++)
 rOffset[nOffset++] = nPosition;
+
+nPosition = nIndex;
 }
 
-nPosition = nIndex;
+rOffset.realloc(aOutBuf.getLength());
+return aOutBuf.makeStringAndClear();
+}
+else
+{
+UnicodeString aUStr(reinterpret_cast(rInStr.getStr()) + 
nStartPos, nCount);
+m_transliterator->transliterate(aUStr);
+return OUString(reinterpret_cast(aUStr.getBuffer()), aUStr.length());
 }
-
-if (useOffset)
-rOffset.realloc(aOutStr.getLength());
-
-return aOutStr;
 }
 
 } } } }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 105400] White text disappears when opening Microsoft word document in LibreOffice

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

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

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

Please select on the Version field your LibreOffice version. (Menu/Help/About)

Could you try resetting the user profile, sometimes solves strange issues.
https://wiki.documentfoundation.org/UserProfile
Usually it's enough renaming/deleting the file
"user/registrymodifications.xcu",  it affects all the options in
Menu/Tools/Options, and the files "user/basic/dialog.xlc" and "scrip.xlc" are
overwritten, additionally custom colors in "user/config/standard.soc" are lost.

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


[Libreoffice-bugs] [Bug 105402] New: Resize from any corner but bottom right causes freeze

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

Bug ID: 105402
   Summary: Resize from any corner but bottom right causes freeze
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: m...@vt.edu

Created attachment 130515
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130515=edit
Screen capture of lowriter window after bug occurs.

Dragging any corner but the bottom right to resize causes all lowriter, localc,
loimpress, and lomath to freeze. Besides freezing, resizing like that causes
severe redraw artifacts (see attached file for an example). I am currently
using 4.3.3-2+deb8u5 (on Debian Jessie) but this has been happening for a long
time and I was unable to find the bug reported in bugzilla.

Steps to replicate:
- Start fresh Libreoffice
- Open a lowriter, localc, loimpress, or lomath document
- Grab any corner but the bottom right and resize

Expected result: that the window resizes just as it does when grabbing the
bottom right corner and resizing.

Actual result: the UI freezes (and perhaps the app too but I cannot tell) with
redraw artifacts in the window (see attachment for an example).

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


[Libreoffice-bugs] [Bug 105401] 5.3RC1 OS X: The Settings dialog is not sized properly for l10n strings

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

mi...@filmsi.net changed:

   What|Removed |Added

Summary|5.3RC1: The Settings dialog |5.3RC1 OS X: The Settings
   |is not sized properly for   |dialog is not sized
   |l10n strings|properly for l10n strings

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


[Libreoffice-bugs] [Bug 105401] 5.3RC1: The Settings dialog is not sized properly for l10n strings

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

--- Comment #1 from mi...@filmsi.net ---
Created attachment 130514
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130514=edit
Slovenian Settings dialog on OS X

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


[Libreoffice-bugs] [Bug 105401] New: 5.3RC1: The Settings dialog is not sized properly for l10n strings

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

Bug ID: 105401
   Summary: 5.3RC1: The Settings dialog is not sized properly for
l10n strings
   Product: LibreOffice
   Version: 5.3.0.1 rc
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mi...@filmsi.net

Description:
In the Slovenian UI of LO5.3RC2 (probably also earlier) the Settings dialog is
undersize, so a lot of strings and drop-box content gets cut, so the dialog is
not functional until the user doesn't stretch it with a mouse.

Steps to Reproduce:
1. Open LO Writer with Slovenian UI on OS X.
2. Select LibreOffice - Settings.
3. Go to the LibreOffice - View tab page.

Actual Results:  
The cut Slovenian strings, as shown in the attached screenshot.

Expected Results:
The dialog should size itself properly for the length of l10n strings.


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:50.0)
Gecko/20100101 Firefox/50.0

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


[Libreoffice-bugs] [Bug 105320] Dragging (reordering) slides on the Slides pane deletes slides instead

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

--- Comment #3 from Octavio Alvarez  ---
Ok, thanks for your feedback. I found the following interesting information:

1. It doesn't always happen now but after creating some slides and dragging the
first one to random locations between slides or even over existing slides,
causes the bug to eventually happen, losing the slide.

2. I tried resetting my profile and the problem doesn't go away.

3. Then I upgraded to 5.2.4.2.1+ (Debian Sid) and it still happens (also, not
always, but eventually).

4. The problem happens under VCL: gtk3, but not gtk2. I was testing on my
laptop and I couldn't reproduce it! ThenI noticed the following difference in
the About box: VCL: gtk3 vs VCL: gtk2.

I noticed that dragging on a gtk2 VCL turns the cursor into a "No" when sliding
over adjacent slides. I noticed that dragging on a gtk3 VCL turns the cursor
into a hand.

I installed libreoffice-gtk3 on my laptop and now the problem occurs too.

The bug is possibly Linux- or Unix-specific; possibly even GTK3-specific.


Package versions:
 - libreoffice-gtk3: 1:5.2.4-2
 - libgtk-3-0:amd64: 3.22.3-2


Workstation:

Version: 5.2.4.2.1+
Build ID: 1:5.2.4-2
CPU Threads: 8; OS Version: Linux 4.7; UI Render: default; VCL: gtk3; 
Locale: en-US (en_US.utf8); Calc: group


Laptop:

Version: 5.2.4.2.1+
Build ID: 1:5.2.4-2
CPU Threads: 4; OS Version: Linux 4.2; UI Render: default; VCL: gtk3; 
Locale: en-US (en_US.utf8); Calc: group

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


[Libreoffice-bugs] [Bug 95890] Feature Request: Labels duplicate all over page without ' Synchronize Labels'

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

anibal alvarez alvarez  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||ani.alvarez.alvarez@gmail.c
   ||om
   Assignee|libreoffice-b...@lists.free |ani.alvarez.alvarez@gmail.c
   |desktop.org |om
 Ever confirmed|0   |1

--- Comment #4 from anibal alvarez alvarez  ---
Created attachment 130513
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130513=edit
a graphic example

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


[Libreoffice-ux-advise] [Bug 95890] Feature Request: Labels duplicate all over page without ' Synchronize Labels'

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

anibal alvarez alvarez  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||ani.alvarez.alvarez@gmail.c
   ||om
   Assignee|libreoffice-b...@lists.free |ani.alvarez.alvarez@gmail.c
   |desktop.org |om
 Ever confirmed|0   |1

--- Comment #4 from anibal alvarez alvarez  ---
Created attachment 130513
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130513=edit
a graphic example

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


[Libreoffice-bugs] [Bug 105400] New: White text disappears when opening Microsoft word document in LibreOffice

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

Bug ID: 105400
   Summary: White text disappears when opening Microsoft word
document in LibreOffice
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: h.alemas...@gmail.com

Created attachment 130512
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130512=edit
bug image + original doc file

1. open the attached doc file in LibreOffice Writer
2. the white text will disappear

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


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

2017-01-17 Thread Michael Stahl
 download.lst   |4 
 external/python3/ExternalPackage_python3.mk|1 
 external/python3/UnpackedTarball_python3.mk|   13 
 external/python3/python-3.3.0-darwin.patch.1   |4 
 external/python3/python-3.3.0-msvc-disable.patch.1 |   13 
 external/python3/python-3.3.0-ssl.patch.1  |6 
 external/python3/python-3.3.3-py17797.patch.1  |   49 
 external/python3/python-3.5.0-tcltk.disable.patch  |   16 
 external/python3/python-lsan.patch.0   |   19 
 external/python3/python-vc2013.patch.1 | 1213 -
 external/python3/ubsan.patch.0 |   26 
 11 files changed, 20 insertions(+), 1344 deletions(-)

New commits:
commit 743f9fc86f3d3b6e87bf58c0654bcdccab0ab383
Author: Michael Stahl 
Date:   Tue Jan 17 15:38:11 2017 +0100

python3: upgrade to release 3.5.3

- fixes some minor CVEs
- drop python-vc2013.patch.1
- drop python-3.3.3-py17797.patch.1:
  the bug was fixed in MSVC2015 runtime so not relevant
- drop python-lsan.patch.0:
  fixed upstream
- ubsan.patch.0:
  drop hunks that were fixed upstream
- python-3.5.0-tcltk.disable.patch:
  merge into msvc-disable.patch.1

Change-Id: I2aecae446539d28eaf3eb64ee67581596019335d
Reviewed-on: https://gerrit.libreoffice.org/33225
Reviewed-by: David Ostrovsky 
Tested-by: Jenkins 
Reviewed-by: Michael Stahl 

diff --git a/download.lst b/download.lst
index 46584d0..86dd62e 100644
--- a/download.lst
+++ b/download.lst
@@ -140,8 +140,8 @@ ifeq ($(PYTHON_VERSION_MINOR),3)
 export PYTHON_MD5SUM := 803a75927f8f241ca78633890c798021
 export PYTHON_TARBALL := Python-3.3.5.tgz
 else
-export PYTHON_MD5SUM := a56c0c0b45d75a0ec9c6dee933c41c36
-export PYTHON_TARBALL := Python-3.5.0.tgz
+export PYTHON_MD5SUM := 6192f0e45f02575590760e68c621a488
+export PYTHON_TARBALL := Python-3.5.3.tgz
 endif
 
 export RAPTOR_TARBALL := a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz
diff --git a/external/python3/ExternalPackage_python3.mk 
b/external/python3/ExternalPackage_python3.mk
index 6cd766f..864c9cd 100644
--- a/external/python3/ExternalPackage_python3.mk
+++ b/external/python3/ExternalPackage_python3.mk
@@ -661,7 +661,6 @@ $(eval $(call 
gb_ExternalPackage_add_unpacked_files,python3,$(LIBO_BIN_FOLDER)/p
Lib/lib2to3/fixes/fix_asserts.py \
Lib/lib2to3/fixes/fix_basestring.py \
Lib/lib2to3/fixes/fix_buffer.py \
-   Lib/lib2to3/fixes/fix_callable.py \
Lib/lib2to3/fixes/fix_dict.py \
Lib/lib2to3/fixes/fix_except.py \
Lib/lib2to3/fixes/fix_execfile.py \
diff --git a/external/python3/UnpackedTarball_python3.mk 
b/external/python3/UnpackedTarball_python3.mk
index a70005b..f84b982 100644
--- a/external/python3/UnpackedTarball_python3.mk
+++ b/external/python3/UnpackedTarball_python3.mk
@@ -19,17 +19,14 @@ $(eval $(call gb_UnpackedTarball_add_patches,python3,\
external/python3/i100492-freebsd.patch.1 \
$(if $(filter AIX,$(OS)),external/python3/python-3.3.3-aix.patch.1) \
external/python3/python-3.3.0-darwin.patch.1 \
-   external/python3/python-3.3.0-msvc-disable.patch.1 \
external/python3/python-3.3.0-ssl.patch.1 \
-   external/python3/python-3.3.3-py17797.patch.1 \
+   external/python3/python-3.3.0-msvc-disable.patch.1 \
external/python3/python-3.3.0-i42553.patch.2 \
external/python3/python-3.3.0-pythreadstate.patch.1 \
external/python3/python-3.3.0-clang.patch.1 \
external/python3/python-3.3.5-pyexpat-symbols.patch.1 \
-   external/python3/python-lsan.patch.0 \
external/python3/ubsan.patch.0 \
external/python3/python-3.5.tweak.strip.soabi.patch \
-   external/python3/python-3.5.0-tcltk.disable.patch \
 ))
 
 ifneq ($(filter DRAGONFLY FREEBSD LINUX NETBSD OPENBSD SOLARIS,$(OS)),)
@@ -44,14 +41,6 @@ $(eval $(call gb_UnpackedTarball_add_patches,python3,\
 ))
 endif
 
-ifeq ($(OS)-$(COM),WNT-MSC)
-ifneq ($(filter 120,$(VCVER)),)
-$(eval $(call gb_UnpackedTarball_add_patches,python3,\
-   external/python3/python-vc2013.patch.1 \
-))
-endif
-endif
-
 ifneq ($(SYSTEM_ZLIB),TRUE)
 $(eval $(call gb_UnpackedTarball_add_patches,python3, \
 external/python3/internal-zlib.patch.0 \
diff --git a/external/python3/python-3.3.0-darwin.patch.1 
b/external/python3/python-3.3.0-darwin.patch.1
index 2cf5bbb..d5cb17e 100644
--- a/external/python3/python-3.3.0-darwin.patch.1
+++ b/external/python3/python-3.3.0-darwin.patch.1
@@ -27,8 +27,6 @@ diff -ru python3.orig/configure python3/configure
 LIPO_32BIT_FLAGS=""
 ARCH_RUN_32BIT=""
 ;;
-Only in python3: .#configure
-Only in python3: #configure#
 diff -ru python3.orig/Mac/Makefile.in python3/Mac/Makefile.in
 --- python3.orig/Mac/Makefile.in   2015-07-05 18:50:07.0 +0200
 

[Libreoffice-bugs] [Bug 105389] Font size for Heading 1-10 are displayed in percentages and not in points

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

--- Comment #4 from Cor Nouws  ---
(In reply to Tomaz Vajngerl from comment #3)
> There is one UI flaw here as it is possible to enter either percentages or
> points. If you manually enter size and add "pt" ("24 pt" for example) the
> size will be that absolute value, but this is very hard to discover for a
> user (I just tried it by trial-and-error).

Indeed. I 'just' know it because I've read it somewhere..
What about a popup on the size box, for the condition that a percentage is
shown?

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


[Libreoffice-bugs] [Bug 105399] New: smart art corners altered after opening Microsoft pptx in Impress

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

Bug ID: 105399
   Summary: smart art corners altered after opening Microsoft pptx
in Impress
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: h.alemas...@gmail.com

Created attachment 130511
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130511=edit
slide + bug image

1. open the attached slide in Impress. 
2. the corners of smart art get altered.

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


[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-2-0' - wsd/LOOLWebSocket.hpp

2017-01-17 Thread Tor Lillqvist
 wsd/LOOLWebSocket.hpp |1 +
 1 file changed, 1 insertion(+)

New commits:
commit ce9c04d5da32046e9360405c340641f971a0df2e
Author: Tor Lillqvist 
Date:   Fri Dec 2 14:32:11 2016 +0200

Log also the frame as received

diff --git a/wsd/LOOLWebSocket.hpp b/wsd/LOOLWebSocket.hpp
index 4174591..35074c6 100644
--- a/wsd/LOOLWebSocket.hpp
+++ b/wsd/LOOLWebSocket.hpp
@@ -109,6 +109,7 @@ public:
 while (poll(waitTime, Poco::Net::Socket::SELECT_READ))
 {
 const int n = Poco::Net::WebSocket::receiveFrame(buffer, length, 
flags);
+LOG_TRC("Got frame: " << 
LOOLProtocol::getAbbreviatedFrameDump(buffer, n, flags));
 if ((flags & WebSocket::FRAME_OP_BITMASK) == 
WebSocket::FRAME_OP_PING)
 {
 sendFrame(buffer, n, WebSocket::FRAME_FLAG_FIN | 
WebSocket::FRAME_OP_PONG);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 105384] svg images too small and misplaced within bounding box

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

--- Comment #5 from Regina Henschel  ---
Created attachment 130510
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130510=edit
document used for the screenshots

And here the document, which I have used for the screenshots.

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


[Libreoffice-bugs] [Bug 105384] svg images too small and misplaced within bounding box

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

--- Comment #4 from Regina Henschel  ---
Created attachment 130509
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130509=edit
screenshot LO 5.1

The Version: 5.1.0.0.alpha1+
Build ID: fdafa5302df26df4f147b0d2efb6064389a1330c
TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2015-08-22_23:42:26
Locale: de-DE (de_DE)
does not render the image element at all. Therefore the bounding box is not
extended, but is equal to the size given by the viewBox attribute.

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


[Libreoffice-bugs] [Bug 105384] svg images too small and misplaced within bounding box

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

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #3 from Regina Henschel  ---
Created attachment 130508
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130508=edit
screenshot LO 5.4

The version Version: 5.4.0.0.alpha0+
Build ID: 99eed8293d9a9689788a4134dd05d5c20c5a
CPU Threads: 4; OS Version: Windows 6.1; UI Render: default; 
TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2017-01-14_23:37:30
Locale: de-DE (de_DE); Calc: group
renders the embedded image. And this image is larger than the dimension given
by the viewBox attribute. With its attribute overflow:visible it forces a large
bounding box.

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


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

2017-01-17 Thread Michael Stahl
 cppuhelper/source/loadsharedlibcomponentfactory.hxx |2 
 cppuhelper/source/servicemanager.cxx|   45 ---
 cppuhelper/source/servicemanager.hxx|4 -
 cppuhelper/source/shlib.cxx |   77 ++--
 4 files changed, 94 insertions(+), 34 deletions(-)

New commits:
commit 6ef033669762a0c7ce70c111458437d5e727a4ae
Author: Michael Stahl 
Date:   Fri Jan 13 23:40:51 2017 +0100

cppuhelper: implement environment mapping for constructor functions

ae3a0c8da50b36db395984637f5ad74d3b4887bc unfortunately forgot to
implement mapping between UNO environments for constructor functions
in the UNO service manager, and due to the many componennt conversions
to constructor functions since then, the log UNO purpose environment
has become mostly useless.

Save the environment, create a closure today!

https://wiki.openoffice.org/wiki/Uno/Spec/Log_Environment

Change-Id: Idc03b5ed9529da8e81cd91efe50cbeceffa2b247
Reviewed-on: https://gerrit.libreoffice.org/33060
Tested-by: Jenkins 
Reviewed-by: Michael Stahl 

diff --git a/cppuhelper/source/loadsharedlibcomponentfactory.hxx 
b/cppuhelper/source/loadsharedlibcomponentfactory.hxx
index 7062d86..df6e226 100644
--- a/cppuhelper/source/loadsharedlibcomponentfactory.hxx
+++ b/cppuhelper/source/loadsharedlibcomponentfactory.hxx
@@ -35,7 +35,7 @@ void loadSharedLibComponentFactory(
 rtl::OUString const & prefix, rtl::OUString const & implementation,
 rtl::OUString const & constructor,
 css::uno::Reference const & 
serviceManager,
-ImplementationConstructorFn ** constructorFunction,
+WrapperConstructorFn * constructorFunction,
 css::uno::Reference * factory);
 
 } }
diff --git a/cppuhelper/source/servicemanager.cxx 
b/cppuhelper/source/servicemanager.cxx
index 780fe02..6d2321c 100644
--- a/cppuhelper/source/servicemanager.cxx
+++ b/cppuhelper/source/servicemanager.cxx
@@ -686,9 +686,9 @@ 
cppuhelper::ServiceManager::Data::Implementation::createInstance(
 bool singletonRequest)
 {
 css::uno::Reference inst;
-if (constructor != nullptr) {
+if (constructor) {
 inst.set(
-(*constructor)(context.get(), css::uno::Sequence()),
+constructor(context.get(), css::uno::Sequence()),
 SAL_NO_ACQUIRE);
 } else if (factory1.is()) {
 inst = factory1->createInstanceWithContext(context);
@@ -706,8 +706,8 @@ 
cppuhelper::ServiceManager::Data::Implementation::createInstanceWithArguments(
 bool singletonRequest, css::uno::Sequence const & arguments)
 {
 css::uno::Reference inst;
-if (constructor != nullptr) {
-inst.set((*constructor)(context.get(), arguments), SAL_NO_ACQUIRE);
+if (constructor) {
+inst.set(constructor(context.get(), arguments), SAL_NO_ACQUIRE);
 //HACK: The constructor will either observe arguments and return inst
 // that does not implement XInitialization (or null), or ignore
 // arguments and return inst that implements XInitialization; this
@@ -797,7 +797,7 @@ void cppuhelper::ServiceManager::loadImplementation(
 "Cannot expand URI" + implementation->info->uri + ": " + e.Message,
 static_cast< cppu::OWeakObject * >(this));
 }
-cppuhelper::ImplementationConstructorFn * ctor = nullptr;
+cppuhelper::WrapperConstructorFn ctor;
 css::uno::Reference< css::uno::XInterface > f0;
 // Special handling of SharedLibrary loader, with support for environment,
 // constructor, and prefix arguments:
@@ -808,27 +808,8 @@ void cppuhelper::ServiceManager::loadImplementation(
 uri, implementation->info->environment,
 implementation->info->prefix, implementation->info->name,
 implementation->info->constructor, this, , );
-if (ctor != nullptr) {
+if (ctor) {
 assert(!implementation->info->environment.isEmpty());
-css::uno::Environment curEnv(css::uno::Environment::getCurrent());
-if (!curEnv.is()) {
-throw css::uno::DeploymentException(
-"cannot get current environment",
-css::uno::Reference());
-}
-css::uno::Environment env(
-cppuhelper::detail::getEnvironment(
-implementation->info->environment,
-implementation->info->name));
-if (!env.is()) {
-throw css::uno::DeploymentException(
-("cannot get environment "
- + implementation->info->environment),
-css::uno::Reference());
-}
-if (curEnv.get() != env.get()) {
-std::abort();//TODO
-}
 }
 } else {
 SAL_WARN_IF(
@@ -864,7 +845,7 @@ void cppuhelper::ServiceManager::loadImplementation(
  

[Libreoffice-bugs] [Bug 105398] New: Issue with alignment after opening pptx in Impress

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

Bug ID: 105398
   Summary: Issue with alignment after opening pptx in Impress
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: h.alemas...@gmail.com

Created attachment 130507
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130507=edit
photo of misplaced arrows vs original + original slide

1. Opened a microsoft pptx file containing a flowchart in LibreOffice Impress
2. The arrows in the flowchart are misplaced

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


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

2017-01-17 Thread Eike Rathke
 desktop/source/app/langselect.cxx |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

New commits:
commit 57f66925d4c43dad7b0e2e67f91fc4d965f3f92d
Author: Eike Rathke 
Date:   Tue Jan 17 22:59:01 2017 +0100

set the default startup document locale fallback to work locale, not UI 
locale

Do as the comment says and #i32939# intended but never was implemented. This
matters only for initial startups when no document locale at all (of the
locale's corresponding western/cjk/ctl type) is configured yet, to 
preselect a
matching locale for each under Tools->Options.

Change-Id: I73588568dd34b0f7807588194579b95cde33f0fd

diff --git a/desktop/source/app/langselect.cxx 
b/desktop/source/app/langselect.cxx
index 9b52d8a4..ea3f605 100644
--- a/desktop/source/app/langselect.cxx
+++ b/desktop/source/app/langselect.cxx
@@ -155,6 +155,7 @@ bool prepareLocale() {
 }
 }
 MsLangId::setConfiguredSystemUILanguage(tag.getLanguageType(false));
+
 OUString setupSysLoc(officecfg::Setup::L10N::ooSetupSystemLocale::get());
 LanguageTag::setConfiguredSystemLanguage(
 setupSysLoc.isEmpty()
@@ -162,7 +163,11 @@ bool prepareLocale() {
 : LanguageTag(setupSysLoc).getLanguageType(false));
 // #i32939# setting of default document locale
 // #i32939# this should not be based on the UI language
-setMsLangIdFallback(locale);
+// So obtain the system locale now configured just above and pass it on,
+// resolved of course.
+LanguageTag docTag(LANGUAGE_SYSTEM);
+setMsLangIdFallback(docTag.getBcp47());
+
 foundLocale = locale;
 return true;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-01-17 Thread Stephan Bergmann
 filter/source/graphicfilter/idxf/dxfentrd.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 63102c87a91e90f6b8116ba73695ede0c96bb0c3
Author: Stephan Bergmann 
Date:   Tue Jan 17 22:51:16 2017 +0100

loplugin:loopvartoosmall

Change-Id: I2238bfbbfa1ad7567907ee627daa47e255825b4b

diff --git a/filter/source/graphicfilter/idxf/dxfentrd.cxx 
b/filter/source/graphicfilter/idxf/dxfentrd.cxx
index a91ecb2..8c8eb30 100644
--- a/filter/source/graphicfilter/idxf/dxfentrd.cxx
+++ b/filter/source/graphicfilter/idxf/dxfentrd.cxx
@@ -562,8 +562,8 @@ DXFBoundaryPathData::DXFBoundaryPathData() :
 
 DXFBoundaryPathData::~DXFBoundaryPathData()
 {
-for (sal_uInt32 i = 0; i < aEdges.size(); ++i)
-delete aEdges[ i ];
+for (auto i: aEdges)
+delete i;
 }
 
 bool DXFBoundaryPathData::EvaluateGroup( DXFGroupReader & rDGR )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 105395] Footer Altered for some pptx after opening in Impress

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

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||filter:pptx

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


[Libreoffice-bugs] [Bug 105395] Footer Altered for some pptx after opening in Impress

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

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #3 from Xisco Faulí  ---
master slide contains the grass image in the bottom.

Confirmed in

Version: 5.4.0.0.alpha0+
Build ID: 36afb355ac37122d32d624db079def123ef548a2
CPU Threads: 4; OS Version: Linux 4.8; UI Render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group

and

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

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


[Libreoffice-bugs] [Bug 105395] Footer Altered for some pptx after opening in Impress

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

Xisco Faulí  changed:

   What|Removed |Added

 Attachment #130503|0   |1
is obsolete||

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


[Libreoffice-bugs] [Bug 105395] Footer Altered for some pptx after opening in Impress

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

--- Comment #2 from Xisco Faulí  ---
Created attachment 130506
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130506=edit
comparison

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


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

2017-01-17 Thread Stephan Bergmann
 fpicker/source/aqua/resourceprovider.mm |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 13ea44d04f2a68644b67e4b2110211d0a5ddf29c
Author: Stephan Bergmann 
Date:   Tue Jan 17 22:33:39 2017 +0100

loplugin:conststringvar

Change-Id: I0ec2a87a063e35f8539bc278acb13b591e64b995

diff --git a/fpicker/source/aqua/resourceprovider.mm 
b/fpicker/source/aqua/resourceprovider.mm
index ab406b3..51453e9 100644
--- a/fpicker/source/aqua/resourceprovider.mm
+++ b/fpicker/source/aqua/resourceprovider.mm
@@ -35,8 +35,8 @@ using rtl::OUString;
 using namespace ::com::sun::star::ui::dialogs::ExtendedFilePickerElementIds;
 using namespace ::com::sun::star::ui::dialogs::CommonFilePickerElementIds;
 
-static const char* RES_NAME = "fps_office";
-static const char* OTHER_RES_NAME = "svt";
+static const char* const RES_NAME = "fps_office";
+static const char* const OTHER_RES_NAME = "svt";
 
 // we have to translate control ids to resource ids
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 105395] Footer Altered for some pptx after opening in Impress

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #1 from Xisco Faulí  ---
Created attachment 130505
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130505=edit
document

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


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

2017-01-17 Thread Caolán McNamara
 filter/source/graphicfilter/idxf/dxfentrd.cxx |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

New commits:
commit 50a3e578e82a11c3106927b0f59e7d6e19770cc0
Author: Caolán McNamara 
Date:   Tue Jan 17 21:35:40 2017 +

ofz: fix other similar pattern

Change-Id: Ida04023df12186ef299c7f82e85778af7edb7d0a

diff --git a/filter/source/graphicfilter/idxf/dxfentrd.cxx 
b/filter/source/graphicfilter/idxf/dxfentrd.cxx
index a3e64f1..a91ecb2 100644
--- a/filter/source/graphicfilter/idxf/dxfentrd.cxx
+++ b/filter/source/graphicfilter/idxf/dxfentrd.cxx
@@ -424,6 +424,8 @@ void DXFLWPolyLineEntity::EvaluateGroup( DXFGroupReader & 
rDGR )
 // limit alloc to max reasonable size based on remaining data in 
stream
 if (nCount > 0 && static_cast(nCount) <= 
rDGR.remainingSize())
 pP.reset( new DXFVector[ nCount ] );
+else
+nCount = 0;
 }
 break;
 case 70: nFlags = rDGR.GetI(); break;
@@ -581,8 +583,11 @@ bool DXFBoundaryPathData::EvaluateGroup( DXFGroupReader & 
rDGR )
 case 93 :
 {
 nPointCount = rDGR.GetI();
-if ( nPointCount )
+// limit alloc to max reasonable size based on remaining data 
in stream
+if (nPointCount > 0 && static_cast(nPointCount) <= 
rDGR.remainingSize())
 pP.reset( new DXFVector[ nPointCount ] );
+else
+nPointCount = 0;
 }
 break;
 case 72 : nHasBulgeFlag = rDGR.GetI(); break;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 105353] Crash in: ImplHandleUserEvent

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

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #3 from Xisco Faulí  ---
Hello Ramon,

Thank you for reporting the bug. Please attach a sample document, as this makes
it easier for us to verify the bug. 
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested document is provided.
(Please note that the attachment will be public, remove any sensitive
information before attaching it. 
See
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
for help on how to do so.)

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


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

2017-01-17 Thread Caolán McNamara
 filter/source/graphicfilter/idxf/dxfentrd.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 2a9b4363ca190f1d783d540e95a031357f852858
Author: Caolán McNamara 
Date:   Tue Jan 17 21:25:28 2017 +

ofz#415 crash in DXFVector::DXFVector

Change-Id: Ia8edfebd0b69ed2500e2c3f575d51f40dc8718c0

diff --git a/filter/source/graphicfilter/idxf/dxfentrd.cxx 
b/filter/source/graphicfilter/idxf/dxfentrd.cxx
index f9a5d97..a3e64f1 100644
--- a/filter/source/graphicfilter/idxf/dxfentrd.cxx
+++ b/filter/source/graphicfilter/idxf/dxfentrd.cxx
@@ -421,7 +421,8 @@ void DXFLWPolyLineEntity::EvaluateGroup( DXFGroupReader & 
rDGR )
 case 90 :
 {
 nCount = rDGR.GetI();
-if ( nCount )
+// limit alloc to max reasonable size based on remaining data in 
stream
+if (nCount > 0 && static_cast(nCount) <= 
rDGR.remainingSize())
 pP.reset( new DXFVector[ nCount ] );
 }
 break;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-01-17 Thread Caolán McNamara
 filter/source/graphicfilter/idxf/dxfentrd.cxx |5 -
 filter/source/graphicfilter/idxf/dxfgrprd.cxx |4 
 filter/source/graphicfilter/idxf/dxfgrprd.hxx |1 +
 3 files changed, 9 insertions(+), 1 deletion(-)

New commits:
commit 5434d51d12611eb2726ce1394eb01921d008fa89
Author: Caolán McNamara 
Date:   Tue Jan 17 21:19:13 2017 +

ofz#414 crash in DXFHatchEntity::EvaluateGroup

Change-Id: I15c8cb7aeb8c45f32357afd0ea2f550ffe11dbf7

diff --git a/filter/source/graphicfilter/idxf/dxfentrd.cxx 
b/filter/source/graphicfilter/idxf/dxfentrd.cxx
index 2c03206..f9a5d97 100644
--- a/filter/source/graphicfilter/idxf/dxfentrd.cxx
+++ b/filter/source/graphicfilter/idxf/dxfentrd.cxx
@@ -659,8 +659,11 @@ void DXFHatchEntity::EvaluateGroup( DXFGroupReader & rDGR )
 {
 bIsInBoundaryPathContext = true;
 nBoundaryPathCount = rDGR.GetI();
-if ( nBoundaryPathCount )
+// limit alloc to max reasonable size based on remaining data in 
stream
+if (nBoundaryPathCount > 0 && 
static_cast(nBoundaryPathCount) <= rDGR.remainingSize())
 pBoundaryPathData.reset( new DXFBoundaryPathData[ 
nBoundaryPathCount ] );
+else
+nBoundaryPathCount = 0;
 }
 break;
 case 75 :
diff --git a/filter/source/graphicfilter/idxf/dxfgrprd.cxx 
b/filter/source/graphicfilter/idxf/dxfgrprd.cxx
index caa2c42..a6c02a4 100644
--- a/filter/source/graphicfilter/idxf/dxfgrprd.cxx
+++ b/filter/source/graphicfilter/idxf/dxfgrprd.cxx
@@ -217,5 +217,9 @@ void DXFGroupReader::ReadS()
 S = DXFReadLine(rIS);
 }
 
+sal_uInt64 DXFGroupReader::remainingSize() const
+{
+return rIS.remainingSize();
+}
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/filter/source/graphicfilter/idxf/dxfgrprd.hxx 
b/filter/source/graphicfilter/idxf/dxfgrprd.hxx
index c936b33..09bbcd3 100644
--- a/filter/source/graphicfilter/idxf/dxfgrprd.hxx
+++ b/filter/source/graphicfilter/idxf/dxfgrprd.hxx
@@ -59,6 +59,7 @@ public:
 // This read must have returned a group code for datatype String.
 // If not NULL is returend
 
+sal_uInt64 remainingSize() const;
 private:
 
 long   ReadI();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-01-17 Thread Stephan Bergmann
 avmedia/source/macavf/player.mm |2 +-
 avmedia/source/macavf/window.mm |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit be2c955afda01680630f6988a1edcc55fd86fe22
Author: Stephan Bergmann 
Date:   Tue Jan 17 22:19:34 2017 +0100

loplugin:stringconstant

Change-Id: Ia8e65f768d47dbbec126545aa1cf859efa59cc38

diff --git a/avmedia/source/macavf/player.mm b/avmedia/source/macavf/player.mm
index c573a0f..bd63aca 100644
--- a/avmedia/source/macavf/player.mm
+++ b/avmedia/source/macavf/player.mm
@@ -362,7 +362,7 @@ uno::Reference< media::XFrameGrabber > SAL_CALL 
Player::createFrameGrabber()
 ::rtl::OUString SAL_CALL Player::getImplementationName(  )
 throw (uno::RuntimeException)
 {
-return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( 
AVMEDIA_MACAVF_PLAYER_IMPLEMENTATIONNAME ) );
+return ::rtl::OUString( AVMEDIA_MACAVF_PLAYER_IMPLEMENTATIONNAME );
 }
 
 
diff --git a/avmedia/source/macavf/window.mm b/avmedia/source/macavf/window.mm
index 805ee26..b1c64d8 100644
--- a/avmedia/source/macavf/window.mm
+++ b/avmedia/source/macavf/window.mm
@@ -268,7 +268,7 @@ void SAL_CALL Window::removeEventListener( const 
uno::Reference< lang::XEventLis
 ::rtl::OUString SAL_CALL Window::getImplementationName(  )
 throw (uno::RuntimeException)
 {
-return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( 
AVMEDIA_MACAVF_WINDOW_IMPLEMENTATIONNAME ) );
+return ::rtl::OUString( AVMEDIA_MACAVF_WINDOW_IMPLEMENTATIONNAME );
 }
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-2' - comphelper/source include/comphelper oox/source package/inc package/source

2017-01-17 Thread Kohei Yoshida
 comphelper/source/misc/storagehelper.cxx |   46 
 include/comphelper/storagehelper.hxx |6 +
 oox/source/helper/zipstorage.cxx |4 -
 package/inc/ZipFile.hxx  |5 +
 package/source/xstor/xfactory.cxx|4 -
 package/source/xstor/xstorage.cxx|3 
 package/source/zipapi/ZipFile.cxx|  118 +--
 package/source/zippackage/ZipPackage.cxx |6 +
 8 files changed, 166 insertions(+), 26 deletions(-)

New commits:
commit c418c2c310d2d0b1dbb119d1c25c2418e3de06ef
Author: Kohei Yoshida 
Date:   Fri Jan 13 20:47:46 2017 -0500

tdf#97597: Ensure that each parsing thread has its own buffer.

(cherry picked from commit 4ae705d02df0ddf75b97d0e94add6994626f487e)

Change-Id: I93077f954a49b3922930e4fc86c80228be0f4dd2
Reviewed-on: https://gerrit.libreoffice.org/33069
Tested-by: Jenkins 
Reviewed-by: Kohei Yoshida 
Reviewed-on: https://gerrit.libreoffice.org/33179
Reviewed-by: Michael Stahl 

diff --git a/comphelper/source/misc/storagehelper.cxx 
b/comphelper/source/misc/storagehelper.cxx
index 35756dc..fcd40fe 100644
--- a/comphelper/source/misc/storagehelper.cxx
+++ b/comphelper/source/misc/storagehelper.cxx
@@ -317,17 +317,28 @@ uno::Reference< embed::XStorage > 
OStorageHelper::GetStorageOfFormatFromInputStr
 const OUString& aFormat,
 const uno::Reference < io::XInputStream >& xStream,
 const uno::Reference< uno::XComponentContext >& rxContext,
-bool bRepairStorage )
+bool bRepairStorage, bool bUseBufferedStream )
 throw ( uno::Exception )
 {
 uno::Sequence< beans::PropertyValue > aProps( 1 );
-aProps[0].Name = "StorageFormat";
-aProps[0].Value <<= aFormat;
+sal_Int32 nPos = 0;
+aProps[nPos].Name = "StorageFormat";
+aProps[nPos].Value <<= aFormat;
+++nPos;
 if ( bRepairStorage )
 {
-aProps.realloc( 2 );
-aProps[1].Name = "RepairPackage";
-aProps[1].Value <<= bRepairStorage;
+aProps.realloc(nPos+1);
+aProps[nPos].Name = "RepairPackage";
+aProps[nPos].Value <<= bRepairStorage;
+++nPos;
+}
+
+if (bUseBufferedStream)
+{
+aProps.realloc(nPos+1);
+aProps[nPos].Name = "UseBufferedStream";
+aProps[nPos].Value <<= bUseBufferedStream;
+++nPos;
 }
 
 uno::Sequence< uno::Any > aArgs( 3 );
@@ -349,17 +360,28 @@ uno::Reference< embed::XStorage > 
OStorageHelper::GetStorageOfFormatFromStream(
 const uno::Reference < io::XStream >& xStream,
 sal_Int32 nStorageMode,
 const uno::Reference< uno::XComponentContext >& rxContext,
-bool bRepairStorage )
+bool bRepairStorage, bool bUseBufferedStream )
 throw ( uno::Exception )
 {
 uno::Sequence< beans::PropertyValue > aProps( 1 );
-aProps[0].Name = "StorageFormat";
-aProps[0].Value <<= aFormat;
+sal_Int32 nPos = 0;
+aProps[nPos].Name = "StorageFormat";
+aProps[nPos].Value <<= aFormat;
+++nPos;
 if ( bRepairStorage )
 {
-aProps.realloc( 2 );
-aProps[1].Name = "RepairPackage";
-aProps[1].Value <<= bRepairStorage;
+aProps.realloc(nPos+1);
+aProps[nPos].Name = "RepairPackage";
+aProps[nPos].Value <<= bRepairStorage;
+++nPos;
+}
+
+if (bUseBufferedStream)
+{
+aProps.realloc(nPos+1);
+aProps[nPos].Name = "UseBufferedStream";
+aProps[nPos].Value <<= bUseBufferedStream;
+++nPos;
 }
 
 uno::Sequence< uno::Any > aArgs( 3 );
diff --git a/include/comphelper/storagehelper.hxx 
b/include/comphelper/storagehelper.hxx
index d5655d4..6748198 100644
--- a/include/comphelper/storagehelper.hxx
+++ b/include/comphelper/storagehelper.hxx
@@ -154,7 +154,8 @@ public:
 const css::uno::Reference < css::io::XInputStream >& xStream,
 const css::uno::Reference< css::uno::XComponentContext >& rxContext
 = css::uno::Reference< css::uno::XComponentContext 
>(),
-bool bRepairStorage = false )
+bool bRepairStorage = false,
+bool bUseBufferedStream = false )
 throw ( css::uno::Exception );
 
 static css::uno::Reference< css::embed::XStorage >
@@ -164,7 +165,8 @@ public:
 sal_Int32 nStorageMode = css::embed::ElementModes::READWRITE,
 const css::uno::Reference< css::uno::XComponentContext >& rxContext
 = css::uno::Reference< css::uno::XComponentContext 
>(),
-bool bRepairStorage = false )
+bool bRepairStorage = false,
+bool bUseBufferedStream = false )
 throw ( css::uno::Exception );
 
 static css::uno::Sequence< css::beans::NamedValue >
diff --git a/oox/source/helper/zipstorage.cxx 

[Libreoffice-bugs] [Bug 105397] Hotmail customer service 1 877 424 6647 phone number for USA users

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

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
Version|1.13|3.3 all versions
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

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


[Libreoffice-bugs] [Bug 103063] FILEOPEN: DOCX - Crash on import file

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

--- Comment #11 from Xisco Faulí  ---
Verified in

Version: 5.4.0.0.alpha0+
Build ID: 4b3e8de6b3cb971b02aa0cb90aceb9e104071d3b
CPU Threads: 4; OS Version: Linux 4.8; UI Render: default; VCL: gtk2; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group

SAXParseException is the same as in bug 104181

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


[Libreoffice-bugs] [Bug 105397] New: Hotmail customer service 1 877 424 6647 phone number for USA users

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

Bug ID: 105397
   Summary: Hotmail customer service 1 877 424 6647 phone number
for USA users
   Product: cppunit
   Version: 1.13
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: pevocop...@9me.site

18774246647 Hotmail Customer Service, Support Number For Help
+18774246647 Hotmail Customer Service, Support Number For Help
+18774246647 Hotmail Customer Service, Support Number For Help
Hotmail phone number Hotmail+ phone+ number+ 18774246647 +Hotmail+ support+
phone+ number+Hotmail+ phone+ number+ 18774246647 +Hotmail+ support+ phone+
number Hotmail+ phone+ number+ 18774246647 +Hotmail+ support+ phone+
number+Hotmail+ phone+ number+ 18774246647 +Hotmail+ support+ phone+ number +
Hotmail+ phone+ number+ 18774246647 +Hotmail+ support+ phone+ number+ Hotmail+
phone+ number+ 18774246647 +Hotmail+ support+ phone+ number+ Hotmail+ phone+
number+ 18774246647 +Hotmail+ support+ phone+ number “Hotmail phone number”
18774246647 “Hotmail support phone number” “Hotmail phone number” 18774246647
“Hotmail support phone number” “Hotmail phone number” 18774246647 “Hotmail
support phone number” “Hotmail phone number” 18774246647 “Hotmail support phone
number” “Hotmail phone number” 18774246647 “Hotmail support phone number”
“Hotmail phone number” 18774246647 “Hotmail support phone number”
Hotmail number HOTMAIL 24 hour contact number, HOTMAIL customer support contact
number, HOTMAIL customer service contact number, HOTMAIL official number,
HOTMAIL official contact number, HOTMAIL 844 contact number, HOTMAIL toll free
number, 844 number for HOTMAIL support, HOTMAIL 24/7 support phone number
HOTMAIL support phone number,HOTMAIL support phone number,HOTMAIL help phone
number, HOTMAIL technical support number.HOTMAIL support number, HOTMAIL phone
number, HOTMAIL tech support number, HOTMAIL customer support number, HOTMAIL
customer support phone number, HOTMAIL customer service phone number, HOTMAIL
customer service phone number, HOTMAIL support phone number.Help@Call
1-844-424-6647/.HOTMAIL 24/7 support phone number,HOTMAIL telephone number for
support? call 1877-424-6647@./HOTMAIL contact number, HOTMAIL contact phone
number, HOTMAIL contact telephone number hotmail support phone number hotmail
customer service phone number hotmail tech support phone number hotmail
customer support phone number hotmail help phone number phone number for
hotmail hotmail phone support contact hotmail by phone hotmail com phone number
hotmail customer care phone number hotmail help desk phone number hotmail
contact phone number phone number for hotmail help center hotmail phone hotmail
com customer service phone number phone number for hotmail support hotmail
email support phone number phone number for hotmail com hotmail com help phone
number hotmail phone number support hotmail com contact phone number contact
hotmail phone number hotmail assistance phone number phone hotmail phone number
for hotmail help hotmail phone number help center hotmail troubleshooting phone
number hotmail email customer service phone number hotmail com support phone
number contact hotmail support by phone telephone number for HOTMAIL online
support,HOTMAIL official support number,HOTMAIL official number,HOTMAIL
official phone number,phone number for HOTMAIL support HOTMAIL 24/7 support
phone number HOTMAIL support number,HOTMAIL telephone number for support " =
HOTMAIL Contact Number 1 844 424 6647 = HOTMAIL Customer Service phone
number,HOTMAIL helpline phone number here. Describe HOTMAIL help desk phone
number,HOTMAIL helpline phone number here. HOTMAIL Payroll support phone
number, 1-844-424-6647 HOTMAIL tech support number Call, 1-844-424-6647 for all
type help by HOTMAIL tech support phone number, 1877-424-6647 Intuit HOTMAIL
Tech Support Phone Number, 1877-424-6647 HOTMAIL Help Desk Phone Number,
1877-424-6647 HOTMAIL tech support number, HOTMAIL technical support phone
number, 1877-424-6647 @ HOTMAIL phone number, 1877-424-6647 HOTMAIL technical
support number, 1877-424-6647 HOTMAIL support phone number, 1877-424-6647
HOTMAIL technical support, HOTMAIL Customer Service Phone Number, HOTMAIL
Customer Service Number, HOTMAIL Customer Support Phone Number, HOTMAIL
Customer Support Number, HOTMAIL Customer Service Helpline Number, HOTMAIL
Customer Care Number, HOTMAIL support team phone number, HOTMAIL help
number-HOTMAIL Helpline Number; HOTMAIL help phone number-HOTMAIL Helpline
Number, HOTMAIL Tech Support Toll free Number, HOTMAIL Support Telephone
Number, HOTMAIL Tech Support Telephone number, HOTMAIL Tech Support contact
number, HOTMAIL support contact number, HOTMAIL technical support contact
number. Call, HOTMAIL tech support phone number, Intuit 

[Libreoffice-bugs] [Bug 104450] [META] DOCX file opening issues

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

Bug 103063 Summary: FILEOPEN: DOCX - Crash on import file
https://bugs.documentfoundation.org/show_bug.cgi?id=103063

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 103063] FILEOPEN: DOCX - Crash on import file

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

Xisco Faulí  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 105392] FILEOPEN: DOCX: SAXParseException in footer

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

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #3 from Xisco Faulí  ---
(In reply to Mike Kaganski from comment #2)
> Looks exactly the same as bug 104181: after importing with SAXExceptions
> ignored, the rest of text after footnote anchor is moved to footnote text.

Hi Mike,
thanks for taking a look. I'll close this as RESOLVED DUPLICATED.
Regards

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

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


[Libreoffice-bugs] [Bug 104181] FILEOPEN: File format error found at unsatisfied query for interface of type com.sun.star.embed.XRelationshipAccess!

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

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

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


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

2017-01-17 Thread Caolán McNamara
 filter/source/graphicfilter/idxf/dxfentrd.cxx |6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

New commits:
commit 034ad80c3451f24efa1986eee3cd195ce6e1050b
Author: Caolán McNamara 
Date:   Tue Jan 17 21:09:04 2017 +

defaults are good enough

Change-Id: I37baafb8a55f3cd0aeb3e4f1633e1bea2bd9b76b

diff --git a/filter/source/graphicfilter/idxf/dxfentrd.cxx 
b/filter/source/graphicfilter/idxf/dxfentrd.cxx
index 28f3a39..2c03206 100644
--- a/filter/source/graphicfilter/idxf/dxfentrd.cxx
+++ b/filter/source/graphicfilter/idxf/dxfentrd.cxx
@@ -410,8 +410,7 @@ DXFLWPolyLineEntity::DXFLWPolyLineEntity() :
 nFlags( 0 ),
 fConstantWidth( 0.0 ),
 fStartWidth( 0.0 ),
-fEndWidth( 0.0 ),
-pP( nullptr )
+fEndWidth( 0.0 )
 {
 }
 
@@ -554,8 +553,7 @@ DXFBoundaryPathData::DXFBoundaryPathData() :
 nSourceBoundaryObjects( 0 ),
 nEdgeCount( 0 ),
 bIsPolyLine( true ),
-nPointIndex( 0 ),
-pP( nullptr )
+nPointIndex( 0 )
 {
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-01-17 Thread Caolán McNamara
 filter/source/graphicfilter/idxf/dxfentrd.cxx |   21 +
 filter/source/graphicfilter/idxf/dxfentrd.hxx |   10 --
 2 files changed, 5 insertions(+), 26 deletions(-)

New commits:
commit 9128d38cabfa5d2ed3dd51f6a767263df321c281
Author: Caolán McNamara 
Date:   Tue Jan 17 21:07:05 2017 +

drop now unnecessary dtors

Change-Id: I61dbac2004b2de0f78e01069e7e4099b073d6295

diff --git a/filter/source/graphicfilter/idxf/dxfentrd.cxx 
b/filter/source/graphicfilter/idxf/dxfentrd.cxx
index 892c0b3..28f3a39 100644
--- a/filter/source/graphicfilter/idxf/dxfentrd.cxx
+++ b/filter/source/graphicfilter/idxf/dxfentrd.cxx
@@ -446,10 +446,6 @@ void DXFLWPolyLineEntity::EvaluateGroup( DXFGroupReader & 
rDGR )
 }
 }
 
-DXFLWPolyLineEntity::~DXFLWPolyLineEntity()
-{
-}
-
 //--DXFHatchEntity-
 
 DXFEdgeTypeLine::DXFEdgeTypeLine() :
@@ -457,10 +453,7 @@ DXFEdgeTypeLine::DXFEdgeTypeLine() :
 {
 
 }
-DXFEdgeTypeLine::~DXFEdgeTypeLine()
-{
 
-}
 bool DXFEdgeTypeLine::EvaluateGroup( DXFGroupReader & rDGR )
 {
 bool bExecutingGroupCode = true;
@@ -483,9 +476,7 @@ DXFEdgeTypeCircularArc::DXFEdgeTypeCircularArc() :
 nIsCounterClockwiseFlag( 0 )
 {
 }
-DXFEdgeTypeCircularArc::~DXFEdgeTypeCircularArc()
-{
-}
+
 bool DXFEdgeTypeCircularArc::EvaluateGroup( DXFGroupReader & rDGR )
 {
 bool bExecutingGroupCode = true;
@@ -510,10 +501,7 @@ DXFEdgeTypeEllipticalArc::DXFEdgeTypeEllipticalArc() :
 nIsCounterClockwiseFlag( 0 )
 {
 }
-DXFEdgeTypeEllipticalArc::~DXFEdgeTypeEllipticalArc()
-{
 
-}
 bool DXFEdgeTypeEllipticalArc::EvaluateGroup( DXFGroupReader & rDGR )
 {
 bool bExecutingGroupCode = true;
@@ -541,10 +529,7 @@ DXFEdgeTypeSpline::DXFEdgeTypeSpline() :
 nControlCount( 0 )
 {
 }
-DXFEdgeTypeSpline::~DXFEdgeTypeSpline()
-{
 
-}
 bool DXFEdgeTypeSpline::EvaluateGroup( DXFGroupReader & rDGR )
 {
 bool bExecutingGroupCode = true;
@@ -713,10 +698,6 @@ void DXFHatchEntity::EvaluateGroup( DXFGroupReader & rDGR )
 }
 }
 
-DXFHatchEntity::~DXFHatchEntity()
-{
-}
-
 
//--DXFVertexEntity-
 
 DXFVertexEntity::DXFVertexEntity() : DXFBasicEntity(DXF_VERTEX)
diff --git a/filter/source/graphicfilter/idxf/dxfentrd.hxx 
b/filter/source/graphicfilter/idxf/dxfentrd.hxx
index e39ff48..61bd59c 100644
--- a/filter/source/graphicfilter/idxf/dxfentrd.hxx
+++ b/filter/source/graphicfilter/idxf/dxfentrd.hxx
@@ -335,7 +335,6 @@ class DXFLWPolyLineEntity : public DXFBasicEntity
 std::unique_ptr  pP;
 
 DXFLWPolyLineEntity();
-virtual ~DXFLWPolyLineEntity() override;
 
 protected:
 
@@ -354,14 +353,15 @@ struct DXFEdgeType
 
 DXFEdgeType( sal_Int32 EdgeType ):nEdgeType(EdgeType){};
 };
+
 struct DXFEdgeTypeLine : public DXFEdgeType
 {
 DXFVector aStartPoint;  // 10,20
 DXFVector aEndPoint;// 11,21
 DXFEdgeTypeLine();
-virtual ~DXFEdgeTypeLine() override;
 virtual bool EvaluateGroup( DXFGroupReader & rDGR ) override;
 };
+
 struct DXFEdgeTypeCircularArc : public DXFEdgeType
 {
 DXFVector aCenter;  // 10,20
@@ -370,9 +370,9 @@ struct DXFEdgeTypeCircularArc : public DXFEdgeType
 doublefEndAngle;// 51
 sal_Int32 nIsCounterClockwiseFlag;  // 73
 DXFEdgeTypeCircularArc();
-virtual ~DXFEdgeTypeCircularArc() override;
 virtual bool EvaluateGroup( DXFGroupReader & rDGR ) override;
 };
+
 struct DXFEdgeTypeEllipticalArc : public DXFEdgeType
 {
 DXFVector aCenter;  // 10,20
@@ -383,9 +383,9 @@ struct DXFEdgeTypeEllipticalArc : public DXFEdgeType
 sal_Int32 nIsCounterClockwiseFlag;  // 73
 
 DXFEdgeTypeEllipticalArc();
-virtual ~DXFEdgeTypeEllipticalArc() override;
 virtual bool EvaluateGroup( DXFGroupReader & rDGR ) override;
 };
+
 struct DXFEdgeTypeSpline : public DXFEdgeType
 {
 sal_Int32 nDegree;  // 94
@@ -395,7 +395,6 @@ struct DXFEdgeTypeSpline : public DXFEdgeType
 sal_Int32 nControlCount;// 76
 
 DXFEdgeTypeSpline();
-virtual ~DXFEdgeTypeSpline() override;
 virtual bool EvaluateGroup( DXFGroupReader & rDGR ) override;
 };
 
@@ -443,7 +442,6 @@ class DXFHatchEntity : public DXFBasicEntity
 std::unique_ptr pBoundaryPathData;
 
 DXFHatchEntity();
-virtual ~DXFHatchEntity() override;
 
 protected:
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-01-17 Thread Caolán McNamara
 filter/source/graphicfilter/idxf/dxfentrd.cxx |6 ++
 filter/source/graphicfilter/idxf/dxfentrd.hxx |5 ++---
 2 files changed, 4 insertions(+), 7 deletions(-)

New commits:
commit 157472752d822251f57d4089effac454b875e183
Author: Caolán McNamara 
Date:   Tue Jan 17 21:02:31 2017 +

ofz#413 leak in DXFBoundaryPathData::EvaluateGroup

Change-Id: I3eac501ce6edba1688571be1b9172c720f55a1ff

diff --git a/filter/source/graphicfilter/idxf/dxfentrd.cxx 
b/filter/source/graphicfilter/idxf/dxfentrd.cxx
index 14445b1..892c0b3 100644
--- a/filter/source/graphicfilter/idxf/dxfentrd.cxx
+++ b/filter/source/graphicfilter/idxf/dxfentrd.cxx
@@ -576,10 +576,8 @@ DXFBoundaryPathData::DXFBoundaryPathData() :
 
 DXFBoundaryPathData::~DXFBoundaryPathData()
 {
-sal_uInt32 i = 0;
-for ( i = 0; i < aEdges.size(); i++ )
+for (sal_uInt32 i = 0; i < aEdges.size(); ++i)
 delete aEdges[ i ];
-delete[] pP;
 }
 
 bool DXFBoundaryPathData::EvaluateGroup( DXFGroupReader & rDGR )
@@ -600,7 +598,7 @@ bool DXFBoundaryPathData::EvaluateGroup( DXFGroupReader & 
rDGR )
 {
 nPointCount = rDGR.GetI();
 if ( nPointCount )
-pP = new DXFVector[ nPointCount ];
+pP.reset( new DXFVector[ nPointCount ] );
 }
 break;
 case 72 : nHasBulgeFlag = rDGR.GetI(); break;
diff --git a/filter/source/graphicfilter/idxf/dxfentrd.hxx 
b/filter/source/graphicfilter/idxf/dxfentrd.hxx
index 8f801ba..e39ff48 100644
--- a/filter/source/graphicfilter/idxf/dxfentrd.hxx
+++ b/filter/source/graphicfilter/idxf/dxfentrd.hxx
@@ -412,9 +412,8 @@ struct DXFBoundaryPathData
 boolbIsPolyLine;
 sal_Int32   nPointIndex;
 
-DXFVector*  pP;
-std::deque< DXFEdgeType* >
-aEdges;
+std::unique_ptr pP;
+std::deque aEdges;
 
 DXFBoundaryPathData();
 ~DXFBoundaryPathData();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-ux-advise] [Bug 104050] Add Breeze palette

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

--- Comment #7 from Jean-Baptiste Faure  ---
(In reply to Heiko Tietze from comment #6)
> (In reply to Jean-Baptiste Faure from comment #5)
> > The first commit is for LO 5.3 and the second for 5.4. Do you plan to
> > backport the second commit to 5.3 ?
> > 
> > Best regards. JBF
> 
> In the first patch I missed to change the make file. Both changes should go
> into 5.3 and 5.4 (and are in, AFAIK).

May I suggest you to check? In both my own build (5.3.1.0.0+) and the deb
archive of 5.3.0.RC1 the Breeze palette is missing. To check the deb archive,
open the file libobasis5.3-core_5.3.0.1-1_amd64.deb from
LibreOffice_5.3.0.1_Linux_x86-64_deb.tar.gz with your preferred archive
software, then open data.tar.gz and in the tree go to 
/./opt/libreoffice5.3/share/palette/ where you do not see the expected file
breeze.soc

Best regards. JBF

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


[Libreoffice-bugs] [Bug 105396] Please update German dictionary for de_AT, de_CH, de_DE

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

Gerry  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=96
   ||782
   Assignee|libreoffice-b...@lists.free |tima...@gmail.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 105396] New: Please update German dictionary for de_AT, de_CH, de_DE

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

Bug ID: 105396
   Summary: Please update German dictionary for de_AT, de_CH,
de_DE
   Product: LibreOffice
   Version: 5.3.0.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Linguistic
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gerry.trep...@googlemail.com

There are new German (de-DE, de-AT, de-CH) dictionary extensions available
(version 2017.01.12). Please update the dictionaries for LibreOffice:

https://extensions.libreoffice.org/extensions/german-de-de-frami-dictionaries
https://extensions.libreoffice.org/extensions/german-de-at-frami-dictionaries
https://extensions.libreoffice.org/extensions/german-de-ch-frami-dictionaries


Would it be still possible to integrate the new dictionaries in the upcoming
5.3 release? 

@Andras, like for the last dictionary update, I felt free to put you as
assignee to this bug. Please feel free to remove yourself if you don't want to
take this. Thanks in advance!

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


[Libreoffice-bugs] [Bug 105374] Toolbars and UI elements wrong display

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

--- Comment #3 from Hamid  ---
Managed to put the GTK3 facelift and the symptoms are gone. But the Qt
interface is buggy with the toolbars having transparent background.

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


[Libreoffice-bugs] [Bug 105129] ".~lock files" constantly opening and slowing performance on all windows systems, not in Linux system.

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

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #5 from Julien Nabet  ---
Just to be sure, if you rename your LO directory profile (see
https://wiki.documentfoundation.org/UserProfile#Windows) and work on brand new
file (at least not with files from Ms Office compat...), is it ok?

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


[Libreoffice-commits] core.git: chart2/inc chart2/source external/boost package/inc package/Library_xstor.mk package/source sc/inc sc/source starmath/inc starmath/source tools/inc tools/source

2017-01-17 Thread Jochen Nitschke
 chart2/inc/pch/precompiled_chartcontroller.hxx   |
1 
 chart2/inc/pch/precompiled_chartcore.hxx |
1 
 chart2/source/controller/itemsetwrapper/RegressionCurveItemConverter.cxx |
2 
 chart2/source/view/main/GL3DRenderer.cxx |
1 
 external/boost/include/boost/checked_delete.hpp  |   
23 --
 package/Library_xstor.mk |
2 
 package/inc/pch/precompiled_xstor.hxx|
1 
 package/source/xstor/xstorage.cxx|
6 --
 sc/inc/pch/precompiled_sc.hxx|
1 
 sc/inc/pch/precompiled_scfilt.hxx|
1 
 sc/source/core/data/column.cxx   |
3 -
 sc/source/core/data/columnspanset.cxx|
4 -
 sc/source/core/data/document.cxx |
3 -
 sc/source/core/data/dptabres.cxx |
5 --
 sc/source/core/data/table3.cxx   |
3 -
 sc/source/core/tool/chartlis.cxx |
4 -
 sc/source/core/tool/rangelst.cxx |
6 +-
 sc/source/filter/xcl97/xcl97rec.cxx  |
3 -
 sc/source/ui/unoobj/chart2uno.cxx|
3 -
 sc/source/ui/view/viewdata.cxx   |
3 -
 starmath/inc/pch/precompiled_sm.hxx  |
1 
 starmath/source/node.cxx |
3 -
 tools/inc/pch/precompiled_tl.hxx |
1 
 tools/source/fsys/urlobj.cxx |
3 -
 24 files changed, 18 insertions(+), 66 deletions(-)

New commits:
commit e87071ac57a7711078715d9165c264ec3db180ab
Author: Jochen Nitschke 
Date:   Mon Jan 16 19:47:20 2017 +0100

replace boost::checked_deleter with std::default_delete

and remove all traces of boost/checked_delete.hpp

Change-Id: I4486d0e07a7197d75f8739c8c6d79670163eaab2
Reviewed-on: https://gerrit.libreoffice.org/33182
Tested-by: Jenkins 
Reviewed-by: Jochen Nitschke 

diff --git a/chart2/inc/pch/precompiled_chartcontroller.hxx 
b/chart2/inc/pch/precompiled_chartcontroller.hxx
index 458f9b9..afdaf38 100644
--- a/chart2/inc/pch/precompiled_chartcontroller.hxx
+++ b/chart2/inc/pch/precompiled_chartcontroller.hxx
@@ -54,7 +54,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
diff --git a/chart2/inc/pch/precompiled_chartcore.hxx 
b/chart2/inc/pch/precompiled_chartcore.hxx
index 908d7ac..3f066ba 100644
--- a/chart2/inc/pch/precompiled_chartcore.hxx
+++ b/chart2/inc/pch/precompiled_chartcore.hxx
@@ -36,7 +36,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
diff --git 
a/chart2/source/controller/itemsetwrapper/RegressionCurveItemConverter.cxx 
b/chart2/source/controller/itemsetwrapper/RegressionCurveItemConverter.cxx
index e4ac942..773d24e 100644
--- a/chart2/source/controller/itemsetwrapper/RegressionCurveItemConverter.cxx
+++ b/chart2/source/controller/itemsetwrapper/RegressionCurveItemConverter.cxx
@@ -34,8 +34,6 @@
 #include 
 #include 
 
-#include 
-
 using namespace ::com::sun::star;
 
 namespace
diff --git a/chart2/source/view/main/GL3DRenderer.cxx 
b/chart2/source/view/main/GL3DRenderer.cxx
index e1e4c01..c00bd18 100644
--- a/chart2/source/view/main/GL3DRenderer.cxx
+++ b/chart2/source/view/main/GL3DRenderer.cxx
@@ -19,7 +19,6 @@
 
 #include 
 #include "glm/gtc/matrix_inverse.hpp"
-#include 
 #include 
 
 #define DEBUG_FBO 0
diff --git a/external/boost/include/boost/checked_delete.hpp 
b/external/boost/include/boost/checked_delete.hpp
deleted file mode 100644
index 1fb5927..000
--- a/external/boost/include/boost/checked_delete.hpp
+++ /dev/null
@@ -1,23 +0,0 @@
-/* generated by bin/gen-boost-headers, do not edit! */
-#pragma once
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wunknown-pragmas"  /* first! for clang */
-#pragma GCC diagnostic ignored "-Wpragmas"  /* second! for GCC */
-#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
-#pragma GCC diagnostic ignored "-Wextra"
-#pragma GCC diagnostic ignored "-Wignored-qualifiers"
-#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"
-#pragma GCC diagnostic ignored "-Winvalid-constexpr"
-#pragma GCC diagnostic ignored "-Wplacement-new"
-#pragma GCC diagnostic ignored "-Wreturn-type"
-#pragma GCC diagnostic ignored "-Wshadow"
-#pragma GCC diagnostic ignored "-Wstrict-aliasing"
-#pragma GCC diagnostic ignored 

[Libreoffice-bugs] [Bug 104181] FILEOPEN: File format error found at unsatisfied query for interface of type com.sun.star.embed.XRelationshipAccess!

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

Mike Kaganski  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 105392] FILEOPEN: DOCX: SAXParseException in footer

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

Mike Kaganski  changed:

   What|Removed |Added

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

--- Comment #2 from Mike Kaganski  ---
Looks exactly the same as bug 104181: after importing with SAXExceptions
ignored, the rest of text after footnote anchor is moved to footnote text.

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


[Libreoffice-bugs] [Bug 105390] impossible to open file

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

Julien Nabet  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO
 CC||serval2...@yahoo.fr
  Component|Base|LibreOffice

--- Comment #1 from Julien Nabet  ---
On which LO version are you? Last stable one is 5.2.4.

Do you reproduce this on a brand new file or just specific file?

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


[Libreoffice-bugs] [Bug 87204] FILESAVE: PowerPoint pps causes LO to crash or freeze...

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

--- Comment #11 from stefan_lange...@t-online.de  
---
Because of the hint to Bug 105118 (GDI problem) I have made new tests with the
spreadsheet document "Test_Comment_Crash.ods" attached to Bug 105376.

Result: I think that the first "Save" or "Autosave" creates very much GDI
objects.

First I have increased the GDI quote in Windows from 1 to 6 to prevent
the crashes (and reatarted the system to activate the change). A new test with
my document gave no crash (but after document was saved and LO should be
closed, shutdwon of LO was hanging - see bug 105055). 

Then I have "installed" Nirsoft GDIView to see the GDI objects counter at
further tests.

The counters I have seen at the several tests were not exactly the same, but
they were in the same ranges always. The figures below are from one of the
tests. 

When the document was opened and I had navigated to the first sheet ("Altix I
bis III") the GDI counter ("All GDI") was 125. After the four first comments
were inserted and before the document was saved the GDI counter was 255.
This means that every comment has increased the counter by 27 or 28, although
the comments are hidden. I don't if this correct or not. Because the comments
are not shown I think only the bitmanp counter should be increased by 1. 

While the document was saved the GDI counter has extremly increased from 255 to
9873!!!

After some additional comments have been inserted the old limit of 10.000 was
exceeded.

Interestingly:
- Only at the first save (or maybe also Autosave) the GDI counter increases
extremly. At additional saves the counter has not increased or increased only
slightly. 
- At "Undo" the GDI counter does not decrease and at "Redo" it does not
increase.

These tests were made with LO 5.3.0.2 (x64).

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


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

2017-01-17 Thread Tomáš Chvátal
 dbaccess/source/ui/dlg/odbcconfig.cxx |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

New commits:
commit 31025e3214eb62ab0e723e32411926d1976136c6
Author: Tomáš Chvátal 
Date:   Thu Jan 5 16:06:10 2017 +0100

unixODBC changed soname to .2 so reflect it

we dlopen this library and thus we should be able to find it with any
soname, so far .1 and .2 seem to be used.

Also now the load order on linux is: .so.2 -> .so.1 -> .so

Change-Id: Idcd284fada1acdfe8dde46c3056c21b792777280
Reviewed-on: https://gerrit.libreoffice.org/32755
Reviewed-by: Lionel Elie Mamane 
Tested-by: Lionel Elie Mamane 
(cherry picked from commit 3f5584526fd4e8290dac033e1cf3d64acd25d893)
Reviewed-on: https://gerrit.libreoffice.org/33226
Reviewed-by: Michael Stahl 
Tested-by: Jenkins 

diff --git a/dbaccess/source/ui/dlg/odbcconfig.cxx 
b/dbaccess/source/ui/dlg/odbcconfig.cxx
index cd1b583..a880f3c 100644
--- a/dbaccess/source/ui/dlg/odbcconfig.cxx
+++ b/dbaccess/source/ui/dlg/odbcconfig.cxx
@@ -38,8 +38,9 @@
 #ifdef MACOSX
 #define ODBC_LIBRARY"libiodbc.dylib"
 #else
+#define ODBC_LIBRARY_PLAIN  "libodbc.so"
 #define ODBC_LIBRARY_1  "libodbc.so.1"
-#define ODBC_LIBRARY"libodbc.so"
+#define ODBC_LIBRARY"libodbc.so.2"
 #endif
 #endif
 
@@ -124,6 +125,10 @@ OOdbcEnumeration::OOdbcEnumeration()
 if ( !bLoaded )
 bLoaded = load(ODBC_LIBRARY_1);
 #endif
+#ifdef ODBC_LIBRARY_PLAIN
+if ( !bLoaded )
+bLoaded = load(ODBC_LIBRARY_PLAIN);
+#endif
 
 if ( bLoaded )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-01-17 Thread Miklos Vajna
 sw/qa/extras/ooxmlexport/data/tdf104150.docx|binary
 sw/qa/extras/ooxmlexport/ooxmlexport9.cxx   |7 +++
 writerfilter/source/dmapper/DomainMapper.cxx|3 ++-
 writerfilter/source/dmapper/SettingsTable.cxx   |   10 ++
 writerfilter/source/dmapper/SettingsTable.hxx   |1 +
 writerfilter/source/rtftok/rtfdispatchvalue.cxx |8 
 writerfilter/source/rtftok/rtfdocumentimpl.cxx  |   16 ++--
 writerfilter/source/rtftok/rtfdocumentimpl.hxx  |2 ++
 8 files changed, 40 insertions(+), 7 deletions(-)

New commits:
commit 9093bd7295c677fa1888d3d805fccbc07e85f1f4
Author: Miklos Vajna 
Date:   Tue Jan 17 09:15:07 2017 +0100

tdf#104150 DOCX import: handle 

Regression from commit 992da0d5cf04497bad55637f6a6ebfcdaec03e16
(bnc#817956 DOCX import of document background color, 2013-05-27),
 should be ignored when  is
missing from settings.xml, it turns out.

This also requires generating the
ooxml:CT_Settings_displayBackgroundShape token from the RTF tokenizer.

(cherry picked from commit 38a1e19ae49ac30757e4020b60adee7c30f3deb9)

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

diff --git a/sw/qa/extras/ooxmlexport/data/tdf104150.docx 
b/sw/qa/extras/ooxmlexport/data/tdf104150.docx
new file mode 100644
index 000..9898846
Binary files /dev/null and b/sw/qa/extras/ooxmlexport/data/tdf104150.docx differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx
index 2668d34..0f05214 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx
@@ -184,6 +184,13 @@ DECLARE_OOXMLEXPORT_TEST(testTdf104162, "tdf104162.docx")
 CPPUNIT_ASSERT(xTextFields->hasElements());
 }
 
+DECLARE_OOXMLEXPORT_TEST(testTdf104150, "tdf104150.docx")
+{
+uno::Reference 
xPageStyle(getStyles("PageStyles")->getByName("Standard"), uno::UNO_QUERY);
+// This was 0xff, i.e. red: background shape wasn't ignored.
+CPPUNIT_ASSERT_EQUAL(static_cast(-1), 
getProperty(xPageStyle, "BackColor"));
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index 0a4041c..f2a076c 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -987,7 +987,8 @@ void DomainMapper::lcl_attribute(Id nName, Value & val)
 m_pImpl->appendGrabBag(m_pImpl->m_aInteropGrabBag, 
"ooxml:CT_SdtDate_fullDate", sStringValue);
 break;
 case NS_ooxml::LN_CT_Background_color:
-m_pImpl->m_oBackgroundColor.reset(nIntValue);
+if (m_pImpl->GetSettingsTable()->GetDisplayBackgroundShape())
+m_pImpl->m_oBackgroundColor.reset(nIntValue);
 break;
 case NS_ooxml::LN_CT_PageNumber_start:
 if (pSectionContext != nullptr)
diff --git a/writerfilter/source/dmapper/SettingsTable.cxx 
b/writerfilter/source/dmapper/SettingsTable.cxx
index 10791f0..8d7bace 100644
--- a/writerfilter/source/dmapper/SettingsTable.cxx
+++ b/writerfilter/source/dmapper/SettingsTable.cxx
@@ -65,6 +65,7 @@ struct SettingsTable_Impl
 boolm_bSplitPgBreakAndParaMark;
 boolm_bMirrorMargin;
 boolm_bProtectForm;
+boolm_bDisplayBackgroundShape;
 
 uno::Sequence m_pThemeFontLangProps;
 
@@ -91,6 +92,7 @@ struct SettingsTable_Impl
 , m_bSplitPgBreakAndParaMark(false)
 , m_bMirrorMargin(false)
 , m_bProtectForm(false)
+, m_bDisplayBackgroundShape(false)
 , m_pThemeFontLangProps(3)
 , m_pCurrentCompatSetting(3)
 {}
@@ -274,6 +276,9 @@ void SettingsTable::lcl_sprm(Sprm& rSprm)
 case NS_ooxml::LN_CT_Settings_widowControl:
 m_pImpl->m_bWidowControl = nIntValue;
 break;
+case NS_ooxml::LN_CT_Settings_displayBackgroundShape:
+m_pImpl->m_bDisplayBackgroundShape = nIntValue;
+break;
 default:
 {
 #ifdef DEBUG_WRITERFILTER
@@ -349,6 +354,11 @@ bool SettingsTable::GetMirrorMarginSettings() const
 return m_pImpl->m_bMirrorMargin;
 }
 
+bool SettingsTable::GetDisplayBackgroundShape() const
+{
+return m_pImpl->m_bDisplayBackgroundShape;
+}
+
 bool SettingsTable::GetProtectForm() const
 {
 return m_pImpl->m_bProtectForm;
diff --git a/writerfilter/source/dmapper/SettingsTable.hxx 
b/writerfilter/source/dmapper/SettingsTable.hxx
index 8328ec2..6ef0a30 100644
--- a/writerfilter/source/dmapper/SettingsTable.hxx
+++ b/writerfilter/source/dmapper/SettingsTable.hxx
@@ -70,6 +70,7 @@ class SettingsTable : public LoggedProperties, public 
LoggedTable
 bool GetDoNotUseHTMLParagraphAutoSpacing() const;
 bool 

[Libreoffice-bugs] [Bug 104181] FILEOPEN: File format error found at unsatisfied query for interface of type com.sun.star.embed.XRelationshipAccess!

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

--- Comment #3 from Mike Kaganski  ---
Created attachment 130504
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130504=edit
The bugdoc imported without proper fix

The problem seems to be related to a footnote in a table. When using
not-yet-merged fix for bug 104718, and avoiding errors caused by pOldBoss being
nullptr in SwFlowFrame::MoveFwd(), (that latter problem is clearly consequence
of the initial parse problem) I get document where the whole text after the
footnote anchor (~53 pages in initial document) is moved into the footnote
text.

The attachment demonstrates the result of this import. Interestingly, MS Word
2016 cannot export this file to PDF with an error "The export failed due to an
unexpected error".

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


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - 2 commits - automation/Library_communi.mk.old avmedia/Library_avmediagst.mk cosv/prj

2017-01-17 Thread Damjan Jovanovic
 automation/Library_communi.mk.old |   99 --
 avmedia/Library_avmediagst.mk |7 +-
 cosv/prj/build.lst|1 
 3 files changed, 5 insertions(+), 102 deletions(-)

New commits:
commit d42fe4f30e3ea154600c8e5b5892051922325707
Author: Damjan Jovanovic 
Date:   Tue Jan 17 18:10:51 2017 +

Some gbuild fixes discovered during an audit compared to dmake.

Delete an unnecessary file in main/automation.
Disable exception handling for 2 files in main/avmedia.

Patch by: me

diff --git a/automation/Library_communi.mk.old 
b/automation/Library_communi.mk.old
deleted file mode 100644
index a890e45..000
--- a/automation/Library_communi.mk.old
+++ /dev/null
@@ -1,99 +0,0 @@
-#**
-#  
-#  Licensed to the Apache Software Foundation (ASF) under one
-#  or more contributor license agreements.  See the NOTICE file
-#  distributed with this work for additional information
-#  regarding copyright ownership.  The ASF licenses this file
-#  to you under the Apache License, Version 2.0 (the
-#  "License"); you may not use this file except in compliance
-#  with the License.  You may obtain a copy of the License at
-#  
-#http://www.apache.org/licenses/LICENSE-2.0
-#  
-#  Unless required by applicable law or agreed to in writing,
-#  software distributed under the License is distributed on an
-#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-#  specific language governing permissions and limitations
-#  under the License.
-#  
-#**
-
-
-
-$(eval $(call gb_Library_Library,communi))
-
-$(eval $(call 
gb_Library_add_precompiled_header,communi,$(SRCDIR)/automation/inc/pch/precompiled_automation))
-
-$(eval $(call gb_Library_add_package_headers,communi,automation_inc))
-
-$(eval $(call gb_Library_set_include,communi,\
-$$(INCLUDE) \
-   -I$(SRCDIR)/automation/inc \
-   -I$(SRCDIR)/automation/inc/pch \
-   -I$(SRCDIR)/automation/source/inc \
-))
-
-#$(eval $(call gb_Library_add_defs,communi,\
-#  -DAVMEDIA_DLLIMPLEMENTATION \
-#))
-
-$(eval $(call gb_Library_add_api,communi,\
-   offapi \
-   udkapi \
-))
-
-$(eval $(call gb_Library_add_linked_libs,communi,\
-   sal \
-   simplecm \
-   svl \
-   tl \
-   vcl \
-   vos3 \
-   $(gb_STDLIBS) \
-))
-
-ifeq ($(GUI),WNT)
-$(eval $(call gb_Library_add_linked_libs,communi,\
-   advapi32 \
-   gdi32 \
-))
-endif
-
-$(eval $(call gb_Library_add_noexception_objects,communi,\
-   automation/source/communi/communi \
-   automation/source/server/recorder \
-   automation/source/server/svcommstream \
-   automation/source/server/cmdbasestream \
-   automation/source/server/scmdstrm \
-   automation/source/server/sta_list \
-   automation/source/server/editwin \
-   automation/source/server/retstrm \
-   automation/source/server/profiler \
-   automation/source/simplecm/tcpio \
-   automation/source/simplecm/packethandler \
-   automation/source/simplecm/simplecm \
-))
-
-ifeq ($(OS),SOLARIS)
-$(eval $(call gb_Library_add_noexception_objects,communi,\
-   automation/source/server/prof_usl \
-))
-else
-$(eval $(call gb_Library_add_noexception_objects,communi,\
-   automation/source/server/prof_nul \
-))
-endif
-
-$(eval $(call gb_Library_add_exception_objects,communi,\
-   automation/source/server/XMLParser \
-   automation/source/server/server \
-))
-
-$(eval $(call gb_Library_add_cxxobjects,dnd,\
-   automation/source/server/statemnt \
-   , $(gb_COMPILERNOOPTFLAGS) $(gb_LinkTarget_EXCEPTIONFLAGS) \
-))
-
-
-# vim: set noet sw=4 ts=4:
diff --git a/avmedia/Library_avmediagst.mk b/avmedia/Library_avmediagst.mk
index 7ceecd1..b37ef6e 100644
--- a/avmedia/Library_avmediagst.mk
+++ b/avmedia/Library_avmediagst.mk
@@ -62,10 +62,13 @@ $(eval $(call gb_Library_add_libs,avmediagst,\
 
 $(eval $(call gb_Library_add_exception_objects,avmediagst,\
avmedia/source/gstreamer/gstuno \
-   avmedia/source/gstreamer/gstmanager \
-   avmedia/source/gstreamer/gstwindow \
avmedia/source/gstreamer/gstplayer \
avmedia/source/gstreamer/gstframegrabber \
 ))
 
+$(eval $(call gb_Library_add_noexception_objects,avmediagst,\
+   avmedia/source/gstreamer/gstmanager \
+   avmedia/source/gstreamer/gstwindow \
+))
+
 # vim: set noet sw=4 ts=4:
commit dacecb6cec89ec425db349f5739b6096174f2192
Author: Damjan Jovanovic 
Date:   Tue Jan 17 18:09:12 2017 +

Make main/cosv's prj/build.lst more suitable for automated analysis.

Patch by: me

diff --git a/cosv/prj/build.lst b/cosv/prj/build.lst
index f75303c..0c036f9 100644
--- a/cosv/prj/build.lst
+++ b/cosv/prj/build.lst
@@ -1,4 +1,3 @@

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

2017-01-17 Thread Stephan Bergmann
 external/python3/ubsan.patch.0 |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit d0f3363aa8db533ba6fe356053caaf79a1507d14
Author: Stephan Bergmann 
Date:   Tue Jan 17 21:07:01 2017 +0100

Fix patch

The original patch caused compilation of x86-ffi64.c to fail, but that
failure was silently ignored by the build.

Change-Id: I93a0cde041b8f9546873d6cc30c1b690da098642

diff --git a/external/python3/ubsan.patch.0 b/external/python3/ubsan.patch.0
index ab2acd3..936a8ac 100644
--- a/external/python3/ubsan.patch.0
+++ b/external/python3/ubsan.patch.0
@@ -43,15 +43,15 @@
tramp[0] = 0xbb49;  /* mov , %r11 */
 -  *(void* volatile*)[1] = ffi_closure_unix64;
 +  tramp[1] = (unsigned short) ffi_closure_unix64;
-+  tramp[2] = (unsigned short) (ffi_closure_unix64 >> 16);
-+  tramp[3] = (unsigned short) (ffi_closure_unix64 >> 32);
-+  tramp[4] = (unsigned short) (ffi_closure_unix64 >> 48);
++  tramp[2] = (unsigned short) (((unsigned long)ffi_closure_unix64) >> 16);
++  tramp[3] = (unsigned short) (((unsigned long)ffi_closure_unix64) >> 32);
++  tramp[4] = (unsigned short) (((unsigned long)ffi_closure_unix64) >> 48);
tramp[5] = 0xba49;  /* mov , %r10 */
 -  *(void* volatile*)[6] = closure;
 +  tramp[6] = (unsigned short) closure;
-+  tramp[7] = (unsigned short) (closure >> 16);
-+  tramp[8] = (unsigned short) (closure >> 32);
-+  tramp[9] = (unsigned short) (closure >> 48);
++  tramp[7] = (unsigned short) (((unsigned long)closure) >> 16);
++  tramp[8] = (unsigned short) (((unsigned long)closure) >> 32);
++  tramp[9] = (unsigned short) (((unsigned long)closure) >> 48);
  
/*  Set the carry bit if the function uses any sse registers.
This is clc or stc, together with the first byte of the jmp.  */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104486] FILEOPEN: DOCX: shadow for text in shape not applied (WPS)

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

--- Comment #3 from Mikhail Novosyolov  ---
@Xisco, what do you mean by 'WPS' in bug title?

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


[Libreoffice-bugs] [Bug 105395] New: Footer Altered for some pptx after opening in Impress

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

Bug ID: 105395
   Summary: Footer Altered for some pptx after opening in Impress
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: h.alemas...@gmail.com

Created attachment 130503
  --> https://bugs.documentfoundation.org/attachment.cgi?id=130503=edit
original vs altered footer image + slide

1. open the attached slide in Impress
2. the footer is altered compared to the one in Microsoft powerpoint

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


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

2017-01-17 Thread Khaled Hosny
 i18npool/inc/transliteration_Ignore.hxx  |   19 +++
 i18npool/source/transliteration/ignoreDiacritics_CTL.cxx |   79 +--
 2 files changed, 87 insertions(+), 11 deletions(-)

New commits:
commit 18bc169b4727744f35227532078cbf7c9558bc9a
Author: Khaled Hosny 
Date:   Sun Jan 8 01:02:20 2017 +0200

tdf#105170: Ignore diacritics on precomposed chars

When ignoring diacritics, the old code just ignore combining marks which
works when using decomposed forms (NFD) but does not work for
precomposed forms (NFC).

Instead, we now decompose, strip marks, then recompose, and use a nice
icu::Transliterator that does the hard work for us. As a bonus, we
should now handle surrogate pairs fine (most of the time).

The new code (in ignoreDiacritics_CTL::folding()) might not be as
efficient as the old code that used transliteration_Ignore::folding(),
but it is less ugly and more easier to resonate with, or so I hope.

Change-Id: If48c8be30527580cdd68f20b40a6533c5f258d83
Reviewed-on: https://gerrit.libreoffice.org/32826
Tested-by: Jenkins 
Reviewed-by: Eike Rathke 
(cherry picked from commit 278eabab2b5bdc95a51d501fcdb46c216ded3baa)
Reviewed-on: https://gerrit.libreoffice.org/33214

diff --git a/i18npool/inc/transliteration_Ignore.hxx 
b/i18npool/inc/transliteration_Ignore.hxx
index e6573b6..3b67d64 100644
--- a/i18npool/inc/transliteration_Ignore.hxx
+++ b/i18npool/inc/transliteration_Ignore.hxx
@@ -21,6 +21,7 @@
 
 #include 
 #include 
+#include 
 
 typedef sal_Unicode (*TransFunc)(const sal_Unicode);
 
@@ -91,9 +92,25 @@ TRANSLITERATION_IGNORE(Space_ja_JP)
 TRANSLITERATION_IGNORE(TraditionalKana_ja_JP)
 TRANSLITERATION_IGNORE(TraditionalKanji_ja_JP)
 TRANSLITERATION_IGNORE(ZiZu_ja_JP)
-TRANSLITERATION_IGNORE(Diacritics_CTL)
 TRANSLITERATION_IGNORE(Kashida_CTL)
 
+class ignoreDiacritics_CTL : public transliteration_Ignore
+{
+icu::Transliterator* m_transliterator;
+
+public:
+ignoreDiacritics_CTL();
+
+OUString SAL_CALL
+folding(const OUString& rInStr, sal_Int32 nStartPos, sal_Int32 nCount, 
css::uno::Sequence& rOffset)
+throw(css::uno::RuntimeException, std::exception) override;
+
+sal_Unicode SAL_CALL
+transliterateChar2Char(sal_Unicode nInChar)
+throw(css::uno::RuntimeException,
+css::i18n::MultipleCharsOutputException, std::exception) override;
+};
+
 #undef TRANSLITERATION_IGNORE
 
 #define TRANSLITERATION_IGNORE( name ) \
diff --git a/i18npool/source/transliteration/ignoreDiacritics_CTL.cxx 
b/i18npool/source/transliteration/ignoreDiacritics_CTL.cxx
index 8d6292c..c910b94 100644
--- a/i18npool/source/transliteration/ignoreDiacritics_CTL.cxx
+++ b/i18npool/source/transliteration/ignoreDiacritics_CTL.cxx
@@ -9,25 +9,84 @@
 
 #include 
 #include 
+#include 
 
 namespace com { namespace sun { namespace star { namespace i18n {
 
-sal_Unicode
-ignoreDiacritics_CTL_translator (const sal_Unicode c)
-{
-if(u_getIntPropertyValue(c, UCHAR_GENERAL_CATEGORY) == U_NON_SPACING_MARK)
-return 0x; // Skip this character
-
-return c;
-}
-
 ignoreDiacritics_CTL::ignoreDiacritics_CTL()
 {
-func = ignoreDiacritics_CTL_translator;
+func = nullptr;
 table = nullptr;
 map = nullptr;
 transliterationName = "ignoreDiacritics_CTL";
 implementationName = 
"com.sun.star.i18n.Transliteration.ignoreDiacritics_CTL";
+
+UErrorCode nStatus = U_ZERO_ERROR;
+m_transliterator = icu::Transliterator::createInstance("NFD; [:M:] Remove; 
NFC",
+UTRANS_FORWARD, nStatus);
+if (U_FAILURE(nStatus))
+m_transliterator = nullptr;
+}
+
+sal_Unicode SAL_CALL
+ignoreDiacritics_CTL::transliterateChar2Char(sal_Unicode nInChar)
+throw(css::uno::RuntimeException,
+css::i18n::MultipleCharsOutputException, std::exception)
+{
+if (!m_transliterator)
+throw css::uno::RuntimeException();
+
+UnicodeString aChar(nInChar);
+m_transliterator->transliterate(aChar);
+
+if (aChar.isEmpty())
+return 0x; // Skip this character.
+
+if (aChar.length() > 1)
+return nInChar; // Don't know what to do here, return the otiginal.
+
+return aChar[0];
+}
+
+OUString SAL_CALL
+ignoreDiacritics_CTL::folding(const OUString& rInStr, sal_Int32 nStartPos,
+sal_Int32 nCount, css::uno::Sequence& rOffset)
+throw(css::uno::RuntimeException, std::exception)
+{
+if (!m_transliterator)
+throw css::uno::RuntimeException();
+
+OUString aOutStr;
+
+sal_Int32 nPosition = nStartPos;
+sal_Int32 nOffset = 0;
+if (useOffset)
+rOffset.realloc(nCount);
+
+while (nPosition < nStartPos + nCount)
+{
+sal_Int32 nIndex = nPosition;
+UChar32 nChar = rInStr.iterateCodePoints();
+UnicodeString aChar(nChar);
+m_transliterator->transliterate(aChar);
+
+if (useOffset && nOffset + 

[Libreoffice-bugs] [Bug 105193] Extreme slowness when copying and pasting browser images.

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

--- Comment #4 from MM  ---
Tested a wiki page which has a lot more text and some pictures.
https://en.wikipedia.org/wiki/Boeing_757

I copied *all* with firefox 50.1 and pasted them with writer v5.2.4.2 and
v5.3.0.1 under ubuntu 16.04 x64. With v5.2 it takes about 14 secs and with v5.3
about 8 secs.

So for me, page is copied reasonably fast, pictures are shown.

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-2' - 2 commits - bin/lo-pack-sources

2017-01-17 Thread Christian Lohmaier
 bin/lo-pack-sources |9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

New commits:
commit 071ab0ae58e372168b00ceb1b4c5d847c6983f6f
Author: Christian Lohmaier 
Date:   Tue Jan 17 19:50:33 2017 +0100

making portable sed statements is not worth the hassle

change to git's own formatting capabilities by using the text-wrap
option with only indent settings/no rewrapping → %w(0,8,8)
and also omit the additional empty line when there only is a summary,
but no body in the commit message (remove a %n, make it %+b)
finally drop the now no-longer needed starmarker (the @)

previous differences in sed caused unnecessarily large diffs for
distro-packagers, see

https://anonscm.debian.org/git/pkg-openoffice/libreoffice-dictionaries.git/commit/?h=upstream=3dceac52f75030e87519e73b42babde51e471d9f
now it will change once, but then we can put all the blame on git :-)

Change-Id: Ifa719d062582c54c9c23b4ae08d4bae9a396e83c
(cherry picked from commit 562edf0f09ba4e82fb9186aa75ee88fd7f68d18f)

diff --git a/bin/lo-pack-sources b/bin/lo-pack-sources
index 87e3650..d43b71b 100755
--- a/bin/lo-pack-sources
+++ b/bin/lo-pack-sources
@@ -126,8 +126,8 @@ sub generate_lo_module_changelog($$$)
 $log_name .= "-$module_dirname{$module}" if ($module_dirname{$module});
 print "Generating changelog for $module...\n";
 system ("cd $source_dir/$module_dirname{$module} && " .
-"git log --date=short --pretty='format:@%cd  %an  <%ae>  
[%H]%n%n%s%n%n%e%b' | " .
-"  sed -e 's/^/\t/' -e 's/^\t@//' 
>$lo_module_release_topdir/$log_name" ) &&
+"git log --date=short --pretty='format:%cd  %an  <%ae>  
[%H]%n%n%w(0,8,8)%s%n%e%+b' | " .
+">$lo_module_release_topdir/$log_name" ) &&
 die "Error: generating failed: $!\n";
 }
 
commit a031981fbc593edba649ac0f33a5d8feb82d1ede
Author: jan Iversen 
Date:   Sat Oct 22 17:52:54 2016 +0200

update lo-pack-sources

os-x has a problem with progress bar on tar
Also remade to sed expression to a simpler one that osx understands.
change

change

Change-Id: If09573760a4bedfa285519241582bbd639a4e976
Reviewed-on: https://gerrit.libreoffice.org/30043
Reviewed-by: jan iversen 
Tested-by: jan iversen 
(cherry picked from commit d2e9d3d0ed42f0fc24255c64546d8d256ca33aae)

diff --git a/bin/lo-pack-sources b/bin/lo-pack-sources
index fdaf6da..87e3650 100755
--- a/bin/lo-pack-sources
+++ b/bin/lo-pack-sources
@@ -85,7 +85,7 @@ sub copy_dir_filter_and_show_progress($$)
 # copy sources from git and show progress
 system ("cd $source_dir && " .
 "git archive --format=tar HEAD | " .
-"  tar -xf - -C $target_dir --checkpoint=500 
--checkpoint-action=exec=\"echo -n .\"") &&
+"  tar -xf - -C $target_dir ") &&
 die "Error: copying failed: $!\n";
 print "\n";
 }
@@ -125,10 +125,9 @@ sub generate_lo_module_changelog($$$)
 my $log_name = "ChangeLog";
 $log_name .= "-$module_dirname{$module}" if ($module_dirname{$module});
 print "Generating changelog for $module...\n";
-#print "1:$lo_module_clone, 2:$lo_module_release_dir, 3:$module\n";
 system ("cd $source_dir/$module_dirname{$module} && " .
 "git log --date=short --pretty='format:@%cd  %an  <%ae>  
[%H]%n%n%s%n%n%e%b' | " .
-"  sed -e 's|^\([^@]\)|\t\1|' -e 's|^@||' 
>$lo_module_release_topdir/$log_name" ) &&
+"  sed -e 's/^/\t/' -e 's/^\t@//' 
>$lo_module_release_topdir/$log_name" ) &&
 die "Error: generating failed: $!\n";
 }
 
@@ -160,7 +159,7 @@ sub generate_tarball($$$)
 
 print "Creating $tarball...";
 # generate the tarball in the current directory; avoid "./" prefix in the 
stored paths; show progress
-system ("tar -c $tar_compress_option -f $tarball -C $dir --checkpoint=500 
--checkpoint-action=exec=\"echo -n .\" $lo_topdir_name") && 
+system ("tar -c $tar_compress_option -f $tarball -C $dir $lo_topdir_name") 
&& 
 die "Error: releasing failed: $!\n";
 print "\n";
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-3-0' - bin/lo-pack-sources

2017-01-17 Thread Christian Lohmaier
 bin/lo-pack-sources |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit e901e564d4cd177d39645ddc90e4a27ee9ccc8a8
Author: Christian Lohmaier 
Date:   Tue Jan 17 19:50:33 2017 +0100

making portable sed statements is not worth the hassle

change to git's own formatting capabilities by using the text-wrap
option with only indent settings/no rewrapping → %w(0,8,8)
and also omit the additional empty line when there only is a summary,
but no body in the commit message (remove a %n, make it %+b)
finally drop the now no-longer needed starmarker (the @)

previous differences in sed caused unnecessarily large diffs for
distro-packagers, see

https://anonscm.debian.org/git/pkg-openoffice/libreoffice-dictionaries.git/commit/?h=upstream=3dceac52f75030e87519e73b42babde51e471d9f
now it will change once, but then we can put all the blame on git :-)

Change-Id: Ifa719d062582c54c9c23b4ae08d4bae9a396e83c
(cherry picked from commit 562edf0f09ba4e82fb9186aa75ee88fd7f68d18f)
(cherry picked from commit 767695be0e6cce551ae661ba741694d48695def1)

diff --git a/bin/lo-pack-sources b/bin/lo-pack-sources
index 87e3650..d43b71b 100755
--- a/bin/lo-pack-sources
+++ b/bin/lo-pack-sources
@@ -126,8 +126,8 @@ sub generate_lo_module_changelog($$$)
 $log_name .= "-$module_dirname{$module}" if ($module_dirname{$module});
 print "Generating changelog for $module...\n";
 system ("cd $source_dir/$module_dirname{$module} && " .
-"git log --date=short --pretty='format:@%cd  %an  <%ae>  
[%H]%n%n%s%n%n%e%b' | " .
-"  sed -e 's/^/\t/' -e 's/^\t@//' 
>$lo_module_release_topdir/$log_name" ) &&
+"git log --date=short --pretty='format:%cd  %an  <%ae>  
[%H]%n%n%w(0,8,8)%s%n%e%+b' | " .
+">$lo_module_release_topdir/$log_name" ) &&
 die "Error: generating failed: $!\n";
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - bin/lo-pack-sources

2017-01-17 Thread Christian Lohmaier
 bin/lo-pack-sources |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 767695be0e6cce551ae661ba741694d48695def1
Author: Christian Lohmaier 
Date:   Tue Jan 17 19:50:33 2017 +0100

making portable sed statements is not worth the hassle

change to git's own formatting capabilities by using the text-wrap
option with only indent settings/no rewrapping → %w(0,8,8)
and also omit the additional empty line when there only is a summary,
but no body in the commit message (remove a %n, make it %+b)
finally drop the now no-longer needed starmarker (the @)

previous differences in sed caused unnecessarily large diffs for
distro-packagers, see

https://anonscm.debian.org/git/pkg-openoffice/libreoffice-dictionaries.git/commit/?h=upstream=3dceac52f75030e87519e73b42babde51e471d9f
now it will change once, but then we can put all the blame on git :-)

Change-Id: Ifa719d062582c54c9c23b4ae08d4bae9a396e83c
(cherry picked from commit 562edf0f09ba4e82fb9186aa75ee88fd7f68d18f)

diff --git a/bin/lo-pack-sources b/bin/lo-pack-sources
index 87e3650..d43b71b 100755
--- a/bin/lo-pack-sources
+++ b/bin/lo-pack-sources
@@ -126,8 +126,8 @@ sub generate_lo_module_changelog($$$)
 $log_name .= "-$module_dirname{$module}" if ($module_dirname{$module});
 print "Generating changelog for $module...\n";
 system ("cd $source_dir/$module_dirname{$module} && " .
-"git log --date=short --pretty='format:@%cd  %an  <%ae>  
[%H]%n%n%s%n%n%e%b' | " .
-"  sed -e 's/^/\t/' -e 's/^\t@//' 
>$lo_module_release_topdir/$log_name" ) &&
+"git log --date=short --pretty='format:%cd  %an  <%ae>  
[%H]%n%n%w(0,8,8)%s%n%e%+b' | " .
+">$lo_module_release_topdir/$log_name" ) &&
 die "Error: generating failed: $!\n";
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: bin/lo-pack-sources

2017-01-17 Thread Christian Lohmaier
 bin/lo-pack-sources |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 562edf0f09ba4e82fb9186aa75ee88fd7f68d18f
Author: Christian Lohmaier 
Date:   Tue Jan 17 19:50:33 2017 +0100

making portable sed statements is not worth the hassle

change to git's own formatting capabilities by using the text-wrap
option with only indent settings/no rewrapping → %w(0,8,8)
and also omit the additional empty line when there only is a summary,
but no body in the commit message (remove a %n, make it %+b)
finally drop the now no-longer needed starmarker (the @)

previous differences in sed caused unnecessarily large diffs for
distro-packagers, see

https://anonscm.debian.org/git/pkg-openoffice/libreoffice-dictionaries.git/commit/?h=upstream=3dceac52f75030e87519e73b42babde51e471d9f
now it will change once, but then we can put all the blame on git :-)

Change-Id: Ifa719d062582c54c9c23b4ae08d4bae9a396e83c

diff --git a/bin/lo-pack-sources b/bin/lo-pack-sources
index 87e3650..d43b71b 100755
--- a/bin/lo-pack-sources
+++ b/bin/lo-pack-sources
@@ -126,8 +126,8 @@ sub generate_lo_module_changelog($$$)
 $log_name .= "-$module_dirname{$module}" if ($module_dirname{$module});
 print "Generating changelog for $module...\n";
 system ("cd $source_dir/$module_dirname{$module} && " .
-"git log --date=short --pretty='format:@%cd  %an  <%ae>  
[%H]%n%n%s%n%n%e%b' | " .
-"  sed -e 's/^/\t/' -e 's/^\t@//' 
>$lo_module_release_topdir/$log_name" ) &&
+"git log --date=short --pretty='format:%cd  %an  <%ae>  
[%H]%n%n%w(0,8,8)%s%n%e%+b' | " .
+">$lo_module_release_topdir/$log_name" ) &&
 die "Error: generating failed: $!\n";
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: bin/gbuild-to-ide

2017-01-17 Thread jan Iversen
 bin/gbuild-to-ide |   34 --
 1 file changed, 16 insertions(+), 18 deletions(-)

New commits:
commit 6cd57bc27ebb381adfe90da8420291b9cb19d91f
Author: jan Iversen 
Date:   Tue Jan 17 19:50:03 2017 +0100

gbuild-to-ide prepare for missing file types.

Expanded the parser to understand the new json keys.

Change-Id: I8ff91a9113a7b539a1d85e8ea936555825260ba0

diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide
index cb809da..c8cd067 100755
--- a/bin/gbuild-to-ide
+++ b/bin/gbuild-to-ide
@@ -23,7 +23,7 @@ import collections
 import subprocess
 
 class GbuildLinkTarget:
-def __init__(self, name, location, include, include_sys, defs, cxxobjects, 
cxxflags, linked_libs,
+def __init__(self, name, location, sources, include, include_sys, defs, 
cxxobjects, cxxflags, linked_libs,
  asmobjects, cflags, gencobjects, gencxxobjects, ilibtarget, 
linked_static_libs, linktarget,
  objcflags, objcobjects, objcxxflags, objcxxobjects, 
yaccobjects, build_type):
 (self.name, self.location, self.include,
@@ -41,6 +41,7 @@ class GbuildLinkTarget:
  objcflags, objcobjects, objcxxflags,
  objcxxobjects, yaccobjects, build_type)
 self.target_name = self.build_type + '_' + self.name
+self.sources = sources
 
 
 class GbuildParser:
@@ -92,14 +93,12 @@ class GbuildParser:
'GENCXXOBJECTS': '.cxx', # remark is in workdir/GenCxxObject
'OBJCOBJECTS':   '.m',
'OBJCXXOBJECTS': '.mm',
-   'COBJECTS':  '.c',
-
-# gbuildtojson defines but does not fill these:
'ASMOBJECTS': '.s',
-   'GENCOBJECTS': '.c',
'YACCOBJECTS': '.y',
+   'GENCOBJECTS': '.c',
 
-   # gbuildtojson need to be extended to fill these:
+# not in GbuildLinkTarget
+   'COBJECTS':  '.c',
'FLEXOBJECTS': '.l',
'JAVAOBJECTS': '.java',
'PYTHONOBJECTS': '.py'
@@ -116,35 +115,36 @@ class GbuildParser:
 (foundincludes, foundisystem) = 
GbuildParser.__split_includes(jsondata['INCLUDE'])
 match = 
GbuildParser._buildpattern[jsontype].match(os.path.basename(jsondata['MAKEFILE'])).group(1)
 location = os.path.dirname(jsondata['MAKEFILE'])
-filesSorted = {}
+sources = {}
 for i in jsonSrc:
 if i in jsondata and len(jsondata[i]) > 0:
-filesSorted[i] = 
sorted(GbuildParser.__split_objs(jsondata[i]))
+sources[i] = 
sorted(GbuildParser.__split_objs(jsondata[i]))
 else:
-filesSorted[i] = []
+sources[i] = []
 
 # TODO: extend GbuildLinkTarget with new json keys
 # Find a better way instead on a zillion parameters
 newObj = GbuildLinkTarget(match,
   location,
+  sources,
   foundincludes,
   foundisystem,
   
GbuildParser.__split_defs(jsondata['DEFS']),
-  filesSorted['CXXOBJECTS'],
+  sources['CXXOBJECTS'],
   
GbuildParser.__split_flags(jsondata['CXXFLAGS'], jsondata['CXXFLAGSAPPEND']),
   
jsondata['LINKED_LIBS'].strip().split(' '),
-  filesSorted['ASMOBJECTS'],
+  sources['ASMOBJECTS'],
   
GbuildParser.__split_flags(jsondata['CFLAGS'], jsondata['CFLAGSAPPEND']),
-  filesSorted['GENCOBJECTS'],
-  filesSorted['GENCXXOBJECTS'],
+  sources['GENCOBJECTS'],
+  sources['GENCXXOBJECTS'],
   jsondata['ILIBTARGET'],
   jsondata['LINKED_STATIC_LIBS'],
   jsondata['LINKTARGET'],
   
GbuildParser.__split_flags(jsondata['OBJCFLAGS'], jsondata['OBJCFLAGSAPPEND']),
-  filesSorted['OBJCOBJECTS'],
+  sources['OBJCOBJECTS'],

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

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

--- Comment #6 from V Stuart Foote  ---
Version: 5.3.0.2 (x64)
Build ID: 5ad7b2889021c491af62f7930a4b1cb631392f16
CPU Threads: 8; OS Version: Windows 6.29; UI Render: default; Layout Engine:
new; 
Locale: en-US (en_US); Calc: group

Resolved WFM, the new HarfBuzz based layout seems to have cleared this nicely.

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


  1   2   3   4   >