[Libreoffice-bugs] [Bug 75488] Filesystem lock on shared Calc Documents in Excel-format not released

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75488

--- Comment #13 from Christophe Lyon  ---
Hello,

Just re-tested with libreoffice from my Ubuntu-18.04.1 machine.

Version: 6.0.7.3
Build ID: 1:6.0.7-0ubuntu0.18.04.2
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); Calc: group

Same command as in comment #8, same issue.

-- 
You are receiving this mail because:
You 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: solenv/bin starmath/Library_smd.mk starmath/source starmath/util

2018-12-19 Thread Libreoffice Gerrit user
 solenv/bin/native-code.py|2 +
 starmath/Library_smd.mk  |1 
 starmath/source/detreg.cxx   |   69 ---
 starmath/source/smdetect.cxx |   24 --
 starmath/source/smdetect.hxx |   14 
 starmath/util/smd.component  |5 +--
 6 files changed, 13 insertions(+), 102 deletions(-)

New commits:
commit ae270343e29084ca94e82d85d5c76e1ec05184dc
Author: Miklos Vajna 
AuthorDate: Wed Dec 19 21:55:12 2018 +0100
Commit: Miklos Vajna 
CommitDate: Thu Dec 20 08:56:44 2018 +0100

starmath: create SmFilterDetect instances with an uno constructor

Change-Id: I11ffe5153bc9ea263cde63093544584f01a344d2
Reviewed-on: https://gerrit.libreoffice.org/65464
Tested-by: Jenkins
Reviewed-by: Miklos Vajna 

diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py
index 0ba747e6ffea..76e8e66b977c 100755
--- a/solenv/bin/native-code.py
+++ b/solenv/bin/native-code.py
@@ -299,6 +299,8 @@ edit_constructor_list = [
 "Math_XMLImporter_get_implementation",
 "Math_XMLOasisMetaImporter_get_implementation",
 "Math_XMLOasisSettingsImporter_get_implementation",
+# starmath/util/smd.component
+"math_FormatDetector_get_implementation",
 # sw/util/sw.component
 "com_sun_star_comp_Writer_XMLOasisContentExporter_get_implementation",
 "com_sun_star_comp_Writer_XMLOasisMetaExporter_get_implementation",
diff --git a/starmath/Library_smd.mk b/starmath/Library_smd.mk
index 481069dd716a..565f7e9c04a4 100644
--- a/starmath/Library_smd.mk
+++ b/starmath/Library_smd.mk
@@ -32,7 +32,6 @@ $(eval $(call gb_Library_use_libraries,smd,\
 ))
 
 $(eval $(call gb_Library_add_exception_objects,smd,\
-   starmath/source/detreg \
starmath/source/smdetect \
starmath/source/eqnolefilehdr \
 ))
diff --git a/starmath/source/detreg.cxx b/starmath/source/detreg.cxx
deleted file mode 100644
index 74d25aa3d762..
--- a/starmath/source/detreg.cxx
+++ /dev/null
@@ -1,69 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#include 
-#include 
-#include 
-
-#include "smdetect.hxx"
-
-using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::lang;
-
-extern "C" {
-
-SAL_DLLPUBLIC_EXPORT void* smd_component_getFactory( const sal_Char* 
pImplementationName,
- void* pServiceManager,
- void* /*pRegistryKey*/ )
-{
-// Set default return value for this operation - if it failed.
-void* pReturn = nullptr ;
-
-if  (
-( pImplementationName   !=  nullptr ) &&
-( pServiceManager   !=  nullptr )
-)
-{
-// Define variables which are used in following macros.
-Reference< XSingleServiceFactory >   xFactory  
  ;
-Reference< XMultiServiceFactory >xServiceManager( static_cast< 
XMultiServiceFactory* >( pServiceManager ) ) ;
-
-if( SmFilterDetect::impl_getStaticImplementationName().equalsAscii( 
pImplementationName ) )
-{
-xFactory = ::cppu::createSingleFactory( xServiceManager,
-SmFilterDetect::impl_getStaticImplementationName(),
-SmFilterDetect::impl_createInstance,
-SmFilterDetect::impl_getStaticSupportedServiceNames() );
-}
-
-// Factory is valid - service was found.
-if ( xFactory.is() )
-{
-xFactory->acquire();
-pReturn = xFactory.get();
-}
-}
-
-// Return with result of this operation.
-return pReturn ;
-}
-} // extern "C"
-
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/starmath/source/smdetect.cxx b/starmath/source/smdetect.cxx
index 8cff53e43e95..ad5dacfb8821 100644
--- a/starmath/source/smdetect.cxx
+++ b/starmath/source/smdetect.cxx
@@ -21,6 +21,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -35,7 +36,7 @@ using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::lang;
 using utl::MediaDescriptor;
 

[Libreoffice-bugs] [Bug 122213] MS Excel file with Formula not working in LibreOffice

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122213

--- Comment #1 from Xavier Van Wijmeersch  ---
508 ==> Error: Pair missing | Missing bracket, for example, closing brackets,
but no opening brackets

Try to find the first sheet where these missing pairs are, then if your luck in
the other sheets there will be no problem

Best regards

-- 
You are receiving this mail because:
You 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 122211] LibreOffice crashes when I try to scroll after resizing the window on macOS

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122211

Julien Nabet  changed:

   What|Removed |Added

   Keywords||wantBacktrace
 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet  ---
Any chance for a backtrace? (see
https://wiki.documentfoundation.org/QA/BugReport/Debug_Information#macOS:_How_to_get_debug_information)

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


[Libreoffice-commits] online.git: wsd/TraceFile.hpp

2018-12-19 Thread Libreoffice Gerrit user
 wsd/TraceFile.hpp |   33 -
 1 file changed, 20 insertions(+), 13 deletions(-)

New commits:
commit bf9a8edcb9c8ed2cb6f267f1425634a43f7604fe
Author: Miklos Vajna 
AuthorDate: Thu Dec 20 08:54:24 2018 +0100
Commit: Miklos Vajna 
CommitDate: Thu Dec 20 08:54:42 2018 +0100

SnapshotData: make members private

Change-Id: Id3ee800cb27f0d536ec1e34a8790aeffa74986af

diff --git a/wsd/TraceFile.hpp b/wsd/TraceFile.hpp
index f6c27eff7..3afd4be5a 100644
--- a/wsd/TraceFile.hpp
+++ b/wsd/TraceFile.hpp
@@ -128,8 +128,8 @@ public:
 const auto it = _urlToSnapshot.find(url);
 if (it != _urlToSnapshot.end())
 {
-snapshot = it->second.Snapshot;
-it->second.SessionCount++;
+snapshot = it->second.getSnapshot();
+it->second.getSessionCount()++;
 }
 else
 {
@@ -164,15 +164,15 @@ public:
 const auto it = _urlToSnapshot.find(url);
 if (it != _urlToSnapshot.end())
 {
-snapshot = it->second.Snapshot;
-if (it->second.SessionCount == 1)
+snapshot = it->second.getSnapshot();
+if (it->second.getSessionCount() == 1)
 {
 // Last session, remove the mapping.
 _urlToSnapshot.erase(it);
 }
 else
 {
-it->second.SessionCount--;
+it->second.getSessionCount()--;
 }
 }
 
@@ -216,8 +216,8 @@ public:
 const auto it = _urlToSnapshot.find(url);
 if (it != _urlToSnapshot.end())
 {
-LOG_TRC("TraceFile: Mapped URL: " << url << " to " 
<< it->second.Snapshot);
-tokens[1] = "url=" + it->second.Snapshot;
+LOG_TRC("TraceFile: Mapped URL: " << url << " to " 
<< it->second.getSnapshot());
+tokens[1] = "url=" + it->second.getSnapshot();
 std::string newData;
 for (const auto& token : tokens)
 {
@@ -304,19 +304,26 @@ private:
 struct SnapshotData
 {
 SnapshotData(const std::string& snapshot) :
-Snapshot(snapshot)
+_snapshot(snapshot)
 {
-SessionCount = 1;
+_sessionCount = 1;
 }
 
 SnapshotData(const SnapshotData& other) :
-Snapshot(other.Snapshot)
+_snapshot(other.getSnapshot())
 {
-SessionCount = other.SessionCount.load();
+_sessionCount = other.getSessionCount().load();
 }
 
-std::string Snapshot;
-std::atomic SessionCount;
+const std::string& getSnapshot() const { return _snapshot; }
+
+std::atomic& getSessionCount() { return _sessionCount; }
+
+const std::atomic& getSessionCount() const { return 
_sessionCount; }
+
+private:
+std::string _snapshot;
+std::atomic _sessionCount;
 };
 
 private:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-12-19 Thread Libreoffice Gerrit user
 i18npool/source/transliteration/halfwidthToFullwidth.cxx |2 +-
 i18nutil/source/utility/widthfolding.cxx |2 +-
 include/i18nutil/widthfolding.hxx|2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 6c9effd0e5a76ce18a211c5f8b41e00187e67ed4
Author: Andrea Gelmini 
AuthorDate: Wed Dec 19 15:14:57 2018 +
Commit: Julien Nabet 
CommitDate: Thu Dec 20 08:49:50 2018 +0100

Fix typo in code

It passed "make check" on Linux

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

diff --git a/i18npool/source/transliteration/halfwidthToFullwidth.cxx 
b/i18npool/source/transliteration/halfwidthToFullwidth.cxx
index 4857f2896ecf..e9d6ebd89c61 100644
--- a/i18npool/source/transliteration/halfwidthToFullwidth.cxx
+++ b/i18npool/source/transliteration/halfwidthToFullwidth.cxx
@@ -78,7 +78,7 @@ halfwidthToFullwidthLikeJIS::transliterateImpl( const 
OUString& inStr, sal_Int32
 const OUString& newStr = transliteration_OneToOne::transliterateImpl( 
inStr, startPos, nCount, offset, false);
 
 // Composition: KA + voice-mark --> GA
-return i18nutil::widthfolding::compose_ja_voiced_sound_marks ( newStr, 0, 
newStr.getLength(), offset, useOffset, WIDTHFOLDNIG_DONT_USE_COMBINED_VU );
+return i18nutil::widthfolding::compose_ja_voiced_sound_marks ( newStr, 0, 
newStr.getLength(), offset, useOffset, WIDTHFOLDING_DONT_USE_COMBINED_VU );
 }
 
 
diff --git a/i18nutil/source/utility/widthfolding.cxx 
b/i18nutil/source/utility/widthfolding.cxx
index 62c4aa14b1e5..5b6b33b1426e 100644
--- a/i18nutil/source/utility/widthfolding.cxx
+++ b/i18nutil/source/utility/widthfolding.cxx
@@ -161,7 +161,7 @@ OUString widthfolding::compose_ja_voiced_sound_marks (const 
OUString& inStr, sal
 bCompose = true;
 
   // not to use combined KATAKANA LETTER VU
-  if ( previousChar == 0x30a6 && (nFlags & 
WIDTHFOLDNIG_DONT_USE_COMBINED_VU) )
+  if ( previousChar == 0x30a6 && (nFlags & 
WIDTHFOLDING_DONT_USE_COMBINED_VU) )
 bCompose = false;
 
   if( bCompose ){
diff --git a/include/i18nutil/widthfolding.hxx 
b/include/i18nutil/widthfolding.hxx
index 310bf954a304..90048110ce1f 100644
--- a/include/i18nutil/widthfolding.hxx
+++ b/include/i18nutil/widthfolding.hxx
@@ -28,7 +28,7 @@ namespace i18nutil { class oneToOneMapping; }
 
 namespace i18nutil {
 
-#define WIDTHFOLDNIG_DONT_USE_COMBINED_VU 0x01
+#define WIDTHFOLDING_DONT_USE_COMBINED_VU 0x01
 
 class I18NUTIL_DLLPUBLIC widthfolding
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-12-19 Thread Libreoffice Gerrit user
 framework/inc/threadhelp/transactionmanager.hxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit a9151763b6b0485e98512352d21843e3e2fbff5b
Author: Andrea Gelmini 
AuthorDate: Wed Dec 19 15:27:39 2018 +
Commit: Julien Nabet 
CommitDate: Thu Dec 20 08:49:07 2018 +0100

Fix typo

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

diff --git a/framework/inc/threadhelp/transactionmanager.hxx 
b/framework/inc/threadhelp/transactionmanager.hxx
index fd13e2fe8e43..1653c57335df 100644
--- a/framework/inc/threadhelp/transactionmanager.hxx
+++ b/framework/inc/threadhelp/transactionmanager.hxx
@@ -43,9 +43,9 @@ namespace framework{
 
*//*-*/
 enum EWorkingMode
 {
-E_INIT   ,   // We stand in a init method   -> some calls are accepted 
- some one are rejected
+E_INIT   ,   // We stand in an init method  -> some calls are accepted 
- some ones are rejected
 E_WORK   ,   // Object is ready for working -> all calls are accepted
-E_BEFORECLOSE,   // We stand in a close method  -> some calls are accepted 
- some one are rejected
+E_BEFORECLOSE,   // We stand in a close method  -> some calls are accepted 
- some ones are rejected
 E_CLOSE  // Object is dead! -> all calls are rejected!
 };
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-12-19 Thread Libreoffice Gerrit user
 svtools/source/filter/exportdialog.cxx |6 +++---
 svtools/source/filter/exportdialog.hxx |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 17cb5ea8321419d451eea2444c69c6aefc1c6d76
Author: Andrea Gelmini 
AuthorDate: Wed Dec 19 17:29:13 2018 +
Commit: Julien Nabet 
CommitDate: Thu Dec 20 08:48:32 2018 +0100

Fix typo in code

It passed "make check" on Linux

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

diff --git a/svtools/source/filter/exportdialog.cxx 
b/svtools/source/filter/exportdialog.cxx
index 7c7a2ebe6c1b..5c3a4480be06 100644
--- a/svtools/source/filter/exportdialog.cxx
+++ b/svtools/source/filter/exportdialog.cxx
@@ -539,7 +539,7 @@ sal_uInt32 ExportDialog::GetRawFileSize() const
 {
 sal_Int32 nBitsPerPixel = 24;
 OUString aEntry(mxLbColorDepth->get_active_text());
-if ( ms1BitTreshold == aEntry )
+if ( ms1BitThreshold == aEntry )
 nBitsPerPixel = 1;
 else if ( ms1BitDithered == aEntry )
 nBitsPerPixel = 1;
@@ -586,7 +586,7 @@ ExportDialog::ExportDialog(FltCallDialogParameter& rPara,
 , msEstimatedSizePix1(SvtResId(STR_SVT_ESTIMATED_SIZE_PIX_1))
 , msEstimatedSizePix2(SvtResId(STR_SVT_ESTIMATED_SIZE_PIX_2))
 , msEstimatedSizeVec(SvtResId(STR_SVT_ESTIMATED_SIZE_VEC))
-, ms1BitTreshold(SvtResId(STR_SVT_1BIT_THRESHOLD))
+, ms1BitThreshold(SvtResId(STR_SVT_1BIT_THRESHOLD))
 , ms1BitDithered(SvtResId(STR_SVT_1BIT_DITHERED))
 , ms4BitGrayscale(SvtResId(STR_SVT_4BIT_GRAYSCALE))
 , ms4BitColorPalette(SvtResId(STR_SVT_4BIT_COLOR_PALETTE))
@@ -825,7 +825,7 @@ void ExportDialog::createFilterOptions()
 nColor = 6;
 else
 nColor--;
-mxLbColorDepth->append_text( ms1BitTreshold );
+mxLbColorDepth->append_text( ms1BitThreshold );
 mxLbColorDepth->append_text( ms1BitDithered );
 mxLbColorDepth->append_text( ms4BitGrayscale );
 mxLbColorDepth->append_text( ms4BitColorPalette );
diff --git a/svtools/source/filter/exportdialog.hxx 
b/svtools/source/filter/exportdialog.hxx
index c42ad377b7d2..dd8c9c4add3e 100644
--- a/svtools/source/filter/exportdialog.hxx
+++ b/svtools/source/filter/exportdialog.hxx
@@ -54,7 +54,7 @@ private:
 OUString constmsEstimatedSizePix2;
 OUString constmsEstimatedSizeVec;
 
-OUString constms1BitTreshold;
+OUString constms1BitThreshold;
 OUString constms1BitDithered;
 OUString constms4BitGrayscale;
 OUString constms4BitColorPalette;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 113450] Cannot enter text involving the ALT Gr key in the find and replace dialog box

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113450

Christian Lehmann  changed:

   What|Removed |Added

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

--- Comment #12 from Christian Lehmann  ---
I am awfully sorry. I yesterday tested the behavior of the 'Find'
dialogue at a moment where OpenGL was enabled. At that moment, the reported
problem did not exist, so I thought it was solved. However, OpenGL does not
work in my installation, so I had to disable it again. And now the problem of
the Alt and AltGr keys reappears:
1) In Wirter, press either CTRL-h or CTRL-f.
2) Type anything.
3) Press either Alt or Alt-Gr key.
4) The text entered before is highlighted, so it will disappear once you hit
the next key.

-- 
You are receiving this mail because:
You 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 113136] [META] Find & Replace Dialog

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113136
Bug 113136 depends on bug 113450, which changed state.

Bug 113450 Summary: Cannot enter text involving the ALT Gr key in the find and 
replace dialog box
https://bugs.documentfoundation.org/show_bug.cgi?id=113450

   What|Removed |Added

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

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


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

2018-12-19 Thread Libreoffice Gerrit user
 cui/source/options/optupdt.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 2215c5020d5b308a32c58f0b6144845881fe3fcd
Author: Noel Grandin 
AuthorDate: Wed Dec 19 11:01:10 2018 +0200
Commit: Noel Grandin 
CommitDate: Thu Dec 20 08:42:38 2018 +0100

use unique_ptr in SvxOnlineUpdateTabPage

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

diff --git a/cui/source/options/optupdt.cxx b/cui/source/options/optupdt.cxx
index 281250a8bf6b..396cf5aaa5b7 100644
--- a/cui/source/options/optupdt.cxx
+++ b/cui/source/options/optupdt.cxx
@@ -142,7 +142,7 @@ void SvxOnlineUpdateTabPage::UpdateLastCheckedText()
 }
 
 LanguageType eUILang = 
Application::GetSettings().GetUILanguageTag().getLanguageType();
-SvNumberFormatter *pNumberFormatter = new SvNumberFormatter( 
::comphelper::getProcessComponentContext(), eUILang );
+std::unique_ptr pNumberFormatter(new 
SvNumberFormatter( ::comphelper::getProcessComponentContext(), eUILang ));
 Color*  pColor = nullptr;
 const Date& rNullDate = pNumberFormatter->GetNullDate();
 sal_uInt32  nFormat = pNumberFormatter->GetStandardFormat( 
SvNumFormatType::DATE, eUILang );
@@ -152,7 +152,7 @@ void SvxOnlineUpdateTabPage::UpdateLastCheckedText()
 nFormat = pNumberFormatter->GetStandardFormat( SvNumFormatType::TIME, 
eUILang );
 pNumberFormatter->GetOutputString( aTime.GetTimeInDays(), nFormat, 
aTimeStr,  );
 
-delete pNumberFormatter;
+pNumberFormatter.reset();
 
 aText = m_aLastCheckedTemplate;
 sal_Int32 nIndex = aText.indexOf( "%DATE%" );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 103309] [META] Print dialog bugs and enhancements

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103309
Bug 103309 depends on bug 92190, which changed state.

Bug 92190 Summary: PRINTs landscape despite configured as portrait (Mac OS)
https://bugs.documentfoundation.org/show_bug.cgi?id=92190

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 92190] PRINTs landscape despite configured as portrait (Mac OS)

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92190

Joshua Kugler  changed:

   What|Removed |Added

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

--- Comment #116 from Joshua Kugler  ---
I am still fighting this bug in version 6.0.0.3 on Mac. Has it been reopened
elsewhere?

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

2018-12-19 Thread Libreoffice Gerrit user
 scaddins/source/analysis/analysishelper.cxx |8 +-
 sccomp/source/solver/CoinMPSolver.cxx   |   36 -
 sccomp/source/solver/LpsolveSolver.cxx  |   36 -
 scripting/source/basprov/basscript.cxx  |8 +-
 scripting/source/provider/BrowseNodeFactoryImpl.cxx |   24 +++---
 scripting/source/stringresource/stringresource.cxx  |   76 
 scripting/source/vbaevents/eventhelper.cxx  |   14 +--
 7 files changed, 93 insertions(+), 109 deletions(-)

New commits:
commit b38e690296e48657ec8c66427a6511f42f4b0115
Author: Arkadiy Illarionov 
AuthorDate: Wed Dec 19 21:53:06 2018 +0300
Commit: Noel Grandin 
CommitDate: Thu Dec 20 08:15:54 2018 +0100

Simplify containers iterations in scaddins, sccomp, scripting

Use range-based loop or replace with STL functions

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

diff --git a/scaddins/source/analysis/analysishelper.cxx 
b/scaddins/source/analysis/analysishelper.cxx
index 1a21ecbb0b31..787c99bd3dd8 100644
--- a/scaddins/source/analysis/analysishelper.cxx
+++ b/scaddins/source/analysis/analysishelper.cxx
@@ -2457,10 +2457,9 @@ double ConvertDataList::Convert( double fVal, const 
OUString& rFrom, const OUStr
 sal_Int16   nLevelFrom = 0;
 sal_Int16   nLevelTo = 0;
 
-auto it = maVector.begin();
-while( it != maVector.end() && ( bSearchFrom || bSearchTo ) )
+for( const auto& rItem : maVector )
 {
-ConvertData*p = it->get();
+ConvertData*p = rItem.get();
 if( bSearchFrom )
 {
 sal_Int16   n = p->GetMatchingLevel( rFrom );
@@ -2499,7 +2498,8 @@ double ConvertDataList::Convert( double fVal, const 
OUString& rFrom, const OUStr
 }
 }
 
-++it;
+if( !bSearchFrom && !bSearchTo )
+break;
 }
 
 if( !pFrom || !pTo )
diff --git a/sccomp/source/solver/CoinMPSolver.cxx 
b/sccomp/source/solver/CoinMPSolver.cxx
index dbd19a4d9f43..d227e48d5f0f 100644
--- a/sccomp/source/solver/CoinMPSolver.cxx
+++ b/sccomp/source/solver/CoinMPSolver.cxx
@@ -86,40 +86,38 @@ void SAL_CALL CoinMPSolver::solve()
 // set all variables to zero
 //! store old values?
 //! use old values as initial values?
-std::vector::const_iterator aVarIter;
-for ( aVarIter = aVariableCells.begin(); aVarIter != aVariableCells.end(); 
++aVarIter )
+for ( const auto& rVarCell : aVariableCells )
 {
-SolverComponent::SetValue( mxDoc, *aVarIter, 0.0 );
+SolverComponent::SetValue( mxDoc, rVarCell, 0.0 );
 }
 
 // read initial values from all dependent cells
-ScSolverCellHashMap::iterator aCellsIter;
-for ( aCellsIter = aCellsHash.begin(); aCellsIter != aCellsHash.end(); 
++aCellsIter )
+for ( auto& rEntry : aCellsHash )
 {
-double fValue = SolverComponent::GetValue( mxDoc, aCellsIter->first );
-aCellsIter->second.push_back( fValue ); // 
store as first element, as-is
+double fValue = SolverComponent::GetValue( mxDoc, rEntry.first );
+rEntry.second.push_back( fValue ); // store as 
first element, as-is
 }
 
 // loop through variables
-for ( aVarIter = aVariableCells.begin(); aVarIter != aVariableCells.end(); 
++aVarIter )
+for ( const auto& rVarCell : aVariableCells )
 {
-SolverComponent::SetValue( mxDoc, *aVarIter, 1.0 );  // set to 1 
to examine influence
+SolverComponent::SetValue( mxDoc, rVarCell, 1.0 );  // set to 1 to 
examine influence
 
 // read value change from all dependent cells
-for ( aCellsIter = aCellsHash.begin(); aCellsIter != aCellsHash.end(); 
++aCellsIter )
+for ( auto& rEntry : aCellsHash )
 {
-double fChanged = SolverComponent::GetValue( mxDoc, 
aCellsIter->first );
-double fInitial = aCellsIter->second.front();
-aCellsIter->second.push_back( fChanged - fInitial );
+double fChanged = SolverComponent::GetValue( mxDoc, rEntry.first );
+double fInitial = rEntry.second.front();
+rEntry.second.push_back( fChanged - fInitial );
 }
 
-SolverComponent::SetValue( mxDoc, *aVarIter, 2.0 );  // minimal 
test for linearity
+SolverComponent::SetValue( mxDoc, rVarCell, 2.0 );  // minimal 
test for linearity
 
-for ( aCellsIter = aCellsHash.begin(); aCellsIter != aCellsHash.end(); 
++aCellsIter )
+for ( const auto& rEntry : aCellsHash )
 {
-double fInitial = aCellsIter->second.front();
-double fCoeff   = aCellsIter->second.back();   // last 
appended: coefficient for this variable
-double fTwo = SolverComponent::GetValue( mxDoc, 
aCellsIter->first );
+double fInitial = 

[Libreoffice-bugs] [Bug 109061] xlsx import : large ranges in formula shows error on recalc

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109061

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

   Keywords||filter:xlsx
 Blocks||108897


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108897
[Bug 108897] [META] XLSX (OOXML) bug tracker
-- 
You are receiving this mail because:
You 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 108897] [META] XLSX (OOXML) bug tracker

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108897

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||109061


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=109061
[Bug 109061] xlsx import : large ranges in formula shows error on recalc
-- 
You are receiving this mail because:
You 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: include/svx svx/source

2018-12-19 Thread Libreoffice Gerrit user
 include/svx/sdrpaintwindow.hxx |3 ---
 include/svx/svdpntv.hxx|7 ++-
 svx/source/svdraw/svdpntv.cxx  |   27 +--
 3 files changed, 11 insertions(+), 26 deletions(-)

New commits:
commit 45f0c58c615e1caf2bc8630924e2e4c89ac7bc4d
Author: Noel Grandin 
AuthorDate: Wed Dec 19 10:14:45 2018 +0200
Commit: Noel Grandin 
CommitDate: Thu Dec 20 07:29:33 2018 +0100

use unique_ptr in SdrPaintView

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

diff --git a/include/svx/sdrpaintwindow.hxx b/include/svx/sdrpaintwindow.hxx
index c99c578f0da3..8c833d85926c 100644
--- a/include/svx/sdrpaintwindow.hxx
+++ b/include/svx/sdrpaintwindow.hxx
@@ -138,9 +138,6 @@ public:
 OutputDevice& GetTargetOutputDevice() { if(mpPreRenderDevice) return 
mpPreRenderDevice->GetPreRenderDevice(); else return *mpOutputDevice.get(); }
 };
 
-// typedefs for a list of SdrPaintWindows
-typedef ::std::vector< SdrPaintWindow* > SdrPaintWindowVector;
-
 #endif // INCLUDED_SVX_SDRPAINTWINDOW_HXX
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/svx/svdpntv.hxx b/include/svx/svdpntv.hxx
index 8af3d7710d04..2913850ed04b 100644
--- a/include/svx/svdpntv.hxx
+++ b/include/svx/svdpntv.hxx
@@ -87,10 +87,7 @@ public:
 explicit SvxViewChangedHint();
 };
 
-/// Typedefs for a list of SdrPaintWindows
 class SdrPaintWindow;
-typedef ::std::vector< SdrPaintWindow* > SdrPaintWindowVector;
-
 
 /**
  * Helper to convert any GDIMetaFile to a good quality BitmapEx,
@@ -150,7 +147,7 @@ protected:
 //  Container   aPagV; // List of SdrPageViews
 
 // All windows this view is displayed on
-SdrPaintWindowVectormaPaintWindows;
+std::vector< std::unique_ptr >  maPaintWindows;
 
 SizemaGridBig;   // FIXME: We need to get rid of 
this eventually
 SizemaGridFin;   // FIXME: We need to get rid of 
this eventually
@@ -228,7 +225,7 @@ protected:
 Color   maGridColor;
 
 // Interface to SdrPaintWindow
-void RemovePaintWindow(SdrPaintWindow& rOld);
+void DeletePaintWindow(SdrPaintWindow& rOld);
 void ConfigurationChanged( ::utl::ConfigurationBroadcaster*, 
ConfigurationHints ) override;
 
 public:
diff --git a/svx/source/svdraw/svdpntv.cxx b/svx/source/svdraw/svdpntv.cxx
index e03397d8d285..967215a3822b 100644
--- a/svx/source/svdraw/svdpntv.cxx
+++ b/svx/source/svdraw/svdpntv.cxx
@@ -68,26 +68,22 @@ using namespace ::com::sun::star;
 SdrPaintWindow* SdrPaintView::FindPaintWindow(const OutputDevice& rOut) const
 {
 auto a = std::find_if(maPaintWindows.begin(), maPaintWindows.end(),
-[](const SdrPaintWindow* pWindow) { return 
&(pWindow->GetOutputDevice()) ==  });
+[](const std::unique_ptr& pWindow) { return 
&(pWindow->GetOutputDevice()) ==  });
 if (a != maPaintWindows.end())
-return *a;
+return a->get();
 
 return nullptr;
 }
 
 SdrPaintWindow* SdrPaintView::GetPaintWindow(sal_uInt32 nIndex) const
 {
-if(nIndex < maPaintWindows.size())
-{
-return maPaintWindows[nIndex];
-}
-
-return nullptr;
+return maPaintWindows[nIndex].get();
 }
 
-void SdrPaintView::RemovePaintWindow(SdrPaintWindow& rOld)
+void SdrPaintView::DeletePaintWindow(SdrPaintWindow& rOld)
 {
-const SdrPaintWindowVector::iterator aFindResult = 
::std::find(maPaintWindows.begin(), maPaintWindows.end(), );
+auto aFindResult = ::std::find_if(maPaintWindows.begin(), 
maPaintWindows.end(),
+[&](const std::unique_ptr& p) { 
return p.get() ==  });
 
 if(aFindResult != maPaintWindows.end())
 {
@@ -216,11 +212,7 @@ SdrPaintView::~SdrPaintView()
 #endif
 
 // delete existing SdrPaintWindows
-while(!maPaintWindows.empty())
-{
-delete maPaintWindows.back();
-maPaintWindows.pop_back();
-}
+maPaintWindows.clear();
 }
 
 
@@ -424,7 +416,7 @@ void SdrPaintView::AddWindowToPaintView(OutputDevice* 
pNewWin, vcl::Window *pWin
 {
 DBG_ASSERT(pNewWin, "SdrPaintView::AddWindowToPaintView: No 
OutputDevice(!)");
 SdrPaintWindow* pNewPaintWindow = new SdrPaintWindow(*this, *pNewWin, 
pWindow);
-maPaintWindows.push_back(pNewPaintWindow);
+maPaintWindows.emplace_back(pNewPaintWindow);
 
 if(mpPageView)
 {
@@ -449,8 +441,7 @@ void SdrPaintView::DeleteWindowFromPaintView(OutputDevice* 
pOldWin)
 mpPageView->RemovePaintWindowFromPageView(*pCandidate);
 }
 
-RemovePaintWindow(*pCandidate);
-delete pCandidate;
+DeletePaintWindow(*pCandidate);
 }
 
 #ifdef DBG_UTIL
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 108897] [META] XLSX (OOXML) bug tracker

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108897

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||103406


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103406
[Bug 103406] FILTER: smath OLE formula is lost saving as xlsx
-- 
You are receiving this mail because:
You 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 103406] FILTER: smath OLE formula is lost saving as xlsx

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103406

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

   Keywords||filter:xlsx
 Blocks||108897, 107810


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107810
[Bug 107810] [META] OLE/Embedded object bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=108897
[Bug 108897] [META] XLSX (OOXML) bug tracker
-- 
You are receiving this mail because:
You 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 107810] [META] OLE/Embedded object bugs and enhancements

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107810

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||103406


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103406
[Bug 103406] FILTER: smath OLE formula is lost saving as xlsx
-- 
You are receiving this mail because:
You 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: bridges/inc

2018-12-19 Thread Libreoffice Gerrit user
 bridges/inc/vtablefactory.hxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 41ed5c2e61a040b67088b15c8bdea30a45b0
Author: Andrea Gelmini 
AuthorDate: Wed Dec 19 08:22:18 2018 +
Commit: Julien Nabet 
CommitDate: Thu Dec 20 07:06:52 2018 +0100

Fix typo

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

diff --git a/bridges/inc/vtablefactory.hxx b/bridges/inc/vtablefactory.hxx
index facb437530ef..6978e3c670b5 100644
--- a/bridges/inc/vtablefactory.hxx
+++ b/bridges/inc/vtablefactory.hxx
@@ -182,8 +182,8 @@ private:
 @param functionOffset  the function offset of the first vtable slot
 (typically coded into the code snippet for that vtable slot)
 @param functionCount  the number of vtable slots to fill (the number of
-local functions of the given type, passed in so that it need not be
-recomputed)
+local functions of the given type, passed in so that it doesn't need to
+be recomputed)
 @param vtableOffset  the offset of this vtable (needed to adjust the
 this pointer, typically coded into the code snippets for all the filled
 vtable slots)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 121749] problem downloading beta file

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121749

Mike Kaganski  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #7 from Mike Kaganski  ---
(In reply to moisele from comment #6)

Hi! I understand that you have some unpleasant experience with this issue; but
may I ask you a favor: since you have a reliably reproducible behavior here,
you could help us to nail down at least this specific case of the problem.

At [1], there is an information about the package you have downloaded and tried
to install a number of times. I suppose that, since the same package was
downloaded and installed successfully a big number of times by others, and
since there's no other mirror for the package offered from [1], the package
itself is OK. So the problem must be somewhere on the transfer or on your side,
and finding it could help others to avoid it in the future - thus your help
would be very valuable. Thanks!

Could you please:

1. Check that the downloaded package has the same hash (SHA256/SHA1/MD5) as
mentioned on the page [1]? Multiple tools can do that; e.g., 7-zip has this
function included (at least, recent versions). This step helps to rule out a
possibility of in-transfer corruption; this problem is actually unlikely, since
if it were that, it wouldn't go as far as to checking the embedded .cab - it
would say that MSI itself is corrupt instead.

2. If you are running any antivirus software (like Windows Defender, or
Kaspersky/Norton/Avast/etc products), check if disabling the software for the
time of installation solves the problem. This could help to exclude the
possibility of the AV interfering with the process.

3. Check if any suspicious Windows logs are recorded at the time of the
installation. Please check Computer Management applet (accessible by
right-clicking "My Computer" in Windows Explorer) -> Events, both Computer and
Application logs (and possibly others as well), for the time frame of the
installation attempt.

4. Check if other LibreOffice packages install OK. Recently, LibreOffice 6.1.4
release was announced [2]; could you please try downloading [3]installing that
to check if the same problem happens with that or not. Also, to check a
different package of a comparable size, you could also test if installing an
Apache OpenOffice [4] succeeds or not. This step tries to check somehow if this
is a generic problem related to e.g. memory corruption on your system or
somesuch (of course, this test is not definitive, and may point to a different
cause, or may pass and still conceal an existing such problem).

5. Ideally, a hardware test.

Thanks for doing any set of the above list and coming back with results. Doing
that could be of help to people suffering from a similar problem, as in bug
79091.

[1]
http://downloadarchive.documentfoundation.org/libreoffice/old/6.2.0.0.beta1/win/x86_64/LibreOfficeDev_6.2.0.0.beta1_Win_x64.msi.mirrorlist
[2]
https://blog.documentfoundation.org/blog/2018/12/18/libreoffice-6-1-4-announced/
[3] https://www.libreoffice.org/download/download/
[4] http://www.openoffice.org/download/index.html

-- 
You are receiving this mail because:
You 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 122211] LibreOffice crashes when I try to scroll after resizing the window on macOS

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122211

--- Comment #1 from Claude <1claudechampa...@gmail.com> ---
I have the same problem, in MacOS Mojave.

-- 
You are receiving this mail because:
You 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 122214] New: Keyboard navigation skips set items by one for value set control (gtk2, windows)

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122214

Bug ID: 122214
   Summary: Keyboard navigation skips set items by one for value
set control (gtk2, windows)
   Product: LibreOffice
   Version: 6.3.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rayk...@gmail.com

This control is used in the color, gradient, bitmap, pattern, and hatch tab
pages and the calc tab color dialog.  

Steps to repro using color tab page in Writer:

1) Menu > Format > Page > Area > Color
2) click a color in the color set control
3) navigate color set with arrow keys

results: navigation skips set items by one

This can also be seen in the other tab page value set controls (Gradient,
Bitmap, Pattern, and Hatch)

Behavior changed at this commit:

commit 9c5d20105f0b123fca724cb4845f0e7227c217d8
Author: Caolán McNamara , Thu Nov 29 20:11:34 2018 + (3
weeks ago)
Committer: Caolán McNamara , Sat Dec 1 22:37:22 2018 +0100
(2 weeks ago)
Follows: libreoffice-6-2-branch-point
Branches: 

weld OfaAutoCompleteTabPage

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

-- 
You are receiving this mail because:
You 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 78668] FORMATTING : anchor bug

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78668

--- Comment #13 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You 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 114442] Filesave will shift some skewed rectangles to incorrect position

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114442

--- Comment #4 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You 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 75488] Filesystem lock on shared Calc Documents in Excel-format not released

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75488

--- Comment #12 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You 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 93084] Incorrect displaying docx document

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93084

--- Comment #11 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You 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 114541] COLUMN-BREAK: Display of Term “Manual Column Break“ is Erroneous

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114541

--- Comment #3 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You 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 114557] 'Match Case' checkbox in Find toolbar cannot be renamed and icon cannot be set

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114557

--- Comment #6 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You 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 89146] Formulas in Writer losing some formatting in docx and rtf files, compared to odt file

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89146

--- Comment #6 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You 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 114416] Property CharKeepTogether should be removed

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114416

--- Comment #2 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You 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 114430] Importing master slides broken

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114430

--- Comment #3 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You 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 108808] Sign existing PDF doesn't work with Hybrid PDFs

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108808

--- Comment #4 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You 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 114405] Impress forgets settings of slide number dialog for handouts

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114405

--- Comment #3 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You 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 122213] New: MS Excel file with Formula not working in LibreOffice

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122213

Bug ID: 122213
   Summary: MS Excel file with Formula not working in LibreOffice
   Product: LibreOffice
   Version: 5.1.6.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: apache.r...@gmail.com

Description:
I got a MS Excel file with lots of formula in multiple sheets. I can see all
results in Summery sheet using MS Excel but it does not work in Libreoffice. It
shows Err:508

Steps to Reproduce:
1. Tried with Resetting User Profile
2. Tried by enabling OpenGL

Actual Results:
1. No change found
2. No change found

Expected Results:
Expecting to work the formula's after enabling OpenGL but it does not.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:

-- 
You are receiving this mail because:
You 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 122116] LibreOffice 6.1.* crashes by recovering file at start over and over on Linux

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122116

--- Comment #20 from Andras  ---
Created attachment 147687
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147687=edit
LibreOffice backtraces for libreoffice-6.1

Currently I can provide debugging through originally implemented ddebs.ubuntu
packages on my system. I decided to get back to the originally implemented
LibreOffice 6.0.7.3 because even this one crashes too on my system and I wasn't
able to get dbgsym packages for newer one yet, I will try the solution above if
it's still necessary though. Sorry if this one is still not enough or it was
simple a bed idea. Thanks for the suggestion how to get 6.3 dgbsym precisely,
I'll try as soon as possible.

-- 
You are receiving this mail because:
You 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 122212] New: Save sql query string as is, if it wasn't created in SQL Designer, or at least format them

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122212

Bug ID: 122212
   Summary: Save sql query string as is, if it wasn't created in
SQL Designer, or at least format them
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: aalexande...@gmail.com

I write SQL Queries myself, or often edit them after creating with wizard.
Sometimes, there are complex long texts, which I format manually. But this
format doesn't save. Every time I open them, I see a mono block, one unreadable
line. 
I would love, if my format with my comments would also save. Or, at least, let
it format automatically.

-- 
You are receiving this mail because:
You 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 122116] LibreOffice 6.1.* crashes by recovering file at start over and over on Linux

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122116

--- Comment #19 from Michael Weghorn  ---
(In reply to Andras from comment #18)
> (In reply to Michael Weghorn from comment #17)
> I don't want to increase the length of this thread and maybe I don't know or
> see something but as I said not the system should get debugging packages
> already from .../ubuntu/bionic web address with line:
> "deb http://ppa.launchpad.net/libreoffice/libreoffice-prereleases/ubuntu
> bionic main"

As far as I can see, the debug packages are not available in this repo, but
they are in the separate one I wrote about. I quicky tested adding these two
entries into my /etc/apt/sources.list on debian:

deb [trusted=yes]
http://ppa.launchpad.net/libreoffice/libreoffice-prereleases/ubuntu bionic main
deb [trusted=yes]
http://ppa.launchpad.net/libreoffice/libreoffice-prereleases/ubuntu bionic
main/debug

After running the command 'apt update', I can then run

$ apt policy libreoffice-writer-dbgsym
libreoffice-writer-dbgsym:
  Installed: (none)
  Candidate: 1:6.1.3~rc2-0ubuntu0.18.04.2
  Version table:
 1:6.1.3~rc2-0ubuntu0.18.04.2 500
500 http://ppa.launchpad.net/libreoffice/libreoffice-prereleases/ubuntu
bionic/main/debug amd64 Packages

with the given output, which suggests that the debug packages should be in the
repository I mentioned ('... main/debug').

I did not try to actually install packages (since packages are targeted at the
specific Ubuntu version 18.04 and probably won't work on Debian testing
anyway). It can be that there's some other issue I don't see right now, though,
that may cause this not to work for you.

> In short, only "bionic main" ending works, there is no option for "bionic
> debug" or "bionic main/debug" etc, correct me if I'm wrong about this. Is it
> possible debugging packages are available if you build it (what isn't so
> simple for me) or from other direct sources?

Yes, you'll get debug symbols if you build the source yourself with the
corresponding options. Please refer to comment 6 for details.


Another (probable the easiest and quickest) way to get a build with debug
symbols, is to download a build that contains debug symbols from the
LibreOffice daily builds, e.g. those for master available at
https://dev-builds.libreoffice.org/daily/master/Linux-rpm_deb-x86_64@86-TDF-dbg/

The following 3 commands will download and start LibreOffice to get a backtrace
(this uses the 'gtk3' VCL plugin, which should give the same result as
'gtk3_kde5', since file dialogs are not involved):

> wget 
> https://dev-builds.libreoffice.org/daily/master/Linux-rpm_deb-x86_64@86-TDF-dbg/2018-12-19_02.03.20/master_dbg~2018-12-19_02.03.20_LibreOfficeDev_6.3.0.0.alpha0_Linux_x86-64_archive.tar.gz
> tar xvf 
> master_dbg~2018-12-19_02.03.20_LibreOfficeDev_6.3.0.0.alpha0_Linux_x86-64_archive.tar.gz
> SAL_USE_VCLPLUGIN=gtk3 
> LibreOfficeDev_6.3.0.0.alpha0_Linux_x86-64_archive/program/soffice 
> --backtrace 

The last two scenarios also have the advantage that the builds are not from
some "third party", thus eliminating the possibility that any of the packaging
done by the PPA maintainer might have caused any problems...

-- 
You are receiving this mail because:
You 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 121236] HANG - scrolling font list dropdown menu with mouse wheel in Insert Special Character causes hang requiring force kill

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121236

--- Comment #15 from Eric Peterson  ---
Thanks for the quick fix!

Best wishes for a happy holiday and a great start on 2019

Eric

-- 
You are receiving this mail because:
You 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 122211] New: LibreOffice crashes when I try to scroll after resizing the window on macOS

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122211

Bug ID: 122211
   Summary: LibreOffice crashes when I try to scroll after
resizing the window on macOS
   Product: LibreOffice
   Version: 6.1.4.2 release
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: thb...@gmail.com

Description:
I open LibreOffice Writer on macOS, resize the window because it is due to the
Startcentre to small. Want to scroll down, LibrOffice hangs but scrolls down in
the end, want to scroll up again, LibreOffice crashes.

Steps to Reproduce:
1. Open LibreOffice writer
2. Resize the window
3. Scroll down, scroll up

Actual Results:
LibreOffice crashes

Expected Results:
The document should scroll up and down.


Reproducible: Always


User Profile Reset: No



Additional Info:
I could also reproduce this in Calc. It only happens after I resize the window.
Keeping the window small helps to avoid the crash.

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


[Libreoffice-bugs] [Bug 122167] "List" Field from FireBird query doesn't show up at mail merging

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122167

--- Comment #1 from Alex Ander  ---
I found, what was the problem:
LIST() returns CLOB data. After I have converted it to VARCHAR, I've got the
needed result.
So, my suggestion is to make such conversion automatically.

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


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

2018-12-19 Thread Libreoffice Gerrit user
 sw/source/filter/ww8/wrtw8nds.cxx |4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

New commits:
commit d41d2ea9aa55624fab4eba4fa24f125f0d9a25fb
Author: Justin Luth 
AuthorDate: Mon Dec 17 14:19:45 2018 +0300
Commit: Justin Luth 
CommitDate: Thu Dec 20 02:17:49 2018 +0100

sw filter/ww8 code cleanup: remove duplicate variable

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

diff --git a/sw/source/filter/ww8/wrtw8nds.cxx 
b/sw/source/filter/ww8/wrtw8nds.cxx
index 02e946af9a9d..393c1d2e8afb 100644
--- a/sw/source/filter/ww8/wrtw8nds.cxx
+++ b/sw/source/filter/ww8/wrtw8nds.cxx
@@ -3046,9 +3046,7 @@ void MSWordExportBase::OutputSectionNode( const 
SwSectionNode& rSectionNode )
 ReplaceCr( msword::PageBreak ); // Indicator for Page/Section-Break
 
 // Get the page in use at the top of this section
-SwNodeIndex aIdxTmp(rSectionNode, 1);
-const SwPageDesc *pCurrent =
-SwPageDesc::GetPageDescOfNode(aIdxTmp.GetNode());
+const SwPageDesc *pCurrent = SwPageDesc::GetPageDescOfNode(rNd);
 if (!pCurrent)
 pCurrent = m_pCurrentPageDesc;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 122047] Cannot close document - icon "Close" hidden by another icon

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122047

--- Comment #2 from Eric Carlson  ---
I just updated the Collabora Office app to 3.0.6 and this is now resolved.

LOOLWSD
3.4.0 (git hash: c8a7a5c)

LOKit
Collabora Office 5.3-57 (git hash: 62b7f51)

I'll let raal mark this resolved if it's fixed for them too.

-- 
You are receiving this mail because:
You 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 50699] Template Changer: Allow ability to change a document's associated template

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50699

--- Comment #60 from Gerhard Weydt  ---
Different strains seem to get mixed up in this discussion which should be
clearly separated (details follow below). I list them because they have been
alluded to somewhere, in order to get rid of most of them quickly:
1. The possibility to change a document template attached to a document, the
initial reason for this bug report (for which I question the need in many
cases)
2. The ability to update the styles used in a document using a model - which
can be any document or a template in the way LibO uses this term
3. The use of a template to initialize some aspects of newly created documents
4. The ability to promote changes of this template to the documents attached to
it

Comment #30 talks of Writer and Impress, but this is relevant for Calc and Draw
as well.
Comments #32, 37 and 47 correctly state that not only styles are involved (in
contrast to Comment #52 which seems to imply the contrary).

It might be useful to first recall what LibO already can do. My tests have been
primarily been done with Calc, because my interest was triggered by someone
asking about Calc Templates, but this may be even an advantage, as most people
on this thread seem to be looking to Writer and perhaps Impress.
- There is the possibility to copy (and eventually overwrite) all styles of a
document using another document (which must not be a so-called template) as a
starting-point, in Writer. This would indeed be wished for for Calc, Draw and
Impress too. So #2 is available for writer , but desired for the other modules.
- There is the possibilty to create document templates (in each of the LibO
modules) which may be used to set many of the quite complex attributes of a new
document by copying. No one in this thread seems to question the extent of the
copied attributes, so we take this function as accepted. This covers #3.
- Promoting changes (#4) in a template created according to #3 is done by LibO:
you will be asked if you want to accept changing all relevant settings using
the template or not. This includes not only character and paragraph styles, but
also footer and header settings, including attributes for the texts of the
divers components of these and e.g.borders of these. Unfortunately, the text of
the prompt uses the wording "update Styles", but in fact there will be done
more: most (or all, I'm, not sure) settings will be changed.

So, excepting the extension of #2 to all components, question #1 remains to be
discussed.
Now, looking at this question more closely:
You may well design a series of cascading templates using ever more concrete
settings, and changing one of these at a parent level would probably (as I
hope) trigger questions about propagating these changes at the lower level (by
already existing LibO functionality). This might be a scenario for a bigger
company using lots of document templates which are base on simpler models,
which again use other models etc.
But I don't see a frequent need to set a different template to the document:
the changes should be done by changing the settings of the parent document
(which could be some steps higher in the lineage).

Thus I think that really replacing a document template by another is a very
extreme and seldom occasion. It could be done, as far as I know, by the
following macro, which should be located, as far as the momentary coding is
used, within the document:
Sub setzeVorlageInfos

dim dt as NEW com.sun.star.util.DateTime

oDoc = ThisComponent
prop = oDoc.DocumentProperties
prop.TemplateName = "master2"   'set Name, this example fits the file name in
the following statement
prop.TemplateURL =
ConvertToURL("C:\Users\gerha\AppData\Roaming\LibreOffice\4\user\template\master2.ots")
  'this is an example
dt = prop.TemplateDate  'Date ist set to 'zero', so there will be a prompt
because of differnent time stamp
dt.Nanoseconds = 0
dt.Seconds = 0
dt.Minutes = 0
dt.Hours = 0
dt.Day = 0
dt.Month = 0
dt.Year = 0
dt.IsUTC = FALSE
' bis hier...
prop.TemplateDate = dt

End Sub

After using this macro, the document should be opened, because then the user
would be prompted to apply the changes caused by the new template to the
document. Thus, all necessary changes will be done.
Thus, this simple macro in combination with the existing functionality of LibO
seems to me to be doing all that is necessary.
I still want to repeat that I think that there is rarely a need to change the
template of a document (whereas I quite see the need for changing the existing
template, a scenario which seems to be coverd by Libo standards).
But for these rare cases I think using a macro is sufficient, adding
functionality to LibO core I deem not necessary.

My summary is that there is no need for a core functionality to change the link
to a document template, as this seems to be a rare exigency.  The normal case
would be to change the existing template; and for these extrem cases a macro is

[Libreoffice-commits] help.git: source/text

2018-12-19 Thread Libreoffice Gerrit user
 source/text/shared/explorer/database/02010100.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 41e0b82d2ccb7264c434d0e9bb2d0094b8a514bd
Author: Eike Rathke 
AuthorDate: Thu Dec 20 01:11:29 2018 +0100
Commit: Eike Rathke 
CommitDate: Thu Dec 20 01:13:24 2018 +0100

Dissolve contraction, don't -> do not

This was already fixed for 6-2 with commit
d08d1c486558d6c113863d579f89e1faf8d89572

Change-Id: I00e67478ae41cd5724d2df8abe105faef4343c21

diff --git a/source/text/shared/explorer/database/02010100.xhp 
b/source/text/shared/explorer/database/02010100.xhp
index fd1ffc2d6..74aff76d0 100644
--- a/source/text/shared/explorer/database/02010100.xhp
+++ b/source/text/shared/explorer/database/02010100.xhp
@@ -294,7 +294,7 @@
 SELECT 
SUM("Price") FROM "Article".
 Except for the 
Group function, the above functions are called Aggregate 
functions. These are functions that calculate data to create summaries from the 
results. Additional functions that are not listed in the list box might be also 
possible. These depend on the specific database engine in use and on the 
current functionality provided by the Base driver used to connect to that 
database engine.
 To use other 
functions not listed in the list box, you must enter them manually under 
Field.
-You can also 
assign aliases to function calls. If you don't want to display the query string 
in the column header, enter a desired substitute name under 
Alias.
+You can also 
assign aliases to function calls. If you do not want to display the query 
string in the column header, enter a desired substitute name under 
Alias.
 The 
corresponding function in an SQL statement is:
 SELECT 
FUNCTION() AS alias FROM table
 Example:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2018-12-19 Thread Libreoffice Gerrit user
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3ba39e484ea3647b5ffd9e69075a40e521d0b304
Author: Eike Rathke 
AuthorDate: Thu Dec 20 01:11:29 2018 +0100
Commit: Gerrit Code Review 
CommitDate: Thu Dec 20 01:14:01 2018 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  - Dissolve contraction, don't -> do not

This was already fixed for 6-2 with commit
d08d1c486558d6c113863d579f89e1faf8d89572

Change-Id: I00e67478ae41cd5724d2df8abe105faef4343c21

diff --git a/helpcontent2 b/helpcontent2
index e291fe7c170e..41e0b82d2ccb 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit e291fe7c170e994bd3cd340d86021cab9382d0a1
+Subproject commit 41e0b82d2ccb7264c434d0e9bb2d0094b8a514bd
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - helpcontent2

2018-12-19 Thread Libreoffice Gerrit user
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e0de69e4006082d73c202308733824410d5fa02e
Author: Olivier Hallot 
AuthorDate: Sat Dec 8 11:34:28 2018 -0200
Commit: Gerrit Code Review 
CommitDate: Thu Dec 20 01:10:18 2018 +0100

Update git submodules

* Update helpcontent2 from branch 'libreoffice-6-2'
  - Fixes in Help page after translators review

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

diff --git a/helpcontent2 b/helpcontent2
index 3c7795ce8bfe..d08d1c486558 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 3c7795ce8bfeecf72bc7d6630bcd9c4d0f08ac28
+Subproject commit d08d1c486558d6c113863d579f89e1faf8d89572
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: Branch 'libreoffice-6-2' - source/text

2018-12-19 Thread Libreoffice Gerrit user
 source/text/scalc/00/0404.xhp|6 +++---
 source/text/scalc/00/0405.xhp|2 +-
 source/text/scalc/00/0412.xhp|2 +-
 source/text/scalc/01/func_days.xhp   |2 +-
 source/text/shared/00/00040500.xhp   |2 +-
 source/text/shared/04/0101.xhp   |3 ---
 source/text/shared/explorer/database/02010100.xhp|4 ++--
 source/text/shared/explorer/database/rep_insertfield.xhp |4 +---
 8 files changed, 10 insertions(+), 15 deletions(-)

New commits:
commit d08d1c486558d6c113863d579f89e1faf8d89572
Author: Olivier Hallot 
AuthorDate: Sat Dec 8 11:34:28 2018 -0200
Commit: Eike Rathke 
CommitDate: Thu Dec 20 01:10:18 2018 +0100

Fixes in Help page after translators review

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

diff --git a/source/text/scalc/00/0404.xhp 
b/source/text/scalc/00/0404.xhp
index 05bfeca0d..7414e6d67 100644
--- a/source/text/scalc/00/0404.xhp
+++ b/source/text/scalc/00/0404.xhp
@@ -30,8 +30,8 @@
 
 Insert 
Menu
 
-Choose 
Insert - Cells.
-Open 
Insert Cells toolbar from Tools bar:
+Choose 
Sheet - Insert Cells.
+Choose 
View - Toolbars and select  Insert Cells 
toolbar:
 
 
 
@@ -149,7 +149,7 @@
 Insert - Function - Category Add-In
 
 Choose Insert - Function 
List.
-Choose Insert - Named Ranges and 
Expressions.
+Choose Insert - Named Range or 
Expression.
 Choose Sheet - Link to External 
data.
 
 Choose 
Sheet - Named Ranges and Expressions - Define.
diff --git a/source/text/scalc/00/0405.xhp 
b/source/text/scalc/00/0405.xhp
index 6da09aa4f..5ba4aedd6 100644
--- a/source/text/scalc/00/0405.xhp
+++ b/source/text/scalc/00/0405.xhp
@@ -75,6 +75,6 @@
 
 
 
-Choose Format - Conditional 
Formatting.
+Choose Format - Conditional.
 
 
diff --git a/source/text/scalc/00/0412.xhp 
b/source/text/scalc/00/0412.xhp
index 39d3ae987..476ce5e28 100644
--- a/source/text/scalc/00/0412.xhp
+++ b/source/text/scalc/00/0412.xhp
@@ -57,7 +57,7 @@
 
 
 Choose Data - Sort - Options 
tab.
-Choose Data - Filter.
+Choose Data - More Filters.
 
 Choose 
Data - AutoFilter.
 On 
Tools bar or Table Data bar, click
diff --git a/source/text/scalc/01/func_days.xhp 
b/source/text/scalc/01/func_days.xhp
index 9aebd01c4..bb002c1a4 100644
--- a/source/text/scalc/01/func_days.xhp
+++ b/source/text/scalc/01/func_days.xhp
@@ -36,7 +36,7 @@
 
 
 
-=DAYS("2010-01-01"; NOW())  returns the number of days from 
today until January 1, 2010.
+=DAYS(NOW();"2010-01-01")) returns the number of days from 
January 1, 2010 until today.
 =DAYS("1990-10-10";"1980-10-10")  returns 3652 
days.
 
 
diff --git a/source/text/shared/00/00040500.xhp 
b/source/text/shared/00/00040500.xhp
index 28173ecf7..c4428b7c0 100644
--- a/source/text/shared/00/00040500.xhp
+++ b/source/text/shared/00/00040500.xhp
@@ -156,7 +156,7 @@
 
 
 Choose 
Format - Page - Header tab.
-Choose 
View - Styles - open context menu of an entry and choose 
Modify/New - Header tab.
+Choose 
View - Styles - open context menu of a page style entry and choose 
Modify/New - Header tab.
 
 
 Choose 
Format - Page - Footer tab.
diff --git a/source/text/shared/04/0101.xhp 
b/source/text/shared/04/0101.xhp
index 0591d1d4b..ac83c77df 100644
--- a/source/text/shared/04/0101.xhp
+++ b/source/text/shared/04/0101.xhp
@@ -60,9 +60,6 @@
 You can 
open a context menu, which contains some of the most often-used 
commands.
   
 
-  Use the 
shortcut keys CommandCtrl+Shift+S to open the Special Characters 
dialog to insert one or more special characters.
-
-
   Use 
CommandCtrl+A to select the entire text. Use the right or left arrow 
key to remove the selection.
 
 
diff --git a/source/text/shared/explorer/database/02010100.xhp 
b/source/text/shared/explorer/database/02010100.xhp
index 6825e44ed..ff4ca9ee5 100644
--- a/source/text/shared/explorer/database/02010100.xhp
+++ b/source/text/shared/explorer/database/02010100.xhp
@@ -294,7 +294,7 @@
 SELECT 
SUM("Price") FROM "Article".
 Except for the 
Group function, the above functions are called Aggregate 
functions. These are functions that calculate data to create summaries from the 
results. Additional functions that are not listed in the list box might be also 
possible. These depend on the specific database engine in use and on the 
current functionality provided by the Base driver used to connect to that 
database engine.
 To use other 
functions not listed in the list box, you must enter them manually under 
Field.
-You can also 
assign aliases to function calls. If you not wish the query string to be 
displayed in the column header, enter a desired substitute name under 
Alias.
+You can also 
assign aliases to function calls. If you do not want to display 

[Libreoffice-bugs] [Bug 122210] When using the Orca screen reader on the Toolbars, everything is announced as a scroll pane; probably incorrect accessibility attributes being passed to the accessibili

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122210

--- Comment #1 from am_dxer  ---
I produced this on 6.3 but not 6.1. I will try to narrow down where the problem
was introduced later.

-- 
You are receiving this mail because:
You 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] help.git: Branch 'libreoffice-6-2' - source/text

2018-12-19 Thread Libreoffice Gerrit user
 source/text/scalc/02/0214.xhp|4 ++--
 source/text/scalc/02/0215.xhp|9 +
 source/text/scalc/guide/format_table.xhp |8 
 source/text/shared/00/0401.xhp   |   22 --
 source/text/shared/00/0406.xhp   |4 ++--
 source/text/shared/00/0409.xhp   |2 +-
 source/text/shared/00/00040500.xhp   |4 ++--
 source/text/shared/02/0214.xhp   |2 +-
 8 files changed, 21 insertions(+), 34 deletions(-)

New commits:
commit 3c7795ce8bfeecf72bc7d6630bcd9c4d0f08ac28
Author: Olivier Hallot 
AuthorDate: Tue Dec 11 10:13:22 2018 -0200
Commit: Eike Rathke 
CommitDate: Thu Dec 20 01:06:20 2018 +0100

Fix contents after translators review

Change-Id: I674796639284397c019240c4cd2ee79adb5b6ec0
Reviewed-on: https://gerrit.libreoffice.org/64960
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 
(cherry picked from commit 1d927d2d9747e320a04aeaf5096d80a6ff6f7fa5)
Reviewed-on: https://gerrit.libreoffice.org/64961
Reviewed-by: Eike Rathke 

diff --git a/source/text/scalc/02/0214.xhp 
b/source/text/scalc/02/0214.xhp
index 110c5e12f..1228921a7 100644
--- a/source/text/scalc/02/0214.xhp
+++ b/source/text/scalc/02/0214.xhp
@@ -18,7 +18,7 @@
  *   except in compliance with the License. You may obtain a copy of
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  -->
-   
+
 
 
 
@@ -57,7 +57,7 @@
 1 + 16% 
corresponds to 116% or 1.16
 1%% 
corresponds to 0.0001
 
-Format - Cell 
- Numbers
+Format - 
Cells - Numbers
 
 
 
diff --git a/source/text/scalc/02/0215.xhp 
b/source/text/scalc/02/0215.xhp
index e492f43f3..d5b599dfe 100644
--- a/source/text/scalc/02/0215.xhp
+++ b/source/text/scalc/02/0215.xhp
@@ -30,8 +30,6 @@
 
 
 
-  
-  
   
 
 Number format: 
Default
@@ -39,22 +37,17 @@
   
   
   
-   
-   
-   
 
  
   Icon
-
  
  
   Number 
Format: Standard
  
 
-   
   
   
   
-  Format - Cell 
- Numbers.
+  Format - 
Cells - Numbers.
  
 
diff --git a/source/text/scalc/guide/format_table.xhp 
b/source/text/scalc/guide/format_table.xhp
index 607faf3c8..2d3892675 100644
--- a/source/text/scalc/guide/format_table.xhp
+++ b/source/text/scalc/guide/format_table.xhp
@@ -1,7 +1,7 @@
 
 
 
-   
+
 
- 
-   
+
+
 
 
 Formatting Spreadsheets
@@ -60,7 +60,7 @@
 Formatting Borders and Backgrounds for Cells and Pages
 
 
-You can assign 
a format to any group of cells by first selecting the cells (for multiple 
selection, hold down the CommandCtrl
 key when clicking), and then activating the Format Cells dialog 
in Format - Cell. In this dialog, you can select 
attributes such as shadows and backgrounds.
+You can assign 
a format to any group of cells by first selecting the cells (for multiple 
selection, hold down the CommandCtrl
 key when clicking), and then activating the Format Cells dialog 
in Format - Cells. In this dialog, you can select 
attributes such as shadows and backgrounds.
 
 
 To apply 
formatting attributes to an entire sheet, choose Format - Page. 
You can define headers and footers, for example, to appear on each printed 
page.
diff --git a/source/text/shared/00/0401.xhp 
b/source/text/shared/00/0401.xhp
index 7ee478558..24f6c30b7 100644
--- a/source/text/shared/00/0401.xhp
+++ b/source/text/shared/00/0401.xhp
@@ -65,7 +65,7 @@
 
 Choose File - New - Business 
Cards.
 Choose File - New - Business Cards - Medium 
tab.
-Choose File - New - Business Cards - Business 
cards tab.
+Choose File - New - Business Cards - Business 
Cards tab.
 Choose File - New - Business Cards - Private 
tab.
 Choose File - New - Business Cards - Business 
tab.
 
@@ -107,17 +107,11 @@
 Choose File - Wizards - Fax - Name and 
Location.
 Choose File - Wizards - 
Agenda.
 Choose File - Wizards - Agenda - Page 
Design.
-Choose File - Wizards - Agenda - General 
Attributes.
-Choose File - Wizards - Agenda - 
Headings.
+Choose File - Wizards - Agenda - General 
information.
+Choose File - Wizards - Agenda - Headings to 
include.
 Choose File - Wizards - Agenda - 
Names.
-Choose File - Wizards - Agenda - 
Topics.
+Choose File - Wizards - Agenda - Agenda 
items.
 Choose File - Wizards - Agenda - Title and 
Location.
-Choose File - Wizards - 
Presentation.
-Choose File - Wizards - Presentation - Page 
1.
-Choose File - Wizards - Presentation - Page 
2.
-Choose File - Wizards - Presentation - Page 
3.
-Choose File - Wizards - Presentation - Page 
4.
-Choose File - Wizards - Presentation - Page 
5.
 Click Use Wizard to Create Form in a 
database file window.
 Click Use Wizard to Create Report in a 
database file window.
 In form design, click the Group Box icon on the 
toolbarand use the mouse to create a frame.
@@ -134,7 +128,7 @@
 Menu 
File - Wizards - Address Data Source.
 
 Address Data Source Wizards - Additional 
settings
-Address Data Source Wizards - Select 
table
+Address Data Source Wizards - Table 

[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - helpcontent2

2018-12-19 Thread Libreoffice Gerrit user
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bb126396ba122e44a00964f61dae82c641b9bb75
Author: Olivier Hallot 
AuthorDate: Tue Dec 11 10:13:22 2018 -0200
Commit: Gerrit Code Review 
CommitDate: Thu Dec 20 01:06:20 2018 +0100

Update git submodules

* Update helpcontent2 from branch 'libreoffice-6-2'
  - Fix contents after translators review

Change-Id: I674796639284397c019240c4cd2ee79adb5b6ec0
Reviewed-on: https://gerrit.libreoffice.org/64960
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 
(cherry picked from commit 1d927d2d9747e320a04aeaf5096d80a6ff6f7fa5)
Reviewed-on: https://gerrit.libreoffice.org/64961
Reviewed-by: Eike Rathke 

diff --git a/helpcontent2 b/helpcontent2
index 5fd548e0f331..3c7795ce8bfe 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 5fd548e0f3312275ce4e8376225fc2734cbb4d0a
+Subproject commit 3c7795ce8bfeecf72bc7d6630bcd9c4d0f08ac28
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 122210] When using the Orca screen reader on the Toolbars, everything is announced as a scroll pane; probably incorrect accessibility attributes being passed to the accessibili

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122210

am_dxer  changed:

   What|Removed |Added

 Blocks||101912


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 101912] [META] Accessibility (a11y) bugs and enhancements

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101912

am_dxer  changed:

   What|Removed |Added

 Depends on||122210


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122210
[Bug 122210] When using the Orca screen reader on the Toolbars, everything is
announced as a scroll pane; probably incorrect accessibility attributes being
passed to the accessibility stack.
-- 
You are receiving this mail because:
You 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 122210] New: When using the Orca screen reader on the Toolbars, everything is announced as a scroll pane; probably incorrect accessibility attributes being passed to the access

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122210

Bug ID: 122210
   Summary: When using the Orca screen reader on the Toolbars,
everything is announced as a scroll pane; probably
incorrect accessibility attributes being passed to the
accessibility stack.
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: am_d...@fastmail.fm

Description:
As the user tabs through the toolbars, scroll pane is announced every time a
new control is focused.

Steps to Reproduce:
1. Run the Orca screen reader and the GTK3 version of Libreoffice.
2. Press F6 twice to focus the toolbar.
3. Press TAb to move between the controls.

Actual Results:
Orca announces scroll pane every time TAb is pressed.

Expected Results:
Announce only the control name.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Version: 6.3.0.0.alpha0+
Build ID: 6dc36d343aeacb3d1e14ec0c847937d63f4e68a7
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

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


[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - sc/source

2018-12-19 Thread Libreoffice Gerrit user
 sc/source/ui/condformat/condformatdlg.cxx |6 ++
 1 file changed, 6 insertions(+)

New commits:
commit 9396cf7edb101983c56f44ae814029ce78f0fc71
Author: Mike Kaganski 
AuthorDate: Tue Dec 4 21:28:46 2018 +0300
Commit: Eike Rathke 
CommitDate: Thu Dec 20 01:01:48 2018 +0100

tdf#117332: select replaced text to properly replace it next time

... othervise the next drag event will insert the new range immediately
after the just inserted, resulting in invalid reference.

Regression after commit 42aece949ec96c775b31216bddd723aa5321e966

  don't replace content of formula field when selecting range, tdf#58635

Change-Id: I7dfdc1ce041ebadf4406dbb605676d87cd489efa
Reviewed-on: https://gerrit.libreoffice.org/64574
Reviewed-by: Mike Kaganski 
Tested-by: Mike Kaganski 
(cherry picked from commit 6c5839d399c6277a7f2f0e214a20996761563525)
Reviewed-on: https://gerrit.libreoffice.org/65027
Tested-by: Jenkins
Reviewed-by: Eike Rathke 

diff --git a/sc/source/ui/condformat/condformatdlg.cxx 
b/sc/source/ui/condformat/condformatdlg.cxx
index 7776ea958f86..1df88cf003cc 100644
--- a/sc/source/ui/condformat/condformatdlg.cxx
+++ b/sc/source/ui/condformat/condformatdlg.cxx
@@ -655,7 +655,13 @@ void ScCondFormatDlg::SetReference(const ScRange& rRef, 
ScDocument*)
 OUString aRefStr(rRef.Format(nFlags, mpViewData->GetDocument(),
 
ScAddress::Details(mpViewData->GetDocument()->GetAddressConvention(), 0, 0)));
 if (pEdit != mpEdRange)
+{
+Selection sel = pEdit->GetSelection();
+sel.Justify();// in case of RtL selection
+sel.Max() = sel.Min() + aRefStr.getLength();
 pEdit->ReplaceSelected(aRefStr);
+pEdit->SetSelection(sel); // to replace it again with next drag 
event
+}
 else
 pEdit->SetRefString( aRefStr );
 updateTitle();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 122209] New: Crash in: OpenGLContext::AcquireFramebuffer(OpenGLTexture const &)

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122209

Bug ID: 122209
   Summary: Crash in:
OpenGLContext::AcquireFramebuffer(OpenGLTexture const
&)
   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: jowi.wil...@gmail.com

This bug was filed from the crash reporting server and is
br-94c0f95c-0a22-4f22-8680-617122d7099f.
=

Opened document, and used the nav-bar up button to navigate to previous page,
caused Writer to crash. 

Previously had problems with the nav-bar being unresponsive and/or delayed
response. Occasionally, repeated clicking of the main bar either above or below
the slider, or by repeated clicking of the up or down arrow, causes the
document to continually scroll indefinately. 

Incidentally I, earlier today, left my PC alone with the document open and came
back to fund the PC shutdown. There was no indication before or after of any
Windows update, but my unsaved changes were lost, along with the recent
document history, and my document dictionary of added words emptied.

-- 
You are receiving this mail because:
You 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 122158] DAY(), MONTH() and YEAR() functions don't handle Gregorian cut-over

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122158

Eike Rathke  changed:

   What|Removed |Added

   Severity|normal  |enhancement

--- Comment #3 from Eike Rathke  ---
So this is actually not a bug. ODFF even states that "evaluators should use a
proleptic Gregorian system (continuing the years backwards as if the calendar
existed in those years)", see
http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part2.html#__RefHeading__1018898_715980110

The problem is that the date serial number of a "date cell" usually is
formatted using a locale specific calendar, or even any specified calendar
available for a locale from the number formatter.

To solve this, we'd need

a) proleptic Gregorian (ISO 8601:2004) calendar date formats, e.g. with an
[~ISO] calendar modifier, for which "ISO" is not yet specified in ODF 19.341
number:calendar but seems possible,
http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part1.html#__RefHeading__1417544_253892949

b) new spreadsheet functions that obtain the calendar used by the number format
of the referenced cell given as argument, or take a parameter to specify the
calendar; such as CALENDARDAY(), CALENDARMONTH() and CALENDARYEAR()

-- 
You are receiving this mail because:
You 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 121726] Emojis cannot be inserted in Sorbian builds

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121726

Adolfo Jayme  changed:

   What|Removed |Added

 Resolution|--- |FIXED
Summary|Emojis cannot be displayed  |Emojis cannot be inserted
   |in Sorbian builds   |in Sorbian builds
   Assignee|libreoffice-b...@lists.free |cl...@documentfoundation.or
   |desktop.org |g
 Status|UNCONFIRMED |RESOLVED

-- 
You are receiving this mail because:
You 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] translations.git: Changes to 'refs/tags/libreoffice-6.2.0.1'

2018-12-19 Thread Libreoffice Gerrit user
Tag 'libreoffice-6.2.0.1' created by Christian Lohmaier 
 at 2018-12-20 00:19 +

Tag libreoffice-6.2.0.1
-BEGIN PGP SIGNATURE-

iQIcBAABAgAGBQJcGuAuAAoJEPQ0oe+v7q6jAoUP/3XYsZHRorGLEAZe5zg4wlv5
NyFLqaPwGLsN1ratVneuUl+8q6pGpoPGHzP5cVDuyCwxTYaZ1/zLNOMNEKiHnFeZ
Cd5rUgpFGCpYsoyVKiBhUcLm5v+gb8yyvFhlJkRjhA/qa9xhMhMjdx08sRidT5hS
VfYiRoCcQ+Pxj44RVWDtTKt1Dh32xof4rSAhvoAzV/QqASv2olfJRimMljIn0FKE
2TcuQr0zwDfgwyWX08RdzY+mMJPR/yaU9WE//RetxGoeozVT72ANK5dEpoELm5eY
POAhEhRkfGkLMfuKvKeb5YLoHj55+pK82LfPYUHo/B+RJTz14DYRBBMvLJX1UOGw
v3neSPMU4UZyX31enAWciaMlKvs2Yn6eRwSMA6gWrKEtXQ/KHIH8511QKNvtfx72
G6T5UVZ5QVvPkfRtPfWpkJcMfpKv4UynQ3cYii9vXc8U/CNfqxyM861+Gdw04qiO
vdEXqn9BYnt0WqF5Pgthz7skXIDLCUBcEb9Lli9natH26vlc7cwkcRAYpJ7cI+Kv
ctwibqYQZxrdnTTwgvOk30pn2E/5NSwGJueOTbvx7e5mj9olR3aAefXpeF71E+Eq
ChWv2msuQT8d72GLhWOQxdbzYariMwcped4/L162/0lxCAflzDr0iho+V9e5oxYm
10DGOlcGAE9Ig1Rq4UGY
=Ho6h
-END PGP SIGNATURE-

Changes since libreoffice-6-2-branch-point-12:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - configure.ac

2018-12-19 Thread Libreoffice Gerrit user
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 051f2a82b0a93251e9c06eaea8999286d9770e66
Author: Christian Lohmaier 
AuthorDate: Thu Dec 20 01:20:56 2018 +0100
Commit: Christian Lohmaier 
CommitDate: Thu Dec 20 01:20:56 2018 +0100

bump product version to 6.2.0.1.0+

Change-Id: I8a8001280b86e4fe2a6b517a02af437cbb27488d

diff --git a/configure.ac b/configure.ac
index 1a5323c1b10b..38b7709fbe1a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[6.2.0.0.beta1+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[6.2.0.1.0+],[],[],[http://documentfoundation.org/])
 
 AC_PREREQ([2.59])
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Changes to 'refs/tags/libreoffice-6.2.0.1'

2018-12-19 Thread Libreoffice Gerrit user
Tag 'libreoffice-6.2.0.1' created by Christian Lohmaier 
 at 2018-12-20 00:20 +

Tag libreoffice-6.2.0.1
-BEGIN PGP SIGNATURE-

iQIcBAABAgAGBQJcGuAwAAoJEPQ0oe+v7q6j9J4P/AgD5muvJSiBK+SlYUOef46F
YK/GRZsYGv4F5/e+xqFQyadivl8hL68fmpGwzxMxDfvMfX47pUpkDJ5SlZ0n/n0r
d7CaeupPSakdaGhGnuqLPAPaET9QEn0AvLMookptVX4Ik1SdYv78tUtN5nnL/+m+
N7YTGEoQ8cJk3EshQQ0PKXMHl0CtEwaSKc/aBdUDpoWjRT78fm75H3enjLOS67V7
KQ0+0fgCwYAQzujwV1Pp6PdVTchV3nXc73QmYXcg7+8kx/ZNZeZo2acpwN8Z+QKR
uLyncPUeth/eua5Eypn7f2823te24bT+ZUTmtcp9Jd8t5ovtRCehgvBbM2N5xd3c
djneYIqjf+H6AnRRj+fH4ZHzZyj+ULxQNODGWDC2AFY9WmVXNc3nPIgUQko5pOdM
eu5i1i77dzViWx6vaVK2fC7CezdQJdl/9R2fsIyLUp5u/pq0IV7ouSMczrdq4sOj
rFNQgw4uJWoX7mSOehwb9SiVQzlNGgeIXR7kt6WN4SadOS/3U29z1wlsUtfKn46S
EvMWkSsjksv2SCEFZV1R4LcvvXkpwz/iMs8Bd9Ezsedp4pAlzoQgKA3l0Slg7uYG
fK9IFm0KPcZTcgPsHGXSHNld4wO7e7I151rxuWzsi9UaMqfX5BI66C8EI8fYbevH
E/12DYFb3FM7R+P0aKKy
=5Quj
-END PGP SIGNATURE-

Changes since libreoffice-6-2-branch-point-776:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: Changes to 'refs/tags/libreoffice-6.2.0.1'

2018-12-19 Thread Libreoffice Gerrit user
Tag 'libreoffice-6.2.0.1' created by Christian Lohmaier 
 at 2018-12-20 00:19 +

Tag libreoffice-6.2.0.1
-BEGIN PGP SIGNATURE-

iQIcBAABAgAGBQJcGuArAAoJEPQ0oe+v7q6jc5kQAJHSKcgmedC2KyxAxkHaqE1h
tWOZtm2srH9vb+1468Ln0L7wEG6st7Te2yMMAT4zjq2FveeHLEYQokc2FcJxt6EI
9nkUnVFcHm+VDaIzpLq3utlvpamwQvFUl0locfIIILoRKZYP5kT13n2wlTsFwVtj
Rp6JI3nuO2CruYZ6VcUvU+IfEhZza/LGWM39FZ/JlPy3Onap7PNQdVQLDs1kQ6Fx
LVsz5mSBBnC15zBZLXlHiti+lnlNtfwtNKvnmcdTgxnfn8fmi0I0KMtpZQc0Hft3
nhlWTN389KCU2ceg7XeHr390FgK7ZMF6wfxZ7HB/9bHc0BpZ9jAWxHUIQNthijXP
eoVSo8Yx++BbMnvEzyM+YPreByMbyGlGRR7y5D4tYM02woLkY60ox2ViLttFW0ja
+5jInklArSpBVluPVoDxTi2XyB669+g92v/0nL6+8HvK076DsbAObnFrCK8CGlZR
mU0sMrjyj22M8hwf0A8wtNs1gPK5rc8FX+a4OjAMGOkYRThGCQgH8FMdguUlaTKD
9q3qxeApRvlJ36sRB/kjCvLV3VhGGg4un6kQdTjoU62jDucItkZeR8UNifYokjjh
FCLvRuXRjaXs33uPsTLP2CR9u4MQPy2UfZZLrNUuYWnlCgBbirAqnY4C+Mnp6bKP
vxRjnYkyvT0CANDc9tyO
=bhHB
-END PGP SIGNATURE-

Changes since libreoffice-6-2-branch-point-28:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/libreoffice-6.2.0.1'

2018-12-19 Thread Libreoffice Gerrit user
Tag 'libreoffice-6.2.0.1' created by Christian Lohmaier 
 at 2018-12-20 00:19 +

Tag libreoffice-6.2.0.1
-BEGIN PGP SIGNATURE-

iQIcBAABAgAGBQJcGuAnAAoJEPQ0oe+v7q6joVQP/19b1IR5g4kX69UPnzpQsmX6
oyT6G64KelTlZGUEuM1g5WqMz+MrGvoXRAu5sAvo7vi0fi0fWQShdWWPh9wWlmhE
8tndqNro3I/aPeHPGyG54pyqN/6BBH+N0xUFGUDbRgxKD0TN890cx7y2sRzTc17g
M8HZTiltcYDoZr/tGcTeiIIW040RY4uCk9g/wX0K2iJLH1GoVbTtgdkoK7y+aKF/
jusz+CHIGJJd4CgJrLOQhMxtcscly3JXOTnMhzxGz+vYbfxqCnlIubwGmy2tHxnn
AjrKbnBcZs0WINz9pss/+bxJsWE910njhJDn9AQw9L9mDPHmCVpczVT1yTqPDwxc
WqCyscQajqWnErCUj0Ixs6f1On1yQ+U8mXsSxVQ01A0+sgB0NJPNUOsEOFm5YNcq
EfTV4Av4W5tLftovuVE7amVuXXYlSmf9lzbFDowvsPlaq43P5rNigiMbV8h2ZcJI
ebp7+GZHlR8N3HD+5MhxheyJwndG+2qZsP8I2867Y53TXcZ++hSyeNMWTp47ce5N
28HSNFfxgy/l4dYy6LhcfXl4DeXX0bD6uodNrkroToYYEW5kUEWDDGFDzPlrvDBo
V2xxGyhpN74oRGfzJokXBlUZ0rPDzbe84aMU/t7SqmTE+ZDS5tWisfUPpVmFBzou
OaVz6XeURzorrcxGgwW4
=jD3l
-END PGP SIGNATURE-

Changes since libreoffice-6-2-branch-point-1:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - vcl/unx

2018-12-19 Thread Libreoffice Gerrit user
 vcl/unx/gtk/gtksalmenu.cxx |   14 +++---
 1 file changed, 11 insertions(+), 3 deletions(-)

New commits:
commit ade817012f88f098ae633538697b9d14962d697c
Author: Caolán McNamara 
AuthorDate: Wed Dec 19 16:23:06 2018 +
Commit: Christian Lohmaier 
CommitDate: Thu Dec 20 00:12:56 2018 +0100

Resolves: tdf#121555 sometime crash on menu hierarchy change

seems menubar gets set to dirty due to some menu activity that needs
a refresh, but then the hierarchy changes and as its already dirty
the maUpdateMenuBarIdle doesn't get launched

the placement of the mbMenuBar test inside the loop through parents
shows some confusion as to what which mbMenuBar might be met, the
one belonging to this, or that of the parent being traversed, but
it does seem to be the one belonging to this.

Change-Id: I0b9dceadf64f7adf18eb1aa2dbda9bbfbcb66e0a
Reviewed-on: https://gerrit.libreoffice.org/65462
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier 

diff --git a/vcl/unx/gtk/gtksalmenu.cxx b/vcl/unx/gtk/gtksalmenu.cxx
index f6f45cf4acad..8329c376eda7 100644
--- a/vcl/unx/gtk/gtksalmenu.cxx
+++ b/vcl/unx/gtk/gtksalmenu.cxx
@@ -226,8 +226,12 @@ void GtkSalMenu::ImplUpdate(bool bRecurse, bool 
bRemoveDisabledEntries)
 if (mbNeedsUpdate)
 {
 mbNeedsUpdate = false;
-if (mbMenuBar)
+if (mbMenuBar && maUpdateMenuBarIdle.IsActive())
+{
 maUpdateMenuBarIdle.Stop();
+maUpdateMenuBarIdle.Invoke();
+return;
+}
 }
 
 Menu* pVCLMenu = mpVCLMenu;
@@ -556,13 +560,17 @@ IMPL_LINK_NOARG(GtkSalMenu, 
MenuBarHierarchyChangeHandler, Timer *, void)
 void GtkSalMenu::SetNeedsUpdate()
 {
 GtkSalMenu* pMenu = this;
+// start that the menu and its parents are in need of an update
+// on the next activation
 while (pMenu && !pMenu->mbNeedsUpdate)
 {
 pMenu->mbNeedsUpdate = true;
-if (mbMenuBar)
-maUpdateMenuBarIdle.Start();
 pMenu = pMenu->mpParentSalMenu;
 }
+// only if a menubar is directly updated do we force in a full
+// structure update
+if (mbMenuBar && !maUpdateMenuBarIdle.IsActive())
+maUpdateMenuBarIdle.Start();
 }
 
 void GtkSalMenu::SetMenuModel(GMenuModel* pMenuModel)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - sw/source

2018-12-19 Thread Libreoffice Gerrit user
 sw/source/core/view/vprint.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit e31e53b627541f4cb674d2d9cdbcd1982c47bc5c
Author: Michael Stahl 
AuthorDate: Wed Dec 19 12:45:20 2018 +0100
Commit: Christian Lohmaier 
CommitDate: Thu Dec 20 00:10:05 2018 +0100

sw: fix assert in SwViewShell::FillPrtDoc()

The point node isn't necessarily the start node; this will assert in
SwTextFrame::MapModelToView: Assertion `SwFrame::GetDep() == pNode' failed
when selecting a table and then File->Print->Print Selection.

Thanks Samuel for the hint.

(regression from 067a53bbcd209d7458b04142f989e1ff7ec1f785)

Change-Id: I7f58b79e068e8b7817261e81f999721ebfcfdcf1
Reviewed-on: https://gerrit.libreoffice.org/65421
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
(cherry picked from commit 6996cddfb8b1aa45c77caf6cdc973b1e548cfe86)
Reviewed-on: https://gerrit.libreoffice.org/65447
Reviewed-by: Christian Lohmaier 

diff --git a/sw/source/core/view/vprint.cxx b/sw/source/core/view/vprint.cxx
index b68ef540b980..faa9ab2ad439 100644
--- a/sw/source/core/view/vprint.cxx
+++ b/sw/source/core/view/vprint.cxx
@@ -358,7 +358,8 @@ void SwViewShell::FillPrtDoc( SwDoc *pPrtDoc, const 
SfxPrinter* pPrt)
 {
 SwShellTableCursor* pShellTableCursor = pFESh->GetTableCursor();
 
-const SwContentNode* pContentNode = 
pShellTableCursor->GetNode().GetContentNode();
+const SwContentNode *const pContentNode =
+pShellTableCursor->Start()->nNode.GetNode().GetContentNode();
 const SwContentFrame *const pContentFrame = pContentNode ? 
pContentNode->getLayoutFrame(GetLayout(), pShellTableCursor->Start()) : nullptr;
 if( pContentFrame )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 122060] Calc: FILESAVE and EDITING very slow with ods file

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122060

Erhard  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #4 from Erhard  ---
If it takes ~10 seconds to get saved in version 6.3.0.0.alpha0, then you have
successfully reproduced the bug, although it seems somewhat faster than in my
case. But such a quite simple spreadsheet and with a size of only 60 kByte
should not take longer than 1-2 sec to save.
Therefore I don't see the point for me to install this alpha-version and
reconfirm the problem myself.
If you want to see the difference: save my uploaded file as xlsx. Then open
that file and try to do the same with that (e.g. do a save or switch to table
"Zusammenfassung"). With this file it's most probably much faster. ods file
should be expected to work at least with the same speed as xlsx.

-- 
You are receiving this mail because:
You 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 82952] Add an option to show the full path in the window title.

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82952

--- Comment #13 from laurencio  ---
I agree this as an option is important and would be very useful.

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


[Libreoffice-ux-advise] [Bug 82952] Add an option to show the full path in the window title.

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82952

--- Comment #13 from laurencio  ---
I agree this as an option is important and would be very useful.

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


[Libreoffice-bugs] [Bug 122116] LibreOffice 6.1.* crashes by recovering file at start over and over on Linux

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122116

--- Comment #18 from Andras  ---
(In reply to Michael Weghorn from comment #17)
I don't want to increase the length of this thread and maybe I don't know or
see something but as I said not the system should get debugging packages
already from .../ubuntu/bionic web address with line:
"deb http://ppa.launchpad.net/libreoffice/libreoffice-prereleases/ubuntu bionic
main"
In short, only "bionic main" ending works, there is no option for "bionic
debug" or "bionic main/debug" etc, correct me if I'm wrong about this. Is it
possible debugging packages are available if you build it (what isn't so simple
for me) or from other direct sources?

-- 
You are receiving this mail because:
You 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 113450] Cannot enter text involving the ALT Gr key in the find and replace dialog box

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113450

Xisco Faulí  changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME

--- Comment #11 from Xisco Faulí  ---
Thanks for retesting with the latest version.
Setting to RESOLVED WORKSFORME as the commit fixing this issue hasn't been
identified.

-- 
You are receiving this mail because:
You 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 122208] Form Controls command are missing in Groupedbar compact

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122208

Pedro  changed:

   What|Removed |Added

 CC||kain...@gmail.com,
   ||vermelhusco1...@gmail.com
   Assignee|libreoffice-b...@lists.free |kain...@gmail.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 122208] Form Controls command are missing in Groupedbar compact

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122208

--- Comment #1 from Pedro  ---
Created attachment 147685
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147685=edit
In Writer, the Standard Toolbar UI (and Single and Sidebar) show Forms in their
own drop-down menu.

In Writer, the Standard Toolbar UI (and Single and Sidebar) show Forms in their
own drop-down menu.

-- 
You are receiving this mail because:
You 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 122208] Form Controls command are missing in Groupedbar compact

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122208

--- Comment #2 from Pedro  ---
Created attachment 147686
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147686=edit
In Calc Form controls can be inserted via the Insert menu

-- 
You are receiving this mail because:
You 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 122208] New: Form Controls command are missing in Groupedbar compact

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122208

Bug ID: 122208
   Summary: Form Controls command are missing in Groupedbar
compact
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: vermelhusco1...@gmail.com

Created attachment 147684
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147684=edit
No Forms are exposed in Groupedbar Compact UI

Currently, the Groupedbar Compact UI does not make Form Controls visible.

Steps to reproduce:
1- Open LO,
2 - Select a module (ex. Writer),
3 - View > User Interface > Groupedbar Compact

Observed result: no Forms are visibe in the UI or in the Insert drop-down menu
like it is seen in Writer in Standard, Single and Sidebar modes.

Expected Results: Forms should have its own drop-down menu OR they should be
included in the Insert drop-down menu.

-- 
You are receiving this mail because:
You 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 99631] DOCX import/export: with embedded XLSX loaded but incorrectly scaled when edit

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99631

László Németh  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You 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 93635] FILEOPEN: Embedded Word file slowly loaded

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93635

László Németh  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You 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 93635] FILEOPEN: Embedded Word file slowly loaded

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93635

László Németh  changed:

   What|Removed |Added

Summary|FILEOPEN: Embedded Word |FILEOPEN: Embedded Word
   |file slowly loaded and  |file slowly loaded
   |incorrectly scaled  |

-- 
You are receiving this mail because:
You 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 93635] FILEOPEN: Embedded Word file slowly loaded and incorrectly scaled

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93635

--- Comment #14 from László Németh  ---
Scaling problem of this issue has been fixed, see Bug 99631.

-- 
You are receiving this mail because:
You 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 122206] FILEOPEN: Opening XML file with XSLT filter opens with plain text import dialogue

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122206

--- Comment #2 from Steve Edmonds  ---
Created attachment 147683
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147683=edit
XSLT filter for import of XML test file.

Import filter to install for importing test XML file

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


[Libreoffice-bugs] [Bug 122206] FILEOPEN: Opening XML file with XSLT filter opens with plain text import dialogue

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122206

Steve Edmonds  changed:

   What|Removed |Added

 CC||st...@edmondsfamily.co.nz

--- Comment #1 from Steve Edmonds  ---
Created attachment 147682
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147682=edit
Test data XML file for import

File to import

-- 
You are receiving this mail because:
You 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 122207] New: The libreoffice 6.2 Beta 1 freezes after the file is opened.

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122207

Bug ID: 122207
   Summary: The libreoffice 6.2 Beta 1 freezes after the file is
opened.
   Product: LibreOffice
   Version: 6.2.0.0.beta1+
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ssser...@yahoo.com

Description:
When I try to open the file that is contained in the following link, the file
opens, then libreoffice freezes. In the meantime, processor usage increases to
50%.

http://ilbap07.meb.gov.tr/meb_iys_dosyalar/2018_10/02095551_TYRKYE.zip

Tested file : "2018-2019  7. Snf Ylk Plan.docx"

System: Debian 9 amd64 KDE

Steps to Reproduce:
1.The error occurs with the process of opening the file.


Actual Results:
LibreOffice freezes.

Expected Results:
Libreoffice's not freezing.


Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

Additional Info:

-- 
You are receiving this mail because:
You 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 99631] DOCX import/export: with embedded XLSX loaded but incorrectly scaled when edit

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99631

László Németh  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 112976] [META] DOCX (OOXML) OLE object-related issues

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112976
Bug 112976 depends on bug 99631, which changed state.

Bug 99631 Summary: DOCX import/export: with embedded XLSX loaded but 
incorrectly scaled when edit
https://bugs.documentfoundation.org/show_bug.cgi?id=99631

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 99631] DOCX import/export: with embedded XLSX loaded but incorrectly scaled when edit

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99631

László Németh  changed:

   What|Removed |Added

Summary|EDITING: DOCX with embedded |DOCX import/export: with
   |XLSX loaded but incorrectly |embedded XLSX loaded but
   |scaled when edit|incorrectly scaled when
   ||edit

-- 
You are receiving this mail because:
You 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 122206] New: FILEOPEN: Opening XML file with XSLT filter opens with plain text import dialogue

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122206

Bug ID: 122206
   Summary: FILEOPEN: Opening XML file with XSLT filter opens with
plain text import dialogue
   Product: LibreOffice
   Version: 6.1.3.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: st...@edmondsfamily.co.nz

Description:
Opening a XML file with File>Open and select my filter and then the XML file I
get the text import dialogue and not a correct import.
A XML file will open correctly with Tools>XML Filter Settings, select filter
and click "Test XSLTs..." 
Problem occurs on Calc 6.1.3.2 and not on Calc 6.0.5.2.

Steps to Reproduce:
1. Install XSLT XML filter
2. Go File>Open
3. Select XML filter above
4. Select XML file

Actual Results:
File opens in Calc

Expected Results:
Text import dialogue opens


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.1.3.2
Build ID: 10(Build:2)
CPU threads: 4; OS: Linux 4.12; UI render: default; VCL: gtk3_kde5; 
Locale: en-NZ (en_GB.UTF-8); Calc: group threaded

-- 
You are receiving this mail because:
You 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 99631] EDITING: DOCX with embedded XLSX loaded but incorrectly scaled when edit

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99631

--- Comment #18 from Commit Notification 
 ---
László Németh committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/fc50869a818f5411bf2bbd34db398078308f2ba3%5E%21

tdf#99631 DOCX export: keep zoom of embedded XLSX

It will be available in 6.3.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://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: sw/qa sw/source

2018-12-19 Thread Libreoffice Gerrit user
 sw/qa/extras/ooxmlexport/data/tdf99631.docx  |binary
 sw/qa/extras/ooxmlexport/ooxmlexport12.cxx   |   15 ++
 sw/source/filter/ww8/docxattributeoutput.cxx |   28 ++-
 3 files changed, 42 insertions(+), 1 deletion(-)

New commits:
commit fc50869a818f5411bf2bbd34db398078308f2ba3
Author: László Németh 
AuthorDate: Wed Dec 19 14:58:38 2018 +0100
Commit: László Németh 
CommitDate: Wed Dec 19 22:37:00 2018 +0100

tdf#99631 DOCX export: keep zoom of embedded XLSX

OLE objects by exporting their VisibleArea settings

Change-Id: Iaedc1901999dd203fc9961a4775f8d2452f3ccda
Reviewed-on: https://gerrit.libreoffice.org/65435
Tested-by: Jenkins
Reviewed-by: László Németh 

diff --git a/sw/qa/extras/ooxmlexport/data/tdf99631.docx 
b/sw/qa/extras/ooxmlexport/data/tdf99631.docx
new file mode 100644
index ..c72950b7240a
Binary files /dev/null and b/sw/qa/extras/ooxmlexport/data/tdf99631.docx differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx
index 547afcd1a399..3e90ed1b4d9d 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx
@@ -921,6 +921,21 @@ DECLARE_OOXMLEXPORT_TEST(testTdf117137, "tdf117137.docx")
 CPPUNIT_ASSERT(xPara3->getPropertyValue("NumberingRules").hasValue());
 }
 
+DECLARE_OOXMLEXPORT_TEST(testTdf99631, "tdf99631.docx")
+{
+xmlDocPtr pXmlDoc = parseExport("word/document.xml");
+if (!pXmlDoc)
+return;
+assertXPath(pXmlDoc, "//w:object", 2);
+assertXPath(pXmlDoc, "/w:document/w:body/w:p[2]/w:r/w:object", 2);
+// first XSLX OLE object (1:1 scale)
+assertXPath(pXmlDoc, "/w:document/w:body/w:p[2]/w:r[1]/w:object[1]", 
"dxaOrig", "2560");
+assertXPath(pXmlDoc, "/w:document/w:body/w:p[2]/w:r[1]/w:object[1]", 
"dyaOrig", "513");
+// second XLSX OLE object (same content + 1 row, but zoomed)
+assertXPath(pXmlDoc, "/w:document/w:body/w:p[2]/w:r[2]/w:object[1]", 
"dxaOrig", "2560");
+assertXPath(pXmlDoc, "/w:document/w:body/w:p[2]/w:r[2]/w:object[1]", 
"dyaOrig", "768");
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index 3791a6a8f7d8..1328a07151cb 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -148,6 +148,8 @@
 #include 
 #include 
 
+#include 
+
 using ::editeng::SvxBorderLine;
 
 using namespace oox;
@@ -5312,7 +5314,31 @@ void DocxAttributeOutput::WriteOLE( SwOLENode& rNode, 
const Size& rSize, const S
 m_rDrawingML.SetFS(m_pSerializer);
 OUString sImageId = m_rDrawingML.WriteImage( *pGraphic );
 
-m_pSerializer->startElementNS( XML_w, XML_object, FSEND );
+if ( sDrawAspect == "Content" )
+{
+awt::Size aSize;
+try
+{
+aSize = xObj->getVisualAreaSize( rNode.GetAspect() );
+
+MapUnit aUnit = VCLUnoHelper::UnoEmbed2VCLMapUnit( 
xObj->getMapUnit( rNode.GetAspect() ) );
+Size aOriginalSize( OutputDevice::LogicToLogic(Size( aSize.Width, 
aSize.Height),
+MapMode(aUnit), 
MapMode(MapUnit::MapTwip)));
+
+m_pSerializer->startElementNS( XML_w, XML_object,
+   FSNS(XML_w, XML_dxaOrig), 
OString::number(aOriginalSize.Width()),
+   FSNS(XML_w, XML_dyaOrig), 
OString::number(aOriginalSize.Height()),
+   FSEND );
+}
+catch ( uno::Exception& )
+{
+m_pSerializer->startElementNS( XML_w, XML_object, FSEND );
+}
+}
+else
+{
+m_pSerializer->startElementNS( XML_w, XML_object, FSEND );
+}
 
 OStringBuffer sShapeStyle, sShapeId;
 sShapeStyle.append( "width:" ).append( double( rSize.Width() ) / 20 )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: source/text

2018-12-19 Thread Libreoffice Gerrit user
 source/text/scalc/01/12120300.xhp|   13 +
 source/text/scalc/guide/validity.xhp |5 ++---
 2 files changed, 11 insertions(+), 7 deletions(-)

New commits:
commit e291fe7c170e994bd3cd340d86021cab9382d0a1
Author: Olivier Hallot 
AuthorDate: Wed Dec 19 15:40:52 2018 -0200
Commit: Olivier Hallot 
CommitDate: Wed Dec 19 22:31:54 2018 +0100

Fix code formatting in validity help pages

Change-Id: I9b0558bb805512c98223eaf2305d37861e10c82c
Reviewed-on: https://gerrit.libreoffice.org/65458
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/scalc/01/12120300.xhp 
b/source/text/scalc/01/12120300.xhp
index 27358b957..771c03cc5 100644
--- a/source/text/scalc/01/12120300.xhp
+++ b/source/text/scalc/01/12120300.xhp
@@ -58,10 +58,15 @@
 Error 
message
 Enter the message that you 
want to display when invalid data is entered in a cell.
 
-
-Sample macro:
-
-Function ExampleValidity(CellValue as String, TableCell as 
String)Dim msg as stringmsg = "Invalid value: "  "'"  
CellValue  "'"msg = msg  " in table: "  "'"  TableCell 
 "'"MsgBox msg ,16,"Error message"End Function
+Sample macro:
+
+Function ExampleValidity(CellValue as String, TableCell as 
String)
+Dim msg as string
+msg = "Invalid value: "  "'"  CellValue  
"'"
+msg = msg  " in table: "  "'"  TableCell 
 "'"
+MsgBox msg ,16,"Error message"
+End Function
+
 
 
 
diff --git a/source/text/scalc/guide/validity.xhp 
b/source/text/scalc/guide/validity.xhp
index 979086778..76d5eb8ec 100644
--- a/source/text/scalc/guide/validity.xhp
+++ b/source/text/scalc/guide/validity.xhp
@@ -19,7 +19,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  -->
 
-   
+
 
 
 
@@ -84,8 +84,7 @@
 If you select 
"Macro", then by using the Browse button you can specify a macro 
to be run in the event of an error.
 
 
-To display the 
error message, select Show error message when invalid values are 
entered. 
-
+To display the 
error message, select Show error message when invalid values are 
entered.
 After changing the 
action for a cell on the Error Alert tab page and closing the 
dialog with OK, you must first select another cell before the change takes 
effect.
 
 Data - 
Validity
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2018-12-19 Thread Libreoffice Gerrit user
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3c96e9972e7a9c377d59c726dff011f313ac16f8
Author: Olivier Hallot 
AuthorDate: Wed Dec 19 15:40:52 2018 -0200
Commit: Gerrit Code Review 
CommitDate: Wed Dec 19 22:31:54 2018 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  - Fix code formatting in validity help pages

Change-Id: I9b0558bb805512c98223eaf2305d37861e10c82c
Reviewed-on: https://gerrit.libreoffice.org/65458
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index de6fdf71fa17..e291fe7c170e 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit de6fdf71fa1712558c6f2b41bb0dbecb16195597
+Subproject commit e291fe7c170e994bd3cd340d86021cab9382d0a1
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114141] FILESAVE XLSX 0 Y value data series are not supported by Calc

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114141

--- Comment #4 from László Németh  ---
initial fix by József Szakács: https://gerrit.libreoffice.org/#/c/65269/

It seems, this is really not a bug. We need the recent behavior, too, for
example:

https://www.excelforum.com/excel-charting-and-pivots/955495-help-hiding-zero-value-bars-in-stacked-3d-bar-chart.html

So we will need a new LibreOffice chart option or setting to support both ways
of data visualization.

-- 
You are receiving this mail because:
You 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 122116] LibreOffice 6.1.* crashes by recovering file at start over and over on Linux

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122116

--- Comment #17 from Michael Weghorn  ---
A backtrace with symbols installed would actually be good.

(In reply to Andras from comment #16)
> This is the source I use currently, exactly how is appears in my sources
> list:
> deb http://ppa.launchpad.net/libreoffice/libreoffice-prereleases/ubuntu
> bionic main
> It should contain the debug library too, isn't it?

As far as I can see, you probably have to add

deb http://ppa.launchpad.net/libreoffice/libreoffice-prereleases/ubuntu bionic
main/debug

in addition and install the debug packages from there, called like the "normal"
packages with a "-dbgsym" suffix added (e.g. 'libreoffice-writer-dbgsym',
'libreoffice-core-dbgsym', etc.).

-- 
You are receiving this mail because:
You 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 116654] GTK3: hourglass icon is missing in slideshow (bottom left corner)

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116654

--- Comment #5 from Caolán McNamara  ---
This thing is apparently the slideshow "WaitSymbolBitmap"

-- 
You are receiving this mail because:
You 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 103182] [META] GTK3-specific bugs

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103182
Bug 103182 depends on bug 121555, which changed state.

Bug 121555 Summary: GTK3: Crash displaying menus with new elements
https://bugs.documentfoundation.org/show_bug.cgi?id=121555

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 117761] Snake Algorithm unable to display accurate layout.

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117761

--- Comment #5 from Commit Notification 
 ---
Miklos Vajna committed a patch related to this issue.
It has been pushed to "libreoffice-6-1":

https://git.libreoffice.org/core/+/73cc724dc35551ea349b3da0c4ecd6cba2fdd0ae%5E%21

Related: tdf#117761 oox smartart: backport fixes related to process types

It will be available in 6.1.5.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://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 117761] Snake Algorithm unable to display accurate layout.

2018-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117761

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.2.0 target:6.1.4   |target:6.2.0 target:6.1.4
   ||target:6.1.5

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


[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - connectivity/source

2018-12-19 Thread Libreoffice Gerrit user
 connectivity/source/drivers/postgresql/pq_preparedstatement.cxx |4 
 connectivity/source/drivers/postgresql/pq_statement.cxx |9 
+
 2 files changed, 13 insertions(+)

New commits:
commit 2f793336df474740ca5fb0703ae1f7d5febdbff4
Author: Lionel Elie Mamane 
AuthorDate: Tue Dec 18 22:04:18 2018 +0100
Commit: Caolán McNamara 
CommitDate: Wed Dec 19 22:10:44 2018 +0100

postgresql: correctly implement XMultipleResults interface

note that we implement it in a very limited way, since we will always
return only a single result.

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

diff --git a/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx 
b/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx
index 865222cbcc83..a976d7e3dfc4 100644
--- a/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx
+++ b/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx
@@ -741,6 +741,10 @@ sal_Int32 PreparedStatement::getUpdateCount(  )
 }
 sal_Bool PreparedStatement::getMoreResults(  )
 {
+Reference< XCloseable > lastResultSet = m_lastResultset;
+if( lastResultSet.is() )
+lastResultSet->close();
+m_multipleResultUpdateCount = -1;
 return false;
 }
 
diff --git a/connectivity/source/drivers/postgresql/pq_statement.cxx 
b/connectivity/source/drivers/postgresql/pq_statement.cxx
index 17276c94925f..d7357d2fa8fe 100644
--- a/connectivity/source/drivers/postgresql/pq_statement.cxx
+++ b/connectivity/source/drivers/postgresql/pq_statement.cxx
@@ -938,6 +938,15 @@ sal_Int32 Statement::getUpdateCount(  )
 
 sal_Bool Statement::getMoreResults(  )
 {
+// The PostgreSQL C interface always returns a single result,
+// so we will never have multiple ones.
+// Implicitly close the open resultset (if any) as per spec,
+// and setup to signal "no more result, neither as resultset,
+// nor as update count".
+Reference< XCloseable > lastResultSetHolder = m_lastResultset;
+if( lastResultSetHolder.is() )
+lastResultSetHolder->close();
+m_multipleResultUpdateCount = -1;
 return false;
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - include/oox oox/source sd/qa

2018-12-19 Thread Libreoffice Gerrit user
 include/oox/drawingml/shape.hxx |   14 
 oox/source/drawingml/diagram/diagramlayoutatoms.cxx |  176 ++--
 oox/source/drawingml/diagram/diagramlayoutatoms.hxx |9 
 oox/source/drawingml/diagram/layoutatomvisitors.cxx |   48 +++
 oox/source/drawingml/diagram/layoutatomvisitors.hxx |2 
 oox/source/drawingml/diagram/layoutnodecontext.cxx  |2 
 oox/source/drawingml/shape.cxx  |2 
 sd/qa/unit/data/pptx/smartart-accent-process.pptx   |binary
 sd/qa/unit/data/pptx/smartart-continuous-block-process.pptx |binary
 sd/qa/unit/import-tests-smartart.cxx|  126 
 10 files changed, 352 insertions(+), 27 deletions(-)

New commits:
commit 73cc724dc35551ea349b3da0c4ecd6cba2fdd0ae
Author: Miklos Vajna 
AuthorDate: Tue Nov 13 18:00:50 2018 +0100
Commit: Caolán McNamara 
CommitDate: Wed Dec 19 22:09:44 2018 +0100

Related: tdf#117761 oox smartart: backport fixes related to process types

This is a combination of 9 commits.

This is the 1st commit:

oox smartart, accent process: add support for reading values from 
constraints

(cherry picked from commit b389aafee9cfba9dc4dfa552347be39ff9fe41b2)

This is the commit #2:

oox smartart, accent process: add support for zorder offsets

(cherry picked from commit cd348a6244a092c251a8e1362cd78de562d7bef6)

This is the commit #3:

oox smartart, accent process: fix overlapping shape pairs

(cherry picked from commit 67e062aa5e5946d4985921fe2b6f87766f363ddc)

This is the commit #4:

oox smartart, accent process: handle multiple runs from a data point

(cherry picked from commit cfa76f538a44d4396574ece59e8a3953c22c6eb7)

This is the commit #5:

oox smartart, accent process: handle followSib axis of forEach

(cherry picked from commit aedc5427e4b6645ff3257e523c33190cf5e1934d)

This is the commit #6:

oox smartart, accent process: handle connector shape between pairs

(cherry picked from commit 7f66a34099974b5c6d70af4ae3c17e4f001a)

This is the commit #7:

oox smartart, accent process: adjust size of connector from constraints

(cherry picked from commit ddc2786831367577967e806d603f337a2e42806a)

This is the commit #8:

oox smartart, continuous block process: read space width from constraint

(cherry picked from commit ee6787fc5597b7f730c4ee3a1f2a1b261d0a5644)

Conflicts:
oox/source/drawingml/diagram/diagramlayoutatoms.cxx

This is the commit #9:

oox smartart, accent process: fix missing bullets and large para indent

(cherry picked from commit 6277a767f33bb5327408dafff2fed199087e938d)

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

diff --git a/include/oox/drawingml/shape.hxx b/include/oox/drawingml/shape.hxx
index 6028a11c2bc0..e04a58beb4a6 100644
--- a/include/oox/drawingml/shape.hxx
+++ b/include/oox/drawingml/shape.hxx
@@ -214,6 +214,14 @@ public:
 const LinkedTxbxAttr& getLinkedTxbxAttributes() { return 
maLinkedTxbxAttr; };
 boolisLinkedTxbx() { return mbHasLinkedTxbx; };
 
+void setZOrder(sal_Int32 nZOrder) { mnZOrder = nZOrder; }
+
+sal_Int32 getZOrder() const { return mnZOrder; }
+
+void setZOrderOff(sal_Int32 nZOrderOff) { mnZOrderOff = nZOrderOff; }
+
+sal_Int32 getZOrderOff() const { return mnZOrderOff; }
+
 protected:
 
 css::uno::Reference< css::drawing::XShape > const &
@@ -327,6 +335,12 @@ private:
 boolmbHasLinkedTxbx; // this text box has 
linked text box ?
 
 css::uno::Sequence maDiagramDoms;
+
+/// Z-Order.
+sal_Int32 mnZOrder = 0;
+
+/// Z-Order offset.
+sal_Int32 mnZOrderOff = 0;
 };
 
 } }
diff --git a/oox/source/drawingml/diagram/diagramlayoutatoms.cxx 
b/oox/source/drawingml/diagram/diagramlayoutatoms.cxx
index c1aaf6e07025..502470933e8f 100644
--- a/oox/source/drawingml/diagram/diagramlayoutatoms.cxx
+++ b/oox/source/drawingml/diagram/diagramlayoutatoms.cxx
@@ -54,6 +54,50 @@ oox::OptValue findProperty(const 
oox::drawingml::LayoutPropertyMap& r
 
 return oRet;
 }
+
+/**
+ * Determines if nUnit is a font unit (measured in points) or not (measured in
+ * millimeters).
+ */
+bool isFontUnit(sal_Int32 nUnit)
+{
+return nUnit == oox::XML_primFontSz || nUnit == oox::XML_secFontSz;
+}
+
+/// Determines the connector shape type from a linear alg.
+sal_Int32 getConnectorType(const oox::drawingml::LayoutNode* pNode)
+{
+sal_Int32 nType = oox::XML_rightArrow;
+
+if (!pNode)
+return nType;
+
+for (const auto& pChild : pNode->getChildren())
+{
+auto pAlgAtom = 

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

2018-12-19 Thread Libreoffice Gerrit user
 vcl/unx/gtk/gtksalmenu.cxx |   14 +++---
 1 file changed, 11 insertions(+), 3 deletions(-)

New commits:
commit 3bedbfd9b3cee5a8d2da6ee0486859bd725979ba
Author: Caolán McNamara 
AuthorDate: Wed Dec 19 16:23:06 2018 +
Commit: Caolán McNamara 
CommitDate: Wed Dec 19 22:08:00 2018 +0100

Resolves: tdf#121555 sometime crash on menu hierarchy change

seems menubar gets set to dirty due to some menu activity that needs
a refresh, but then the hierarchy changes and as its already dirty
the maUpdateMenuBarIdle doesn't get launched

the placement of the mbMenuBar test inside the loop through parents
shows some confusion as to what which mbMenuBar might be met, the
one belonging to this, or that of the parent being traversed, but
it does seem to be the one belonging to this.

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

diff --git a/vcl/unx/gtk/gtksalmenu.cxx b/vcl/unx/gtk/gtksalmenu.cxx
index f6f45cf4acad..8329c376eda7 100644
--- a/vcl/unx/gtk/gtksalmenu.cxx
+++ b/vcl/unx/gtk/gtksalmenu.cxx
@@ -226,8 +226,12 @@ void GtkSalMenu::ImplUpdate(bool bRecurse, bool 
bRemoveDisabledEntries)
 if (mbNeedsUpdate)
 {
 mbNeedsUpdate = false;
-if (mbMenuBar)
+if (mbMenuBar && maUpdateMenuBarIdle.IsActive())
+{
 maUpdateMenuBarIdle.Stop();
+maUpdateMenuBarIdle.Invoke();
+return;
+}
 }
 
 Menu* pVCLMenu = mpVCLMenu;
@@ -556,13 +560,17 @@ IMPL_LINK_NOARG(GtkSalMenu, 
MenuBarHierarchyChangeHandler, Timer *, void)
 void GtkSalMenu::SetNeedsUpdate()
 {
 GtkSalMenu* pMenu = this;
+// start that the menu and its parents are in need of an update
+// on the next activation
 while (pMenu && !pMenu->mbNeedsUpdate)
 {
 pMenu->mbNeedsUpdate = true;
-if (mbMenuBar)
-maUpdateMenuBarIdle.Start();
 pMenu = pMenu->mpParentSalMenu;
 }
+// only if a menubar is directly updated do we force in a full
+// structure update
+if (mbMenuBar && !maUpdateMenuBarIdle.IsActive())
+maUpdateMenuBarIdle.Start();
 }
 
 void GtkSalMenu::SetMenuModel(GMenuModel* pMenuModel)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - sw/source

2018-12-19 Thread Libreoffice Gerrit user
 sw/source/ui/index/cnttab.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit ea21a1d76ee02b29ca9d77cbdb4f5b2b3344ea11
Author: Caolán McNamara 
AuthorDate: Tue Dec 18 15:51:55 2018 +
Commit: Caolán McNamara 
CommitDate: Wed Dec 19 22:07:46 2018 +0100

fallback to first entry

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

diff --git a/sw/source/ui/index/cnttab.cxx b/sw/source/ui/index/cnttab.cxx
index cb073ff86353..0a1e338a27c9 100644
--- a/sw/source/ui/index/cnttab.cxx
+++ b/sw/source/ui/index/cnttab.cxx
@@ -997,6 +997,8 @@ void SwTOXSelectTabPage::ApplyTOXDescription()
 if (nIndex != -1)
 m_xCaptionSequenceLB->set_active(nIndex);
 
m_xDisplayTypeLB->set_active(static_cast(rDesc.GetCaptionDisplay()));
+if (m_xDisplayTypeLB->get_active() == -1)
+m_xDisplayTypeLB->set_active(0);
 RadioButtonHdl(*m_xFromCaptionsRB);
 
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


  1   2   3   4   5   >