[Libreoffice-commits] core.git: 8 commits - bridges/source config_host/config_cxxabi.h.in config_host/config_gcc.h.in configure.ac external/opencollada

2016-02-25 Thread Stephan Bergmann
 bridges/source/cpp_uno/gcc3_linux_intel/share.hxx|   19 --
 bridges/source/cpp_uno/gcc3_linux_x86-64/except.cxx  |4 
 bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx   |  172 ++-
 bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx |   10 -
 config_host/config_cxxabi.h.in   |   25 ++
 config_host/config_gcc.h.in  |   19 --
 configure.ac |   84 -
 external/opencollada/UnpackedTarball_opencollada.mk  |1 
 external/opencollada/patches/libc++.patch.0  |   21 ++
 9 files changed, 232 insertions(+), 123 deletions(-)

New commits:
commit 49f81b3f33e1b043a1615855503768d78db5f093
Author: Stephan Bergmann 
Date:   Fri Feb 26 08:11:42 2016 +0100

external/opencollada: Adapt to clang -stdlib=libc++

For one, libc++ has no  headers, and for another, 
std::isnan
needs .

Change-Id: I39179a9069826cb08bac19c0f6e56acdc1ab6b9d

diff --git a/external/opencollada/UnpackedTarball_opencollada.mk 
b/external/opencollada/UnpackedTarball_opencollada.mk
index a183792..f70cc2a 100644
--- a/external/opencollada/UnpackedTarball_opencollada.mk
+++ b/external/opencollada/UnpackedTarball_opencollada.mk
@@ -16,6 +16,7 @@ $(eval $(call gb_UnpackedTarball_add_patches,opencollada,\

external/opencollada/patches/0002-Expose-sid-for-textures-in-extras.patch.1 \
external/opencollada/patches/opencollada.clang.patch.0 \
external/opencollada/patches/opencollada.libxml.patch.0 \
+   external/opencollada/patches/libc++.patch.0 \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/external/opencollada/patches/libc++.patch.0 
b/external/opencollada/patches/libc++.patch.0
new file mode 100644
index 000..bcf5b2c
--- /dev/null
+++ b/external/opencollada/patches/libc++.patch.0
@@ -0,0 +1,21 @@
+--- COLLADABaseUtils/include/COLLADABUhash_map.h
 COLLADABaseUtils/include/COLLADABUhash_map.h
+@@ -60,7 +60,7 @@
+ #define COLLADABU_HASH_NAMESPACE_CLOSE }
+ #define COLLADABU_HASH_FUN hash
+ #endif
+-#elif (defined(__APPLE__) || defined(__FreeBSD__)) && defined(_LIBCPP_VERSION)
++#elif defined(_LIBCPP_VERSION)
+ #include 
+ #include 
+ #define COLLADABU_HASH_MAP std::unordered_map
+--- GeneratedSaxParser/src/GeneratedSaxParserUtils.cpp
 GeneratedSaxParser/src/GeneratedSaxParserUtils.cpp
+@@ -10,6 +10,7 @@
+ 
+ #include "GeneratedSaxParserUtils.h"
+ #include 
++#include 
+ #include 
+ #include 
+ #include 
commit 1e161eb96e4ed72e43c158253069f974fff5b36f
Author: Stephan Bergmann 
Date:   Fri Feb 26 08:10:38 2016 +0100

Use config_cxxabi.h to check for __*class_type_info

...as needed e.g. when building on Linux with clang -stdlib=libc++ against
libc++abi

Change-Id: I1f6f5ebcf5410c65453549ecea77581ccdaabc17

diff --git a/bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx 
b/bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx
index 0c9e2c5..bac7ef6 100644
--- a/bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx
+++ b/bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx
@@ -33,25 +33,72 @@
 #include "uno/any2.h"
 #include "uno/mapping.h"
 
-#ifdef _LIBCPP_VERSION
+#if !HAVE_CXXABI_H_CLASS_TYPE_INFO
+// ,
+// libstdc++-v3/libsupc++/cxxabi.h:
+namespace __cxxabiv1 {
+class __class_type_info: public std::type_info {
+public:
+explicit __class_type_info(char const * n): type_info(n) {}
+~__class_type_info() override;
+};
+}
+#endif
 
-namespace __cxxabiv1
-{
-struct __class_type_info : public std::type_info
-{
-explicit __class_type_info( const char *__n ) : type_info( __n ) { }
-virtual ~__class_type_info();
-};
+#if !HAVE_CXXABI_H_SI_CLASS_TYPE_INFO
+// ,
+// libstdc++-v3/libsupc++/cxxabi.h:
+namespace __cxxabiv1 {
+class __si_class_type_info: public __class_type_info {
+public:
+__class_type_info const * __base_type;
+explicit __si_class_type_info(
+char const * n, __class_type_info const *base):
+__class_type_info(n), __base_type(base) {}
+~__si_class_type_info() override;
+};
+}
+#endif
 
-struct __si_class_type_info : public __class_type_info
-{
-explicit __si_class_type_info( const char *__n, const 
__class_type_info *__b ) :
-__class_type_info( __n ), __base_type( __b ) { }
-virtual ~__si_class_type_info();
-const __class_type_info *__base_type;
+#if !HAVE_CXXABI_H_BASE_CLASS_TYPE_INFO
+// ,
+// libstdc++-v3/libsupc++/cxxabi.h:
+namespace __cxxabiv1 {
+struct __base_class_type_info {
+__class_type_info const * __base_type;
+#if defined _GLIBCXX_LLP64
+long long __offset_flags;
+#else
+long __offset_flags;
+#endif
+enum __offset_flags_masks {
+__virtual_mask = 0x1,
+__public_mask = 0x2,
+   

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

2016-02-25 Thread Stephan Bergmann
 xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.hxx |   36 
+-
 1 file changed, 18 insertions(+), 18 deletions(-)

New commits:
commit b878666cd117358ff93f7dd49e8837d027bef8e0
Author: Stephan Bergmann 
Date:   Fri Feb 26 08:54:20 2016 +0100

-Werror,-Winconsistent-missing-override

Change-Id: I1da31c370ce60ce107f70e9d8767af04297defca

diff --git a/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.hxx 
b/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.hxx
index bbe3445..e83ea6e 100644
--- a/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.hxx
+++ b/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.hxx
@@ -50,33 +50,33 @@ class X509Certificate_MSCryptImpl : public 
::cppu::WeakImplHelper<
 virtual ~X509Certificate_MSCryptImpl() ;
 
 //Methods from XCertificate
-virtual sal_Int16 SAL_CALL getVersion() throw ( 
::com::sun::star::uno::RuntimeException) ;
+virtual sal_Int16 SAL_CALL getVersion() throw ( 
::com::sun::star::uno::RuntimeException) override;
 
-virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL 
getSerialNumber() throw ( ::com::sun::star::uno::RuntimeException) ;
-virtual OUString SAL_CALL getIssuerName() throw ( 
::com::sun::star::uno::RuntimeException) ;
-virtual OUString SAL_CALL getSubjectName() throw ( 
::com::sun::star::uno::RuntimeException) ;
-virtual ::com::sun::star::util::DateTime SAL_CALL getNotValidBefore() 
throw ( ::com::sun::star::uno::RuntimeException) ;
-virtual ::com::sun::star::util::DateTime SAL_CALL getNotValidAfter() 
throw ( ::com::sun::star::uno::RuntimeException) ;
-virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL 
getIssuerUniqueID() throw ( ::com::sun::star::uno::RuntimeException) ;
-virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL 
getSubjectUniqueID() throw ( ::com::sun::star::uno::RuntimeException) ;
-virtual ::com::sun::star::uno::Sequence< 
::com::sun::star::uno::Reference< 
::com::sun::star::security::XCertificateExtension > > SAL_CALL getExtensions() 
throw ( ::com::sun::star::uno::RuntimeException) ;
-virtual ::com::sun::star::uno::Reference< 
::com::sun::star::security::XCertificateExtension > SAL_CALL 
findCertificateExtension( const ::com::sun::star::uno::Sequence< sal_Int8 >& 
oid ) throw (::com::sun::star::uno::RuntimeException) ;
-virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL 
getEncoded() throw ( ::com::sun::star::uno::RuntimeException) ;
+virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL 
getSerialNumber() throw ( ::com::sun::star::uno::RuntimeException) override;
+virtual OUString SAL_CALL getIssuerName() throw ( 
::com::sun::star::uno::RuntimeException) override;
+virtual OUString SAL_CALL getSubjectName() throw ( 
::com::sun::star::uno::RuntimeException) override;
+virtual ::com::sun::star::util::DateTime SAL_CALL getNotValidBefore() 
throw ( ::com::sun::star::uno::RuntimeException) override;
+virtual ::com::sun::star::util::DateTime SAL_CALL getNotValidAfter() 
throw ( ::com::sun::star::uno::RuntimeException) override;
+virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL 
getIssuerUniqueID() throw ( ::com::sun::star::uno::RuntimeException) override;
+virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL 
getSubjectUniqueID() throw ( ::com::sun::star::uno::RuntimeException) override;
+virtual ::com::sun::star::uno::Sequence< 
::com::sun::star::uno::Reference< 
::com::sun::star::security::XCertificateExtension > > SAL_CALL getExtensions() 
throw ( ::com::sun::star::uno::RuntimeException) override;
+virtual ::com::sun::star::uno::Reference< 
::com::sun::star::security::XCertificateExtension > SAL_CALL 
findCertificateExtension( const ::com::sun::star::uno::Sequence< sal_Int8 >& 
oid ) throw (::com::sun::star::uno::RuntimeException) override;
+virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL 
getEncoded() throw ( ::com::sun::star::uno::RuntimeException) override;
 virtual OUString SAL_CALL getSubjectPublicKeyAlgorithm()
-throw ( ::com::sun::star::uno::RuntimeException) ;
+throw ( ::com::sun::star::uno::RuntimeException) override;
 virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL 
getSubjectPublicKeyValue()
-throw ( ::com::sun::star::uno::RuntimeException) ;
+throw ( ::com::sun::star::uno::RuntimeException) override;
 virtual OUString SAL_CALL getSignatureAlgorithm()
-throw ( ::com::sun::star::uno::RuntimeException) ;
+throw ( ::com::sun::star::uno::RuntimeException) override;
 virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL 
getSHA1Thumbprint()
-throw ( ::com::sun::star::uno::RuntimeException) ;
+throw ( 

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

2016-02-25 Thread Stephan Bergmann
 xmlsecurity/qa/unit/signing/signing.cxx |   14 --
 1 file changed, 12 insertions(+), 2 deletions(-)

New commits:
commit b5c1485ac9a1c8bd65c12ee579f05cd140dc1219
Author: Stephan Bergmann 
Date:   Fri Feb 26 08:53:43 2016 +0100

Improve failure output

Change-Id: Ia542ab0644611ff8e36c8b52138e1ef064972606

diff --git a/xmlsecurity/qa/unit/signing/signing.cxx 
b/xmlsecurity/qa/unit/signing/signing.cxx
index ce69d27..033e7b9 100644
--- a/xmlsecurity/qa/unit/signing/signing.cxx
+++ b/xmlsecurity/qa/unit/signing/signing.cxx
@@ -7,6 +7,10 @@
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  */
 
+#include 
+
+#include 
+
 #include 
 #include 
 
@@ -196,8 +200,14 @@ void SigningTest::testOOXMLPartial()
 CPPUNIT_ASSERT(pObjectShell);
 // This was SignatureState::BROKEN due to missing RelationshipTransform 
and SHA-256 support.
 // We expect NOTVALIDATED in case the root CA is not imported on the 
system, and PARTIAL_OK otherwise, so accept both.
-int nActual = static_cast(pObjectShell->GetDocumentSignatureState());
-CPPUNIT_ASSERT(nActual == static_cast(SignatureState::NOTVALIDATED) 
|| nActual == static_cast(SignatureState::PARTIAL_OK));
+SignatureState nActual = pObjectShell->GetDocumentSignatureState();
+CPPUNIT_ASSERT_MESSAGE(
+(OString::number(
+static_cast::type>(
+nActual))
+ .getStr()),
+(nActual == SignatureState::NOTVALIDATED
+ || nActual == SignatureState::PARTIAL_OK));
 }
 
 void SigningTest::testOOXMLBroken()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-02-25 Thread Stephan Bergmann
 slideshow/source/engine/wakeupevent.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 6d4eb665825db37d735d5906af691fd31345a1e0
Author: Stephan Bergmann 
Date:   Fri Feb 26 08:53:04 2016 +0100

Missing include

Change-Id: I6f2d7dc98b6c3b98a7ed27552c1e8b3b9481f619

diff --git a/slideshow/source/engine/wakeupevent.cxx 
b/slideshow/source/engine/wakeupevent.cxx
index 5479d10..9f114b4 100644
--- a/slideshow/source/engine/wakeupevent.cxx
+++ b/slideshow/source/engine/wakeupevent.cxx
@@ -17,6 +17,9 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
+#include 
+
+#include 
 
 #include 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-02-25 Thread Stephan Bergmann
 external/boost/UnpackedTarball_boost.mk |3 
 external/boost/clang-cl.patch.0 |  110 +++-
 2 files changed, 39 insertions(+), 74 deletions(-)

New commits:
commit 229caecce438027e6d58b70c25df8ff643aa0e69
Author: Stephan Bergmann 
Date:   Fri Feb 26 08:50:47 2016 +0100

Adapt clang-cl.patch.0 to Boost 1.60

Change-Id: If079016bf90d593886c11366626f7c4a06ede8be

diff --git a/external/boost/UnpackedTarball_boost.mk 
b/external/boost/UnpackedTarball_boost.mk
index 10ea672..a97964b 100644
--- a/external/boost/UnpackedTarball_boost.mk
+++ b/external/boost/UnpackedTarball_boost.mk
@@ -74,8 +74,7 @@ boost_patches += boost_1_59_0.multi_array.wshadow.patch
 # https://svn.boost.org/trac/boost/ticket/11501
 boost_patches += boost_1_59_0.property_tree.wreturn-type.patch
 
-# TODO(davido): port the patch if needed to 1.60
-#boost_patches += clang-cl.patch.0
+boost_patches += clang-cl.patch.0
 boost_patches += gcc6-warnings.patch.0
 
 # This patch was already applied upstream
diff --git a/external/boost/clang-cl.patch.0 b/external/boost/clang-cl.patch.0
old mode 100644
new mode 100755
index 71bf2d8..934eb57
--- a/external/boost/clang-cl.patch.0
+++ b/external/boost/clang-cl.patch.0
@@ -40,18 +40,6 @@
  
  template 
  struct numeric_limits : chrono_numeric_limits::type>
 boost/config/compiler/clang.hpp
-+++ boost/config/compiler/clang.hpp
-@@ -260,9 +260,7 @@
- 
- 
- // Unused attribute:
--#if defined(__GNUC__) && (__GNUC__ >= 4)
- #  define BOOST_ATTRIBUTE_UNUSED __attribute__((unused))
--#endif
- 
- #ifndef BOOST_COMPILER
- #  define BOOST_COMPILER "Clang version " __clang_version__
 --- boost/date_time/filetime_functions.hpp
 +++ boost/date_time/filetime_functions.hpp
 @@ -27,6 +27,16 @@
@@ -91,35 +79,6 @@
  #else
  system_time st;
  GetSystemTime();
 boost/detail/winapi/timers.hpp
-+++ boost/detail/winapi/timers.hpp
-@@ -15,6 +15,11 @@
- #pragma once
- #endif
- 
-+#if !defined(BOOST_USE_WINDOWS_H)
-+extern "C" {
-+union _LARGE_INTEGER; // Windows Kits/8.1/Include/um/winnt.h
-+}
-+#endif
- namespace boost
- {
- namespace detail
-@@ -28,12 +33,12 @@
- extern "C" { 
- __declspec(dllimport) BOOL_ WINAPI
- QueryPerformanceCounter(
--LARGE_INTEGER_ *lpPerformanceCount
-+::_LARGE_INTEGER *lpPerformanceCount
- );
- 
- __declspec(dllimport) BOOL_ WINAPI
- QueryPerformanceFrequency(
--LARGE_INTEGER_ *lpFrequency
-+::_LARGE_INTEGER *lpFrequency
- );
- }
- #endif
 --- boost/multi_array/base.hpp
 +++ boost/multi_array/base.hpp
 @@ -222,7 +222,7 @@
@@ -152,21 +111,6 @@
  
typedef iterator_facade<
 
-# 
workdir/UnpackedTarball/boost\boost/smart_ptr/detail/sp_counted_base_clang.hpp(29,1)
 :  error: cannot mangle this C11 atomic type yet
-# inline void atomic_increment( atomic_int_least32_t * pw )
-# ^
 boost/smart_ptr/detail/sp_counted_base.hpp
-+++ boost/smart_ptr/detail/sp_counted_base.hpp
-@@ -21,7 +21,7 @@
- #include 
- 
- #if defined( __clang__ ) && defined( __has_extension )
--# if __has_extension( __c_atomic__ )
-+# if __has_extension( __c_atomic__ ) && !defined _MSC_VER
- #   define BOOST_SP_HAS_CLANG_C11_ATOMICS
- # endif
- #endif
-
 # workdir/UnpackedTarball/boost\boost/smart_ptr/detail/yield_k.hpp(63,29) :  
error: 'Sleep' redeclared without 'dllimport' attribute: previous 'dll# import' 
ignored [-Werror,-Winconsistent-dllimport]
 #   extern "C" void __stdcall Sleep( unsigned long ms );
 # ^
@@ -175,15 +119,15 @@
 # ^
 --- boost/smart_ptr/detail/yield_k.hpp
 +++ boost/smart_ptr/detail/yield_k.hpp
-@@ -60,7 +60,7 @@
- {
+@@ -61,7 +61,7 @@
  
  #if !defined( BOOST_USE_WINDOWS_H ) && !BOOST_PLAT_WINDOWS_RUNTIME
+ #if !BOOST_COMP_CLANG || !defined __MINGW32__
 -  extern "C" void __stdcall Sleep( unsigned long ms );
 +  extern "C" __declspec(dllimport) void __stdcall Sleep( unsigned long ms );
- #endif
- 
- inline void yield( unsigned k )
+ #else
+ #include <_mingw.h>
+ #if !defined __MINGW64_VERSION_MAJOR
 
 # workdir/UnpackedTarball/boost/libs/thread/src/win32/thread.cpp(1006,36) :  
error: dllimport cannot be applied to non-inline function definition
 # BOOST_THREAD_DECL void __cdecl on_process_enter()
@@ -199,6 +143,39 @@
//For compilers supporting auto-tss cleanup
  //with Boost.Threads lib, use Boost.Threads lib
  #   define BOOST_THREAD_USE_LIB
+--- boost/type_traits/has_nothrow_assign.hpp
 boost/type_traits/has_nothrow_assign.hpp
+@@ -24,7 +24,7 @@
+ #include 
+ #endif
+ #endif
+-#if defined(__GNUC__) || defined(__SUNPRO_CC)
++#if defined(__GNUC__) || defined(__SUNPRO_CC) || defined __clang__
+ #include 
+ #include 
+ #include 
+--- boost/type_traits/has_nothrow_constructor.hpp
 boost/type_traits/has_nothrow_constructor.hpp
+@@ -17,7 +17,7 @@
+ #if defined(BOOST_MSVC) || defined(BOOST_INTEL)
+ 

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

2016-02-25 Thread David Ostrovsky
 bridges/source/cpp_uno/msvc_win32_intel/except.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 94f1950744612471679b392d3325023bd356eb55
Author: David Ostrovsky 
Date:   Thu Feb 25 22:05:02 2016 +0100

Add missing include

Change-Id: I454b39a76595aedbbe1ca64f9b1982e5c27623cd
Reviewed-on: https://gerrit.libreoffice.org/22708
Tested-by: Jenkins 
Reviewed-by: David Ostrovsky 

diff --git a/bridges/source/cpp_uno/msvc_win32_intel/except.cxx 
b/bridges/source/cpp_uno/msvc_win32_intel/except.cxx
index ccdf993..ec40be7 100644
--- a/bridges/source/cpp_uno/msvc_win32_intel/except.cxx
+++ b/bridges/source/cpp_uno/msvc_win32_intel/except.cxx
@@ -28,6 +28,7 @@
 #include "rtl/strbuf.hxx"
 #include "rtl/ustrbuf.hxx"
 #include 
+#include 
 
 #include "com/sun/star/uno/Any.hxx"
 #include 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98157] LibreOffice installs its own /usr/bin/soffice instead of /usr/bin/loffice (by exemple)

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98157

David Tardon  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||dtar...@redhat.com
 Resolution|--- |NOTOURBUG

--- Comment #2 from David Tardon  ---
There is no /usr/bin/soffice in the upstream packages.

Btw, when you paste a bug description from the Debian bug tracker, could you
remote any irrelevant parts?

-- 
You are receiving this mail because:
You 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 56952] Bogus error message opening a document from read-only location

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=56952

Alexey  changed:

   What|Removed |Added

 CC||komissarov...@ariel.ru

--- Comment #11 from Alexey  ---
Bug exist on Windows 2012 R2 x64
on LO Version 4.3.0.4 and 5.1.0.3

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


[Libreoffice-commits] core.git: vcl/inc vcl/source vcl/unx vcl/workben

2016-02-25 Thread Noel Grandin
 vcl/inc/listbox.hxx |2 
 vcl/inc/printdlg.hxx|2 
 vcl/inc/salgdi.hxx  |8 +-
 vcl/inc/sallayout.hxx   |2 
 vcl/inc/unx/fontmanager.hxx |5 -
 vcl/inc/unx/saldisp.hxx |2 
 vcl/inc/unx/wmadaptor.hxx   |3 -
 vcl/source/control/imp_listbox.cxx  |8 +-
 vcl/source/fontsubset/cff.cxx   |4 -
 vcl/source/gdi/pdfwriter_impl.cxx   |   38 ++---
 vcl/source/gdi/pdfwriter_impl.hxx   |   13 ++--
 vcl/source/gdi/salgdilayout.cxx |   78 +++-
 vcl/source/outdev/font.cxx  |2 
 vcl/source/window/printdlg.cxx  |4 -
 vcl/source/window/toolbox.cxx   |7 +-
 vcl/unx/generic/app/saldisp.cxx |7 +-
 vcl/unx/generic/app/wmadaptor.cxx   |4 -
 vcl/unx/generic/fontmanager/fontmanager.cxx |   13 +---
 vcl/unx/generic/print/genprnpsp.cxx |5 -
 vcl/unx/generic/print/printerjob.cxx|6 --
 vcl/unx/generic/printer/ppdparser.cxx   |3 -
 vcl/workben/outdevgrind.cxx |3 -
 22 files changed, 86 insertions(+), 133 deletions(-)

New commits:
commit 30d8216ba3b471df7276abcd8c8744cd426e6967
Author: Noel Grandin 
Date:   Thu Feb 25 15:00:10 2016 +0200

loplugin:unuseddefaultparam in vcl/

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

diff --git a/vcl/inc/listbox.hxx b/vcl/inc/listbox.hxx
index f316e8f..66dac44 100644
--- a/vcl/inc/listbox.hxx
+++ b/vcl/inc/listbox.hxx
@@ -248,7 +248,7 @@ protected:
 
 boolSelectEntries( sal_Int32  nSelect, LB_EVENT_TYPE eLET, 
bool bShift = false, bool bCtrl = false, bool bSelectPosChange = false );
 voidImplPaint(vcl::RenderContext& rRenderContext, sal_Int32 
nPos, bool bErase = false, bool bLayout = false);
-voidImplDoPaint(vcl::RenderContext& rRenderContext, const 
Rectangle& rRect, bool bLayout = false);
+voidImplDoPaint(vcl::RenderContext& rRenderContext, const 
Rectangle& rRect);
 voidImplCalcMetrics();
 voidImplUpdateEntryMetrics( ImplEntryType& rEntry );
 voidImplCallSelect();
diff --git a/vcl/inc/printdlg.hxx b/vcl/inc/printdlg.hxx
index 8c59965..410257f 100644
--- a/vcl/inc/printdlg.hxx
+++ b/vcl/inc/printdlg.hxx
@@ -274,7 +274,7 @@ namespace vcl
 virtual ~PrintProgressDialog();
 virtual void dispose() override;
 bool isCanceled() const { return mbCanceled; }
-void setProgress( int i_nCurrent, int i_nMax = -1 );
+void setProgress( int i_nCurrent );
 void tick();
 void reset();
 };
diff --git a/vcl/inc/salgdi.hxx b/vcl/inc/salgdi.hxx
index 1ded1a7..451be62 100644
--- a/vcl/inc/salgdi.hxx
+++ b/vcl/inc/salgdi.hxx
@@ -230,12 +230,12 @@ public:
 SalLayoutFlags  GetLayout() { return m_nLayout; }
 voidSetLayout( SalLayoutFlags aLayout ) { 
m_nLayout = aLayout;}
 
-voidmirror( long& nX, const OutputDevice *pOutDev, 
bool bBack = false ) const;
+voidmirror( long& nX, const OutputDevice *pOutDev 
) const;
 voidmirror( long& nX, long& nWidth, const 
OutputDevice *pOutDev, bool bBack = false ) const;
-boolmirror( sal_uInt32 nPoints, const SalPoint 
*pPtAry, SalPoint *pPtAry2, const OutputDevice *pOutDev, bool bBack = false ) 
const;
+boolmirror( sal_uInt32 nPoints, const SalPoint 
*pPtAry, SalPoint *pPtAry2, const OutputDevice *pOutDev ) const;
 voidmirror( Rectangle& rRect, const OutputDevice*, 
bool bBack = false ) const;
-voidmirror( vcl::Region& rRgn, const OutputDevice 
*pOutDev, bool bBack = false ) const;
-voidmirror( ImplControlValue&, const 
OutputDevice*, bool bBack = false ) const;
+voidmirror( vcl::Region& rRgn, const OutputDevice 
*pOutDev ) const;
+voidmirror( ImplControlValue&, const OutputDevice* 
) const;
 basegfx::B2DPoint   mirror( const basegfx::B2DPoint& i_rPoint, 
const OutputDevice *pOutDev, bool bBack = false ) const;
 basegfx::B2DPolygon mirror( const basegfx::B2DPolygon& i_rPoly, 
const OutputDevice *pOutDev, bool bBack = false ) const;
 basegfx::B2DPolyPolygon mirror( const basegfx::B2DPolyPolygon& 
i_rPoly, const OutputDevice *pOutDev, bool bBack = false ) const;
diff --git a/vcl/inc/sallayout.hxx b/vcl/inc/sallayout.hxx
index f27834f..daae365 100644
--- a/vcl/inc/sallayout.hxx
+++ 

[Libreoffice-bugs] [Bug 98173] Regular quotation marks in italics in Times New Roman overwrite text - hebrew text

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98173

raal  changed:

   What|Removed |Added

Version|5.0.5.2 release |4.5.0.0.alpha0+ Master

--- Comment #9 from raal  ---
reproducible with Version: 4.5.0.0.alpha0+

-- 
You are receiving this mail because:
You 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 84938] replace #defined constants with ‘enum class’

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84938

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

http://cgit.freedesktop.org/libreoffice/core/commit/?id=2d162b1c70c1bc16d682b74ee1d0b13a9a80717d

tdf#84938 Eliminate B_xxx defines in filefmt.hxx for FileOffset scoped enum.

It will be available in 5.2.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-commits] core.git: basic/source

2016-02-25 Thread baltasarq
 basic/source/classes/image.cxx |   47 -
 basic/source/inc/filefmt.hxx   |   37 +---
 2 files changed, 44 insertions(+), 40 deletions(-)

New commits:
commit 2d162b1c70c1bc16d682b74ee1d0b13a9a80717d
Author: baltasarq 
Date:   Wed Feb 24 14:43:38 2016 +0100

tdf#84938 Eliminate B_xxx defines in filefmt.hxx for FileOffset scoped enum.

Second step: Make SbiOpenRecord() accept a FileOffset as second parameter

This is a [partial] patch The objective is to substitute all apparitions of
#defined constants for enum class.
The victim here is the series of constants B_xxx that were located in
filefmt.hxx and were changed for a FileOffset enum class.

Obviously some other files where the type is used must be changed too.

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

diff --git a/basic/source/classes/image.cxx b/basic/source/classes/image.cxx
index d79c21c..00d5456 100644
--- a/basic/source/classes/image.cxx
+++ b/basic/source/classes/image.cxx
@@ -83,10 +83,11 @@ bool SbiGood( SvStream& r )
 }
 
 // Open Record
-sal_uInt64 SbiOpenRecord( SvStream& r, sal_uInt16 nSignature, sal_uInt16 nElem 
)
+sal_uInt64 SbiOpenRecord( SvStream& r, FileOffset nSignature, sal_uInt16 nElem 
)
 {
 sal_uInt64 nPos = r.Tell();
-r.WriteUInt16( nSignature ).WriteInt32( 0 ).WriteUInt16( nElem );
+r.WriteUInt16( static_cast( nSignature ) )
+.WriteInt32( 0 ).WriteUInt16( nElem );
 return nPos;
 }
 
@@ -121,7 +122,7 @@ bool SbiImage::Load( SvStream& r, sal_uInt32& nVersion )
 sal_uInt32 nReserved2;
 sal_uInt32 nReserved3;
 bool bBadVer = false;
-if( nSign == B_MODULE )
+if( nSign == static_cast( FileOffset::Module ) )
 {
 sal_uInt16 nTmpFlags;
 r.ReadUInt32( nVersion ).ReadUInt32( nCharSet ).ReadUInt32( lDimBase )
@@ -143,20 +144,20 @@ bool SbiImage::Load( SvStream& r, sal_uInt32& nVersion )
 nNext += nLen + 8;
 if( r.GetError() == SVSTREAM_OK )
 {
-switch( nSign )
+switch( static_cast( nSign ) )
 {
-case B_NAME:
+case FileOffset::Name:
 aName = r.ReadUniOrByteString(eCharSet);
 break;
-case B_COMMENT:
+case FileOffset::Comment:
 aComment = r.ReadUniOrByteString(eCharSet );
 break;
-case B_SOURCE:
+case FileOffset::Source:
 {
 aOUSource = r.ReadUniOrByteString(eCharSet);
 break;
 }
-case B_EXTSOURCE:
+case FileOffset::ExtSource:
 {
 //assuming an empty string with just the lead 32bit/16bit len 
indicator
 const size_t nMinStringSize = (eCharSet == 
RTL_TEXTENCODING_UNICODE) ? 4 : 2;
@@ -173,7 +174,7 @@ bool SbiImage::Load( SvStream& r, sal_uInt32& nVersion )
 }
 break;
 }
-case B_PCODE:
+case FileOffset::PCode:
 if( bBadVer ) break;
 pCode = new char[ nLen ];
 nCodeSize = nLen;
@@ -198,12 +199,12 @@ bool SbiImage::Load( SvStream& r, sal_uInt32& nVersion )
 // release of the buffer.
 }
 break;
-case B_PUBLICS:
-case B_POOLDIR:
-case B_SYMPOOL:
-case B_LINERANGES:
+case FileOffset::Publics:
+case FileOffset::PoolDir:
+case FileOffset::SymPool:
+case FileOffset::LineRanges:
 break;
-case B_STRINGPOOL:
+case FileOffset::StringPool:
 {
 if( bBadVer ) break;
 //assuming an empty string with just the lead 32bit len 
indicator
@@ -240,7 +241,7 @@ bool SbiImage::Load( SvStream& r, sal_uInt32& nVersion )
 }
 break;
 }
-case B_USERTYPES:
+case FileOffset::UserTypes:
 {
 //assuming an empty string with just the lead 32bit/16bit len 
indicator
 const size_t nMinStringSize = (eCharSet == 
RTL_TEXTENCODING_UNICODE) ? 4 : 2;
@@ -340,7 +341,7 @@ bool SbiImage::Load( SvStream& r, sal_uInt32& nVersion )
 }
 break;
 }
-case B_MODEND:
+case FileOffset::ModEnd:
 goto done;
 default:
 break;
@@ -375,7 +376,7 @@ bool SbiImage::Save( SvStream& r, sal_uInt32 nVer )
 return true;
 }
 // First of all the header
-sal_uInt64 nStart = SbiOpenRecord( r, B_MODULE, 1 );
+sal_uInt64 nStart = SbiOpenRecord( r, 

[Libreoffice-bugs] [Bug 97808] FILEOPEN: arrowheads added to lines within groups

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97808

raal  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected
 CC||mst...@redhat.com,
   ||r...@post.cz

--- Comment #6 from raal  ---
This seems to have begun at the below commit.
Adding Cc: to Michael Stahl; Could you possibly take a look at this one? Thanks

84046a67f51a8a85eceaf2daba4c61cedc1aadd5 is the first bad commit
commit 84046a67f51a8a85eceaf2daba4c61cedc1aadd5
Author: Norbert Thiebaud 
Date:   Sun May 31 02:25:02 2015 -0500

source sha:db1d278dcc308c73eb5edebc20481c96e7f479d8

source sha:db1d278dcc308c73eb5edebc20481c96e7f479d8

:04 04 eb111545b97c5480b9c79437b9ba79a5209adf15
0a8ddcb320eab399a75cb43c1cf56f91e750cfa9 M  instdir

authorMichael Stahl 2015-04-07 20:20:49 (GMT)
committerMichael Stahl 2015-04-07 20:55:26 (GMT)
commitdb1d278dcc308c73eb5edebc20481c96e7f479d8 (patch)
tree255401e09027f22bbe0ec35a592f8d50654de191
parent8f2209b1ebcb053c9f6fa8cb2c39041bec08f9f8 (diff)
tdf#89802: xmloff: fix ODF import of frame with empty style name ref

-- 
You are receiving this mail because:
You 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 98178] Unless using "Use LibreOffice dialogs", there's a usability regression: File Open dialog has lost the text field where you can paste in the filename

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98178

Luke Kendall  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

-- 
You are receiving this mail because:
You 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 98178] Unless using "Use LibreOffice dialogs", there's a usability regression: File Open dialog has lost the text field where you can paste in the filename

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98178

Luke Kendall  changed:

   What|Removed |Added

Summary|Usability regression: the   |Unless using "Use
   |File Open dialog has lost   |LibreOffice dialogs",
   |the text field where you|there's a usability
   |can paste in the filename   |regression: File Open
   ||dialog has lost the text
   ||field where you can paste
   ||in the filename

--- Comment #4 from Luke Kendall  ---
I'm happy to provide extra details.

I'm using Ubuntu  Xenial Xerus (development branch) (16.04 LTS).

I'm using Gnome Flashback (Metacity) as the DE.

I don't see how the shell is really relevant, but I'm using bash.

-- 
You are receiving this mail because:
You 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 98167] CONFIGURATION: Ctrl+Alt+F footnote shortcut only works with left ALT key

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98167

--- Comment #3 from Óvári  ---
(In reply to gpbarentsen from comment #2)
> How does one change keyboard layout?
It depends on your operating system.
Have you googled, or otherwise, "How to change your keyboard layout"
When you write a bug report it may help if you state each time:
a) Your operating system
b) Which version of LibreOffice you are using
You can copy the information from LibreOffice's menu bar:
Help → About LibreOffice
Alt works correctly is:
Version: 5.1.0.3 (x64)
Build ID: 5e3e00a007d9b3b6efb6797a8b8e57b51ab1f737
CPU Threads: 2; OS Version: Windows 6.29; UI Render: default; 
Locale: en-AU (en_AU)

> Is it the language setting in the bottom status line?
No, this is the language the spelling checker, grammar, etc uses.

All the best

-- 
You are receiving this mail because:
You 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 97897] Recalculate does not always work

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97897

Winfried Donkers  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

--- Comment #10 from Winfried Donkers  ---
Working on a quick patch for the second problem.
It is caused by commit 5ef856e975d7c0396984d588a43fd1a7c7085c55 and reverting
one removed call fixes the problem. 
But as the above commit aimed to improve performance, it is not the best fix.
That however may prove too complex to find in a short time. Probably better to
fix now for versions 5.0 and 5.1 and try that best fix next...

-- 
You are receiving this mail because:
You 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 98084] Missing icons in all LibO applications on Surface Pro 4

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98084

tommy27  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #4 from tommy27  ---
nice to hear that
WORSKFORME

-- 
You are receiving this mail because:
You 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 81345] FILESAVE: Image from first page appears on all pages of document after saving file on LO

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81345

--- Comment #8 from Justin L  ---
confirmed: still a bug in 5.2dev.
confirmed: bisect pointing to 4e653d15eff26aa5283d8ba20611893f4c573f57 and
verified that undoing this commit "fixes" 5.2dev.

However, that commit is an IMPORT change.  The document imports fine and
exports to .odt and .doc fine, so I suspect that it has simply exposed an
existing flaw in .docx export.

-- 
You are receiving this mail because:
You 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 97848] User interface mostly vanished completely - no docs, no menus (Nvidia card)

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97848

--- Comment #13 from V Stuart Foote  ---
(In reply to Harold E Lake Jr from comment #12)
> I have an HP Envy 700-410XT, Windows 8.1 Pro x64, NVIDIA GForce GTX 745 and
> also have the following display problem. I have attached two files to assist
> with debugging this issue.
> Thank You

Thanks, but actually what we would need to be of any use are your driver
details and LibreOffice build and status of the OpenGL rendering.

Clip from the Help -> About dialog, and also the content of the
opengl_device.log from the cache of your LibreOffice user profile.

-- 
You are receiving this mail because:
You 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 97848] User interface mostly vanished completely - no docs, no menus (Nvidia card)

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97848

--- Comment #12 from Harold E Lake Jr  ---
I have an HP Envy 700-410XT, Windows 8.1 Pro x64, NVIDIA GForce GTX 745 and
also have the following display problem. I have attached two files to assist
with debugging this issue.
Thank 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 97848] User interface mostly vanished completely - no docs, no menus (Nvidia card)

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97848

--- Comment #11 from Harold E Lake Jr  ---
Created attachment 122998
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122998=edit
LibreOffice Manual Resize Width to Cause Menu to Appear

-- 
You are receiving this mail because:
You 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 97848] User interface mostly vanished completely - no docs, no menus (Nvidia card)

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97848

--- Comment #10 from Harold E Lake Jr  ---
Created attachment 122997
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122997=edit
LibreOffice Display Issue Problem

LibreOffice Display Issue Problem

-- 
You are receiving this mail because:
You 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 98197] New: Open Icon is not functioning

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98197

Bug ID: 98197
   Summary: Open Icon is not functioning
   Product: LibreOffice
   Version: 5.1.0.3 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: snakeca...@yahoo.com

the open icon no longer brings us the file listings after update to 5.103,
maybe I haven't setup something properly? The same thing happens in the
Hyperlink box.

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


[Libreoffice-bugs] [Bug 98196] New: Cursor before letter address content to populate envelope addressee box

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98196

Bug ID: 98196
   Summary: Cursor before letter address content to populate
envelope addressee box
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dave.koelme...@davekoelmeyer.co.nz

Hello,

This enhancement has been raised arising from a corporate migration. Microsoft
Word 2003 and 2007 at least have a shortcut feature for adding addressee
information to an envelope:

1) Open a new Word document, compose a letter with addressee information at the
top

2) Position the mouse cursor before the first character in the addressee block

3) Go to "Mailings -> Envelopes" on the (MS Word 2007) ribbon, and note that
the envelope addressee box has automatically been populated.

This is demonstrated for example in the video within the first few paragraphs
at http://legalofficeguru.com/printing-envelopes/


In Writer one has to perform a copy and paste for one-off letter addressee
information. Although minor, cumulatively this feature would save time and
would be a handy shortcut to implement.

-- 
You are receiving this mail because:
You 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 86396] FILESAVE and FORMATTING XLSX loss of scale mode settings after saving

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86396

--- Comment #4 from brucehohl  ---
This bug still exist at version 5.1.0.3 - 25 Feb 2016.

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


[Libreoffice-commits] core.git: Branch 'feature/fixes17' - 2 commits - slideshow/opengl

2016-02-25 Thread Emmanuel Gil Peyrot
 slideshow/opengl/honeycombFragmentShader.glsl |6 +--
 slideshow/opengl/honeycombGeometryShader.glsl |2 -
 slideshow/opengl/honeycombVertexShader.glsl   |   41 +++---
 slideshow/opengl/vortexFragmentShader.glsl|6 +--
 slideshow/opengl/vortexVertexShader.glsl  |   17 +++---
 5 files changed, 50 insertions(+), 22 deletions(-)

New commits:
commit bbf28c9bc0c335646f610bf535fba5c125dcd65f
Author: Emmanuel Gil Peyrot 
Date:   Wed Feb 24 20:21:10 2016 +

slideshow: Only use texture() in GLSL 1.50, fixes Intel on Windows

texture2D() is still available, but not in the geometry stage, so
better be consistent everywhere.

Change-Id: I86bf1921713bcbf32946190525401bfcc633a69f

diff --git a/slideshow/opengl/honeycombFragmentShader.glsl 
b/slideshow/opengl/honeycombFragmentShader.glsl
index 41b6738..c207203 100644
--- a/slideshow/opengl/honeycombFragmentShader.glsl
+++ b/slideshow/opengl/honeycombFragmentShader.glsl
@@ -29,7 +29,7 @@ bool isBorder(vec2 point)
 
 void main()
 {
-vec4 fragment = vec4(texture2D(slideTexture, texturePosition).rgb, 1.0);
+vec4 fragment = vec4(texture(slideTexture, texturePosition).rgb, 1.0);
 vec3 lightVector = vec3(0.0, 0.0, 1.0);
 float light = max(dot(lightVector, normal), 0.0);
 if (hexagonSize > 1.0) {
@@ -75,8 +75,8 @@ void main()
 }
 float visibility = 1.0;
 const float epsilon = 0.0001;
-if (texture2D(depthShadowTexture, shadowCoordinate.xy).r < 
shadowCoordinate.z - epsilon)
-visibility *= 0.7 + 0.3 * (1.0 - texture2D(colorShadowTexture, 
shadowCoordinate.xy).a);
+if (texture(depthShadowTexture, shadowCoordinate.xy).r < 
shadowCoordinate.z - epsilon)
+visibility *= 0.7 + 0.3 * (1.0 - texture(colorShadowTexture, 
shadowCoordinate.xy).a);
 vec4 black = vec4(0.0, 0.0, 0.0, fragment.a);
 if (fragment.a < 0.001)
 discard;
diff --git a/slideshow/opengl/honeycombGeometryShader.glsl 
b/slideshow/opengl/honeycombGeometryShader.glsl
index 5269fad..5afaa7b 100644
--- a/slideshow/opengl/honeycombGeometryShader.glsl
+++ b/slideshow/opengl/honeycombGeometryShader.glsl
@@ -29,7 +29,7 @@ const float expandFactor = 0.0318;
 
 float snoise(vec2 p)
 {
-return texture2D(permTexture, p).r;
+return texture(permTexture, p).r;
 }
 
 mat4 identityMatrix(void)
diff --git a/slideshow/opengl/vortexFragmentShader.glsl 
b/slideshow/opengl/vortexFragmentShader.glsl
index 3212ebe..a3f8191 100644
--- a/slideshow/opengl/vortexFragmentShader.glsl
+++ b/slideshow/opengl/vortexFragmentShader.glsl
@@ -20,12 +20,12 @@ in vec4 shadowCoordinate;
 void main() {
 vec3 lightVector = vec3(0.0, 0.0, 1.0);
 float light = max(dot(lightVector, v_normal), 0.0);
-vec4 fragment = texture2D(slideTexture, v_texturePosition);
+vec4 fragment = texture(slideTexture, v_texturePosition);
 float visibility = 1.0;
 const float epsilon = 0.0001;
-if (texture2D(leavingShadowTexture, shadowCoordinate.xy).r < 
shadowCoordinate.z - epsilon)
+if (texture(leavingShadowTexture, shadowCoordinate.xy).r < 
shadowCoordinate.z - epsilon)
 visibility *= 0.7;
-if (texture2D(enteringShadowTexture, shadowCoordinate.xy).r < 
shadowCoordinate.z - epsilon)
+if (texture(enteringShadowTexture, shadowCoordinate.xy).r < 
shadowCoordinate.z - epsilon)
 visibility *= 0.7;
 vec4 black = vec4(0.0, 0.0, 0.0, fragment.a);
 gl_FragColor = mix(black, fragment, visibility * light);
diff --git a/slideshow/opengl/vortexVertexShader.glsl 
b/slideshow/opengl/vortexVertexShader.glsl
index 5c6fe23..8d1a67d 100755
--- a/slideshow/opengl/vortexVertexShader.glsl
+++ b/slideshow/opengl/vortexVertexShader.glsl
@@ -39,7 +39,7 @@ out float endTime;
 
 float snoise(vec2 p)
 {
-return texture2D(permTexture, p).r;
+return texture(permTexture, p).r;
 }
 
 mat4 identityMatrix(void)
commit 92958290631112e65fb1dade7d4c7c91cc8ece17
Author: Emmanuel Gil Peyrot 
Date:   Wed Feb 24 20:21:12 2016 +

slideshow: Add an ugly workaround for Intel’s matrix multiplication

When more than three multiplications are chained, Intel’s Windows
driver returns a mat4 containing only zeroes, likely due to a
misbehaving optimisation.  This patch prevents it from doing any
optimisation by doing each multiplication in its own uniform block.

Change-Id: I0b435d3a5444afd47f78c379f0d2e442d2c2cfc0

diff --git a/slideshow/opengl/honeycombVertexShader.glsl 
b/slideshow/opengl/honeycombVertexShader.glsl
index 32fdece..c3484d3 100644
--- a/slideshow/opengl/honeycombVertexShader.glsl
+++ b/slideshow/opengl/honeycombVertexShader.glsl
@@ -25,10 +25,21 @@ uniform float shadow;
 uniform mat4 orthoProjectionMatrix;
 uniform mat4 orthoViewMatrix;
 
+// Workaround for Intel's Windows driver, to prevent optimisation breakage.
+uniform float zero;
+
 out mat4 projectionMatrix;
 out mat4 modelViewMatrix;
 out mat4 

[Libreoffice-bugs] [Bug 98194] Incorporation of better proof reading (LanguageTool)

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98194

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
Hi #Jay, it is no in Menu/Tools/Options/Language settings?

https://wiki.documentfoundation.org/ReleaseNotes/4.4#Improved_language_tools_.28spell-check_dictionaries.2C_thesaurus.2C_hyphenation_patterns.29
https://wiki.documentfoundation.org/ReleaseNotes/5.0#Updated_language_proofing_tools
https://wiki.documentfoundation.org/ReleaseNotes/5.1#Improvements_to_proofing_tools_and_language_support

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


[Libreoffice-bugs] [Bug 98189] text language not recognized in version 5.1_italian

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98189

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

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

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


[Libreoffice-commits] core.git: 5 commits - include/svl include/svx offapi/com sc/inc sc/source svl/source svx/source svx/uiconfig unotools/source

2016-02-25 Thread Eike Rathke
 include/svl/srchdefs.hxx  |5 +-
 include/svl/srchitem.hxx  |   17 +++-
 include/svx/srchdlg.hxx   |1 
 offapi/com/sun/star/util/SearchDescriptor.idl |   22 ++
 sc/inc/unonames.hxx   |1 
 sc/source/ui/unoobj/srchuno.cxx   |4 +
 svl/source/items/srchitem.cxx |   24 ++-
 svx/source/dialog/srchdlg.cxx |   55 --
 svx/uiconfig/ui/findreplacedialog.ui  |   29 ++---
 unotools/source/config/searchopt.cxx  |2 
 10 files changed, 143 insertions(+), 17 deletions(-)

New commits:
commit 393f11f88648e1c7cace6224aa7afcbf9d68ddd6
Author: Eike Rathke 
Date:   Fri Feb 26 00:13:07 2016 +0100

add Wildcards to Find dialog

Enabled only for Calc. Writer needs to be adapted to support wildcards.

The global escape character is '\' set in SvxSearchItem ctor.

Change-Id: I1af78f296deff81e023ee9f0e936f5f506f80c83

diff --git a/include/svl/srchdefs.hxx b/include/svl/srchdefs.hxx
index 8fb303c..8c84b03 100644
--- a/include/svl/srchdefs.hxx
+++ b/include/svl/srchdefs.hxx
@@ -39,11 +39,12 @@ enum class SearchOptionFlags
 MORE  = 0x0800,
 SIMILARITY= 0x1000,
 CONTENT   = 0x2000,
-ALL   = 0x3fff
+WILDCARD  = 0x4000,
+ALL   = 0x7fff
 };
 namespace o3tl
 {
-template<> struct typed_flags : 
is_typed_flags {};
+template<> struct typed_flags : 
is_typed_flags {};
 }
 
 #endif
diff --git a/include/svx/srchdlg.hxx b/include/svx/srchdlg.hxx
index cc4beda..cd08fc8 100644
--- a/include/svx/srchdlg.hxx
+++ b/include/svx/srchdlg.hxx
@@ -180,6 +180,7 @@ private:
 VclPtr   m_pSelectionBtn;
 VclPtr   m_pBackwardsBtn;
 VclPtr   m_pRegExpBtn;
+VclPtr   m_pWildcardBtn;
 VclPtr   m_pSimilarityBox;
 VclPtr m_pSimilarityBtn;
 VclPtr   m_pLayoutBtn;
diff --git a/svx/source/dialog/srchdlg.cxx b/svx/source/dialog/srchdlg.cxx
index d0424bc..d54cce8 100644
--- a/svx/source/dialog/srchdlg.cxx
+++ b/svx/source/dialog/srchdlg.cxx
@@ -97,6 +97,7 @@ using namespace comphelper;
 #define MODIFY_COLUMNS  0x2000
 #define MODIFY_ALLTABLES0x4000
 #define MODIFY_NOTES0x8000
+#define MODIFY_WILDCARD 0x0001
 
 namespace
 {
@@ -304,6 +305,7 @@ SvxSearchDialog::SvxSearchDialog( vcl::Window* pParent, 
SfxChildWindow* pChildWi
 get(m_pSelectionBtn, "selection");
 get(m_pBackwardsBtn, "backwards");
 get(m_pRegExpBtn, "regexp");
+get(m_pWildcardBtn, "wildcard");
 get(m_pSimilarityBox, "similarity");
 get(m_pSimilarityBtn, "similaritybtn");
 get(m_pLayoutBtn, "layout");
@@ -384,6 +386,7 @@ void SvxSearchDialog::dispose()
 m_pSelectionBtn.clear();
 m_pBackwardsBtn.clear();
 m_pRegExpBtn.clear();
+m_pWildcardBtn.clear();
 m_pSimilarityBox.clear();
 m_pSimilarityBtn.clear();
 m_pLayoutBtn.clear();
@@ -552,6 +555,7 @@ bool SvxSearchDialog::Close()
 aOpt.SetWholeWordsOnly  ( m_pWordBtn->IsChecked() );
 aOpt.SetBackwards   ( m_pBackwardsBtn->IsChecked() );
 aOpt.SetUseRegularExpression( m_pRegExpBtn->IsChecked() );
+aOpt.SetUseWildcard ( m_pWildcardBtn->IsChecked() );
 aOpt.SetSearchForStyles ( m_pLayoutBtn->IsChecked() );
 aOpt.SetSimilaritySearch( m_pSimilarityBox->IsChecked() );
 aOpt.SetUseAsianOptions ( m_pJapOptionsCB->IsChecked() );
@@ -651,6 +655,7 @@ void SvxSearchDialog::InitControls_Impl()
 m_pSelectionBtn->SetClickHdl( aLink2 );
 m_pMatchCaseCB->SetClickHdl( aLink2 );
 m_pRegExpBtn->SetClickHdl( aLink2 );
+m_pWildcardBtn->SetClickHdl( aLink2 );
 m_pBackwardsBtn->SetClickHdl( aLink2 );
 m_pNotesBtn->SetClickHdl( aLink2 );
 m_pSimilarityBox->SetClickHdl( aLink2 );
@@ -706,6 +711,7 @@ void SvxSearchDialog::ShowOptionalControls_Impl()
 m_pNotesBtn->Show(bWriterApp);
 m_pBackwardsBtn->Show();
 m_pRegExpBtn->Show(!bDrawApp);
+m_pWildcardBtn->Show(bCalcApp); /* TODO:WILDCARD enable for other apps if 
hey handle it */
 m_pSimilarityBox->Show();
 m_pSimilarityBtn->Show();
 m_pSelectionBtn->Show();
@@ -780,6 +786,8 @@ void SvxSearchDialog::Init_Impl( bool bSearchPattern )
 m_pSelectionBtn->Check( pSearchItem->GetSelection() );
 if ( ( nModifyFlag & MODIFY_REGEXP ) == 0 )
 m_pRegExpBtn->Check( pSearchItem->GetRegExp() );
+if ( ( nModifyFlag & MODIFY_WILDCARD ) == 0 )
+m_pWildcardBtn->Check( pSearchItem->GetWildcard() );
 if ( ( nModifyFlag & MODIFY_LAYOUT ) == 0 )
 m_pLayoutBtn->Check( pSearchItem->GetPattern() );
 if (m_pNotesBtn->IsChecked())
@@ -854,6 +862,7 @@ void SvxSearchDialog::Init_Impl( bool bSearchPattern )
 m_pSearchAllBtn->Hide();
 
 

[Libreoffice-bugs] [Bug 98178] Usability regression: the File Open dialog has lost the text field where you can paste in the filename

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98178

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #3 from V Stuart Foote  ---
Glad the work around of using the LO native dialog work, but will set to
NEW--seems like more folks could be affected.

For now to NEEDINFO, could you please post the full details about which shell
and DE and Ubuntu release you are using. And then set to NEW and perhaps adjust
the Summary.

-- 
You are receiving this mail because:
You 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 98178] Usability regression: the File Open dialog has lost the text field where you can paste in the filename

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98178

--- Comment #2 from Luke Kendall  ---
I was completely unaware that LO allowed the user to select the use of its
dialogue, rather than the DE's.

That solution is perfect for me, thank you.  So it is another DE retrograde
usability step, and the LO functionality provides a perfect workaround: thank
you!

(I have chosen the DE with the fewest irritating features from my point of
view.  I did try Unity, but grew more and more annoyed with its constraints and
shortcomings as time passed, not less.)

Please feel free to resolve this as you wish (as Not a Bug)?

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


[Libreoffice-bugs] [Bug 98195] New: Extension Manager error messages have '\X000a\X0009' rather than new lines

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98195

Bug ID: 98195
   Summary: Extension Manager error messages have '\X000a\X0009'
rather than new lines
   Product: LibreOffice
   Version: 4.0.6.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com

Steps:
1) Open LibreOffice
2) Tools > Extension Manager
3) Attempt to add https://languagetool.org/download/LanguageTool-3.2.oxt
4) Notice error message has '\X000a\X0009' where new lines should be

Version: 5.2.0.0.alpha0+
Build ID: 003d0ccf902d2449320dd24119564565a384f365
CPU Threads: 2; OS Version: Linux 4.2; UI Render: default; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2016-02-23_02:42:33
Locale: en-US (en_US.UTF-8)

-- 
You are receiving this mail because:
You 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 98129] Writer crashes all the time for no apparent reason

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98129

--- Comment #7 from Dirk Munk  ---
OpenGL was enabled, so 5.1.1. is behaving perfectly. No crashes!

-- 
You are receiving this mail because:
You 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 97160] Selecting OpenGL causes applications to crash on launch

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97160

--- Comment #16 from Silviu C.  ---
(In reply to Michael Meeks from comment #14)

> I imagine the problem is that your driver has a NULL 'glGenFramebuffers'
> method - which we call via glew. I guess we should check for that and
> disable GL.
>  I assume your drivers are horribly old (?) =)

On the contrary. I was using the latest 361.28 nvidia blob for Linux. Today I
got the same crash with nvidia's 355.00.28 Linux driver which is the build with
Vulkan support (trying out The Talos Principle VK mode :) )

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


[Libreoffice-bugs] [Bug 98193] Save icon breaks icon customization

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98193

--- Comment #2 from Aibara  ---
I just added my own icons (mostly from the Faenza icon set) using Tango as a
base via the icon customization option (Tools -> Customize... -> Toolbars ->
Modify -> Change Icon). The only way I could change the star icon was to
manually switch out /res/savemodified_small.png in images_tango.zip with
something else.

In any case, my point was just that having the save icon change to another
(instead of just being grayed out when no changes have been made) means that
the built-in customize icon function in Writer does not work correctly, since
you can only set the one for the "not changed yet" state, and not the "changes
have been made" state. Using a non-Tango icon set (like the Human theme) brings
up that same icon, but that's a different problem (namely that no one has made
a proper Human version of that icon).

-- 
You are receiving this mail because:
You 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 98194] Incorporation of better proof reading (LanguageTool)

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98194

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 97160] Selecting OpenGL causes applications to crash on launch

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97160

Michael Meeks  changed:

   What|Removed |Added

 CC||markus.mohrhard@googlemail.
   ||com

--- Comment #15 from Michael Meeks  ---
We can check for this in the GLEW init and return false if we fail (all well
and good) - but then that is not actually checked:

rtl::Reference X11OpenGLSalGraphicsImpl::CreateWinContext()
{
X11WindowProvider *pProvider =
dynamic_cast(mrParent.m_pFrame);

if( !pProvider )
return nullptr;

Window aWin = pProvider->GetX11Window();
rtl::Reference pContext = OpenGLContext::Create();
pContext->setVCLOnly();
pContext->init( mrParent.GetXDisplay(), aWin,
mrParent.m_nXScreen.getXScreen() );
return pContext;
}

Which is lame ... I guess we should be doing this inside:

bool OpenGLHelper::isVCLOpenGLEnabled()

To check whether we can in fact initialize this (or not) before we get much
further. If this method returns true - we assume that we can get GL up and
running; so we need to do a deeper probe and sanity check in there (I guess).

Hmm =) shouldn't be too hard I hope. Still - I'm glad the crash handler is
doing its job nicely for 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 98167] CONFIGURATION: Ctrl+Alt+F footnote shortcut only works with left ALT key

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98167

gpbarent...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|WORKSFORME  |---

--- Comment #2 from gpbarent...@gmail.com ---
How does one change keyboard layout?  Is it the language setting in the bottom
status line?  I have been using English (USA) for a long time, and especially
confusing is the fact that both Alt keys WORKED for this shortcut a couple of
revisions ago.

-- 
You are receiving this mail because:
You 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 98194] New: Incorporation of better proof reading (LanguageTool)

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98194

Bug ID: 98194
   Summary: Incorporation of better proof reading (LanguageTool)
   Product: LibreOffice
   Version: 5.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Linguistic
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: michael.me...@collabora.com, tima...@gmail.com

I stumbled on LanguageTool today and thought it might be a good thing to
incorporate into libreoffice as an alternative to the simple spellcheck that LO
provides. Its open source and licensed under LGPLv2.1 or later, so as LO is
LGPLv3, it should be able to be used.

https://github.com/languagetool-org/languagetool

-- 
You are receiving this mail because:
You 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 96326] FILEOPEN: RTF table cell border spacing to contents incorrect

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96326

Miklos Vajna  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |vmik...@collabora.co.uk
   |desktop.org |

--- Comment #6 from Miklos Vajna  ---
OK, I see a difference now, the reference has a checkbox that's unchecked, but
LO imports it as checked. Let's use this bug for that specific problem --
please open a separate bug for DOC import problems, it's different 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 97160] Selecting OpenGL causes applications to crash on launch

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97160

Michael Meeks  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #14 from Michael Meeks  ---
Well; I imagine gdb and valgrind are confused by the constructor or something:

pFramebuffer = new OpenGLFramebuffer();

is the line; and the (out of line) constructor is:

OpenGLFramebuffer::OpenGLFramebuffer() :
mnId( 0 ),
mnWidth( 0 ),
mnHeight( 0 ),
mnAttachedTexture( 0 ),
mpPrevFramebuffer( nullptr ),
mpNextFramebuffer( nullptr )
{
glGenFramebuffers( 1,  );
CHECK_GL_ERROR();
VCL_GL_INFO( "Created framebuffer " << (int)mnId );
}

but I guess (libmerged LTO magic) this gets inlined in its only call site even
across translation units.

I imagine the problem is that your driver has a NULL 'glGenFramebuffers' method
- which we call via glew. I guess we should check for that and disable GL.
 I assume your drivers are horribly old (?) =)

-- 
You are receiving this mail because:
You 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 97550] Formulas in writer tables could not be writen translated

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97550

Michael Meeks  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||er...@redhat.com
 Resolution|--- |NOTABUG

--- Comment #11 from Michael Meeks  ---
Hi Julien; I don't think it is worth reverting the patch =) The resolution I'd
like is either NOTABUG (as now), or - if you want to go the extra mile - we can
add a compatibility option that we set for old documents - that is clearly not
visible in the UI; but lets this functionality continue. Perhaps it is worth
filing an easy hack bug with some code pointers for some of these:

In general, I'd say asking the user to fix their documents to not use random
text instead of =SUM would be a good plan.

Then again - I -imagine- that perhaps adding localized formula functionality
(particularly if Calc has all the strings already correctly translated) might
be good; Eike any take on whether we could re-use that in writer easily and
(thus) save most of the people who were gotcha'd by this ? [ but really I'd
want to not have localized text/fn names in the file-format anyway - so there
is yet more work there I suspect ].

In general - it is good to clean this up, and reserve these names though -
since we may well need those names to do different things in the future =)

Thanks !

-- 
You are receiving this mail because:
You 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 98181] Scrolling down with Touchpad by two finger gesture inacurate / not working

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98181

--- Comment #5 from John Hart  ---
Add my computer to the no two finger scroll.  Center wheel on wireless mouse
works.
Two scroll does not work in Ubuntu 15.10, LibreOffice 5.1.0.3

On my other computer using Ubuntu 14.04LTS LibreOffice 5.1.0.3 two scroll
WORKS.

-- 
You are receiving this mail because:
You 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 98029] corrupted icons in toolbars

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98029

Jack  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |---
 Ever confirmed|0   |1

--- Comment #4 from Jack  ---
Icons affected are random.  You can re-open a document and a different set of
icons may be grayed out.  There is no pattern that I can figure out.  If you
hover over the icon the test of it will appear correctly.  When I check for
updates I am told I am up to date.  This only started when I upgraded to
5.1.0.3 this past week.

-- 
You are receiving this mail because:
You 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 98193] Save icon breaks icon customization

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98193

Samuel Mehrbrodt (CIB)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||kain...@gmail.com,
   ||samuel.mehrbr...@cib.de
 Ever confirmed|0   |1

--- Comment #1 from Samuel Mehrbrodt (CIB)  ---
Which icon theme do you use?

-- 
You are receiving this mail because:
You 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 97550] Formulas in writer tables could not be writen translated

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97550

--- Comment #10 from riesslibo  ---
Julien, that would be courteous, but even if it is a lot of work on our side,
it is our fault, not yours/Libo. 
You have corrected something what was wrong, and if someone lean on something
that is wrong, he is wrong ;-) and not the corrected version.

So, if I'm allowed to advice here, please do not revert something what is now
right.

Again, thanks for your work on this.

-- 
You are receiving this mail because:
You 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 97530] Installs, then hangs while verifying

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97530

--- Comment #5 from i...@snowflake.as ---
Same here - 5.0.4 also shows the same problem now when I try to install this
older version from DMG that worked previously.

Have to use OpenOffice now.

-- 
You are receiving this mail because:
You 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 92220] Easy activation and deactivation of sidebar mode

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92220

Yousuf (Jay) Philips  changed:

   What|Removed |Added

   Keywords||needsDevEval, topicUI
 CC|libreoffice-ux-advise@lists |
   |.freedesktop.org|
  Component|ux-advise   |Writer

-- 
You are receiving this mail because:
You 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 98077] OLE seen as images (NO OLE appear in the Navigator)

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98077

--- Comment #10 from chrissc.humb...@gmail.com ---
Created attachment 122996
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122996=edit
Sample file with issue

Hello

As requested. The important sheet is the one labelled Future Changes

Thanks

-- 
You are receiving this mail because:
You 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 98181] Scrolling down with Touchpad by two finger gesture inacurate / not working

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98181

--- Comment #4 from Florijan Hamzic  ---
s/reloaded/restarted/

-- 
You are receiving this mail because:
You 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 97550] Formulas in writer tables could not be writen translated

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97550

Julien Nabet  changed:

   What|Removed |Added

 CC||michael.me...@collabora.com

--- Comment #9 from Julien Nabet  ---
(In reply to riesslibo from comment #8)
>...
> Indeed, that's it, Summe is just handled as sum because it is not a valid
> function, if you write brzl its the same. I reproduced this with LibO 4.2.8.2
> and tried it also with "Minimun" instead of min in 4.2.8.2, Minimum was
> handled
> like sum, in 5.1.0.3 it is a faulty formular.
> So, think you are right, there seems to be no "language sensitive" formular
> (just the menu item in the fx Assistant is it, but not the written function
> in the cell). And that it worked with "Summe" is just a side effect of the
> bad behaviour, that everything what can't be matched with a valid function
> name is handled without it hence like a sum.
> 
> Strange ... and sad, now we have to correct a lot of templates and documents
> ;-)
> But never the less, thanks Julien!!

Michael: should I revert
https://cgit.freedesktop.org/libreoffice/core/commit/?id=d667e3210b12c7ce3b3727e2a0e369a520fbaaa4
? Indeed, my goal is not put the mess in all the existing docs and I've got no
idea how to deal with localized functions.

-- 
You are receiving this mail because:
You 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 98181] Scrolling down with Touchpad by two finger gesture inacurate / not working

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98181

--- Comment #3 from Florijan Hamzic  ---
I just closed all my stuff and reloaded and then tried it with plain X11
(startx) Window Manager.  It's the same with scroll down it doesn't work as
expected.

PgUp and PgDown, Up and Down Keys are working fine too.

Am i the only one with this version, gnome and a touchpad where scrolling down
is broken??

-- 
You are receiving this mail because:
You 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 97550] Formulas in writer tables could not be writen translated

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97550

--- Comment #8 from riesslibo  ---
(In reply to Julien Nabet from comment #7)
> (In reply to raal from comment #6)
> > (In reply to Julien Nabet from comment #5)
> > > Did the other functions in French work in previous version?
> > 
> > Yes, it's bisected. So before your commit it worked.
> 
> Please reread my previous comment, I meant that perhaps "somme" worked just
> like "azeaze" would have worked. That's why I asked about other functions
> (other than "somme").
> Comment 3 was also about Sum function but in German.

Indeed, that's it, Summe is just handled as sum because it is not a valid
function, if you write brzl its the same. I reproduced this with LibO 4.2.8.2
and tried it also with "Minimun" instead of min in 4.2.8.2, Minimum was handled
like sum, in 5.1.0.3 it is a faulty formular.
So, think you are right, there seems to be no "language sensitive" formular
(just the menu item in the fx Assistant is it, but not the written function in
the cell). And that it worked with "Summe" is just a side effect of the bad
behaviour, that everything what can't be matched with a valid function name is
handled without it hence like a sum.

Strange ... and sad, now we have to correct a lot of templates and documents
;-)
But never the less, thanks Julien!!

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

2016-02-25 Thread Caolán McNamara
 basic/source/classes/sbunoobj.cxx |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 26be25f27d2f67bdee0d2a4ad95d9d252e470780
Author: Caolán McNamara 
Date:   Thu Feb 25 20:35:33 2016 +

coverity#1231668 Unchecked return value

Change-Id: I4c83b1290484dabc9d40f970a3a86de5d6dc3928

diff --git a/basic/source/classes/sbunoobj.cxx 
b/basic/source/classes/sbunoobj.cxx
index d6cf561..e98b0d0 100644
--- a/basic/source/classes/sbunoobj.cxx
+++ b/basic/source/classes/sbunoobj.cxx
@@ -4741,13 +4741,15 @@ Any StructRefInfo::getValue()
 
 void StructRefInfo::setValue( const Any& rValue )
 {
-uno_type_assignData( getInst(),
+bool bSuccess = uno_type_assignData( getInst(),
maType.getTypeLibType(),
const_cast(rValue.getValue()),
rValue.getValueTypeRef(),
reinterpret_cast< uno_QueryInterfaceFunc >(cpp_queryInterface),
reinterpret_cast< uno_AcquireFunc >(cpp_acquire),
reinterpret_cast< uno_ReleaseFunc >(cpp_release) );
+OSL_ENSURE(bSuccess,
+"StructRefInfo::setValue: ooops  the value could not be 
assigned!");
 }
 
 OUString StructRefInfo::getTypeName() const
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-02-25 Thread Caolán McNamara
 sfx2/source/view/classificationhelper.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit d31f597261cbac64ed69b0f61480c9a757519dd0
Author: Caolán McNamara 
Date:   Thu Feb 25 20:31:02 2016 +

coverity#1354271 Uninitialized scalar field

Change-Id: Ida90073e50f08271b217610b8d7b970c943c042a

diff --git a/sfx2/source/view/classificationhelper.cxx 
b/sfx2/source/view/classificationhelper.cxx
index f6bb6da..b07d1ec 100644
--- a/sfx2/source/view/classificationhelper.cxx
+++ b/sfx2/source/view/classificationhelper.cxx
@@ -93,6 +93,7 @@ SfxClassificationParser::SfxClassificationParser()
 : m_bInPolicyAuthorityName(false)
 , m_bInPolicyName(false)
 , m_bInProgramID(false)
+, m_bInScale(false)
 , m_bInConfidentalityValue(false)
 , m_bInIdentifier(false)
 , m_bInValue(false)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: scripting/java

2016-02-25 Thread Caolán McNamara
 
scripting/java/com/sun/star/script/framework/provider/beanshell/PlainSourceView.java
 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3029afd738e1e5d2c04654ecdc134f5503912203
Author: Caolán McNamara 
Date:   Thu Feb 25 20:28:23 2016 +

coverity#1354272 SS: Unread field should be static

Change-Id: Ie9480265be8053805cb48cefe189e65a47ce0908

diff --git 
a/scripting/java/com/sun/star/script/framework/provider/beanshell/PlainSourceView.java
 
b/scripting/java/com/sun/star/script/framework/provider/beanshell/PlainSourceView.java
index 2a6fde0..e7d71d3 100644
--- 
a/scripting/java/com/sun/star/script/framework/provider/beanshell/PlainSourceView.java
+++ 
b/scripting/java/com/sun/star/script/framework/provider/beanshell/PlainSourceView.java
@@ -55,7 +55,7 @@ public class PlainSourceView extends JScrollPane implements
 private static final String undoKey = "Undo";
 private static final String redoKey = "Redo";
 private CompoundEdit compoundEdit = null;
-private final int noLimit = -1;
+private static final int noLimit = -1;
 UndoManager undoManager;
 
 public PlainSourceView(ScriptSourceModel model) {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-02-25 Thread Miklos Vajna
 libreofficekit/source/gtk/lokdocview.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 73e6b95ed249cf7cb1d46c1f40c0a537e757b1eb
Author: Miklos Vajna 
Date:   Thu Feb 25 21:21:08 2016 +0100

cid#1354270 fix uninitialized members

Change-Id: I35fda96885375996a1b0b05ecc04a0ac35104b88

diff --git a/libreofficekit/source/gtk/lokdocview.cxx 
b/libreofficekit/source/gtk/lokdocview.cxx
index 3ecf52c..155174f 100644
--- a/libreofficekit/source/gtk/lokdocview.cxx
+++ b/libreofficekit/source/gtk/lokdocview.cxx
@@ -152,6 +152,7 @@ struct LOKDocViewPrivateImpl
 m_nDocumentHeightTwips(0),
 m_bEdit(FALSE),
 m_nLOKFeatures(0),
+m_nParts(0),
 m_aVisibleCursor({0, 0, 0, 0}),
 m_bCursorOverlayVisible(false),
 m_bCursorVisible(true),
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98181] Scrolling down with Touchpad by two finger gesture inacurate / not working

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98181

--- Comment #2 from Florijan Hamzic  ---
ArchLinux w/ Gnome-Shell 3.18.3
Linux 4.4.1-2-ARCH #1 SMP PREEMPT Wed Feb 3 13:12:33 UTC 2016 x86_64 GNU/Linux

Everything else behave normal qt, gtk, java application, what do you mean with
DE (Desktop enviroment?) you should write it out otherwise people will not be
able to understand you.

If you mean Desktop Environment then sorry i can't change it, but i will give
an older version (of libreOffice) a try.

I wonder which function of openGL or the "DE" would influence libeOffice in
such a way that i can't scroll down but in any other direction. Do you have
beef with them :P? (i don't expect an answer)

Thanks for your effort

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

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98192

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---
Sorry--we can't do anything with this as described.

Please completely describe your OS, Installed version of LibreOffice and
provide reproducible steps, maybe attach the document you are having issues
with.

-- 
You are receiving this mail because:
You 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 98193] New: Save icon breaks icon customization

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98193

Bug ID: 98193
   Summary: Save icon breaks icon customization
   Product: LibreOffice
   Version: 5.1.0.3 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cranberrydoug...@yahoo.com

Created attachment 122995
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122995=edit
Can't edit the "disk with star" icon.

I noticed that the save icon in Writer has changed: it is no longer a single
icon that is grayed out when there are no changes to the document, but rather
one that adds a star when the document has changed and can be saved.

The problem is that this new behavior breaks Writer's customize icon feature: 
the user can no longer customize the icon fully, only the "no-changes-yet"
state. In order to be consistent, a way to edit the "changes-have-been-made"
save icon with a star should be added.

I've changed my icons to be monochrome, but I can find no way to change the new
"disk with a star" icon; see attached picture.

Thanks.

-- 
You are receiving this mail because:
You 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 98190] Sans Serif fonts are Serif since Update

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98190

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---
What happens when you disable OpenGL on your Windows builds of 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 97803] gbuild: check that everything in instdir/ ends up packaged in the end

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97803

--- Comment #4 from Björn Michaelsen  ---
not volunteering to mentor this one but "make packageinfo" as implemented as a
PoC in solenv/gbuild/extensions/post_PackageInfo.mk is a code pointer as it
shows all files that were properly registered in gbuild.

-- 
You are receiving this mail because:
You 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 98181] Scrolling down with Touchpad by two finger gesture inacurate / not working

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98181

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---
What Linux flavor and DE are you using? Does changing to a different DE have
any affect? And what of enabling/disabling OpenGL?

-- 
You are receiving this mail because:
You 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 98160] Images are not shown in a WRITER document

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98160

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #3 from V Stuart Foote  ---
Also can not confirm.
On Windows 8.1 Ent 64-bit en-US with
Version: 5.1.0.3 (x64)
Build ID: 5e3e00a007d9b3b6efb6797a8b8e57b51ab1f737
CPU Threads: 8; OS Version: Windows 6.29; UI Render: default; 
Locale: en-US (en_US)

So what is the format of the image being pasted? Is it just with pasting, or is
your Insert -> Image also being affected?

-- 
You are receiving this mail because:
You 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 'feature/fixes17' - slideshow/opengl

2016-02-25 Thread Emmanuel Gil Peyrot
 slideshow/opengl/vortexGeometryShader.glsl |   22 ++
 slideshow/opengl/vortexVertexShader.glsl   |   14 --
 2 files changed, 18 insertions(+), 18 deletions(-)

New commits:
commit bb14be25bdb139410cdbe5627de08d1625b8e6fa
Author: Emmanuel Gil Peyrot 
Date:   Wed Feb 24 20:21:11 2016 +

slideshow: Move Vortex calculations to the geometry stage, fixes Intel

Their Windows driver was failing due to too many varyings being used
between the vertex and the geometry stages.

Change-Id: Iec69a2ef29e6ed4ba5ce6e46c7a5eb7db5098d1b

diff --git a/slideshow/opengl/vortexGeometryShader.glsl 
b/slideshow/opengl/vortexGeometryShader.glsl
index 312baba..5d64a12 100644
--- a/slideshow/opengl/vortexGeometryShader.glsl
+++ b/slideshow/opengl/vortexGeometryShader.glsl
@@ -12,11 +12,14 @@
 layout(triangles) in;
 layout(triangle_strip, max_vertices=11) out;
 
+uniform float shadow;
+uniform mat4 u_projectionMatrix;
+uniform mat4 orthoProjectionMatrix;
+uniform mat4 orthoViewMatrix;
+
 in vec2 g_texturePosition[];
 in vec3 g_normal[];
-in mat4 projectionMatrix[];
 in mat4 modelViewMatrix[];
-in mat4 shadowMatrix[];
 in mat4 transform[];
 in float nTime[];
 in float startTime[];
@@ -52,6 +55,17 @@ mat4 translationMatrix(vec3 axis)
 
 void emitHexagonVertex(int index, vec3 translation, float fdsq)
 {
+mat4 projectionMatrix;
+mat4 shadowMatrix;
+
+if (shadow < 0.5) {
+projectionMatrix = u_projectionMatrix;
+shadowMatrix = orthoProjectionMatrix * orthoViewMatrix;
+} else {
+projectionMatrix = orthoProjectionMatrix * orthoViewMatrix;
+shadowMatrix = mat4(0.0);
+}
+
 mat4 normalMatrix = transpose(inverse(modelViewMatrix[index]));
 
 vec4 pos = gl_in[index].gl_Position + vec4(translation, 0.0);
@@ -62,8 +76,8 @@ void emitHexagonVertex(int index, vec3 translation, float 
fdsq)
 v_normal = normalize(vec3(normalMatrix * transform[index] * 
vec4(g_normal[index], 0.0)));
 v_normal.z *= fdsq;
 
-gl_Position = projectionMatrix[index] * modelViewMatrix[index] * pos;
-shadowCoordinate = translationMatrix(vec3(0.5, 0.5, 0.5)) * 
scaleMatrix(vec3(0.5, 0.5, 0.5)) * shadowMatrix[index] * modelViewMatrix[index] 
* pos;
+gl_Position = projectionMatrix * modelViewMatrix[index] * pos;
+shadowCoordinate = translationMatrix(vec3(0.5, 0.5, 0.5)) * 
scaleMatrix(vec3(0.5, 0.5, 0.5)) * shadowMatrix * modelViewMatrix[index] * pos;
 v_texturePosition = g_texturePosition[index];
 EmitVertex();
 }
diff --git a/slideshow/opengl/vortexVertexShader.glsl 
b/slideshow/opengl/vortexVertexShader.glsl
index 9bab2d9..3d5838e 100755
--- a/slideshow/opengl/vortexVertexShader.glsl
+++ b/slideshow/opengl/vortexVertexShader.glsl
@@ -16,7 +16,6 @@ in vec3 a_normal;
 in vec2 a_texCoord;
 in float tileInfo;
 
-uniform mat4 u_projectionMatrix;
 uniform mat4 u_modelViewMatrix;
 uniform mat4 u_sceneTransformMatrix;
 uniform mat4 u_primitiveTransformMatrix;
@@ -26,15 +25,10 @@ uniform float time;
 uniform ivec2 numTiles;
 uniform sampler2D permTexture;
 uniform float slide;
-uniform float shadow;
-uniform mat4 orthoProjectionMatrix;
-uniform mat4 orthoViewMatrix;
 
 out vec2 g_texturePosition;
 out vec3 g_normal;
-out mat4 projectionMatrix;
 out mat4 modelViewMatrix;
-out mat4 shadowMatrix;
 out mat4 transform;
 out float nTime;
 out float startTime;
@@ -142,14 +136,6 @@ void main( void )
   * transform;
 }
 
-if (shadow < 0.5) {
-projectionMatrix = u_projectionMatrix;
-shadowMatrix = orthoProjectionMatrix * orthoViewMatrix;
-} else {
-projectionMatrix = orthoProjectionMatrix * orthoViewMatrix;
-shadowMatrix = mat4(0.0);
-}
-
 modelViewMatrix = u_modelViewMatrix * u_operationsTransformMatrix * 
u_sceneTransformMatrix * u_primitiveTransformMatrix;
 gl_Position = vec4(a_position, 1.0);
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97550] Formulas in writer tables could not be writen translated

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97550

--- Comment #7 from Julien Nabet  ---
(In reply to raal from comment #6)
> (In reply to Julien Nabet from comment #5)
> > Did the other functions in French work in previous version?
> 
> Yes, it's bisected. So before your commit it worked.

Please reread my previous comment, I meant that perhaps "somme" worked just
like "azeaze" would have worked. That's why I asked about other functions
(other than "somme").
Comment 3 was also about Sum function but in German.

-- 
You are receiving this mail because:
You 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 98178] Usability regression: the File Open dialog has lost the text field where you can paste in the filename

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98178

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---
Can not confirm

On Windows 8.1 Ent 64-bit, en-US with
Version: 5.1.0.3 (x64)
Build ID: 5e3e00a007d9b3b6efb6797a8b8e57b51ab1f737
CPU Threads: 8; OS Version: Windows 6.29; UI Render: default; 
Locale: en-US (en_US)

Both the OS Windows Explorer and the LibreOffice Dialogs (Tools -> Options ->
General: "Use LibreOffice dialogs" allow copy paste into the file name field.

Perhaps try a different DE?

-- 
You are receiving this mail because:
You 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 98192] New: Formating

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98192

Bug ID: 98192
   Summary: Formating
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: webmas...@anarres.com.ar

Opening a file, backgroud of characters is not the same as I saved last time.

-- 
You are receiving this mail because:
You 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 97299] Slide transition can't be removed once assigned

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97299

Michael Meeks  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
 Whiteboard|target:5.2.0|

--- Comment #5 from Michael Meeks  ---
Thanks for the report - sorry it took a while to get to =) trivial fix thanks
to Julien's nice analysis.

-- 
You are receiving this mail because:
You 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 97299] Slide transition can't be removed once assigned

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97299

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:5.2.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 97299] Slide transition can't be removed once assigned

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97299

--- Comment #4 from Commit Notification 
 ---
Michael Meeks committed a patch related to this issue.
It has been pushed to "master":

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

tdf#97299 - allow slide transitions to be removed.

It will be available in 5.2.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 97550] Formulas in writer tables could not be writen translated

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97550

--- Comment #6 from raal  ---
(In reply to Julien Nabet from comment #5)
> Did the other functions in French work in previous version?

Yes, it's bisected. So before your commit it worked.

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

2016-02-25 Thread Michael Meeks
 sd/source/ui/animations/SlideTransitionPane.cxx |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit b3d08b755aae1022ad5a08d5cbd91c242535ed89
Author: Michael Meeks 
Date:   Thu Feb 25 19:16:38 2016 +

tdf#97299 - allow slide transitions to be removed.

Change-Id: I652330f6526b1ecf735ed02554e3627768b41085

diff --git a/sd/source/ui/animations/SlideTransitionPane.cxx 
b/sd/source/ui/animations/SlideTransitionPane.cxx
index 90beb1b..051aa64 100644
--- a/sd/source/ui/animations/SlideTransitionPane.cxx
+++ b/sd/source/ui/animations/SlideTransitionPane.cxx
@@ -805,7 +805,9 @@ impl::TransitionEffect 
SlideTransitionPane::getTransitionEffectFromControls() co
 }
 }
 aResult.mbEffectAmbiguous = false;
-}
+
+} else if (mpVS_TRANSITION_ICONS->IsNoSelection())
+aResult.mbEffectAmbiguous = false;
 
 // speed
 if( mpLB_SPEED->IsEnabled() &&
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97550] Formulas in writer tables could not be writen translated

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97550

Julien Nabet  changed:

   What|Removed |Added

 CC||mikekagan...@hotmail.com

--- Comment #5 from Julien Nabet  ---
Did the other functions in French work in previous version?
Indeed, the previous behaviour considered "Sum" when you were putting any
unknown string (see
https://bugs.documentfoundation.org/show_bug.cgi?id=61228#c2).

Mike: I don't see how localized functions may be dealt, any thoughts?

-- 
You are receiving this mail because:
You 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 96454] EDITING: default arrow size of the connectors is not configurable

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96454

--- Comment #2 from jlpoisson...@gmail.com ---
Encountered the bug, more specifically concerning the arrow width.

Tried the following on the END Arrow:

1) When nothing is selected, changed the Arrow width in the Format->Line menu;
2) Changed the Arrow width in the style of the connector (Object without fill);

No success, when drawing new connectors the default arrow size doesn't change.

Interesting fact: I tried the same steps on the START Arrow and it worked as it
should.

Conclusion: it seems the bug only occurs with the END Arrow style.

-- 
You are receiving this mail because:
You 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 98145] No Sheets Menu in the Main menu

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98145

Maxim Monastirsky  changed:

   What|Removed |Added

 Status|REOPENED|NEEDINFO

--- Comment #5 from Maxim Monastirsky  ---
(In reply to ThierryT from comment #4)
> But how do you guarantee the portability of an application you develop
> between an older version and a new one if you suppress functionnalities in
> the new application menus ?
That's a good question actually, and for some cases there is indeed no
solution, and can't be solution by definition (esp. when there are major
changes between versions, like we have in 5.0/5.1 compared to 4.4). And no -
saving the diff won't help in many cases (have you ever tried to apply a patch
when the surrounding code was changed?).

Actually, this isn't specific to menu customization. Ask extension developers,
and they will tell you that sometimes they have to change their code, to work
on newer versions.

Anyway, as an application developer, you should better stick to the official
APIs for menu manipulation (XUIConfigurationManager, Addon.xcu merging etc.),
rather than relying on some "customization" feature. Only doing that will give
you some chances to be compatible with several versions.

-- 
You are receiving this mail because:
You 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 98191] It is not possible to select the style and icon set in the option/display menu

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98191

Maxim Monastirsky  changed:

   What|Removed |Added

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

--- Comment #1 from Maxim Monastirsky  ---
Fixed for 5.1.1. In the meantime use the gtk2 backend. (Under Ubuntu remove the
libreoffice-gtk3 package, and make sure you have libreoffice-gtk.)

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

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


New Defects reported by Coverity Scan for LibreOffice

2016-02-25 Thread scan-admin

Hi,

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

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

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


** CID 1354272:  FindBugs: Performance  (FB.SS_SHOULD_BE_STATIC)
/scripting/java/com/sun/star/script/framework/provider/beanshell/PlainSourceView.java:
 58 in ()



*** CID 1354272:  FindBugs: Performance  (FB.SS_SHOULD_BE_STATIC)
/scripting/java/com/sun/star/script/framework/provider/beanshell/PlainSourceView.java:
 58 in ()
52 private GlyphGutter gg;
53 private int linecount;
54 private boolean isModified = false;
55 private static final String undoKey = "Undo";
56 private static final String redoKey = "Redo";
57 private CompoundEdit compoundEdit = null;
>>> CID 1354272:  FindBugs: Performance  (FB.SS_SHOULD_BE_STATIC)
>>> Unread field: 
>>> com.sun.star.script.framework.provider.beanshell.PlainSourceView.noLimit; 
>>> should this field be static?
58 private final int noLimit = -1;
59 UndoManager undoManager;
60 
61 public PlainSourceView(ScriptSourceModel model) {
62 this.model = model;
63 initUI();

** CID 1354271:  Uninitialized members  (UNINIT_CTOR)
/sfx2/source/view/classificationhelper.cxx: 100 in 
::SfxClassificationParser::SfxClassificationParser()()



*** CID 1354271:  Uninitialized members  (UNINIT_CTOR)
/sfx2/source/view/classificationhelper.cxx: 100 in 
::SfxClassificationParser::SfxClassificationParser()()
94 , m_bInProgramID(false)
95 , m_bInConfidentalityValue(false)
96 , m_bInIdentifier(false)
97 , m_bInValue(false)
98 , m_pCategory(nullptr)
99 {
>>> CID 1354271:  Uninitialized members  (UNINIT_CTOR)
>>> Non-static class member "m_bInScale" is not initialized in this 
>>> constructor nor in any functions that it calls.
100 }
101 
102 SfxClassificationParser::~SfxClassificationParser()
103 {
104 }
105 

** CID 1354270:  Uninitialized members  (UNINIT_CTOR)
/libreofficekit/source/gtk/lokdocview.cxx: 184 in 
LOKDocViewPrivateImpl::LOKDocViewPrivateImpl()()



*** CID 1354270:  Uninitialized members  (UNINIT_CTOR)
/libreofficekit/source/gtk/lokdocview.cxx: 184 in 
LOKDocViewPrivateImpl::LOKDocViewPrivateImpl()()
178 m_nTileSizeTwips(0),
179 m_aVisibleArea({0, 0, 0, 0}),
180 m_bVisibleAreaSet(false)
181 {
182 memset(_aGraphicHandleRects, 0, 
sizeof(m_aGraphicHandleRects));
183 memset(_bInDragGraphicHandles, 0, 
sizeof(m_bInDragGraphicHandles));
>>> CID 1354270:  Uninitialized members  (UNINIT_CTOR)
>>> Non-static class member "m_nParts" is not initialized in this 
>>> constructor nor in any functions that it calls.
184 }
185 };
186 
187 /// Wrapper around LOKDocViewPrivateImpl, managed by malloc/memset/free.
188 struct _LOKDocViewPrivate
189 {



To view the defects in Coverity Scan visit, 
https://scan.coverity.com/projects/libreoffice?tab=overview

To manage Coverity Scan email notifications for 
"libreoffice@lists.freedesktop.org", click 
https://scan.coverity.com/subscriptions/edit?email=libreoffice%40lists.freedesktop.org=d6481d718a775246b2340f282ebe5939

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


[Libreoffice-bugs] [Bug 98191] New: It is not possible to select the style and icon set in the option/display menu

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98191

Bug ID: 98191
   Summary: It is not possible to select the style and icon set in
the option/display menu
   Product: LibreOffice
   Version: 5.1.0.3 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philippe.quag...@openmailbox.org

Created attachment 122994
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122994=edit
The menu, and underlined the lists that can not be selected

Libre Office has been install with an odd icon style, which is hardly visible
in my desktop. But in the option/display menu, It is not possible to change the
icon style. The list of available set is correctly displayed, but they can not
be selected. On the left, the automatic/small/large menu is also available but
not selectable.

-- 
You are receiving this mail because:
You 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 95709] [DISPLAY] Presentation mode renders graphics wrong

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95709

--- Comment #13 from Armin Le Grand (CIB)  ---
Checked all primitive creators, pref sizes and embeddings, looks good. Metafile
is tunneled to presentation, thus the B2DPolyPolygon will survive. Need to
check directly what slideshow does with MetaActionType::CLIPREGION...

-- 
You are receiving this mail because:
You 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 98190] New: Sans Serif fonts are Serif since Update

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98190

Bug ID: 98190
   Summary: Sans Serif fonts are Serif since Update
   Product: LibreOffice
   Version: 5.1.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: andreas_b...@bluewin.ch

Created attachment 122993
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122993=edit
Wrong looking font

I Updated from LibreOffice 5.0.3 to 5.1.0.3, after this some "Sans Serif" Fonts
are Serif and Monospaced.

At least "DejaVu Sans", Screenshot attached.
(Also the fonts in the documents are wrong!)

I think only fonts installed by LibreOffice are affected, e.g. Arial and other
Windows fonts are not, but I didn't have the time to check it in detail.

I checked the Font "DejaVu Sans" in Word, it is looking good. So I downgraded
LibreOffice back to 5.0.3, but the Bug is still there.

I cannot reproduce the Problem on Linux, so it's a Setup / Windows Only
Problem.

-- 
You are receiving this mail because:
You 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 98084] Missing icons in all LibO applications on Surface Pro 4

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98084

--- Comment #3 from robertonun...@gmail.com  ---
Strangely enough, the problem seems to have fixed itself...

Looking at my windows update history, there have been no updates since the
start of this issue.

There also doesn't seem to have been any updates to LibreOffice since the start
of this issue.

There doesn't seem to have been any change in the system since the start of the
issue.

But all of the icons seem to be displaying correctly now! Hopefully the issue
doens't come back as inexplicably as it has left.

-- 
You are receiving this mail because:
You 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 95709] [DISPLAY] Presentation mode renders graphics wrong

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95709

--- Comment #12 from Armin Le Grand (CIB)  ---
There are two Regions created using B2DPolyPolygons which lead to problems, one
created at svgio import, one when PolyPolygonGraphicPrimitive2D gets
decomposed. Both are used for long time and for display, so there must be an
error somewhere on the transfer of these regions to the slideshow.
Tried to break at WriteRegion/ReadRegion which I thought might be used when the
Metafile is handed over to the slideshow, but it is not...

-- 
You are receiving this mail because:
You 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 98173] Regular quotation marks in italics in Times New Roman overwrite text - hebrew text

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98173

raal  changed:

   What|Removed |Added

   Keywords||regression
 Status|NEEDINFO|NEW
Summary|Regular quotation marks in  |Regular quotation marks in
   |italics in Times New Roman  |italics in Times New Roman
   |overwrite text  |overwrite text - hebrew
   ||text

--- Comment #8 from raal  ---
(In reply to William Friedman from comment #7)
> Indeed, 5.2.0.0.alpha0+ does fix the problem in the English text, but does
> *not* fix the problem in the Hebrew text.

I can confirm with Version: 5.2.0.0.alpha0+
Build ID: ef02de2698d90fd874bddf3146165cbe85487bc5
CPU Threads: 1; OS Version: Windows 6.1; UI Render: default; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-02-19_23:40:50

no problem in 4.2.8.2, regression

No problem on linux.

-- 
You are receiving this mail because:
You 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 96583] Libreoffice reports files as corrupted when root filesystem is full.

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96583

--- Comment #5 from Stéphane Aulery  ---
I asked to reported for 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 95709] [DISPLAY] Presentation mode renders graphics wrong

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95709

--- Comment #11 from Armin Le Grand (CIB)  ---
Checked, not the reason. When pres starts, three MaskPrimitive2D are processed
in VclMetafileProcessor2D. When suppressing the 1st one, all is looking good.
Need to dig deeper.
Since internals there are like they are for some time I'm wondering if or to
what this is a regression. Same happens e.g. with Version: 4.4.7.1, Version:
4.3.7.2, Version: 4.2.8.2. It does not happen in Version: 4.1.6.2, Version
4.0.6.2, and Version 3.6.7.2. Thus, must have been added between 4.1.6.2 and
4.2.8.2.

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


[Libreoffice-commits] core.git: Changes to 'private/mcecchetti/calc-unit-test'

2016-02-25 Thread Marco Cecchetti
New branch 'private/mcecchetti/calc-unit-test' available with the following 
commits:
commit 40537d05888cdb74e2aebd096682fe1a05570d53
Author: Marco Cecchetti 
Date:   Thu Feb 25 17:34:30 2016 +0100

sc - unit tests for tdf#97369 and tdf#97587

Change-Id: If2f7fec727a7a7f607e576fea756810e0d4ff7da

___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98158] Shows unicode/utf8 characters incorrectly

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98158

--- Comment #6 from Stéphane Aulery  ---
Have you read the additional information in the Debian bug report. I am not the
rapporteur I did triage. I'll try to get the precious document.

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


[Libreoffice-bugs] [Bug 98173] Regular quotation marks in italics in Times New Roman overwrite text

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98173

--- Comment #7 from William Friedman  ---
Indeed, 5.2.0.0.alpha0+ does fix the problem in the English text, but does
*not* fix the problem in the Hebrew text.

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


[Libreoffice-bugs] [Bug 98189] New: text language not recognized in version 5.1_italian

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98189

Bug ID: 98189
   Summary: text language not recognized in version 5.1_italian
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Extensions
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: th.fosch...@gmail.com

After installing new version (5.1), the software doesn't recognize the language
of the text e doesn't permit ortographic control.
No way even if try to re-installing dictionary extention otherwise select
manually the language (the software doesn't permit it).

-- 
You are receiving this mail because:
You 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 95709] [DISPLAY] Presentation mode renders graphics wrong

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95709

--- Comment #10 from Armin Le Grand (CIB)  ---
Seems to have to do with the MasterPageBackgroundImage being a SVG. Using the
same as PNG works well. SVGs may be embedded to ClipRegions when content
overlaps SVG range definition (see svgio, SvgSvgNode::decomposeSvgNode), but
that is used for some time.

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


[Libreoffice-qa] Fwd: 2016 budget proposals

2016-02-25 Thread Sophie
Hi all,

I would like to remind you about the budget proposal Florian has made
some time ago, the deadline is approaching, so please don't miss it :)
Cheers
Sophie


 Message transféré 
Sujet : [Libreoffice-qa] 2016 budget proposals
Date : Wed, 10 Feb 2016 18:05:25 +0100
De : Florian Effenberger 
Organisation : The Document Foundation
Pour : libreoffice-qa@lists.freedesktop.org

Dear community,

the year 2015 is over, and we have achieved a lot of exciting things,
thanks to your amazing work, dedication, passion and support - thank you
so much for being part of our community and working with us on the joint
goal of fostering LibreOffice!

In order to support the community even better, we would like to create a
better budgetting process, have a concrete plan for 2016 already now,
with a few "pools" or "buckets" defined, ideally:

1. community events (aimed at getting face-time for community contributors)
2. infrastructure (e.g. compute power/hardware/storage, cloud, VMs),
3. marketing (aimed at representing the project to the outside world)
4. other (anything that does not fit into the above)

The idea is to have a good plan for 2016 already now, while keeping the
administrative overhead low, and have two authorizers (one of them being
a board member or deputy, the other one from the wider community)
responsible for each budget, which means getting receipts, approving and
tracking expenses, and clarifying questions with Florian or Sophie.

To get a better understanding of your needs, we ask you to send us your
budget requests within *three weeks* from this e-mail, i.e. by
2016-03-02 to flo...@documentfoundation.org

While I monitor some of the lists, please always send your
proposals/requests *directly* to me so they are not lost!

Please let us know your requests for funds *alongside* some items you
envision to be paid from these funds. The items are not binding, the
spending in the end is the responsibility of the authorizers, but some
examples help the board in getting a better understanding of the funds
required to best match your needs. If possible, please also mention the
amount of travel costs associated. We'll factor in some margin, but
concrete numbers and ideas are very much welcome to have a plan for 2016.

As a sample, a request could look like this:

##
We'd like to request a 2016 budget of
1000 € for community events
500 € for infrastructure
1500 € for marketing

Expenses we envision are
1. marketing: attendance at XYZ trade show to show LibreOffice to ABC
user group (700 € booth costs, 300 € for collaterals and 500 € of
travel, totalling to 1500 €),
2. community: a community weekend to discuss tasks and ideas (600 €
hotel, 100 € for snacks and 300 € travel, totalling to 1000 €),
3. infrastructure: dedicated server to QA localized versions (500 €)
##

Alongside that, we will also provide some mechanism in Redmine for
approvals and tracking of expenses, and will follow-up with details on
this later on.

Thanks again for all your work, and looking forward to your proposals!

Florian
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings:
https://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems?
http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: https://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-bugs] [Bug 98188] CMIS: File > Properties > CMIS Properties tab crashes LO when closing.

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98188

Giuseppe Castagno (aka beppec56)  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |giuseppe.castagno@acca-esse
   |desktop.org |.eu

--- Comment #1 from Giuseppe Castagno (aka beppec56) 
 ---
Seems some window elements are not correctly disposed of when closing. Working
on a solution.

-- 
You are receiving this mail because:
You 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 98188] New: CMIS: File > Properties > CMIS Properties tab crashes LO when closing.

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98188

Bug ID: 98188
   Summary: CMIS: File > Properties > CMIS Properties tab crashes
LO when closing.
   Product: LibreOffice
   Version: 5.0.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: giuseppe.casta...@acca-esse.eu

To reproduce open a file on a CMIS server and then select menu:
File > Properties > CMIS Properties

CMIS properties are displayed.
When you close it, LO crashes.

I tried with:
5.0.3.2
Build ID: e5f16313668ac592c1bfb310f4390624e3dbfb75
Locale: en-US (en_US.UTF-8)

both Linux and Windows.

to reproduce you need a CMIS server. I didn't find one free on Internet.
If you have one available, add the server to LO remote server pool, the
sequence to add it changes depending on LO version.
The open the file properties dialog and close it to have LO crashing.

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


minutes of ESC call ...

2016-02-25 Thread Michael Meeks
* Present:
 + Michael, Kendy, Olivier, Bjoern,Stephan, Caolán, Eike, Robinson, Norbert,
  Sophie, Armin, Christian, Michael S, jan I, Miklos, Muthu
 
* Completed Action Items:
+ fixed EasyHacks not showing up (JanI, Christian)
+ Review JanI's GSOC submission (Thorsten)
[ reviewed submitted ]
+ create a tender to improve fonts for the board (Design Team)
 [ Francisco Adrián S. who raised the problem with Carlito and Caladea 
fonts,
   hope to collect it into a tenderable form -
AI:and poke Google & RedHat too ? (Kendy, Caolan) ]
   + Parag Nemade  is 
google-crosextra-[caladea|carlito]-fonts maintainer
+ come up with a hackfest 2016 travel estimate (Bjoern)
+ 2015 numbers and participant counts (unaffiliated, non TDF-members:
- Las Palmas 1127.32EUR for  8 (1,  1 )
- Cambridge  1193.70EUR for 14 (1,  1 )
- Hamburg 112.75EUR for 20 (4, 12+) (plus two job interviews, 
not included)
- Madrid  752.80EUR for  7 (1,  3 )
- FOSDEMN/A
 
AI: + submit below to board: (Bjoern)
+ 2016 budget proposal:
- Las Palmas 1000 Eur
- Turkey 2000 Eur
- Hamburg 500 Eur
- Spain? 1000 Eur
- US/Boston? 1000 Eur
- FOSDEM 3500 Eur
- Foss Asia  1500 Eur
- DLP1000 Eur
- gerrit conf1000 Eur
- speaker/booth swag  500 Eur
[ added after meeting - for newbies - T-shirts etc. ]
- Hardware3000 Eur
- indiv dev. H/w SSDs, Macs, 
AI:   move it to the right place (Norbert)
+ talk with Norbert and hand doxygen generation over to sysadmin (Miklos)
+ build dev. SSD, PC, Mac, headsets budget (Michael)
 
* Pending Action Items:
+ UI changes from non-committers in gerrit: post list to UX team (Kendy)
 [ assigned to kendy and push to list ]
+ double-check duplicate libmar/src, update/src (Kendy)
+ update release plan for 5.2 and 5.3 (Christian)
+ setup a tinderbox VM for VS. 2015 (Christian)
 
* Release Engineering update (Christian/JanI)
+ improved the releng instructions
+ tagged & builds being done.
+ will further improve docs together next week
+ 5.0.6 RC1 - due April 12th.
+ 5.1.1 RC2 due this week
+ first build with Jan - prolly tag will be Wed to avoid late nights.
 Tagging done, build pending (janI)
+ Late Features (for 5.1.2)
+ New Slide Transitions: polish
[ ... debugging & work - some Intel fixing ]
+ UserAgent display & tweakage
[ still not done ... ]
+ URL for the online documentation needs change (Bjoern)
[ still pending ]
+ concern wrt. features (Norbert)
+ somewhat un-panicy release (Bjoern)
+ nothing major happening (Michael)
+ 5.1.2 RC1 week 11, March 15th
+ Android & iOS Remote
+ updates planned after build prep.
 
* Documentation (Olivier)
+ hacking XML files - and built a site with helpcontent.
+ trying to have it directly available in a browser.
+ http://hc3.edx.srv.br
 + not ready yet.
+ different to wikihelp ? (Michael)
+ another approach; can make pages richer.
+ currently mimic help file.
+ can we have it in dev-tools ? (Kendy)
+ plan not to touch XHP files, just:
+ transform & display in browser.
+ some additions to documentation:
+ new help files for some new calc functions
+ changes in UI getting updated in the help.
+ someone new on docs mailing-list (Kendy)
+ can you welcome & mentor ?
 
* GSoC 2016 (Thorsten, JanI)
+ https://wiki.documentfoundation.org/Development/GSoC/Ideas
+ 3 admin volunteers: janI, Moggi, Thorsten
+ Application filed and available on wiki, for later years (janI)
+ next step - mid next month: opens for students to apply.
 
* UX Update (Kendy)
+ some time discussing the side-bar & its width
+ a survey coming out on what users expect & want there.
+ Q - what happens when MS Office opens a doc with Carlito ?
+ when export to word we have a fallback for that (Caolan)
+ VCL.xcu - font name graveyard (Michael)
 
* Crashtest update (Caolan)
+ 11 import failures, 1 export failures, 49 coverity
  + import odp new EmptyProperties assert
 + docs were prolly wrong in the past.
  + export odp recurse to death in svg reader
  + import svg recurse to death issues
 + waiting for help from Xisco
+ coverity run underway, hoping for sub 20 result
   + Stephan fixing Java-ness left & right.
 
* Hackfests (Bjoern)
+ next venues / suggestions
   

[Libreoffice-qa] minutes of ESC call ...

2016-02-25 Thread Michael Meeks
* Present:
 + Michael, Kendy, Olivier, Bjoern,Stephan, Caolán, Eike, Robinson, Norbert,
  Sophie, Armin, Christian, Michael S, jan I, Miklos, Muthu
 
* Completed Action Items:
+ fixed EasyHacks not showing up (JanI, Christian)
+ Review JanI's GSOC submission (Thorsten)
[ reviewed submitted ]
+ create a tender to improve fonts for the board (Design Team)
 [ Francisco Adrián S. who raised the problem with Carlito and Caladea 
fonts,
   hope to collect it into a tenderable form -
AI:and poke Google & RedHat too ? (Kendy, Caolan) ]
   + Parag Nemade  is 
google-crosextra-[caladea|carlito]-fonts maintainer
+ come up with a hackfest 2016 travel estimate (Bjoern)
+ 2015 numbers and participant counts (unaffiliated, non TDF-members:
- Las Palmas 1127.32EUR for  8 (1,  1 )
- Cambridge  1193.70EUR for 14 (1,  1 )
- Hamburg 112.75EUR for 20 (4, 12+) (plus two job interviews, 
not included)
- Madrid  752.80EUR for  7 (1,  3 )
- FOSDEMN/A
 
AI: + submit below to board: (Bjoern)
+ 2016 budget proposal:
- Las Palmas 1000 Eur
- Turkey 2000 Eur
- Hamburg 500 Eur
- Spain? 1000 Eur
- US/Boston? 1000 Eur
- FOSDEM 3500 Eur
- Foss Asia  1500 Eur
- DLP1000 Eur
- gerrit conf1000 Eur
- speaker/booth swag  500 Eur
[ added after meeting - for newbies - T-shirts etc. ]
- Hardware3000 Eur
- indiv dev. H/w SSDs, Macs, 
AI:   move it to the right place (Norbert)
+ talk with Norbert and hand doxygen generation over to sysadmin (Miklos)
+ build dev. SSD, PC, Mac, headsets budget (Michael)
 
* Pending Action Items:
+ UI changes from non-committers in gerrit: post list to UX team (Kendy)
 [ assigned to kendy and push to list ]
+ double-check duplicate libmar/src, update/src (Kendy)
+ update release plan for 5.2 and 5.3 (Christian)
+ setup a tinderbox VM for VS. 2015 (Christian)
 
* Release Engineering update (Christian/JanI)
+ improved the releng instructions
+ tagged & builds being done.
+ will further improve docs together next week
+ 5.0.6 RC1 - due April 12th.
+ 5.1.1 RC2 due this week
+ first build with Jan - prolly tag will be Wed to avoid late nights.
 Tagging done, build pending (janI)
+ Late Features (for 5.1.2)
+ New Slide Transitions: polish
[ ... debugging & work - some Intel fixing ]
+ UserAgent display & tweakage
[ still not done ... ]
+ URL for the online documentation needs change (Bjoern)
[ still pending ]
+ concern wrt. features (Norbert)
+ somewhat un-panicy release (Bjoern)
+ nothing major happening (Michael)
+ 5.1.2 RC1 week 11, March 15th
+ Android & iOS Remote
+ updates planned after build prep.
 
* Documentation (Olivier)
+ hacking XML files - and built a site with helpcontent.
+ trying to have it directly available in a browser.
+ http://hc3.edx.srv.br
 + not ready yet.
+ different to wikihelp ? (Michael)
+ another approach; can make pages richer.
+ currently mimic help file.
+ can we have it in dev-tools ? (Kendy)
+ plan not to touch XHP files, just:
+ transform & display in browser.
+ some additions to documentation:
+ new help files for some new calc functions
+ changes in UI getting updated in the help.
+ someone new on docs mailing-list (Kendy)
+ can you welcome & mentor ?
 
* GSoC 2016 (Thorsten, JanI)
+ https://wiki.documentfoundation.org/Development/GSoC/Ideas
+ 3 admin volunteers: janI, Moggi, Thorsten
+ Application filed and available on wiki, for later years (janI)
+ next step - mid next month: opens for students to apply.
 
* UX Update (Kendy)
+ some time discussing the side-bar & its width
+ a survey coming out on what users expect & want there.
+ Q - what happens when MS Office opens a doc with Carlito ?
+ when export to word we have a fallback for that (Caolan)
+ VCL.xcu - font name graveyard (Michael)
 
* Crashtest update (Caolan)
+ 11 import failures, 1 export failures, 49 coverity
  + import odp new EmptyProperties assert
 + docs were prolly wrong in the past.
  + export odp recurse to death in svg reader
  + import svg recurse to death issues
 + waiting for help from Xisco
+ coverity run underway, hoping for sub 20 result
   + Stephan fixing Java-ness left & right.
 
* Hackfests (Bjoern)
+ next venues / suggestions
   

[Libreoffice-bugs] [Bug 97733] Open GL not draw UI elemnts

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97733

--- Comment #13 from V Stuart Foote  ---
(In reply to ego.cordatus from comment #12)
> (In reply to Beluga from comment #11)
> > Aha, ok, I thought there were two different persons in this report.. closing
> > as dupe of the black-list issue.
> > 
> > *** This bug has been marked as a duplicate of bug 96546 ***
> 
> So my hardware to be blacklisted in future releases? But it worked on any
> Windows7+ and Linux. Only Windows XP trouble.

As Michael Meeks indicated many changes to OpenGL between 5.0 and 5.1 and the
issues with asserting black list blocking actions have been corrected only with
the 5.1.1.2 release.

Actual criteria are here:
http://opengrok.libreoffice.org/xref/core/vcl/opengl/opengl_blacklist_windows.xml

As you can see, the Windows 7 and XP drivers you post should be blocked. At
5.1.1.2 release when that happens LibreOffice will close on launch and on
relaunch the Tools -> Options -> View "Use OpenGL for all rendering" check box
will be unchecked and greyed out.  You can force the OpenGL active--if desired,
but YMMV and project won't support any OpenGL issues with otherwise blocked
hardware.

-- 
You are receiving this mail because:
You 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 98074] FILESAVE: Cell formatting Lost When Resave the Attached XLSX File

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98074

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
 Ever confirmed|0   |1

--- Comment #7 from raal  ---
I can confirm with Version: 5.2.0.0.alpha0+
Build ID: ef02de2698d90fd874bddf3146165cbe85487bc5
CPU Threads: 1; OS Version: Windows 6.1; UI Render: default; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-02-19_23:40:50

and 4.2.8.2

When open the resaved xlsx file with MSO, it says the style.xml contains
invalid characters at line 2 column 316266. -  I can confirm with excel 2010. I
can open original file in excel without problem.

-- 
You are receiving this mail because:
You 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 97391] [META]: Tracker bug for OpenCL issues in Calc

2016-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97391

raal  changed:

   What|Removed |Added

 Depends on||98116

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