[Libreoffice-bugs] [Bug 132543] Car Hire in Delhi | Car Rental in Delhi

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132543

himajin100...@gmail.com changed:

   What|Removed |Added

Product|Impress Remote  |LibreOffice
  Component|General |deletionRequest
 Status|RESOLVED|CLOSED
Version|1.0.1   |unspecified

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


[Libreoffice-bugs] [Bug 132543] Car Hire in Delhi | Car Rental in Delhi

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132543

himajin100...@gmail.com changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|UNCONFIRMED |RESOLVED

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


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

2020-04-29 Thread Noel Grandin (via logerrit)
 writerperfect/source/common/DocumentHandler.cxx |   10 --
 1 file changed, 4 insertions(+), 6 deletions(-)

New commits:
commit dab8e9f7a8f70a72040e2df9bb69361c3e355e6b
Author: Noel Grandin 
AuthorDate: Wed Apr 29 19:15:16 2020 +0200
Commit: Noel Grandin 
CommitDate: Thu Apr 30 07:40:28 2020 +0200

no need to use strlen here

since librevenge's string class already has the length

Change-Id: I194ae49596dacc1205bdfb10d0a6a1833914f884
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93171
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/writerperfect/source/common/DocumentHandler.cxx 
b/writerperfect/source/common/DocumentHandler.cxx
index 869955aead67..35aa49181313 100644
--- a/writerperfect/source/common/DocumentHandler.cxx
+++ b/writerperfect/source/common/DocumentHandler.cxx
@@ -136,8 +136,7 @@ void DocumentHandler::startElement(const char* psName,
 {
 size_t keyLength = strlen(i.key());
 OUString sName(i.key(), keyLength, RTL_TEXTENCODING_UTF8);
-OUString sValue(i()->getStr().cstr(), strlen(i()->getStr().cstr()),
-RTL_TEXTENCODING_UTF8);
+OUString sValue(i()->getStr().cstr(), i()->getStr().len(), 
RTL_TEXTENCODING_UTF8);
 
 // libodfgen xml-encodes some attribute's value, so check if the 
value is encoded or not
 for (int j = 0; j < 9; ++j)
@@ -153,10 +152,9 @@ void DocumentHandler::startElement(const char* psName,
 {
 librevenge::RVNGString decodedValue("");
 unescapeXML(i()->getStr().cstr(),
-static_cast(strlen(i()->getStr().cstr())),
-decodedValue);
-sValue = OUString(decodedValue.cstr(), 
strlen(decodedValue.cstr()),
-  RTL_TEXTENCODING_UTF8);
+static_cast(i()->getStr().len()), decodedValue);
+sValue
+= OUString(decodedValue.cstr(), decodedValue.len(), 
RTL_TEXTENCODING_UTF8);
 break;
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - external/libwps

2020-04-29 Thread Stephan Bergmann (via logerrit)
 external/libwps/0001-Make-comparison-operator-member-functions-const.patch |   
49 ++
 external/libwps/UnpackedTarball_libwps.mk  |   
 3 
 2 files changed, 52 insertions(+)

New commits:
commit a4e427deb2d168bb8e95ba0b12a0d49441854f67
Author: Stephan Bergmann 
AuthorDate: Mon Oct 21 16:46:00 2019 +0200
Commit: Tor Lillqvist 
CommitDate: Thu Apr 30 07:38:56 2020 +0200

external/libwps: Make comparison operator member functions const

see commit message of
external/libwps/0001-Make-comparison-operator-member-functions-const.patch 
for
details

Change-Id: Ib8702f57f47aacc08628ceaccce23b487660b95c
Reviewed-on: https://gerrit.libreoffice.org/81249
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93183
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Tor Lillqvist 

diff --git 
a/external/libwps/0001-Make-comparison-operator-member-functions-const.patch 
b/external/libwps/0001-Make-comparison-operator-member-functions-const.patch
new file mode 100644
index ..c7bfb1e40aa2
--- /dev/null
+++ b/external/libwps/0001-Make-comparison-operator-member-functions-const.patch
@@ -0,0 +1,49 @@
+From 555b3e0c18ba16843541867d036da782ecdcdeb1 Mon Sep 17 00:00:00 2001
+From: Stephan Bergmann 
+Date: Mon, 21 Oct 2019 16:19:13 +0200
+Subject: [PATCH] Make comparison operator member functions const
+
+...which avoids overload resolution ambiguities in C++20, when a synthesized
+candidate of operator == for a reversed-argument rewrite conflicts with the
+actual operator ==, due to the asymmetric const-ness of the implicit object
+parameter and the RHS parameter.  (As observed with recent Clang 10 trunk with
+-std=c++2a when building libwps as part of LibreOffice:
+
+> QuattroDosChart.cpp:399:18: error: use of overloaded operator '!=' is 
ambiguous (with operand types 'WKSChart::Position' and 'WKSChart::Position')
+> if (ranges[0]!=ranges[1])
+> ~^ ~
+> ./WKSChart.h:78:8: note: candidate function
+> bool operator!=(Position ) const
+>  ^
+> ./WKSChart.h:73:8: note: candidate function
+> bool operator==(Position ) const
+>  ^
+> ./WKSChart.h:73:8: note: candidate function (with reversed parameter order)
+
+)
+---
+ src/lib/WKSChart.h | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/lib/WKSChart.h b/src/lib/WKSChart.h
+index 268fa4a..e490357 100644
+--- a/src/lib/WKSChart.h
 b/src/lib/WKSChart.h
+@@ -70,12 +70,12 @@ public:
+   //! operator<<
+   friend std::ostream <<(std::ostream , Position const 
);
+   //! operator==
+-  bool operator==(Position ) const
++  bool operator==(Position const ) const
+   {
+   return m_pos==pos.m_pos && m_sheetName==pos.m_sheetName;
+   }
+   //! operator!=
+-  bool operator!=(Position ) const
++  bool operator!=(Position const ) const
+   {
+   return !(operator==(pos));
+   }
+-- 
+2.21.0
+
diff --git a/external/libwps/UnpackedTarball_libwps.mk 
b/external/libwps/UnpackedTarball_libwps.mk
index f982c778a218..18e01a3cce84 100644
--- a/external/libwps/UnpackedTarball_libwps.mk
+++ b/external/libwps/UnpackedTarball_libwps.mk
@@ -15,8 +15,11 @@ $(eval $(call gb_UnpackedTarball_set_patchlevel,libwps,1))
 
 $(eval $(call gb_UnpackedTarball_update_autoconf_configs,libwps))
 
+# * external/libwps/0001-Make-comparison-operator-member-functions-const.patch 
is upstream at
+#    "Make comparison operator 
member functions const":
 $(eval $(call gb_UnpackedTarball_add_patches,libwps,\
$(if $(SYSTEM_REVENGE),,external/libwps/rpath.patch.0) \
+   
external/libwps/0001-Make-comparison-operator-member-functions-const.patch \
 ))
 
 ifneq ($(OS),MACOSX)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - external/libstaroffice

2020-04-29 Thread Stephan Bergmann (via logerrit)
 external/libstaroffice/0001-Fix-equality-operator-arguments.patch.1 |   56 
++
 external/libstaroffice/UnpackedTarball_libstaroffice.mk |3 
 2 files changed, 59 insertions(+)

New commits:
commit 44e2f126ea0c568cc3974979f1776d3b4d5ca2e1
Author: Stephan Bergmann 
AuthorDate: Mon Oct 21 17:29:12 2019 +0200
Commit: Tor Lillqvist 
CommitDate: Thu Apr 30 07:39:18 2020 +0200

iexternal/libstaroffice: Fix equality operator arguments

see commit message of
external/libstaroffice/0001-Fix-equality-operator-arguments.patch.1 for 
details

Change-Id: Iff882eb1e8b7a71e659a4513772e9049645812fb
Reviewed-on: https://gerrit.libreoffice.org/81256
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93184
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Tor Lillqvist 

diff --git 
a/external/libstaroffice/0001-Fix-equality-operator-arguments.patch.1 
b/external/libstaroffice/0001-Fix-equality-operator-arguments.patch.1
new file mode 100644
index ..27fd97727e25
--- /dev/null
+++ b/external/libstaroffice/0001-Fix-equality-operator-arguments.patch.1
@@ -0,0 +1,56 @@
+From 9c0ff663659a28720c4ee3f5752bb8ce8121648f Mon Sep 17 00:00:00 2001
+From: Stephan Bergmann 
+Date: Mon, 21 Oct 2019 17:17:48 +0200
+Subject: [PATCH] Fix equality operator arguments
+
+...which avoids overload resolution ambiguities in C++20, when a synthesized
+candidate of operator == for a reversed-argument rewrite conflicts with the
+actual operator ==, as one is a template specialization for int and the other
+for float.  (As observed with recent Clang 10 trunk with -std=c++2a when
+building libstaroffice as part of LibreOffice:
+
+> STOFFChart.cxx:230:63: error: use of overloaded operator '==' is ambiguous 
(with operand types 'STOFFVec2f' (aka 'STOFFVec2') and 'STOFFVec2i' (aka 
'STOFFVec2'))
+> bool autoPlace=m_legendPosition==STOFFBox2f()||m_dimension==STOFFVec2i();
+>~~~^ 
+> ./libstaroffice_internal.hxx:687:8: note: candidate function
+>   bool operator==(STOFFVec2 const ) const
+>^
+> ./libstaroffice_internal.hxx:687:8: note: candidate function (with reversed 
parameter order)
+> STOFFChart.cxx:270:63: error: use of overloaded operator '==' is ambiguous 
(with operand types 'STOFFVec2f' (aka 'STOFFVec2') and 'STOFFVec2i' (aka 
'STOFFVec2'))
+>   bool autoPlace=m_plotAreaPosition==STOFFBox2f()||m_dimension==STOFFVec2i();
+>~~~^ 
+> ./libstaroffice_internal.hxx:687:8: note: candidate function
+>   bool operator==(STOFFVec2 const ) const
+>^
+> ./libstaroffice_internal.hxx:687:8: note: candidate function (with reversed 
parameter order)
+
+)
+---
+ src/lib/STOFFChart.cxx | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/lib/STOFFChart.cxx b/src/lib/STOFFChart.cxx
+index 3e7310c..b861762 100644
+--- a/src/lib/STOFFChart.cxx
 b/src/lib/STOFFChart.cxx
+@@ -227,7 +227,7 @@ void STOFFChart::sendChart(STOFFSpreadsheetListenerPtr 
, librevenge::RV
+ 
+   // legend
+   if (m_legend.m_show) {
+-bool autoPlace=m_legendPosition==STOFFBox2f()||m_dimension==STOFFVec2i();
++bool autoPlace=m_legendPosition==STOFFBox2f()||m_dimension==STOFFVec2f();
+ style=librevenge::RVNGPropertyList();
+ m_legend.addStyleTo(style);
+ style.insert("librevenge:chart-id", styleId);
+@@ -267,7 +267,7 @@ void STOFFChart::sendChart(STOFFSpreadsheetListenerPtr 
, librevenge::RV
+   }
+   // plot area
+   style=librevenge::RVNGPropertyList();
+-  bool autoPlace=m_plotAreaPosition==STOFFBox2f()||m_dimension==STOFFVec2i();
++  bool autoPlace=m_plotAreaPosition==STOFFBox2f()||m_dimension==STOFFVec2f();
+   m_plotAreaStyle.addTo(style);
+   style.insert("librevenge:chart-id", styleId);
+   style.insert("chart:include-hidden-cells","false");
+-- 
+2.21.0
+
diff --git a/external/libstaroffice/UnpackedTarball_libstaroffice.mk 
b/external/libstaroffice/UnpackedTarball_libstaroffice.mk
index fdf668d196dc..d9c6d4ed962f 100644
--- a/external/libstaroffice/UnpackedTarball_libstaroffice.mk
+++ b/external/libstaroffice/UnpackedTarball_libstaroffice.mk
@@ -37,8 +37,11 @@ $(eval $(call gb_UnpackedTarball_add_patches,libstaroffice, \
 ))
 endif
 
+# * external/libstaroffice/0001-Fix-equality-operator-arguments.patch.1 is 
upstream at
+#    "Fix equality operator 
arguments":
 $(eval $(call gb_UnpackedTarball_add_patches,libstaroffice,\
external/libstaroffice/0001-add-missing-include-for-std-max.patch.1 \
+   external/libstaroffice/0001-Fix-equality-operator-arguments.patch.1 \
 ))
 
 # vim: set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - external/icu

2020-04-29 Thread Stephan Bergmann (via logerrit)
 external/icu/UnpackedTarball_icu.mk |1 
 external/icu/c++20-comparison.patch |  171 
 2 files changed, 172 insertions(+)

New commits:
commit 5a8a5229a43483d3468b769c3cbff03dbe052ecf
Author: Stephan Bergmann 
AuthorDate: Tue Oct 22 09:19:17 2019 +0200
Commit: Tor Lillqvist 
CommitDate: Thu Apr 30 07:38:31 2020 +0200

exernal/icu: Various C++20 comparison operator fixes

There are three patterns here:

* Missing const (source/common/uvector.cpp, source/common/uvector.h):  
Overload
  resolution ambiguities when a synthesized canditate of operator == for a
  reversed-argument rewrite conflicts with the actual operator ==, due to 
the
  asymmetric const-ness of the implicit object parameter and the RHS 
parameter:

> uniset.cpp:360:18: error: use of overloaded operator '!=' is ambiguous 
(with operand types 'icu_63::UVector' and 'icu_63::UVector')
> if (*strings != *o.strings) return FALSE;
>  ^  ~~
> ./uvector.h:385:23: note: candidate function
> inline UBool UVector::operator!=(const UVector& other) {
>   ^
> ./uvector.h:116:11: note: candidate function
> UBool operator==(const UVector& other);
>   ^
> ./uvector.h:116:11: note: candidate function (with reversed parameter 
order)

* UBool -> bool (source/i18n/tzrule.cpp, source/i18n/unicode/tzrule.h):
  [over.match.oper]/9 (of the current C++20 draft) states:  "If a rewritten
  operator== candidate is selected [...], its return type shall be cv bool":

> basictz.cpp:411:37: error: return type 'UBool' (aka 'signed char') of 
selected 'operator==' function for rewritten '==' comparison is not 'bool'
> if (*(tzt0.getTo()) == *tar) {
> ~~~ ^  
> ./unicode/tzrule.h:675:19: note: declared here
> virtual UBool operator==(const TimeZoneRule& that) const;
>   ^

* Additional operator != (source/i18n/unicode/rbtz.h,
  source/i18n/unicode/simpletz.h, source/i18n/unicode/smpdtfmt.h,
  source/i18n/unicode/stsearch.h, source/i18n/unicode/tzrule.h,
  source/i18n/unicode/vtzone.h):  Similar to the previous pattern, but here 
the
  original operator used was !=, so an alternative fix (that reqires fewer
  changes to the code overall) is to add specific operator != overloads:

> rbtz.cpp:79:15: error: use of overloaded operator '!=' is ambiguous (with 
operand types 'icu_63::RuleBasedTimeZone' and 'const icu_63::RuleBasedTimeZone')
> if (*this != right) {
> ~ ^  ~
> ./unicode/rbtz.h:87:19: note: candidate function
> virtual UBool operator!=(const TimeZone& that) const;
>   ^
> ./unicode/rbtz.h:77:19: note: candidate function
> virtual UBool operator==(const TimeZone& that) const;
>   ^
> ./unicode/rbtz.h:77:19: note: candidate function (with reversed parameter 
order)
> rbtz.cpp:101:23: error: use of overloaded operator '!=' is ambiguous 
(with operand types 'icu_63::InitialTimeZoneRule' and 
'icu_63::InitialTimeZoneRule')
> if (*fInitialRule != *(rbtz->fInitialRule)) {
> ~ ^  ~
> ./unicode/tzrule.h:257:19: note: candidate function
> virtual UBool operator!=(const TimeZoneRule& that) const;
>   ^
> ./unicode/tzrule.h:248:18: note: candidate function
> virtual bool operator==(const TimeZoneRule& that) const;
>  ^
> ./unicode/tzrule.h:248:18: note: candidate function (with reversed 
parameter order)
> rbtz.cpp:535:23: error: use of overloaded operator '!=' is ambiguous 
(with operand types 'icu_63::InitialTimeZoneRule' and 
'icu_63::InitialTimeZoneRule')
> if (*fInitialRule != *(that.fInitialRule)) {
> ~ ^  
> ./unicode/tzrule.h:257:19: note: candidate function
> virtual UBool operator!=(const TimeZoneRule& that) const;
>   ^
> ./unicode/tzrule.h:248:18: note: candidate function
> virtual bool operator==(const TimeZoneRule& that) const;
>  ^
> ./unicode/tzrule.h:248:18: note: candidate function (with reversed 
parameter order)
>
> olsontz.cpp:630:69: error: return type 'UBool' (aka 'signed char') of 
selected 'operator==' function for rewritten '!=' comparison is not 'bool'
> || (finalZone != NULL && z->finalZone != NULL && *finalZone != 
*z->finalZone)) {
>  ~~ ^  
~
> ./unicode/simpletz.h:112:19: note: declared here
> virtual UBool operator==(const TimeZone& that) const;
>   ^

> dtitvfmt.cpp:223:62: error: return type 'UBool' (aka 'signed char') of 
selected 

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

2020-04-29 Thread Tor Lillqvist (via logerrit)
 bridges/source/cpp_uno/shared/vtablefactory.cxx |6 ++
 hardened_runtime.xcent.in   |2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

New commits:
commit 2c366aae9263dc4115b054fe74b90cabea61fa0b
Author: Tor Lillqvist 
AuthorDate: Wed Apr 29 20:12:21 2020 +0300
Commit: Tor Lillqvist 
CommitDate: Thu Apr 30 07:38:02 2020 +0200

Use a less extreme entitlement for our run-time machine code generation

See 
https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_cs_disable-executable-page-protection
and 
https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_cs_allow-jit

Change-Id: I192038efa9cff4fb723bf4bdc8644f0b09f0fcda
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93181
Tested-by: Jenkins
Reviewed-by: Tor Lillqvist 

diff --git a/bridges/source/cpp_uno/shared/vtablefactory.cxx 
b/bridges/source/cpp_uno/shared/vtablefactory.cxx
index 018b808d89e6..036b81c4218a 100644
--- a/bridges/source/cpp_uno/shared/vtablefactory.cxx
+++ b/bridges/source/cpp_uno/shared/vtablefactory.cxx
@@ -77,6 +77,11 @@ extern "C" void * allocExec(
 std::size_t n = (*size + (pagesize - 1)) & ~(pagesize - 1);
 void * p;
 #if defined SAL_UNX
+#if defined MACOSX
+p = mmap(
+nullptr, n, PROT_READ | PROT_WRITE | PROT_EXEC, MAP_PRIVATE | MAP_ANON 
| MAP_JIT, -1,
+0);
+#else
 p = mmap(
 nullptr, n, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON, -1,
 0);
@@ -88,6 +93,7 @@ extern "C" void * allocExec(
 munmap (p, n);
 p = nullptr;
 }
+#endif
 #elif defined _WIN32
 p = VirtualAlloc(nullptr, n, MEM_COMMIT, PAGE_EXECUTE_READWRITE);
 #endif
diff --git a/hardened_runtime.xcent.in b/hardened_runtime.xcent.in
index d270c93ec694..2bbcda34f18c 100644
--- a/hardened_runtime.xcent.in
+++ b/hardened_runtime.xcent.in
@@ -6,7 +6,7 @@
 com.apple.security.automation.apple-events
 
 
-com.apple.security.cs.disable-executable-page-protection
+com.apple.security.cs.allow-jit
 
 
 com.apple.security.cs.disable-library-validation
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 132521] Data | Sort uses weird range (calc correct, user interface could be improved?)

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132521

b.  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
Summary|Data | Sort uses weird  |Data | Sort uses weird
   |range   |range (calc correct, user
   ||interface could be
   ||improved?)
   Severity|normal  |enhancement
 Ever confirmed|0   |1

--- Comment #4 from b.  ---
calc correctly 'marks' the selected target range in the sheet when opening the
sort dialog, but that's not the first thing a user looks at and invisible once
the range exceeds the visible area. 

having a selection field in the sort dialog, 'apply to:' with options 'sheet',
'automatic range', and a list of data ranges and named ranges in the sheet,
would clarify the situation for users. 

and it would be right to display the range name instead of the cell labels as
proposed in prev. comment.   

set to enhancement.

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


[Libreoffice-bugs] [Bug 132543] Car Hire in Delhi | Car Rental in Delhi

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132543

Javed ali  changed:

   What|Removed |Added

URL||https://www.carrentalindiad
   ||elhi.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-bugs] [Bug 132543] New: Car Hire in Delhi | Car Rental in Delhi

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132543

Bug ID: 132543
   Summary: Car Hire in Delhi | Car Rental in Delhi
   Product: Impress Remote
   Version: 1.0.1
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bookcarrentalindiade...@gmail.com

Description:
>From the instant you arrive inside the capital metropolis, Delhi, you'll be on
a be careful on your upcoming adventures in and around the city as you look at
the remarkable itinerary that you have made for the trip. So, in case you are
searching out some Car Hire in Delhi facility in the metropolis, take a look at
at this complete manual of all the matters you ought to know at the same time
as you are making plans to rent a car in Delhi.

https://www.carrentalindiadelhi.com/

Actual Results:
travel

Expected Results:
book car on rent in delhi


Reproducible: Always


User Profile Reset: No



Additional Info:
Travel

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


[Libreoffice-bugs] [Bug 115654] EDITING: Copied column labels reference wrong cell until file is reloaded, Part 2

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115654

--- Comment #6 from b.  ---
still repro with 6.3.6.2 winx64 unpar and 7.0.0.0.a0+ linx64 unpar homebrew, 

works better when copying to single cells (B2 copy, B3 paste, B4 paste), thus
only filling / copying to ranges affected? 

think title should reflect that, 

think to take #127269 as main and this as dup. reg. detailed description there, 

think 'critical' as producing wrong data, 

think reopening #115173, possibly dup, possibly it describes a more general
underlying problem and this is only a - reproducible - manifestation of it, 

add. observation: copying to C3 after B3:B4 produces '=#NAME?B$1' as formula
and '1' as value in C3, despite B1 being empty,

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


[Libreoffice-bugs] [Bug 129971] Delete email account on iPhone

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129971

Ming Hua  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED
URL|https://roadrunnermailsuppo |
   |rt.com/remove-email-account |
   |-from-iphone/   |
  Component|General |deletionRequest
Product|QA Tools|LibreOffice
 Resolution|FIXED   |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 129971] Delete email account on iPhone

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129971

Robot  changed:

   What|Removed |Added

URL|https://roadrunnermailsuppo |https://roadrunnermailsuppo
   |rt.com/roadrunner-email-pro |rt.com/remove-email-account
   |blems/  |-from-iphone/
Summary|roadrunner email problems   |Delete email account on
   ||iPhone

--- Comment #7 from Robot  ---
Select the record you need to erase in the Accounts area of the screen.
Notwithstanding the iCloud Settings screen, you can likewise sign out of your
iCloud account through the Mail, Contacts, Calendars screen. Open the Mail,
Contacts, Calendars screen, tap iCloud in the Accounts segment, look down the
screen and afterward tap Sign Out. 

https://roadrunnermailsupport.com/remove-email-account-from-iphone/

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


[Libreoffice-bugs] [Bug 62924] Add additional lines into a log scale of charts (minor ticks)

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62924

Ming Hua  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 132480] Lines are not spaced correctly for log scale graphs that don't start at a power of 10

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132480

Ming Hua  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=62
   ||924
 Blocks||90486
  Component|Calc|Chart

--- Comment #6 from Ming Hua  ---
(In reply to 7qia0tp02 from comment #5)
> Well, I use them frequently and the major ticks are always on the powers of
> the base, even if the labels are elsewhere.  99% of the time it's base 10,
> with the major ticks on the powers of 10 and minor ticks on the next
> significant digits.  Occasionally it's base 2 or some other thing
> (https://probablydance.com/2016/12/02/investigating-radix-sort/ for example)
> but the major ticks are still on the powers of the base.There's no
> reason to put them anywhere else, it just makes the chart much harder to
> read.
I didn't realize that the major grid lines are different from the convention as
well, until now.  Your analysis makes sense, let's ping the Chart meta bug and
see if we can attract any developer into this discussion.

There is also bug 62924 that have discussions about the same topic, though it
seems there are multiple issues in the comments there (labels for minor grids,
default values for major and minor grids, upcoming ODF standard, etc.), so I'm
leaving this as a seperate bug for now.


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 132542] New: LibreOffice Calc - cursor formula bar conflict

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132542

Bug ID: 132542
   Summary: LibreOffice Calc - cursor formula bar conflict
   Product: LibreOffice
   Version: 6.4.2.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lynnwoo...@gmail.com

Description:
When running my cursor over the formula bar/entry, rising vertically, it will
not go, struggles and falls to the bottom of that field.  I can click in the
field.
When running it vertically lowering vertically from the toolbars it jumps to
the bottom of the formula bar/entry field.
This is with a touchpad and pointing stick (integrated, Dell Precision M6700,
Win10)
I can force it to cross that field my moving the cursor faster and overshoot
it.
I have not noticed that behavior on this before, however, i only recently
upgraded this computer to Win10 from Win7 using the upgrade path (not fresh)
and LO was preinstalled. 
Last thing i did prior to this behavior was change the line color on one cell.



More info: I have a simple sheet with 3 columns of Summation and some rows of
notes at the bottom (I can submit if needed). I closed Calc and opened it with
a blank sheet. It does not have the same behavior, however the instructional
subtext Input Line flickers as i move the cursor Vert/horiz over that field.
When i move the cursor over the drop down fields, it does not flicker.  
I opened the ODS i was working with previously and the problem has stopped,
although i still get the flickering when moving over that field.

Also notice there is a new version. I will install 6.4.3.2 and test.



Steps to Reproduce:
1.open Calc
2. move cursor up and down over toolbar.
3.

Actual Results:
originally, the cursor would not cross the field upward. that has gone away now
and flickering occurs

Expected Results:
Should navigate easily and clearly.


Reproducible: Sometimes


User Profile Reset: No



Additional Info:
Version: 6.4.2.2 (x64)
Build ID: 4e471d8c02c9c90f512f7f9ead8875b57fcb1ec3
CPU threads: 8; OS: Windows 10.0 Build 18363; UI render: default; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
Calc: CL

SECOND BUG REPORT: I have selected a version 6.4.2.2 highlighted but this tool
will not allow me to submit stating i haven't selected a version.

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


[Libreoffice-bugs] [Bug 90486] [META] Chart bugs and enhancements

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486

Ming Hua  changed:

   What|Removed |Added

 Depends on||132480


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=132480
[Bug 132480] Lines are not spaced correctly for log scale graphs that don't
start at a power of 10
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 131286] macOS title bar not reflecting dark mode setting

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131286

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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


[Libreoffice-bugs] [Bug 129691] spell check, spelling, add to dictionary -- add all variants, like Friedenthal + Friedenthal's...

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129691

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 132129] slow startup on windows in connection with shared printers if the sharing pc is turned off

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132129

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 129110] macOS System Preference > Accessibility > Display > Increase Contrast actually decreases Accessibility for active tab in tabbed dialog box

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129110

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 132124] The images are not anchored to the spreadsheet. They move after the document is saved.

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132124

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 132122] Scrolling comments does not work when comments exceed page range

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132122

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 132123] Can't add fill to any boxes after the update

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132123

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 132136] The reference via the ADDRESS function should also work with the table number.

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132136

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 132139] Tabbed User Interface Hamburger menu outside of screen when window is maximized

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132139

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 132118] LoadComponentFromURL called with a wrong password prompts for a password.

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132118

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 132120] calc: macros: functionality 'getfilterfields' wrong result after load with active autofilter if databaserange has offset from cell A1

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132120

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 132114] specular light on 3D object does not work for front and back face

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132114

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 132121] LibreOffice 6.4.2.2 (x64) Writer sucks at kashidas when justifying Arabic text, whereas LibreOffice 4.1.3.2 (x86) Writer does quite good

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132121

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 132113] Opening PPSX slideshow using -o command line, the slideshow still opens in --show mode

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132113

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 129092] The font Times New Roman:dlig does not create ligatures

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129092

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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


[Libreoffice-bugs] [Bug 128536] Libreoffice Calc 6.3.2.2 fails opening xlsx files

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128536

--- Comment #2 from QA Administrators  ---
Dear bingger,

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 127888] recovery on webdav files does not work

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127888

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 129092] The font Times New Roman:dlig does not create ligatures

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129092

--- Comment #12 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

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


[Libreoffice-bugs] [Bug 127888] recovery on webdav files does not work

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127888

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

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 132480] Lines are not spaced correctly for log scale graphs that don't start at a power of 10

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132480

--- Comment #5 from 7qia0t...@sneakemail.com ---
(In reply to Ming Hua from comment #4)
> however I don't use logrithmatic scale graphs enough to
> confirm that everyone should draw it like the "good" one.

Well, I use them frequently and the major ticks are always on the powers of the
base, even if the labels are elsewhere.  99% of the time it's base 10, with the
major ticks on the powers of 10 and minor ticks on the next significant digits.
 Occasionally it's base 2 or some other thing
(https://probablydance.com/2016/12/02/investigating-radix-sort/ for example)
but the major ticks are still on the powers of the base.There's no reason
to put them anywhere else, it just makes the chart much harder to read.

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


[Libreoffice-bugs] [Bug 132540] Sidebar toolbar dropdown buttons open an extra small dropdown

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132540

V Stuart Foote  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO
 CC||vstuart.fo...@utsa.edu

--- Comment #1 from V Stuart Foote  ---
@Aaron, sorry going to need some screen clips (do a full desktop
+ and crop).

Anyhow on Windows builds 64-bit TB77 2020-04-28 not seeing any issue with the
sizing of the dropdown widgets on the Sidebar decks.

Version: 7.0.0.0.alpha0+ (x64)
Build ID: 7459b9ecb54a298f02d19089620149718f8d8d48
CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: Skia/Vulkan; VCL: win; 
Locale: en-US (en_US); 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 132541] New: edit chart lines

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132541

Bug ID: 132541
   Summary: edit chart lines
   Product: LibreOffice
   Version: 6.4.3.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jairrjunior@gmail.com

Created attachment 160105
  --> https://bugs.documentfoundation.org/attachment.cgi?id=160105=edit
arquivo excel onde mostra a simulação aula de física

My name is Jair Ribeiro Junior, I am a Master's student in Physics at the
Federal University of Ponta Grossa and together with my Advisor Prof Doctor
Paulo Cesar Facin we are developing a simulation for use in Physics classes
using a spreadsheet using the rotation button tool and line graphs. But we
cannot do this with Calc, as it is not possible to edit the graph line to
insert arrows at the ends. This feature exists in Microsoft Excel, as attached
file. It would be very important to insert this tool in the Libre Office Calc,
as it is an unprecedented, unprecedented work that we are developing, as it
will be used in public schools throughout Brazil.
We will look forward to the inclusion of this tool, for editing the Calc graph
line.

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


Re: Doxygen

2020-04-29 Thread Regis Perdreau
Yes i confirm there are some lacks in doxygen. I'm not able to generate
myself documentation.  It will be interesting to generate uml diagram.
The doxygen process never ends on my computer.  I'm trying to test
Sourcetrails which is recently opensourced. It looks better for me. My goal
would be to able to recognize easily design pattern, inheritance and where
add méthods  without pain. For occasionnal self taught developper, it's
tricky to have global view of classes without a tool.

Regards,

Régis.








Le jeu. 30 avr. 2020 à 03:35, Olivier Hallot 
a écrit :

> Hi Michael
>
> Em 29/04/2020 13:39, Michael Stahl escreveu:
> > hi Olivier,
> >
> (snip)
>
> >
> > so you are unhappy with the current state? what in particular don't you
> > like about the API documentation?
>
> The way information is presented to the non-developer is sub-optimal.
> Pre-Doxygen sdk was much easier to navigate and get information as the
> ues cases below
>
> With installed sdk in his computer at
> file:///opt/libreoffice6.4/sdk/index.html
>
> Let's suppose I am a candidate to macro programming and want to
>
> Use case 1 : Search for ThisComponent -> no matches
>
> Use Case 2 : What are the methods/properties under getSheets() ?
> Answer : search for getSheets returns
>
> file:///opt/libreoffice6.4/sdk/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1sheet_1_1XSpreadsheetDocument.html#a3ea7cfcc41c4d4690228e62ca4a6a55d
>
> where it says
> Public Member Functions
> com::sun::star::sheet::XSpreadsheetsgetSheets ()
> returns the collection of sheets in the document. More...
>
> NO mention to methods and properties of the collection object.
>
> just 2 examples on how hard it is to get information currently.
>
> I remind that if this sdk/documentation should be improved, we can look
> to get a resource funded by Google, provided we format into a tech doc
> project.
>
> Kind regards
> --
> Olivier Hallot
> LibreOffice Documentation Coordinator
> Comunidade LibreOffice
> Rio de Janeiro - Brasil - Local Time: UTC-03:00
> http://tdf.io/joinus
> ___
> LibreOffice mailing list
> LibreOffice@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/libreoffice
>
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Doxygen

2020-04-29 Thread Olivier Hallot
Hi Michael

Em 29/04/2020 13:39, Michael Stahl escreveu:
> hi Olivier,
> 
(snip)

> 
> so you are unhappy with the current state? what in particular don't you
> like about the API documentation?

The way information is presented to the non-developer is sub-optimal.
Pre-Doxygen sdk was much easier to navigate and get information as the
ues cases below

With installed sdk in his computer at
file:///opt/libreoffice6.4/sdk/index.html

Let's suppose I am a candidate to macro programming and want to

Use case 1 : Search for ThisComponent -> no matches

Use Case 2 : What are the methods/properties under getSheets() ?
Answer : search for getSheets returns
file:///opt/libreoffice6.4/sdk/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1sheet_1_1XSpreadsheetDocument.html#a3ea7cfcc41c4d4690228e62ca4a6a55d

where it says
Public Member Functions
com::sun::star::sheet::XSpreadsheetsgetSheets ()
returns the collection of sheets in the document. More...

NO mention to methods and properties of the collection object.

just 2 examples on how hard it is to get information currently.

I remind that if this sdk/documentation should be improved, we can look
to get a resource funded by Google, provided we format into a tech doc
project.

Kind regards
-- 
Olivier Hallot
LibreOffice Documentation Coordinator
Comunidade LibreOffice
Rio de Janeiro - Brasil - Local Time: UTC-03:00
http://tdf.io/joinus
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 132218] Crash in: com::sun::star::uno::Sequence::~Sequence()

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132218

--- Comment #5 from Ming Hua  ---
(In reply to gavinbstrange from comment #4)
> The easiest way is to 
> 1. select the cells E116 to Y116 and copy (cntl c).
> 2. select cell E117.
> 3. use the scroll bar to quickly move to the bottom of the sheet.
> 4. while pressing the shift button on the keyboard select cell Y648037.
> this should highlight all the cells between.
> 5. paste (cntl v)
Thanks, I gave it a try, but got my LO hang instead of crash.  It stuck at
"Saving File..." and the green progress bar at the status bar for about 5
minutes until I forced it to quit manually.

Will try again later, with maybe fewer rows, my computer is likely less
powerful than yours.

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


[Libreoffice-commits] core.git: helpcontent2

2020-04-29 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 639eab5d0b00f9b32b3a21ae16d6dfb196bb503a
Author: Olivier Hallot 
AuthorDate: Wed Apr 29 21:39:40 2020 -0300
Commit: Gerrit Code Review 
CommitDate: Thu Apr 30 02:39:40 2020 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to 5999ae5b939b73fbb194547a7bd134859a3c8a43
  - tdf#132534 Unmute l10nN in chemical formula

Change-Id: I8578cfe5b0752e997cd5d2c1c336e91315c2dedc
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/93185
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index ab3da37252f4..5999ae5b939b 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit ab3da37252f43152e8cae9970ef6897d0fbe6111
+Subproject commit 5999ae5b939b73fbb194547a7bd134859a3c8a43
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-04-29 Thread Olivier Hallot (via logerrit)
 source/text/smath/01/chemical.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5999ae5b939b73fbb194547a7bd134859a3c8a43
Author: Olivier Hallot 
AuthorDate: Wed Apr 29 21:36:25 2020 -0300
Commit: Olivier Hallot 
CommitDate: Thu Apr 30 02:39:40 2020 +0200

tdf#132534 Unmute l10nN in chemical formula

Change-Id: I8578cfe5b0752e997cd5d2c1c336e91315c2dedc
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/93185
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/smath/01/chemical.xhp 
b/source/text/smath/01/chemical.xhp
index 1d5ccaa2a..36a1f521f 100644
--- a/source/text/smath/01/chemical.xhp
+++ b/source/text/smath/01/chemical.xhp
@@ -31,7 +31,7 @@
 
 Isotopes
 U lsub 92 lsup 238
-nitalic{{U lsup 238 lsub 92 + n} ~~toward~~ {U lsup 239 
lsub 92 + %gamma} ~~binom{{size 6{{%beta}-{ {toward} ~~ Np lsup 239 lsub 93 
~~binom{{size 6{{%beta}-{{toward}~~ Pu lsup 239 lsub 94}
+nitalic{{U 
lsup 238 lsub 92 + n} ~~toward~~ {U lsup 239 lsub 92 + %gamma} ~~binom{{size 
6{{%beta}-{ {toward} ~~ Np lsup 239 lsub 93 ~~binom{{size 
6{{%beta}-{{toward}~~ Pu lsup 239 lsub 94}
 Ions
 SO_4^{2-{}} or 
SO_4^{2"-"}
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 132540] Sidebar toolbar dropdown buttons open an extra small dropdown

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132540

Aron Budea  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

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


[Libreoffice-bugs] [Bug 80430] [META] Documentation gap for new features

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80430

Olivier Hallot  changed:

   What|Removed |Added

 Depends on||132534


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=132534
[Bug 132534] Help L10N: "Chemical Formulas Examples" help page contains
unlocalizable string
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 132540] New: Sidebar toolbar dropdown buttons open an extra small dropdown

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132540

Bug ID: 132540
   Summary: Sidebar toolbar dropdown buttons open an extra small
dropdown
   Product: LibreOffice
   Version: 7.0.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: bibisected, bisected, regression
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@caesar.elte.hu
CC: caol...@redhat.com

Created attachment 160104
  --> https://bugs.documentfoundation.org/attachment.cgi?id=160104=edit
Pre-screenshot with sample window size for repro

This is easiest to see when reducing the window height so it ends a bit below
the Character sidebar deck in Writer (see attached screenshot).
Align the window with near the bottom of the screen, so the color picker on the
deck opens upwards.
Click on one of the color pickers on the sidebar.

=> Apart from the normal dropdown (which opens upwards now), there's a small,
empty dropdown as well.
The small dropdown is shown when the dropdown opens downwards as well, just
mostly obscured.

I can't take a screenshot with a dropdown open, the attached screenshot shows
an example of the size at which the dropdown opens upwards.

This is a regression from the following commit. Adding CC: to Caolán McNamara.
https://cgit.freedesktop.org/libreoffice/core/commit/?id=850b8de31c5be5127eac16a4f5cc18c26a582e53
author  Caolán McNamara 2020-04-19 20:36:17
+0100
committer   Caolán McNamara 2020-04-21 11:52:58
+0200

weld sidebar text panel

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


[Libreoffice-bugs] [Bug 132534] Help L10N: "Chemical Formulas Examples" help page contains unlocalizable string

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132534

Olivier Hallot  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |ASSIGNED
   Assignee|libreoffice-b...@lists.free |olivier.hallot@libreoffice.
   |desktop.org |org
 Blocks||80430


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80430
[Bug 80430] [META] Documentation gap for new features
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 132532] Flowchart shows empty boxes when converted from word doc to pdf

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132532

--- Comment #6 from Bart  ---
Created attachment 160103
  --> https://bugs.documentfoundation.org/attachment.cgi?id=160103=edit
word graphs - in LibreOffice 6.3.png

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


[Libreoffice-bugs] [Bug 132532] Flowchart shows empty boxes when converted from word doc to pdf

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132532

--- Comment #5 from Bart  ---
Created attachment 160102
  --> https://bugs.documentfoundation.org/attachment.cgi?id=160102=edit
test.pdf

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


[Libreoffice-bugs] [Bug 132532] Flowchart shows empty boxes when converted from word doc to pdf

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132532

Bart  changed:

   What|Removed |Added

 CC||bart...@tushmail.com

--- Comment #4 from Bart  ---
I can reproduce this, but only with LibreOffice version 6.3.4.1 . 

With versions 6.1 and 7.0 everything looks really good. As an example I
attached "test.pdf".

The screen copy in the attachment shows you what I get when I open your
document in version 6.3.4.1. This is also what I see in the PDF that you
attached. I suspect this is also what Durgapriyanka mentioned.

If you start LibreOffice from the Start menu, open the document, and in
LibreOffice you select
   File -> Print Preview
then does the preview look good?

If it doesn't look good in LibreOffice itself, or in the LibreOffice print
preview, then I don't expect the PDF to look good.

PS: I'm not a developer. I submitted a few bugs/reports myself and I'm hoping
to help by trying to confirm other bugs

~~~

Here are the steps that I took:

I first tried this on Linux/Debian10 with LibreOffice 6.1 and LibreOffice 7.0
by starting LibreOffice from the Linux/Debian start menu. In LibreOffice I
tried this with the next menu options:
   File -> Print -> Print to File ...
but also with the command:
   File -> Export As -> Export As PDF ...

Then I copied your document to my /tmp directoru, I opened a terminal window
and gave the command:
  $ soffice --headless --nolockcheck --nodefault --nofirststartwizard --nologo
--norestore --convert-to pdf --outdir /tmp /tmp/test.docx

~~~

   Here are the versions that I tried:

When I give the command:
  $ soffice
LibreOffice is started and when I choose
   Help -> About LibreOffice
I get the next version:

Version: 6.1.5.2
Build ID: 1:6.1.5-3+deb10u5
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: gtk2; 
Locale: en-US (en_US.UTF-8); Calc: group threaded

When I start LibreOffice from the Linux/Debian start menu I get the next
versions:

Version: 6.1.5.2
Build ID: 1:6.1.5-3+deb10u5
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: gtk2; 
Locale: en-US (en_US.UTF-8); Calc: group threaded

Version: 6.3.4.1
Build ID: a21169d87339dfa44546f33d6d159e89881e9d92
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: gtk2; 
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

Version: 7.0.0.0.alpha0+
Build ID: 4d03bd252274308f64332e7c0523068c38ac684a
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: gtk3; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2020-04-26_05:59:56
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 132463] FILEOPEN PPTX: "blurred edge" effect not reflected

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132463

Gerald Pfeifer  changed:

   What|Removed |Added

Summary|FILEOPEN PPTX: "blurred |FILEOPEN PPTX: "blurred
   |edge" effect no reflected   |edge" effect not reflected

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


[Libreoffice-bugs] [Bug 132528] Crash when opening Base (no .odb file) on Linux Mint 18.3

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132528

cme_li...@protonmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #2 from cme_li...@protonmail.com ---
Hi Julien, 

According to your suggestion, I renamed my /home//.config/libreoffice/4/user but the problem still happens.  

I'm planning to upgrade my distro once Linux Mint 20 is released.  This is
expected to be in 2-3 months.  I was hoping to be able to use LibreOffice 6.4
in a matter of a week or two, so that I can provide my LO Base app to my user
within the shorter timeframe.  

There isn't a note on the download page stating, "Deb and rpm files on LO
website are more for package maintainers which deal with dependencies."  

I look forward to your comments.  Thanks.

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


[Libreoffice-bugs] [Bug 129092] The font Times New Roman:dlig does not create ligatures

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129092

--- Comment #11 from mkass...@internode.net ---
Use OpenGL is off.

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


[Libreoffice-bugs] [Bug 115654] EDITING: Copied column labels reference wrong cell until file is reloaded, Part 2

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115654

Gilward Kukel  changed:

   What|Removed |Added

 CC||a.pera...@online.fr

--- Comment #5 from Gilward Kukel  ---
*** Bug 127269 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 127269] Calc and Formulas copying: Issue if a cell with formulas that use recognized names as addressing, is copy-pasted to a range of cells

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127269

Gilward Kukel  changed:

   What|Removed |Added

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

--- Comment #3 from Gilward Kukel  ---


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

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


[Libreoffice-bugs] [Bug 132539] FILEOPEN PPTX: "beveled oval" effect no reflected

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132539

--- Comment #3 from Gerald Pfeifer  ---
Created attachment 160101
  --> https://bugs.documentfoundation.org/attachment.cgi?id=160101=edit
This is how it looks like in 365's user interface

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


[Libreoffice-bugs] [Bug 132539] FILEOPEN PPTX: "beveled oval" effect no reflected

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132539

--- Comment #2 from Gerald Pfeifer  ---
Created attachment 160100
  --> https://bugs.documentfoundation.org/attachment.cgi?id=160100=edit
This is how it looks in LO right 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 132539] FILEOPEN PPTX: "beveled oval" effect no reflected

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132539

--- Comment #1 from Gerald Pfeifer  ---
Created attachment 160099
  --> https://bugs.documentfoundation.org/attachment.cgi?id=160099=edit
How it should look like (Office 365)

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


[Libreoffice-bugs] [Bug 132539] New: FILEOPEN PPTX: "beveled oval" effect no reflected

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132539

Bug ID: 132539
   Summary: FILEOPEN PPTX: "beveled oval" effect no reflected
   Product: LibreOffice
   Version: 7.0.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ger...@pfeifer.com

Created attachment 160098
  --> https://bugs.documentfoundation.org/attachment.cgi?id=160098=edit
Sample PPTX document

Receiving the original deck including of this slide I noticed that this
particular slide looked very oddly.  Investigating with Office 365 I
realized there is an effect labeled "beveled oval" that we are missing.

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


[Libreoffice-commits] core.git: Branch 'libreoffice-6-4' - icon-themes/sifr icon-themes/sifr_dark icon-themes/sifr_dark_svg icon-themes/sifr_svg

2020-04-29 Thread Rizal Muttaqin (via logerrit)
 icon-themes/sifr/cmd/32/insertfooter.png  |binary
 icon-themes/sifr/cmd/32/insertheader.png  |binary
 icon-themes/sifr/cmd/32/insertlayer.png   |binary
 icon-themes/sifr/cmd/32/modifylayer.png   |binary
 icon-themes/sifr/cmd/lc_insertfooter.png  |binary
 icon-themes/sifr/cmd/lc_insertheader.png  |binary
 icon-themes/sifr/links.txt|   11 +--
 icon-themes/sifr_dark/cmd/32/insertfooter.png |binary
 icon-themes/sifr_dark/cmd/32/insertheader.png |binary
 icon-themes/sifr_dark/cmd/32/insertlayer.png  |binary
 icon-themes/sifr_dark/cmd/32/modifylayer.png  |binary
 icon-themes/sifr_dark/cmd/lc_insertfooter.png |binary
 icon-themes/sifr_dark/cmd/lc_insertheader.png |binary
 icon-themes/sifr_dark/links.txt   |   11 +--
 icon-themes/sifr_dark_svg/cmd/32/insertfooter.svg |1 +
 icon-themes/sifr_dark_svg/cmd/32/insertheader.svg |1 +
 icon-themes/sifr_dark_svg/cmd/32/insertlayer.svg  |1 +
 icon-themes/sifr_dark_svg/cmd/32/modifylayer.svg  |1 +
 icon-themes/sifr_dark_svg/cmd/lc_insertfooter.svg |1 +
 icon-themes/sifr_dark_svg/cmd/lc_insertheader.svg |1 +
 icon-themes/sifr_svg/cmd/32/insertfooter.svg  |1 +
 icon-themes/sifr_svg/cmd/32/insertheader.svg  |1 +
 icon-themes/sifr_svg/cmd/32/insertlayer.svg   |1 +
 icon-themes/sifr_svg/cmd/32/modifylayer.svg   |1 +
 icon-themes/sifr_svg/cmd/lc_insertfooter.svg  |1 +
 icon-themes/sifr_svg/cmd/lc_insertheader.svg  |1 +
 26 files changed, 30 insertions(+), 4 deletions(-)

New commits:
commit c00e8e4eba51caef8b86c270e4212a3be770803d
Author: Rizal Muttaqin 
AuthorDate: Wed Apr 29 18:11:31 2020 +0700
Commit: Rizal Muttaqin 
CommitDate: Thu Apr 30 00:21:15 2020 +0200

Sifr: Add Modify Layer, Header & Footer icons

Change-Id: I4f630eeba71e64a368f1af41aba5f872c9bbdb4f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93150
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 
(cherry picked from commit be8020ff18f8971df091057ee4d8b4d06ecf61eb)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93132

diff --git a/icon-themes/sifr/cmd/32/insertfooter.png 
b/icon-themes/sifr/cmd/32/insertfooter.png
new file mode 100644
index ..d85cdf7f5769
Binary files /dev/null and b/icon-themes/sifr/cmd/32/insertfooter.png differ
diff --git a/icon-themes/sifr/cmd/32/insertheader.png 
b/icon-themes/sifr/cmd/32/insertheader.png
new file mode 100644
index ..618ca9489ea4
Binary files /dev/null and b/icon-themes/sifr/cmd/32/insertheader.png differ
diff --git a/icon-themes/sifr/cmd/32/insertlayer.png 
b/icon-themes/sifr/cmd/32/insertlayer.png
new file mode 100644
index ..22b32b213a5a
Binary files /dev/null and b/icon-themes/sifr/cmd/32/insertlayer.png differ
diff --git a/icon-themes/sifr/cmd/32/modifylayer.png 
b/icon-themes/sifr/cmd/32/modifylayer.png
new file mode 100644
index ..ce028e06b793
Binary files /dev/null and b/icon-themes/sifr/cmd/32/modifylayer.png differ
diff --git a/icon-themes/sifr/cmd/lc_insertfooter.png 
b/icon-themes/sifr/cmd/lc_insertfooter.png
new file mode 100644
index ..9d87f4b748a9
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_insertfooter.png differ
diff --git a/icon-themes/sifr/cmd/lc_insertheader.png 
b/icon-themes/sifr/cmd/lc_insertheader.png
new file mode 100644
index ..20cb75239d41
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_insertheader.png differ
diff --git a/icon-themes/sifr/cmd/sc_insertpagefooter.png 
b/icon-themes/sifr/cmd/sc_insertfooter.png
similarity index 100%
rename from icon-themes/sifr/cmd/sc_insertpagefooter.png
rename to icon-themes/sifr/cmd/sc_insertfooter.png
diff --git a/icon-themes/sifr/cmd/sc_insertpageheader.png 
b/icon-themes/sifr/cmd/sc_insertheader.png
similarity index 100%
rename from icon-themes/sifr/cmd/sc_insertpageheader.png
rename to icon-themes/sifr/cmd/sc_insertheader.png
diff --git a/icon-themes/sifr/links.txt b/icon-themes/sifr/links.txt
index 6deb62c2a57f..c8aec162cee8 100644
--- a/icon-themes/sifr/links.txt
+++ b/icon-themes/sifr/links.txt
@@ -117,6 +117,8 @@ cmd/32/insertobjectchart.png cmd/32/drawchart.png
 cmd/32/insertobjectfloatingframe.png cmd/32/insertframe.png
 cmd/32/insertobjectstarmath.png cmd/32/insertmath.png
 cmd/32/insertpagefield.png cmd/32/insertpagenumberfield.png
+cmd/32/insertpagefooter.png cmd/32/insertfooter.png
+cmd/32/insertpageheader.png cmd/32/insertheader.png
 cmd/32/insertpatternfield.png cmd/32/patternfield.png
 cmd/32/insertpivottable.png cmd/32/datadatapilotrun.png
 cmd/32/insertpushbutton.png cmd/32/pushbutton.png
@@ -172,6 +174,8 @@ cmd/lc_insertobjectchart.png cmd/lc_drawchart.png
 cmd/lc_insertobjectfloatingframe.png cmd/lc_insertframe.png
 cmd/lc_insertobjectstarmath.png cmd/lc_insertmath.png
 cmd/lc_insertpagefield.png cmd/lc_insertpagenumberfield.png
+cmd/lc_insertpagefooter.png 

[Libreoffice-ux-advise] [Bug 63967] Ability to Quickly Get Word Count of Sections Using Navigator

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63967

--- Comment #6 from Jim Raykowski  ---
Created attachment 160097
  --> https://bugs.documentfoundation.org/attachment.cgi?id=160097=edit
video demo of sections tool tip displaying word count in section

-- 
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 132520] Images with lines on top (Graphs) not appearing normally

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132520

--- Comment #3 from Durgapriyanka  ---
Thank you for reporting the bug. When the word document is opened in LO Writer,
the graph appears scrambled and doesn't appear normal even before converting it
into a Pdf.

Version: 6.4.0.0.alpha1+ (x86)
Build ID: ec7374ff84c71edfbb30d6e4dc5b486b6df7107f
CPU threads: 2; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: default;
VCL: win; 
TinderBox: Win-x86@42, Branch:master, Time: 2019-11-10_21:37:30
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded


and in

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

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


[Libreoffice-bugs] [Bug 132529] Text isn't disappearing when holding backspace (Skia/Vulkan)

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132529

--- Comment #2 from Durgapriyanka  ---
Thank you, I can not reproduce this bug in 

Version: 6.4.0.0.alpha1+ (x86)
Build ID: ec7374ff84c71edfbb30d6e4dc5b486b6df7107f
CPU threads: 2; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: default;
VCL: win; 
TinderBox: Win-x86@42, Branch:master, Time: 2019-11-10_21:37:30
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded


and in

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

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


[Libreoffice-bugs] [Bug 132530] Anchor mess after Undo or Redo after Save and reload

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132530

Durgapriyanka  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #4 from Durgapriyanka  ---
Thank you for reporting the bug. I can confirm the bug present in

Version: 6.4.0.0.alpha1+ (x86)
Build ID: ec7374ff84c71edfbb30d6e4dc5b486b6df7107f
CPU threads: 2; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: default;
VCL: win; 
TinderBox: Win-x86@42, Branch:master, Time: 2019-11-10_21:37:30
Locale: en-US (en_US); 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 58136] : Missing and Wrong Help According Option Dialogs

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=58136

--- Comment #7 from Harald Koester  ---
Checked with version 6.4.2 (Win10):

Respective (1): Buttons Reset, OK, Cancel and Default are now explainded in the
help page Options. A new button Apply has been introduced. This button is not
explained in the Help.

Respective (2): Tips of the buttons Reset, Apply, OK and Cancel are no longer
displayed if Extended Tips are enabled. It would be good, if these tips would
be introduced again. Especially because if you click Help these buttons are not
explained in the opened help page and you have to change to the help page
Options.

Respective (3): The current Getting Started Guide describes the version 6.0 and
is not up to date respective the buttons in the Options dialogue.

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


[Libreoffice-bugs] [Bug 132532] Flowchart shows empty boxes when converted from word doc to pdf

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132532

--- Comment #3 from Durgapriyanka  ---
Thank you for reporting the bug. The document shows empty flow chart boxes when
opened in LO Writer even before converting it into pdf.

Version: 6.4.0.0.alpha1+ (x86)
Build ID: ec7374ff84c71edfbb30d6e4dc5b486b6df7107f
CPU threads: 2; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: default;
VCL: win; 
TinderBox: Win-x86@42, Branch:master, Time: 2019-11-10_21:37:30
Locale: en-US (en_US); 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 132521] Data | Sort uses weird range

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132521

Nadie Nada Nunca  changed:

   What|Removed |Added

 Resolution|NOTABUG |---
 Status|RESOLVED|UNCONFIRMED

--- Comment #3 from Nadie Nada Nunca  ---
(In reply to m.a.riosv from comment #2)
> First: aquí somos personas voluntarias, ayudar a Nadie jugando al escondite
> no es muy agradable y tampoco apropiado.
> 
> I think the matter is simple, when there is a defined ranga in
> Menu/Data/Define range, and you are in it when doing a sort, it is used and
> sort options are keeped for it.

Miguel: no comprendo a qué te refieres con el primer párrafo de tu mensaje,
podrías explicar? ("Nadie nada nunca" es el título de un libro de Juan José
Saer btw, por si te referías a mi nombre de usuario, que igual no veo qué tiene
que ver con la pregunta.)

Regarding your second paragraph, THAT'S IT! I had evidently defined a range by
accident starting on row five. I deleted it now and Data | Sort works as
expected. Thanks for finding the issue!

This bug is resolved, but I'd like to make a suggestion so that Calc's
behaviour in this case is not confusing to the user: when using Data | Sort
inside a range that's been defined, the name of the range should appear in the
Name Box, instead of just the cells involved. (It's named the "Name Box" for a
reason after 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 132533] Wrong position after undo of Anchor as character

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132533

Durgapriyanka  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #2 from Durgapriyanka  ---
Thank you for reporting the bug. I can confirm the bug present in

Version: 6.4.0.0.alpha1+ (x86)
Build ID: ec7374ff84c71edfbb30d6e4dc5b486b6df7107f
CPU threads: 2; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: default;
VCL: win; 
TinderBox: Win-x86@42, Branch:master, Time: 2019-11-10_21:37:30
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded


and in

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

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


[Libreoffice-commits] online.git: kit/DummyLibreOfficeKit.cpp

2020-04-29 Thread Tor Lillqvist (via logerrit)
 kit/DummyLibreOfficeKit.cpp |1 +
 1 file changed, 1 insertion(+)

New commits:
commit ba727f44ddeba6765b67b07843ca89d58146146b
Author: Tor Lillqvist 
AuthorDate: Thu Apr 30 00:02:14 2020 +0300
Commit: Tor Lillqvist 
CommitDate: Wed Apr 29 23:54:36 2020 +0200

Include  for free()

Change-Id: I30c9f724e6418096c35900ad95f06c36f4f61b88
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/93180
Tested-by: Tor Lillqvist 
Reviewed-by: Tor Lillqvist 

diff --git a/kit/DummyLibreOfficeKit.cpp b/kit/DummyLibreOfficeKit.cpp
index 323da0e43..662a806b6 100644
--- a/kit/DummyLibreOfficeKit.cpp
+++ b/kit/DummyLibreOfficeKit.cpp
@@ -11,6 +11,7 @@
 
 #include "DummyLibreOfficeKit.hpp"
 
+#include 
 #include 
 #include 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 132519] INDIRECT() to other sheet from Workbook imported from Excel fails with Ref!

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132519

m.a.riosv  changed:

   What|Removed |Added

 Resolution|FIXED   |NOTABUG

--- Comment #7 from m.a.riosv  ---
Sorry but FIXED it's used when a patch to solve the issue is done.

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


[Libreoffice-bugs] [Bug 132535] Changing anchor to character and moving the image is slow/unresponsive

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132535

--- Comment #1 from Durgapriyanka  ---
Thank you for reporting the bug. I can reproduce this bug in

Version: 6.4.0.0.alpha1+ (x86)
Build ID: ec7374ff84c71edfbb30d6e4dc5b486b6df7107f
CPU threads: 2; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: default;
VCL: win; 
TinderBox: Win-x86@42, Branch:master, Time: 2019-11-10_21:37:30
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded


and in

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

The image moves only in one direction

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


[Libreoffice-bugs] [Bug 132507] Shapes can't be selected for a while after rotating a 3d object (SKIA/Raster)

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132507

--- Comment #7 from Regina Henschel  ---
Your new screen cast shows, that you are indeed working on the cube, which
means, that you are inside the scene. You can work on shapes outside the scene
only after you have left the scene. So you must use Ctrl+F3 or the command
"Exit all groups" from menu Shape or contextmenu to leave the scene.

I think, your problem has nothing to do with Skia, but with your bug 122735. A
scene works similar to a group. And as long as shapes outside the scene do not
become pale, you have no visual feedback whether you are inside the scene or
not.

Besides that, the scene is very large. Zoom out until you see all handles to
make sure, that clicking outside the scene to deselect it, is indeed a click
outside the scene. In case of large objects or large pages it is really easier
to use Esc-key to deselect something.

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


[Libreoffice-commits] core.git: translations

2020-04-29 Thread Christian Lohmaier (via logerrit)
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 861b556bb3779242951c03b3f68a32eb8c15db02
Author: Christian Lohmaier 
AuthorDate: Wed Apr 29 23:36:09 2020 +0200
Commit: Gerrit Code Review 
CommitDate: Wed Apr 29 23:36:09 2020 +0200

Update git submodules

* Update translations from branch 'master'
  to 2a61ce8496f6a5633af3ec710882358c3836abd0
  - update translations for master

and force-fix errors using pocheck

Change-Id: I9bbea708cab941400c98f6a83b67215bb19469fa

diff --git a/translations b/translations
index 6b2e705c5e47..2a61ce8496f6 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 6b2e705c5e47924cfa7c0ae90ab9d5d69cf87cb8
+Subproject commit 2a61ce8496f6a5633af3ec710882358c3836abd0
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 132521] Data | Sort uses weird range

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132521

m.a.riosv  changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 CC||miguelangelrv@libreoffice.o
   ||rg
 Status|UNCONFIRMED |RESOLVED

--- Comment #2 from m.a.riosv  ---
First: aquí somos personas voluntarias, ayudar a Nadie jugando al escondite no
es muy agradable y tampoco apropiado.

I think the matter is simple, when there is a defined ranga in Menu/Data/Define
range, and you are in it when doing a sort, it is used and sort options are
keeped for it.

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


[Libreoffice-bugs] [Bug 132538] Options are not shown for list (Numbered) when spellcheck is ON and first word is marked with error - EDITING

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132538

--- Comment #1 from thatho  ---
Created attachment 160096
  --> https://bugs.documentfoundation.org/attachment.cgi?id=160096=edit
sample file made as described in the first post

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


[Libreoffice-bugs] [Bug 132538] New: Options are not shown for list (Numbered) when spellcheck is ON and first word is marked with error - EDITING

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132538

Bug ID: 132538
   Summary: Options are not shown for list (Numbered) when
spellcheck is ON and first word is marked with error -
EDITING
   Product: LibreOffice
   Version: 6.4.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: milan.be...@gmail.com

Description:
When spellcheck is ON and first word in the item of a numbered list is marked
with error, the option menu is not possible to open by right-click on the item
number.

Steps to Reproduce:
1. create a numbered list
2. add to items and write a sentence in sense to one and a non-sense to the
other
3. make sure a spellcheck is active
4. try to open menu (right-click) onto the numbers of the items


Actual Results:
Menu is not possible to open on item with spellcheck error.

Expected Results:
Menu is possible to open on item with the first word with spellcheck error.


Reproducible: Always


User Profile Reset: No



Additional Info:
Workaround: Switch off the spellcheck or add a word with sense to the beginning
of the sentence.

Version: 6.4.3.2 (x64)
Build ID: 747b5d0ebf89f41c860ec2a39efd7cb15b54f2d8
CPU threads: 8; OS: Windows 10.0 Build 18362; UI render: default; VCL: win; 
Locale: cs-CZ (cs_CZ); 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 132519] INDIRECT() to other sheet from Workbook imported from Excel fails with Ref!

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132519

ThomasU  changed:

   What|Removed |Added

 Resolution|NOTABUG |FIXED

--- Comment #6 from ThomasU  ---
Many thanks, Miguel!
I think that solves it. I will try to contribute to the documentation because
this INDIRECT issue and importing from Excel causes difficulties to many.

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


[Libreoffice-bugs] [Bug 132537] Image attached to anchor is fixed on the bottom of the page (can't be dragged around)

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132537

Telesto  changed:

   What|Removed |Added

Version|7.0.0.0.alpha0+ Master  |Inherited From OOo

--- Comment #2 from Telesto  ---
Also in
LibreOffice 3.3.0 
OOO330m19 (Build:6)
tag libreoffice-3.3.0.4

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


[Libreoffice-bugs] [Bug 132537] Image attached to anchor is fixed on the bottom of the page (can't be dragged around)

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132537

--- Comment #1 from Telesto  ---
Created attachment 160095
  --> https://bugs.documentfoundation.org/attachment.cgi?id=160095=edit
Example file

Modified version of sample file of bug 131729

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


[Libreoffice-bugs] [Bug 132537] New: Image attached to anchor is fixed on the bottom of the page (can't be dragged around)

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132537

Bug ID: 132537
   Summary: Image attached to anchor is fixed on the bottom of the
page (can't be dragged around)
   Product: LibreOffice
   Version: 7.0.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Image attached to anchor is fixed on the bottom of the page (can't be dragged
around)

Steps to Reproduce:
1. Open the attached file
2. Try to move the image/frame on pag 2 up or to cut/paste it to the middle of
pag three. Or to move the anchor

Changing the anchor to paragraph is no alternative (try it)
Changing the anchor to page is working, except it fixed to the given page

Actual Results:
Image has a fixed position

Expected Results:
Should be movable


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.0.0.0.alpha0+ (x64)
Build ID: f845f74afaf087a46c82ee4209e29caca0980b71
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: GL; VCL: win; 
Locale: nl-NL (nl_NL); UI-Language: en-US
Calc: CL

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


[Libreoffice-bugs] [Bug 33961] cross reference to a list number, dot bug

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=33961

--- Comment #4 from Najwa Yaminah  ---
a cross-reference is a notice of another piece of a book where more data can be
found. A case of a cross-reference is a reference at the base of a page. The
cross-reference shows up as a connection that takes the peruser to the
referenced thing.

Source: https://writingservice.ae/ student consultant in UAE

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


[Libreoffice-bugs] [Bug 132536] Memory usage increases after every file-reload

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132536

--- Comment #1 from Telesto  ---
Created attachment 160094
  --> https://bugs.documentfoundation.org/attachment.cgi?id=160094=edit
Example file

Modified version of sample file of bug 131729

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


[Libreoffice-bugs] [Bug 132536] New: Memory usage increases after every file-reload

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132536

Bug ID: 132536
   Summary: Memory usage increases after every file-reload
   Product: LibreOffice
   Version: 7.0.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Memory usage increases after every file-reload

Steps to Reproduce:
1.open the attached file
2. Take a process monitor and check memory usage
3. File -> Reload & File -> Reload File -> Reload.
4. Close the file -> Still substantial memory usage

Actual Results:
Memory usage increases

Expected Results:
Should be stable


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.0.0.0.alpha0+ (x64)
Build ID: f845f74afaf087a46c82ee4209e29caca0980b71
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: GL; VCL: win; 
Locale: nl-NL (nl_NL); UI-Language: en-US
Calc: CL

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


[Libreoffice-bugs] [Bug 132519] INDIRECT() to other sheet from Workbook imported from Excel fails with Ref!

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132519

m.a.riosv  changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 Status|REOPENED|RESOLVED

--- Comment #5 from m.a.riosv  ---
INDIRECT($Sheet2!A1) the function gets the value in $Sheet2!A1 and tries to
interpreter their vallues as an address string.
For this the option is Menu/Tools/Options/LibreOffice Calc/Formula - Formula
options - Formula syntax

INDIRECT("$Sheet2!A1") gets the value in $Sheet2!A1
for this one it's the already mentioned Menu/Tools/Options/LibreOffice
Calc/Formula - Detailed calculation settings - Custrom  - Refence syntax
for string reference

Indirect help
https://help.libreoffice.org/6.4/en-US/text/scalc/01/04060109.html?DbPAR=CALC#bm_id3153181

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


[Libreoffice-bugs] [Bug 132506] Memory leaking when pressing Ignore Once/ Correct All multiple times

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132506

--- Comment #4 from Julien Nabet  ---
Created attachment 160093
  --> https://bugs.documentfoundation.org/attachment.cgi?id=160093=edit
Valgrind trace

I found the way to enable leak-check=full with:
export VALGRIND_OPTS="--memcheck:leak-check=yes"

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


[Libreoffice-bugs] [Bug 132506] Memory leaking when pressing Ignore Once/ Correct All multiple times

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132506

--- Comment #3 from Telesto  ---
Not in 4.4.7.2

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


[Libreoffice-bugs] [Bug 132535] New: Changing anchor to character and moving the image is slow/unresponsive

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132535

Bug ID: 132535
   Summary: Changing anchor to character and moving the image is
slow/unresponsive
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Changing anchor to character and moving the image is slow/unresponsive

Steps to Reproduce:
1. Open attachment 159209 (bug 131729)
2. Set the anchor to character -> slow
3. Drag the image or the other one (not anchored as character around) -> Slow



Actual Results:
Slow/hang

Expected Results:
Fast


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.0.0.0.alpha0+ (x64)
Build ID: f845f74afaf087a46c82ee4209e29caca0980b71
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: GL; VCL: win; 
Locale: nl-NL (nl_NL); UI-Language: en-US
Calc: CL

also in
Versie: 4.4.7.2 
Build ID: f3153a8b245191196a4b6b9abd1d0da16eead600
Locale: nl_NL

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

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


[Libreoffice-bugs] [Bug 129062] [META] Skia library bugs

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129062

Julien Nabet  changed:

   What|Removed |Added

 Depends on||132529


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=132529
[Bug 132529] Text isn't disappearing when holding backspace (Skia/Vulkan)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 132534] New: Help L10N: "Chemical Formulas Examples" help page contains unlocalizable string

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132534

Bug ID: 132534
   Summary: Help L10N: "Chemical Formulas Examples" help page
contains unlocalizable string
   Product: LibreOffice
   Version: 7.0.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: modestas.rim...@gmail.com
CC: olivier.hal...@libreoffice.org

Description:
The new Help page "Chemical Formulas Examples" (/text/smath/01/chemical.html)
contains a string with an example of chemical formula:

nitalic{{U lsup 238 lsub 92 + n} ~~toward~~ {U lsup 239 lsub 92 + %gamma}
~~binom{{size 6{{%beta}-{ {toward} ~~ Np lsup 239 lsub 93 ~~binom{{size
6{{%beta}-{{toward}~~ Pu lsup 239 lsub 94}

This string contains names of Greek letters %gamma and %beta, which are
localizable in Math application. When such (unlocalized) string is pasted into
Commands window of a localized Math app (that has %gamma and %beta translated),
"%gamma" and "%beta" are visible in the formula instead of proper Greek
letters.

The string with the formula example should be localizable and available in
Weblate.

Steps to Reproduce:
1. Paste the formula example to the Commands window in Math:

nitalic{{U lsup 238 lsub 92 + n} ~~toward~~ {U lsup 239 lsub 92 + %gamma}
~~binom{{size 6{{%beta}-{ {toward} ~~ Np lsup 239 lsub 93 ~~binom{{size
6{{%beta}-{{toward}~~ Pu lsup 239 lsub 94}

Actual Results:
"%gamma" and "%beta" visible in the formula

Expected Results:
Proper Greek letters displayed instead


Reproducible: Always


User Profile Reset: No



Additional Info:
https://helponline.libreoffice.org/7.0/lt/text/smath/01/chemical.html?=MATH=UNIX

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


[Libreoffice-bugs] [Bug 132529] Text isn't disappearing when holding backspace (Skia/Vulkan)

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132529

Julien Nabet  changed:

   What|Removed |Added

 Blocks||129062


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 132528] Crash when opening Base (no .odb file) on Linux Mint 18.3

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132528

Julien Nabet  changed:

   What|Removed |Added

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

--- Comment #1 from Julien Nabet  ---
Deb and rpm files on LO website are more for package maintainers which deal
with dependencies.

You should uninstall any LO debs then use LO from Mint repository.
+ rename your LO directory profile (see
https://wiki.documentfoundation.org/UserProfile#GNU.2FLinux)
If you want more recent LO version, you can upgrade Mint.

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


[Libreoffice-bugs] [Bug 132524] UI: Insert Notes on Slides

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132524

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---
Confused! Are you talking about while preparing the slides, or while presenting
the slide show?

If while preparing the slide, the edit mode selection to work with notes is the
'Notes' mode--not the 'Normal' mode which shows just the slide, nor the 'Slide
Sorter' view mode.

And, if while presenting--the prepared notes are available when presenting in
the multi-screen mode from the presenter console. Notes can not be edited there
as it is just a presentation aid:  Current slide, Next slide, Notes, and a
Slide picker.

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


[Libreoffice-bugs] [Bug 132529] Text isn't disappearing when holding backspace (Skia/Vulkan)

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132529

Bart  changed:

   What|Removed |Added

 CC||bart...@tushmail.com

--- Comment #1 from Bart  ---
Heel jammer, ;-) but this needs to be confirmed by someone other than me.

I tried this with Windows 10 and with Linux/Debian10, both with a LibreOffice
6.x version and a 7.0 version. In all cases it worked as expected. I hope I did
it exactly the way you did. 

The only difference between your Windows10/LibreOffice7.0 version and mine is
that yours is:
   CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Vulkan; VCL:
win; 
   Locale: nl-NL (nl_NL); UI-Language: en-US
while mine is:
   CPU threads: 4; OS: Windows 10.0 Build 17763; UI render: Skia/Raster; VCL:
win; 
   Locale: en-US (en_US); UI-Language: en-US
but I'm not sure if that explains the difference.


I'm adding all my findings in case they are useful for the developers:

   Linux/Debian10/LXDE with LibreOffice 6.1 ; works as expected

Version: 6.1.5.2
Build ID: 1:6.1.5-3+deb10u5
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: gtk2; 
Locale: en-US (en_US.UTF-8); Calc: group threaded

   Linux/Debian10/LXDE with LibreOffice 7.0 ; works as expected

Version: 7.0.0.0.alpha0+
Build ID: 4d03bd252274308f64332e7c0523068c38ac684a
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: gtk3; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2020-04-26_05:59:56
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded 

   Windows 10 with LibreOffice 6.3 ; works as expected

Version: 6.3.5.2 (x64)
Build ID: dd0751754f11728f69b42ee2af66670068624673
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
Calc: CL

   Windows 10 with LibreOffice 7.0 ; works as expected

Version: 7.0.0.0.alpha0+ (x64)
Build ID: f845f74afaf087a46c82ee4209e29caca0980b71
CPU threads: 4; OS: Windows 10.0 Build 17763; UI render: Skia/Raster; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
Calc: CL

PS: I'm not a developer. I submitted a few bugs/reports myself and I'm trying
to confirm the bugs that other people report here.

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


[Libreoffice-bugs] [Bug 132506] Memory leaking when pressing Ignore Once/ Correct All multiple times

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132506

--- Comment #2 from Julien Nabet  ---
Created attachment 160092
  --> https://bugs.documentfoundation.org/attachment.cgi?id=160092=edit
Valgrind trace

It seems we should use --leak-check=full but don't know how to add it so I
think the trace is useless.

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


[Libreoffice-bugs] [Bug 132525] UI: Administrator is not recognized while installation is in progress.

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132525

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |INSUFFICIENTDATA

--- Comment #1 from V Stuart Foote  ---
@Alain,

Thanks for filing, but unlikely to be an issue with the program as there have
literally thousands of successful installations on Windows systems by
non-administrators group member users.

To be sure of the issue for your installation we would need a verbose log of
the installation attempt(s)--i.e. a command line install with "msiexec.exe /i
LibreOffice_6.4.3.2_Win_x64.msi /L*v isntallLog.txt"

Absent that, there is nothing actionable for this issue.

None the less, thank you for making the effort and filing a BZ report.

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


[Libreoffice-bugs] [Bug 132467] Some fonts don't appear in LibreOffice

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132467

Julien Nabet  changed:

   What|Removed |Added

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

--- Comment #5 from Julien Nabet  ---
Ok then.
Since I don't have more questions, I put it back to UNCONFIRMED.
Since I can't help here, uncc myself.

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


[Libreoffice-bugs] [Bug 132533] Wrong position after undo of Anchor as character

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132533

--- Comment #1 from Telesto  ---
Created attachment 160091
  --> https://bugs.documentfoundation.org/attachment.cgi?id=160091=edit
Example file

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


[Libreoffice-bugs] [Bug 132533] New: Wrong position after undo of Anchor as character

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132533

Bug ID: 132533
   Summary: Wrong position after undo of Anchor as character
   Product: LibreOffice
   Version: 7.0.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Wrong position after undo of Anchor as character

Steps to Reproduce:
1. Open the attached file
2. Select the Fontwork
3. Anchor as character
4. Undo


Actual Results:
Fontwork moves to a different position

Expected Results:
Same position as before as character change


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.0.0.0.alpha0+ (x64)
Build ID: f845f74afaf087a46c82ee4209e29caca0980b71
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: GL; VCL: win; 
Locale: nl-NL (nl_NL); UI-Language: en-US
Calc: CL

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


[Libreoffice-bugs] [Bug 132527] LibreOffice will not open

2020-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132527

V Stuart Foote  changed:

   What|Removed |Added

 Resolution|FIXED   |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


  1   2   3   4   5   >