[Libreoffice-bugs] [Bug 104458] Presentation required EDIT mode

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104458

Aleksander Machniak  changed:

   What|Removed |Added

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

--- Comment #2 from Aleksander Machniak  ---
It works with loowsd 2.0.0-1.

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


[Libreoffice-bugs] [Bug 104582] Relatively high DISK I/ O for Writer document containing an animated gif

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104582

Telesto  changed:

   What|Removed |Added

Version|5.4.0.0.alpha0+ |5.3.0.0.beta2

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


Re: make gbuildtojson and make xx-ide-integration problems.

2016-12-14 Thread Matúš Kukan
On 14 December 2016 at 13:32, Jan Iversen  wrote:
> I ran it in my debugger and the file in question is
> '/workdir/GbuildToJson/Library/libscqahelper.dylib’ which has ‘“MAKEFILE":
> "'/Volumes/LIBREOFFICE/play/core/sc/CppunitTest_sc_ucalc.mk’”’ (see
> attachment GbuildToJson.tgz).

/me wonders why I don't have any workdir/GbuildToJson/Library/*scqahelper*

Anyway, I've also touched xcode generation in
https://gerrit.libreoffice.org/#/c/32027/
I think there was the same problem as with different visual studio
project files having the same name.
..just to know

HTH,

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


[Libreoffice-bugs] [Bug 104655] FILEOPEN ODS: Memory usage for opening file has increased with factor 5

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104655

Markus Mohrhard  changed:

   What|Removed |Added

   Keywords|regression  |

-- 
You are receiving this mail because:
You 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: bin/gbuild-to-ide

2016-12-14 Thread Matúš Kukan
 bin/gbuild-to-ide |   39 +--
 1 file changed, 13 insertions(+), 26 deletions(-)

New commits:
commit ee3f793a2d4e2977a3e952e1439708d8936953d7
Author: Matúš Kukan 
Date:   Wed Dec 14 22:25:12 2016 +0100

tdf#70414: Fix VisualStudio ide integration

'LINKTARGET' is not really helpful as target name.
Use name based on makefile's name and hope something like
b81ac16e65b311d6e43c05c22c65d2040c9d7e04 is not needed anymore.
And if there are still some inconsistencies, we should fix makefile's name.

Also, don't use target.name because it's not unique.
There can be e.g. both Library_smoketest and CppunitTest_smoketest.

Change-Id: I541a1e41f80446e875e1bb2bfa89786e356e0e74
Reviewed-on: https://gerrit.libreoffice.org/32027
Reviewed-by: jan iversen 
Tested-by: jan iversen 

diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide
index 7de2fb4..8ee2d13 100755
--- a/bin/gbuild-to-ide
+++ b/bin/gbuild-to-ide
@@ -39,47 +39,40 @@ class GbuildLinkTarget:
 
 
 class GbuildLib(GbuildLinkTarget):
-def __init__(self, name, library, location, include, include_sys, defs, 
cxxobjects, cxxflags, linked_libs):
+def __init__(self, name, location, include, include_sys, defs, cxxobjects, 
cxxflags, linked_libs):
 GbuildLinkTarget.__init__(self, name, location, include, include_sys, 
defs, cxxobjects, cxxflags, linked_libs)
-self.library = library
 
 def short_name(self):
 """Return the short name of target based on the Library_* makefile 
name"""
 return 'Library %s' % self.name
 
 def target_name(self):
-return 'Library_%s' % self.library
+return 'Library_%s' % self.name
 
 def library_name(self):
-return self.library
+return self.name
 
 class GbuildTest(GbuildLinkTarget):
-def __init__(self, name, test, location, include, include_sys, defs, 
cxxobjects, cxxflags, linked_libs):
+def __init__(self, name, location, include, include_sys, defs, cxxobjects, 
cxxflags, linked_libs):
 GbuildLinkTarget.__init__(self, name, location, include, include_sys, 
defs, cxxobjects, cxxflags, linked_libs)
-self.test = test
 
 def short_name(self):
 """Return the short name of target based n the CppunitTest_* makefile 
names"""
 return 'CppunitTest %s' % self.name
 
 def target_name(self):
-return 'CppunitTest_%s' % self.test
-
-def test_name(self):
-return self.test
-
+return 'CppunitTest_%s' % self.name
 
 class GbuildExe(GbuildLinkTarget):
-def __init__(self, name, executable, location, include, include_sys, defs, 
cxxobjects, cxxflags, linked_libs):
+def __init__(self, name, location, include, include_sys, defs, cxxobjects, 
cxxflags, linked_libs):
 GbuildLinkTarget.__init__(self, name, location, include, include_sys, 
defs, cxxobjects, cxxflags, linked_libs)
-self.executable = executable
 
 def short_name(self):
 """Return the short name of target based on the Executable_* makefile 
name"""
 return 'Executable %s' % self.name
 
 def target_name(self):
-return 'Executable_%s' % self.executable
+return 'Executable_%s' % self.name
 
 
 class GbuildParser:
@@ -88,7 +81,7 @@ class GbuildParser:
 self.binpath = os.path.dirname(os.environ['GPERF']) # woha, this is 
quite a hack
 (self.srcdir, self.builddir, self.instdir, self.workdir) = 
(os.environ['SRCDIR'], os.environ['BUILDDIR'], os.environ['INSTDIR'], 
os.environ['WORKDIR'])
 (self.libs, self.exes, self.tests, self.modulenamelist) = ([], [], [], 
[])
-(self.libnames, self.exenames, self.testnames, self.target_by_path, 
self.target_by_location) = ({}, {}, {}, {}, {})
+(self.target_by_path, self.target_by_location) = ({}, {})
 
 includepattern = re.compile('-I(\S+)')
 isystempattern = re.compile('-isystem\s*(\S+)')
@@ -129,7 +122,6 @@ class GbuildParser:
 (foundincludes, foundisystem) = 
GbuildParser.__split_includes(json['INCLUDE'])
 return GbuildLib(
 
GbuildParser.libpattern.match(os.path.basename(json['MAKEFILE'])).group(1),
-json['LINKTARGET'],
 os.path.dirname(json['MAKEFILE']),
 foundincludes,
 foundisystem,
@@ -151,7 +143,6 @@ class GbuildParser:
 
 return GbuildTest(
 testname,
-json['LINKTARGET'],
 os.path.dirname(json['MAKEFILE']),
 foundincludes,
 foundisystem,
@@ -165,7 +156,6 @@ class GbuildParser:
 (foundincludes, foundisystem) = 
GbuildParser.__split_includes(json['INCLUDE'])
 return GbuildExe(
 
GbuildParser.exepattern.match(os.path.basename(json['MAKEFILE'])).group(1),
-json['LINKTARGET'],
 os.path.dirname(json['MAKEFILE']),
 foundincludes,
   

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

2016-12-14 Thread Stephan Bergmann
 xmlsecurity/source/helper/xsecctl.cxx |2 --
 1 file changed, 2 deletions(-)

New commits:
commit 1f32fdc712e2cd1c9279b15b07b78db27b2eb484
Author: Stephan Bergmann 
Date:   Thu Dec 15 08:50:20 2016 +0100

Unnecessary includes

Change-Id: I9816e320d9ed31b8af50d20d207a9be21b58ace3

diff --git a/xmlsecurity/source/helper/xsecctl.cxx 
b/xmlsecurity/source/helper/xsecctl.cxx
index 641de5e..d6ac506 100644
--- a/xmlsecurity/source/helper/xsecctl.cxx
+++ b/xmlsecurity/source/helper/xsecctl.cxx
@@ -21,8 +21,6 @@
 #include "xsecctl.hxx"
 #include "documentsignaturehelper.hxx"
 #include "framework/saxeventkeeperimpl.hxx"
-#include 
-#include 
 
 #include 
 #include 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-ux-advise] [Bug 54169] LibO doesn’t obey OS setting “only show the accelerator underline when the Alt key is being pressed”

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=54169

--- Comment #35 from abhilash300si...@gmail.com ---
I'm looking back at the issue. Until then, the patch should be reverted or,
Luke, you can turn on your "make keyboard easier to use" accessibility option,
and LO should show accelerators all the time, which it seems, is the only thing
that this patch handles.

Thanks.

-- 
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-commits] core.git: configure.ac

2016-12-14 Thread Tor Lillqvist
 configure.ac |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 54d5a0dfa5358f107d246a6cc1795390f37a545c
Author: Tor Lillqvist 
Date:   Thu Nov 17 16:21:19 2016 +0200

Bump iOS versions

Change-Id: I614e29829ebd40b34f85ce32b806a5079b7967de

diff --git a/configure.ac b/configure.ac
index e36dbd4..3808f6e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2960,8 +2960,8 @@ if test $_os = iOS; then
 
 xcode_developer=`xcode-select -print-path`
 
-current_sdk_ver=9.3
-for sdkver in 10.0 9.3 9.2; do
+current_sdk_ver=10.2
+for sdkver in 10.2 10.1 10.0 9.3; do
 
t=$xcode_developer/Platforms/$platform.platform/Developer/SDKs/$platform$sdkver.sdk
 if test -d $t; then
 ios_sdk=$sdkver
@@ -2981,10 +2981,10 @@ if test $_os = iOS; then
 if test "$enable_ios_simulator" = yes; then
 if test "$BITNESS_OVERRIDE" = 64; then
 XCODE_ARCHS=x86_64
-versionmin=-mios-simulator-version-min=9.0
+versionmin=-mios-simulator-version-min=9.3
 else
 XCODE_ARCHS=i386
-versionmin=-mios-simulator-version-min=9.0
+versionmin=-mios-simulator-version-min=9.3
 fi
 else
 platform=iPhoneOS
@@ -2993,7 +2993,7 @@ if test $_os = iOS; then
 else
 XCODE_ARCHS=armv7
 fi
-versionmin=-miphoneos-version-min=9.0
+versionmin=-miphoneos-version-min=9.3
 fi
 
 # LTO is not really recommended for iOS builds,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Vinodkumar license statement

2016-12-14 Thread Vinodkumar Pache
All of my past & future contributions to LibreOffice may be
   licensed under the MPLv2/LGPLv3+ dual license

Regards
Vinod
---
[ C-DAC is on Social-Media too. Kindly follow us at:
Facebook: https://www.facebook.com/CDACINDIA & Twitter: @cdacindia ]

This e-mail is for the sole use of the intended recipient(s) and may
contain confidential and privileged information. If you are not the
intended recipient, please contact the sender by reply e-mail and destroy
all copies and the original message. Any unauthorized review, use,
disclosure, dissemination, forwarding, printing or copying of this email
is strictly prohibited and appropriate legal action will be taken.
---

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


[Libreoffice-bugs] [Bug 104569] LOCALHELP: Missing icons from 'Styles and Formatting' page

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104569

Gabor Kelemen  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |kelem...@ubuntu.com
   |desktop.org |

--- Comment #4 from Gabor Kelemen  ---
A fresh build solved the first two icons problem. The three others remain.

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

2016-12-14 Thread Zdeněk Crhonek
 sc/qa/unit/data/functions/statistical/fods/lognorm.dist.fods | 5144 +++
 1 file changed, 5144 insertions(+)

New commits:
commit 9bdc5a81813c317055c3dff39c7e7ab500407a8f
Author: Zdeněk Crhonek 
Date:   Tue Dec 13 17:30:56 2016 +0100

add LOGNORM.DIST test case

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

diff --git a/sc/qa/unit/data/functions/statistical/fods/lognorm.dist.fods 
b/sc/qa/unit/data/functions/statistical/fods/lognorm.dist.fods
new file mode 100644
index 000..aa4e4c9
--- /dev/null
+++ b/sc/qa/unit/data/functions/statistical/fods/lognorm.dist.fods
@@ -0,0 +1,5144 @@
+
+
+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-13T17:29:13.300304953P0D1LibreOfficeDev/5.4.0.0.alpha0$Linux_X86_64
 
LibreOffice_project/08fa2e9307c9e4a49e18ecb0b4e9461492122fe3
+ 
+  
+   0
+   0
+   102998
+   17347
+   
+
+ view1
+ 
+  
+   1
+   7
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   75
+   60
+   true
+   false
+  
+  
+   4
+   22
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   6
+   0
+   75
+   60
+   true
+   false
+  
+ 
+ Sheet2
+ 1241
+ 0
+ 75
+ 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
+   lgH+/0xleG1hcmstRTM1MmRuQ1VQUzpMZXhtYXJrLUUzNTJkbgAWAAMAtwAIAFZUAAAkbQAASm9iRGF0YSAxCnByaW50ZXI9TGV4bWFyay1FMzUyZG4Kb3JpZW50YXRpb249UG9ydHJhaXQKY29waWVzPTEKY29sbGF0ZT1mYWxzZQptYXJnaW5kYWp1c3RtZW50PTAsMCwwLDAKY29sb3JkZXB0aD0yNApwc2xldmVsPTAKcGRmZGV2aWNlPTEKY29sb3JkZXZpY2U9MApQUERDb250ZXhEYXRhClBhZ2VTaXplOkxldHRlcgAAEgBDT01QQVRfRFVQTEVYX01PREUPAER1cGxleE1vZGU6Ok9mZg==
+   false
+   0
+  
+ 
+ 
+  
+   http://openoffice.org/2004/office; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
+
+   
+  
+ 
+ 
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+ 
+ 
+  
+   
+   
+  
+  
+   
+  
+  
+   
+
+   Kč
+  
+  
+   
+   -
+   
+
+   Kč
+   
+  
+  
+
+   
+
+  
+  
+
+   (
+   
+   )
+  
+  
+
+   -
+   
+
+  
+  
+   
+
+   
+   
+   
+  
+  
+   
+  
+  
+   
+  
+  
+   
+
+   Kč
+  
+  
+   -
+   
+
+ 

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

2016-12-14 Thread Jochen Nitschke
 sw/source/filter/ww8/wrtw8esh.cxx |3 +--
 sw/source/filter/ww8/wrtww8.cxx   |   10 --
 sw/source/filter/ww8/wrtww8gr.cxx |6 ++
 sw/source/filter/ww8/ww8glsy.cxx  |4 ++--
 sw/source/filter/ww8/ww8par.cxx   |   13 ++---
 sw/source/filter/ww8/ww8par3.cxx  |6 +++---
 sw/source/filter/ww8/ww8par4.cxx  |2 +-
 sw/source/filter/ww8/ww8par5.cxx  |2 +-
 sw/source/filter/ww8/ww8scan.cxx  |   15 ---
 sw/source/filter/ww8/ww8scan.hxx  |   21 +
 10 files changed, 29 insertions(+), 53 deletions(-)

New commits:
commit 3fefcf1e4b5f53f281aee0a1860e8a0ed1acc6ae
Author: Jochen Nitschke 
Date:   Wed Dec 14 17:53:14 2016 +0100

decloak some string literals

and remove explicit OUString ctor calls, now criticised by
[loplugin:stringconstant]

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

diff --git a/sw/source/filter/ww8/wrtw8esh.cxx 
b/sw/source/filter/ww8/wrtw8esh.cxx
index 6382e88..7368c79 100644
--- a/sw/source/filter/ww8/wrtw8esh.cxx
+++ b/sw/source/filter/ww8/wrtw8esh.cxx
@@ -3145,8 +3145,7 @@ void SwMSConvertControls::ExportControl(WW8Export 
, const SdrUnoObj& rFo
 aSize.Height = TWIPS_TO_MM(aRect.Bottom());
 
 //Open the ObjectPool
-tools::SvRef xObjPool = 
rWW8Wrt.GetWriter().GetStorage().OpenSotStorage(
-OUString(SL::aObjectPool));
+tools::SvRef xObjPool = 
rWW8Wrt.GetWriter().GetStorage().OpenSotStorage(SL::aObjectPool);
 
 //Create a destination storage for the microsoft control
 OUStringBuffer sStorageName;
diff --git a/sw/source/filter/ww8/wrtww8.cxx b/sw/source/filter/ww8/wrtww8.cxx
index 7c2dff0..a266688 100644
--- a/sw/source/filter/ww8/wrtww8.cxx
+++ b/sw/source/filter/ww8/wrtww8.cxx
@@ -2874,7 +2874,7 @@ void WW8Export::WriteFkpPlcUsw()
  some magic.
 */
 // avoid memory leak #i120098#, the unnamed obj will be released in 
destructor.
-xEscherStg = 
GetWriter().GetStorage().OpenSotStorage(OUString(SL::aObjectPool));
+xEscherStg = GetWriter().GetStorage().OpenSotStorage(SL::aObjectPool);
 }
 
 // dggInfo - escher stream
@@ -3214,10 +3214,8 @@ void WW8Export::ExportDocument_Impl()
 xWwStrm->SetBufferSize( 32768 );
 
 pFib->m_fWhichTableStm = true;
-xTableStrm = GetWriter().GetStorage().OpenSotStream(OUString(SL::a1Table),
-StreamMode::STD_WRITE );
-xDataStrm = GetWriter().GetStorage().OpenSotStream(OUString(SL::aData),
-StreamMode::STD_WRITE );
+xTableStrm = GetWriter().GetStorage().OpenSotStream(SL::a1Table, 
StreamMode::STD_WRITE);
+xDataStrm = GetWriter().GetStorage().OpenSotStream(SL::aData, 
StreamMode::STD_WRITE);
 
 xDataStrm->SetBufferSize( 32768 );  // for graphics
 xTableStrm->SetBufferSize( 16384 ); // for the Font-/Style-Table, etc.
@@ -3380,7 +3378,7 @@ void WW8Export::ExportDocument_Impl()
 {
 xDataStrm.Clear();
 pDataStrm = nullptr;
-GetWriter().GetStorage().Remove(OUString(SL::aData));
+GetWriter().GetStorage().Remove(SL::aData);
 }
 }
 
diff --git a/sw/source/filter/ww8/wrtww8gr.cxx 
b/sw/source/filter/ww8/wrtww8gr.cxx
index 7af628b..a19451e 100644
--- a/sw/source/filter/ww8/wrtww8gr.cxx
+++ b/sw/source/filter/ww8/wrtww8gr.cxx
@@ -208,8 +208,7 @@ void WW8Export::OutputOLENode( const SwOLENode& rOLENode )
 nSize = sizeof( aSpecOLE_WW8 );
 pDataAdr = pSpecOLE + 2; //WW6 sprm is 1 but has 1 byte len as well.
 
-tools::SvRef xObjStg = GetWriter().GetStorage().OpenSotStorage(
-OUString(SL::aObjectPool) );
+tools::SvRef xObjStg = 
GetWriter().GetStorage().OpenSotStorage(SL::aObjectPool);
 
 if( xObjStg.Is()  )
 {
@@ -323,8 +322,7 @@ void WW8Export::OutputLinkedOLE( const OUString& rOleId )
 uno::Reference< embed::XStorage > xOleStg = xDocStg->openStorageElement( 
"OLELinks", embed::ElementModes::READ );
 tools::SvRef xObjSrc = SotStorage::OpenOLEStorage( xOleStg, 
rOleId, StreamMode::READ );
 
-tools::SvRef xObjStg = GetWriter().GetStorage().OpenSotStorage(
-OUString(SL::aObjectPool) );
+tools::SvRef xObjStg = 
GetWriter().GetStorage().OpenSotStorage(SL::aObjectPool);
 
 if( xObjStg.Is() && xObjSrc.Is() )
 {
diff --git a/sw/source/filter/ww8/ww8glsy.cxx b/sw/source/filter/ww8/ww8glsy.cxx
index 3b335d1..c80a260 100644
--- a/sw/source/filter/ww8/ww8glsy.cxx
+++ b/sw/source/filter/ww8/ww8glsy.cxx
@@ -42,8 +42,8 @@ WW8Glossary::WW8Glossary(tools::SvRef 
, sal_uInt8 nVer
 
 if (aWwFib.m_nFibBack >= 0x6A)   //Word97
 {
-xTableStream = pStg->OpenSotStream(OUString::createFromAscii(
-aWwFib.m_fWhichTableStm ? SL::a1Table : SL::a0Table), 
StreamMode::STD_READ);
+xTableStream = pStg->OpenSotStream(
+aWwFib.m_fWhichTableStm ? SL::a1Table : 

[Libreoffice-bugs] [Bug 101563] Export to PDF with linked images creates huge PDF files.

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101563

--- Comment #51 from Noel Grandin  ---
Good point Aron. Something like this is probably simpler:

 void GraphicObject::SetGraphic( const Graphic& rGraphic, const OUString& rLink
)
 {
 // in case we are called from a situation where rLink and maLink are the
same thing,
 // we need a copy because SetGraphic clears maLink
 OUString sLinkCopy = rLink;
 SetGraphic( rGraphic );
 maLink = sLinkCopy;
 }

-- 
You are receiving this mail because:
You 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: basic/source comphelper/source compilerplugins/clang connectivity/source cppuhelper/source cppu/source cui/source dbaccess/source desktop/source editeng/source filter/s

2016-12-14 Thread Noel Grandin
 basic/source/sbx/sbxobj.cxx   |8 -
 basic/source/sbx/sbxvalue.cxx |4 
 basic/source/sbx/sbxvar.cxx   |2 
 comphelper/source/container/embeddedobjectcontainer.cxx   |2 
 compilerplugins/clang/sallogareas.cxx |   57 ++
 compilerplugins/clang/sallogareas.hxx |2 
 connectivity/source/drivers/flat/ETable.cxx   |2 
 connectivity/source/drivers/odbc/OResultSet.cxx   |   10 -
 cppu/source/threadpool/threadpool.cxx |2 
 cppu/source/typelib/typelib.cxx   |2 
 cppuhelper/source/servicemanager.cxx  |2 
 cui/source/options/optlingu.cxx   |8 -
 cui/source/options/optpath.cxx|2 
 dbaccess/source/ui/dlg/generalpage.cxx|2 
 dbaccess/source/ui/misc/DExport.cxx   |2 
 desktop/source/deployment/registry/component/dp_component.cxx |4 
 editeng/source/items/textitem.cxx |6 -
 filter/source/svg/svgreader.cxx   |   14 +-
 filter/source/svg/test/svg2odf.cxx|4 
 fpicker/source/office/iodlg.cxx   |2 
 framework/source/accelerators/acceleratorconfiguration.cxx|   26 ++--
 framework/source/loadenv/loadenv.cxx  |4 
 framework/source/services/autorecovery.cxx|   10 -
 framework/source/services/desktop.cxx |   20 +--
 framework/source/services/frame.cxx   |   16 +-
 oox/source/drawingml/diagram/diagram.cxx  |4 
 oox/source/drawingml/diagram/diagramlayoutatoms.cxx   |4 
 oox/source/drawingml/graphicshapecontext.cxx  |2 
 oox/source/drawingml/shape.cxx|2 
 oox/source/export/chartexport.cxx |4 
 oox/source/export/drawingml.cxx   |   18 +--
 oox/source/export/shapes.cxx  |   14 +-
 oox/source/ppt/slidetransition.cxx|2 
 oox/source/ppt/timenodelistcontext.cxx|8 -
 sal/osl/unx/file_url.cxx  |5 
 sal/rtl/bootstrap.cxx |8 -
 sc/source/core/data/bcaslot.cxx   |4 
 sc/source/core/data/dpsave.cxx|2 
 sc/source/core/data/dptabsrc.cxx  |2 
 sc/source/core/data/formulacell.cxx   |4 
 sc/source/core/tool/grouparealistener.cxx |2 
 sc/source/core/tool/scmatrix.cxx  |   12 +-
 sc/source/core/tool/token.cxx |2 
 sc/source/filter/excel/xiescher.cxx   |   16 +-
 sc/source/filter/excel/xipivot.cxx|2 
 sc/source/filter/excel/xlpivot.cxx|2 
 sc/source/filter/oox/condformatbuffer.cxx |2 
 sc/source/filter/oox/formulaparser.cxx|4 
 sc/source/filter/orcus/interface.cxx  |4 
 sc/source/ui/miscdlgs/solverutil.cxx  |2 
 scripting/source/provider/MasterScriptProvider.cxx|2 
 sd/source/filter/eppt/pptx-epptooxml.cxx  |2 
 sd/source/ui/framework/module/ModuleController.cxx|6 -
 sd/source/ui/remotecontrol/Receiver.cxx   |8 -
 sd/source/ui/tools/SdGlobalResourceContainer.cxx  |6 -
 sd/source/ui/view/ViewShellBase.cxx   |6 -
 sd/source/ui/view/ViewShellManager.cxx|4 
 sd/source/ui/view/drviews2.cxx|2 
 sd/source/ui/view/viewshel.cxx|2 
 sfx2/source/appl/app.cxx  |2 
 sfx2/source/appl/appcfg.cxx   |6 -
 sfx2/source/appl/appserv.cxx  |   14 +-
 sfx2/source/control/dispatch.cxx  |   12 +-
 sfx2/source/dialog/dinfdlg.cxx|2 
 sfx2/source/dialog/tabdlg.cxx |   10 -
 sfx2/source/doc/doctempl.cxx  |4 
 sfx2/source/doc/guisaveas.cxx |6 -
 sfx2/source/doc/objstor.cxx   |4 
 sfx2/source/doc/objxtor.cxx   |   10 -
 sfx2/source/sidebar/SidebarController.cxx 

[Libreoffice-bugs] [Bug 104689] When opening a MS Office Doc Template (dotx), table formatting is not honored.

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104689

--- Comment #4 from Nitesh Rijal  ---
Created attachment 129654
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129654=edit
microsoft office document template 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 104689] When opening a MS Office Doc Template (dotx), table formatting is not honored.

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104689

--- Comment #3 from Nitesh Rijal  ---
I'm sorry, I realized that after posting it, but could not edit.

I have set the status to unconfirmed, and also added an attachment though.

-- 
You are receiving this mail because:
You 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 104689] When opening a MS Office Doc Template (dotx), table formatting is not honored.

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104689

Nitesh Rijal  changed:

   What|Removed |Added

Summary|When opening a MS Office|When opening a MS Office
   |Doc Template (dotx), date   |Doc Template (dotx), table
   |macro and table formatting  |formatting is not honored.
   |is 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 104689] When opening a MS Office Doc Template (dotx), date macro and table formatting is lost.

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104689

Nitesh Rijal  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 104525] Menu labels turn blank upon hovering (Win10)

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104525

tommy27  changed:

   What|Removed |Added

Summary|Menu labels turn blank upon |Menu labels turn blank upon
   |hovering|hovering (Win10)

--- Comment #9 from tommy27  ---
the reporter from bug 104682 said he's using Yes, Windows 10 64bit v.1607
current build 14393.576 4k display.

looks probably Win10 specific.

-- 
You are receiving this mail because:
You 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 104682] menu bar is a series of black bars

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104682

--- Comment #4 from tommy27  ---
I still think they are the same issue.
look at the screenshot from bug 104525. it look exactly like yours.

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


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

2016-12-14 Thread Julien Nabet
 sw/source/core/doc/tblcpy.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 39e6f271d1b0e91456d2dc5f14fad7191ce6bb13
Author: Julien Nabet 
Date:   Wed Dec 14 21:43:10 2016 +0100

tdf#104554: fix iterator calculus

and avoid unexpected behaviours when pasting columns between tables

regression from:

https://cgit.freedesktop.org/libreoffice/core/commit/?id=f0fa43ea99ac7564f2cc7ca1d997831808056b68

http://www.cplusplus.com/reference/list/list/insert/
and http://www.cplusplus.com/reference/deque/deque/insert/
helped me to understand my mistake

Change-Id: I6ff6b84a90c7ea8db1e4d7c2d12dd191f96141ae
Reviewed-on: https://gerrit.libreoffice.org/32020
Tested-by: Jenkins 
Reviewed-by: Julien Nabet 
Tested-by: Julien Nabet 
(cherry picked from commit 14a0d26d6ae0ee59a685c254ec235fea81636475)
Reviewed-on: https://gerrit.libreoffice.org/32028

diff --git a/sw/source/core/doc/tblcpy.cxx b/sw/source/core/doc/tblcpy.cxx
index b5bc61c..c6d42e6 100644
--- a/sw/source/core/doc/tblcpy.cxx
+++ b/sw/source/core/doc/tblcpy.cxx
@@ -336,7 +336,6 @@ namespace
 if( rpCol == maCols.end() || *rpCol > rnBorder )
 {
 rpCol = maCols.insert( rpCol, rnBorder );
---rpCol;
 incColSpan( nLine, rnCol );
 }
 aInfo.mnColSpan = rnCol - nLeftCol;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-12-14 Thread Julien Nabet
 sw/source/core/doc/tblcpy.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 14a0d26d6ae0ee59a685c254ec235fea81636475
Author: Julien Nabet 
Date:   Wed Dec 14 21:43:10 2016 +0100

tdf#104554: fix iterator calculus

and avoid unexpected behaviours when pasting columns between tables

regression from:

https://cgit.freedesktop.org/libreoffice/core/commit/?id=f0fa43ea99ac7564f2cc7ca1d997831808056b68

http://www.cplusplus.com/reference/list/list/insert/
and http://www.cplusplus.com/reference/deque/deque/insert/
helped me to understand my mistake

Change-Id: I6ff6b84a90c7ea8db1e4d7c2d12dd191f96141ae
Reviewed-on: https://gerrit.libreoffice.org/32020
Tested-by: Jenkins 
Reviewed-by: Julien Nabet 
Tested-by: Julien Nabet 

diff --git a/sw/source/core/doc/tblcpy.cxx b/sw/source/core/doc/tblcpy.cxx
index b5bc61c..c6d42e6 100644
--- a/sw/source/core/doc/tblcpy.cxx
+++ b/sw/source/core/doc/tblcpy.cxx
@@ -336,7 +336,6 @@ namespace
 if( rpCol == maCols.end() || *rpCol > rnBorder )
 {
 rpCol = maCols.insert( rpCol, rnBorder );
---rpCol;
 incColSpan( nLine, rnCol );
 }
 aInfo.mnColSpan = rnCol - nLeftCol;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 101563] Export to PDF with linked images creates huge PDF files.

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101563

--- Comment #50 from Aron Budea  ---
(In reply to Noel Grandin from comment #47)
> void GraphicObject::SetGraphic( const Graphic& rGraphic, const OUString&
> rLink )
> {
> // avoid self-assignment, because SetGraphic clears maLink
> if ( rGraphic != this.maGraphic || rLink != this.maLink)
> {
> SetGraphic( rGraphic );
> maLink = rLink;
> }
> }

You're right that this seems to be the best place to deal with this potential
issue. I wouldn't combine the two conditions, though, if somehow the first is
true (so rGraphic != this.maGraphic), but the second is false (so rLink ==
this.maLink, or rather  == ), the bug is still triggered.

This might never happen with the current surrounding code, but can it be ruled
out completely?

How about this:

void GraphicObject::SetGraphic( const Graphic& rGraphic, const OUString& rLink
)
{
// avoid self-assignment, because SetGraphic clears maLink
if (rGraphic == this.maGraphic)
{
maLink = rLink;
}
else if ( != )
{
SetGraphic( rGraphic );
maLink = rLink;
}
else
{
OUString rLinkCopy;
rLinkCopy = rLink;
SetGraphic( rGraphic );
maLink = rLinkCopy;
}
}

(I haven't tested the code)

-- 
You are receiving this mail because:
You 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 104689] When opening a MS Office Doc Template (dotx), date macro and table formatting is lost.

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104689

--- Comment #2 from Joel Madero  ---
and to be honest - you combined multiple issues into one report which makes the
report not entirely functional. One bug = one report, anything else just
confuses the issue and makes it impossible to move forward.

-- 
You are receiving this mail because:
You 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 104689] When opening a MS Office Doc Template (dotx), date macro and table formatting is lost.

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104689

Joel Madero  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jmadero@gmail.com
 Ever confirmed|0   |1

--- Comment #1 from Joel Madero  ---
We obviously need the sample file in order to do anything. Please attach and
set to UNCONFIRMED.

-- 
You are receiving this mail because:
You 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 104689] New: When opening a MS Office Doc Template (dotx), date macro and table formatting is lost.

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104689

Bug ID: 104689
   Summary: When opening a MS Office Doc Template (dotx), date
macro and table formatting is lost.
   Product: LibreOffice
   Version: 4.3.7.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rijal...@gmail.com

Description:
I imported a dotx file to open in Libreoffice. The header, footer and page
numbers did appear well.

Also, the headings did appear well, but the table style were not taken from the
template.

The existing table did appear will all formatting though.

Steps to Reproduce:
1. Open a MS Word Template File with Table Styles defined in it
2. Try to insert a new table
3. The table styles are not honored.

Actual Results:  
Table styles not honored.

Expected Results:
Table styles should have been honored.


Reproducible: Always

User Profile Reset: No

Additional Info:
Also, the date macro showed blank, and when exported to PDF, it gave an
editable field in the blank space.

When I tried to set the date manually, the calendar did appear and I was able
to choose a date, but when exported to PDF, the width cut down the year from
date.


User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like
Gecko) Chrome/54.0.2840.100 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-bugs] [Bug 104670] FILEOPEN DOCX: Text in shape rendered upside down

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104670

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #4 from Aron Budea  ---
Xisco, the mentioned commit is reverting another commit that caused a
regression itself, bug 76878.

Can you verify by going back to the commit corresponding to source hash
20dee85b6390ef3edc5434889523cd9fd0137bae in the bibisect repo, and comparing
results with the preceding commit's? Please remove regression-related keywords
if that's the case.

-- 
You are receiving this mail because:
You 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 54169] LibO doesn’t obey OS setting “only show the accelerator underline when the Alt key is being pressed”

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=54169

--- Comment #34 from Luke  ---
Some commit in this range
https://cgit.freedesktop.org/libreoffice/core/log/?qt=range=+83c6c871db3eb11e284909902e0dc639e9753136..a238c829b209d0708714aa753fb686525411825f

Has been turned LO into mouse-only application under Windows. All of my muscle
memory commands, such as ALT-F,S, ALT-F,X, D. etc do not work anymore. This
makes LO unable for keyboard users such as myself.

Abhilash Singh,
Do you understand that hiding the "accelerator underline" does not disable the
accelerator itself? It just hides it until the ALT key is pressed. Use any
windows app from Notepad to Word and you will see that pressing Alt makes the
underline appear and all the shortcuts work even though their "hint" is not
displayed until the alt key is pressed. This is how every Windows Application
functions.  

The intent of this bug report is to make Windows LOOK like these other
applications. Not disable all accelerators. 


Noel, Samuel, or Abhilash
Can you please revert this commit ASAP as 
 a) it doesn’t actually solve Bug 54169 and 
 b) it makes LO unusable for keyboard people

-- 
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 104657] CPU usage for zooming has increased quite a lot between LibO 4.3.x and LibO 5.4.x

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104657

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #6 from Aron Budea  ---
Could be bug 104159? Can you check with new layout engine disabled?

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

2016-12-14 Thread Zdeněk Crhonek
 sc/qa/unit/data/functions/statistical/fods/gammadist.fods | 5386 ++
 1 file changed, 5386 insertions(+)

New commits:
commit b5cc02ee1b582a6f19e23eb2f1deb1392b3974c0
Author: Zdeněk Crhonek 
Date:   Tue Dec 13 16:24:00 2016 +0100

add GAMMADIST test case

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

diff --git a/sc/qa/unit/data/functions/statistical/fods/gammadist.fods 
b/sc/qa/unit/data/functions/statistical/fods/gammadist.fods
new file mode 100644
index 000..cc4eb31
--- /dev/null
+++ b/sc/qa/unit/data/functions/statistical/fods/gammadist.fods
@@ -0,0 +1,5386 @@
+
+
+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-13T16:22:51.202888221P0D1LibreOfficeDev/5.4.0.0.alpha0$Linux_X86_64
 
LibreOffice_project/08fa2e9307c9e4a49e18ecb0b4e9461492122fe3
+ 
+  
+   0
+   0
+   108985
+   24010
+   
+
+ view1
+ 
+  
+   2
+   8
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   75
+   60
+   true
+   false
+  
+  
+   4
+   6
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   75
+   60
+   true
+   false
+  
+ 
+ Sheet2
+ 1241
+ 0
+ 75
+ 60
+ false
+ true
+ true
+ true
+ 12632256
+ true
+ true
+ true
+ true
+ 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-bugs] [Bug 104688] I believes Microsoft has tampered with my Libreoffice word

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104688

--- Comment #1 from travelinm...@yahoo.com ---
Created attachment 129653
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129653=edit
sample of my 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 104688] New: I believes Microsoft has tampered with my Libreoffice word

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104688

Bug ID: 104688
   Summary: I believes Microsoft has tampered with my Libreoffice
word
   Product: LibreOffice
   Version: 5.1.6.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: travelinm...@yahoo.com

I believe Microsoft has tampered with my Libre Office word documents. Previous
letters on my desktop are not able to be opened saying "does not exist." When I
try to type new documents using LibreOffice the font is so tiny (yes, I have
attempted to change the font to the highest levels) that it is almost
impossible to write anymore. Constantly, I am receiving reminders from
Microsoft stating that I am using an illegal document. 

  I downloaded a new version of LibreOffice with no success toward overcoming
these problems.

  I wish I could delete all Microsoft windows from my computer, but I am not
that tech savvy.

-- 
You are receiving this mail because:
You 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 90794] Fix the Linux HiDPI start screen

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90794

--- Comment #8 from Keith Curtis  ---
I would talk to the designers about getting a high-res splash screen.

You could also just whip up one yourself, so you can do all your coding and
testing with it you are waiting for an official one from them.

-- 
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 64900] Write a PyUNO tutorial/walktrough

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64900

abdulghz...@gmail.com changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |abdulghz...@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


Re: OpenCL enabled by default after OS reinstall causing Unit Test Failure

2016-12-14 Thread slacka
I attached the old HDD to an external USB and reconfigured the old Cygwin.bat 
to run from the new drive. With the old make 4.0 and all the old LODE tools,
the weird " [0m [37;40m[ [0m [36;1;40mCUT [0m " on every line went away, but
the build still failed on Test name: ScOpenCLTest::testFinancialXirrFormula 

So maybe this is just a case of new drivers that need to be blacklisted? Or
something I had done on my old install disabled OpenCL? Any ideas? 

It looks like LODE was not to blame here, but it raises some interesting
questions. Is there any way to get LODE to install fresh tools (ex make 4.0
-> 4.2)? Do we really want LODE to always use the newest version, with
everyone’s LODE install slightly different based on when they ran it.




--
View this message in context: 
http://nabble.documentfoundation.org/OpenCL-enabled-by-default-after-OS-reinstall-causing-Unit-Test-Failure-tp4202419p4202737.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 103543] Extremely slow deletion of rows from particular XLSX ( or hangs) in Linux

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103543

Eike Rathke  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |er...@redhat.com
   |desktop.org |

--- Comment #6 from Eike Rathke  ---
There are 2892 drawing layer objects on that sheet. Lines of effectively one
dot in size, all in column 3, distributed over rows 6 (482), 8 (482), 30 (964)
and 32 (964), all as hidden lines with no fill (actually could originate from
clearpixels copied from HTML?). When deleting, 8682 registered listeners (mixed
edit, object remove and a11y listeners) are (possibly multiple times) notified
due to position and rectangle recalculations. Almost all time is spent in
ScDrawLayer::SetPageSize() for all ScDrawLayer::RecalcPos() calls.

Not sure if there can be done anything about that with this massive abuse,
maybe some notifications can be suppressed and some "this dot does not change"
special handling for such pathological case.

-- 
You are receiving this mail because:
You 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 104503] Default behaviour of Asian Phonetic Guide window

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104503

--- Comment #2 from Mark Hung  ---
Created attachment 129652
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129652=edit
Illustration of the advice

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


[Libreoffice-bugs] [Bug 104613] FILEOPEN ODT: Rendering has changed in LibO5.3 compared to previous versions

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104613

Jacques Guilleron  changed:

   What|Removed |Added

 CC||guillero...@aol.com

--- Comment #6 from Jacques Guilleron  ---
Hi all,

In attachment 57526, there's no rendering issue.
Text frames have a reduced area which do not allow the same layout than before.
Spacings with content are the real cause of that. See Bug 104612. 

Jacques

-- 
You are receiving this mail because:
You 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 104274] CMIS in version control dialog

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104274

--- Comment #5 from Julien Nabet  ---
Created attachment 129651
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129651=edit
bt with symbols

-- 
You are receiving this mail because:
You 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 104274] CMIS in version control dialog

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104274

--- Comment #4 from Julien Nabet  ---
Reading https://bugs.documentfoundation.org/show_bug.cgi?id=95653#c2, I just
had to enable experimental features to see CMIS button.
I could reproduce the pb.

-- 
You are receiving this mail because:
You 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 104274] CMIS in version control dialog

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104274

--- Comment #3 from Julien Nabet  ---
Ok I read about tdf#98648, I suppose I must open a file on a server which uses
cmis

-- 
You are receiving this mail because:
You 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 104274] CMIS in version control dialog

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104274

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I don't see CMIS button.
What did I miss?

-- 
You are receiving this mail because:
You 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 104649] Crash after deleting all text from a particular document, and then undoing it

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104649

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #3 from Julien Nabet  ---
Created attachment 129650
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129650=edit
bt with symbols

On pc Debian x86-64 with master sources updated today, I could reproduce this.
The weird thing is I get a different bt than Xisco's one.

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


[Libreoffice-bugs] [Bug 104612] FILEOPEN ODT: Textbox is rendered smaller in LibO5.3 compared to LibO5.2, resulting in a red arrow (but no hidden text)

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104612

--- Comment #7 from Jacques Guilleron  ---
In Comment 5, I meant to say :
LO 5.3.0.0.alpha1+ Build ID: bbd44f8f89839b5abb4ec6c7ea195431de5b2f48
CPU Threads: 2; OS Version: Windows 6.1; UI Render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2016-10-26_23:19:45
Locale: fr-FR (fr_FR); Calc: CL
which is LO release where this defect is not existing.

The real cause is to find into spacing with content in text frame. For some
reason, all spacing were kept to 11 mm, without border. Before, without border,
it seems tpo me that spacings were set to 0 mm before saving. They are not
greyed now, so area is reduced. 
By setting spacings to 0 mm, you get again the same layout.

Jacques

-- 
You are receiving this mail because:
You 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 104687] paste text crash

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104687

Julien Nabet  changed:

   What|Removed |Added

   Priority|medium  |highest
 Status|UNCONFIRMED |NEW
 CC||serval2...@yahoo.fr
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||4481
 Ever confirmed|0   |1
   Severity|major   |critical

--- Comment #1 from Julien Nabet  ---
Could be a dup of tdf#104481 put in see also.

Anyway, I could reproduce this on pc Debian x86-64 with master sources updated
today.

I put the max priority because:
- it's a crash
- it's a regression
- it's a basic use case

-- 
You are receiving this mail because:
You 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 104481] Writer crash when the wrap condition for an image is edited ( gtk2 only)

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104481

Julien Nabet  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You 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 104687] paste text crash

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104687

raal  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression
 CC||r...@post.cz

-- 
You are receiving this mail because:
You 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 104687] New: paste text crash

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104687

Bug ID: 104687
   Summary: paste text crash
   Product: LibreOffice
   Version: 5.4.0.0.alpha0+
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: r...@post.cz

Description:
regression, Version: 5.4.0.0.alpha0+
Build ID: b29ae3dace6a6a2e24e531bb648cd3cb97ea3225
CPU Threads: 4; OS Version: Linux 4.4; UI Render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2016-12-14_10:19:59

Steps to Reproduce:
1.write text to cell
2.copy
3.right click -> paste only -> text


Actual Results:  
crash

Expected Results:
text pasted


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:50.0) Gecko/20100101
Firefox/50.0

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


[Libreoffice-bugs] [Bug 104359] UI: Wrong page associated with HELP Button in dialog File Services

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104359

--- Comment #3 from Commit Notification 
 ---
Gabor Kelemen committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/help/commit/?id=cb54cfefe42d115a08e3c368a028b3f0b30485d4

tdf#104359 (partial) Handle ol_item and ul_item

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

2016-12-14 Thread Eike Rathke
 svx/source/svdraw/svdhdl.cxx |   54 +--
 1 file changed, 27 insertions(+), 27 deletions(-)

New commits:
commit 6eb2598a5d052220c6b569d1b49e80800850ac06
Author: Eike Rathke 
Date:   Sat Dec 10 00:24:56 2016 +0100

fix build, invalid conversion from "const char*" to "int" [-fpermissive]

Change-Id: Idc50ef5eb250a2a68ae6c6aaed969289baaf38f4
(cherry picked from commit b52167df08511239c3d08904a3d12a3c92141f38)
Reviewed-on: https://gerrit.libreoffice.org/31978
Tested-by: Jenkins 
Reviewed-by: Tomaž Vajngerl 

diff --git a/svx/source/svdraw/svdhdl.cxx b/svx/source/svdraw/svdhdl.cxx
index 06c1982..2f8a468 100644
--- a/svx/source/svdraw/svdhdl.cxx
+++ b/svx/source/svdraw/svdhdl.cxx
@@ -683,52 +683,52 @@ OUString appendMarkerName(BitmapMarkerKind eKindOfMarker)
 switch(eKindOfMarker)
 {
 case BitmapMarkerKind::Rect_7x7:
-return "rect7";
+return OUString("rect7");
 case BitmapMarkerKind::Rect_9x9:
-return "rect9";
+return OUString("rect9");
 case BitmapMarkerKind::Rect_11x11:
-return "rect11";
+return OUString("rect11");
 case BitmapMarkerKind::Rect_13x13:
-return "rect13";
+return OUString("rect13");
 case BitmapMarkerKind::Circ_7x7:
 case BitmapMarkerKind::Customshape_7x7:
-return "circ7";
+return OUString("circ7");
 case BitmapMarkerKind::Circ_9x9:
 case BitmapMarkerKind::Customshape_9x9:
-return "circ9";
+return OUString("circ9");
 case BitmapMarkerKind::Circ_11x11:
 case BitmapMarkerKind::Customshape_11x11:
-return "circ11";
+return OUString("circ11");
 case BitmapMarkerKind::Elli_7x9:
-return "elli7x9";
+return OUString("elli7x9");
 case BitmapMarkerKind::Elli_9x11:
-return "elli9x11";
+return OUString("elli9x11");
 case BitmapMarkerKind::Elli_9x7:
-return "elli9x7";
+return OUString("elli9x7");
 case BitmapMarkerKind::Elli_11x9:
-return "elli11x9";
+return OUString("elli11x9");
 case BitmapMarkerKind::RectPlus_7x7:
-return "rectplus7";
+return OUString("rectplus7");
 case BitmapMarkerKind::RectPlus_9x9:
-return "rectplus9";
+return OUString("rectplus9");
 case BitmapMarkerKind::RectPlus_11x11:
-return "rectplus11";
+return OUString("rectplus11");
 case BitmapMarkerKind::Crosshair:
-return "cross";
+return OUString("cross");
 case BitmapMarkerKind::Anchor:
 case BitmapMarkerKind::AnchorTR:
-return "anchor";
+return OUString("anchor");
 case BitmapMarkerKind::AnchorPressed:
 case BitmapMarkerKind::AnchorPressedTR:
-return "anchor-pressed";
+return OUString("anchor-pressed");
 case BitmapMarkerKind::Glue:
-return "glue-selected";
+return OUString("glue-selected");
 case BitmapMarkerKind::Glue_Deselected:
-return "glue-unselected";
+return OUString("glue-unselected");
 default:
 break;
 }
-return "";
+return OUString();
 }
 
 OUString appendMarkerColor(BitmapColorIndex eIndex)
@@ -736,21 +736,21 @@ OUString appendMarkerColor(BitmapColorIndex eIndex)
 switch(eIndex)
 {
 case BitmapColorIndex::LightGreen:
-return "1";
+return OUString("1");
 case BitmapColorIndex::Cyan:
-return "2";
+return OUString("2");
 case BitmapColorIndex::LightCyan:
-return "3";
+return OUString("3");
 case BitmapColorIndex::Red:
-return "4";
+return OUString("4");
 case BitmapColorIndex::LightRed:
-return "5";
+return OUString("5");
 case BitmapColorIndex::Yellow:
-return "6";
+return OUString("6");
 default:
 break;
 }
-return "";
+return OUString();
 }
 
 BitmapEx ImpGetBitmapEx(BitmapMarkerKind eKindOfMarker, BitmapColorIndex 
eIndex)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: to-wiki/wikiconv2.py

2016-12-14 Thread Gabor Kelemen
 to-wiki/wikiconv2.py |6 ++
 1 file changed, 6 insertions(+)

New commits:
commit cb54cfefe42d115a08e3c368a028b3f0b30485d4
Author: Gabor Kelemen 
Date:   Sun Dec 4 23:29:36 2016 +0100

tdf#104359 (partial) Handle ol_item and ul_item

This was throwing an exception and not generating a wiki page

Change-Id: Ic7d362cf65507aa8d90335c7f0ff3b5d8ea6fe58
Reviewed-on: https://gerrit.libreoffice.org/31610
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 

diff --git a/to-wiki/wikiconv2.py b/to-wiki/wikiconv2.py
index 1910828..93f72eb 100755
--- a/to-wiki/wikiconv2.py
+++ b/to-wiki/wikiconv2.py
@@ -46,6 +46,7 @@ replace_paragraph_role = \
   'logocode': '',
   'note': '{{Note|1=',
   'null': '', # special paragraph for Variable, CaseInline, etc.
+  'ol_item': '',
   'paragraph': '',
   'related': '', # used only in one file, probably in error?
   'relatedtopics': '', # used only in one file, probably in error?
@@ -62,6 +63,7 @@ replace_paragraph_role = \
   'tablenexttip': '\n{{Tip|1=',
   'tablenextwarning': '\n{{Warning|1=',
   'tip': '{{Tip|1=',
+  'ul_item': '',
   'variable': '',
   'warning': '{{Warning|1=',
  },
@@ -82,6 +84,7 @@ replace_paragraph_role = \
 'logocode': '\n\n',
 'note': '}}\n\n',
 'null': '', # special paragraph for Variable, CaseInline, etc.
+'ol_item': '',
 'paragraph': '\n\n',
 'related': '\n\n', # used only in one file, probably in error?
 'relatedtopics': '\n\n', # used only in one file, probably in 
error?
@@ -98,6 +101,7 @@ replace_paragraph_role = \
 'tablenexttip': '}}\n\n',
 'tablenextwarning': '}}\n\n',
 'tip': '}}\n\n',
+'ul_item': '',
 'variable': '',
 'warning': '}}\n\n',
},
@@ -118,6 +122,7 @@ replace_paragraph_role = \
   'logocode': False,
   'note': True,
   'null': False,
+  'ol_item': False,
   'paragraph': False,
   'related': False,
   'relatedtopics': False,
@@ -134,6 +139,7 @@ replace_paragraph_role = \
   'tablenexttip': True,
   'tablenextwarning': True,
   'tip': True,
+  'ul_item': False,
   'variable': False,
   'warning': True,
}
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104359] UI: Wrong page associated with HELP Button in dialog File Services

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104359

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:5.4.0

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


[Libreoffice-commits] core.git: helpcontent2

2016-12-14 Thread Gabor Kelemen
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b7c55b662810ee3bf82d134ff1ff9a96bfee4046
Author: Gabor Kelemen 
Date:   Sun Dec 4 23:29:36 2016 +0100

Updated core
Project: help  cb54cfefe42d115a08e3c368a028b3f0b30485d4

tdf#104359 (partial) Handle ol_item and ul_item

This was throwing an exception and not generating a wiki page

Change-Id: Ic7d362cf65507aa8d90335c7f0ff3b5d8ea6fe58
Reviewed-on: https://gerrit.libreoffice.org/31610
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 

diff --git a/helpcontent2 b/helpcontent2
index 7de8eed..cb54cfe 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 7de8eed8b1b908c9e37f6e2499f37768a2354d27
+Subproject commit cb54cfefe42d115a08e3c368a028b3f0b30485d4
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104596] FILEOPEN: image in .DOC header incorrectly positioned

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104596

--- Comment #6 from Terrence Enger  ---
I also see the green images above the table on Linux, specifically in
the daily Linux dbgutil bibisect repository version 2016-12-14 running
on debian-stretch 64-bit.

-- 
You are receiving this mail because:
You 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' - icon-themes/breeze_svg

2016-12-14 Thread Tomaž Vajngerl
 icon-themes/breeze_svg/svx/res/marker-anchor-pressed.svg  |  143 ++
 icon-themes/breeze_svg/svx/res/marker-anchor.svg  |   81 +++
 icon-themes/breeze_svg/svx/res/marker-circ11-1.svg|   78 +++
 icon-themes/breeze_svg/svx/res/marker-circ11-2.svg|   78 +++
 icon-themes/breeze_svg/svx/res/marker-circ11-3.svg|   78 +++
 icon-themes/breeze_svg/svx/res/marker-circ11-4.svg|   78 +++
 icon-themes/breeze_svg/svx/res/marker-circ11-5.svg|   78 +++
 icon-themes/breeze_svg/svx/res/marker-circ11-6.svg|   78 +++
 icon-themes/breeze_svg/svx/res/marker-circ7-1.svg |   73 +++
 icon-themes/breeze_svg/svx/res/marker-circ7-2.svg |   73 +++
 icon-themes/breeze_svg/svx/res/marker-circ7-3.svg |   73 +++
 icon-themes/breeze_svg/svx/res/marker-circ7-4.svg |   73 +++
 icon-themes/breeze_svg/svx/res/marker-circ7-5.svg |   73 +++
 icon-themes/breeze_svg/svx/res/marker-circ7-6.svg |   73 +++
 icon-themes/breeze_svg/svx/res/marker-circ9-1.svg |   78 +++
 icon-themes/breeze_svg/svx/res/marker-circ9-2.svg |   78 +++
 icon-themes/breeze_svg/svx/res/marker-circ9-3.svg |   78 +++
 icon-themes/breeze_svg/svx/res/marker-circ9-4.svg |   78 +++
 icon-themes/breeze_svg/svx/res/marker-circ9-5.svg |   78 +++
 icon-themes/breeze_svg/svx/res/marker-circ9-6.svg |   78 +++
 icon-themes/breeze_svg/svx/res/marker-cross.svg   |   78 +++
 icon-themes/breeze_svg/svx/res/marker-elli11x9-1.svg  |   74 +++
 icon-themes/breeze_svg/svx/res/marker-elli11x9-2.svg  |   75 +++
 icon-themes/breeze_svg/svx/res/marker-elli11x9-3.svg  |   75 +++
 icon-themes/breeze_svg/svx/res/marker-elli11x9-4.svg  |   75 +++
 icon-themes/breeze_svg/svx/res/marker-elli11x9-5.svg  |   75 +++
 icon-themes/breeze_svg/svx/res/marker-elli11x9-6.svg  |   75 +++
 icon-themes/breeze_svg/svx/res/marker-elli7x9-1.svg   |   69 ++
 icon-themes/breeze_svg/svx/res/marker-elli7x9-2.svg   |   70 ++
 icon-themes/breeze_svg/svx/res/marker-elli7x9-3.svg   |   70 ++
 icon-themes/breeze_svg/svx/res/marker-elli7x9-4.svg   |   70 ++
 icon-themes/breeze_svg/svx/res/marker-elli7x9-5.svg   |   70 ++
 icon-themes/breeze_svg/svx/res/marker-elli7x9-6.svg   |   70 ++
 icon-themes/breeze_svg/svx/res/marker-elli9x11-1.svg  |   74 +++
 icon-themes/breeze_svg/svx/res/marker-elli9x11-2.svg  |   75 +++
 icon-themes/breeze_svg/svx/res/marker-elli9x11-3.svg  |   75 +++
 icon-themes/breeze_svg/svx/res/marker-elli9x11-4.svg  |   75 +++
 icon-themes/breeze_svg/svx/res/marker-elli9x11-5.svg  |   75 +++
 icon-themes/breeze_svg/svx/res/marker-elli9x11-6.svg  |   75 +++
 icon-themes/breeze_svg/svx/res/marker-elli9x7-1.svg   |   69 ++
 icon-themes/breeze_svg/svx/res/marker-elli9x7-2.svg   |   70 ++
 icon-themes/breeze_svg/svx/res/marker-elli9x7-3.svg   |   70 ++
 icon-themes/breeze_svg/svx/res/marker-elli9x7-4.svg   |   70 ++
 icon-themes/breeze_svg/svx/res/marker-elli9x7-5.svg   |   70 ++
 icon-themes/breeze_svg/svx/res/marker-elli9x7-6.svg   |   70 ++
 icon-themes/breeze_svg/svx/res/marker-glue-selected.svg   |   93 +
 icon-themes/breeze_svg/svx/res/marker-glue-unselected.svg |   89 
 icon-themes/breeze_svg/svx/res/marker-rect11-1.svg|   65 ++
 icon-themes/breeze_svg/svx/res/marker-rect11-2.svg|   67 ++
 icon-themes/breeze_svg/svx/res/marker-rect11-3.svg|   67 ++
 icon-themes/breeze_svg/svx/res/marker-rect11-4.svg|   67 ++
 icon-themes/breeze_svg/svx/res/marker-rect11-5.svg|   67 ++
 icon-themes/breeze_svg/svx/res/marker-rect11-6.svg|   67 ++
 icon-themes/breeze_svg/svx/res/marker-rect13-1.svg|   70 ++
 icon-themes/breeze_svg/svx/res/marker-rect13-2.svg|   70 ++
 icon-themes/breeze_svg/svx/res/marker-rect13-3.svg|   70 ++
 icon-themes/breeze_svg/svx/res/marker-rect13-4.svg|   70 ++
 icon-themes/breeze_svg/svx/res/marker-rect13-5.svg|   70 ++
 icon-themes/breeze_svg/svx/res/marker-rect13-6.svg|   70 ++
 icon-themes/breeze_svg/svx/res/marker-rect7-1.svg |   72 +++
 icon-themes/breeze_svg/svx/res/marker-rect7-2.svg |   67 ++
 icon-themes/breeze_svg/svx/res/marker-rect7-3.svg |   62 ++
 icon-themes/breeze_svg/svx/res/marker-rect7-4.svg |   62 ++
 icon-themes/breeze_svg/svx/res/marker-rect7-5.svg |   62 ++
 icon-themes/breeze_svg/svx/res/marker-rect7-6.svg |   62 ++
 icon-themes/breeze_svg/svx/res/marker-rect9-1.svg |   65 ++
 icon-themes/breeze_svg/svx/res/marker-rect9-2.svg |   68 ++
 icon-themes/breeze_svg/svx/res/marker-rect9-3.svg |  

[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - icon-themes/galaxy include/svx include/vcl svx/source vcl/source

2016-12-14 Thread Tomaž Vajngerl
 icon-themes/galaxy/svx/res/marker-anchor-pressed.png  |binary
 icon-themes/galaxy/svx/res/marker-anchor.png  |binary
 icon-themes/galaxy/svx/res/marker-circ11-1.png|binary
 icon-themes/galaxy/svx/res/marker-circ11-2.png|binary
 icon-themes/galaxy/svx/res/marker-circ11-3.png|binary
 icon-themes/galaxy/svx/res/marker-circ11-4.png|binary
 icon-themes/galaxy/svx/res/marker-circ11-5.png|binary
 icon-themes/galaxy/svx/res/marker-circ11-6.png|binary
 icon-themes/galaxy/svx/res/marker-circ7-1.png |binary
 icon-themes/galaxy/svx/res/marker-circ7-2.png |binary
 icon-themes/galaxy/svx/res/marker-circ7-3.png |binary
 icon-themes/galaxy/svx/res/marker-circ7-4.png |binary
 icon-themes/galaxy/svx/res/marker-circ7-5.png |binary
 icon-themes/galaxy/svx/res/marker-circ7-6.png |binary
 icon-themes/galaxy/svx/res/marker-circ9-1.png |binary
 icon-themes/galaxy/svx/res/marker-circ9-2.png |binary
 icon-themes/galaxy/svx/res/marker-circ9-3.png |binary
 icon-themes/galaxy/svx/res/marker-circ9-4.png |binary
 icon-themes/galaxy/svx/res/marker-circ9-5.png |binary
 icon-themes/galaxy/svx/res/marker-circ9-6.png |binary
 icon-themes/galaxy/svx/res/marker-cross.png   |binary
 icon-themes/galaxy/svx/res/marker-elli11x9-1.png  |binary
 icon-themes/galaxy/svx/res/marker-elli11x9-2.png  |binary
 icon-themes/galaxy/svx/res/marker-elli11x9-3.png  |binary
 icon-themes/galaxy/svx/res/marker-elli11x9-4.png  |binary
 icon-themes/galaxy/svx/res/marker-elli11x9-5.png  |binary
 icon-themes/galaxy/svx/res/marker-elli11x9-6.png  |binary
 icon-themes/galaxy/svx/res/marker-elli7x9-1.png   |binary
 icon-themes/galaxy/svx/res/marker-elli7x9-2.png   |binary
 icon-themes/galaxy/svx/res/marker-elli7x9-3.png   |binary
 icon-themes/galaxy/svx/res/marker-elli7x9-4.png   |binary
 icon-themes/galaxy/svx/res/marker-elli7x9-5.png   |binary
 icon-themes/galaxy/svx/res/marker-elli7x9-6.png   |binary
 icon-themes/galaxy/svx/res/marker-elli9x11-1.png  |binary
 icon-themes/galaxy/svx/res/marker-elli9x11-2.png  |binary
 icon-themes/galaxy/svx/res/marker-elli9x11-3.png  |binary
 icon-themes/galaxy/svx/res/marker-elli9x11-4.png  |binary
 icon-themes/galaxy/svx/res/marker-elli9x11-5.png  |binary
 icon-themes/galaxy/svx/res/marker-elli9x11-6.png  |binary
 icon-themes/galaxy/svx/res/marker-elli9x7-1.png   |binary
 icon-themes/galaxy/svx/res/marker-elli9x7-2.png   |binary
 icon-themes/galaxy/svx/res/marker-elli9x7-3.png   |binary
 icon-themes/galaxy/svx/res/marker-elli9x7-4.png   |binary
 icon-themes/galaxy/svx/res/marker-elli9x7-5.png   |binary
 icon-themes/galaxy/svx/res/marker-elli9x7-6.png   |binary
 icon-themes/galaxy/svx/res/marker-glue-selected.png   |binary
 icon-themes/galaxy/svx/res/marker-glue-unselected.png |binary
 icon-themes/galaxy/svx/res/marker-rect11-1.png|binary
 icon-themes/galaxy/svx/res/marker-rect11-2.png|binary
 icon-themes/galaxy/svx/res/marker-rect11-3.png|binary
 icon-themes/galaxy/svx/res/marker-rect11-4.png|binary
 icon-themes/galaxy/svx/res/marker-rect11-5.png|binary
 icon-themes/galaxy/svx/res/marker-rect11-6.png|binary
 icon-themes/galaxy/svx/res/marker-rect13-1.png|binary
 icon-themes/galaxy/svx/res/marker-rect13-2.png|binary
 icon-themes/galaxy/svx/res/marker-rect13-3.png|binary
 icon-themes/galaxy/svx/res/marker-rect13-4.png|binary
 icon-themes/galaxy/svx/res/marker-rect13-5.png|binary
 icon-themes/galaxy/svx/res/marker-rect13-6.png|binary
 icon-themes/galaxy/svx/res/marker-rect7-1.png |binary
 icon-themes/galaxy/svx/res/marker-rect7-2.png |binary
 icon-themes/galaxy/svx/res/marker-rect7-3.png |binary
 icon-themes/galaxy/svx/res/marker-rect7-4.png |binary
 icon-themes/galaxy/svx/res/marker-rect7-5.png |binary
 icon-themes/galaxy/svx/res/marker-rect7-6.png |binary
 icon-themes/galaxy/svx/res/marker-rect9-1.png |binary
 icon-themes/galaxy/svx/res/marker-rect9-2.png |binary
 icon-themes/galaxy/svx/res/marker-rect9-3.png |binary
 icon-themes/galaxy/svx/res/marker-rect9-4.png |binary
 icon-themes/galaxy/svx/res/marker-rect9-5.png |binary
 icon-themes/galaxy/svx/res/marker-rect9-6.png |binary
 icon-themes/galaxy/svx/res/marker-rectplus11-1.png|binary
 icon-themes/galaxy/svx/res/marker-rectplus11-2.png|binary
 icon-themes/galaxy/svx/res/marker-rectplus11-3.png|binary
 icon-themes/galaxy/svx/res/marker-rectplus11-4.png|binary
 icon-themes/galaxy/svx/res/marker-rectplus11-5.png|binary
 icon-themes/galaxy/svx/res/marker-rectplus11-6.png|binary
 icon-themes/galaxy/svx/res/marker-rectplus7-1.png |binary
 icon-themes/galaxy/svx/res/marker-rectplus7-2.png |binary
 

[Libreoffice-bugs] [Bug 104582] Relatively high DISK I/ O for Writer document containing an animated gif

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104582

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||vstuart.fo...@utsa.edu
Summary|Relatively high DISK I/O|Relatively high DISK I/O
   |for a document containing   |for Writer document
   |an animated gif |containing an animated gif
 Ever confirmed|0   |1

--- Comment #3 from V Stuart Foote  ---
Confirming on Windows 8.1 Ent 64-bit en-US with
Version: 5.3.0.0.beta2 (x64)
Build ID: a7e30712ad6d8bc9286007b37aa581983e0caba3
CPU Threads: 8; OS Version: Windows 6.29; UI Render: default; Layout Engine:
new; 
Locale: en-US (en_US); Calc: CL

or recent master
Version: 5.4.0.0.alpha0+
Build ID: a238c829b209d0708714aa753fb686525411825f
CPU Threads: 8; OS Version: Windows 6.29; UI Render: default; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-12-08_10:37:27
Locale: en-US (en_US); Calc: CL

For some reason, when the animated GIF is refreshing canvas in Writer there is
a recurring opening, read, and closing of every directory and zip'd archive in
the share\config directory.

The same animated GIF inserted to Impress canvas does not exhibit repetitive
share\config directory access and Disk I/O for LibreOffice PID is negligible.

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


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

2016-12-14 Thread Michael Stahl
 solenv/gdb/libreoffice/sw.py  |8 ++--
 sw/source/filter/inc/msfilter.hxx |1 
 sw/source/filter/ww8/writerhelper.cxx |   56 ++
 sw/source/filter/ww8/ww8par5.cxx  |3 +
 4 files changed, 64 insertions(+), 4 deletions(-)

New commits:
commit d195a3e5f4ec5c616ae83f99d48f5d4eefe5f22e
Author: Michael Stahl 
Date:   Wed Dec 14 23:02:07 2016 +0100

sw: WW8 import: try to prevent overlapping field-marks and redlines

As one knows, the features of Writer's document model that most impress
by their sheer quality of implementation are redlines and field marks.
Unsurprisingly, if the two meet in the context of the WW8 import, epic
disasters are imminent; ooo83574-1.doc is one such train wreck that
asserts with:

sw/source/core/crsr/bookmrk.cxx:111: void 
{anonymous}::lcl_RemoveFieldMarks(sw::mark::Fieldmark*, SwDoc*, sal_Unicode, 
sal_Unicode): Assertion `pStartTextNode->GetText()[rStart.nContent.GetIndex()] 
== aStartMark' failed.

This happens when, at the end of the import, the redlines are hidden by
moving them into their special SwNodes section.  The reason why this one
asserts is that a previous SwRedline erroneously deleted the start dummy
char of this field mark, because that SwRedline had the wrong start/end
positions.

In Word the problematic paragraph is shown like this, where \a\b mark fields
and I D F redlines:

"Coming out of the work of Rummler and Brache’s \a(Rummler & Brache, 
1995)(1995)\b work is the is the notion
   D  
DD   III

another” \a(p. 9)\b\a(Rummler & Brache, 1995, p. 9)\b.. ( italics in the 
original)"
   IIDD  
IDDDI

FF

The first mis-positioned redline here ranges from 71 to 79, ")(1995)\b",
so it deletes the end dummy char of the field mark.  It should range
from 72 to 78.

This commit adds some rather crude hacks which appear to work to avoid
the problem:
1. when a field mark is inserted, the start positions of the redlines
   may need to be moved
2. when the end position of a redline is set, it may need adjustment to
   exclude a field-mark that ends at the same position

Change-Id: I723f1858c84def2c063e2cb126317d06e8ac98b5

diff --git a/sw/source/filter/inc/msfilter.hxx 
b/sw/source/filter/inc/msfilter.hxx
index 66771cf..3710424 100644
--- a/sw/source/filter/inc/msfilter.hxx
+++ b/sw/source/filter/inc/msfilter.hxx
@@ -345,6 +345,7 @@ namespace sw
 
 public:
 explicit RedlineStack(SwDoc ) : mrDoc(rDoc) {}
+void MoveAttrs(const SwPosition& rPos);
 void open(const SwPosition& rPos, const SfxPoolItem& rAttr);
 bool close(const SwPosition& rPos, RedlineType_t eType);
 void close(const SwPosition& rPos, RedlineType_t eType,
diff --git a/sw/source/filter/ww8/writerhelper.cxx 
b/sw/source/filter/ww8/writerhelper.cxx
index 5b7f5a9..9c0139e 100644
--- a/sw/source/filter/ww8/writerhelper.cxx
+++ b/sw/source/filter/ww8/writerhelper.cxx
@@ -51,6 +51,8 @@
 #include 
 #include 
 #include 
+#include 
+#include 
 
 using namespace com::sun::star;
 
@@ -739,6 +741,26 @@ namespace sw
 SameOpenRedlineType(eType));
 if (aResult != maStack.rend())
 {
+SwTextNode *const pNode(rPos.nNode.GetNode().GetTextNode());
+sal_Int32 const nIndex(rPos.nContent.GetIndex());
+// HACK to prevent overlap of field-mark and redline,
+// which would destroy field-mark invariants when the redline
+// is hidden: move the redline end one to the left
+if (pNode && nIndex > 0
+&& pNode->GetText()[nIndex - 1] == CH_TXT_ATR_FIELDEND)
+{
+SwPosition const end(*rPos.nNode.GetNode().GetTextNode(),
+ nIndex - 1);
+sw::mark::IFieldmark *const pFieldMark(
+
rPos.GetDoc()->getIDocumentMarkAccess()->getFieldmarkFor(end));
+assert(pFieldMark);
+if (pFieldMark->GetMarkPos().nNode.GetIndex() == 
(*aResult)->m_aMkPos.m_nNode.GetIndex()+1
+&& pFieldMark->GetMarkPos().nContent.GetIndex() < 
(*aResult)->m_aMkPos.m_nContent)
+{
+(*aResult)->SetEndPos(end);
+return true;
+}
+}
 (*aResult)->SetEndPos(rPos);
 return true;
 }
@@ -750,6 +772,40 @@ namespace sw
 std::for_each(maStack.begin(), maStack.end(), SetEndIfOpen(rPos));
   

[Libreoffice-bugs] [Bug 104481] Writer crash when the wrap condition for an image is edited ( gtk2 only)

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104481

Julien Nabet  changed:

   What|Removed |Added

   Keywords||haveBacktrace

--- Comment #3 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I still reproduce this

When error popup displayed, I just breaked on gdb and had this bt:
(gdb) bt
#0  0x2b3c256d in poll () at ../sysdeps/unix/syscall-template.S:84
#1  0x2cc599f6 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x2cc59d82 in g_main_loop_run () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x2aaac6feee83 in gtk_dialog_run () from
/usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0
#4  0x2aaac6c6faf9 in GtkSalSystem::ShowNativeDialog (this=,
rTitle=..., rMessage=..., rButtonNames=std::__debug::list = {...},
nDefaultButton=0)
at /home/julien/lo/libreoffice/vcl/unx/gtk/gtksys.cxx:290
#5  0x2aaab4a0c5bf in SalGenericSystem::ShowNativeMessageBox
(this=0x574226e0, rTitle="LibreOfficeDev 5.4 - Fatal Error", rMessage="")
at /home/julien/lo/libreoffice/vcl/unx/generic/app/gensys.cxx:103
#6  0x2aaab4923a54 in Application::ShowNativeErrorBox
(sTitle="LibreOfficeDev 5.4 - Fatal Error", sMessage="") at
/home/julien/lo/libreoffice/vcl/source/app/svapp.cxx:1661
#7  0x2afa4bfe in desktop::(anonymous namespace)::FatalError
(sMessage="") at /home/julien/lo/libreoffice/desktop/source/app/app.cxx:447
#8  0x2afad13c in desktop::Desktop::Main (this=) at
/home/julien/lo/libreoffice/desktop/source/app/app.cxx:1699
#9  0x2aaab492ca21 in ImplSVMain () at
/home/julien/lo/libreoffice/vcl/source/app/svmain.cxx:185
#10 0x2aaab492caef in SVMain () at
/home/julien/lo/libreoffice/vcl/source/app/svmain.cxx:223
#11 0x2afe1504 in soffice_main () at
/home/julien/lo/libreoffice/desktop/source/app/sofficemain.cxx:166
#12 0x49f9 in sal_main () at
/home/julien/lo/libreoffice/desktop/source/app/main.c:48
#13 0x4a47 in main (argc=, argv=) at
/home/julien/lo/libreoffice/desktop/source/app/main.c:47

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

2016-12-14 Thread Gabor Kelemen
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0932414e0b02b79bdad485d9c8a19533d590
Author: Gabor Kelemen 
Date:   Sun Dec 4 23:25:22 2016 +0100

Updated core
Project: help  7de8eed8b1b908c9e37f6e2499f37768a2354d27

Handle 'acronym' item type

This was throwing an exception and not generating a wiki page
Format with a simple italic text for now - better ideas welcome!

Change-Id: I1b08c6b6dd2e96eef3cac4808fe23f911dc06cd3
Reviewed-on: https://gerrit.libreoffice.org/31609
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 

diff --git a/helpcontent2 b/helpcontent2
index 96a84b2..7de8eed 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 96a84b25e3ae012661a68da1ecdbbf0d94089d9b
+Subproject commit 7de8eed8b1b908c9e37f6e2499f37768a2354d27
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: to-wiki/wikiconv2.py

2016-12-14 Thread Gabor Kelemen
 to-wiki/wikiconv2.py |9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

New commits:
commit 7de8eed8b1b908c9e37f6e2499f37768a2354d27
Author: Gabor Kelemen 
Date:   Sun Dec 4 23:25:22 2016 +0100

Handle 'acronym' item type

This was throwing an exception and not generating a wiki page
Format with a simple italic text for now - better ideas welcome!

Change-Id: I1b08c6b6dd2e96eef3cac4808fe23f911dc06cd3
Reviewed-on: https://gerrit.libreoffice.org/31609
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 

diff --git a/to-wiki/wikiconv2.py b/to-wiki/wikiconv2.py
index b239419..1910828 100755
--- a/to-wiki/wikiconv2.py
+++ b/to-wiki/wikiconv2.py
@@ -996,7 +996,8 @@ class Switch(SwitchInline):
 
 class Item(ElementBase):
 replace_type = \
-{'start':{'code': '',
+{'start':{'acronym' : '\'\'',
+  'code': '',
   'input': '',
   'keycode': '{{KeyCode|',
   'tasto': '{{KeyCode|',
@@ -1008,7 +1009,8 @@ class Item(ElementBase):
   'productname': '',
   'unknown': ''
  },
- 'end':{'code': '',
+ 'end':{'acronym' : '\'\'',
+'code': '',
 'input': '',
 'keycode': '}}',
 'tasto': '}}',
@@ -1020,7 +1022,8 @@ class Item(ElementBase):
 'productname': '',
 'unknown': ''
},
- 'templ':{'code': False,
+ 'templ':{'acronym': False,
+  'code': False,
   'input': False,
   'keycode': True,
   'tasto': True,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104489] HELPWIKI $[officename] in page title is not replaced when converted to wiki page URL

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104489

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

http://cgit.freedesktop.org/libreoffice/help/commit/?id=96a84b25e3ae012661a68da1ecdbbf0d94089d9b

tdf#104489 Include the product name in wiki page URL

-- 
You are receiving this mail because:
You 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 104489] HELPWIKI $[officename] in page title is not replaced when converted to wiki page URL

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104489

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:5.4.0

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


[Libreoffice-commits] core.git: helpcontent2

2016-12-14 Thread Gabor Kelemen
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2666e679000dc6325503e08c1b8e7a67d1bd9165
Author: Gabor Kelemen 
Date:   Thu Dec 8 19:59:10 2016 +0100

Updated core
Project: help  96a84b25e3ae012661a68da1ecdbbf0d94089d9b

tdf#104489 Include the product name in wiki page URL

Change-Id: I39155cf12a7ba178b0fb4e25315bd32156086846
Reviewed-on: https://gerrit.libreoffice.org/31772
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 

diff --git a/helpcontent2 b/helpcontent2
index d3d2437..96a84b2 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit d3d24377c0ed652c0f0460ecbb4a8d80261f999d
+Subproject commit 96a84b25e3ae012661a68da1ecdbbf0d94089d9b
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: to-wiki/getalltitles.py

2016-12-14 Thread Gabor Kelemen
 to-wiki/getalltitles.py |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 96a84b25e3ae012661a68da1ecdbbf0d94089d9b
Author: Gabor Kelemen 
Date:   Thu Dec 8 19:59:10 2016 +0100

tdf#104489 Include the product name in wiki page URL

Change-Id: I39155cf12a7ba178b0fb4e25315bd32156086846
Reviewed-on: https://gerrit.libreoffice.org/31772
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 

diff --git a/to-wiki/getalltitles.py b/to-wiki/getalltitles.py
index 71f5aed..ffa5e81 100755
--- a/to-wiki/getalltitles.py
+++ b/to-wiki/getalltitles.py
@@ -31,9 +31,9 @@ def make_unique(title):
 return t
 
 replace_text_list = [
-["$[officename]",""], # to fit both LibreOffice and BrOffice
-["%PRODUCTNAME",""], # to fit both LibreOffice and BrOffice
-["$PRODUCTNAME",""], # to fit both LibreOffice and BrOffice
+["$[officename]","LibreOffice"],
+["%PRODUCTNAME","LibreOffice"],
+["$PRODUCTNAME","LibreOffice"],
 ['"+"',"Plus"],
 ['"*"',"Star"],
 ['"-"',"Minus"],
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100015] Unary and Binary Operators images missing

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100015

--- Comment #10 from Commit Notification 
 ---
Gabor Kelemen committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=0071169e7197c8c00155fc30c0c6ce4b0e17afd4

tdf#100015 Last missing icon moved from elementary set

It will be available in 5.4.0.

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

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

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


[Libreoffice-bugs] [Bug 100015] Unary and Binary Operators images missing

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100015

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:5.3.0|target:5.3.0 target:5.4.0

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


[Libreoffice-commits] core.git: icon-themes/elementary icon-themes/galaxy

2016-12-14 Thread Gabor Kelemen
 dev/null|binary
 icon-themes/galaxy/res/helpimg/starmath/im21106.png |binary
 2 files changed

New commits:
commit 0071169e7197c8c00155fc30c0c6ce4b0e17afd4
Author: Gabor Kelemen 
Date:   Fri Dec 9 22:04:41 2016 +0100

tdf#100015 Last missing icon moved from elementary set

This was still not appearing on the Attributes page

Change-Id: Ibfd10427c4a79848a2e50d26910e5d184216ef58
Reviewed-on: https://gerrit.libreoffice.org/31811
Tested-by: Jenkins 
Reviewed-by: Andras Timar 

diff --git a/icon-themes/elementary/starmath/res/im21106.png 
b/icon-themes/galaxy/res/helpimg/starmath/im21106.png
similarity index 100%
rename from icon-themes/elementary/starmath/res/im21106.png
rename to icon-themes/galaxy/res/helpimg/starmath/im21106.png
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Bug 89387 - improve performance for some matrix operations

2016-12-14 Thread Kohei Yoshida
On Wed, 2016-12-14 at 13:04 +0100, Eike Rathke wrote:
> Hi Filippo,
> 
> On Wednesday, 2016-12-14 09:59:28 +, Filippo giacchè wrote:
> 
> > 
> > -why there is no need to modify that function?
> Because it is called only in one place and that place in turn is
> called
> very rarely. There's almost no gain over all if only MatCopy() alone
> was
> optimized, despite that it proabbly can't, unless the underlying
> matrix
> structures/algorithms are touched from which all matrix functions
> could
> benefit, which would involve getting acquainted with
> mdds::multi_type_matrix that is about the hardest stuff you can get
> into.

On that front, I might just add that I've made the following change to
mdds::multi_type_matrix::copy (which MatCopy() uses internally)

https://gitlab.com/mdds/mdds/commit/6bd53e22dc21b6b88511d7e03e349021c37
56c47

which *should* automatically improve the performance of MatCopy() quite
a bit, depending on the use case.

The version of mdds we use on the master branch (and possibly some of
the older stable branches) already has this change in.

Kohei



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


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

2016-12-14 Thread Jan Holesovsky
 sw/source/uibase/uno/unotxdoc.cxx |6 ++
 1 file changed, 6 insertions(+)

New commits:
commit ee0461902fe7ffa23351f5359ae9a3dc8c0bcf0a
Author: Jan Holesovsky 
Date:   Wed Dec 14 13:56:42 2016 +0100

Disable the auto-completion for LibreOfficeKit for good.

The editeng-like approach is terribly annoying when typing, particularly in
bullet lists.

Change-Id: I66175579f801fa028273d9680d7383d8eb37bf28
Reviewed-on: https://gerrit.libreoffice.org/32009
Tested-by: Jenkins 
Reviewed-by: Andras Timar 

diff --git a/sw/source/uibase/uno/unotxdoc.cxx 
b/sw/source/uibase/uno/unotxdoc.cxx
index 8ea5fdf..e649784 100644
--- a/sw/source/uibase/uno/unotxdoc.cxx
+++ b/sw/source/uibase/uno/unotxdoc.cxx
@@ -33,6 +33,8 @@
 #include 
 #include 
 #include 
+#include 
+#include 
 #include 
 #include 
 #include 
@@ -3302,6 +3304,10 @@ void SwXTextDocument::initializeForTiledRendering(const 
css::uno::SequenceGetSwFlags().bAutoCompleteWords = 
false;
 }
 
 void SwXTextDocument::postKeyEvent(int nType, int nCharCode, int nKeyCode)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100403] MAIL MERGE WIZARD- LO crash when given invalid parameters in step 5

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100403

--- Comment #10 from Julien Nabet  ---
On pc Debian testing x86-64 with LO Debian package 5.2.3.3, I don't reproduce
this.

At step 5, "Next" button is disabled, there's only "Finish" button enabled.
Also, checking or unchecking "Align" checkbox doesn't make LO crash for me.
I also tested to put a letter on negative number. In first case, when clicking
then on another part, it puts back the former value, in second case, it puts
value 0.

Did I miss something?

-- 
You are receiving this mail because:
You 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 103407] [META] Unify behaviour and functions across apps

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103407

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||104653


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104653
[Bug 104653] Zoom In and Zoom Out uno commands not functional in Writer and
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 85811] [META] Main menu bugs and enhancements

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85811

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on|104653  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104653
[Bug 104653] Zoom In and Zoom Out uno commands not functional in Writer and
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 104653] Zoom In and Zoom Out uno commands not functional in Writer and Calc

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104653

Yousuf Philips (jay)  changed:

   What|Removed |Added

 CC||momonas...@gmail.com,
   ||philip...@hotmail.com
Version|4.0.0.3 release |Inherited From OOo
 Blocks|85811   |103407
Summary|Custom "Zoom In" command on |Zoom In and Zoom Out uno
   |View menu is inactive   |commands not functional in
   ||Writer and Calc

--- Comment #2 from Yousuf Philips (jay)  ---
So the Zoom In (.uno:ZoomPlus) and Zoom Out (.uno:ZoomMinus) commands dont
function in Writer and Calc when in Normal mode but work in print preview mode,
but do in Impress and Draw.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=85811
[Bug 85811] [META] Main menu bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=103407
[Bug 103407] [META] Unify behaviour and functions across apps
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 102323] CMIS https with Gdrive: Selected Device is not valid ( LibreOffice Vanilla)

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102323

Julien Nabet  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTOURBUG

--- Comment #9 from Julien Nabet  ---
Thank you Michael/Andras for your feedback. So if this is Collabora's bug, I
suppose we can consider this one as NOTOURBUG.

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

2016-12-14 Thread Rene Engelhard
 configure.ac |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 647f149a7413d4b88c5567691909c32ae9449501
Author: Rene Engelhard 
Date:   Wed Dec 14 22:39:02 2016 +0100

only check for libEGL in internal epoxy case

as that TTBOMK is the case where it's used. At least it's not used in
vcl and slideshow directly

Change-Id: Ie77656e56e0017800bc0107c2bfe63ddc4b5b9a5

diff --git a/configure.ac b/configure.ac
index 62cb35e..e36dbd4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10106,7 +10106,6 @@ if test "x$enable_gtk3" = "xyes"; then
 GTK3_CFLAGS=$(printf '%s' "$GTK3_CFLAGS" | sed -e "s/-I/${ISYSTEM?}/g")
 FilterLibs "${GTK3_LIBS}"
 GTK3_LIBS="${filteredlibs}"
-AC_CHECK_LIB(EGL, eglMakeCurrent, [:], AC_MSG_ERROR([libEGL required.]))
 fi
 AC_SUBST(GTK3_LIBS)
 AC_SUBST(GTK3_CFLAGS)
@@ -11700,6 +11699,9 @@ dnl 
===
 dnl Check for system epoxy
 dnl ===
 libo_CHECK_SYSTEM_MODULE([epoxy], [EPOXY], [epoxy >= 1.3.1], 
["-I${WORKDIR}/UnpackedTarball/epoxy/include"])
+if test "$with_system_epoxy" = "no"; then
+AC_CHECK_LIB(EGL, eglMakeCurrent, [:], AC_MSG_ERROR([libEGL required.]))
+fi
 
 dnl ===
 dnl Test whether to use avahi
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 85811] [META] Main menu bugs and enhancements

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85811

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||104641


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104641
[Bug 104641] MACOS: No shape preview in Insert menu UI
-- 
You are receiving this mail because:
You 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 104641] MACOS: No shape preview in Insert menu UI

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104641

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||85811


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 104641] MACOS: No shape preview in Insert menu UI

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104641

--- Comment #9 from Yousuf Philips (jay)  ---
(In reply to Alex Thurgood from comment #6)
> Just out of interest - why is the default set to show on Windows, and hide
> on OSX ?

The user interface guidelines for icons in menus on OSX and Gnome 3 is to not
show them, while for Windows and KDe is to show them. :D

-- 
You are receiving this mail because:
You 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 104686] New: Crash in: MenuFloatingWindow::ImplGetStartY()

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104686

Bug ID: 104686
   Summary: Crash in: MenuFloatingWindow::ImplGetStartY()
   Product: LibreOffice
   Version: 5.2.3.3 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: garfieldba...@gmail.com

This bug was filed from the crash reporting server and is
br-37f400af-8df9-4540-b953-64770ed434d5.
=
Open libre office draw and click on any of the top menu items. Dropdown box
appears and is empty. Use keyboard arrows to go up and down until crash is
triggered.

-- 
You are receiving this mail because:
You 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 104685] Item gets pasted on the next page (and out of border)

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104685

--- Comment #1 from Telesto  ---
Created attachment 129649
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129649=edit
Example 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 104685] New: Item gets pasted on the next page (and out of border)

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104685

Bug ID: 104685
   Summary: Item gets pasted on the next page (and out of border)
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
When copying and item and pasting it to a new document, the item gets pasted to
the next page (and out of border)

Steps to Reproduce:
1.Open attached file
2.Open a new document
3.Copy first row of the attached file (or a single card)
3.Paste it in the new document

Actual Results:  
Items get pasted on the next page and out of border

Expected Results:
Should be pasted on the first page and in border


Reproducible: Always

User Profile Reset: No

Additional Info:
Found in:
Version: 5.4.0.0.alpha0+
Build ID: d538d3d84172a74dfe97d59a6d3daf9a45459cab
CPU Threads: 4; OS Version: Windows 6.19; UI Render: default; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-12-14_00:28:59
Locale: nl-NL (nl_NL); Calc: CL

and in
Versie: 4.4.6.3 
Build ID: e8938fd3328e95dcf59dd64e7facd2c7d67c704d
Locale: nl_NL

and in
Versie: 4.2.0.4 
Build ID: 05dceb5d363845f2cf968344d7adab8dcfb2ba71

and in
Versie 4.0.0.3 (Bouw-id: 7545bee9c2a0782548772a21bc84a9dcc583b89)

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


User-Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:45.0) Gecko/20100101
Firefox/45.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 96218] FILEOPEN: MSO DOCX image incorrectly placed when using Alignment Position( Top Margin, Top Page ...)

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96218

--- Comment #14 from Luke  ---
Zolnai,
You been working in this area recently. Is this regression something you could
take a look at?

-- 
You are receiving this mail because:
You 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 104636] Crash: "Assertion Failed when" copying image an closing Writer afterwards

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104636

Telesto  changed:

   What|Removed |Added

   Keywords||haveBacktrace

-- 
You are receiving this mail because:
You 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 104636] Crash: "Assertion Failed when" copying image an closing Writer afterwards

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104636

--- Comment #4 from Telesto  ---
Created attachment 129648
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129648=edit
WinDBG Backtrace

With:
Version: 5.4.0.0.alpha0+
Build ID: d538d3d84172a74dfe97d59a6d3daf9a45459cab
CPU Threads: 4; OS Version: Windows 6.19; UI Render: default; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-12-14_00:28:59
Locale: nl-NL (nl_NL); Calc: CL

Only copying a item to clipboard in Writer and closing writer afterward

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


[Libreoffice-commits] core.git: vcl/Library_vclplug_tde.mk

2016-12-14 Thread Caolán McNamara
 vcl/Library_vclplug_tde.mk |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 9656ec6e6fd1ac38d26f5a99e072f74168ec52db
Author: Caolán McNamara 
Date:   Wed Dec 14 20:49:08 2016 +

why can't tde die

Change-Id: I65e133c6d1c9ddc0b0e66e2cd1aff83c3713c0da

diff --git a/vcl/Library_vclplug_tde.mk b/vcl/Library_vclplug_tde.mk
index ad1ed40..2dd582a 100644
--- a/vcl/Library_vclplug_tde.mk
+++ b/vcl/Library_vclplug_tde.mk
@@ -56,6 +56,7 @@ $(eval $(call gb_Library_use_libraries,vclplug_tde,\
 
 $(eval $(call gb_Library_use_externals,vclplug_tde,\
boost_headers \
+   epoxy \
icuuc \
 ))
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104651] UI - Reducing user confusion: Queries, Views and Tables

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104651

--- Comment #10 from Howard Johnson  ---
Here is another similar idea:


Make a new separate section for Views, and instead insert it between Table and
Queries, like this: 

  Tables, Views, Queries, Forms, Reports, ..



Next, because the only feature I can see that a Query has over a View, is that
it seems to remember the physical layout (xy positions) of the underlying
table's relationships, can this one feature then be merged into a View?  (Am I
missing something, or is this the only difference between the two?)

In other words, can the physical xy position of the table's relationships be
somehow saved in Views, because as it is, it forgets this information and makes
a mess out of my connected tables when I reopen a view.


And then later depreciate Queries, because a View can do everything a Query can
and more, so we get:

  Tables, Views, Forms, Reports, ..


This breaks from Access, but might straighten things up a bit, and remain more
compatible with other things.

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


[Libreoffice-ux-advise] [Bug 104561] Improve usability in dialog for Java start parameters

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104561

Roland Illig  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-- 
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 104561] Improve usability in dialog for Java start parameters

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104561

Roland Illig  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

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


[Libreoffice-bugs] [Bug 99006] FORMATTING: Freeze when attempting to Insert Index/ Table of Contents and editing a Style (non-admin Windows accounts)

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99006

--- Comment #16 from Buovjaga  ---
(In reply to R. Bingham from comment #15)
> some failed or non-existent error recovery in the code.  So, need
> instruction for LO builtin diag or a recommendation for a tool to capture LO
> process state and/or stack dump while it is spinning or use the Win Task
> Manager Dump File function to post something to Bugzilla for interpretation.

You could try WinDbg:
https://wiki.documentfoundation.org/How_to_get_a_backtrace_with_WinDbg

When it hangs, you could try giving this command in WinDbg:
~* kp

Note: I'm not a Win debugging guru.

-- 
You are receiving this mail because:
You 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 104473] Function macro not usable, if name corresponds to english name of builtin function

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104473

--- Comment #3 from Eike Rathke  ---
BASIC runtime function names are not translated. BASIC TimeValue() is named
TimeValue() in any UI language. You're quite on the safe side if you prefix
your own function names, for example my_timevalue().

-- 
You are receiving this mail because:
You 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 104639] Crash in: osl_acquireMutex

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104639

Telesto  changed:

   What|Removed |Added

   Keywords||filter:ods, haveBacktrace

-- 
You are receiving this mail because:
You 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: configure.ac download.lst external/hunspell lingucomponent/source

2016-12-14 Thread Caolán McNamara
 configure.ac |4 -
 download.lst |2 
 external/hunspell/UnpackedTarball_hunspell.mk|5 --
 external/hunspell/hunspell-solaris.patch |   12 -
 external/hunspell/hunspell-windows.patch |   21 -
 lingucomponent/source/spellcheck/spell/sspellimp.cxx |   44 +++
 6 files changed, 39 insertions(+), 49 deletions(-)

New commits:
commit d423121dba0ad19d307fe8aebfcf566a8b44dc1a
Author: Caolán McNamara 
Date:   Tue Aug 30 09:27:05 2016 +0100

update to latest hunspell 1-5 release

Change-Id: Ifb412506f2e36878d44d0e4f6360ae8d070ffa15
Reviewed-on: https://gerrit.libreoffice.org/28488
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/configure.ac b/configure.ac
index 251d048..62cb35e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9562,7 +9562,7 @@ if test "$with_system_hunspell" = "yes"; then
 HUNSPELL_LIBS=-lhunspell
 fi
 AC_LANG_POP([C++])
-libo_MINGW_CHECK_DLL([libhunspell-1.4])
+libo_MINGW_CHECK_DLL([libhunspell-1.5])
 HUNSPELL_CFLAGS=$(printf '%s' "$HUNSPELL_CFLAGS" | sed -e 
"s/-I/${ISYSTEM?}/g")
 FilterLibs "${HUNSPELL_LIBS}"
 HUNSPELL_LIBS="${filteredlibs}"
@@ -9573,7 +9573,7 @@ else
 if test "$COM" = "MSC"; then
 HUNSPELL_LIBS="${WORKDIR}/LinkTarget/StaticLibrary/hunspell.lib"
 else
-
HUNSPELL_LIBS="-L${WORKDIR}/UnpackedTarball/hunspell/src/hunspell/.libs 
-lhunspell-1.4"
+
HUNSPELL_LIBS="-L${WORKDIR}/UnpackedTarball/hunspell/src/hunspell/.libs 
-lhunspell-1.5"
 fi
 BUILD_TYPE="$BUILD_TYPE HUNSPELL"
 fi
diff --git a/download.lst b/download.lst
index 9d7af4f..855f5b6 100644
--- a/download.lst
+++ b/download.lst
@@ -61,7 +61,7 @@ export GRAPHITE_TARBALL := 
3069842a88b8f40c6b83ad2850cda293-graphite2-minimal-1.
 export HARFBUZZ_MD5SUM := 5986e1bfcd983d1f6caa53ef64c4abc5
 export HARFBUZZ_TARBALL := harfbuzz-1.3.2.tar.bz2
 export HSQLDB_TARBALL := 17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip
-export HUNSPELL_TARBALL := 
33d370f7fe5a030985e445a5672b2067-hunspell-1.4.1.tar.gz
+export HUNSPELL_TARBALL := 
9849a2381bacbeb2714034ad825bede8-hunspell-1.5.4.tar.gz
 export HYPHEN_TARBALL := 5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz
 export ICU_TARBALL := 1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz
 export JFREEREPORT_FLOW_ENGINE_TARBALL := 
ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
diff --git a/external/hunspell/UnpackedTarball_hunspell.mk 
b/external/hunspell/UnpackedTarball_hunspell.mk
index e70e33f..127ca5d 100644
--- a/external/hunspell/UnpackedTarball_hunspell.mk
+++ b/external/hunspell/UnpackedTarball_hunspell.mk
@@ -11,11 +11,6 @@ $(eval $(call gb_UnpackedTarball_UnpackedTarball,hunspell))
 
 $(eval $(call gb_UnpackedTarball_set_tarball,hunspell,$(HUNSPELL_TARBALL)))
 
-$(eval $(call gb_UnpackedTarball_add_patches,hunspell,\
-   external/hunspell/hunspell-solaris.patch \
-   external/hunspell/hunspell-windows.patch \
-))
-
 ifeq ($(COM),MSC)
 $(eval $(call gb_UnpackedTarball_set_post_action,hunspell,\
touch src/hunspell/config.h \
diff --git a/external/hunspell/hunspell-solaris.patch 
b/external/hunspell/hunspell-solaris.patch
deleted file mode 100644
index b07bbb2..000
--- a/external/hunspell/hunspell-solaris.patch
+++ /dev/null
@@ -1,12 +0,0 @@
 misc/hunspell-1.3.2.orig/src/tools/hunspell.cxx2010-02-27 
23:42:05.0 +
-+++ misc/build/hunspell-1.3.2/src/tools/hunspell.cxx   2010-02-27 
23:43:02.0 +
-@@ -10,6 +10,9 @@
- #include "hunspell.hxx"
- #include "csutil.hxx"
- 
-+// switch off iconv support for tests (fixing Solaris problems)
-+#undef HAVE_ICONV
-+
- #ifndef HUNSPELL_EXTRA
- #define suggest_auto suggest
- #endif
diff --git a/external/hunspell/hunspell-windows.patch 
b/external/hunspell/hunspell-windows.patch
deleted file mode 100644
index 357272d..000
--- a/external/hunspell/hunspell-windows.patch
+++ /dev/null
@@ -1,21 +0,0 @@
 /dev/null  2016-03-15 09:11:25.292954614 +
-+++ misc/hunspell-1.3.4/src/hunspell/hunvisapi.h   2016-04-06 
16:40:47.181698825 +0100
-@@ -0,0 +1,18 @@
-+#ifndef _HUNSPELL_VISIBILITY_H_
-+#define _HUNSPELL_VISIBILITY_H_
-+
-+#if defined(HUNSPELL_STATIC)
-+#  define LIBHUNSPELL_DLL_EXPORTED
-+#elif defined(_MSC_VER)
-+#  if defined(BUILDING_LIBHUNSPELL)
-+#define LIBHUNSPELL_DLL_EXPORTED __declspec(dllexport)
-+#  else
-+#define LIBHUNSPELL_DLL_EXPORTED __declspec(dllimport)
-+#  endif
-+#elif defined(BUILDING_LIBHUNSPELL) && 1
-+#  define LIBHUNSPELL_DLL_EXPORTED __attribute__((__visibility__("default")))
-+#else
-+#  define LIBHUNSPELL_DLL_EXPORTED
-+#endif
-+
-+#endif
diff --git a/lingucomponent/source/spellcheck/spell/sspellimp.cxx 
b/lingucomponent/source/spellcheck/spell/sspellimp.cxx
index 

[Libreoffice-bugs] [Bug 104639] Crash in: osl_acquireMutex

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104639

--- Comment #5 from Telesto  ---
Created attachment 129647
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129647=edit
WinDBG Backtrace

Version: 5.4.0.0.alpha0+
Build ID: d538d3d84172a74dfe97d59a6d3daf9a45459cab
CPU Threads: 4; OS Version: Windows 6.19; UI Render: default; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-12-14_00:28:59
Locale: nl-NL (nl_NL); 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-bugs] [Bug 104651] UI - Reducing user confusion: Queries, Views and Tables

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104651

--- Comment #9 from Howard Johnson  ---
Thanks for the points about virtual tables and underlying views.  

It appears to me that in Access a Query might actually be an underlying View.


I imagine that you can just close this now.

I'm frustrated because although LO Base at first looks a lot like Access, so
much important functionality is missing.  I hope to someday get to where I
could help make LO Base better.


I'm here because Windows 10 is such a mess now.

Thanks to all of you.

-- 
You are receiving this mail because:
You 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 99006] FORMATTING: Freeze when attempting to Insert Index/ Table of Contents and editing a Style (non-admin Windows accounts)

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99006

--- Comment #15 from R. Bingham  ---
Tested on another Win10 x64 image available (HP laptop factory Win10 Pro image)
and TOC creation worked for an unprivileged user.  My original additions to
this bug where on HP hardware but the Win images where built from MS System
Builder install (Win 8.1) or the MS Win10 migration from that, so not typical
consumer images supplied with hardware by manufacturers.  Still smells like a
permissions issue that in turn reveals some failed or non-existent error
recovery in the code.  So, need instruction for LO builtin diag or a
recommendation for a tool to capture LO process state and/or stack dump while
it is spinning or use the Win Task Manager Dump File function to post something
to Bugzilla for interpretation.

R

-- 
You are receiving this mail because:
You 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 104682] menu bar is a series of black bars

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104682

--- Comment #3 from rdw...@gmail.com ---
please note, this is a report where the toolbar is turning black, not
specifically the menu as in 104525.  May be the same root cause; I don't know.

-- 
You are receiving this mail because:
You 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 104659] Upgrading to 5.2.3.3 stopped with error could not access cli_cppuhelper.dll

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104659

wherewe...@outlook.com changed:

   What|Removed |Added

Version|unspecified |5.2.3.3 release

--- Comment #2 from wherewe...@outlook.com ---
OS is Windows 10, Libre Office update LibreOffice_5.2.3_Winx86 Windows
Installer downloaded yesterday and I am the System Administrator with all
rights. I've had this problem on earlier 5.2.3 downloads but 5.2.2 upgrades
work exactly as they are supposed to.

-- 
You are receiving this mail because:
You 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 32506] Find & Replace for Base

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=32506

abhilash300si...@gmail.com changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |abhilash300si...@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 32506] Find & Replace for Base

2016-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=32506

abhilash300si...@gmail.com changed:

   What|Removed |Added

 QA Contact|abhilash300si...@gmail.com  |

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


  1   2   3   4   >