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

2019-12-20 Thread Noel Grandin (via logerrit)
 vcl/source/gdi/bitmap3.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 817b6e6f97ed50d28b1ff37db8357d37b505
Author: Noel Grandin 
AuthorDate: Fri Dec 20 09:02:52 2019 +0200
Commit: Noel Grandin 
CommitDate: Sat Dec 21 08:56:17 2019 +0100

improve warning message

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

diff --git a/vcl/source/gdi/bitmap3.cxx b/vcl/source/gdi/bitmap3.cxx
index 87f858de7732..68d590bc6eeb 100644
--- a/vcl/source/gdi/bitmap3.cxx
+++ b/vcl/source/gdi/bitmap3.cxx
@@ -886,7 +886,7 @@ void Bitmap::AdaptBitCount(Bitmap& rNew) const
 }
 default:
 {
-OSL_ENSURE(false, "BitDepth adaptation failed (!)");
+SAL_WARN("vcl", "BitDepth adaptation failed, from " << 
rNew.GetBitCount() << " to " << GetBitCount());
 break;
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2019-12-20 Thread Noel Grandin (via logerrit)
 xmloff/source/text/XMLSectionSourceImportContext.cxx |   52 +--
 xmloff/source/text/XMLSectionSourceImportContext.hxx |6 +-
 2 files changed, 18 insertions(+), 40 deletions(-)

New commits:
commit ccdcc25a085299bda45bc5ea4b3594e856f2d315
Author: Noel Grandin 
AuthorDate: Fri Dec 20 15:12:15 2019 +0200
Commit: Noel Grandin 
CommitDate: Sat Dec 21 08:29:31 2019 +0100

convert XMLSectionSourceImportContext to FastParser APIs

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

diff --git a/xmloff/source/text/XMLSectionSourceImportContext.cxx 
b/xmloff/source/text/XMLSectionSourceImportContext.cxx
index 2ae4e671f7c0..82e01979ab0c 100644
--- a/xmloff/source/text/XMLSectionSourceImportContext.cxx
+++ b/xmloff/source/text/XMLSectionSourceImportContext.cxx
@@ -32,6 +32,7 @@
 using ::com::sun::star::beans::XPropertySet;
 using ::com::sun::star::uno::Reference;
 using ::com::sun::star::xml::sax::XAttributeList;
+using ::com::sun::star::xml::sax::XFastAttributeList;
 
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::text;
@@ -52,54 +53,31 @@ 
XMLSectionSourceImportContext::~XMLSectionSourceImportContext()
 {
 }
 
-namespace {
-enum XMLSectionSourceToken
-{
-XML_TOK_SECTION_XLINK_HREF,
-XML_TOK_SECTION_TEXT_FILTER_NAME,
-XML_TOK_SECTION_TEXT_SECTION_NAME
-};
-
-}
-
-static const SvXMLTokenMapEntry aSectionSourceTokenMap[] =
-{
-{ XML_NAMESPACE_XLINK, XML_HREF, XML_TOK_SECTION_XLINK_HREF },
-{ XML_NAMESPACE_TEXT, XML_FILTER_NAME, XML_TOK_SECTION_TEXT_FILTER_NAME },
-{ XML_NAMESPACE_TEXT, XML_SECTION_NAME,
-XML_TOK_SECTION_TEXT_SECTION_NAME },
-XML_TOKEN_MAP_END
-};
-
 
-void XMLSectionSourceImportContext::StartElement(
-const Reference & xAttrList)
+void XMLSectionSourceImportContext::startFastElement(sal_Int32 /*nElement*/,
+const Reference & xAttrList)
 {
-static const SvXMLTokenMap aTokenMap(aSectionSourceTokenMap);
 OUString sURL;
 OUString sFilterName;
 OUString sSectionName;
 
-sal_Int16 nLength = xAttrList->getLength();
-for(sal_Int16 nAttr = 0; nAttr < nLength; nAttr++)
-{
-OUString sLocalName;
-sal_uInt16 nPrefix = GetImport().GetNamespaceMap().
-GetKeyByAttrName( xAttrList->getNameByIndex(nAttr),
-   );
+sax_fastparser::FastAttributeList *pAttribList =
+sax_fastparser::FastAttributeList::castToFastAttributeList( 
xAttrList );
 
-switch (aTokenMap.Get(nPrefix, sLocalName))
+for (auto  : *pAttribList)
+{
+switch (aIter.getToken())
 {
-case XML_TOK_SECTION_XLINK_HREF:
-sURL = xAttrList->getValueByIndex(nAttr);
+case XML_ELEMENT(XLINK, XML_HREF):
+sURL = aIter.toString();
 break;
 
-case XML_TOK_SECTION_TEXT_FILTER_NAME:
-sFilterName = xAttrList->getValueByIndex(nAttr);
+case XML_ELEMENT(TEXT, XML_FILTER_NAME):
+sFilterName = aIter.toString();
 break;
 
-case XML_TOK_SECTION_TEXT_SECTION_NAME:
-sSectionName = xAttrList->getValueByIndex(nAttr);
+case XML_ELEMENT(TEXT, XML_SECTION_NAME):
+sSectionName = aIter.toString();
 break;
 
 default:
@@ -127,7 +105,7 @@ void XMLSectionSourceImportContext::StartElement(
 }
 }
 
-void XMLSectionSourceImportContext::EndElement()
+void XMLSectionSourceImportContext::endFastElement(sal_Int32 /*nElement*/)
 {
 // this space intentionally left blank.
 }
diff --git a/xmloff/source/text/XMLSectionSourceImportContext.hxx 
b/xmloff/source/text/XMLSectionSourceImportContext.hxx
index 865e9753ff6f..838375ff7e78 100644
--- a/xmloff/source/text/XMLSectionSourceImportContext.hxx
+++ b/xmloff/source/text/XMLSectionSourceImportContext.hxx
@@ -45,10 +45,10 @@ public:
 
 protected:
 
-virtual void StartElement(
-const css::uno::Reference & xAttrList) 
override;
+virtual void SAL_CALL startFastElement(sal_Int32 nElement,
+const css::uno::Reference & 
xAttrList) override;
 
-virtual void EndElement() override;
+virtual void SAL_CALL endFastElement(sal_Int32 nElement) override;
 };
 
 #endif
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: include/xmloff sc/source xmloff/source

2019-12-20 Thread Noel Grandin (via logerrit)
 include/xmloff/xmlstyle.hxx |4 --
 sc/source/filter/xml/XMLTrackedChangesContext.cxx   |   20 --
 xmloff/source/core/DocumentSettingsContext.cxx  |   11 
 xmloff/source/style/xmlnumfi.cxx|   22 
 xmloff/source/style/xmlstyle.cxx|7 -
 xmloff/source/style/xmltabi.cxx |   12 
 xmloff/source/text/XMLSectionSourceDDEImportContext.cxx |9 --
 xmloff/source/text/XMLSectionSourceDDEImportContext.hxx |5 ---
 xmloff/source/text/XMLSectionSourceImportContext.cxx|9 --
 xmloff/source/text/XMLSectionSourceImportContext.hxx|5 ---
 10 files changed, 104 deletions(-)

New commits:
commit a445b24d1eef6b81db962894d4c3990e1067f4ad
Author: Noel Grandin 
AuthorDate: Fri Dec 20 14:35:44 2019 +0200
Commit: Noel Grandin 
CommitDate: Sat Dec 21 08:25:23 2019 +0100

remove unnecessary CreateChildContext methods

that do the same as the base class method

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

diff --git a/include/xmloff/xmlstyle.hxx b/include/xmloff/xmlstyle.hxx
index bf0e77098ced..a18070f6a747 100644
--- a/include/xmloff/xmlstyle.hxx
+++ b/include/xmloff/xmlstyle.hxx
@@ -99,10 +99,6 @@ public:
 
 virtual ~SvXMLStyleContext() override;
 
-virtual SvXMLImportContextRef CreateChildContext( sal_uInt16 nPrefix,
-const OUString& rLocalName,
-const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList 
) override;
-
 virtual void StartElement(
 const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList 
) override;
 
diff --git a/sc/source/filter/xml/XMLTrackedChangesContext.cxx 
b/sc/source/filter/xml/XMLTrackedChangesContext.cxx
index 2b0e2afa0171..4374f90362e3 100644
--- a/sc/source/filter/xml/XMLTrackedChangesContext.cxx
+++ b/sc/source/filter/xml/XMLTrackedChangesContext.cxx
@@ -266,9 +266,6 @@ public:
   const 
css::uno::Reference& xAttrList,
   ScXMLChangeTrackingImportHelper* 
pChangeTrackingImportHelper);
 
-virtual SvXMLImportContextRef CreateChildContext( sal_uInt16 nPrefix,
-const OUString& rLocalName,
-const 
css::uno::Reference& xAttrList ) override;
 virtual void EndElement() override;
 };
 
@@ -279,9 +276,6 @@ public:
   const 
css::uno::Reference& xAttrList,
   ScXMLChangeTrackingImportHelper* 
pChangeTrackingImportHelper);
 
-virtual SvXMLImportContextRef CreateChildContext( sal_uInt16 nPrefix,
-const OUString& rLocalName,
-const 
css::uno::Reference& xAttrList ) override;
 virtual void EndElement() override;
 };
 
@@ -1183,13 +1177,6 @@ 
ScXMLInsertionCutOffContext::ScXMLInsertionCutOffContext( ScXMLImport& rImport,
 pChangeTrackingImportHelper->SetInsertionCutOff(nID, nPosition);
 }
 
-SvXMLImportContextRef ScXMLInsertionCutOffContext::CreateChildContext( 
sal_uInt16 nPrefix,
- const OUString& rLocalName,
- const 
css::uno::Reference& /* xAttrList */ )
-{
-return new SvXMLImportContext( GetImport(), nPrefix, rLocalName );
-}
-
 void ScXMLInsertionCutOffContext::EndElement()
 {
 }
@@ -1241,13 +1228,6 @@ ScXMLMovementCutOffContext::ScXMLMovementCutOffContext( 
ScXMLImport& rImport,
 pChangeTrackingImportHelper->AddMoveCutOff(nID, nStartPosition, 
nEndPosition);
 }
 
-SvXMLImportContextRef ScXMLMovementCutOffContext::CreateChildContext( 
sal_uInt16 nPrefix,
- const OUString& rLocalName,
- const 
css::uno::Reference& /* xAttrList */ )
-{
-return new SvXMLImportContext( GetImport(), nPrefix, rLocalName );
-}
-
 void ScXMLMovementCutOffContext::EndElement()
 {
 }
diff --git a/xmloff/source/core/DocumentSettingsContext.cxx 
b/xmloff/source/core/DocumentSettingsContext.cxx
index 087bf2d34b4b..13bb5e1214db 100644
--- a/xmloff/source/core/DocumentSettingsContext.cxx
+++ b/xmloff/source/core/DocumentSettingsContext.cxx
@@ -152,9 +152,6 @@ public:
 const OUString& rItemName,
 XMLConfigBaseContext* pBaseContext);
 
-virtual SvXMLImportContextRef CreateChildContext( sal_uInt16 nPrefix,
-const OUString& rLocalName,
-const css::uno::Reference< 
css::xml::sax::XAttributeList>& xAttrList ) override;
 virtual void Characters( const 

[Libreoffice-bugs] [Bug 129485] Data Range and #headers: Err: 504

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129485

guichard.adr...@gmail.com changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|NEEDINFO|RESOLVED

--- Comment #3 from guichard.adr...@gmail.com ---
The bug is somewhere else in the XLSX file, I could obtain good results
changing:
=MATCH(Tab1[#headers],Tab2[#headers],0)
in
=MATCH(Tab1[[#headers]],Tab2[[#headers]],0)

Thanks for your time, I close this bug as INVALID.

-- 
You are receiving this mail because:
You 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 129534] LibreOffice 6.3.3 Win_x64 will not install to D: drive

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129534

Julien Nabet  changed:

   What|Removed |Added

Version|3.3.0 release   |6.3.3.2 release

-- 
You are receiving this mail because:
You 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 129429] First line Freeze does not work

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129429

Julien Nabet  changed:

   What|Removed |Added

 Status|REOPENED|NEEDINFO

--- Comment #4 from Julien Nabet  ---
Several things:
- I'm not an employee and you're not a customer, so calm down and be more
respectful
- I didn't close your bug but just put NEEDINFO, so don't put REOPENED
- "LTS" is indicated by Ubuntu not by LO so I could have told you "I don't
care, talk with Ubuntu"
- yes 6.0 is EOL, see https://wiki.documentfoundation.org/ReleasePlan/6.0
like 6.1
https://wiki.documentfoundation.org/ReleasePlan/6.1
and 6.2
https://wiki.documentfoundation.org/ReleasePlan/6.2
- if you use Ubuntu and above all LTS, you should know about backports and ppa
so you can try LO ppa (see
https://launchpad.net/~libreoffice/+archive/ubuntu/ppa)

-- 
You are receiving this mail because:
You 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 61189] PDF printing mode problem: HP LaserJet + media type + no tray + user prompt (refer comment #10)

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61189

--- Comment #53 from jone pena  ---
Shell shockers io is one among the simplest free multiplayer action shooting
game.
 the sport is sort of big to explore after the invention of certain infinite
energy
 from a far planet you want to fight to require control of it 
shell shockers io unblocked and also defend egg so it won’t be cracked by the
opponents.
http://www.shellshockersiounblocked.com

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


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

2019-12-20 Thread Mike Kaganski (via logerrit)
 basic/inc/sbxbase.hxx  |4 
 basic/source/classes/errobject.cxx |   12 ++--
 2 files changed, 14 insertions(+), 2 deletions(-)

New commits:
commit 3ebf6a090b227c0097ff8668fe023e7bdbdadc5d
Author: Mike Kaganski 
AuthorDate: Fri Dec 20 12:49:04 2019 +0300
Commit: Mike Kaganski 
CommitDate: Sat Dec 21 08:12:38 2019 +0100

Avoid crash in shutdown when accessing already destroyed BASIC_DLL

... as seen in 
https://ci.libreoffice.org/job/gerrit_linux_gcc_release/48425/console

The problem was that SbxErrObject::getErrObject created a static object
which called GetSbxData_Impl() in its destructor, which in turn accessed
BASIC_DLL, which was invalidated by deleting BasicDLL objects either in
SfxApplication::~SfxApplication or in MacroSnippet::~MacroSnippet, thus
already invalid when static was destroyed.

So fix this by creating the global error object in the SbxAppData, not
as function-local static, so that its lifetime is limited to the data.

The crash happened also on Windows, but was somehow masked (possibly by
custom error handler?), with this call stack:


sblo.dll!std::unique_ptr>::operator*()
 Line 1886
at C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\memory(1886)
sblo.dll!GetSbxData_Impl() Line 110
at C:\lo\src\core\basic\source\runtime\basrdll.cxx(110)
sblo.dll!SbxBase::GetError() Line 96
at C:\lo\src\core\basic\source\sbx\sbxbase.cxx(96)
sblo.dll!SbxValue::Put(const SbxValues & rVal) Line 414
at C:\lo\src\core\basic\source\sbx\sbxvalue.cxx(414)
sblo.dll!SbxValue::Clear() Line 179
at C:\lo\src\core\basic\source\sbx\sbxvalue.cxx(179)
sblo.dll!SbxValue::~SbxValue() Line 139
at C:\lo\src\core\basic\source\sbx\sbxvalue.cxx(139)
sblo.dll!SbxVariable::~SbxVariable() Line 125
at C:\lo\src\core\basic\source\sbx\sbxvar.cxx(125)
sblo.dll!SbxProperty::~SbxProperty() Line 861
at C:\lo\src\core\basic\source\sbx\sbxobj.cxx(861)
sblo.dll!SbUnoProperty::~SbUnoProperty() Line 2591
at C:\lo\src\core\basic\source\classes\sbunoobj.cxx(2591)
sblo.dll!SbUnoProperty::`vbase destructor'()
sblo.dll!SbUnoProperty::`scalar deleting destructor'(unsigned int)
tllo.dll!SvRefBase::ReleaseRef() Line 163
at C:\lo\src\core\include\tools\ref.hxx(163)
sblo.dll!tools::SvRef::~SvRef() Line 56
at C:\lo\src\core\include\tools\ref.hxx(56)
sblo.dll!SbxVarEntry::~SbxVarEntry()
sblo.dll!SbxVarEntry::`scalar deleting destructor'(unsigned int)

sblo.dll!std::_Default_allocator_traits>::destroy(std::allocator
 & __formal, SbxVarEntry * const _Ptr) Line 677
at C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory(677)
sblo.dll!std::_Destroy_range>(SbxVarEntry * 
_First, SbxVarEntry * const _Last, std::allocator & _Al) Line 951
at C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xmemory(951)

sblo.dll!std::vector>::_Destroy(SbxVarEntry
 * _First, SbxVarEntry * _Last) Line 1616
at C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vector(1616)
sblo.dll!std::vector>::_Tidy() Line 
1698
at C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vector(1698)

sblo.dll!std::vector>::~vector>()
 Line 674
at C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\vector(674)
sblo.dll!SbxArray::~SbxArray() Line 75
at C:\lo\src\core\basic\source\sbx\sbxarray.cxx(75)
sblo.dll!SbxArray::`vbase destructor'()
sblo.dll!SbxArray::`vector deleting destructor'(unsigned int)
tllo.dll!SvRefBase::ReleaseRef() Line 163
at C:\lo\src\core\include\tools\ref.hxx(163)
sblo.dll!tools::SvRef::~SvRef() Line 56
at C:\lo\src\core\include\tools\ref.hxx(56)
sblo.dll!SbxObject::~SbxObject() Line 111
at C:\lo\src\core\basic\source\sbx\sbxobj.cxx(111)
sblo.dll!SbUnoObject::~SbUnoObject() Line 2387
at C:\lo\src\core\basic\source\classes\sbunoobj.cxx(2387)
sblo.dll!SbxErrObject::~SbxErrObject() Line 183
at C:\lo\src\core\basic\source\classes\errobject.cxx(183)
sblo.dll!SbxErrObject::`vbase destructor'()
sblo.dll!SbxErrObject::`scalar deleting destructor'(unsigned int)
tllo.dll!SvRefBase::ReleaseRef() Line 163
at C:\lo\src\core\include\tools\ref.hxx(163)
sblo.dll!tools::SvRef::~SvRef() Line 56
at C:\lo\src\core\include\tools\ref.hxx(56)
sblo.dll!`SbxErrObject::getErrObject'::`2'::`dynamic atexit destructor for 
'pGlobErr''()
ucrtbased.dll!_execute_onexit_table::__l2::() Line 206
at 

[Libreoffice-bugs] [Bug 78840] Add the regular expression (?ismwx-ismwx: ... ) Flag settings. Evaluate parenthesized expression with specifics flags enabled or -disabled. To have a case sensitive mode

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78840

--- Comment #12 from Mike Kaganski  ---
(In reply to Eike Rathke from comment #10)
> However, that should be done in a consistent manner for all functions
> that obey the regular expression setting.

... except possibly those that explicitly say about case-(in)sensitive
behaviour in standard, like MATCH?

I didn't look into the code, but isn't there a way to set a *default* in the
regex engine (case sensitive/insensitive)? so that if regex is enabled, we
don't use any preprocessing of the string (transliteration) for insensitivity,
but instead set regex engine to "insensitive by default" mode, and rely on the
engine obey (?i) normally?

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

2019-12-20 Thread Alex Henrie (via logerrit)
 editeng/source/misc/unolingu.cxx |1 +
 vcl/unx/generic/print/genpspgraphics.cxx |4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 77729d03c8bbad19e6cb2151fb2f1244c06aca1a
Author: Alex Henrie 
AuthorDate: Fri Dec 20 21:33:49 2019 -0700
Commit: Noel Grandin 
CommitDate: Sat Dec 21 07:29:23 2019 +0100

Fix compilation with `make -- dbglevel=3`

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

diff --git a/editeng/source/misc/unolingu.cxx b/editeng/source/misc/unolingu.cxx
index 43462bda6df5..8352e431ba5f 100644
--- a/editeng/source/misc/unolingu.cxx
+++ b/editeng/source/misc/unolingu.cxx
@@ -21,6 +21,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
diff --git a/vcl/unx/generic/print/genpspgraphics.cxx 
b/vcl/unx/generic/print/genpspgraphics.cxx
index 8f1adf73e632..221525514b34 100644
--- a/vcl/unx/generic/print/genpspgraphics.cxx
+++ b/vcl/unx/generic/print/genpspgraphics.cxx
@@ -828,9 +828,9 @@ FontAttributes GenPspGraphics::Info2FontAttributes( const 
psp::FastPrintFontInfo
 aDFA.AddMapName(alias);
 
 #if OSL_DEBUG_LEVEL > 2
-if( aDFA.HasMapNames() )
+if( aDFA.GetMapNames().getLength() > 0 )
 {
-SAL_INFO( "vcl.fonts", "using alias names " << aDFA.GetAliasNames() << 
" for font family " << aDFA.GetFamilyName() );
+SAL_INFO( "vcl.fonts", "using alias names " << aDFA.GetMapNames() << " 
for font family " << aDFA.GetFamilyName() );
 }
 #endif
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 123262] FILEOPEN: DOCX: Footnote separator text is being added to each footnote

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123262

Justin L  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |jl...@mail.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 115839] fileopen docx unable to change font size

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115839

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

-- 
You are receiving this mail because:
You 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 129229] adding support for PollEverywhere to Impress (or asking PollEverywhere to support LibreOffice too)

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129229

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You 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 107642] [META] Paragraph dialog bugs and enhancements

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107642
Bug 107642 depends on bug 124888, which changed state.

Bug 124888 Summary: Writer – Aspect Ratio Incorrect When Making Image Fit 
Paragraph Width
https://bugs.documentfoundation.org/show_bug.cgi?id=124888

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

-- 
You are receiving this mail because:
You 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 119538] Administrative priviliges required to run LibreOffice SDK (cli) functionality in IIS

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119538

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

-- 
You are receiving this mail because:
You 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 129236] Checking for updates is slow

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129236

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You 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 122588] calc in win10 can't get data from "ORACLE RDB" database by ODBC and its Driver and VBA CODE

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122588

--- Comment #3 from QA Administrators  ---
Dear Madavidpony,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You 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 108908] [META] Visual Basic for Applications (VBA) macro issues

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108908
Bug 108908 depends on bug 122588, which changed state.

Bug 122588 Summary: calc in win10 can't get data from "ORACLE RDB" database by 
ODBC and its Driver and VBA CODE
https://bugs.documentfoundation.org/show_bug.cgi?id=122588

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

-- 
You are receiving this mail because:
You 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 119538] Administrative priviliges required to run LibreOffice SDK (cli) functionality in IIS

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119538

--- Comment #3 from QA Administrators  ---
Dear jan.kowalski.inf,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You 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 122588] calc in win10 can't get data from "ORACLE RDB" database by ODBC and its Driver and VBA CODE

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122588

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|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-bugs] [Bug 104631] UI: Gridlines in Writer visibile through an image (instead hidden behind)

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104631

--- Comment #6 from QA Administrators  ---
Dear Telesto,

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 126053] Libre Office 6.2 my 100K CV file has been increased exponencially

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126053

--- Comment #3 from QA Administrators  ---
Dear raxim.uk,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
You are receiving this mail because:
You 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 126052] Can't drag the color picker window out of my way

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126052

--- Comment #2 from QA Administrators  ---
Dear Dr. Pam Halton,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
You are receiving this mail because:
You 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 124888] Writer – Aspect Ratio Incorrect When Making Image Fit Paragraph Width

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124888

--- Comment #12 from QA Administrators  ---
Dear librelibre,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You 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 124888] Writer – Aspect Ratio Incorrect When Making Image Fit Paragraph Width

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124888

--- Comment #12 from QA Administrators  ---
Dear librelibre,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
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 121529] Drag-and-drop text overwrites the internal clipboard

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121529

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

-- 
You are receiving this mail because:
You 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 121529] Drag-and-drop text overwrites the internal clipboard

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121529

--- Comment #3 from QA Administrators  ---
Dear jonathan,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You 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 115839] fileopen docx unable to change font size

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115839

--- Comment #3 from QA Administrators  ---
Dear vihsa,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You 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 104631] UI: Gridlines in Writer visibile through an image (instead hidden behind)

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104631

--- Comment #6 from QA Administrators  ---
Dear Telesto,

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 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-ux-advise] [Bug 124888] Writer – Aspect Ratio Incorrect When Making Image Fit Paragraph Width

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124888

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

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


[Libreoffice-bugs] [Bug 124888] Writer – Aspect Ratio Incorrect When Making Image Fit Paragraph Width

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124888

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|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-bugs] [Bug 98064] Copying rich text HTTP Link does not Ampersand character in URL properly

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98064

--- Comment #11 from QA Administrators  ---
Dear ka,

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-commits] core.git: svtools/source vcl/source

2019-12-20 Thread Tor Lillqvist (via logerrit)
 svtools/source/config/accessibilityoptions.cxx |4 
 vcl/source/app/settings.cxx|9 -
 2 files changed, 12 insertions(+), 1 deletion(-)

New commits:
commit 6c3f6fc13a9d6d112253f895d45ea4c9aaab6607
Author: Tor Lillqvist 
AuthorDate: Fri Dec 20 17:32:25 2019 +0200
Commit: Tor Lillqvist 
CommitDate: Sat Dec 21 05:03:56 2019 +0200

tdf#126966: Make the colour swatches larger on iOS

We reduce the number of swatches per row from 12 to 4 and increase
their size suitably so that the thing still fits in the sidebar in the
iOS app on an iPad in portrait orientation.

Change-Id: Ie81e5b54e88a02c6866de27448b5be72e97d9a16
Reviewed-on: https://gerrit.libreoffice.org/85620
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Tor Lillqvist 
(cherry picked from commit 18af8dc6a038d1e76274de7abc55ffa06b39a6c8)

diff --git a/svtools/source/config/accessibilityoptions.cxx 
b/svtools/source/config/accessibilityoptions.cxx
index 6cd499a08e6d..315a0333b7b7 100644
--- a/svtools/source/config/accessibilityoptions.cxx
+++ b/svtools/source/config/accessibilityoptions.cxx
@@ -261,6 +261,9 @@ sal_Int16 
SvtAccessibilityOptions_Impl::GetListBoxMaximumLineCount() const
 
 sal_Int16 SvtAccessibilityOptions_Impl::GetColorValueSetColumnCount() const
 {
+#ifdef IOS
+return 4;
+#else
 css::uno::Reference< css::beans::XPropertySet > xNode(m_xCfg, 
css::uno::UNO_QUERY);
 sal_Int16 nRet = 12;
 
@@ -275,6 +278,7 @@ sal_Int16 
SvtAccessibilityOptions_Impl::GetColorValueSetColumnCount() const
 }
 
 return nRet;
+#endif
 }
 
 bool SvtAccessibilityOptions_Impl::GetPreviewUsesCheckeredBackground() const
diff --git a/vcl/source/app/settings.cxx b/vcl/source/app/settings.cxx
index bf50a8150d47..900dd98d34ff 100644
--- a/vcl/source/app/settings.cxx
+++ b/vcl/source/app/settings.cxx
@@ -1,4 +1,4 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; 
fill-column: 100 -*- */
 /*
  * This file is part of the LibreOffice project.
  *
@@ -472,8 +472,15 @@ ImplStyleData::ImplStyleData() :
 maEdgeBlendingTopLeftColor(Color(0xC0, 0xC0, 0xC0)),
 maEdgeBlendingBottomRightColor(Color(0x40, 0x40, 0x40)),
 mnListBoxMaximumLineCount(25),
+// For some reason this isn't actually the column count that gets used, at 
least on iOS, but
+// instead what 
SvtAccessibilityOptions_Impl::GetColorValueSetColumnCount() in
+// svtools/source/config/accessibilityoptions.cxx returns.
 mnColorValueSetColumnCount(12),
+#ifdef IOS
+maListBoxPreviewDefaultLogicSize(Size(30, 30)),
+#else
 maListBoxPreviewDefaultLogicSize(Size(15, 7)),
+#endif
 maListBoxPreviewDefaultPixelSize(Size(0, 0)), // on-demand calculated in 
GetListBoxPreviewDefaultPixelSize(),
 mbPreviewUsesCheckeredBackground(true)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 126966] Sidebar: color selection too small for finger usage

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126966

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

https://git.libreoffice.org/core/commit/6c3f6fc13a9d6d112253f895d45ea4c9aaab6607

tdf#126966: Make the colour swatches larger on iOS

It will be available in 6.5.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: svx/source

2019-12-20 Thread Tor Lillqvist (via logerrit)
 svx/source/tbxctrls/tbxcolor.cxx |7 ++-
 1 file changed, 2 insertions(+), 5 deletions(-)

New commits:
commit a1fa83a56694e12471006d510d02cd80be0a2034
Author: Tor Lillqvist 
AuthorDate: Fri Dec 20 16:36:31 2019 +0200
Commit: Tor Lillqvist 
CommitDate: Sat Dec 21 05:03:08 2019 +0200

Get rid of two pointless #defines

Change-Id: I7479f4f1c440bba1dd9f922c4df32ab877e0a803
Reviewed-on: https://gerrit.libreoffice.org/85619
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Tor Lillqvist 
(cherry picked from commit 83fedc02f2d831774c12d60097a99e968b56dc5e)

diff --git a/svx/source/tbxctrls/tbxcolor.cxx b/svx/source/tbxctrls/tbxcolor.cxx
index 5336f070aadf..3a17e38820a4 100644
--- a/svx/source/tbxctrls/tbxcolor.cxx
+++ b/svx/source/tbxctrls/tbxcolor.cxx
@@ -34,11 +34,8 @@ namespace svx
 using namespace ::com::sun::star::frame;
 using namespace ::com::sun::star::beans;
 
-#define TOOLBAR_RESNAME "private:resource/toolbar/"
-#define PROPNAME_LAYOUTMANAGER  "LayoutManager"
-
 ToolboxAccess::ToolboxAccess( const OUString& rToolboxName ) :
-m_sToolboxResName   ( TOOLBAR_RESNAME )
+m_sToolboxResName   ( "private:resource/toolbar/" )
 {
 m_sToolboxResName += rToolboxName;
 
@@ -50,7 +47,7 @@ namespace svx
 Reference< XFrame > xFrame = 
SfxViewFrame::Current()->GetFrame().GetFrameInterface();
 Reference< XPropertySet > xFrameProps( xFrame, UNO_QUERY );
 if ( xFrameProps.is() )
-xFrameProps->getPropertyValue( PROPNAME_LAYOUTMANAGER ) 
>>= m_xLayouter;
+xFrameProps->getPropertyValue( "LayoutManager" ) >>= 
m_xLayouter;
 }
 catch ( Exception const & )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129535] Microsoft Works 7 (wps) files wont open up properly in LibreOffice Writer, loss of info/text.

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129535

iantheprogram...@gmail.com changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from iantheprogram...@gmail.com ---
Thank you for reporting the bug. Please attach a sample document, as this makes
it easier for us to verify the bug. 
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested document is provided.
(Note that the attachment will be public, remove any sensitive information
before attaching it.
See the QA FAQ Wiki for further detail.)

-- 
You are receiving this mail because:
You 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: ios/Mobile.xcodeproj

2019-12-20 Thread Tor Lillqvist (via logerrit)
 ios/Mobile.xcodeproj/project.pbxproj |  100 +++
 1 file changed, 100 insertions(+)

New commits:
commit 948069632d58c0cd980deb1025810550ecf12952
Author: Tor Lillqvist 
AuthorDate: Sat Dec 21 03:36:28 2019 +0200
Commit: Tor Lillqvist 
CommitDate: Sat Dec 21 03:37:41 2019 +0200

Add source files from svx/source/tbxctrls and svtools/source/config

... to iOS project, for breakpointing convenience.

Change-Id: I3652afe8b833dbe3ec5aff006ef58424626a15a8

diff --git a/ios/Mobile.xcodeproj/project.pbxproj 
b/ios/Mobile.xcodeproj/project.pbxproj
index f2df6f51c..7d7563578 100644
--- a/ios/Mobile.xcodeproj/project.pbxproj
+++ b/ios/Mobile.xcodeproj/project.pbxproj
@@ -418,6 +418,44 @@
BE5EB5DB2140480B00E0826C /* ICU.dat */ = {isa = 
PBXFileReference; lastKnownFileType = file; name = ICU.dat; path = 
../../../ICU.dat; sourceTree = ""; };
BE636210215101D000F4237E /* WebSocketHandler.hpp */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path 
= WebSocketHandler.hpp; sourceTree = ""; };
BE6362C12153B5B500F4237E /* MobileCoreServices.framework */ = 
{isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = 
MobileCoreServices.framework; path = 
System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
+   BE7E5B7623AD07BE00F9462A /* SvxPresetListBox.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = 
SvxPresetListBox.cxx; path = 
"../../ios-device/svx/source/tbxctrls/SvxPresetListBox.cxx"; sourceTree = 
""; };
+   BE7E5B7723AD07BE00F9462A /* tbxcolor.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbxcolor.cxx; 
path = "../../ios-device/svx/source/tbxctrls/tbxcolor.cxx"; sourceTree = 
""; };
+   BE7E5B7823AD07BE00F9462A /* tbxdrctl.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbxdrctl.cxx; 
path = "../../ios-device/svx/source/tbxctrls/tbxdrctl.cxx"; sourceTree = 
""; };
+   BE7E5B7923AD07BE00F9462A /* fillctrl.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillctrl.cxx; 
path = "../../ios-device/svx/source/tbxctrls/fillctrl.cxx"; sourceTree = 
""; };
+   BE7E5B7A23AD07BE00F9462A /* colrctrl.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colrctrl.cxx; 
path = "../../ios-device/svx/source/tbxctrls/colrctrl.cxx"; sourceTree = 
""; };
+   BE7E5B7B23AD07BE00F9462A /* grafctrl.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grafctrl.cxx; 
path = "../../ios-device/svx/source/tbxctrls/grafctrl.cxx"; sourceTree = 
""; };
+   BE7E5B7C23AD07BE00F9462A /* bulletsnumbering.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = 
bulletsnumbering.cxx; path = 
"../../ios-device/svx/source/tbxctrls/bulletsnumbering.cxx"; sourceTree = 
""; };
+   BE7E5B7D23AD07BE00F9462A /* extrusioncontrols.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = 
extrusioncontrols.cxx; path = 
"../../ios-device/svx/source/tbxctrls/extrusioncontrols.cxx"; sourceTree = 
""; };
+   BE7E5B7E23AD07BE00F9462A /* formatpaintbrushctrl.cxx */ = {isa 
= PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = 
formatpaintbrushctrl.cxx; path = 
"../../ios-device/svx/source/tbxctrls/formatpaintbrushctrl.cxx"; sourceTree = 
""; };
+   BE7E5B7F23AD07BE00F9462A /* lboxctrl.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lboxctrl.cxx; 
path = "../../ios-device/svx/source/tbxctrls/lboxctrl.cxx"; sourceTree = 
""; };
+   BE7E5B8023AD07BE00F9462A /* layctrl.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layctrl.cxx; 
path = "../../ios-device/svx/source/tbxctrls/layctrl.cxx"; sourceTree = 
""; };
+   BE7E5B8123AD07BE00F9462A /* itemwin.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = itemwin.cxx; 
path = "../../ios-device/svx/source/tbxctrls/itemwin.cxx"; sourceTree = 
""; };
+   BE7E5B8223AD07BE00F9462A /* SvxColorValueSet.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = 
SvxColorValueSet.cxx; path = 
"../../ios-device/svx/source/tbxctrls/SvxColorValueSet.cxx"; sourceTree = 
""; };
+   BE7E5B8323AD07BE00F9462A /* linectrl.cxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linectrl.cxx; 
path = "../../ios-device/svx/source/tbxctrls/linectrl.cxx"; sourceTree = 
""; };
+   BE7E5B8423AD07BE00F9462A /* extrusioncontrols.hxx */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = 
extrusioncontrols.hxx; path = 
"../../ios-device/svx/source/tbxctrls/extrusioncontrols.hxx"; 

[Libreoffice-bugs] [Bug 129429] First line Freeze does not work

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129429

--- Comment #3 from Stefan Meyer  ---
And I dont know how to test "6.3.4".

I am using ubuntu, and getting all updates, not istalling some weird external
packages, only updates from orig. repository.

-- 
You are receiving this mail because:
You 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 129429] First line Freeze does not work

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129429

Stefan Meyer  changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED

--- Comment #2 from Stefan Meyer  ---
Have you actually read my Bug-Report?

I am not using Windows10 and I actually dont care about, if it works there.

I am using Ubuntu-Mate 18.04 LTS (Long Term Support). 

I thought, when using a LTS version of ubuntu that i can assume, that somebody
is willing to fix bugs. 

But it seems that i am just wasting my time here... because telling me, that it
works on windows10 and another version, seems to me like, "I dont give a f.
about your problem".

Why is ubuntu 18.04 LTS using an EOL version of Libreoffice?? That seems a bit
crazy to me.

Sorry for my wording, but i am not very happy about that bug :-(

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


[Libreoffice-bugs] [Bug 78840] Add the regular expression (?ismwx-ismwx: ... ) Flag settings. Evaluate parenthesized expression with specifics flags enabled or -disabled. To have a case sensitive mode

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78840

--- Comment #11 from Eike Rathke  ---
Though it can get a bit tricky, if "(?-i)" is present somewhere (not at the
start) without a preceding "(?i)" then the user may have assumed that the
overall setting was case insensitive.

-- 
You are receiving this mail because:
You 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 78840] Add the regular expression (?ismwx-ismwx: ... ) Flag settings. Evaluate parenthesized expression with specifics flags enabled or -disabled. To have a case sensitive mode

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78840

--- Comment #10 from Eike Rathke  ---
We maybe could this, iff regular expressions are enabled and "(?-i)" or "(?i)"
are present in the search string (note that those flags can appear anywhere)
then disable the overall case insensitive option. However, that should be done
in a consistent manner for all functions that obey the regular expression
setting.

-- 
You are receiving this mail because:
You 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 129535] New: Microsoft Works 7 (wps) files wont open up properly in LibreOffice Writer, loss of info/text.

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129535

Bug ID: 129535
   Summary: Microsoft Works 7 (wps) files wont open up properly in
LibreOffice Writer, loss of info/text.
   Product: LibreOffice
   Version: 6.3.4.2 release
  Hardware: IA64 (Itanium)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: itsjustme3...@gmail.com

Description:
On my old pc (which had windows 8.1) I used Microsoft Works Word Processor 7
for most of my documents but I recently got a new laptop because my old pc
doesn't work anymore. So I was able to recover the files and transfer them to
my new laptop which runs windows 10 64-bit. Now because Works 7 cant work on it
I downloaded LibreOffice 6.3 to open the Works 7 files. I am able to open up
most files on LibreOffice Writer with no problems. However some files where I
have inserted tables in them wont show; the tables are gone along with the
information/text in the tables. Everything else that isn't in the table is
fine. Note: This has not happened with all documents that have inserted tables,
only some of them. A lot of my other documents with tables are perfectly fine
showing the info/text. 

Actual Results:
-

Expected Results:
-


Reproducible: Didn't try


User Profile Reset: No



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 114609] pptx incorrect textbox shadow

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114609

--- Comment #3 from Oliver Grimm  ---
screenshot on github is no longer available.
reporter, please update your link

-- 
You are receiving this mail because:
You 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 116399] Sending a print job for a 400 paged document is rather slow

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116399

--- Comment #17 from Julien Nabet  ---
Created attachment 156710
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156710=edit
perf flamegraph (first print opening dialog)

Here's the Flamegraph when opening print dialog first time

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


[Libreoffice-ux-advise] [Bug 125759] UI: Notes View: "Move element cursor" instead of "edit text cursor"

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125759

--- Comment #12 from DarkTrick  ---
A short summary of this report:

- "RESOLVED WONTFIX" does not mean "thrown away"
- Currently there is a working solution (it might not be perfect)
- If someone is willing to work out a nice rounded-up concept, he/she is
welcome.
- If someone is willing to implement a/the nice concept, he/she is welcome.
- In case something new is concepted/implemented, it's important to think of
the overall image and corner cases.

-- 
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 125759] UI: Notes View: "Move element cursor" instead of "edit text cursor"

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125759

--- Comment #12 from DarkTrick  ---
A short summary of this report:

- "RESOLVED WONTFIX" does not mean "thrown away"
- Currently there is a working solution (it might not be perfect)
- If someone is willing to work out a nice rounded-up concept, he/she is
welcome.
- If someone is willing to implement a/the nice concept, he/she is welcome.
- In case something new is concepted/implemented, it's important to think of
the overall image and corner cases.

-- 
You are receiving this mail because:
You 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 129506] Copy/Paste or Cut/Paste unpredictable

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129506

--- Comment #2 from Timur  ---
Can we consider another duplicate of bug 62196?

-- 
You are receiving this mail because:
You 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 116399] Sending a print job for a 400 paged document is rather slow

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116399

--- Comment #16 from Julien Nabet  ---
Created attachment 156709
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156709=edit
perf flamegraph (second dialog opening, printing to generic printer)

Here's a Flamegraph on pc Debian x86-64 with master sources updated today
(enable-symbols).

There's also the first opening of printing dialog which is slow, I'll retrieve
another Flamegraph for this.

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


[Libreoffice-bugs] [Bug 129528] libcrypto.dll from LibreSSL MUST NOT GO in C:\Windows\System32

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129528

Julien Nabet  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED
 CC||michael.st...@cib.de

--- Comment #7 from Julien Nabet  ---
FA: thank you for your feedback, I put back to UNCONFIRMED since I don't have
more questions for the moment

Michael: since it concerns Windows install + openSSL, thought you might be
interested in this one.

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


[Libreoffice-bugs] [Bug 104418] FILESAVE DOCX: Malformed table when reopened in LO (better in MSO)

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104418

Timur  changed:

   What|Removed |Added

Summary|FILESAVE DOCX:  Malformed   |FILESAVE DOCX: Malformed
   |table when reopened in LO   |table when reopened in LO
   |(better in MSO) |(better in MSO)

-- 
You are receiving this mail because:
You 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 104418] FILESAVE DOCX: Malformed table when reopened in LO (better in MSO)

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104418

Timur  changed:

   What|Removed |Added

Summary|FILESAVE DOCX:  Malformed   |FILESAVE DOCX:  Malformed
   |table   |table when reopened in LO
   ||(better in MSO)

--- Comment #4 from Timur  ---
repro 6.5+ for wrong reopen in LO

-- 
You are receiving this mail because:
You 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 129534] New: LibreOffice 6.3.3 Win_x64 will not install to D: drive

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129534

Bug ID: 129534
   Summary: LibreOffice 6.3.3 Win_x64 will not install to D: drive
   Product: LibreOffice
   Version: 3.3.0 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Installation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: seanppol...@gmail.com

Description:
When trying to change from C: to D: install the software continues to look at
C: preventing install to D:

Steps to Reproduce:
1.Start install
2.change install drive to D:
3.install continues to search C: drive

Actual Results:
will not scan D: drive for install

Expected Results:
would not install to D: drive even though there is sufficient space


Reproducible: Always


User Profile Reset: No



Additional Info:
When changing from C: (standard install) to D: drive install software should
check D: drive for space and continue install

Note: Previous install was to D: drive

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

2019-12-20 Thread Alex Henrie (via logerrit)
 i18nutil/source/utility/casefolding.cxx|   17 +++---
 i18nutil/source/utility/casefolding_data.h |   33 +
 2 files changed, 46 insertions(+), 4 deletions(-)

New commits:
commit 209fc9fd7fa433947af0bf86e210d73fa7f5a045
Author: Alex Henrie 
AuthorDate: Fri Dec 20 09:23:06 2019 -0700
Commit: Eike Rathke 
CommitDate: Fri Dec 20 23:21:14 2019 +0100

Add case table for Deseret and Osage

For characters like these that are in Unicode's Supplementary
Multilingual Plane, only the low surrogate changes when changing case.

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

diff --git a/i18nutil/source/utility/casefolding.cxx 
b/i18nutil/source/utility/casefolding.cxx
index 0b01565a4466..cf3a716701e3 100644
--- a/i18nutil/source/utility/casefolding.cxx
+++ b/i18nutil/source/utility/casefolding.cxx
@@ -24,6 +24,7 @@
 #include 
 #include 
 #include 
+#include 
 
 using namespace com::sun::star::lang;
 using namespace com::sun::star::uno;
@@ -91,13 +92,21 @@ const Mapping& casefolding::getConditionalValue(const 
sal_Unicode* str, sal_Int3
 
 Mapping casefolding::getValue(const sal_Unicode* str, sal_Int32 pos, sal_Int32 
len, Locale const & aLocale, MappingType nMappingType)
 {
-Mapping dummy = { 0, 1, { 0, 0, 0 } };
-sal_Int16 address = CaseMappingIndex[str[pos] >> 8];
+Mapping dummy = { 0, 1, { str[pos], 0, 0 } };
+
+sal_uInt32 c;
+if (pos > 0 && rtl::isHighSurrogate(str[pos-1]) && 
rtl::isLowSurrogate(str[pos])) {
+c = rtl::combineSurrogates(str[pos-1], str[pos]);
+if (c >= SAL_N_ELEMENTS(CaseMappingIndex) * 256)
+return dummy;
+} else {
+c = str[pos];
+}
 
-dummy.map[0] = str[pos];
+sal_Int16 address = CaseMappingIndex[c >> 8];
 
 if (address >= 0) {
-address = (address << 8) + (str[pos] & 0xFF);
+address = (address << 8) + (c & 0xFF);
 if (static_cast(CaseMappingValue[address].type) & 
nMappingType) {
 MappingType type = 
static_cast(CaseMappingValue[address].type);
 if (type & MappingType::NotValue) {
diff --git a/i18nutil/source/utility/casefolding_data.h 
b/i18nutil/source/utility/casefolding_data.h
index 1cd912b2200d..20c5cc714103 100644
--- a/i18nutil/source/utility/casefolding_data.h
+++ b/i18nutil/source/utility/casefolding_data.h
@@ -56,6 +56,7 @@ static const sal_Int8 CaseMappingIndex[] = {
   -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, // e800 - efff
   -1,   -1,   -1,   -1,   -1,   -1,   -1,   -1, // f000 - f7ff
   -1,   -1,   -1, 0x0b,   -1,   -1,   -1, 0x0c, // f800 - 
+  -1,   -1,   -1,   -1, 0x0d,   -1,   -1,   -1, // 1 - 107ff
 };
 
 
@@ -489,6 +490,38 @@ static const Value CaseMappingValue[] = {
 {0x00, 0x}, {0x00, 0x}, {0x00, 0x}, {0x00, 0x}, {0x00, 
0x}, {0x00, 0x}, {0x00, 0x}, {0x00, 0x}, // fff0 - fff7
 {0x00, 0x}, {0x00, 0x}, {0x00, 0x}, {0x00, 0x}, {0x00, 
0x}, {0x00, 0x}, {0x00, 0x}, {0x00, 0x}, // fff8 - 
 
+{0x6a, 0xDC28}, {0x6a, 0xDC29}, {0x6a, 0xDC2A}, {0x6a, 0xDC2B}, {0x6a, 
0xDC2C}, {0x6a, 0xDC2D}, {0x6a, 0xDC2E}, {0x6a, 0xDC2F}, // 10400 - 10407
+{0x6a, 0xDC30}, {0x6a, 0xDC31}, {0x6a, 0xDC32}, {0x6a, 0xDC33}, {0x6a, 
0xDC34}, {0x6a, 0xDC35}, {0x6a, 0xDC36}, {0x6a, 0xDC37}, // 10408 - 1040f
+{0x6a, 0xDC38}, {0x6a, 0xDC39}, {0x6a, 0xDC3A}, {0x6a, 0xDC3B}, {0x6a, 
0xDC3C}, {0x6a, 0xDC3D}, {0x6a, 0xDC3E}, {0x6a, 0xDC3F}, // 10410 - 10417
+{0x6a, 0xDC40}, {0x6a, 0xDC41}, {0x6a, 0xDC42}, {0x6a, 0xDC43}, {0x6a, 
0xDC44}, {0x6a, 0xDC45}, {0x6a, 0xDC46}, {0x6a, 0xDC47}, // 10418 - 1041f
+{0x6a, 0xDC48}, {0x6a, 0xDC49}, {0x6a, 0xDC4A}, {0x6a, 0xDC4B}, {0x6a, 
0xDC4C}, {0x6a, 0xDC4D}, {0x6a, 0xDC4E}, {0x6a, 0xDC4F}, // 10420 - 10427
+{0x15, 0xDC00}, {0x15, 0xDC01}, {0x15, 0xDC02}, {0x15, 0xDC03}, {0x15, 
0xDC04}, {0x15, 0xDC05}, {0x15, 0xDC06}, {0x15, 0xDC07}, // 10428 - 1042f
+{0x15, 0xDC08}, {0x15, 0xDC09}, {0x15, 0xDC0A}, {0x15, 0xDC0B}, {0x15, 
0xDC0C}, {0x15, 0xDC0D}, {0x15, 0xDC0E}, {0x15, 0xDC0F}, // 10430 - 10437
+{0x15, 0xDC10}, {0x15, 0xDC11}, {0x15, 0xDC12}, {0x15, 0xDC13}, {0x15, 
0xDC14}, {0x15, 0xDC15}, {0x15, 0xDC16}, {0x15, 0xDC17}, // 10438 - 1043f
+{0x15, 0xDC18}, {0x15, 0xDC19}, {0x15, 0xDC1A}, {0x15, 0xDC1B}, {0x15, 
0xDC1C}, {0x15, 0xDC1D}, {0x15, 0xDC1E}, {0x15, 0xDC1F}, // 10440 - 10447
+{0x15, 0xDC20}, {0x15, 0xDC21}, {0x15, 0xDC22}, {0x15, 0xDC23}, {0x15, 
0xDC24}, {0x15, 0xDC25}, {0x15, 0xDC26}, {0x15, 0xDC27}, // 10448 - 1044f
+{0x00, 0x}, {0x00, 0x}, {0x00, 0x}, {0x00, 0x}, {0x00, 
0x}, {0x00, 0x}, {0x00, 0x}, {0x00, 0x}, // 10450 - 10457
+{0x00, 0x}, {0x00, 0x}, {0x00, 0x}, {0x00, 0x}, {0x00, 
0x}, {0x00, 0x}, {0x00, 0x}, {0x00, 0x}, // 10458 - 1045f
+

[Libreoffice-commits] core.git: Changes to 'refs/tags/cib-6.1-8'

2019-12-20 Thread Thorsten Behrens (via logerrit)
Tag 'cib-6.1-8' created by Thorsten Behrens  at 
2019-12-20 22:03 +

Release LibreOffice powered by CIB 6.1-8
-BEGIN PGP SIGNATURE-

iQKTBAABCgB9FiEEHp/al2IcD3tw8LrPZ7OyyFo1BNkFAl39RSNfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDFF
OUZEQTk3NjIxQzBGN0I3MEYwQkFDRjY3QjNCMkM4NUEzNTA0RDkACgkQZ7OyyFo1
BNmZhQ/7Bzl6w52WQiuyfQTGXHWpns4tyB6xRrmzbwZW6YltGIXw8l40TD3DS4N9
ciZ0KwDlgNua/Dn4LyQCTFtLGyxj9Nc8SsH1CPE1eGQ9vWl4T4cBnji/8bnErgky
rw9RUwDjNa4FyQpYaBkLtKAZmILxDe6hOQUHDzT9h3VWsPvPtN/ncM9aaoICM7b4
+8Ahwk/tES7pvAhyaU5ZjqQKDVogh3CqumIhHKxk2a7pwvRU2PHu5xlkylNkW+Ex
yQ/vB1fB91Cx1S0zwFCTVYilG40RzbljYTIDJANrGyzMoaKaAhY/eggrgBljiRqS
lZ7nJMytWUswRaitnzeLyxatS+GVXzr2yC8NyHipYj9Y7s2lEET676HSv9o8oVK8
X0vFdbM4pe879zxJ0PX1CHaTg9HNcA1baisLmV0CeNVZR3WZEccW2Am1igK1k7hp
Qp9u39ZQx3n3Pm3JpNSc+vZl5wDwKKBag5n+kNIE6LqIIV5hd1jlOzw7wWB/1B7V
ePJzod/DM3e6g8dIxgEErpfMhfMjMfeJPXijXcqLbZdc4vOg/maKvJYen2wXn5pm
f3h45wWX44ffssjpS/7tD+bCMoKmkRYUexOy137WCkNPTM3EIvhXoNm3KQbrnD9S
5tvFiqjrNJu4SF+kZP+iWGLpgPG9yt/IIX374vqBxtKwdDSzsDY=
=AIFE
-END PGP SIGNATURE-

Changes since cib-6.1-7-24:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129533] Calc crashes on Navigator click or move

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129533

Timur  changed:

   What|Removed |Added

 OS|All |Windows (All)

-- 
You are receiving this mail because:
You 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 121714] FILEOPEN XLSX: Show comment at end of sheet setting is not imported and printed

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121714

Timur  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You 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 129533] Calc crashes on Navigator click or move

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129533

Timur  changed:

   What|Removed |Added

Summary|Calc crashes on Navigator   |Calc crashes on Navigator
   |move|click or move

-- 
You are receiving this mail because:
You 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 129533] New: Calc crashes on Navigator move

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129533

Bug ID: 129533
   Summary: Calc crashes on Navigator move
   Product: LibreOffice
   Version: 6.5.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: bibisectRequest, regression
  Severity: critical
  Priority: highest
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gti...@gmail.com

Open attachment 147068 from bug 121714.
Navigator should be open left-top. Click it or take it for title bar and move
right.
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 129339] FILESAVE: Drawing is shrunk after RT

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129339

--- Comment #3 from Regina Henschel  ---
In my tests I have got faulty "end"-values, when I made a change to the shape
and then save the document while the shape is still selected. It seems, that it
is necessary to deselect the shape to refresh all internal states. Otherwise an
inconsistent state is saved to file, which then results in a damaged shape on
reload.

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

2019-12-20 Thread Muhammet Kara (via logerrit)
 sw/source/uibase/sidebar/PageOrientationControl.cxx |8 
 1 file changed, 8 insertions(+)

New commits:
commit aeab5bfa024f7d15099730fa536d78b5a7a7ea01
Author: Muhammet Kara 
AuthorDate: Fri Dec 20 20:35:00 2019 +0300
Commit: Muhammet Kara 
CommitDate: Fri Dec 20 22:56:56 2019 +0100

tdf#129526: Prevent accidental toggling of page orientation

Change-Id: I3145cb34ec782c1aa60fe864a6ec7c195185ad18
Reviewed-on: https://gerrit.libreoffice.org/85637
Tested-by: Jenkins
Reviewed-by: Muhammet Kara 

diff --git a/sw/source/uibase/sidebar/PageOrientationControl.cxx 
b/sw/source/uibase/sidebar/PageOrientationControl.cxx
index 0d9844efef36..9d9caa418b1d 100644
--- a/sw/source/uibase/sidebar/PageOrientationControl.cxx
+++ b/sw/source/uibase/sidebar/PageOrientationControl.cxx
@@ -114,6 +114,14 @@ void PageOrientationControl::ExecuteOrientationChange( 
const bool bLandscape )
 
SfxViewFrame::Current()->GetBindings().GetDispatcher()->QueryState(SID_ATTR_PAGE_SIZE,
 pItem);
 mpPageSizeItem.reset( static_cast(pItem->Clone()) );
 
+// Prevent accidental toggling of page orientation
+if ((mpPageSizeItem->GetWidth() > mpPageSizeItem->GetHeight()) == 
bLandscape)
+{
+if ( mxUndoManager.is() )
+mxUndoManager->leaveUndoContext();
+return;
+}
+
 
SfxViewFrame::Current()->GetBindings().GetDispatcher()->QueryState(SID_ATTR_PAGE_LRSPACE,
 pItem);
 mpPageLRMarginItem.reset( static_cast(pItem->Clone()) 
);
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2019-12-20 Thread Caolán McNamara (via logerrit)
 sc/source/ui/inc/tpformula.hxx |4 ++
 sc/source/ui/optdlg/tpformula.cxx  |   51 +
 sc/uiconfig/scalc/ui/optformula.ui |3 ++
 3 files changed, 36 insertions(+), 22 deletions(-)

New commits:
commit be6b44e566050b06d80a1d2f3bdfd15dfb148fee
Author: Caolán McNamara 
AuthorDate: Fri Dec 20 10:40:53 2019 +
Commit: Eike Rathke 
CommitDate: Fri Dec 20 22:56:05 2019 +0100

Resolves: tdf#129501 cannot change formula separators in options

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

diff --git a/sc/source/ui/inc/tpformula.hxx b/sc/source/ui/inc/tpformula.hxx
index 4de05560cfd3..3cda79900d0e 100644
--- a/sc/source/ui/inc/tpformula.hxx
+++ b/sc/source/ui/inc/tpformula.hxx
@@ -43,9 +43,11 @@ private:
 void LaunchCustomCalcSettings();
 
 bool IsValidSeparator(const OUString& rSep) const;
-bool IsValidSeparatorSet() const;
 
 DECL_LINK( ButtonHdl, weld::Button&, void );
+DECL_LINK( SepInsertTextHdl, OUString&, bool );
+DECL_LINK( ColSepInsertTextHdl, OUString&, bool );
+DECL_LINK( RowSepInsertTextHdl, OUString&, bool );
 DECL_LINK( SepModifyHdl, weld::Entry&, void );
 DECL_LINK( SepEditOnFocusHdl, weld::Widget&, void );
 
diff --git a/sc/source/ui/optdlg/tpformula.cxx 
b/sc/source/ui/optdlg/tpformula.cxx
index b4825149ae58..5bf50dea60b9 100644
--- a/sc/source/ui/optdlg/tpformula.cxx
+++ b/sc/source/ui/optdlg/tpformula.cxx
@@ -56,6 +56,10 @@ ScTpFormulaOptions::ScTpFormulaOptions(weld::Container* 
pPage, weld::DialogContr
 mxBtnCustomCalcCustom->connect_clicked(aLink2);
 mxBtnCustomCalcDetails->connect_clicked(aLink2);
 
+mxEdSepFuncArg->connect_insert_text(LINK( this, ScTpFormulaOptions, 
SepInsertTextHdl ));
+mxEdSepArrayCol->connect_insert_text(LINK( this, ScTpFormulaOptions, 
ColSepInsertTextHdl ));
+mxEdSepArrayRow->connect_insert_text(LINK( this, ScTpFormulaOptions, 
RowSepInsertTextHdl ));
+
 Link aLink = LINK( this, ScTpFormulaOptions, 
SepModifyHdl );
 mxEdSepFuncArg->connect_changed(aLink);
 mxEdSepArrayCol->connect_changed(aLink);
@@ -94,7 +98,9 @@ void ScTpFormulaOptions::OnFocusSeparatorInput(weld::Entry* 
pEdit)
 
 // Make sure the entire text is selected.
 pEdit->select_region(0, -1);
-maOldSepValue = pEdit->get_text();
+OUString sSepValue = pEdit->get_text();
+if (!sSepValue.isEmpty())
+maOldSepValue = sSepValue;
 }
 
 void ScTpFormulaOptions::UpdateCustomCalcRadioButtons(bool bDefault)
@@ -161,14 +167,6 @@ bool ScTpFormulaOptions::IsValidSeparator(const OUString& 
rSep) const
 return true;
 }
 
-bool ScTpFormulaOptions::IsValidSeparatorSet() const
-{
-// Make sure the column and row separators are different.
-OUString aColStr = mxEdSepArrayCol->get_text();
-OUString aRowStr = mxEdSepArrayRow->get_text();
-return aColStr != aRowStr;
-}
-
 IMPL_LINK( ScTpFormulaOptions, ButtonHdl, weld::Button&, rBtn, void )
 {
 if ( == mxBtnSepReset.get())
@@ -181,21 +179,32 @@ IMPL_LINK( ScTpFormulaOptions, ButtonHdl, weld::Button&, 
rBtn, void )
 LaunchCustomCalcSettings();
 }
 
-IMPL_LINK( ScTpFormulaOptions, SepModifyHdl, weld::Entry&, rEdit, void )
+IMPL_LINK(ScTpFormulaOptions, SepInsertTextHdl, OUString&, rTest, bool)
 {
-OUString aStr = rEdit.get_text();
-if (aStr.getLength() > 1)
-{
-// In case the string is more than one character long, only grab the
-// first character.
-aStr = aStr.copy(0, 1);
-rEdit.set_text(aStr);
-}
-
-if ((!IsValidSeparator(aStr) || !IsValidSeparatorSet()) && 
!maOldSepValue.isEmpty())
+if (!IsValidSeparator(rTest) && !maOldSepValue.isEmpty())
 // Invalid separator.  Restore the old value.
-rEdit.set_text(maOldSepValue);
+rTest = maOldSepValue;
+return true;
+}
 
+IMPL_LINK(ScTpFormulaOptions, RowSepInsertTextHdl, OUString&, rTest, bool)
+{
+// Invalid separator or same as ColStr - Restore the old value.
+if ((!IsValidSeparator(rTest) || rTest == mxEdSepArrayCol->get_text()) && 
!maOldSepValue.isEmpty())
+rTest = maOldSepValue;
+return true;
+}
+
+IMPL_LINK(ScTpFormulaOptions, ColSepInsertTextHdl, OUString&, rTest, bool)
+{
+// Invalid separator or same as RowStr - Restore the old value.
+if ((!IsValidSeparator(rTest) || rTest == mxEdSepArrayRow->get_text()) && 
!maOldSepValue.isEmpty())
+rTest = maOldSepValue;
+return true;
+}
+
+IMPL_LINK( ScTpFormulaOptions, SepModifyHdl, weld::Entry&, rEdit, void )
+{
 OnFocusSeparatorInput();
 }
 
diff --git a/sc/uiconfig/scalc/ui/optformula.ui 
b/sc/uiconfig/scalc/ui/optformula.ui
index 8b8f2a8dfa6f..ceae62e26a70 100644
--- a/sc/uiconfig/scalc/ui/optformula.ui
+++ b/sc/uiconfig/scalc/ui/optformula.ui
@@ -357,6 +357,7 @@
   
 True
 True
+1
 

[Libreoffice-commits] core.git: Branch 'libreoffice-6-4' - svx/source

2019-12-20 Thread Aditya (via logerrit)
 svx/source/stbctrls/selctrl.cxx |   13 +
 1 file changed, 13 insertions(+)

New commits:
commit 0c21bf2b46b71816337fa4aba04e41126a08cd8e
Author: Aditya 
AuthorDate: Wed Dec 18 21:19:50 2019 +0530
Commit: Eike Rathke 
CommitDate: Fri Dec 20 22:53:28 2019 +0100

tdf#122280: Hide Block selection mode from Calc

Currently, the Block Selection Mode in pop-up menu is dysfunctional
 in Calc. It is unreachable - when the user tries to choose "Block
 selection" from the pop-up menu that lies in the status bar, it
 shifts back to "Standard selection".
Hide the Block Selection mode from Calc, simply because it is
 dysfunctional and useless.

Change-Id: Ib8618b7f0281de13a5f6ef9d35b67330f43c4318
Reviewed-on: https://gerrit.libreoffice.org/84142
Tested-by: Jenkins
Reviewed-by: Eike Rathke 
(cherry picked from commit 1e94d803f7a70027d03f1303c19818ca2de0d67f)
Reviewed-on: https://gerrit.libreoffice.org/85629

diff --git a/svx/source/stbctrls/selctrl.cxx b/svx/source/stbctrls/selctrl.cxx
index 1e97e160f289..9f6fc1135148 100644
--- a/svx/source/stbctrls/selctrl.cxx
+++ b/svx/source/stbctrls/selctrl.cxx
@@ -31,6 +31,8 @@
 #include 
 
 #include 
+#include 
+#include 
 
 SFX_IMPL_STATUSBAR_CONTROL(SvxSelectionModeControl, SfxUInt16Item);
 
@@ -46,6 +48,7 @@ public:
 OUString GetItemTextForState(sal_uInt16 nState) { return 
m_xMenu->GetItemText(state_to_id(nState)); }
 sal_uInt16 GetState() const { return 
id_to_state(m_xMenu->GetCurItemIdent()); }
 sal_uInt16 Execute(vcl::Window* pWindow, const Point& rPopupPos) { return 
m_xMenu->Execute(pWindow, rPopupPos); }
+void HideSelectionType(const OString& rIdent) { 
m_xMenu->HideItem(m_xMenu->GetItemId(rIdent)); }
 };
 
 sal_uInt16 SelectionTypePopup::id_to_state(const OString& rIdent)
@@ -108,6 +111,16 @@ bool SvxSelectionModeControl::MouseButtonDown( const 
MouseEvent& rEvt )
 SelectionTypePopup aPop(mnState);
 StatusBar& rStatusbar = GetStatusBar();
 
+// Check if Calc is opened; if true, hide block selection mode tdf#122280
+const css::uno::Reference < css::frame::XModel > xModel = 
m_xFrame->getController()->getModel();
+css::uno::Reference< css::lang::XServiceInfo > xServices( xModel, 
css::uno::UNO_QUERY );
+if ( xServices.is() )
+{
+bool bSpecModeCalc = 
xServices->supportsService("com.sun.star.sheet.SpreadsheetDocument");
+if (bSpecModeCalc)
+aPop.HideSelectionType("block");
+}
+
 if (rEvt.IsMiddle() && aPop.Execute(, rEvt.GetPosPixel()))
 {
 sal_uInt16 nNewState = aPop.GetState();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129532] vertical and horizontal flip does not work via macro for custom shapes

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129532

--- Comment #2 from Regina Henschel  ---
Created attachment 156708
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156708=edit
rotate by 30deg

-- 
You are receiving this mail because:
You 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 112969] [META] DOCX (OOXML) field-related issues

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112969
Bug 112969 depends on bug 117610, which changed state.

Bug 117610 Summary: FILEOPEN DOCX: Incorrect numbering of references
https://bugs.documentfoundation.org/show_bug.cgi?id=117610

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

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


[Libreoffice-bugs] [Bug 117610] FILEOPEN DOCX: Incorrect numbering of references

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117610

Timur  changed:

   What|Removed |Added

   Keywords||implementationError
 Resolution|--- |WORKSFORME
 Status|NEW |RESOLVED
Version|unspecified |6.0.0.3 release

--- Comment #8 from Timur  ---
This bug was triaged wrongly.
Reported is filesave issue, as in Additional. 
Xavier didn't explain what he confirmed and Dieter wrongly changed to Fileopen.
And Xisco and Cor may have fallen for that.

So, we open attachment 142092 and save as DOCX, then reopen that DOCX
preferably both in MSO and LO. Issue confirmed in LO 6.0.
But if saved in LO 6.5+, as DOC or DOCX, it reopens in MSO and LO correctly
with proper references. WFM now.

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


[Libreoffice-bugs] [Bug 129532] vertical and horizontal flip does not work via macro for custom shapes

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129532

--- Comment #1 from Regina Henschel  ---
Created attachment 156707
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156707=edit
mirror vertical

-- 
You are receiving this mail because:
You 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 129532] New: vertical and horizontal flip does not work via macro for custom shapes

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129532

Bug ID: 129532
   Summary: vertical and horizontal flip does not work via macro
for custom shapes
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

Created attachment 156706
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156706=edit
mirror horizontal

The attached documents contain macros. To examine the problem, you need to
enable macro execution.

Open the document and allow macros.
Select the shape.
Press Alt+F11.
>From the library of the document select makro "mail" and run it.

You will notice, that rotation works, but not vertical or horizontal flip.

To verify, that it is a problem for custom shapes, you can draw a Bézier-curve
for example and apply the macro to the curve.

In case you have questions about the macros, please ask.

-- 
You are receiving this mail because:
You 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 129528] libcrypto.dll from LibreSSL MUST NOT GO in C:\Windows\System32

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129528

--- Comment #6 from FA  ---
C:\WINDOWS\system32>dir lib*
 Le volume dans le lecteur C s’appelle OS
 Le numéro de série du volume est 483C-2641

 Répertoire de C:\WINDOWS\system32

19/03/2019  13:02 1 609 728 libcrypto.dll
   1 fichier(s)1 609 728 octets
   0 Rép(s)  220 733 636 608 octets libres

-- 
You are receiving this mail because:
You 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 129528] libcrypto.dll from LibreSSL MUST NOT GO in C:\Windows\System32

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129528

--- Comment #5 from FA  ---
After uninstalling LibreOffice, C:\Windows\System32\libcrypto.dll remains. So
???

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


[Libreoffice-commits] core.git: Branch 'distro/cib/libreoffice-6-1' - 2 commits - configure.ac external/neon

2019-12-20 Thread Thorsten Behrens (via logerrit)
Rebased ref, commits from common ancestor:
commit 5b64e4e64bf2696b164e59da7372ebb0aecab8b2
Author: Thorsten Behrens 
AuthorDate: Fri Dec 20 22:17:33 2019 +0100
Commit: Thorsten Behrens 
CommitDate: Fri Dec 20 22:17:33 2019 +0100

Bump version to 6.1.7.8

Change-Id: I1237c4502d5b7f46fc510fce00377c8cce8dbcf0

diff --git a/configure.ac b/configure.ac
index 92ef5852cc86..6bd8da094b2e 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 powered by 
CIB],[6.1.7.7],[],[],[https://libreoffice.cib.eu/])
+AC_INIT([LibreOffice powered by 
CIB],[6.1.7.8],[],[],[https://libreoffice.cib.eu/])
 
 AC_PREREQ([2.59])
 
commit 56a7cf2a4c54f535b185d76497e591433bdb654e
Author: Thorsten Behrens 
AuthorDate: Fri Dec 20 07:03:47 2019 +0100
Commit: Thorsten Behrens 
CommitDate: Fri Dec 20 22:09:32 2019 +0100

tdf#129519 Fix crash during WebDAV lock refresh

- NeonSession is shared amongst several files (if on the same server
  instance)
  - there's explicit code in DAVSessionFactory::createDAVSession()
to share sessions for same host/target
- so then after a while, locks get refreshed, and session timeout
  hits
- first lock -> no prob, ne_auth.c:ah_post_send() has
  auth_challenge() failing, returning error, which puts that lock
  into m_aRemoveDeferred list
- _but_ ah_post_send() then does a clean_session(), and the next
  lock refresh from the same session hits NULLPTR session host

-> so let's delay any sspi_host cleanup until session object gets
   freed, instead of just cleaned

Change-Id: Ie257310c47913aef9fcfec92c1722d64b28c4f89
Reviewed-on: https://gerrit.libreoffice.org/85614
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/external/neon/UnpackedTarball_neon.mk 
b/external/neon/UnpackedTarball_neon.mk
index dacf425fa80f..74ac2eb38c97 100644
--- a/external/neon/UnpackedTarball_neon.mk
+++ b/external/neon/UnpackedTarball_neon.mk
@@ -24,6 +24,7 @@ $(eval $(call gb_UnpackedTarball_add_patches,neon,\
external/neon/ubsan.patch \
external/neon/neon_fix_lock_token_on_if.patch \
external/neon/neon_fix_lock_timeout_windows.patch \
+   external/neon/neon_fix_sspi_session_timeout.patch \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/external/neon/neon_fix_sspi_session_timeout.patch 
b/external/neon/neon_fix_sspi_session_timeout.patch
new file mode 100644
index ..5003fda35022
--- /dev/null
+++ b/external/neon/neon_fix_sspi_session_timeout.patch
@@ -0,0 +1,22 @@
+--- src/ne_auth.c~ 2019-12-05 15:38:50.246997951 +0100
 src/ne_auth.c  2019-12-20 06:54:31.555836285 +0100
+@@ -300,8 +300,6 @@
+ sess->sspi_token = NULL;
+ ne_sspi_destroy_context(sess->sspi_context);
+ sess->sspi_context = NULL;
+-if (sess->sspi_host) ne_free(sess->sspi_host);
+-sess->sspi_host = NULL;
+ #endif
+ #ifdef HAVE_NTLM
+ if (sess->ntlm_context) {
+@@ -1599,6 +1597,10 @@
+ }
+ 
+ clean_session(sess);
++#ifdef HAVE_SSPI
++if (sess->sspi_host) ne_free(sess->sspi_host);
++sess->sspi_host = NULL;
++#endif
+ ne_free(sess);
+ }
+ 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 81426] FILESAVE: Data from header and footer is getting lost in DOCX (continuous sections)

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81426

Timur  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You 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 129531] New: Fileopen: Outline numbering levels from DOCX not recognized

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129531

Bug ID: 129531
   Summary: Fileopen: Outline numbering levels from DOCX not
recognized
   Product: LibreOffice
   Version: 3.6.0.4 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gti...@gmail.com

When opening attachment 102915 frmo bug 81426 we have fileopen numbering issue. 
Starting on page 9, should be "2.6 RFP RESPONSE FORMAT", followed by 2.6.1,
2.6.2.. but it's "9.1" due to wrong previous numbers.
Already there from LO 3.6 when numbering appeared.

-- 
You are receiving this mail because:
You 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 95495] Fileopen: List levels not recognized in .docx custom outline numbering

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95495

Timur  changed:

   What|Removed |Added

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

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


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

2019-12-20 Thread Thorsten Behrens (via logerrit)
 external/neon/UnpackedTarball_neon.mk |1 +
 external/neon/neon_fix_sspi_session_timeout.patch |   22 ++
 2 files changed, 23 insertions(+)

New commits:
commit df52a213277827a16793791fecc33139582c84c2
Author: Thorsten Behrens 
AuthorDate: Fri Dec 20 07:03:47 2019 +0100
Commit: Thorsten Behrens 
CommitDate: Fri Dec 20 22:07:45 2019 +0100

tdf#129519 Fix crash during WebDAV lock refresh

- NeonSession is shared amongst several files (if on the same server
  instance)
  - there's explicit code in DAVSessionFactory::createDAVSession()
to share sessions for same host/target
- so then after a while, locks get refreshed, and session timeout
  hits
- first lock -> no prob, ne_auth.c:ah_post_send() has
  auth_challenge() failing, returning error, which puts that lock
  into m_aRemoveDeferred list
- _but_ ah_post_send() then does a clean_session(), and the next
  lock refresh from the same session hits NULLPTR session host

-> so let's delay any sspi_host cleanup until session object gets
   freed, instead of just cleaned

Change-Id: Ie257310c47913aef9fcfec92c1722d64b28c4f89
Reviewed-on: https://gerrit.libreoffice.org/85614
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/external/neon/UnpackedTarball_neon.mk 
b/external/neon/UnpackedTarball_neon.mk
index dacf425fa80f..74ac2eb38c97 100644
--- a/external/neon/UnpackedTarball_neon.mk
+++ b/external/neon/UnpackedTarball_neon.mk
@@ -24,6 +24,7 @@ $(eval $(call gb_UnpackedTarball_add_patches,neon,\
external/neon/ubsan.patch \
external/neon/neon_fix_lock_token_on_if.patch \
external/neon/neon_fix_lock_timeout_windows.patch \
+   external/neon/neon_fix_sspi_session_timeout.patch \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/external/neon/neon_fix_sspi_session_timeout.patch 
b/external/neon/neon_fix_sspi_session_timeout.patch
new file mode 100644
index ..5003fda35022
--- /dev/null
+++ b/external/neon/neon_fix_sspi_session_timeout.patch
@@ -0,0 +1,22 @@
+--- src/ne_auth.c~ 2019-12-05 15:38:50.246997951 +0100
 src/ne_auth.c  2019-12-20 06:54:31.555836285 +0100
+@@ -300,8 +300,6 @@
+ sess->sspi_token = NULL;
+ ne_sspi_destroy_context(sess->sspi_context);
+ sess->sspi_context = NULL;
+-if (sess->sspi_host) ne_free(sess->sspi_host);
+-sess->sspi_host = NULL;
+ #endif
+ #ifdef HAVE_NTLM
+ if (sess->ntlm_context) {
+@@ -1599,6 +1597,10 @@
+ }
+ 
+ clean_session(sess);
++#ifdef HAVE_SSPI
++if (sess->sspi_host) ne_free(sess->sspi_host);
++sess->sspi_host = NULL;
++#endif
+ ne_free(sess);
+ }
+ 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 81426] FILESAVE: Data from header and footer is getting lost in DOCX (continuous sections)

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81426

Timur  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|WORKSFORME  |---
Summary|FILESAVE: Data from header  |FILESAVE: Data from header
   |and footer is getting lost  |and footer is getting lost
   |(continuous sections)   |in DOCX (continuous
   ||sections)
   Keywords||bibisectRequest

--- Comment #12 from Timur  ---
I'm not in favor of simple closing this one if not fully resolved all header
issues. 
There's an improvement with headers and I set bibisectRequest. But not with
all.

No header and footer are shown in Vendor Information when re-opened in MSO or
LO. And that's the remaining bug.
Also, in whole document and also in Vendor Information, line is missing in
footer. Would be nice if resolved with previous.

-- 
You are receiving this mail because:
You 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 93823] EDITING: Numbering mixed between different custom levels in master document

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93823

Timur  changed:

   What|Removed |Added

Version|4.4.5.2 release |Inherited From OOo
Summary|EDITING: Numbering mixed|EDITING: Numbering mixed
   |between different levels in |between different custom
   |master document |levels in master document
   Priority|medium  |low

--- Comment #7 from Timur  ---
This is minor issue. Would be useful if there were steps to recreate document.
Could be some mess with custom styles or simply saved wrong.

-- 
You are receiving this mail because:
You 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 129529] Cannot open 819-pages ODT

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129529

MM  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from MM  ---
Confirmed on mint 19.3 x64 with Version: 6.5.0.0.alpha0+
Build ID: 9e63d328691014bc97f6b66b708ed9dec53618e6
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2019-12-18_00:38:35
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-bugs] [Bug 129530] New: vertical flip, which is contained in draw:transform, does not flip a legacy arc

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129530

Bug ID: 129530
   Summary: vertical flip, which is contained in draw:transform,
does not flip a legacy arc
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

Created attachment 156705
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156705=edit
legacy arc with vertical flip via draw:transform attribute

The attached file has two slides. Each slide has a legacy arc in blue without
transformation and the same arc in red with transformation.
Unpack the file to see the draw:transform attribute.
The transformations in attribute value translate(-5.75cm -5.25cm) scale(1 -1)
translate(5.75cm 5.25cm) are used from left to right.

The draw:transform attribute should result in a vertical flip in both cases.
Instead the shape gets a 180°-rotation.

If you vertically flip an arc with the tool from the UI, the transformation is
replaced by a horizontal flip and a 180°-rotation. That is mathematically
equivalent. The horizontal flip of a legacy arc is done by calculating new
start and end angles. That is missing here.

The problem is not only in Impress, but in other modules 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 124176] Use pragma once instead of include guards

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124176

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

https://git.libreoffice.org/core/commit/1c7fb79ad1c9356424ff1ed489cc2ac04cc1d68d

tdf#124176: Use pragma once instead of include guards

It will be available in 6.5.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: forms/source

2019-12-20 Thread Onur Yilmaz (via logerrit)
 forms/source/component/Button.hxx |6 +-
 forms/source/component/CheckBox.hxx   |6 +-
 forms/source/component/Columns.hxx|5 +
 forms/source/component/cachedrowset.hxx   |6 +-
 forms/source/component/clickableimage.hxx |6 +-
 5 files changed, 5 insertions(+), 24 deletions(-)

New commits:
commit 1c7fb79ad1c9356424ff1ed489cc2ac04cc1d68d
Author: Onur Yilmaz 
AuthorDate: Thu Dec 19 03:24:31 2019 +0300
Commit: Muhammet Kara 
CommitDate: Fri Dec 20 21:10:29 2019 +0100

tdf#124176: Use pragma once instead of include guards

Change-Id: I083ae8efad8bdf116ef98038fa1e15037655aba9
Reviewed-on: https://gerrit.libreoffice.org/85459
Tested-by: Jenkins
Reviewed-by: Muhammet Kara 

diff --git a/forms/source/component/Button.hxx 
b/forms/source/component/Button.hxx
index 341ea2dc2c00..fa77e4abd3a7 100644
--- a/forms/source/component/Button.hxx
+++ b/forms/source/component/Button.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_FORMS_SOURCE_COMPONENT_BUTTON_HXX
-#define INCLUDED_FORMS_SOURCE_COMPONENT_BUTTON_HXX
+#pragma once
 
 #include "clickableimage.hxx"
 #include 
@@ -192,7 +191,4 @@ private:
 
 }   // namespace frm
 
-
-#endif // INCLUDED_FORMS_SOURCE_COMPONENT_BUTTON_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/forms/source/component/CheckBox.hxx 
b/forms/source/component/CheckBox.hxx
index ea2e633a28ca..7f4ab7103153 100644
--- a/forms/source/component/CheckBox.hxx
+++ b/forms/source/component/CheckBox.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_FORMS_SOURCE_COMPONENT_CHECKBOX_HXX
-#define INCLUDED_FORMS_SOURCE_COMPONENT_CHECKBOX_HXX
+#pragma once
 
 #include "refvaluecomponent.hxx"
 
@@ -74,7 +73,4 @@ public:
 
 }
 
-
-#endif // INCLUDED_FORMS_SOURCE_COMPONENT_CHECKBOX_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/forms/source/component/Columns.hxx 
b/forms/source/component/Columns.hxx
index 2db0bfb2218a..c24ca8a013de 100644
--- a/forms/source/component/Columns.hxx
+++ b/forms/source/component/Columns.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_FORMS_SOURCE_COMPONENT_COLUMNS_HXX
-#define INCLUDED_FORMS_SOURCE_COMPONENT_COLUMNS_HXX
+#pragma once
 
 #include 
 #include 
@@ -198,6 +197,4 @@ DECL_COLUMN(FormattedFieldColumn)
 
 }   // namespace frm
 
-#endif // INCLUDED_FORMS_SOURCE_COMPONENT_COLUMNS_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/forms/source/component/cachedrowset.hxx 
b/forms/source/component/cachedrowset.hxx
index 03dd635c724e..9e61e57596e0 100644
--- a/forms/source/component/cachedrowset.hxx
+++ b/forms/source/component/cachedrowset.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_FORMS_SOURCE_COMPONENT_CACHEDROWSET_HXX
-#define INCLUDED_FORMS_SOURCE_COMPONENT_CACHEDROWSET_HXX
+#pragma once
 
 #include 
 #include 
@@ -78,7 +77,4 @@ namespace frm
 
 } // namespace frm
 
-
-#endif // INCLUDED_FORMS_SOURCE_COMPONENT_CACHEDROWSET_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/forms/source/component/clickableimage.hxx 
b/forms/source/component/clickableimage.hxx
index 30342d060601..d4a5065e0383 100644
--- a/forms/source/component/clickableimage.hxx
+++ b/forms/source/component/clickableimage.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_FORMS_SOURCE_COMPONENT_CLICKABLEIMAGE_HXX
-#define INCLUDED_FORMS_SOURCE_COMPONENT_CLICKABLEIMAGE_HXX
+#pragma once
 
 #include 
 #include 
@@ -275,7 +274,4 @@ namespace frm
 
 }   // namespace frm
 
-
-#endif // INCLUDED_FORMS_SOURCE_COMPONENT_CLICKABLEIMAGE_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 94326] Numbered headers not displayed and handled correctly (DOC fileopen)

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94326

--- Comment #19 from Timur  ---
*** Bug 104239 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 129228] FILEOPEN XLSX: Specific publicly available file won't open

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129228

--- Comment #13 from Julien Nabet  ---
Created attachment 156704
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156704=edit
Flamegraph

Here's a new Flamegraph with master sources updated today.
commit d0b69965012a711c0b181bf359c8b27a782be2c3 (HEAD -> master, origin/master,
origin/HEAD)
Author: Batuhan Görkem Benzer 
Date:   Fri Dec 20 08:16:27 2019 -0500

tdf#124176: Use pragma once instead of include guards

-- 
You are receiving this mail because:
You 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 129228] FILEOPEN XLSX: Specific publicly available file won't open

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129228

Julien Nabet  changed:

   What|Removed |Added

 Attachment #156525|0   |1
is obsolete||

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


[Libreoffice-bugs] [Bug 112706] [META] DOC (binary) bullet and numbering list-related issues

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112706
Bug 112706 depends on bug 104239, which changed state.

Bug 104239 Summary: FILEOPEN: DOC: Incorrect numbering in second level
https://bugs.documentfoundation.org/show_bug.cgi?id=104239

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

-- 
You are receiving this mail because:
You 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 104239] FILEOPEN: DOC: Incorrect numbering in second level

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104239

Timur  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #11 from Timur  ---


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

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

2019-12-20 Thread Sıla Genç (via logerrit)
 cui/source/options/optjava.hxx|6 ++
 cui/source/options/optjsearch.hxx |6 +-
 2 files changed, 3 insertions(+), 9 deletions(-)

New commits:
commit 186fdf0d20162568891763f08e7f99a38535a699
Author: Sıla Genç 
AuthorDate: Fri Dec 20 16:00:58 2019 +0300
Commit: Muhammet Kara 
CommitDate: Fri Dec 20 21:01:53 2019 +0100

tdf#124176: Use pragma once instead of include guards

Change-Id: I88d5517d42b6c5b6809f062a789e7dd85394f6db
Reviewed-on: https://gerrit.libreoffice.org/85601
Tested-by: Jenkins
Reviewed-by: Muhammet Kara 

diff --git a/cui/source/options/optjava.hxx b/cui/source/options/optjava.hxx
index ffefecce2d47..01cd15210f44 100644
--- a/cui/source/options/optjava.hxx
+++ b/cui/source/options/optjava.hxx
@@ -16,8 +16,8 @@
  *   except in compliance with the License. You may obtain a copy of
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
-#ifndef INCLUDED_CUI_SOURCE_OPTIONS_OPTJAVA_HXX
-#define INCLUDED_CUI_SOURCE_OPTIONS_OPTJAVA_HXX
+
+#pragma once
 
 #include 
 
@@ -204,6 +204,4 @@ public:
 voidSetClassPath( const OUString& _rPath );
 };
 
-#endif // INCLUDED_CUI_SOURCE_OPTIONS_OPTJAVA_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/cui/source/options/optjsearch.hxx 
b/cui/source/options/optjsearch.hxx
index 8b2d68ddcf4d..f0da350ae651 100644
--- a/cui/source/options/optjsearch.hxx
+++ b/cui/source/options/optjsearch.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_CUI_SOURCE_OPTIONS_OPTJSEARCH_HXX
-#define INCLUDED_CUI_SOURCE_OPTIONS_OPTJSEARCH_HXX
+#pragma once
 
 #include 
 #include 
@@ -69,7 +68,4 @@ public:
 voidSetTransliterationFlags( TransliterationFlags 
nSettings );
 };
 
-
-#endif
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 124176] Use pragma once instead of include guards

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124176

--- Comment #18 from Commit Notification 
 ---
Sıla Genç committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/186fdf0d20162568891763f08e7f99a38535a699

tdf#124176: Use pragma once instead of include guards

It will be available in 6.5.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-bugs] [Bug 124176] Use pragma once instead of include guards

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124176

--- Comment #17 from Commit Notification 
 ---
Selim Şeker committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/0d34eb78fd5fe72d9e10438b41e76fe45cb2c2df

tdf#124176: Use pragma once instead of include guards

It will be available in 6.5.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: cui/source

2019-12-20 Thread Selim Şeker (via logerrit)
 cui/source/options/dbregisterednamesconfig.hxx |7 +--
 cui/source/options/dbregistersettings.hxx  |5 +
 2 files changed, 2 insertions(+), 10 deletions(-)

New commits:
commit 0d34eb78fd5fe72d9e10438b41e76fe45cb2c2df
Author: Selim Şeker 
AuthorDate: Thu Dec 19 01:50:53 2019 +0300
Commit: Muhammet Kara 
CommitDate: Fri Dec 20 20:59:08 2019 +0100

tdf#124176: Use pragma once instead of include guards

Change-Id: I626d4a08161a6c81b4bb014d847f0c05d90fda35
Reviewed-on: https://gerrit.libreoffice.org/85449
Tested-by: Jenkins
Reviewed-by: Muhammet Kara 

diff --git a/cui/source/options/dbregisterednamesconfig.hxx 
b/cui/source/options/dbregisterednamesconfig.hxx
index 48311d031913..9decf7e11399 100644
--- a/cui/source/options/dbregisterednamesconfig.hxx
+++ b/cui/source/options/dbregisterednamesconfig.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_CUI_SOURCE_OPTIONS_DBREGISTEREDNAMESCONFIG_HXX
-#define INCLUDED_CUI_SOURCE_OPTIONS_DBREGISTEREDNAMESCONFIG_HXX
+#pragma once
 
 class SfxItemSet;
 
@@ -36,8 +35,4 @@ namespace svx
 
 }
 
-
-#endif // INCLUDED_CUI_SOURCE_OPTIONS_DBREGISTEREDNAMESCONFIG_HXX
-
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/cui/source/options/dbregistersettings.hxx 
b/cui/source/options/dbregistersettings.hxx
index ce1322a101db..9146afe7b1d3 100644
--- a/cui/source/options/dbregistersettings.hxx
+++ b/cui/source/options/dbregistersettings.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_CUI_SOURCE_OPTIONS_DBREGISTERSETTINGS_HXX
-#define INCLUDED_CUI_SOURCE_OPTIONS_DBREGISTERSETTINGS_HXX
+#pragma once
 
 #include 
 
@@ -77,6 +76,4 @@ namespace svx
 
 }
 
-#endif // INCLUDED_CUI_SOURCE_OPTIONS_DBREGISTERSETTINGS_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2019-12-20 Thread Ayhan Yalçınsoy (via logerrit)
 accessibility/source/inc/floatingwindowaccessible.hxx |5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

New commits:
commit 7cf98c89c19e68b369a296d55c2e9bdf1b42d356
Author: Ayhan Yalçınsoy 
AuthorDate: Fri Dec 20 21:12:36 2019 +0300
Commit: Muhammet Kara 
CommitDate: Fri Dec 20 20:57:30 2019 +0100

tdf#124176:Use pragma once instead of include guards

Change-Id: I7f71f0142759362fcfb30364694e3f4fc590274c
Reviewed-on: https://gerrit.libreoffice.org/85551
Tested-by: Jenkins
Reviewed-by: Muhammet Kara 

diff --git a/accessibility/source/inc/floatingwindowaccessible.hxx 
b/accessibility/source/inc/floatingwindowaccessible.hxx
index 94670742e69c..1a7cb4008458 100644
--- a/accessibility/source/inc/floatingwindowaccessible.hxx
+++ b/accessibility/source/inc/floatingwindowaccessible.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_ACCESSIBILITY_SOURCE_INC_FLOATINGWINDOWACCESSIBLE_HXX
-#define INCLUDED_ACCESSIBILITY_SOURCE_INC_FLOATINGWINDOWACCESSIBLE_HXX
+#pragma once
 
 #include 
 
@@ -30,6 +29,4 @@ public:
 virtual void FillAccessibleRelationSet( utl::AccessibleRelationSetHelper& 
rRelationSet ) override;
 };
 
-#endif // INCLUDED_ACCESSIBILITY_SOURCE_INC_FLOATINGWINDOWACCESSIBLE_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 124176] Use pragma once instead of include guards

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124176

--- Comment #16 from Commit Notification 
 ---
Ayhan Yalçınsoy committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/7cf98c89c19e68b369a296d55c2e9bdf1b42d356

tdf#124176:Use pragma once instead of include guards

It will be available in 6.5.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: scripting/source

2019-12-20 Thread Kemal Ayhan (via logerrit)
 scripting/source/dlgprov/DialogModelProvider.hxx |5 +
 scripting/source/dlgprov/dlgevtatt.hxx   |6 +-
 scripting/source/dlgprov/dlgprov.hxx |6 +-
 3 files changed, 3 insertions(+), 14 deletions(-)

New commits:
commit 0cc5185147402f6c5a4ff8e1256aa8348a04f75e
Author: Kemal Ayhan 
AuthorDate: Thu Dec 19 01:48:45 2019 +0300
Commit: Muhammet Kara 
CommitDate: Fri Dec 20 20:56:37 2019 +0100

tdf#124176: Use pragma once instead of include guards

Change-Id: I4a045b450a5779bdd357a05a0efd4da7d521682d
Reviewed-on: https://gerrit.libreoffice.org/85448
Tested-by: Jenkins
Reviewed-by: Muhammet Kara 

diff --git a/scripting/source/dlgprov/DialogModelProvider.hxx 
b/scripting/source/dlgprov/DialogModelProvider.hxx
index 7f938bc90ad1..d9a41ef64e86 100644
--- a/scripting/source/dlgprov/DialogModelProvider.hxx
+++ b/scripting/source/dlgprov/DialogModelProvider.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_SCRIPTING_SOURCE_DLGPROV_DIALOGMODELPROVIDER_HXX
-#define INCLUDED_SCRIPTING_SOURCE_DLGPROV_DIALOGMODELPROVIDER_HXX
+#pragma once
 
 #include 
 #include 
@@ -85,6 +84,4 @@ private:
 };
 } // closing anonymous implementation namespace
 
-#endif // INCLUDED_SCRIPTING_SOURCE_DLGPROV_DIALOGMODELPROVIDER_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/scripting/source/dlgprov/dlgevtatt.hxx 
b/scripting/source/dlgprov/dlgevtatt.hxx
index 73a60706556d..2adcd03baa7a 100644
--- a/scripting/source/dlgprov/dlgevtatt.hxx
+++ b/scripting/source/dlgprov/dlgevtatt.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_SCRIPTING_SOURCE_DLGPROV_DLGEVTATT_HXX
-#define INCLUDED_SCRIPTING_SOURCE_DLGPROV_DLGEVTATT_HXX
+#pragma once
 
 #include 
 #include 
@@ -128,7 +127,4 @@ namespace dlgprov
 
 }   // namespace dlgprov
 
-
-#endif // SCRIPTING_DLGEVT_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/scripting/source/dlgprov/dlgprov.hxx 
b/scripting/source/dlgprov/dlgprov.hxx
index df3d37a7118c..fb5957619e08 100644
--- a/scripting/source/dlgprov/dlgprov.hxx
+++ b/scripting/source/dlgprov/dlgprov.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_SCRIPTING_SOURCE_DLGPROV_DLGPROV_HXX
-#define INCLUDED_SCRIPTING_SOURCE_DLGPROV_DLGPROV_HXX
+#pragma once
 
 #include 
 #include 
@@ -156,7 +155,4 @@ css::uno::Sequence< OUString > _getSupportedServiceNames();
 
 } // namespace comp_DialogModelProvider
 
-
-#endif // INCLUDED_SCRIPTING_SOURCE_DLGPROV_DLGPROV_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129528] libcrypto.dll from LibreSSL MUST NOT GO in C:\Windows\System32

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129528

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1
 CC||serval2...@yahoo.fr

--- Comment #4 from Julien Nabet  ---
6.1 branch is EOL as 6.2 branch now.
Please uninstall this version and give a try at last stable LO version 6.3.4

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


[Libreoffice-bugs] [Bug 124176] Use pragma once instead of include guards

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124176

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

https://git.libreoffice.org/core/commit/0cc5185147402f6c5a4ff8e1256aa8348a04f75e

tdf#124176: Use pragma once instead of include guards

It will be available in 6.5.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-bugs] [Bug 128756] Incorrect restart numbering in imported DOCX

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128756

Timur  changed:

   What|Removed |Added

Summary|Incorrect list numbering in |Incorrect restart numbering
   |imported DOCX files |in imported DOCX
Version|6.3.2.2 release |Inherited From OOo
 OS|Windows (All)   |All

--- Comment #10 from Timur  ---
DOCX was never fine, from OO to LO 6.3 as written but now with LO 6.5+
different but wrong, just 1, 2, 3, 4, 5, 6, ..20.

-- 
You are receiving this mail because:
You 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 129529] Cannot open 819-pages ODT

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129529

Timur  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression

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


[Libreoffice-bugs] [Bug 108458] Label changes for Toolbar use degrade function listing in the Customize dialog--have duplicate entries on the list

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108458

--- Comment #43 from Heiko Tietze  ---
Only the command trees for main menu, toolbar, and context menu provide the
tooltips.

-- 
You are receiving this mail because:
You 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 129529] New: Cannot open 819-pages ODT

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129529

Bug ID: 129529
   Summary: Cannot open 819-pages ODT
   Product: LibreOffice
   Version: 6.2.8.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: major
  Priority: high
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gti...@gmail.com

Cannot open 819-pages ODT attachment 121138 from bug 96337 in LO master 6.5+.

Note: additional perf issue because OO 3.3 took much less to open compared to
LO 6.1 where worked (0:28 to 0:58 on my slow system).

-- 
You are receiving this mail because:
You 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 96337] FORMATTING: When numbering paragraphs, the numbers occasionnally forget their style (bold)

2019-12-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96337

Timur  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You 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/LOOLWSD.cpp

2019-12-20 Thread Marco Cecchetti (via logerrit)
 wsd/LOOLWSD.cpp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 35831935d8cc9a2135c3462157cb14a21b13d067
Author: Marco Cecchetti 
AuthorDate: Thu Dec 19 14:49:12 2019 +0100
Commit: Marco Cecchetti 
CommitDate: Fri Dec 20 20:32:42 2019 +0100

wsd: disable unsupported code on mobile

Change-Id: I5d51a536e32bdf3262f3d39dda8ddb3152fa4460
Reviewed-on: https://gerrit.libreoffice.org/85633
Reviewed-by: Marco Cecchetti 
Tested-by: Marco Cecchetti 

diff --git a/wsd/LOOLWSD.cpp b/wsd/LOOLWSD.cpp
index 3a597c4a1..3efed76e9 100644
--- a/wsd/LOOLWSD.cpp
+++ b/wsd/LOOLWSD.cpp
@@ -3475,7 +3475,7 @@ int LOOLWSD::innerMain()
 if (timeSinceStartMs > UnitWSD::get().getTimeoutMilliSeconds())
 UnitWSD::get().timeout();
 
-#if ENABLE_DEBUG
+#if ENABLE_DEBUG && !MOBILEAPP
 if (careerSpanMs > 0 && timeSinceStartMs > careerSpanMs)
 {
 LOG_INF(timeSinceStartMs << " milliseconds gone, finishing as 
requested. Setting ShutdownRequestFlag.");
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


  1   2   3   4   >