[Libreoffice-bugs] [Bug 137620] kmfl keyboard entry jumps around to other textboxes or beginning of line in editeng

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137620

--- Comment #11 from Justin L  ---
Created attachment 166609
  --> https://bugs.documentfoundation.org/attachment.cgi?id=166609=edit
kmfl_prebacktrace.txt: gdb results before applying patch

(In reply to Caolán McNamara from comment #9)
> I'm clearly missing a SolarMutexGuard
> somewhere, should be fairly easy to spot from a backtrace.

Your patch does get rid of the assert. The composed character is created, but
only the last character is replaced.  So ";;~a" turned into ;;~ä̃".

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


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

2020-10-21 Thread Michael Weghorn (via logerrit)
 cui/source/options/optjava.cxx |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

New commits:
commit 2976590ed9f727c24064c97d80a51e9891253119
Author: Michael Weghorn 
AuthorDate: Wed Oct 21 10:23:30 2020 +0200
Commit: Michael Weghorn 
CommitDate: Thu Oct 22 07:40:45 2020 +0200

Gray out Java options when framework's direct mode is used

The 'javasettings_${_OS}_${_ARCH}.xml' files are only
meant to be used when the application mode of the
Java framework is used, not in direct mode.

From ure/source/README:

> You can also use the
> UNO_JAVA_JFW_JREHOME deployment variable to specify the location of a 
JDK/JRE
> installation.  For more information on this variable, see
> http://udk.openoffice.org/common/man/spec/javavendorextension.sxw.

From that http://udk.openoffice.org/common/man/spec/javavendorextension.sxw 
:

> The direct mode of the framework is used within the build environment.
> Java is needed there in order to register Java UNO components with the
> regcomp tool. Direct mode means that no settings are written or read.
> That is the parameters UNO_JAVA_JFW_USER_DATA and
> UNO_JAVA_JFW_SHARED_DATA are not used.
> [...]
> Another example for using the direct mode is the SDK. The SDK uses the
> libraries from the office installation. When an SDK is configured then
> one specifies what Java is to be used. This Java shall then be used for
> all task which require Java including registration of UNO components. In
> order to override the java settings of the office the script which
> prepares the SDK environment sets these environment variables:
> UNO_JAVA_JFW_JREHOME=
> UNO_JAVA_JFW_ENV_CLASSPATH=true
> UNO_JAVA_JFW_VENDOR_SETTINGS=
> By setting UNO_JAVA_JFW_JREHOME the framework is switched into direct mode
> and the office settings are disregarded.

Therefore, gray out the Java options in the "Advanced" page in "Tools"
-> "Options" to not give the user the wrong impression that settings
made there actually have any effect when using direct mode, e.g. by
starting LibreOffice like this

UNO_JAVA_JFW_JREHOME=file:///usr/lib/jvm/java-11-openjdk-amd64/ 
./instdir/program/soffice --writer

and then realizing on restart that all manually made settings
were discarded (e.g. newly added Java installation does not
show up,...).

Change-Id: Ife017f9b5c6c6488f84201dd78b23305c67bec1b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104002
Tested-by: Jenkins
Reviewed-by: Michael Weghorn 

diff --git a/cui/source/options/optjava.cxx b/cui/source/options/optjava.cxx
index 3cfb0e535b12..6a54ab6e0fdf 100644
--- a/cui/source/options/optjava.cxx
+++ b/cui/source/options/optjava.cxx
@@ -564,7 +564,12 @@ void SvxJavaOptionsPage::Reset( const SfxItemSet* /*rSet*/ 
)
 #if HAVE_FEATURE_JAVA
 bool bEnabled = false;
 javaFrameworkError eErr = jfw_getEnabled(  );
-if ( eErr != JFW_E_NONE )
+if (eErr == JFW_E_DIRECT_MODE)
+{
+// direct mode disregards Java settings made here, so gray them out
+m_xJavaFrame->set_sensitive(false);
+}
+else if ( eErr != JFW_E_NONE )
 bEnabled = false;
 m_xJavaEnableCB->set_active(bEnabled);
 EnableHdl_Impl(*m_xJavaEnableCB);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-10-21 Thread Michael Weghorn (via logerrit)
 jvmfwk/source/framework.cxx |   65 +++-
 1 file changed, 35 insertions(+), 30 deletions(-)

New commits:
commit 903a5aca86b41cd6c3d814af8bdd60b6885d300b
Author: Michael Weghorn 
AuthorDate: Wed Oct 21 10:23:29 2020 +0200
Commit: Michael Weghorn 
CommitDate: Thu Oct 22 07:40:07 2020 +0200

Only read Java settings files in application mode

The 'javasettings_${_OS}_${_ARCH}.xml' files are only
meant to be used when the application mode of the
Java framework is used, not in direct mode.

From ure/source/README:

> You can also use the
> UNO_JAVA_JFW_JREHOME deployment variable to specify the location of a 
JDK/JRE
> installation.  For more information on this variable, see
> http://udk.openoffice.org/common/man/spec/javavendorextension.sxw.

From that http://udk.openoffice.org/common/man/spec/javavendorextension.sxw 
:

> The direct mode of the framework is used within the build environment.
> Java is needed there in order to register Java UNO components with the
> regcomp tool. Direct mode means that no settings are written or read.
> That is the parameters UNO_JAVA_JFW_USER_DATA and
> UNO_JAVA_JFW_SHARED_DATA are not used.
> [...]
> Another example for using the direct mode is the SDK. The SDK uses the
> libraries from the office installation. When an SDK is configured then
> one specifies what Java is to be used. This Java shall then be used for
> all task which require Java including registration of UNO components. In
> order to override the java settings of the office the script which
> prepares the SDK environment sets these environment variables:
> UNO_JAVA_JFW_JREHOME=
> UNO_JAVA_JFW_ENV_CLASSPATH=true
> UNO_JAVA_JFW_VENDOR_SETTINGS=
> By setting UNO_JAVA_JFW_JREHOME the framework is switched into direct mode
> and the office settings are disregarded.

Therefore, don't try to read the settings when using direct mode.
This makes the relevant code path for accessing the settings conditional
on 'jfw::JFW_MODE_APPLICATION' being used.

Otherwise, using direct mode e.g. by starting LibreOffice using

UNO_JAVA_JFW_JREHOME=file:///usr/lib/jvm/java-11-openjdk-amd64/ 
./instdir/program/soffice --writer

then going to the "Advanced" options in "Tools" -> "Options", where
the Java settings reside would result in this SAL_WARN being triggered

warn:jfw:10207:10207:jvmfwk/source/framework.cxx:119: [Java framework] 
Trying to access settings files in direct mode.

and no JVM at all being shown in the list of available
Java installations.

Change-Id: I2b98d822aed2b160f970c50ca695a9f3beeacd34
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104001
Tested-by: Jenkins
Reviewed-by: Michael Weghorn 

diff --git a/jvmfwk/source/framework.cxx b/jvmfwk/source/framework.cxx
index 5270439bda6a..5a7cef449b78 100644
--- a/jvmfwk/source/framework.cxx
+++ b/jvmfwk/source/framework.cxx
@@ -59,13 +59,8 @@ javaFrameworkError 
jfw_findAllJREs(std::vector> *pparI
 osl::MutexGuard guard(jfw::FwkMutex::get());
 
 jfw::VendorSettings aVendorSettings;
-//Add the JavaInfos found by jfw_plugin_getAllJavaInfos to the vector
 std::vector> vecInfo;
-//get the list of paths to jre locations which have been
-//added manually
-const jfw::MergedSettings settings;
-const std::vector& vecJRELocations =
-settings.getJRELocations();
+
 //Use all plug-in libraries to get Java installations.
 std::vector> arInfos;
 std::vector> infos;
@@ -81,32 +76,42 @@ javaFrameworkError 
jfw_findAllJREs(std::vector> *pparI
 for (auto & j: arInfos)
 vecInfo.push_back(std::move(j));
 
-//Check if any plugin can detect JREs at the location
-// of the paths added by jfw_addJRELocation
-//Check every manually added location
-for (auto const & ii: vecJRELocations)
+// direct mode disregards Java settings, so only retrieve
+// JREs from settings when application mode is used
+if (jfw::getMode() == jfw::JFW_MODE_APPLICATION)
 {
-std::unique_ptr aInfo;
-plerr = jfw_plugin_getJavaInfoByPath(
-ii,
-aVendorSettings,
-);
-if (plerr == javaPluginError::NoJre)
-continue;
-if (plerr == javaPluginError::FailedVersion)
-continue;
-else if (plerr != javaPluginError::NONE)
-return JFW_E_ERROR;
-
-// Was this JRE already added?
-if (std::none_of(
-vecInfo.begin(), vecInfo.end(),
-[](std::unique_ptr const & info) {
-return areEqualJavaInfo(
-info.get(), aInfo.get());
- 

[Libreoffice-commits] core.git: Branch 'libreoffice-7-0' - icon-themes/colibre icon-themes/colibre_svg

2020-10-21 Thread Rizal Muttaqin (via logerrit)
 icon-themes/colibre/cmd/32/footnotedialog.png |binary
 icon-themes/colibre/cmd/32/insertendnote.png  |binary
 icon-themes/colibre/cmd/32/insertfootnote.png |binary
 icon-themes/colibre/cmd/lc_footnotedialog.png |binary
 icon-themes/colibre/cmd/lc_insertendnote.png  |binary
 icon-themes/colibre/cmd/lc_insertfootnote.png |binary
 icon-themes/colibre/cmd/sc_footnotedialog.png |binary
 icon-themes/colibre/cmd/sc_insertendnote.png  |binary
 icon-themes/colibre/cmd/sc_insertfootnote.png |binary
 icon-themes/colibre_svg/cmd/32/footnotedialog.svg |2 +-
 icon-themes/colibre_svg/cmd/32/insertendnote.svg  |2 +-
 icon-themes/colibre_svg/cmd/32/insertfootnote.svg |2 +-
 icon-themes/colibre_svg/cmd/lc_footnotedialog.svg |2 +-
 icon-themes/colibre_svg/cmd/lc_insertendnote.svg  |2 +-
 icon-themes/colibre_svg/cmd/lc_insertfootnote.svg |2 +-
 icon-themes/colibre_svg/cmd/sc_footnotedialog.svg |3 ++-
 icon-themes/colibre_svg/cmd/sc_insertendnote.svg  |2 +-
 icon-themes/colibre_svg/cmd/sc_insertfootnote.svg |3 ++-
 18 files changed, 11 insertions(+), 9 deletions(-)

New commits:
commit 1e0e1b39f896a1887e5db35e307983a9fc39846c
Author: Rizal Muttaqin 
AuthorDate: Wed Oct 21 18:20:17 2020 +0700
Commit: Rizal Muttaqin 
CommitDate: Thu Oct 22 07:33:22 2020 +0200

Colibre: update endnote & footnote icons

Change-Id: I8c6ac16c83a0e46e424acde14acc048d7520b5cd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104617
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 
(cherry picked from commit 0b35ef17fedc96b31dd1dff67648a61fe884c857)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104599

diff --git a/icon-themes/colibre/cmd/32/footnotedialog.png 
b/icon-themes/colibre/cmd/32/footnotedialog.png
index 140acf9f97d8..ac746ac2fd05 100644
Binary files a/icon-themes/colibre/cmd/32/footnotedialog.png and 
b/icon-themes/colibre/cmd/32/footnotedialog.png differ
diff --git a/icon-themes/colibre/cmd/32/insertendnote.png 
b/icon-themes/colibre/cmd/32/insertendnote.png
index 1ad735b0c02a..dfd74b732ec9 100644
Binary files a/icon-themes/colibre/cmd/32/insertendnote.png and 
b/icon-themes/colibre/cmd/32/insertendnote.png differ
diff --git a/icon-themes/colibre/cmd/32/insertfootnote.png 
b/icon-themes/colibre/cmd/32/insertfootnote.png
index 603ed14ccf8b..306e175d48e6 100644
Binary files a/icon-themes/colibre/cmd/32/insertfootnote.png and 
b/icon-themes/colibre/cmd/32/insertfootnote.png differ
diff --git a/icon-themes/colibre/cmd/lc_footnotedialog.png 
b/icon-themes/colibre/cmd/lc_footnotedialog.png
index 0fd053835a97..0f0f1e70d700 100644
Binary files a/icon-themes/colibre/cmd/lc_footnotedialog.png and 
b/icon-themes/colibre/cmd/lc_footnotedialog.png differ
diff --git a/icon-themes/colibre/cmd/lc_insertendnote.png 
b/icon-themes/colibre/cmd/lc_insertendnote.png
index 935434c39796..56dcf6e4dedb 100644
Binary files a/icon-themes/colibre/cmd/lc_insertendnote.png and 
b/icon-themes/colibre/cmd/lc_insertendnote.png differ
diff --git a/icon-themes/colibre/cmd/lc_insertfootnote.png 
b/icon-themes/colibre/cmd/lc_insertfootnote.png
index 612ba9a9cba6..1e98d38b82ed 100644
Binary files a/icon-themes/colibre/cmd/lc_insertfootnote.png and 
b/icon-themes/colibre/cmd/lc_insertfootnote.png differ
diff --git a/icon-themes/colibre/cmd/sc_footnotedialog.png 
b/icon-themes/colibre/cmd/sc_footnotedialog.png
index cc7da28b6a51..5cf0424e7ec1 100644
Binary files a/icon-themes/colibre/cmd/sc_footnotedialog.png and 
b/icon-themes/colibre/cmd/sc_footnotedialog.png differ
diff --git a/icon-themes/colibre/cmd/sc_insertendnote.png 
b/icon-themes/colibre/cmd/sc_insertendnote.png
index 27d96eae1327..473068222ffe 100644
Binary files a/icon-themes/colibre/cmd/sc_insertendnote.png and 
b/icon-themes/colibre/cmd/sc_insertendnote.png differ
diff --git a/icon-themes/colibre/cmd/sc_insertfootnote.png 
b/icon-themes/colibre/cmd/sc_insertfootnote.png
index 14ad8dd8b31e..04d8adcabf22 100644
Binary files a/icon-themes/colibre/cmd/sc_insertfootnote.png and 
b/icon-themes/colibre/cmd/sc_insertfootnote.png differ
diff --git a/icon-themes/colibre_svg/cmd/32/footnotedialog.svg 
b/icon-themes/colibre_svg/cmd/32/footnotedialog.svg
index 5b6e6e12c35e..9fb565f6cfbf 100644
--- a/icon-themes/colibre_svg/cmd/32/footnotedialog.svg
+++ b/icon-themes/colibre_svg/cmd/32/footnotedialog.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end of file
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/cmd/32/insertendnote.svg 
b/icon-themes/colibre_svg/cmd/32/insertendnote.svg
index b6dc0d51eed7..ef1d7e435f26 100644
--- a/icon-themes/colibre_svg/cmd/32/insertendnote.svg
+++ b/icon-themes/colibre_svg/cmd/32/insertendnote.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end of file
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/cmd/32/insertfootnote.svg 

[Libreoffice-bugs] [Bug 124461] Creating workbook to workbook links no longer simple.

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124461

Roan  changed:

   What|Removed |Added

URL||https://www.coderepublics.c
   ||om/CSS/css-tutorial.php

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


[Libreoffice-bugs] [Bug 137620] kmfl keyboard entry jumps around to other textboxes or beginning of line in editeng

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137620

--- Comment #10 from Justin L  ---
(In reply to Caolán McNamara from comment #9)
> A quick "dnf search kmfl" doesn't show me something I could use to quickly
> reproduce locally under fedora.

KMFL is now an official release of http://keyman.com/linux.  
Q. What Linux distros will Keyman work with?

A. Keyman is built for amd64 architecture and runs on Debian, Ubuntu, Wasta
Linux. It can be compiled to run from source in most distributions.

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


[Libreoffice-bugs] [Bug 124462] (spam)

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124462

Roan  changed:

   What|Removed |Added

URL|https://www.thenortonsetup. |https://www.coderepublics.c
   |com/|om/HTML/html-tutorial.php

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


[Libreoffice-bugs] [Bug 35092] Inking functionality: Ink drawings / annotations with Stylus, Pen or Finger on Touchscreen or Tablet

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35092

Mahi  changed:

   What|Removed |Added

URL||https://www.totalassignment
   ||help.com/au

--- Comment #56 from Mahi  ---
The assignment I received on Consumer Behaviour Theory is worth the price. I
got awesome grades in this subject. I recommend this to all.
https://www.totalassignmenthelp.com/free-sample/consumer-behaviour-theory-assignment

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


[Libreoffice-bugs] [Bug 32484] Allow anchor settings in frame styles

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=32484

--- Comment #37 from John Kaufmann  ---
(In reply to Roland Baudin from comment #2)
> The bug is still there in LibreOffice 3.5.4.2 (on Linux). There is still no
> way to change the anchor style of graphic styles using the UI.
> 
> However, as was said on the Openoffice bugzilla, it can be done by setting
> the anchor type of an already inserted graphic object and then using the
> upper right button "Update styles".
> 
> This works for user created styles but NOT for default styles.

After spending some time using this work-around to fudge styles, I find that it
works initially, but objects with such style are (for want of a better way to
put it) unstable: 

The anchor type (in my case, "To paragraph") remains stable, but the attributes
attached to that anchor type may change. In particular, Vertical Position, if
specified "From top" by some distance to "Paragraph text area", will change its
reference to "Page text area". [It may not be coincidental that "Page text
area" is the reference for the default anchor type, which is "To page".] 

Note that, while the distance with respect to the reference can be changed by
updating the style, the reference /type/ (the style attribute which is
unstable) cannot be changed in that way. So the work-around can be tedious as
well as unreliable.

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


[Libreoffice-bugs] [Bug 137303] "This PDF file is encrypted and can't be opened. " when opening any pdf file from Draw

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137303

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 136001] Python import fails: No module named 'com'

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136001

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 137304] Press F4, without selecting an object, afterwards, cannot select any objects

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137304

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 137320] Open image in external tool from Libreoffice Calc results in high CPU usage

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137320

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 137307] Incorrect font size in a SlideShow

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137307

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 54030] Undo of "Replace All" destroys formatting

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=54030

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 137299] In a Writer table, SelectCell should include the background colour

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137299

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 105948] [META] Undo/Redo bugs and enhancements

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105948
Bug 105948 depends on bug 54030, which changed state.

Bug 54030 Summary: Undo of "Replace All" destroys formatting
https://bugs.documentfoundation.org/show_bug.cgi?id=54030

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 47415] vclcanvas does not show pure-text effects on X11

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47415

--- Comment #7 from QA Administrators  ---
Dear Thorsten Behrens (CIB),

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 77902] Device I/O error when appending to log file from Linux to Samba share

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77902

--- Comment #13 from QA Administrators  ---
Dear Jeff H,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 132365] Hyperlinks in text words are removed after spelling check

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132365

--- Comment #4 from QA Administrators  ---
Dear utilsites,

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 74233] FILESAVE: RTF resaved without modifications changes the tables formatting

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=74233

--- Comment #16 from QA Administrators  ---
Dear Benjamin Bellec,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 127747] LibreOffice Writer & Calc "Hands" and screen max/min don't work correctly.

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127747

--- Comment #4 from QA Administrators  ---
Dear mgcarroll116,

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 102847] [META] Quick Find, Search and Replace

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102847
Bug 102847 depends on bug 54030, which changed state.

Bug 54030 Summary: Undo of "Replace All" destroys formatting
https://bugs.documentfoundation.org/show_bug.cgi?id=54030

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 132362] libreoffice calc lose data and excel 2016 loses data too

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132362

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

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 54030] Undo of "Replace All" destroys formatting

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=54030

--- Comment #9 from QA Administrators  ---
Dear Michael Stahl (CIB),

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 132330] Global hyphenation won't turn off

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132330

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

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 137668] Basic InStr() does not support documented 'Start' argument

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137668

--- Comment #3 from Mike Kaganski  ---
The function is clarified in 7.1 (tdf#136213):

https://help.libreoffice.org/7.1/en-US/text/sbasic/shared/03120401.html

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


[Libreoffice-bugs] [Bug 137668] Basic InStr() does not support documented 'Start' argument

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137668

Mike Kaganski  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 136213] Documentation regarding String type in BASIC needs clarifications

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136213

Mike Kaganski  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 137483] Document freezes requiring document closure and reboot in order to continue typing

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137483

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #2 from V Stuart Foote  ---
OP replied in PM, closing resolved insufficient data.



Re: [Bug 137483] Document freezes requiring document closure and reboot in
order to continue typing

Just wanted to let you know that since I'm not a computer tech and couldn't
complete your form as requested since it included terminology with which I was
not familiar, it was necessary for me to locate a local computer tech to assist
me. 

Because, as I mentioned in my submitted ticket to Bugzilla, I began having the
document freezing issue right after the last Libre Office update, it was
determined that likely the problem had something to do with there being a bug
in the newest version of Libre Office, which is more than likely the case. 

Here was the fix:

* Uninstall most recent version of Libre Office

* Reinstall previous version of Libre Office

Result: Since this operation was completed yesterday and I left a document page
open all night to determine whether the problem (document/cursor freezing)
would reoccur, I was pleasantly surprised to find that the document/cursor was
no longer freezing, even after being open all night, nor did it occur when
several documents were open (as had occurred previously).

SUGGESTION: With all due respect, please make your submission forms a bit more
user friendly, a bit less technical and bit more  understandable at a
laypersons level. 

Thank you for your assistance,

Kat Starwolf


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


[Libreoffice-bugs] [Bug 137669] New: Different headers for each page

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137669

Bug ID: 137669
   Summary: Different headers for each page
   Product: LibreOffice
   Version: 6.4.6.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hudson...@gmail.com

Description:
Hello, everybody!

Firstly, sorry by my English, I am Brazilian and speak Portuguese.
=)

I've tried to report this problem in the Portuguese community, but I did not
have a solution yet.

I need to insert new headers with different content for each page.

However, I need to fill the headers with data not provided by titles nor
section, but handly inserted.

For example, consider the following example of formatting of headers:

Left page 1Different header--

Right page 2for each page--

Left page 3-without use

Right page 4title nor section---

Left page 5---but text---

Right page 6handly inserted--

I have tried to unmark the checkboxes in Page Style,
"Same content on right and left pages" and "Same content on first page", but it
did not work.

What I need to do to fix this problem? If it isn't a problem, but a inexistent
resource of Writer, could it be included into the program?

Thanks in advance!

Steps to Reproduce:
For example, consider the following example of formatting of headers:

Left page 1Different header--

Right page 2for each page--

Left page 3-without use

Right page 4title nor section---

Left page 5---but text---

Right page 6handly inserted--

Actual Results:
Left page 1Different header--

Right page 2for each page--

Left page 3-without use

Right page 4---for each page---

Left page 5-without use---

Right page 6for each page--

Expected Results:

Left page 1Header different--

Right page 2for each page--

Left page 3-without use

Right page 4title nor section---

Left page 5---but text---

Right page 6handly inserted--


Reproducible: Always


User Profile Reset: No



Additional Info:
None.

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


[Libreoffice-bugs] [Bug 137668] Basic InStr() does not support documented 'Start' argument

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137668

Jim Avera  changed:

   What|Removed |Added

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

--- Comment #2 from Jim Avera  ---
Ach! Never mind.   Start counts from 1, not 0.   

If you pass 0 you get "Invalid Procedure Call"

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


[Libreoffice-bugs] [Bug 113984] Content of a sub-table in another table is hidden by page footer when breaking across pages

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113984

--- Comment #13 from Kieran Grant  ---
Created attachment 166608
  --> https://bugs.documentfoundation.org/attachment.cgi?id=166608=edit
PDF showing that in 7.0.2.2 the situation has improved somewhat

As of 7.0.2.2 the content rows now appear to push successfully, but the
sub-table header row still is hidden.

Version: 7.0.2.2
Build ID: 8349ace3c3162073abd90d81fd06dcfb6b36b994
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: 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 137668] Basic InStr() does not support documented 'Start' argument

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137668

--- Comment #1 from Jim Avera  ---
I forgot to mention that ading the "Compare" argument does not make it work, so

  InStr(0, "abc", "b", 0)

still raises the "Invalid Procedure Call" error



Version: 6.4.8.0.0+
Build ID: 71a3f015f2ac45ad4a2625a3b6398f5d75feed40
CPU threads: 12; OS: Linux 5.4; UI render: default; VCL: gtk3; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:libreoffice-6-4, Time:
2020-10-01_08:33:37
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 137668] New: Basic InStr() does not support documented 'Start' argument

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137668

Bug ID: 137668
   Summary: Basic InStr() does not support documented 'Start'
argument
   Product: LibreOffice
   Version: 3.3.0 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jim.av...@gmail.com

Description:
The Basic language "InStr" function is documented to have an optional initial
argument giving the starting offset for searching.  However any attempt to pass
a number for the first argument raises an "Invalid Procedure Call" function.

Seems to be inherited from OO (occurs in LO 3.3)

Either this should be fixed, OR the documentation changed to say the 'start'
argument is not supported by Libre Office.  

To save the remaining hair on programmers' heads!

Here is the current (LO 7.x) documentation for the InStr function:

«
InStr ([Start As Long,] Text1 As String, Text2 As String[, Compare])

Parameters:

Start: A numeric expression that marks the position in a string where the
search for the specified substring starts. If you omit this parameter, the
search starts at the first character of the string. The maximum allowed value
is 65535.

Text1: The string expression that you want to search.

Text2: The string expression that you want to search for.

Compare: Optional numeric expression that defines the type of comparison. The
value of this parameter can be 0 or 1. The default value of 1 specifies a text
comparison that is not case-sensitive. The value of 0 specifies a binary
comparison that is case-sensitive.

To avoid a run-time error, do not set the Compare parameter if the first return
parameter is omitted.
»

[So it must be intended to work by checking the type of the first argument to
see if it is a string or a number]


Steps to Reproduce:
1. Start LO calc
2. Tools->Macros->Organize Macros->Basic
3. Navigate to the current document (e.g. "Untitled1", create a new module, and
paste the following Basic code into the empty module:


sub bugdemo
  Dim i
  Dim start as Long
  start = 0
  i = InStr(start, "abc", "b")
  MsgBox "Succeeded, returned " & i
end sub

4. Place cursor inside the above function and click "Run" button on the toolbar

Actual Results:
Popup says "Action not supported; Invalid procedure call"

Expected Results:
Should work, or else be documented to not work.


Reproducible: Always


User Profile Reset: No



Additional Info:
.

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


[Libreoffice-bugs] [Bug 107585] [META] Microsoft Office binary, text and xml file formats

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107585
Bug 107585 depends on bug 137605, which changed state.

Bug 137605 Summary: Hyperlinks not created when printing to .xps on Windows 10
https://bugs.documentfoundation.org/show_bug.cgi?id=137605

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTOURBUG

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


[Libreoffice-bugs] [Bug 137605] Hyperlinks not created when printing to .xps on Windows 10

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137605

tr00don  changed:

   What|Removed |Added

 Resolution|--- |NOTOURBUG
 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-bugs] [Bug 137667] New: Clac, API: queryContentCells doesn't correctly evaluate the flag bits 2^5 through 2^8

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137667

Bug ID: 137667
   Summary: Clac, API: queryContentCells doesn't correctly
evaluate the flag bits 2^5 through 2^8
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: j...@psilosoph.de

Created attachment 166606
  --> https://bugs.documentfoundation.org/attachment.cgi?id=166606=edit
Demnstrating the reported bug in detail

https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star_1_1sheet_1_1CellFlags.html#a54545dc062bc2be2d723d0cc34e8cbd2
defines flags which should be evaluated by the queryContentCells methods
(connecting them by OR). 
Bit 5 (value 32) e.g. should, if set, make the query find cells to which a hard
attribute was applied. Bit 6 (64) should find cells with an explicitly assigned
cell style ...
These and also the "objects" flag don't work.  

Everything should is demonstrated in the attached document. 

BTW: The UsedAreaCursor qualifies cells with hard attributes as used.

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


[Libreoffice-bugs] [Bug 137667] Calc, API: queryContentCells doesn't correctly evaluate the flag bits 2^5 through 2^8

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137667

Wolfgang Jäger  changed:

   What|Removed |Added

 CC||j...@psilosoph.de
Summary|Clac, API:  |Calc, API:
   |queryContentCells doesn't   |queryContentCells doesn't
   |correctly evaluate the flag |correctly evaluate the flag
   |bits 2^5 through 2^8|bits 2^5 through 2^8

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


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

2020-10-21 Thread Miklos Vajna (via logerrit)
 vcl/source/window/builder.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 9c7b02852fce033b008f2ccd1703fc10276cfb4e
Author: Miklos Vajna 
AuthorDate: Wed Oct 21 11:28:59 2020 +0200
Commit: Miklos Vajna 
CommitDate: Thu Oct 22 00:37:21 2020 +0200

vcl: remove leftover debug printf

Change-Id: I57f166309952ff459586d8eae0e9d1e3b1d7c4ab
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104615
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins

diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx
index 7072c1f42934..bea4f8f42390 100644
--- a/vcl/source/window/builder.cxx
+++ b/vcl/source/window/builder.cxx
@@ -1845,7 +1845,6 @@ VclPtr VclBuilder::makeObject(vcl::Window 
*pParent, const OString &
 m_pParserState->m_aButtonMenuMaps.emplace_back(id, sMenu);
 
 OUString sType = extractWidgetName(rMap);
-fprintf(stderr, "special name is %s\n", sType.toUtf8().getStr());
 if (sType.isEmpty())
 {
 xButton = extractStockAndBuildMenuButton(pParent, rMap);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124176

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

https://git.libreoffice.org/core/commit/113c6c9d91c8f8bb90cc29f4dbe73fcafdb995de

tdf#124176 Use pragma once instead of header guard

It will be available in 7.1.0.

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

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

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


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

2020-10-21 Thread Gokce Kuler (via logerrit)
 sw/source/core/text/inftxt.hxx |6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

New commits:
commit 113c6c9d91c8f8bb90cc29f4dbe73fcafdb995de
Author: Gokce Kuler 
AuthorDate: Wed Oct 21 00:32:04 2020 +0300
Commit: Gülşah Köse 
CommitDate: Wed Oct 21 23:58:31 2020 +0200

tdf#124176 Use pragma once instead of header guard

Change-Id: Icff67425dd38f0c8a5589973e1907bed097cdf1c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104583
Tested-by: Jenkins
Reviewed-by: Gülşah Köse 

diff --git a/sw/source/core/text/inftxt.hxx b/sw/source/core/text/inftxt.hxx
index 835600f22fdf..d3ce7116407b 100644
--- a/sw/source/core/text/inftxt.hxx
+++ b/sw/source/core/text/inftxt.hxx
@@ -16,8 +16,8 @@
  *   except in compliance with the License. You may obtain a copy of
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
-#ifndef INCLUDED_SW_SOURCE_CORE_TEXT_INFTXT_HXX
-#define INCLUDED_SW_SOURCE_CORE_TEXT_INFTXT_HXX
+#pragma once
+
 #include 
 #include 
 
@@ -783,6 +783,4 @@ inline void SwTextFormatInfo::SetParaFootnote()
 GetTextFrame()->SetFootnote( true );
 }
 
-#endif
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 137651] Importing CSV automatically converts data with no possibility of tweaking

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137651

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---
You simply need to spend some time setting up the Text Import dialog. 

Each field (a 'comma' separator in your text line) can be set as to handling it
needs. The import settings will reapply next usage--or you can save it and
reuse.  Help is here [1], or check the Calc guide or Getting started guide.

Set the 'comma' delimiter, and then assign Column types for each field. Should
clear things up for you.  If so, please close out this BZ issue.

=-ref-=
[1]
https://help.libreoffice.org/7.1/en-US/text/shared/00/0208.html?=WRITER=WIN

-- 
You are receiving this mail because:
You are the 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-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80430
Bug 80430 depends on bug 136435, which changed state.

Bug 136435 Summary: Explain new Outline features
https://bugs.documentfoundation.org/show_bug.cgi?id=136435

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 136435] Explain new Outline features

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136435

sdc.bla...@youmail.dk changed:

   What|Removed |Added

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

--- Comment #2 from sdc.bla...@youmail.dk ---
If "Outline" means "Outline Tracking", then this is a duplicate.

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

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


[Libreoffice-bugs] [Bug 135668] [LOCALHELP] Writer: add info about submenu items for "Headings" context menu in Navigator

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135668

sdc.bla...@youmail.dk changed:

   What|Removed |Added

 CC||gti...@gmail.com

--- Comment #12 from sdc.bla...@youmail.dk ---
*** Bug 136435 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 135310] [META] Writer outline view bugs and enhancements

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135310
Bug 135310 depends on bug 136435, which changed state.

Bug 136435 Summary: Explain new Outline features
https://bugs.documentfoundation.org/show_bug.cgi?id=136435

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 137658] Wrong font for pdf import

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137658

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #3 from V Stuart Foote  ---
The PDF is a form with the recipients name assigned 'Roboto Thin' font.

If that font is not present on system, it will receive a fall back
assignment--default is 'Liberation Sans Narrow'

You can handle the PDF either of two ways Insert -> Image onto a Draw cavnas,
and then from Shape -> 'Break' the image.  Initial insert will keep the 'Roboto
Thin' but the break will result in fall-back.  Or, you can open the PDF
directly, and the filter import will perform the break of the recipient name
with font fall-back.

If you need to maintain fidelity, use the insert as image with no break.  But
if you need to make minor changes to the form fields you either need to install
the needed font--or work with the fall-back font.

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


[Libreoffice-bugs] [Bug 137666] Tiles slide animation flashes after finishing and revealing the full sheet for split second

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137666

--- Comment #1 from Telesto  ---
Created attachment 166605
  --> https://bugs.documentfoundation.org/attachment.cgi?id=166605=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 137666] New: Tiles slide animation flashes after finishing and revealing the full sheet for split second

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137666

Bug ID: 137666
   Summary: Tiles slide animation flashes after finishing and
revealing the full sheet for split second
   Product: LibreOffice
   Version: 5.2.0.4 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Tiles slide animation flashes after finishing and revealing the full sheet for
split second

Steps to Reproduce:
1. Open the attached file
2. Press F5


Actual Results:
They Gray fontwork is shown after the slide animation finishes

Expected Results:
Shouldn't be visisble


Reproducible: Always


User Profile Reset: No



Additional Info:
Found in
7.1 with Skia and also GDI

and in
6.0 (with OpenGL turned on

and in
5.2 with OpenGL turned on looks OK with GDI (flashes but doesn't reveal
anything)

4.4.7.2 doesn't have the Tile animation (or for other reasons incompatible)

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


[Libreoffice-bugs] [Bug 137139] Crashes in Kubuntu with 6.4.6: ScSelectionTransferObj:com::sun::star::uno::Reference:Qt5MimeData

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137139

--- Comment #8 from Olivier Tilloy  ---
This bug looks similar to
https://bugs.documentfoundation.org/show_bug.cgi?id=131083, which the reporter
could initially reproduce quite reliably, but ended up closing after they
couldn't reproduce any longer. This was originally reported against 6.4.0.3,
and wasn't observed in 7.0.0.0.alpha0+.

In the errors.ubuntu.com tracker, the earliest version exhibiting the crash is
6.4.3, and there are new reports daily with 6.4.6.

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


[Libreoffice-commits] core.git: icon-themes/colibre icon-themes/colibre_svg

2020-10-21 Thread Rizal Muttaqin (via logerrit)
 icon-themes/colibre/cmd/32/footnotedialog.png |binary
 icon-themes/colibre/cmd/32/insertendnote.png  |binary
 icon-themes/colibre/cmd/32/insertfootnote.png |binary
 icon-themes/colibre/cmd/lc_footnotedialog.png |binary
 icon-themes/colibre/cmd/lc_insertendnote.png  |binary
 icon-themes/colibre/cmd/lc_insertfootnote.png |binary
 icon-themes/colibre/cmd/sc_footnotedialog.png |binary
 icon-themes/colibre/cmd/sc_insertendnote.png  |binary
 icon-themes/colibre/cmd/sc_insertfootnote.png |binary
 icon-themes/colibre_svg/cmd/32/footnotedialog.svg |2 +-
 icon-themes/colibre_svg/cmd/32/insertendnote.svg  |2 +-
 icon-themes/colibre_svg/cmd/32/insertfootnote.svg |2 +-
 icon-themes/colibre_svg/cmd/lc_footnotedialog.svg |2 +-
 icon-themes/colibre_svg/cmd/lc_insertendnote.svg  |2 +-
 icon-themes/colibre_svg/cmd/lc_insertfootnote.svg |2 +-
 icon-themes/colibre_svg/cmd/sc_footnotedialog.svg |3 ++-
 icon-themes/colibre_svg/cmd/sc_insertendnote.svg  |2 +-
 icon-themes/colibre_svg/cmd/sc_insertfootnote.svg |3 ++-
 18 files changed, 11 insertions(+), 9 deletions(-)

New commits:
commit 0b35ef17fedc96b31dd1dff67648a61fe884c857
Author: Rizal Muttaqin 
AuthorDate: Wed Oct 21 18:20:17 2020 +0700
Commit: Rizal Muttaqin 
CommitDate: Wed Oct 21 23:08:32 2020 +0200

Colibre: update endnote & footnote icons

Change-Id: I8c6ac16c83a0e46e424acde14acc048d7520b5cd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104617
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 

diff --git a/icon-themes/colibre/cmd/32/footnotedialog.png 
b/icon-themes/colibre/cmd/32/footnotedialog.png
index 140acf9f97d8..ac746ac2fd05 100644
Binary files a/icon-themes/colibre/cmd/32/footnotedialog.png and 
b/icon-themes/colibre/cmd/32/footnotedialog.png differ
diff --git a/icon-themes/colibre/cmd/32/insertendnote.png 
b/icon-themes/colibre/cmd/32/insertendnote.png
index 1ad735b0c02a..dfd74b732ec9 100644
Binary files a/icon-themes/colibre/cmd/32/insertendnote.png and 
b/icon-themes/colibre/cmd/32/insertendnote.png differ
diff --git a/icon-themes/colibre/cmd/32/insertfootnote.png 
b/icon-themes/colibre/cmd/32/insertfootnote.png
index 603ed14ccf8b..306e175d48e6 100644
Binary files a/icon-themes/colibre/cmd/32/insertfootnote.png and 
b/icon-themes/colibre/cmd/32/insertfootnote.png differ
diff --git a/icon-themes/colibre/cmd/lc_footnotedialog.png 
b/icon-themes/colibre/cmd/lc_footnotedialog.png
index 0fd053835a97..0f0f1e70d700 100644
Binary files a/icon-themes/colibre/cmd/lc_footnotedialog.png and 
b/icon-themes/colibre/cmd/lc_footnotedialog.png differ
diff --git a/icon-themes/colibre/cmd/lc_insertendnote.png 
b/icon-themes/colibre/cmd/lc_insertendnote.png
index 935434c39796..56dcf6e4dedb 100644
Binary files a/icon-themes/colibre/cmd/lc_insertendnote.png and 
b/icon-themes/colibre/cmd/lc_insertendnote.png differ
diff --git a/icon-themes/colibre/cmd/lc_insertfootnote.png 
b/icon-themes/colibre/cmd/lc_insertfootnote.png
index 612ba9a9cba6..1e98d38b82ed 100644
Binary files a/icon-themes/colibre/cmd/lc_insertfootnote.png and 
b/icon-themes/colibre/cmd/lc_insertfootnote.png differ
diff --git a/icon-themes/colibre/cmd/sc_footnotedialog.png 
b/icon-themes/colibre/cmd/sc_footnotedialog.png
index cc7da28b6a51..5cf0424e7ec1 100644
Binary files a/icon-themes/colibre/cmd/sc_footnotedialog.png and 
b/icon-themes/colibre/cmd/sc_footnotedialog.png differ
diff --git a/icon-themes/colibre/cmd/sc_insertendnote.png 
b/icon-themes/colibre/cmd/sc_insertendnote.png
index 27d96eae1327..473068222ffe 100644
Binary files a/icon-themes/colibre/cmd/sc_insertendnote.png and 
b/icon-themes/colibre/cmd/sc_insertendnote.png differ
diff --git a/icon-themes/colibre/cmd/sc_insertfootnote.png 
b/icon-themes/colibre/cmd/sc_insertfootnote.png
index 14ad8dd8b31e..04d8adcabf22 100644
Binary files a/icon-themes/colibre/cmd/sc_insertfootnote.png and 
b/icon-themes/colibre/cmd/sc_insertfootnote.png differ
diff --git a/icon-themes/colibre_svg/cmd/32/footnotedialog.svg 
b/icon-themes/colibre_svg/cmd/32/footnotedialog.svg
index 5b6e6e12c35e..9fb565f6cfbf 100644
--- a/icon-themes/colibre_svg/cmd/32/footnotedialog.svg
+++ b/icon-themes/colibre_svg/cmd/32/footnotedialog.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end of file
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/cmd/32/insertendnote.svg 
b/icon-themes/colibre_svg/cmd/32/insertendnote.svg
index b6dc0d51eed7..ef1d7e435f26 100644
--- a/icon-themes/colibre_svg/cmd/32/insertendnote.svg
+++ b/icon-themes/colibre_svg/cmd/32/insertendnote.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end of file
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/cmd/32/insertfootnote.svg 
b/icon-themes/colibre_svg/cmd/32/insertfootnote.svg
index 903b63bd5a51..e6a9c0f9d6f7 100644
--- a/icon-themes/colibre_svg/cmd/32/insertfootnote.svg
+++ 

[Libreoffice-bugs] [Bug 131573] Saving sorted table with pictures to .ods file breaks embedded images

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131573

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #5 from Regina Henschel  ---
I cannot reproduce it with Version: 7.1.0.0.alpha0+ (x64)
Build ID: 86d4419c6c4961c8b473decccea99338c176ffe1
CPU threads: 8; OS: Windows 10.0 Build 19041; UI render: Skia/Raster; VCL: win
Locale: de-DE (en_US); UI: en-US
Calc: threaded
(That is a private debug build.)

Please try it with a daily build for the upcoming next version. Those can be
installed parallel to the regular build.
https://dev-builds.libreoffice.org/daily/master/

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


[Libreoffice-bugs] [Bug 89606] [META] Table of Contents and Indexes bugs and enhancements

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89606

Dieter  changed:

   What|Removed |Added

 Depends on||137663


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=137663
[Bug 137663] TOC is wrong when using "Tools | Chapter Numbering"
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 137663] TOC is wrong when using "Tools | Chapter Numbering"

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137663

Dieter  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Blocks||89606
 Status|UNCONFIRMED |NEW
 OS|Mac OS X (All)  |All
 CC||dgp-m...@gmx.de

--- Comment #2 from Dieter  ---
I confirm it with

Version: 7.0.2.2 (x64)
Build ID: 8349ace3c3162073abd90d81fd06dcfb6b36b994
CPU threads: 4; OS: Windows 10.0 Build 19041; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: threaded

Workaround: It works even if you add a blank space as "title"


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=89606
[Bug 89606] [META] Table of Contents and Indexes 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-commits] dictionaries.git: Changes to 'refs/tags/libreoffice-7.0.3.1'

2020-10-21 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.0.3.1' created by Christian Lohmaier 
 at 2020-10-21 20:09 +

Tag libreoffice-7.0.3.1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAl+QlW8ACgkQ9DSh76/u
rqM0mQ/+M4DiVHL7j0hzJRQCT03RwJsGiTLvoU5tHOl0Gtoc6E0HBVaNj1R/eauz
GXFS9kVQfu4JAtkqItZt2YkaEcMhsIy1ByVOhvC654mq1JrIAIK/VacZGkxFTHKE
kG5RsnBuY6vo0jMvICXLIo91kAyORo0hF0xttKw2423q1Bw9qYMEXbkq1iR1PQcN
CGEXQszNWHE4ZsU0dqW5JWw/uDpGzs9Y1/Hx/twOhItYAj0vIsgq+/ypUkZVk+Am
EkG8efcwKk6O+SZLUDLMVWmr7hvPzCnUfwnBUAyiclJTdaWQtkmwH/ipIKsxf/Jr
X6jZTg7CRr26M7qKn4g8/mnXHzY8TT+OAta7amWvFnh1mnNyJoGUK1cLUleV5+NX
xvgwbGbwBqjnVd90A9Ejk2YcCDiYUGdJefNJviI3tHye7DijwvW/vYOACDfhMYzq
OnJaBKMDjI8pIFN9dPscBy7ONxHndNf4d/e7jHpml2jxKuKvXd/v3VFwkpVdK9GC
2dCjaaCFfFiTyet9Jd904KFEfYJOlZRMYeA2KY31CSRtd3sU2nT2b7kAq0mI7qI2
Hq3sQFy8rzhnO0GrrDeoJ0e48ykD9IWE9I0+MVKIik0YC3S7hDvEO/cNn6m9m04X
o+/d28G3Ie58+QPPSRcfrRM+ifIxVEz3RYaaIdVjDT8Yl2Sqczk=
=Uc5X
-END PGP SIGNATURE-

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


[Libreoffice-commits] core.git: Branch 'libreoffice-7-0-3' - configure.ac

2020-10-21 Thread Christian Lohmaier (via logerrit)
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 98548d3c12a00cb27729e88a99d5976db1e05f5e
Author: Christian Lohmaier 
AuthorDate: Wed Oct 21 22:09:47 2020 +0200
Commit: Christian Lohmaier 
CommitDate: Wed Oct 21 22:09:47 2020 +0200

bump product version to 7.0.3.1.0+

Change-Id: Ife468ae1a211f8901166555b61a163ade1e330ce

diff --git a/configure.ac b/configure.ac
index 0e9323283195..7fcf4f4afa4d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[7.0.3.0.0+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[7.0.3.1.0+],[],[],[http://documentfoundation.org/])
 
 dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just 
fine if it is installed
 dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails 
hard
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-10-21 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.0.3.1' created by Christian Lohmaier 
 at 2020-10-21 20:09 +

Tag libreoffice-7.0.3.1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAl+QlXMACgkQ9DSh76/u
rqNaXRAAtocTnHB3X4WNRtQ5MBpCbsNbR5lGcjUuAXDBHagvnkyNvWa5u/C0a3b9
vFQt9pMjqE2GPNQ84S8ncMN/eZMf3XCU83eMooK/YGew66RB7GESlLbbiSi4vLq+
dESdwH/TRuJ6+yHXdkAdWRX73NSXV3SDoVyWWrbar/WS0i/9QGUUmXYXjfcsNV2p
imWnhSz6Kkol40vJhZL8Rszxi+cVF0M9gjjWDXMxxhkuWxnd2AoFct2/H2yylI+Q
Rdtfx3SWyB1Xq3z62PjtgygEOckigsygjUZMCqtiO5VzzNF1I2sqHxo3mQeEkFoq
JbmkNK3gTUd75fYdzMZ7/Dzr2udxffJGwzLjxGNaHW3ei/LhdnyIWQUVwkaekfHw
8Xd5/3cqi9Ooyfr/LMAA3+QerAblWsn8ajVLfG1e6XpNsz3fTHG89Bj1TvyK7q0t
rbl3MEv8fM6CloE+gbsmnMZyMHm+EHio6wJ1Eh6a9k4k0VZqYaRMmMp+/ercIS3f
LjOYs07mV10IxG9Erfm6zB3cyK5msnhWyQP5bde6v26q56qGi0RUwLp8isdL8YBu
O6KVBe0vcJTX4uMP8WCwAIKMU2aDhqdtNl4ViNi/UMiPj/41eUXs9r3n2RY8a1z5
qy4efQGVH+4SMz9F1EWAzVUnuNsT+5Ncp/R7jAqoC80YkxirxTg=
=gB5i
-END PGP SIGNATURE-

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


[Libreoffice-commits] translations.git: Changes to 'refs/tags/libreoffice-7.0.3.1'

2020-10-21 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.0.3.1' created by Christian Lohmaier 
 at 2020-10-21 20:09 +

Tag libreoffice-7.0.3.1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAl+QlXMACgkQ9DSh76/u
rqM0WBAAtYXSq/QNetF1HPxrFpw67nF7EV9FdTfidPL5dd0wQXhOIddpwYMwD99s
1jA+Gyy71zJb0mPxjhbDKS6UpDOvTbh1lfaKy9a0WbSPizU/2w1cYzvMxYL1keO7
cKLdQ8woQnIPYUzcT8W0L9N+trBhzbuOPhTOnyw2EIdHMbDUXlL13EvhQH+QNLB1
UFwdZDuXq7LzA5ahGLWARbOWjO6ywFh3+XcsX9/MlcybBbWba+rRG7re166WCluh
XU/mid3l5/szzSJ/y5K6hma+kjKH8c5Y4dn2WKNcPq9mFVBjRCKrEBqCEV3fw7vt
OmuiEhzgZHUkfkui4H9MiautY3hCQ4QPfQtJ6p1n9Hvdecu8Xm698A+iRG+Gzx6O
QIKZszA3xkUDraD6e1THyN/3Rwl9pxO7tSM1lN/f7Qjdm9MrMNfXXKhJBGMPP/9l
p4hCsFC1PSCgYxBrtp6ruz00lqLVVNq4xZpX6YmiFCKKjnUsnhrpymX0BflKEw2R
G94UmV7BQ3Wzt21A9Oywd/WVyLd8DVioNGfYUeCgpyJq0Qt2Ips0MLhLcHVp038l
CFEceBY8MZ4FanUNlFbAu0NA+wMbkuA9I4vZh+5cHb3vEnyPzdaOHVohLbM346zC
1agrOYfcusoCcoRt8daUmEGf2f4VKW1dbulNiVbaif5ZDyAY2Zk=
=lTty
-END PGP SIGNATURE-

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


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

2020-10-21 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.0.3.1' created by Christian Lohmaier 
 at 2020-10-21 20:09 +

Tag libreoffice-7.0.3.1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAl+QlXMACgkQ9DSh76/u
rqM29RAAgJI47/kwojuHHQMIFqZdfD9uY0ZrtKF8tkpP9biEEHy4wpLLw0tmfl+g
DmYXSyC2gjiGbhrjMbxRHMNQH1rs5wBwDSLtmNuP93eu102eXblEtseeZ64Yiz9m
cKQJH79piUGYJy6aBOpQubdCcGn9SIkx09neuQQ9ESHcKp9D1L0b2KJ5CfXIBDAr
UKFT5bymgziJZtfGXqVOOWnyUVaJo8HQsONcrgG7agfK9EUgix0GGOCq5heu6vOT
ZTVLxJVhBYg9+Yo4akjARRKhTHbg08YGaHDSVymuYYuONCDgPZ2vgfZXHt2Rrn/A
rmkf09M0GqP6rDxYmgSRdiBioTQfg97V5ii3emnMq0BIPvxziCwcMMR9M/g+mzVt
5qCifMYtUUMklH0Lnx+vxBe3eNSWgXd8teAsVqVPqssaieRZqsLF2Rz4tJNQaqOS
z4brobNyZSntkehRpRpuqXY+KthUIaaoejbuQ1RKsuU15N3eGR1b6fCY6bDt1sOW
XV9N0Ttr6Y+e+6IKV8CmRwzGzAXfrPmDXhBQv7pHHCDnqvqN4v0DXTPFy7TMDHN+
dwUv4zZS3qKT2zWJ48VHeMKcrPyYHp0Z6RC3z4nBIgBlv4WLHD+IK8CMylDrZNeQ
v+ZCar2/D/dBDpscgtr/SKNYglXKkpyixbDrzpVnCK2j5ngZR64=
=kKrW
-END PGP SIGNATURE-

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


[Libreoffice-commits] core.git: Branch 'libreoffice-7-0' - configure.ac

2020-10-21 Thread Christian Lohmaier (via logerrit)
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e5b019d12043712c2d2a5ac424102e9861d21ad2
Author: Christian Lohmaier 
AuthorDate: Wed Oct 21 22:07:19 2020 +0200
Commit: Christian Lohmaier 
CommitDate: Wed Oct 21 22:07:19 2020 +0200

bump product version to 7.0.4.0.0+

Change-Id: Ie42d0834e9061d443a26509a07f1f99c778f847c

diff --git a/configure.ac b/configure.ac
index 0e9323283195..99f0eb26902e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[7.0.3.0.0+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[7.0.4.0.0+],[],[],[http://documentfoundation.org/])
 
 dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just 
fine if it is installed
 dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails 
hard
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] dictionaries.git: Changes to 'libreoffice-7-0-3'

2020-10-21 Thread Christian Lohmaier (via logerrit)
New branch 'libreoffice-7-0-3' available with the following commits:
commit 2a43849f835a667d0fc0da8de98aa58bc5ae83b1
Author: Christian Lohmaier 
Date:   Wed Oct 21 22:03:30 2020 +0200

Branch libreoffice-7-0-3

This is 'libreoffice-7-0-3' - the stable branch for the 7.0.3 release.
Only very safe changes, reviewed by three people are allowed.

If you want to commit more complicated fix for the next 7.0.x release,
please use the 'libreoffice-7-0' branch.

If you want to build something cool, unstable, and risky, use master.

Change-Id: I9924ae7a98ea6ddc90a6617a836d848f78b9c2da

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


[Libreoffice-commits] core.git: Changes to 'libreoffice-7-0-3'

2020-10-21 Thread Christian Lohmaier (via logerrit)
New branch 'libreoffice-7-0-3' available with the following commits:
commit 85367707cc7ba61e9ef4d70f287103c3a37f91a0
Author: Christian Lohmaier 
Date:   Wed Oct 21 22:04:03 2020 +0200

Branch libreoffice-7-0-3

This is 'libreoffice-7-0-3' - the stable branch for the 7.0.3 release.
Only very safe changes, reviewed by three people are allowed.

If you want to commit more complicated fix for the next 7.0.x release,
please use the 'libreoffice-7-0' branch.

If you want to build something cool, unstable, and risky, use master.

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


[Libreoffice-commits] help.git: Changes to 'libreoffice-7-0-3'

2020-10-21 Thread Christian Lohmaier (via logerrit)
New branch 'libreoffice-7-0-3' available with the following commits:
commit 48ffba2c7c85e9b15a727203b16f761d11dbcfa8
Author: Christian Lohmaier 
Date:   Wed Oct 21 22:03:30 2020 +0200

Branch libreoffice-7-0-3

This is 'libreoffice-7-0-3' - the stable branch for the 7.0.3 release.
Only very safe changes, reviewed by three people are allowed.

If you want to commit more complicated fix for the next 7.0.x release,
please use the 'libreoffice-7-0' branch.

If you want to build something cool, unstable, and risky, use master.

Change-Id: I6026f98a381b29e0d8c2628cf9fde2bc50efbf5d

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


[Libreoffice-commits] translations.git: Changes to 'libreoffice-7-0-3'

2020-10-21 Thread Christian Lohmaier (via logerrit)
New branch 'libreoffice-7-0-3' available with the following commits:
commit 381b2c040cd22d5a3ae38b738f50c87c685acd09
Author: Christian Lohmaier 
Date:   Wed Oct 21 22:03:31 2020 +0200

Branch libreoffice-7-0-3

This is 'libreoffice-7-0-3' - the stable branch for the 7.0.3 release.
Only very safe changes, reviewed by three people are allowed.

If you want to commit more complicated fix for the next 7.0.x release,
please use the 'libreoffice-7-0' branch.

If you want to build something cool, unstable, and risky, use master.

Change-Id: I6d2a1e80c0d4d1a08f636396a9c2d0dd4f8a63f1

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


[Libreoffice-bugs] [Bug 137236] Chapter, Filename and Template should be be shown in "Select" frame not "Format" frame in Fields dialog - Document tab

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137236

--- Comment #10 from Sascha Z  ---
Well, not all that is inside the Format-list is actually a format-variation. So
we have to chose one-by-one. My suggestion so far:

Document >
Chapter > Chapter name
> Chapter number > number and name
   > number without separator

File name > File name   > File name with extension
   > File name without extension
   > File Path> Path with file name
   > Path without file name

Templates > Category
> File name > File Name with extention
  > File name without extention
> Path> Path with File name
  > Path without File Name
> Style

Variables >
Set variable > Text   > Character 
  > Number  > Integer
  > Floating Point
  > Additional Formats

User Field   > Text   > Character
 > Formula  > Integer
  > Floating Point
  > Additional formates
 > Standard > Integer
  > Floating Point
  > Additional formates

In this order we rather create some placeholder entries in the current empty
Selection-lists, namely Total editing time, DDE field, Insert Formula, Show
page variable, User Field

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


[Libreoffice-bugs] [Bug 137620] kmfl keyboard entry jumps around to other textboxes or beginning of line in editeng

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137620

--- Comment #9 from Caolán McNamara  ---
(In reply to Justin L from comment #8)
> calc's format->page->header->edit  does nothing on a build from Sept 12.

Yeah, its quite new.

> On another machine with a build from Oct 16, I get an assert as soon as I
> type the first semi-colon (only when the IME keyboard is chosen).
> 
> vcl/source/app/dbggui.cxx:35: void ImplDbgTestSolarMutex(): Assertion
> `ImplGetSVData()->mpDefInst->GetYieldMutex()->IsCurrentThread() &&
> "SolarMutex not owned!"' failed.

That build surely has it :-) I'm clearly missing a SolarMutexGuard somewhere,
should be fairly easy to spot from a backtrace.
(https://gerrit.libreoffice.org/c/core/+/104644 is possibly sufficient) A quick
"dnf search kmfl" doesn't show me something I could use to quickly reproduce
locally under fedora.

-- 
You are receiving this mail because:
You 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-7-0' - 2 commits - .gitmodules translations

2020-10-21 Thread Christian Lohmaier (via logerrit)
 .gitmodules  |6 +++---
 translations |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 77a13e01cfead81f6ff8443cf2d82f564a0158ea
Author: Christian Lohmaier 
AuthorDate: Wed Oct 21 21:59:32 2020 +0200
Commit: Christian Lohmaier 
CommitDate: Wed Oct 21 21:59:32 2020 +0200

Update git submodules

* Update translations from branch 'libreoffice-7-0'
  to a032756b2ded48180d4db2996486c59d644bc6e3
  - update translations for 7.0.2 rc2

and force-fix errors using pocheck

Change-Id: Icc6c8d4e27bf80431ec26c8ceb37848058038c85

diff --git a/translations b/translations
index 4a12b40c8751..a032756b2ded 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 4a12b40c8751323705d82539be43d04990f934a9
+Subproject commit a032756b2ded48180d4db2996486c59d644bc6e3
commit dd6dcb41731b87b02afe80e52614788f2906a83f
Author: Christian Lohmaier 
AuthorDate: Wed Oct 21 21:51:54 2020 +0200
Commit: Christian Lohmaier 
CommitDate: Wed Oct 21 21:58:43 2020 +0200

gitmodules: use relative paths

as using https://git.libreoffice.org breaks the submodule subsription
(automatic update in core when something is pushed to the submodules),
since gerrit compares the URL with gerrit.canonicalWebUrl, the URL where
gerrit itself is found, not what is used as default repository URL

Change-Id: I2e4566e69c7e70c463f0aab393d622a6f4d61808
(cherry picked from commit f7d892aa0b44772ccd70786375d3b6a4515af180)

diff --git a/.gitmodules b/.gitmodules
index 61ecfe58b1f0..c441234d6030 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,12 +1,12 @@
 [submodule "dictionaries"]
path = dictionaries
-   url = https://git.libreoffice.org/dictionaries
+   url = ../dictionaries
branch = .
 [submodule "helpcontent2"]
path = helpcontent2
-   url = https://git.libreoffice.org/help
+   url = ../help
branch = .
 [submodule "translations"]
path = translations
-   url = https://git.libreoffice.org/translations
+   url = ../translations
branch = .
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

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

Telesto  changed:

   What|Removed |Added

 Depends on||137665


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=137665
[Bug 137665] Glow effect in presentation mode only present after they animation
ends (so not while animating) Skia
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 137665] Glow effect in presentation mode only present after they animation ends (so not while animating) Skia

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137665

Telesto  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 137665] New: Glow effect in presentation mode only present after they animation ends (so not while animating) Skia

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137665

Bug ID: 137665
   Summary: Glow effect in presentation mode only present after
they animation ends (so not while animating) Skia
   Product: LibreOffice
   Version: 7.1.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Glow effect in presentation mode only present after they animation ends (so not
while animating) Skia 

Steps to Reproduce:
1. Open the attached file
2. Press F5
3. Left mouse click to start animation

Actual Results:
Glow effect missing until animation stops

Expected Results:
Should be present the whole time (as GDI)


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.1.0.0.alpha0+ (x64)
Build ID: 94e6e140491de31c0788c91af855a75a3bb12709
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: 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-commits] core.git: .gitmodules

2020-10-21 Thread Christian Lohmaier (via logerrit)
 .gitmodules |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit f7d892aa0b44772ccd70786375d3b6a4515af180
Author: Christian Lohmaier 
AuthorDate: Wed Oct 21 21:51:54 2020 +0200
Commit: Christian Lohmaier 
CommitDate: Wed Oct 21 21:51:54 2020 +0200

gitmodules: use relative paths

as using https://git.libreoffice.org breaks the submodule subsription
(automatic update in core when something is pushed to the submodules),
since gerrit compares the URL with gerrit.canonicalWebUrl, the URL where
gerrit itself is found, not what is used as default repository URL

Change-Id: I2e4566e69c7e70c463f0aab393d622a6f4d61808

diff --git a/.gitmodules b/.gitmodules
index 61ecfe58b1f0..c441234d6030 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,12 +1,12 @@
 [submodule "dictionaries"]
path = dictionaries
-   url = https://git.libreoffice.org/dictionaries
+   url = ../dictionaries
branch = .
 [submodule "helpcontent2"]
path = helpcontent2
-   url = https://git.libreoffice.org/help
+   url = ../help
branch = .
 [submodule "translations"]
path = translations
-   url = https://git.libreoffice.org/translations
+   url = ../translations
branch = .
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 137665] Glow effect in presentation mode only present after they animation ends (so not while animating) Skia

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137665

--- Comment #1 from Telesto  ---
Created attachment 166604
  --> https://bugs.documentfoundation.org/attachment.cgi?id=166604=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 137497] [Feature Request] Add option to display comments to the left of the document canvas

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137497

--- Comment #9 from V Stuart Foote  ---
Created attachment 166603
  --> https://bugs.documentfoundation.org/attachment.cgi?id=166603=edit
current master 7.1.0 Comment and TrackChanges

Screen clip of current Comment present right of document canvas, with new
(against bug 34355) Track Changes in left margin.  With TC Toolbar, TC 'Manage
Changes' dialog, and "experimental" 'Manage Changes' Sidebar deck activated to
show all the GUI pieces at play.

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


[Libreoffice-ux-advise] [Bug 137497] [Feature Request] Add option to display comments to the left of the document canvas

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137497

--- Comment #9 from V Stuart Foote  ---
Created attachment 166603
  --> https://bugs.documentfoundation.org/attachment.cgi?id=166603=edit
current master 7.1.0 Comment and TrackChanges

Screen clip of current Comment present right of document canvas, with new
(against bug 34355) Track Changes in left margin.  With TC Toolbar, TC 'Manage
Changes' dialog, and "experimental" 'Manage Changes' Sidebar deck activated to
show all the GUI pieces at play.

-- 
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 137465] YIELD function in Calc provides wrong result (different result than Excel), when bond settlement date is within one coupon period until maturity.

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137465

Jack  changed:

   What|Removed |Added

Summary|YIELD function in Calc  |YIELD function in Calc
   |provides wrong result   |provides wrong result
   |(different result than  |(different result than
   |Excel), when bond is|Excel), when bond
   |purchased within one coupon |settlement date is within
   |period until redemption.|one coupon period until
   ||maturity.

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


[Libreoffice-bugs] [Bug 137661] default print range lines appear in spreadsheet without user interaction

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137661

--- Comment #4 from Dean3430 <05e42f84-6281-4bcb-8159-d432d71ae...@anonaddy.me> 
---
So I made screenshots to show what I mean (now I used the 7.1.0.0.alpha0+
version). So I try now to show steps to reproduce in more detail:

1. launch Calc
2. save an empty spreadsheet
3. exit Calc
4. launch Calc again
5. load the previously made spreadsheet
6. resize a column with the cursor

after this, the lines for the print ranges appear in the spreadsheet like in
the screenshot.

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


[Libreoffice-bugs] [Bug 137261] Preload LibreOffice daemon linux

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137261

--- Comment #3 from André Desgualdo Pereira  ---
In the comments here https://gerrit.libreoffice.org/c/core/+/100024 someone
mention a "UNO connection trick" to give LibreOffice a quickstart like
functionality. Would someone be kind enough to explain how I can do it (as a
normal user who doesn't know to code)?

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


[Libreoffice-bugs] [Bug 137661] default print range lines appear in spreadsheet without user interaction

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137661

--- Comment #3 from Dean3430 <05e42f84-6281-4bcb-8159-d432d71ae...@anonaddy.me> 
---
Created attachment 166602
  --> https://bugs.documentfoundation.org/attachment.cgi?id=166602=edit
after resizing a column

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


[Libreoffice-bugs] [Bug 137661] default print range lines appear in spreadsheet without user interaction

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137661

--- Comment #2 from Dean3430 <05e42f84-6281-4bcb-8159-d432d71ae...@anonaddy.me> 
---
Created attachment 166601
  --> https://bugs.documentfoundation.org/attachment.cgi?id=166601=edit
before resizing a column

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


[Libreoffice-ux-advise] [Bug 137497] [Feature Request] Add option to display comments to the left of the document canvas

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137497

V Stuart Foote  changed:

   What|Removed |Added

 Status|NEW |UNCONFIRMED
Summary|[Feature Request] Add   |[Feature Request] Add
   |option to move comments to  |option to display comments
   |the left of the document|to the left of the document
   ||canvas
 Ever confirmed|1   |0
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||nem...@numbertext.org
   Keywords||needsUXEval

--- Comment #8 from V Stuart Foote  ---
This sure smell like feature creep. 

Though I would be curious if, like SB, the comments follow changes LTR <--> RTL
locale (meaning the Commenting UI could more simply be selectively moved to
Left or Right by user preference). Just toggling LTR / RTL for a document does
not shift the comments.

How does László's current work on Tracked changes in margin position things,
seems the default now to placement in left margin? Do they follow LTR / RTL by
locale? And could they be selectively toggled to show left or right edge of
canvas?

The Tracked changes and Comments have different code path, currently they seem
to coexist--Track Chagnes on left, Comments on right--should they be aware of
each other if we are going to support moving Comments?

Any case, a lot of extra dev effort required. And would that effort be better
spent to implement feature to use pop-ups, as bug 101714. Or maybe to finish
track change in the SB, and to include a Comments content panel. 

=-testing-=
Windows 10 (2004) with
Version: 7.1.0.0.alpha0+ (x64)
Build ID: e0c72e31c1d455c26110c35e8780d420e17cdea6
CPU threads: 8; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

-- 
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 137497] [Feature Request] Add option to display comments to the left of the document canvas

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137497

V Stuart Foote  changed:

   What|Removed |Added

 Status|NEW |UNCONFIRMED
Summary|[Feature Request] Add   |[Feature Request] Add
   |option to move comments to  |option to display comments
   |the left of the document|to the left of the document
   ||canvas
 Ever confirmed|1   |0
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||nem...@numbertext.org
   Keywords||needsUXEval

--- Comment #8 from V Stuart Foote  ---
This sure smell like feature creep. 

Though I would be curious if, like SB, the comments follow changes LTR <--> RTL
locale (meaning the Commenting UI could more simply be selectively moved to
Left or Right by user preference). Just toggling LTR / RTL for a document does
not shift the comments.

How does László's current work on Tracked changes in margin position things,
seems the default now to placement in left margin? Do they follow LTR / RTL by
locale? And could they be selectively toggled to show left or right edge of
canvas?

The Tracked changes and Comments have different code path, currently they seem
to coexist--Track Chagnes on left, Comments on right--should they be aware of
each other if we are going to support moving Comments?

Any case, a lot of extra dev effort required. And would that effort be better
spent to implement feature to use pop-ups, as bug 101714. Or maybe to finish
track change in the SB, and to include a Comments content panel. 

=-testing-=
Windows 10 (2004) with
Version: 7.1.0.0.alpha0+ (x64)
Build ID: e0c72e31c1d455c26110c35e8780d420e17cdea6
CPU threads: 8; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: 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-commits] core.git: Branch 'feature/drawinglayercore' - 2 commits - include/drawinglayer

2020-10-21 Thread Tomaž Vajngerl (via logerrit)
 include/drawinglayer/attribute/fillgradientattribute.hxx |   12 +---
 include/drawinglayer/attribute/fillgraphicattribute.hxx  |9 ++---
 include/drawinglayer/attribute/fillhatchattribute.hxx|   12 +---
 3 files changed, 4 insertions(+), 29 deletions(-)

New commits:
commit fe9dff6c29898fc61901cb2c40105d2cbaed9a6a
Author: Tomaž Vajngerl 
AuthorDate: Wed Oct 21 21:01:43 2020 +0200
Commit: Tomaž Vajngerl 
CommitDate: Wed Oct 21 21:01:43 2020 +0200

cleanup namespaces for fill*attribute.hxx

Change-Id: I2aee131512e0eb194843f207de63e63af7ed219a

diff --git a/include/drawinglayer/attribute/fillgradientattribute.hxx 
b/include/drawinglayer/attribute/fillgradientattribute.hxx
index 7b07d7022855..f9d9e2245d9a 100644
--- a/include/drawinglayer/attribute/fillgradientattribute.hxx
+++ b/include/drawinglayer/attribute/fillgradientattribute.hxx
@@ -30,10 +30,7 @@ class BColor;
 namespace drawinglayer::attribute
 {
 class ImpFillGradientAttribute;
-}
 
-namespace drawinglayer::attribute
-{
 enum class GradientStyle
 {
 Linear,
@@ -44,10 +41,6 @@ enum class GradientStyle
 Rect
 };
 
-} // end of namespace drawinglayer::attribute
-
-namespace drawinglayer::attribute
-{
 class DRAWINGLAYER_DLLPUBLIC FillGradientAttribute
 {
 public:
diff --git a/include/drawinglayer/attribute/fillgraphicattribute.hxx 
b/include/drawinglayer/attribute/fillgraphicattribute.hxx
index 1649d1b38881..976d7bd37586 100644
--- a/include/drawinglayer/attribute/fillgraphicattribute.hxx
+++ b/include/drawinglayer/attribute/fillgraphicattribute.hxx
@@ -32,10 +32,7 @@ class B2DRange;
 namespace drawinglayer::attribute
 {
 class ImpFillGraphicAttribute;
-}
 
-namespace drawinglayer::attribute
-{
 class DRAWINGLAYER_DLLPUBLIC FillGraphicAttribute
 {
 public:
diff --git a/include/drawinglayer/attribute/fillhatchattribute.hxx 
b/include/drawinglayer/attribute/fillhatchattribute.hxx
index 5d97fbc17026..a929b5715906 100644
--- a/include/drawinglayer/attribute/fillhatchattribute.hxx
+++ b/include/drawinglayer/attribute/fillhatchattribute.hxx
@@ -30,10 +30,7 @@ class BColor;
 namespace drawinglayer::attribute
 {
 class ImpFillHatchAttribute;
-}
 
-namespace drawinglayer::attribute
-{
 enum class HatchStyle
 {
 Single,
@@ -41,10 +38,6 @@ enum class HatchStyle
 Triple
 };
 
-} // end of namespace drawinglayer::attribute
-
-namespace drawinglayer::attribute
-{
 class DRAWINGLAYER_DLLPUBLIC FillHatchAttribute
 {
 public:
commit 81b82d049fdcc2fb1c1c2fe6a4a050a9505a1522
Author: Tomaž Vajngerl 
AuthorDate: Wed Oct 21 20:59:32 2020 +0200
Commit: Tomaž Vajngerl 
CommitDate: Wed Oct 21 20:59:32 2020 +0200

pragma once for fill*attribute.hxx

Change-Id: I588b0214bcd75b77c9c72b4c6f320a6dd8a82e01

diff --git a/include/drawinglayer/attribute/fillgradientattribute.hxx 
b/include/drawinglayer/attribute/fillgradientattribute.hxx
index cc2fab0518dc..7b07d7022855 100644
--- a/include/drawinglayer/attribute/fillgradientattribute.hxx
+++ b/include/drawinglayer/attribute/fillgradientattribute.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_DRAWINGLAYER_ATTRIBUTE_FILLGRADIENTATTRIBUTE_HXX
-#define INCLUDED_DRAWINGLAYER_ATTRIBUTE_FILLGRADIENTATTRIBUTE_HXX
+#pragma once
 
 #include 
 #include 
@@ -88,6 +87,4 @@ public:
 
 } // end of namespace drawinglayer::attribute
 
-#endif //INCLUDED_DRAWINGLAYER_ATTRIBUTE_FILLGRADIENTATTRIBUTE_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/drawinglayer/attribute/fillgraphicattribute.hxx 
b/include/drawinglayer/attribute/fillgraphicattribute.hxx
index 4ee0ab3f3ed5..1649d1b38881 100644
--- a/include/drawinglayer/attribute/fillgraphicattribute.hxx
+++ b/include/drawinglayer/attribute/fillgraphicattribute.hxx
@@ -16,8 +16,8 @@
  *   except in compliance with the License. You may obtain a copy of
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
-#ifndef INCLUDED_DRAWINGLAYER_ATTRIBUTE_FILLGRAPHICATTRIBUTE_HXX
-#define INCLUDED_DRAWINGLAYER_ATTRIBUTE_FILLGRAPHICATTRIBUTE_HXX
+
+#pragma once
 
 #include 
 #include 
@@ -68,6 +68,4 @@ public:
 
 } // end of namespace drawinglayer::attribute
 
-#endif //INCLUDED_DRAWINGLAYER_ATTRIBUTE_FILLGRAPHICATTRIBUTE_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/drawinglayer/attribute/fillhatchattribute.hxx 
b/include/drawinglayer/attribute/fillhatchattribute.hxx
index f13e46bf903b..5d97fbc17026 100644
--- a/include/drawinglayer/attribute/fillhatchattribute.hxx
+++ b/include/drawinglayer/attribute/fillhatchattribute.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_DRAWINGLAYER_ATTRIBUTE_FILLHATCHATTRIBUTE_HXX
-#define INCLUDED_DRAWINGLAYER_ATTRIBUTE_FILLHATCHATTRIBUTE_HXX
+#pragma once
 
 #include 
 #include 
@@ -95,6 +94,4 @@ public:
 
 } // end of namespace drawinglayer::attribute
 
-#endif 

[Libreoffice-commits] core.git: Branch 'feature/drawinglayercore' - 3 commits - drawinglayer/source include/drawinglayer solenv/clang-format

2020-10-21 Thread Tomaž Vajngerl (via logerrit)
 drawinglayer/source/attribute/fontattribute.cxx  |  295 ++-
 drawinglayer/source/primitive2d/textprimitive2d.cxx  |4 
 include/drawinglayer/attribute/fillgradientattribute.hxx |  116 ++---
 include/drawinglayer/attribute/fillgraphicattribute.hxx  |   79 +---
 include/drawinglayer/attribute/fillhatchattribute.hxx|  128 +++---
 solenv/clang-format/excludelist  |4 
 6 files changed, 273 insertions(+), 353 deletions(-)

New commits:
commit a1e2de23fd1de7880520501736e2241e7d4d85aa
Author: Tomaž Vajngerl 
AuthorDate: Wed Oct 21 20:55:54 2020 +0200
Commit: Tomaž Vajngerl 
CommitDate: Wed Oct 21 20:55:54 2020 +0200

remove fill*attribute.hxx from clang-format excludelist

Change-Id: Idc70c350b1ed6015d56fd785acf5afbc394056fe

diff --git a/include/drawinglayer/attribute/fillgradientattribute.hxx 
b/include/drawinglayer/attribute/fillgradientattribute.hxx
index 7363eb4bad89..cc2fab0518dc 100644
--- a/include/drawinglayer/attribute/fillgradientattribute.hxx
+++ b/include/drawinglayer/attribute/fillgradientattribute.hxx
@@ -23,81 +23,71 @@
 #include 
 #include 
 
-
-// predefines
-
-namespace basegfx {
-class BColor;
+namespace basegfx
+{
+class BColor;
 }
 
-namespace drawinglayer::attribute {
-class ImpFillGradientAttribute;
+namespace drawinglayer::attribute
+{
+class ImpFillGradientAttribute;
 }
 
-
 namespace drawinglayer::attribute
-{
-enum class GradientStyle
-{
-Linear,
-Axial,
-Radial,
-Elliptical,
-Square,
-Rect
-};
+{
+enum class GradientStyle
+{
+Linear,
+Axial,
+Radial,
+Elliptical,
+Square,
+Rect
+};
 
 } // end of namespace drawinglayer::attribute
 
-
 namespace drawinglayer::attribute
-{
-class DRAWINGLAYER_DLLPUBLIC FillGradientAttribute
-{
-public:
-typedef o3tl::cow_wrapper< ImpFillGradientAttribute > ImplType;
-
-private:
-ImplType mpFillGradientAttribute;
-
-public:
-/// constructors/assignmentoperator/destructor
-FillGradientAttribute(
-GradientStyle eStyle,
-double fBorder,
-double fOffsetX,
-double fOffsetY,
-double fAngle,
-const basegfx::BColor& rStartColor,
-const basegfx::BColor& rEndColor,
-sal_uInt16 nSteps);
-FillGradientAttribute();
-FillGradientAttribute(const FillGradientAttribute&);
-FillGradientAttribute(FillGradientAttribute&&);
-FillGradientAttribute& operator=(const FillGradientAttribute&);
-FillGradientAttribute& operator=(FillGradientAttribute&&);
-~FillGradientAttribute();
-
-// checks if the incarnation is default constructed
-bool isDefault() const;
-
-// compare operator
-bool operator==(const FillGradientAttribute& rCandidate) const;
-
-// data read access
-GradientStyle getStyle() const;
-double getBorder() const;
-double getOffsetX() const;
-double getOffsetY() const;
-double getAngle() const;
-const basegfx::BColor& getStartColor() const;
-const basegfx::BColor& getEndColor() const;
-sal_uInt16 getSteps() const;
-};
+{
+class DRAWINGLAYER_DLLPUBLIC FillGradientAttribute
+{
+public:
+typedef o3tl::cow_wrapper ImplType;
+
+private:
+ImplType mpFillGradientAttribute;
+
+public:
+/// constructors/assignmentoperator/destructor
+FillGradientAttribute(GradientStyle eStyle, double fBorder, double 
fOffsetX, double fOffsetY,
+  double fAngle, const basegfx::BColor& rStartColor,
+  const basegfx::BColor& rEndColor, sal_uInt16 nSteps);
+FillGradientAttribute();
+FillGradientAttribute(const FillGradientAttribute&);
+FillGradientAttribute(FillGradientAttribute&&);
+FillGradientAttribute& operator=(const FillGradientAttribute&);
+FillGradientAttribute& operator=(FillGradientAttribute&&);
+~FillGradientAttribute();
+
+// checks if the incarnation is default constructed
+bool isDefault() const;
+
+// compare operator
+bool operator==(const FillGradientAttribute& rCandidate) const;
+
+// data read access
+GradientStyle getStyle() const;
+double getBorder() const;
+double getOffsetX() const;
+double getOffsetY() const;
+double getAngle() const;
+const basegfx::BColor& getStartColor() const;
+const basegfx::BColor& getEndColor() const;
+sal_uInt16 getSteps() const;
+};
 
 } // end of namespace drawinglayer::attribute
 
-
 #endif //INCLUDED_DRAWINGLAYER_ATTRIBUTE_FILLGRADIENTATTRIBUTE_HXX
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git 

[Libreoffice-commits] core.git: connectivity/source cui/source offapi/com svx/source

2020-10-21 Thread Andrea Gelmini (via logerrit)
 connectivity/source/manager/mdrivermanager.cxx |2 +-
 cui/source/dialogs/hangulhanjadlg.cxx  |2 +-
 offapi/com/sun/star/awt/XTabListener.idl   |2 +-
 svx/source/inc/fmundo.hxx  |2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 269b8a086e3d3387ef6a68cf29508704331513d5
Author: Andrea Gelmini 
AuthorDate: Mon Oct 19 18:53:04 2020 +0200
Commit: Julien Nabet 
CommitDate: Wed Oct 21 20:37:07 2020 +0200

Fix typos

Change-Id: Ia66e31a0ad71dde1a6c1caa911d6083e1fb9eb61
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104538
Reviewed-by: Julien Nabet 
Tested-by: Jenkins

diff --git a/connectivity/source/manager/mdrivermanager.cxx 
b/connectivity/source/manager/mdrivermanager.cxx
index ae1e226cd2fc..afcb38279640 100644
--- a/connectivity/source/manager/mdrivermanager.cxx
+++ b/connectivity/source/manager/mdrivermanager.cxx
@@ -301,7 +301,7 @@ void OSDBCDriverManager::bootstrapDrivers()
 if ( xDriver.is() )
 {
 aDriverDescriptor.xDriver = xDriver;
-// and obtain it's implementation name
+// and obtain its implementation name
 xSI.set(xDriver, css::uno::UNO_QUERY);
 OSL_ENSURE( xSI.is(), 
"OSDBCDriverManager::bootstrapDrivers: a driver without service info?" );
 if ( xSI.is() )
diff --git a/cui/source/dialogs/hangulhanjadlg.cxx 
b/cui/source/dialogs/hangulhanjadlg.cxx
index bd252a2fe5a8..b2da62f49bd0 100644
--- a/cui/source/dialogs/hangulhanjadlg.cxx
+++ b/cui/source/dialogs/hangulhanjadlg.cxx
@@ -172,7 +172,7 @@ namespace svx
 
 // now draw the texts
 // as we already calculated the precise rectangles for the texts, we 
don't want to
-// use the alignment flags given - within it's rect, every text is 
centered
+// use the alignment flags given - within its rect, every text is 
centered
 DrawTextFlags nDrawTextStyle( nTextStyle );
 nDrawTextStyle &= ~DrawTextFlags( DrawTextFlags::Right | 
DrawTextFlags::Left | DrawTextFlags::Bottom | DrawTextFlags::Top );
 nDrawTextStyle |= DrawTextFlags::Center | DrawTextFlags::VCenter;
diff --git a/offapi/com/sun/star/awt/XTabListener.idl 
b/offapi/com/sun/star/awt/XTabListener.idl
index 130f86fa7d72..142fbb2344cc 100644
--- a/offapi/com/sun/star/awt/XTabListener.idl
+++ b/offapi/com/sun/star/awt/XTabListener.idl
@@ -46,7 +46,7 @@ interface XTabListener : com::sun::star::lang::XEventListener
  */
 void removed( [in] long ID );
 
-/** a tab was changed within it's properties.
+/** a tab was changed within its properties.
 
 @param  ID
 the unique ID of the changed tab.
diff --git a/svx/source/inc/fmundo.hxx b/svx/source/inc/fmundo.hxx
index d914a0e74071..02b8f4998766 100644
--- a/svx/source/inc/fmundo.hxx
+++ b/svx/source/inc/fmundo.hxx
@@ -91,7 +91,7 @@ private:
 m_xElement; // object not owned by the action
 css::uno::Reference< css::uno::XInterface >
 m_xOwnElement;  // object owned by the action
-sal_Int32   m_nIndex;   // index of the object within it's 
container
+sal_Int32   m_nIndex;   // index of the object within its container
 css::uno::Sequence< css::script::ScriptEventDescriptor >
 m_aEvents;  // events of the object
 Action  m_eAction;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-10-21 Thread Stephan Bergmann (via logerrit)
 sw/qa/uitest/writer_tests/tdf81457.py |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit cdedcfe5548f676c6a39a3c9cc39eea0bcd99e80
Author: Stephan Bergmann 
AuthorDate: Wed Oct 21 13:18:31 2020 +0200
Commit: Stephan Bergmann 
CommitDate: Wed Oct 21 20:35:47 2020 +0200

Fix one more get_url_for_data_file

...similar to 8bf87fe5112fbec54db1496b5037c43e24bc76fe "Fix one more
get_url_for_data_file" etc.

 had failed
PythonTest_solenv_python with

> Traceback (most recent call last):
>   File 
"/home/tdf/lode/jenkins/workspace/lo_tb_master_linux_dbg/solenv/qa/python/gbuildtojson.py",
 line 136, in test_gbuildtojson
> shutil.copytree(os.path.join(os.environ['SRCDIR'], module), 
os.path.join(self.tempsrc, module),
>   File 
"/home/tdf/lode/jenkins/workspace/lo_tb_master_linux_dbg/instdir/program/python-core-3.8.4/lib/shutil.py",
 line 554, in copytree
> return _copytree(entries=entries, src=src, dst=dst, symlinks=symlinks,
>   File 
"/home/tdf/lode/jenkins/workspace/lo_tb_master_linux_dbg/instdir/program/python-core-3.8.4/lib/shutil.py",
 line 510, in _copytree
> raise Error(errors)
> shutil.Error: 
[('/home/tdf/lode/jenkins/workspace/lo_tb_master_linux_dbg/sw/qa/uitest/writer_tests/data/.~lock.tdf81457.odt#',
 
'/home/tdf/lode/jenkins/workspace/lo_tb_master_linux_dbg/tempdir/gbuildadynlc3l/sw/qa/uitest/writer_tests/data/.~lock.tdf81457.odt#',
 "[Errno 2] No such file or directory: 
'/home/tdf/lode/jenkins/workspace/lo_tb_master_linux_dbg/sw/qa/uitest/writer_tests/data/.~lock.tdf81457.odt#'")]

presumably because UITest_writer_tests was running in parallel and 
temporarily
created that sw/qa/uitest/writer_tests/data/.~lock.tdf81457.odt# lock file 
in
the source tree.

Change-Id: Icb735565bbd8b1cdb076d3844efb4a42bc333aa1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104618
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/sw/qa/uitest/writer_tests/tdf81457.py 
b/sw/qa/uitest/writer_tests/tdf81457.py
index 3b7108866ee3..436ed9cd7405 100644
--- a/sw/qa/uitest/writer_tests/tdf81457.py
+++ b/sw/qa/uitest/writer_tests/tdf81457.py
@@ -9,14 +9,15 @@
 
 from uitest.framework import UITestCase
 from libreoffice.uno.propertyvalue import mkPropertyValues
-from uitest.path import get_srcdir_url
 from uitest.uihelper.common import get_state_as_dict
+import org.libreoffice.unotest
+import pathlib
 import time
 from uitest.debug import sleep
 from uitest.uihelper.common import select_pos
 
 def get_url_for_data_file(file_name):
-   return get_srcdir_url() + "/sw/qa/uitest/writer_tests/data/" + file_name
+   return 
pathlib.Path(org.libreoffice.unotest.makeCopyFromTDOC(file_name)).as_uri()
 
 class tdf81457(UITestCase):
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-10-21 Thread Noel (via logerrit)
 vcl/source/gdi/TypeSerializer.cxx |5 +
 1 file changed, 5 insertions(+)

New commits:
commit 0e8e352cc78af9b8cee27a77b0ac8e2e8f98f8cc
Author: Noel 
AuthorDate: Wed Oct 21 15:44:32 2020 +0200
Commit: Stephan Bergmann 
CommitDate: Wed Oct 21 20:35:01 2020 +0200

clamp angle to valid value

fallout from
commit 0fb58a1ff168ae122e9c8993a3136658e3b0e3f0
new tools::Degree10 strong typedef

which caused failures in CppunitTest_vcl_filters_test

Change-Id: Ief60aae62935137330118b1a8d8dd0c428430430
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104631
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/vcl/source/gdi/TypeSerializer.cxx 
b/vcl/source/gdi/TypeSerializer.cxx
index 0b1b53372030..bbfdbf430160 100644
--- a/vcl/source/gdi/TypeSerializer.cxx
+++ b/vcl/source/gdi/TypeSerializer.cxx
@@ -58,6 +58,11 @@ void TypeSerializer::readGradient(Gradient& rGradient)
 rGradient.SetStyle(static_cast(nStyle));
 rGradient.SetStartColor(aStartColor);
 rGradient.SetEndColor(aEndColor);
+if (nAngle > 3600)
+{
+SAL_WARN("vcl", "angle out of range " << nAngle);
+nAngle = 0;
+}
 rGradient.SetAngle(Degree10(nAngle));
 rGradient.SetBorder(nBorder);
 rGradient.SetOfsX(nOffsetX);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 137655] Fileopen DOCX: tables not the same size as in MSO

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137655

László Németh  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |nem...@numbertext.org
   |desktop.org |
 Status|UNCONFIRMED |ASSIGNED
 Ever confirmed|0   |1

--- Comment #2 from László Németh  ---
Timur, thanks. I'll check it soon.

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


[Libreoffice-bugs] [Bug 137664] Can't change slide.Background.FillBitmapMode with Macro or PyUno

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137664

--- Comment #3 from Pablo  ---
I also can't change slide.Background.BitmapFillMode with PyUno. Not sure if the
Macro fix will also fix PyUno.

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


[Libreoffice-bugs] [Bug 137664] Can't change slide.Background.FillBitmapMode with Macro or PyUno

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137664

--- Comment #2 from Pablo  ---
Created attachment 166599
  --> https://bugs.documentfoundation.org/attachment.cgi?id=166599=edit
ODP with master background set to tiled bitmap

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


[Libreoffice-bugs] [Bug 137664] Can't change slide.Background.FillBitmapMode with Macro or PyUno

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137664

--- Comment #1 from Pablo  ---
Created attachment 166598
  --> https://bugs.documentfoundation.org/attachment.cgi?id=166598=edit
ODP with slide background set to tiled bitmap

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


[Libreoffice-bugs] [Bug 137664] New: Can't change slide.Background.FillBitmapMode with Macro or PyUno

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137664

Bug ID: 137664
   Summary: Can't change slide.Background.FillBitmapMode with
Macro or PyUno
   Product: LibreOffice
   Version: 7.1.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: pablo.pl...@gmail.com

Description:
The attached slide-bitmap.odp has slide background set to Tiled Bitmap.
The slide.Background.FillBitmapMode is com.sun.star.drawing.BitmapMode.REPEAT
It's not possible to change the FillBitmapMode to STRETCH.

The attached master-bitmap.odp has the same background set on the Master slide.
Changing the FillBitmapMode of the Master background is possible.

Steps to Reproduce:
A)
1. Open slide-bitmap.odp
2. Press Alt+F11 to open the Macro editor and click Edit.
3. Paste the following code and run it:
Sub Main
Dim doc as Object
doc = ThisComponent
Dim slide as Object
slide = doc.getDrawPages().getByIndex(0)

Print slide.Background.FillBitmapMode
slide.Background.FillBitmapMode = com.sun.star.drawing.BitmapMode.STRETCH
Print slide.Background.FillBitmapMode 
End Sub
4. Check that the FillBitmapMode hasn't change.

B)
1. Open master-bitmap.odp
2. Press Alt+F11 to open the Macro editor and click Edit.
3. Paste the following code and run it:
Sub Main
Dim doc as Object
doc = ThisComponent
Dim slide as Object
slide = doc.getDrawPages().getByIndex(0)

Print slide.MasterPage.Background.FillBitmapMode
slide.MasterPage.Background.FillBitmapMode =
com.sun.star.drawing.BitmapMode.STRETCH
Print slide.MasterPage.Background.FillBitmapMode
End Sub
4. Check that the FillBitmapMode changed.

Actual Results:
The slide.Background.FillBitmap mode hasn't changed.


Expected Results:
The slide.Background.FillBitmap mode should change to STRETCH.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.1.0.0.alpha0+
Build ID: 75030b3a2d4336c494fbe799fb809a37ed7e582f
CPU threads: 1; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: en-US (en_IL); UI: en-US
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2020-10-08_21:40:22
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 137609] When I click any inputed cell, Calc erase the inputed characters. The occurrence of this phenomenon is random.

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137609

m.a.riosv  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||miguelangelrv@libreoffice.o
   ||rg
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from m.a.riosv  ---
Please test with a clean profile Menu/Help/Restart in Safe Mode

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


[Libreoffice-bugs] [Bug 137661] default print range lines appear in spreadsheet without user interaction

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137661

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
I cant' repro.
Version: 7.1.0.0.alpha0+ (x64)
Build ID: df74aef7159d7155addf78cfc4d139485945d794
CPU threads: 4; OS: Windows 10.0 Build 20180; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: 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 137468] Severe performance degradation on a macOS with 10-bit displays

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137468

--- Comment #32 from Tor Lillqvist  ---
> I think the test needs to be improved so that it is aware of the color value 
> shift due to the nature of color space difference.

Maybe, but surely also other code all over the place (slight exaggeration)
would need to be adjusted, too, if the colour space used to display LO's
windows were a device-dependent, potentially wide gamut, colour space. As it is
(now with the change reverted), everything is sRGB.

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


[Libreoffice-bugs] [Bug 115655] Collapsing a cell range with an image inside it makes the image disappear after saving and reloading

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115655

Regina Henschel  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |rb.hensc...@t-online.de
   |desktop.org |

--- Comment #14 from Regina Henschel  ---
I know what happens and will fix it together with other problems for cell
anchored objects

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


[Libreoffice-bugs] [Bug 137497] [Feature Request] Add option to move comments to the left of the document

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137497

Clarc  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|DUPLICATE   |---
 Ever confirmed|0   |1

--- Comment #7 from Clarc  ---
> ...feel free to reopen the ticket.
Thank you.

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


[Libreoffice-bugs] [Bug 106179] [META] Writer comment bugs and enhancements

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106179
Bug 106179 depends on bug 137497, which changed state.

Bug 137497 Summary: [Feature Request] Add option to move comments to the left 
of the document
https://bugs.documentfoundation.org/show_bug.cgi?id=137497

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 137663] TOC is wrong when using "Tools | Chapter Numbering"

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137663

--- Comment #1 from David W. Snow  ---
Created attachment 166597
  --> https://bugs.documentfoundation.org/attachment.cgi?id=166597=edit
ODT file for example

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


[Libreoffice-bugs] [Bug 137663] New: TOC is wrong when using "Tools | Chapter Numbering"

2020-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137663

Bug ID: 137663
   Summary: TOC is wrong when using "Tools | Chapter Numbering"
   Product: LibreOffice
   Version: 7.0.2.2 release
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: david.s...@agingsafely.com

Created attachment 166596
  --> https://bugs.documentfoundation.org/attachment.cgi?id=166596=edit
Image of TOC

LibreOffice Writer has a great feature in “Tools | Chapter Numbering” that will
automatically number headings and subheadings. It can do 1,2,3,4, A,B,C,D or
one, two, three, four, and much more. This allows the author to use the
Navigator pane to reorder headings and subheadings without having to renumber
them. 

However, I wanted to use this for a novel where the chapters were “Chapter One”
“Chapter Two” etc. There was no text for the [Heading 1] just a blank line. The
actual text looked great, but the TOC was a disaster. It was missing the lines
for the blank heading 1 entries. I can see where the authors of novels would
really like this to work. A lot of time is spent when writing to get the
chapters and scenes in the correct order. Renumbering by hand each time adds to
the work and frustration.

Attached is an image of the TOC for a “simple” novel as well as the actual odt
file.

Chapters 1 & 5 have titles while 2-4 have blank titles. In the Navigator, they
look correct. But in the TOX Chapters 2-4 have no entries. This makes
LibreOffice Writer’s “ChapterNumbering” almost useless when writing the most
common style for novels today.

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