[Libreoffice-bugs] [Bug 116792] Crash loadComponentFromURL close

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116792

--- Comment #4 from matti.jaati...@norelco.fi ---
(In reply to Buovjaga from comment #3)
> Can you reproduce the crash with version 6.0.3? Or perhaps a master build,
> if you don't want to upgrade yet (it installs separately):
> https://dev-builds.libreoffice.org/daily/master/Win-x86_64@42/current/
> 
> I see the other signature has a report for 6.0.2, but the other only has
> reports for 5.x.

Hi,

Yes i can:
http://crashreport.libreoffice.org/stats/crash_details/762bb1fc-60e4-4675-9322-bc3037c62130

-- 
You are receiving this mail because:
You 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: 2 commits - avmedia/source external/firebird

2018-04-16 Thread Stephan Bergmann
 avmedia/source/viewer/mediawindow.cxx |8 
 external/firebird/ExternalProject_firebird.mk |2 --
 external/firebird/asan.patch  |   13 ++---
 3 files changed, 10 insertions(+), 13 deletions(-)

New commits:
commit 0a910746b19f10f184f6ff8f41c868994a472ca9
Author: Stephan Bergmann 
Date:   Mon Apr 16 16:48:41 2018 +0200

Clarify checking o_pbLink directly, versus missing dereferencing

But given 18ab7abaa9426cd27092125637fdf5fb849b4a04
"MediaWindow::executeMediaURLDialog: add link button" documents that 
parameter
as "if not 0, this is an 'insert' dialog", it looks plausible that all these
places indeed want to check the pointer-to-bool for non-nullness, rather 
than
checking the dereferenced bool.

Change-Id: Ifbd5e4b711bee97f3ba0b6aab556f533574d21c6
Reviewed-on: https://gerrit.libreoffice.org/52992
Reviewed-by: Michael Stahl 
Tested-by: Jenkins 

diff --git a/avmedia/source/viewer/mediawindow.cxx 
b/avmedia/source/viewer/mediawindow.cxx
index 2b2f0937f562..0fd10f508bca 100644
--- a/avmedia/source/viewer/mediawindow.cxx
+++ b/avmedia/source/viewer/mediawindow.cxx
@@ -211,7 +211,7 @@ void MediaWindow::getMediaFilters( FilterNameVector& 
rFilterNameVector )
 
 bool MediaWindow::executeMediaURLDialog(weld::Window* pParent, OUString& rURL, 
bool *const o_pbLink)
 {
-::sfx2::FileDialogHelperaDlg(o_pbLink
+::sfx2::FileDialogHelperaDlg(o_pbLink != nullptr
 ? ui::dialogs::TemplateDescription::FILEOPEN_LINK_PREVIEW
 : ui::dialogs::TemplateDescription::FILEOPEN_SIMPLE,
 FileDialogFlags::NONE, pParent);
@@ -220,7 +220,7 @@ bool MediaWindow::executeMediaURLDialog(weld::Window* 
pParent, OUString& rURL, b
 static const char   aSeparator[] = ";";
 OUStringaAllTypes;
 
-aDlg.SetTitle( AvmResId( o_pbLink
+aDlg.SetTitle( AvmResId( o_pbLink != nullptr
 ? AVMEDIA_STR_INSERTMEDIA_DLG : AVMEDIA_STR_OPENMEDIA_DLG ) );
 
 getMediaFilters( aFilters );
@@ -261,7 +261,7 @@ bool MediaWindow::executeMediaURLDialog(weld::Window* 
pParent, OUString& rURL, b
 uno::Reference const xFP(aDlg.GetFilePicker());
 uno::Reference const xCtrlAcc(xFP,
 uno::UNO_QUERY_THROW);
-if (o_pbLink)
+if (o_pbLink != nullptr)
 {
 // for video link should be the default
 xCtrlAcc->setValue(
@@ -278,7 +278,7 @@ bool MediaWindow::executeMediaURLDialog(weld::Window* 
pParent, OUString& rURL, b
 const INetURLObject aURL( aDlg.GetPath() );
 rURL = aURL.GetMainURL( INetURLObject::DecodeMechanism::Unambiguous );
 
-if (o_pbLink)
+if (o_pbLink != nullptr)
 {
 uno::Any const any = xCtrlAcc->getValue(
 ui::dialogs::ExtendedFilePickerElementIds::CHECKBOX_LINK, 0);
commit 25764ffd4db0e5db6f9cc9f3da8691e607f48b83
Author: Stephan Bergmann 
Date:   Mon Apr 16 11:09:22 2018 +0200

external/firebird: Better workaround for Clang alignment expectations

8ea07101c1613d213fd7cea17f094a947b14cd00 "external/firebird: Work around
operator new alignment violations" had misused DEBUG_GDS_ALLOC to work 
around
the problem that recent Clang on Linux x86-64 assumes some storage 
allocated via
Firebird's global operator new replacement to be 16-byte aligned, while 
Firebird
only provides 8-byte alignment.

This problem now also appears on macOS x86-64, at least with Apple's Clang
version "Apple LLVM version 9.1.0 (clang-902.0.39.1)" from Xcode 9.3 (as 
well as
with recent plain Clang trunk, towards Clang 7), when building --enable-
optimized.  However, while the DEBUG_GDS_ALLOC hack would still cause
ICU_convert_init 
(workdir/UnpackedTarball/firebird/temp/Release/intl/cv_icu.o)
to not use movaps on erroneously assumed to be 16-byte aligned memory, it 
would
cause strange failures on macOS (pos being out of bounds in 
traRpbList::PopRpb,
workdir/UnpackedTarball/firebird/src/jrd/rpb_chain.cpp, in the invocation of
isql during the build of external/firebird) that I haven't tracked down 
further.

As it happens, the recently added 14955ed91b282ccbb395cb47c6d76e3b42b34748
"external/firebird: Support Clang ASan" provides a different workaround for 
the
underlying problem that appears to work well on both Linux and macOS x86-64,
reusing USE_ASAN also in these cases to shut down most of Firebird's own 
memory
management.

I assume that affected Clang are plain Clang >= 4 (as I'd mentioned in my
 "Re: 
[Firebird-
devel] alloc.h global operator new replacement violating alignment
requirements") and Apple Clang >= 9 (for which __apple_build_version__ is
defined).

Because DEBUG_GDS_ALLOC is no 

[Libreoffice-bugs] [Bug 117025] Deleting bullets in a table cell when cell crosses pages crashes Writer

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117025

--- Comment #8 from ber...@mayoff.com ---
I've uploaded two videos to Google Photos.  One shows a small part of the
document and Writer failing.  It was an attempt to make the video smaller.  The
larger video shows more of the document and the failure.

Smaller video links is https://photos.app.goo.gl/hHtKZgltfSoj3N5j1

and larger video is https://photos.app.goo.gl/DiUxVB9jaokVdnpi2

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


[Libreoffice-bugs] [Bug 117025] Deleting bullets in a table cell when cell crosses pages crashes Writer

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117025

--- Comment #7 from ber...@mayoff.com ---
Created attachment 141415
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141415=edit
Snapshot showing the crash

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


[Libreoffice-bugs] [Bug 117025] Deleting bullets in a table cell when cell crosses pages crashes Writer

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117025

--- Comment #6 from ber...@mayoff.com ---
Created attachment 141414
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141414=edit
Snapshot showing the situation that causes the problem.

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


[Libreoffice-bugs] [Bug 105812] LibreOffice v.5.3.0.3 (Base, Writer, Calc, etc) not recognizing system font configurations on KDE Neon 5.8.5

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105812

--- Comment #5 from Olivier Tilloy  ---
Recent versions of the libreoffice snap should have access to system fonts
(this is part of the desktop interface, which is connected by default when
installing the snap). See
https://forum.snapcraft.io/t/desktop-allow-access-to-host-system-fonts/1796 for
details.

-- 
You are receiving this mail because:
You 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: instsetoo_native/inc_ooohelppack instsetoo_native/inc_openoffice instsetoo_native/inc_sdkoo

2018-04-16 Thread dennisroczek
 instsetoo_native/inc_ooohelppack/windows/msi_templates/Property.idt |1 -
 instsetoo_native/inc_openoffice/windows/msi_languages/Property.ulf  |9 
+++--
 instsetoo_native/inc_openoffice/windows/msi_templates/Property.idt  |1 -
 instsetoo_native/inc_sdkoo/windows/msi_templates/Property.idt   |1 -
 4 files changed, 3 insertions(+), 9 deletions(-)

New commits:
commit defa12ce4d1c3fa550dbbe3a9ae1c54f4392f39c
Author: dennisroczek 
Date:   Sat Mar 31 14:01:39 2018 +0100

Remove dummy "Support help number" under Windows' "Apps and Features"
section.

The OOO_ARPURLINFOABOUTTEMPLATE is simply missleading as the caption in
Windows itself is "Supportlink". As the help states that the product
homepage can be used, switch to libreoffice.org, see documentation at
https://msdn.microsoft.com/en-us/library/aa367752

Additionally switch some links to https.

Change-Id: I8d6d871130d2a50a5ce9aa3e80687601e3038c4e
Reviewed-on: https://gerrit.libreoffice.org/52193
Tested-by: Jenkins 
Reviewed-by: Mike Kaganski 

diff --git 
a/instsetoo_native/inc_ooohelppack/windows/msi_templates/Property.idt 
b/instsetoo_native/inc_ooohelppack/windows/msi_templates/Property.idt
index 9fc042166a49..a165a025020a 100644
--- a/instsetoo_native/inc_ooohelppack/windows/msi_templates/Property.idt
+++ b/instsetoo_native/inc_ooohelppack/windows/msi_templates/Property.idt
@@ -9,7 +9,6 @@ ALLUSERS1
 ARPCOMMENTSARPCOMMENTSTEMPLATE
 ARPCONTACT OOO_ARPCONTACTTEMPLATE
 ARPHELPLINKOOO_ARPHELPLINKTEMPLATE
-ARPHELPTELEPHONE   OOO_ARPHELPTELEPHONETEMPLATE
 ARPURLINFOABOUTOOO_ARPURLINFOABOUTTEMPLATE
 ARPURLUPDATEINFO   OOO_ARPURLUPDATEINFOTEMPLATE
 DefaultUIFont  Tahoma8
diff --git a/instsetoo_native/inc_openoffice/windows/msi_languages/Property.ulf 
b/instsetoo_native/inc_openoffice/windows/msi_languages/Property.ulf
index a8764b0745e9..fb1f0b0e61a9 100644
--- a/instsetoo_native/inc_openoffice/windows/msi_languages/Property.ulf
+++ b/instsetoo_native/inc_openoffice/windows/msi_languages/Property.ulf
@@ -20,16 +20,13 @@
 en-US = "LibreOffice Community"
 
 [OOO_ARPHELPLINKTEMPLATE]
-en-US = "http://www.libreoffice.org/get-help;
-
-[OOO_ARPHELPTELEPHONETEMPLATE]
-en-US = "x-xxx-xxx-xxx"
+en-US = "https://www.libreoffice.org/get-help;
 
 [OOO_ARPURLINFOABOUTTEMPLATE]
-en-US = "http://www.documentfoundation.org;
+en-US = "https://www.libreoffice.org/;
 
 [OOO_ARPURLUPDATEINFOTEMPLATE]
-en-US = "http://www.libreoffice.org/download;
+en-US = "https://www.libreoffice.org/download;
 
 [OOO_STR_NEW_DISPLAY_NAME]
 en-US = "~New"
diff --git a/instsetoo_native/inc_openoffice/windows/msi_templates/Property.idt 
b/instsetoo_native/inc_openoffice/windows/msi_templates/Property.idt
index fcdd9162d680..326b70fcddc7 100644
--- a/instsetoo_native/inc_openoffice/windows/msi_templates/Property.idt
+++ b/instsetoo_native/inc_openoffice/windows/msi_templates/Property.idt
@@ -9,7 +9,6 @@ ALLUSERS1
 ARPCOMMENTSARPCOMMENTSTEMPLATE
 ARPCONTACT OOO_ARPCONTACTTEMPLATE
 ARPHELPLINKOOO_ARPHELPLINKTEMPLATE
-ARPHELPTELEPHONE   OOO_ARPHELPTELEPHONETEMPLATE
 ARPURLINFOABOUTOOO_ARPURLINFOABOUTTEMPLATE
 ARPURLUPDATEINFO   OOO_ARPURLUPDATEINFOTEMPLATE
 DefaultUIFont  Tahoma8
diff --git a/instsetoo_native/inc_sdkoo/windows/msi_templates/Property.idt 
b/instsetoo_native/inc_sdkoo/windows/msi_templates/Property.idt
index 8848ac8e88cd..bea6abe6af03 100644
--- a/instsetoo_native/inc_sdkoo/windows/msi_templates/Property.idt
+++ b/instsetoo_native/inc_sdkoo/windows/msi_templates/Property.idt
@@ -8,7 +8,6 @@ ApplicationUsersAllUsers
 ARPCOMMENTSARPCOMMENTSTEMPLATE
 ARPCONTACT OOO_ARPCONTACTTEMPLATE
 ARPHELPLINKOOO_ARPHELPLINKTEMPLATE
-ARPHELPTELEPHONE   OOO_ARPHELPTELEPHONETEMPLATE
 ARPURLINFOABOUTOOO_ARPURLINFOABOUTTEMPLATE
 ARPURLUPDATEINFO   OOO_ARPURLUPDATEINFOTEMPLATE
 ARPNOREPAIR1
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-04-16 Thread Mike Kaganski
 cui/source/dialogs/SpellDialog.cxx |4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

New commits:
commit 4d2ff5d67fae659d8a7f0adeeea6514fd5db921d
Author: Mike Kaganski 
Date:   Mon Apr 16 12:46:00 2018 +0100

MoveErrorMarkTo already sets the m_nErrorStart and m_nErrorEnd

Change-Id: I1016a0e6787af7bbf4415356ae565ffc9c1ab0ef
Reviewed-on: https://gerrit.libreoffice.org/52967
Tested-by: Jenkins 
Reviewed-by: Mike Kaganski 

diff --git a/cui/source/dialogs/SpellDialog.cxx 
b/cui/source/dialogs/SpellDialog.cxx
index 4de13ce682b0..5e7537d9509c 100644
--- a/cui/source/dialogs/SpellDialog.cxx
+++ b/cui/source/dialogs/SpellDialog.cxx
@@ -1593,9 +1593,7 @@ bool SentenceEditWindow_Impl::MarkNextError( bool 
bIgnoreCurrentError, const css
 //if an attrib has been found search for the end of the error string
 if(aCursor.GetIndex() < nTextLen)
 {
-m_nErrorStart = aCursor.GetIndex();
-m_nErrorEnd = pNextError->GetEnd();
-MoveErrorMarkTo(m_nErrorStart, m_nErrorEnd, bGrammarError);
+MoveErrorMarkTo(aCursor.GetIndex(), pNextError->GetEnd(), 
bGrammarError);
 bRet = true;
 //add an undo action
 SpellUndoAction_Impl* pAction = new SpellUndoAction_Impl(
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117025] Deleting bullets in a table cell when cell crosses pages crashes Writer

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117025

--- Comment #5 from ber...@mayoff.com ---
I've created Camvideo avi recordings that show the failure, but the smallest
file that I could create is 255MB and the largest file that can be uploaded is
only 30MB.  Do you have someplace that you would like me to upload the video?

I am attaching two screenshots that do show the problem.
"Bullet bug snapshot.jpg" shows the situation with the cell with the bulleted
list spanning a page.
"Bullets failed.jpg" shows the failure.  The bulleted text was highlighted and
then the bullet turned off.  You can see that the text is still highlighted and
the bullets are gone, but then Writer crashes immediately.

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


[Libreoffice-commits] core.git: helpcontent2

2018-04-16 Thread Olivier Hallot
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8de0ab93601e3e530b6daff1f255a6a0a82bfce4
Author: Olivier Hallot 
Date:   Mon Apr 16 19:19:10 2018 -0300

Updated core
Project: help  49375fa3358ea5bf8cb8ba0f1bf4f5ab0ada40c3

Helpcontent2 housekeeping

Deleted spurious file in source/

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

diff --git a/helpcontent2 b/helpcontent2
index 22691f35eea6..49375fa3358e 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 22691f35eea6bf031fe271790d9b19093a12f8f4
+Subproject commit 49375fa3358ea5bf8cb8ba0f1bf4f5ab0ada40c3
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2018-04-16 Thread Olivier Hallot
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4da132e90e61d757e238e4cd69d6c7b90a9b77f7
Author: Olivier Hallot 
Date:   Mon Apr 16 19:16:05 2018 -0300

Updated core
Project: help  22691f35eea6bf031fe271790d9b19093a12f8f4

Fix index in sidebar

The last commit of online_transform.xsl instrpduced a bug in
index search on the left. This one fixes it.

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

diff --git a/helpcontent2 b/helpcontent2
index 7809c5f562f2..22691f35eea6 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 7809c5f562f2adb28f36f3f5625e757f238a8d5f
+Subproject commit 22691f35eea6bf031fe271790d9b19093a12f8f4
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: 2 commits - help3xsl/default.css help3xsl/help2.js help3xsl/HELP-IN-BROWSER-README.txt help3xsl/help.js help3xsl/online_transform.xsl Package_html_static.mk source/HELP

2018-04-16 Thread Olivier Hallot
 Package_html_static.mk|1 
 help3xsl/default.css  |3 +
 help3xsl/help.js  |  113 --
 help3xsl/help2.js |  123 ++
 help3xsl/online_transform.xsl |3 -
 source/index.html |   50 -
 6 files changed, 129 insertions(+), 164 deletions(-)

New commits:
commit 49375fa3358ea5bf8cb8ba0f1bf4f5ab0ada40c3
Author: Olivier Hallot 
Date:   Mon Apr 16 19:19:10 2018 -0300

Helpcontent2 housekeeping

Deleted spurious file in source/

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

diff --git a/source/HELP-IN-BROWSER-README.txt 
b/help3xsl/HELP-IN-BROWSER-README.txt
similarity index 100%
rename from source/HELP-IN-BROWSER-README.txt
rename to help3xsl/HELP-IN-BROWSER-README.txt
diff --git a/source/index.html b/source/index.html
deleted file mode 100644
index 32a2a5302..0
--- a/source/index.html
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-LibreOffice Help
-
-
-
-
-
- 
- 
- 
-
-   Calc
-   Writer
-   Impress
-   Draw
-   Chart
-   Basic
-   Math
-   Base
-   Guide
- 
-  
-  Search: 
-  
- 
- 
- 
-
-if (window.location.href.indexOf('?') && getParameterByName('page')) {
-  var module = getParameterByName("DbPAR");
-  var language = getParameterByName("Language");
-  var system = getParameterByName("System");
-  var usedb = getParameterByName("UseDB");
-  displayResult('text/' + getParameterByName('page') + 
'?&DbPAR='+module+'&Language='+language+'&System='+system+'&UseDB='+usedb);
-} else {
-  
displayResult('text/shared/main0108.xhp?Language=en-US&System=WIN&UseDB=no&DbPAR=shared','shared');
-}
-
-
-
commit 22691f35eea6bf031fe271790d9b19093a12f8f4
Author: Olivier Hallot 
Date:   Mon Apr 16 19:16:05 2018 -0300

Fix index in sidebar

The last commit of online_transform.xsl instrpduced a bug in
index search on the left. This one fixes it.

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

diff --git a/Package_html_static.mk b/Package_html_static.mk
index 361987783..79c0be172 100644
--- a/Package_html_static.mk
+++ b/Package_html_static.mk
@@ -18,6 +18,7 @@ $(eval $(call 
gb_Package_add_file,helpcontent2_html_static,$(LIBO_SHARE_HELP_FOL
 
 $(eval $(call 
gb_Package_add_files,helpcontent2_html_static,$(LIBO_SHARE_HELP_FOLDER)/$(if 
$(HELP_ONLINE),$(PRODUCTVERSION),''),\
help.js \
+   help2.js \
fuse.js \
paginathing.js \
normalize.css \
diff --git a/help3xsl/default.css b/help3xsl/default.css
index 391c4d213..8d6d3df2d 100644
--- a/help3xsl/default.css
+++ b/help3xsl/default.css
@@ -266,6 +266,9 @@ h6 {
 display:inline-block;
 border:none;
 }
+.switch,
+.switchinline {}
+
 .tintro {
 color: white;
 background-color: green;
diff --git a/help3xsl/help.js b/help3xsl/help.js
index 585ff2ef8..76d47dd77 100644
--- a/help3xsl/help.js
+++ b/help3xsl/help.js
@@ -6,120 +6,7 @@
  * License, v. 2.0. If a copy of the MPL was not distributed with this
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  */
-// Used to set Application in caseinline=APP
-function setApplSpan(SpanID) {
-var module = getParameterByName("DbPAR");
-if (module === null) {
-module = "WRITER";
-}
-var y = document.getElementById(SpanID).getElementsByTagName("SPAN");
-var n = y.length;
-var foundSystem = false;
-for (i = 0; i < n; i++) {
-if (y[i].getAttribute("id") === null){
-continue;
-}
-else if( y[i].getAttribute("id").startsWith(module)){
-y[i].removeAttribute("hidden");
-foundSystem=true;
-}
-}
-for (i = 0; i < n; i++) {
-if (y[i].getAttribute("id") === null){
-continue;
-}
-else if( y[i].getAttribute("id").startsWith("default")){
-if(!foundSystem){
-y[i].removeAttribute("hidden");
-}
-}
-}
-}
-// Used to set system in case, caseinline=SYSTEM
-function setSystemSpan(spanID) {
-var system = getParameterByName("System");
-// if no System in URL, get browser system
-if (system === null) {
-system = getSystem();
-}
-var y = document.getElementById(spanID).getElementsByTagName("SPAN");
-var n = y.length;
-var foundSystem = false;
-for (i = 0; i < n; i++) {
-if (y[i].getAttribute("id") === 

[Libreoffice-bugs] [Bug 106719] EDITING: No visible selection of the embedded table when selecting cell content

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106719

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 102142] Notebookbar: certain icons are enabled in print preview mode

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102142

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 46515] TABLE: table change cell width when all cells are selected

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46515

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 107127] Notebookbar: Make it easy to create toggle buttons to unhide hidden tabs and groups

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107127

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 106043] EDITING: Selecting a table row by selecting the cell content is impossible if the starting cell is containing a table

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106043

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 105361] Select table row or table column is missing for table within a table ( cell)

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105361

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 107201] EDITING: Selecting few table rows and the the paragraph below it at once isn' t possible

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107201

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 107153] DISPLAY: row headers misaligned with data (wrap text, vertical: top)

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107153

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 117055] Writer's Page count does not update until document is saved, closed, and reopened

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117055

--- Comment #1 from rpgcrafts...@gmail.com ---
okay so apparently it was a corruption in the user profile

i feel stupid now

sorry

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


[Libreoffice-bugs] [Bug 117055] New: Writer' s Page count does not update until document is saved, closed, and reopened

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117055

Bug ID: 117055
   Summary: Writer's Page count does not update until document is
saved, closed, and reopened
   Product: LibreOffice
   Version: 6.0.3.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rpgcrafts...@gmail.com

Description:
When writing in Libreoffice, the bottom left corner does not update page count
until you save, close it, and come back.  It also never updates what page
you're actually on.  I think character and word count are also frozen.

Version is 6.0.3.2, 64-bit.

Steps to Reproduce:
1. Opened document
2. Typed for a while
3. Checked the page count

Actual Results:  
No page count update after writing for several pages.

Expected Results:
Should have gotten the pages numbers, cursor position, etc.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.0.3.2 (x64)
Build ID: 8f48d515416608e3a835360314dac7e47fd0b821
CPU threads: 4; OS: Windows 10.0; UI render: GL; 
Locale: en-US (en_US); Calc: CL


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101
Firefox/59.0

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


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

2018-04-16 Thread Armin Le Grand
 drawinglayer/source/primitive2d/metafileprimitive2d.cxx |   60 ++--
 vcl/quartz/salbmp.cxx   |   32 +++-
 2 files changed, 52 insertions(+), 40 deletions(-)

New commits:
commit 7f9b0f47979dcb7abfed37bb7cd38ab51eac6011
Author: Armin Le Grand 
Date:   Mon Oct 30 16:29:09 2017 +0100

tdf#113197 Add MaskPrimitive (clip) to EMF/WMF if needed

Added code to quartz vcl implementation that takes care
when BitmapPalette.count != (depth^^2)-1 - which may
be the case anytime. If then a bitmap value exists that
goes beyond that count, a invalid access was executed

Change-Id: Iab332c91b8753aab85e9d365323f5c9e531efab2
Reviewed-on: https://gerrit.libreoffice.org/44058
Reviewed-by: Bartosz Kosiorek 
Tested-by: Jenkins 

diff --git a/drawinglayer/source/primitive2d/metafileprimitive2d.cxx 
b/drawinglayer/source/primitive2d/metafileprimitive2d.cxx
index db1bac7d4f91..5b8436c4a813 100644
--- a/drawinglayer/source/primitive2d/metafileprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/metafileprimitive2d.cxx
@@ -20,43 +20,10 @@
 #include 
 #include 
 
-//#include 
 #include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
 #include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
-//#include 
+#include 
+#include 
 
 using namespace com::sun::star;
 
@@ -74,6 +41,29 @@ namespace drawinglayer
 {
 // get target size
 const ::tools::Rectangle 
aMtfTarget(getMetaFile().GetPrefMapMode().GetOrigin(), 
getMetaFile().GetPrefSize());
+const basegfx::B2DRange aMtfRange(aMtfTarget.Left(), 
aMtfTarget.Top(), aMtfTarget.Right(), aMtfTarget.Bottom());
+
+// tdf#113197 get content range and check if we have an 
overlap with
+// defined target range (aMtfRange)
+if (!aMtfRange.isEmpty())
+{
+const basegfx::B2DRange 
aContentRange(xRetval.getB2DRange(rViewInformation));
+
+// also test equal since isInside gives also true for equal
+if (!aMtfRange.equal(aContentRange) && 
!aMtfRange.isInside(aContentRange))
+{
+// contentRange is partly larger than aMtfRange (stuff 
sticks
+// outside), clipping is needed
+const drawinglayer::primitive2d::Primitive2DReference 
xMask(
+new drawinglayer::primitive2d::MaskPrimitive2D(
+basegfx::B2DPolyPolygon(
+basegfx::utils::createPolygonFromRect(
+aMtfRange)),
+xRetval));
+
+xRetval = 
drawinglayer::primitive2d::Primitive2DContainer{ xMask };
+}
+}
 
 // create transformation
 basegfx::B2DHomMatrix aAdaptedTransform;
diff --git a/vcl/quartz/salbmp.cxx b/vcl/quartz/salbmp.cxx
index 891370a96833..7146461c7af1 100644
--- a/vcl/quartz/salbmp.cxx
+++ b/vcl/quartz/salbmp.cxx
@@ -438,11 +438,13 @@ class ImplPixelFormat8 : public ImplPixelFormat
 private:
 sal_uInt8* pData;
 const BitmapPalette& mrPalette;
+const sal_uInt8 mnPaletteCount;
 
 public:
 explicit ImplPixelFormat8( const BitmapPalette& rPalette )
 : pData(nullptr)
 , mrPalette(rPalette)
+, mnPaletteCount(static_cast< sal_uInt8 >(rPalette.GetEntryCount()))
 {
 }
 virtual void StartLine( sal_uInt8* pLine ) override { pData = pLine; }
@@ -452,7 +454,13 @@ public:
 }
 virtual Color ReadPixel() override
 {
-return mrPalette[ *pData++ ].GetColor();
+const sal_uInt8 nIndex(*pData++);
+
+// Caution(!) rPalette.GetEntryCount() may be != (depth^^2)-1 (!)
+if(nIndex < mnPaletteCount)
+return mrPalette[nIndex].GetColor();
+else
+return Color(COL_BLACK);
 }
 virtual void WritePixel( Color nColor ) override
 {
@@ -465,6 +473,7 @@ class ImplPixelFormat4 : public ImplPixelFormat
 private:
 sal_uInt8* pData;
 const BitmapPalette& mrPalette;
+const sal_uInt8 mnPaletteCount;
 sal_uInt32 mnX;
 sal_uInt32 mnShift;
 
@@ -472,6 +481,7 @@ public:
 explicit ImplPixelFormat4( const BitmapPalette& rPalette )
 : pData(nullptr)
 , mrPalette(rPalette)
+, mnPaletteCount(static_cast< sal_uInt8 >(rPalette.GetEntryCount()))
 , 

[Libreoffice-bugs] [Bug 117053] Libo6.1 crash when datasource error dialog dismissed FORMS

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117053

MM  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from MM  ---
Confirmed with Version: 6.1.0.0.alpha0+
Build ID: dc823f5fa4a5d2eca56297b9045e5962536c00f9
CPU threads: 2; OS: Linux 4.4; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2018-04-10_23:32:35
Locale: en-US (en_US.UTF-8); Calc: 

The error window says:

Error code: 1

firebird_sdbc error:
*Dynamic SQL Error
*SQL error code = -206
*Column unknown
*LINK_FROM_EMPLOYEEID
*At line 1, column 240
caused by
'isc_dsql_prepare'

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


[Libreoffice-bugs] [Bug 116892] FILEOPEN: Rotated Objects Anchored to Cells set Move when Opened

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116892

Terrence Enger  changed:

   What|Removed |Added

   Keywords||bibisected

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


[Libreoffice-bugs] [Bug 116892] FILEOPEN: Rotated Objects Anchored to Cells set Move when Opened

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116892

Terrence Enger  changed:

   What|Removed |Added

 CC||lo_b...@iseries-guru.com

--- Comment #5 from Terrence Enger  ---
Created attachment 141413
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141413=edit
tail of terminal output, daily Linux dbgutil bibisect

Working on debian-buster in the daily Linux dbgutil bibisect
repository, I see the bug came into LO somewhere in the 73 or so
commits to master:

  commitdates-h
    --  
good  559d6c25  2018-04-06  6c737acc
bad   bdd69368  2018-04-07  3ec490fc

For this, I deemed:

bad, upon opening file: rotated square is in C3, extending into C2
and C4.

bad after save and reopen, and good upon opening file and after
save and reopen: rotated square is in B2, extending into C2.


Contrary to comment 3, I have not seen the bug in 5.4.5.1.

I am setting keyword bibisected.

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


[Libreoffice-bugs] [Bug 116812] FORMATTING: Font size regression (Microsoft's Bahnschrift)

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116812

Khaled Hosny  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |khaledho...@eglug.org
   |desktop.org |

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


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0' - 2 commits - include/vcl sc/source

2018-04-16 Thread Marco Cecchetti
 include/vcl/ITiledRenderable.hxx |2 
 sc/source/ui/view/gridwin.cxx|  113 ++-
 sc/source/ui/view/gridwin4.cxx   |   41 ++
 3 files changed, 108 insertions(+), 48 deletions(-)

New commits:
commit e277f5d22943624448465e6c04f0fbabcb751c6f
Author: Marco Cecchetti 
Date:   Tue Mar 13 21:39:26 2018 +0100

lok - sc: set a min width for valid list window

Change-Id: If22dbc9f0f0512d4b05e9b16c8c6414af33fb9d4
Reviewed-on: https://gerrit.libreoffice.org/51594
Tested-by: Jenkins 
Reviewed-by: Marco Cecchetti 
(cherry picked from commit faf24b27a731147518390bf88efccb251a97)
Reviewed-on: https://gerrit.libreoffice.org/53009
Tested-by: Marco Cecchetti 

diff --git a/sc/source/ui/view/gridwin.cxx b/sc/source/ui/view/gridwin.cxx
index 0bd73358e931..4df3462c9431 100644
--- a/sc/source/ui/view/gridwin.cxx
+++ b/sc/source/ui/view/gridwin.cxx
@@ -1079,6 +1079,11 @@ void ScGridWindow::LaunchDataSelectMenu( SCCOL nCol, 
SCROW nRow )
 //  Adjust position and size to Window
 //! Check first if the entries fit (width)
 
+// minimum width in pixel
+const long nMinLOKWinWidth = static_cast(1.3 * STD_COL_WIDTH * 
pViewData->GetPPTX());
+if (comphelper::LibreOfficeKit::isActive() && nSizeX < nMinLOKWinWidth)
+nSizeX = nMinLOKWinWidth;
+
 Size aParentSize = GetParent()->GetOutputSizePixel();
 Size aSize( nSizeX, nHeight );
 
commit 9721a7fe0f2d0310612a7b0a1ddbaf843131e66e
Author: Marco Cecchetti 
Date:   Wed Mar 7 14:09:51 2018 +0100

lok - sc - list validation

This provide the correct invalidation and drawing of the combo box
control which is used for cell where a validation list has been set
up.

This patch fixes also tunneling issue for the floating window showing
the list of valid entries.

Change-Id: I9f7277688293eff443504221c7c7e46097a5da4a
Reviewed-on: https://gerrit.libreoffice.org/50893
Tested-by: Jenkins 
Reviewed-by: Marco Cecchetti 
(cherry picked from commit 1dc8aac6eeb8e97964bbe5af90ec81158afd048c)
Reviewed-on: https://gerrit.libreoffice.org/53008
Tested-by: Marco Cecchetti 

diff --git a/include/vcl/ITiledRenderable.hxx b/include/vcl/ITiledRenderable.hxx
index e25cdd67506a..7221f19bac48 100644
--- a/include/vcl/ITiledRenderable.hxx
+++ b/include/vcl/ITiledRenderable.hxx
@@ -127,7 +127,7 @@ public:
 // sometimes MouseButtonDown captures mouse and starts tracking, 
and VCL
 // will not take care of releasing that with tiled rendering
 if (pLOKEv->mpWindow->IsTracking())
-pLOKEv->mpWindow->EndTracking(TrackingEventFlags::DontCallHdl);
+pLOKEv->mpWindow->EndTracking();
 
 break;
 case VclEventId::WindowMouseMove:
diff --git a/sc/source/ui/view/gridwin.cxx b/sc/source/ui/view/gridwin.cxx
index 495f3e6bd6fe..0bd73358e931 100644
--- a/sc/source/ui/view/gridwin.cxx
+++ b/sc/source/ui/view/gridwin.cxx
@@ -1040,6 +1040,10 @@ void ScGridWindow::LaunchDataSelectMenu( SCCOL nCol, 
SCROW nRow )
 aPos.Y() += nSizeY - 1;
 
 mpFilterFloat.reset(VclPtr::Create(this, 
WinBits(WB_BORDER)));
+if (comphelper::LibreOfficeKit::isActive())
+{
+mpFilterFloat->SetLOKNotifier(SfxViewShell::Current());
+}
 mpFilterFloat->SetPopupModeEndHdl(LINK( this, ScGridWindow, 
PopupModeEndHdl));
 mpFilterBox.reset(VclPtr::Create(mpFilterFloat.get(), 
this, nCol, nRow, ScFilterBoxMode::DataSelect));
 // Fix for bug fdo#44925
@@ -1788,12 +1792,61 @@ void ScGridWindow::HandleMouseButtonDown( const 
MouseEvent& rMEvt, MouseEventSta
 }
 }
 
+void lcl_executeList( ScViewData* pViewData, ScModule* pScMod, ScMarkData& 
rMark )
+{
+pViewData->GetView()->SelectionChanged();
+
+SfxDispatcher* pDisp = pViewData->GetViewShell()->GetDispatcher();
+bool bFormulaMode = pScMod->IsFormulaMode();
+OSL_ENSURE( pDisp || bFormulaMode, "Cursor moved on inactive View ?" );
+
+//  #i14927# execute SID_CURRENTCELL (for macro recording) only if there 
is no
+//  multiple selection, so the argument string completely describes the 
selection,
+//  and executing the slot won't change the existing selection (executing 
the slot
+//  here and from a recorded macro is treated equally)
+if ( pDisp && !bFormulaMode && !rMark.IsMultiMarked() )
+{
+OUString aAddr;   // CurrentCell
+if( rMark.IsMarked() )
+{
+ScRange aScRange;
+rMark.GetMarkArea( aScRange );
+aAddr = aScRange.Format(ScRefFlags::RANGE_ABS);
+if ( aScRange.aStart == aScRange.aEnd )
+{
+//  make sure there is a range selection 

[Libreoffice-bugs] [Bug 115964] Document password prompt not centered to window with GTK3, when opening file directly

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115964

--- Comment #15 from Alberto Salvia Novella  ---
Is there something I should test?

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


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0' - include/LibreOfficeKit sc/source

2018-04-16 Thread Marco Cecchetti
 include/LibreOfficeKit/LibreOfficeKitEnums.h |   11 +++-
 sc/source/ui/inc/gridwin.hxx |2 +
 sc/source/ui/view/gridwin.cxx|   35 +--
 sc/source/ui/view/gridwin4.cxx   |2 -
 4 files changed, 46 insertions(+), 4 deletions(-)

New commits:
commit 4710bbfbab56b24c35cbb15652fb1793176629a4
Author: Marco Cecchetti 
Date:   Tue Apr 3 16:49:08 2018 +0200

lok - sc: validity list drop down button callback

Change-Id: Iaedc7f15147ea7f09e71877b592f932e3ecb37d5
Reviewed-on: https://gerrit.libreoffice.org/51596
Tested-by: Jenkins 
Reviewed-by: Marco Cecchetti 
(cherry picked from commit 00d5cbf5f2a47c1614891c071b35f4a9e0b54354)
Reviewed-on: https://gerrit.libreoffice.org/53007
Tested-by: Marco Cecchetti 

diff --git a/include/LibreOfficeKit/LibreOfficeKitEnums.h 
b/include/LibreOfficeKit/LibreOfficeKitEnums.h
index 691018277e25..0c223463fdb8 100644
--- a/include/LibreOfficeKit/LibreOfficeKitEnums.h
+++ b/include/LibreOfficeKit/LibreOfficeKitEnums.h
@@ -570,6 +570,15 @@ typedef enum
 LOK_CALLBACK_WINDOW = 36,
 
 /**
+ * When for the current cell is defined a validity list we need to show
+ * a drop down button in the form of a marker.
+ *
+ * The payload format is: "x, y, visible" where x, y are the current
+ * cell cursor coordinates and visible is set to 0 or 1.
+ */
+LOK_CALLBACK_VALIDITY_LIST_BUTTON = 37,
+
+/**
  * Notification that the clipboard contents have changed.
  * Typically fired in response to copying to clipboard.
  *
@@ -578,7 +587,7 @@ typedef enum
  * in the future the contents might be included for
  * convenience.
  */
-LOK_CALLBACK_CLIPBOARD_CHANGED = 37,
+LOK_CALLBACK_CLIPBOARD_CHANGED = 38,
 }
 LibreOfficeKitCallbackType;
 
diff --git a/sc/source/ui/inc/gridwin.hxx b/sc/source/ui/inc/gridwin.hxx
index 5190385de016..e8a564d0737b 100644
--- a/sc/source/ui/inc/gridwin.hxx
+++ b/sc/source/ui/inc/gridwin.hxx
@@ -447,6 +447,8 @@ public:
 ScViewData* getViewData();
 virtual FactoryFunction GetUITestFactory() const override;
 
+void updateLOKValListButton(bool bVisible, const ScAddress& rPos) const;
+
 protected:
 void ImpCreateOverlayObjects();
 void ImpDestroyOverlayObjects();
diff --git a/sc/source/ui/view/gridwin.cxx b/sc/source/ui/view/gridwin.cxx
index 386e7388cb89..495f3e6bd6fe 100644
--- a/sc/source/ui/view/gridwin.cxx
+++ b/sc/source/ui/view/gridwin.cxx
@@ -4555,6 +4555,16 @@ void ScGridWindow::UpdateAutoFillMark(bool bMarked, 
const ScRange& rMarkRange)
 }
 }
 
+void ScGridWindow::updateLOKValListButton( bool bVisible, const ScAddress& 
rPos ) const
+{
+SCCOL nX = rPos.Col();
+SCROW nY = rPos.Row();
+std::stringstream ss;
+ss << nX << ", " << nY << ", " << static_cast(bVisible);
+ScTabViewShell* pViewShell = pViewData->GetViewShell();
+pViewShell->libreOfficeKitViewCallback(LOK_CALLBACK_VALIDITY_LIST_BUTTON, 
ss.str().c_str());
+}
+
 void ScGridWindow::UpdateListValPos( bool bVisible, const ScAddress& rPos )
 {
 bool bOldButton = bListValButton;
@@ -4568,7 +4578,14 @@ void ScGridWindow::UpdateListValPos( bool bVisible, 
const ScAddress& rPos )
 if ( !bOldButton || aListValPos != aOldPos )
 {
 // paint area of new button
-Invalidate( PixelToLogic( GetListValButtonRect( aListValPos ) ) );
+if ( comphelper::LibreOfficeKit::isActive() )
+{
+updateLOKValListButton( true, aListValPos );
+}
+else
+{
+Invalidate( PixelToLogic( GetListValButtonRect( aListValPos ) 
) );
+}
 }
 }
 if ( bOldButton )
@@ -4576,7 +4593,14 @@ void ScGridWindow::UpdateListValPos( bool bVisible, 
const ScAddress& rPos )
 if ( !bListValButton || aListValPos != aOldPos )
 {
 // paint area of old button
-Invalidate( PixelToLogic( GetListValButtonRect( aOldPos ) ) );
+if ( comphelper::LibreOfficeKit::isActive() )
+{
+updateLOKValListButton( false, aOldPos );
+}
+else
+{
+Invalidate( PixelToLogic( GetListValButtonRect( aOldPos ) ) );
+}
 }
 }
 }
@@ -5615,9 +5639,16 @@ void ScGridWindow::updateLibreOfficeKitCellCursor(const 
SfxViewShell* pOtherShel
 if (pOtherShell)
 {
 if (pOtherShell == pViewShell)
+{
 pViewShell->libreOfficeKitViewCallback(LOK_CALLBACK_CELL_CURSOR, 
aCursor.getStr());
+
+if (bListValButton && aListValPos == pViewData->GetCurPos())
+updateLOKValListButton(true, aListValPos);
+}
 else
+{
 SfxLokHelper::notifyOtherView(pViewShell, pOtherShell, 
LOK_CALLBACK_CELL_VIEW_CURSOR, 

[Libreoffice-bugs] [Bug 117054] When typing into a text box keyboard characters arrive on screen in wrong order

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117054

--- Comment #1 from Chris Hanks  ---
Created attachment 141412
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141412=edit
document where the issue is showing

this is the document I am having the issue in.

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


[Libreoffice-bugs] [Bug 117054] New: When typing into a text box keyboard characters arrive on screen in wrong order

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117054

Bug ID: 117054
   Summary: When typing into a text box keyboard characters arrive
on screen in wrong order
   Product: LibreOffice
   Version: 5.4.5.1 release
  Hardware: x86 (IA32)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: christopher.l.ha...@gmail.com

Description:
In a Writer document with several large photos and text boxes keyboard entered
characters arrive in the document in the wrong sequence.  type 'abcdefgh' on
the keyboard and get 'acbdefgh'.  If you type really slow it does not happen. 
If you type fast it happens.  It appears that some part of the character
processing is using threading and the tasks are getting out of sequence.

Steps to Reproduce:
1.create a document with large pictures inserted
2.insert a text box 
3.type something fast and it will be out of sequence

Actual Results:  
characters are entered in the document slowly and out of sequence

Expected Results:
characters from keyboard are displayed in the correct sequence


Reproducible: Always


User Profile Reset: No



Additional Info:
OpenGL vendor string: VMware, Inc.
OpenGL renderer string: llvmpipe (LLVM 5.0, 128 bits)
OpenGL core profile version string: 3.3 (Core Profile) Mesa 17.2.8
OpenGL core profile shading language version string: 3.30
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile
OpenGL core profile extensions:
OpenGL version string: 3.0 Mesa 17.2.8
OpenGL shading language version string: 1.30
OpenGL context flags: (none)
OpenGL extensions:
OpenGL ES profile version string: OpenGL ES 3.0 Mesa 17.2.8
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.00
OpenGL ES profile extensions:



User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:59.0) Gecko/20100101
Firefox/59.0

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


[Libreoffice-bugs] [Bug 116932] Equations created in MS Word 2013 have inverted red question marks when docx file opened in Libre Writer

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116932

Phil Krylov  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 116932] Equations created in MS Word 2013 have inverted red question marks when docx file opened in Libre Writer

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116932

Phil Krylov  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 95230] Formula displayed by LO is not correct and show red "?" signs in formula text

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95230

Phil Krylov  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 66284] Non math text in a math region, i.e. "*" in a Word docx not recognised by Libreoffice

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66284

Phil Krylov  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 66284] Non math text in a math region, i.e. "*" in a Word docx not recognised by Libreoffice

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66284

Phil Krylov  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 95230] Formula displayed by LO is not correct and show red "?" signs in formula text

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95230

Phil Krylov  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 117053] Libo6.1 crash when datasource error dialog dismissed FORMS

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117053

--- Comment #1 from Drew Jensen  ---
Created attachment 141411
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141411=edit
crash dump

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


[Libreoffice-bugs] [Bug 117053] New: Libo6.1 crash when datasource error dialog dismissed FORMS

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117053

Bug ID: 117053
   Summary: Libo6.1 crash when datasource error dialog dismissed
FORMS
   Product: LibreOffice
   Version: 6.1.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: drewjensen.in...@gmail.com

Created attachment 141410
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141410=edit
test ODB with bad form

TEST SYSTEM: Version: 6.1.0.0.alpha0+
Build ID: 110a9e2604e835fff9fcd6053b1d7e5f92b92e8e
CPU threads: 4; OS: Linux 4.13; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2018-04-16_12:05:29
Locale: en-US (en_US.UTF-8); Calc: group

Reproduce:
Open attached test database.
Open existing form for data entry.
An error dialog box will open for an SQL error. 
Close the error dialog.
Crash

The form was created with the wizard, based on a query and user error then used
the same query as the sub_form datasource and that causes the SQL error.

Open forms without sql errors isn't causing crashes. Running query defs which
generated SQL errors did not crash either.

But this form in the db will crash it every time.

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


[Libreoffice-commits] online.git: loleaflet/main.js

2018-04-16 Thread Henry Castro
 loleaflet/main.js |1 +
 1 file changed, 1 insertion(+)

New commits:
commit dfab8731a9c02233d02f5ec723107a85dbdae2c3
Author: Henry Castro 
Date:   Mon Apr 16 17:17:08 2018 -0400

loleflet: disable the document is automatically zoomed ...

so that the width fits the viewing area

Change-Id: If0f7234429130aed47dbc9156fde2e125680638f

diff --git a/loleaflet/main.js b/loleaflet/main.js
index 0438a818e..73527b2e5 100644
--- a/loleaflet/main.js
+++ b/loleaflet/main.js
@@ -114,6 +114,7 @@ var map = L.map('map', {
wopiSrc: wopiSrc,
notWopiButIframe: notWopiButIframe,
alwaysActive: alwaysActive,
+   autoFitWidth: false,
idleTimeoutSecs: idleTimeoutSecs,  // Dim when user is idle.
outOfFocusTimeoutSecs: outOfFocusTimeoutSecs // Dim after switching 
tabs.
 });
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 66284] Non math text in a math region, i.e. "*" in a Word docx not recognised by Libreoffice

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66284

--- Comment #1 from Phil Krylov  ---
The same happens with RTF import, an asterisk within a \mr text run in math is
not quoted on import and displays as ¿.

LibreOffice version 6.0.3.2.

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


[Libreoffice-commits] core.git: accessibility/source dbaccess/source extensions/qa filter/source fpicker/source odk/examples offapi/com officecfg/registry qadevOOo/tests sd/qa sfx2/qa svx/source sw/so

2018-04-16 Thread Andrea Gelmini
 UnoControls/source/base/basecontainercontrol.cxx  
|2 -
 accessibility/source/extended/accessibleeditbrowseboxcell.cxx 
|2 -
 dbaccess/source/core/api/table.cxx
|2 -
 dbaccess/source/ui/inc/sbamultiplex.hxx   
|2 -
 dbaccess/source/ui/querydesign/JoinTableView.cxx  
|2 -
 extensions/qa/integration/extensions/ConsoleWait.java 
|4 +--
 filter/source/msfilter/msdffimp.cxx   
|2 -
 fpicker/source/win32/folderpicker/FolderPicker.cxx
|2 -
 odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java 
|6 ++---
 offapi/com/sun/star/graphic/EmfTools.idl  
|2 -
 offapi/com/sun/star/graphic/XEmfParser.idl
|2 -
 offapi/com/sun/star/ucb/SimpleFileAccess.idl  
|2 -
 offapi/com/sun/star/ucb/XWebDAVCommandEnvironment.idl 
|2 -
 officecfg/registry/schema/org/openoffice/Office/Addons.xcs
|2 -
 qadevOOo/tests/java/ifc/accessibility/_XAccessibleText.java   
|   12 +-
 sd/qa/unit/tiledrendering/tiledrendering.cxx  
|2 -
 sfx2/qa/complex/sfx2/GlobalEventBroadcaster.java  
|4 +--
 svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx  
|2 -
 sw/source/filter/ww8/wrtw8nds.cxx 
|2 -
 sw/source/filter/ww8/wrtw8sty.cxx 
|4 +--
 toolkit/qa/complex/toolkit/accessibility/_XAccessibleText.java
|   12 +-
 vcl/inc/win/salframe.h
|2 -
 vcl/win/window/salframe.cxx   
|2 -
 xmerge/source/xmerge/java/org/openoffice/xmerge/test/Driver.java  
|2 -
 xmlsecurity/source/helper/documentsignaturemanager.cxx
|2 -
 25 files changed, 40 insertions(+), 40 deletions(-)

New commits:
commit 0f93692fda4226323422cf82ce34ae4bd5e22fab
Author: Andrea Gelmini 
Date:   Mon Apr 16 11:31:51 2018 +0200

Fix typos

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

diff --git a/UnoControls/source/base/basecontainercontrol.cxx 
b/UnoControls/source/base/basecontainercontrol.cxx
index cbc476731078..3896cf7bacee 100644
--- a/UnoControls/source/base/basecontainercontrol.cxx
+++ b/UnoControls/source/base/basecontainercontrol.cxx
@@ -375,7 +375,7 @@ void SAL_CALL BaseContainerControl::setVisible ( sal_Bool 
bVisible )
 
 WindowDescriptor* BaseContainerControl::impl_getWindowDescriptor ( const 
Reference< XWindowPeer > & rParentPeer )
 {
-// - used from "createPeer()" to set the values of an WindowDescriptor!!!
+// - used from "createPeer()" to set the values of a WindowDescriptor!!!
 // - if you will change the descriptor-values, you must override this 
virtual function
 // - the caller must release the memory for this dynamical descriptor!!!
 
diff --git a/accessibility/source/extended/accessibleeditbrowseboxcell.cxx 
b/accessibility/source/extended/accessibleeditbrowseboxcell.cxx
index 221dd742b3d3..ff5ddbde89eb 100644
--- a/accessibility/source/extended/accessibleeditbrowseboxcell.cxx
+++ b/accessibility/source/extended/accessibleeditbrowseboxcell.cxx
@@ -235,7 +235,7 @@ namespace accessibility
 m_pBrowseBox = nullptr;
 m_xControlAccessible.clear();
 m_aContext.clear();
-// NO dispose of the inner object there: it is the 
css::accessibility::XAccessible of an window, and disposing
+// NO dispose of the inner object there: it is the 
css::accessibility::XAccessible of a window, and disposing
 // it would delete the respective VCL window
 }
 } // namespace accessibility
diff --git a/dbaccess/source/core/api/table.cxx 
b/dbaccess/source/core/api/table.cxx
index d0a414e03693..eec18f7a8952 100644
--- a/dbaccess/source/core/api/table.cxx
+++ b/dbaccess/source/core/api/table.cxx
@@ -145,7 +145,7 @@ void SAL_CALL ODBTable::disposing()
 void ODBTable::getFastPropertyValue(Any& _rValue, sal_Int32 _nHandle) const
 {
 if ((PROPERTY_ID_PRIVILEGES == _nHandle) && (-1 == m_nPrivileges))
-{   // somebody is asking for the privileges an we do not know them, yet
+{   // somebody is asking for the privileges and we do not know them, yet
 const_cast(this)->m_nPrivileges = 
::dbtools::getTablePrivileges(getMetaData(),m_CatalogName,m_SchemaName, m_Name);
 

[Libreoffice-bugs] [Bug 117039] Print Preview crashes on signed document

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117039

--- Comment #4 from Ferry Toth  ---
@Xisco, that was lightning fast, thanks!

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


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

2018-04-16 Thread Tamás Zolnai
 editeng/source/editeng/editview.cxx |4 
 1 file changed, 4 insertions(+)

New commits:
commit 7c6fbd0ac3b5927b337aa69b132aba14e9b3103f
Author: Tamás Zolnai 
Date:   Mon Apr 16 14:38:36 2018 +0200

sd lok: Impress: Right-click menu on misspelled word locks up session

Change-Id: Ib554eea7049c1ea244bc4789ee3d7d2adf87e283
Reviewed-on: https://gerrit.libreoffice.org/52977
Tested-by: Jenkins 
Reviewed-by: Tamás Zolnai 

diff --git a/editeng/source/editeng/editview.cxx 
b/editeng/source/editeng/editview.cxx
index 4ea99caea93e..d336fc860758 100644
--- a/editeng/source/editeng/editview.cxx
+++ b/editeng/source/editeng/editview.cxx
@@ -66,6 +66,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 
@@ -1025,6 +1026,9 @@ void EditView::ExecuteSpellPopup( const Point& rPosPixel, 
LinkpEditEngine->pImpEditEngine->CreateEPaM(aPaM);
 EPaM aP2 = 
pImpEditView->pEditEngine->pImpEditEngine->CreateEPaM(aPaM2);
 
+
+if (comphelper::LibreOfficeKit::isActive())
+aPopupMenu->SetLOKNotifier(SfxViewShell::Current());
 sal_uInt16 nId = aPopupMenu->Execute(pImpEditView->GetWindow(), 
aTempRect, PopupMenuFlags::NoMouseUpClose);
 
 aPaM2 = pImpEditView->pEditEngine->pImpEditEngine->CreateEditPaM(aP2);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-04-16 Thread Bartosz Kosiorek
 drawinglayer/source/tools/emfpfont.cxx   |3 +
 drawinglayer/source/tools/emfphelperdata.cxx |   49 ---
 drawinglayer/source/tools/emfphelperdata.hxx |2 +
 drawinglayer/source/tools/emfppen.cxx|2 +
 4 files changed, 51 insertions(+), 5 deletions(-)

New commits:
commit dbe3c29a3bf74b0d037eb035eca11aa4836db8da
Author: Bartosz Kosiorek 
Date:   Wed Apr 11 01:05:01 2018 +0200

tdf#113624 EMF+ Add support for different units conversion

With previous implementation only Pixel unit was supported.
Other units (eg. inch, milimeters, points, world) was treated
as Pixel.
With this patch the correct unit conversion was implemented to following 
records:
 - FontObject
 - PenObject
 - SetWorldTransform

As a result records are properly scaled.
Tested with DrawString record from:
https://bugs.documentfoundation.org/attachment.cgi?id=140287

Change-Id: I77435ad8f1bbac08f298a03d91d0c7f1f1734e5c
Reviewed-on: https://gerrit.libreoffice.org/52699
Tested-by: Jenkins 
Reviewed-by: Bartosz Kosiorek 

diff --git a/drawinglayer/source/tools/emfpfont.cxx 
b/drawinglayer/source/tools/emfpfont.cxx
index 6c1b1a8e06c3..4c6d162dac11 100644
--- a/drawinglayer/source/tools/emfpfont.cxx
+++ b/drawinglayer/source/tools/emfpfont.cxx
@@ -49,6 +49,9 @@ namespace emfplushelper
 SAL_INFO("drawinglayer", "EMF+\tfont\nEMF+\theader: 0x" << std::hex << 
(header >> 12) << " version: 0x" << (header & 0x1fff) << " size: " << std::dec 
<< emSize << " unit: 0x" << std::hex << sizeUnit << std::dec);
 SAL_INFO("drawinglayer", "EMF+\tflags: 0x" << std::hex << fontFlags << 
" reserved: 0x" << reserved << " length: 0x" << std::hex << length << std::dec);
 
+//tdf#113624 Convert unit to Pixels
+emSize = emSize * 
EmfPlusHelperData::getUnitToPixelMultiplier(static_cast(sizeUnit));
+
 if (length > 0 && length < 0x4000)
 {
 rtl_uString *pStr = rtl_uString_alloc(length);
diff --git a/drawinglayer/source/tools/emfphelperdata.cxx 
b/drawinglayer/source/tools/emfphelperdata.cxx
index c4574a62fb45..cdf79d378b49 100644
--- a/drawinglayer/source/tools/emfphelperdata.cxx
+++ b/drawinglayer/source/tools/emfphelperdata.cxx
@@ -107,6 +107,44 @@ namespace emfplushelper
 StringAlignmentFar = 0x0002
 } StringAlignment;
 
+float EmfPlusHelperData::getUnitToPixelMultiplier(const UnitType aUnitType)
+{
+switch (aUnitType)
+{
+case UnitTypePixel:
+{
+return 1.0f;
+}
+case UnitTypePoint:
+{
+SAL_INFO("drawinglayer", "EMF+\t Converting Points to 
Pixels.");
+return 1.33f;
+}
+case UnitTypeInch:
+{
+SAL_INFO("drawinglayer", "EMF+\t TODO Test Converting Inches 
to Pixels, if it is working correctly.");
+return 96.0f;
+}
+case UnitTypeMillimeter:
+{
+SAL_INFO("drawinglayer", "EMF+\t TODO Test Converting 
Milimeters to Pixels, if it is working correctly.");
+return 3.779528f;
+}
+case UnitTypeDocument:
+{
+SAL_INFO("drawinglayer", "EMF+\t TODO Test Converting 
Documents to Pixels, if it is working correctly.");
+return 0.32f;
+}
+case UnitTypeWorld:
+case UnitTypeDisplay:
+default:
+{
+SAL_WARN("drawinglayer", "EMF+\tTODO Unimplemented support of 
Unit Type: 0x" << std::hex << aUnitType);
+}
+}
+return 1.0f;
+}
+
 void EmfPlusHelperData::processObjectRecord(SvMemoryStream& rObjectStream, 
sal_uInt16 flags, sal_uInt32 dataSize, bool bUseWholeStream)
 {
 sal_uInt32 index;
@@ -1230,7 +1268,7 @@ namespace emfplushelper
 }
 else
 {
-SAL_WARN("drawinglayer", "EMF+ DrawImage(Points) 
Wrong EMF+ file. Only Unit Type Pixel is support by EMF+ standard in 
DrawImage(Points)");
+SAL_WARN("drawinglayer", "EMF+ DrawImage(Points) 
Wrong EMF+ file. Only Unit Type Pixel is support by EMF+ specification for 
DrawImage(Points)");
 }
 break;
 }
@@ -1365,14 +1403,15 @@ namespace emfplushelper
 SAL_INFO("drawinglayer", "EMF+ SetPageTransform");
 SAL_INFO("drawinglayer", "EMF+\tscale: " << 
mfPageScale << " unit: " << flags);
 
-if (flags != UnitTypePixel)
+if ((flags == UnitTypeDisplay) || (flags == 
UnitTypeWorld))
 {
-SAL_WARN("drawinglayer", "EMF+\t 

[Libreoffice-bugs] [Bug 55058] EMF+ List of EMF import bugs with examples

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55058

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.1.0

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


[Libreoffice-bugs] [Bug 55058] EMF+ List of EMF import bugs with examples

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55058

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

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

tdf#55058 Properly close shapes with close shape method.

It will be available in 6.1.0.

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

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

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


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

2018-04-16 Thread Bartosz Kosiorek
 drawinglayer/source/tools/emfphelperdata.cxx |   12 ++--
 drawinglayer/source/tools/emfppath.cxx   |5 +
 2 files changed, 7 insertions(+), 10 deletions(-)

New commits:
commit 7d829719a25eaeee7022983ca211203c2a48cf51
Author: Bartosz Kosiorek 
Date:   Fri Apr 13 16:56:29 2018 +0200

tdf#55058 Properly close shapes with close shape method.

With previous implementation of closing shapes, we are adding
new line between last and first point.
It was causing wrong border shape during displaying.
With this patch proper method was used to fix that.

Change-Id: If0a084700401edd9d3b8a57cb27154079828e6ed
Reviewed-on: https://gerrit.libreoffice.org/52843
Tested-by: Jenkins 
Reviewed-by: Patrick Jaap 
Reviewed-by: Bartosz Kosiorek 

diff --git a/drawinglayer/source/tools/emfphelperdata.cxx 
b/drawinglayer/source/tools/emfphelperdata.cxx
index 49ed0f13b734..c4574a62fb45 100644
--- a/drawinglayer/source/tools/emfphelperdata.cxx
+++ b/drawinglayer/source/tools/emfphelperdata.cxx
@@ -1013,7 +1013,7 @@ namespace emfplushelper
 // Silent MSVC warning C4701: potentially 
uninitialized local variable 'brushIndexOrColor' used
 sal_uInt32 brushIndexOrColor = 999;
 sal_Int32 rectangles;
-bool isColor = (flags & 0x8000);
+const bool isColor = (flags & 0x8000);
 ::basegfx::B2DPolygon polygon;
 
 if (EmfPlusRecordTypeFillRects == type)
@@ -1033,14 +1033,14 @@ namespace emfplushelper
 {
 float x, y, width, height;
 ReadRectangle(rMS, x, y, width, height, bool(flags 
& 0x4000));
-
+polygon.clear();
 polygon.append(Map(x, y));
 polygon.append(Map(x + width, y));
 polygon.append(Map(x + width, y + height));
 polygon.append(Map(x, y + height));
-polygon.append(Map(x, y));
+polygon.setClosed(true);
 
-SAL_INFO("drawinglayer", "EMF+\trectangle: " << x 
<< ", " << width << "x" << height);
+SAL_INFO("drawinglayer", "EMF+\t rectangle: " << x 
<< ", "<< y << " " << width << "x" << height);
 
 ::basegfx::B2DPolyPolygon polyPolygon(polygon);
 if (type == EmfPlusRecordTypeFillRects)
@@ -1052,13 +1052,13 @@ namespace emfplushelper
 }
 case EmfPlusRecordTypeFillPolygon:
 {
-sal_uInt8 index = flags & 0xff;
+const sal_uInt8 index = flags & 0xff;
 sal_uInt32 brushIndexOrColor;
 sal_Int32 points;
 
 rMS.ReadUInt32(brushIndexOrColor);
 rMS.ReadInt32(points);
-SAL_INFO("drawinglayer", "EMF+ FillPolygon in slot: " 
<< +index << " points: " << points);
+SAL_INFO("drawinglayer", "EMF+ FillPolygon in slot: " 
<< index << " points: " << points);
 SAL_INFO("drawinglayer", "EMF+\t: " << ((flags & 
0x8000) ? "color" : "brush index") << " 0x" << std::hex << brushIndexOrColor << 
std::dec);
 
 EMFPPath path(points, true);
diff --git a/drawinglayer/source/tools/emfppath.cxx 
b/drawinglayer/source/tools/emfppath.cxx
index ec9a9e44c328..b3f63bc26e14 100644
--- a/drawinglayer/source/tools/emfppath.cxx
+++ b/drawinglayer/source/tools/emfppath.cxx
@@ -156,10 +156,7 @@ namespace emfplushelper
 // Draw an extra line between the last point and the first point, to 
close the shape.
 if (bAddLineToCloseShape)
 {
-if (bMapIt)
-polygon.append (rR.Map (pPoints [0], pPoints [1]) );
-else
-polygon.append (::basegfx::B2DPoint (pPoints [0], pPoints [1]) 
);
+polygon.setClosed (true);
 }
 
 if (polygon.count ())
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117052] Disable ligatures when letter spacing is used

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117052

--- Comment #1 from Dominik Kopp  ---
Created attachment 141409
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141409=edit
document with ligatures

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


[Libreoffice-bugs] [Bug 117052] New: Disable ligatures when letter spacing is used

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117052

Bug ID: 117052
   Summary: Disable ligatures when letter spacing is used
   Product: LibreOffice
   Version: 6.0.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: s...@kabelfunk.de

Description:
When you use fonts like
- Calibiri
- Dejavu Serif
- Source Sans Pro
which support opentype features like ligatures together with spacing then the
result looks bad, because letters like ff are without spacing.

Proposal:
Disable ligatures when spacing is used.



Steps to Reproduce:
1. Choose an Opentype font like Calibiri, Dejavu Serif or Source Sans Pro
2. Set letter spacing to 3.0 pt or more
3. Enter an example like "Schriftart" (because of ft)


Actual Results:  
All letters have spacing expect ft

Expected Results:
Space between f and t (=disable ligature)


Reproducible: Always


User Profile Reset: No



Additional Info:
Workaround:
add ":-liga" to the font name to manually disable ligatures.


User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:59.0) Gecko/20100101
Firefox/59.0

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


[Libreoffice-commits] online.git: common/Util.cpp common/Util.hpp kit/ForKit.cpp

2018-04-16 Thread Michael Meeks
 common/Util.cpp |   15 +++
 common/Util.hpp |3 +++
 kit/ForKit.cpp  |3 +++
 3 files changed, 21 insertions(+)

New commits:
commit 03bbe526650d25bcd0864e0dad087bb1e1396323
Author: Michael Meeks 
Date:   Mon Apr 16 20:03:01 2018 +0100

Ensure the forkit does not have lingering threads after preinit.

Change-Id: I216a03a0ada628189355ebfd4016bf6033430eef

diff --git a/common/Util.cpp b/common/Util.cpp
index 962b5b4c1..a03cf4c46 100644
--- a/common/Util.cpp
+++ b/common/Util.cpp
@@ -140,6 +140,21 @@ namespace Util
 return newTmp;
 }
 
+int getProcessThreadCount()
+{
+DIR *fdDir = opendir("/proc/self/task");
+if (!fdDir)
+{
+LOG_ERR("No proc mounted");
+return -1;
+}
+int tasks = 0;
+while (readdir(fdDir))
+tasks++;
+closedir(fdDir);
+return tasks;
+}
+
 // close what we have - far faster than going up to a 1m open_max eg.
 static bool closeFdsFromProc()
 {
diff --git a/common/Util.hpp b/common/Util.hpp
index db5217fbe..cd59f7d95 100644
--- a/common/Util.hpp
+++ b/common/Util.hpp
@@ -48,6 +48,9 @@ namespace Util
 /// Create randomized temporary directory
 std::string createRandomTmpDir();
 
+/// Get number of threads in this process or -1 on error
+int getProcessThreadCount();
+
 /// Spawn a process if stdInput is non-NULL it contains a writable 
descriptor
 /// to send data to the child.
 int spawnProcess(const std::string , const std::vector 
,
diff --git a/kit/ForKit.cpp b/kit/ForKit.cpp
index 3dac8ac18..89f49e53d 100644
--- a/kit/ForKit.cpp
+++ b/kit/ForKit.cpp
@@ -527,6 +527,9 @@ int main(int argc, char** argv)
 if (!globalPreinit(loTemplate))
 std::_Exit(Application::EXIT_SOFTWARE);
 
+if (Util::getProcessThreadCount() != 1)
+LOG_ERR("Error: forkit has more than a single thread after pre-init");
+
 LOG_INF("Preinit stage OK.");
 
 // We must have at least one child, more are created dynamically.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-04-16 Thread Michael Meeks
 linguistic/source/gciterator.cxx |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 08364d213091e47b91b5fd044c7cda7e71d2647b
Author: Michael Meeks 
Date:   Fri Apr 13 23:28:33 2018 +0100

Defer grammar checker thread creation until use.

Avoid this thread being started and stranded in the forkit.

Change-Id: Ia79cdac729a85960c2b5a83af265d67af07b74aa
Reviewed-on: https://gerrit.libreoffice.org/52980
Tested-by: Jenkins 
Reviewed-by: Michael Meeks 

diff --git a/linguistic/source/gciterator.cxx b/linguistic/source/gciterator.cxx
index 0f59515dcc15..b1dce0de8543 100644
--- a/linguistic/source/gciterator.cxx
+++ b/linguistic/source/gciterator.cxx
@@ -241,7 +241,7 @@ GrammarCheckingIterator::GrammarCheckingIterator() :
 m_aEventListeners( MyMutex::get() ),
 m_aNotifyListeners( MyMutex::get() )
 {
-m_thread = osl_createThread( lcl_workerfunc, this );
+m_thread = nullptr;
 }
 
 
@@ -321,6 +321,8 @@ void GrammarCheckingIterator::AddEntry(
 
 // add new entry to the end of this queue
 ::osl::Guard< ::osl::Mutex > aGuard( MyMutex::get() );
+if (!m_thread)
+m_thread = osl_createThread( lcl_workerfunc, this );
 m_aFPEntriesQueue.push_back( aNewFPEntry );
 
 // wake up the thread in order to do grammar checking
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 113099] Reopening file from Samba share crashes LO

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113099

Aron Budea  changed:

   What|Removed |Added

 Attachment #137010|text/x-log  |text/plain
  mime type||

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


[Libreoffice-bugs] [Bug 104742] [META] Network-involved bugs

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104742

Aron Budea  changed:

   What|Removed |Added

 Depends on||112024


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112024
[Bug 112024] Impossible to open documents from a samba share
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 112024] Impossible to open documents from a samba share

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112024

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
 Blocks||104742


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104742
[Bug 104742] [META] Network-involved 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 117051] Legend is not aligned and "m" missing in bar chart when rendering PPTX

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117051

--- Comment #1 from Stuart Ng  ---
Created attachment 141408
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141408=edit
Source PPTX with the issue on LibreOffice

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


[Libreoffice-bugs] [Bug 117051] New: Legend is not aligned and "m" missing in bar chart when rendering PPTX

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117051

Bug ID: 117051
   Summary: Legend is not aligned and "m" missing in bar chart
when rendering PPTX
   Product: LibreOffice
   Version: 5.3.7.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: stuartc...@gmail.com

Description:
For the attached PPTX, the legend and icon is misaligned and also "m" is
missing from the bar chart dollar figures

Steps to Reproduce:
1. Open the attached PPTX
2. Look at the rendered slides

Actual Results:  
On page 1 the graphic on the top right doesnt show the "m" for millions next to
the numbers
On page 1 the icons of the legend on the bottom left arent aligned as they are
in the original file.

Expected Results:
Should look the same as the original PPTX when open in MS Office


Reproducible: Always


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36

-- 
You are receiving this mail because:
You 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 'aoo/trunk' - solenv/bin

2018-04-16 Thread Matthias Seidel
 solenv/bin/modules/installer/download.pm |   13 ++---
 1 file changed, 6 insertions(+), 7 deletions(-)

New commits:
commit af8b9767feaa871e5edf6369ba35616b11736a3d
Author: Matthias Seidel 
Date:   Mon Apr 16 18:08:04 2018 +

Temporarily disable translation of NSIS for Arabic.

Minor cleanup and some German comments translated.

diff --git a/solenv/bin/modules/installer/download.pm 
b/solenv/bin/modules/installer/download.pm
index 7254677adee8..01ac9c717ea3 100644
--- a/solenv/bin/modules/installer/download.pm
+++ b/solenv/bin/modules/installer/download.pm
@@ -1177,7 +1177,7 @@ sub nsis_language_converter
 if ( $language eq "en-US" ) { $nsislanguage = "English"; }
 elsif ( $language eq "af" ) { $nsislanguage = "Afrikaans"; }
 elsif ( $language eq "sq" ) { $nsislanguage = "Albanian"; }
-elsif ( $language eq "ar" ) { $nsislanguage = "Arabic"; }
+#elsif ( $language eq "ar" ) { $nsislanguage = "Arabic"; } # Temporarily 
disabled (Malformed LO surrogate)
 elsif ( $language eq "hy" ) { $nsislanguage = "Armenian"; }
 elsif ( $language eq "ast" ) { $nsislanguage = "Asturian"; }
 elsif ( $language eq "eu" ) { $nsislanguage = "Basque"; }
@@ -1228,7 +1228,7 @@ sub nsis_language_converter
 elsif ( $language eq "th" ) { $nsislanguage = "Thai"; }
 elsif ( $language eq "zh-TW" ) { $nsislanguage = "TradChinese"; }
 elsif ( $language eq "tr" ) { $nsislanguage = "Turkish"; }
-#elsif ( $language eq "uk" ) { $nsislanguage = "Ukrainian"; } #temporarily 
disabled (problem in Ukrainian.nsh)
+#elsif ( $language eq "uk" ) { $nsislanguage = "Ukrainian"; } # 
Temporarily disabled (Problem in Ukrainian.nsh)
 elsif ( $language eq "vi" ) { $nsislanguage = "Vietnamese"; }
 elsif ( $language eq "cy" ) { $nsislanguage = "Welsh"; }
 else
@@ -1374,7 +1374,7 @@ sub get_language_string_from_language_block
 ##
 # Windows: Replacing strings in NSIS nsh file
 # nsh file syntax:
-# !define MUI_TEXT_DIRECTORY_TITLE "Zielverzeichnis auswählen"
+# !define MUI_TEXT_DIRECTORY_TITLE "Choose Install Location"
 ##
 
 sub replace_identifier_in_nshfile
@@ -1400,7 +1400,7 @@ sub replace_identifier_in_nshfile
 # Windows: Replacing strings in NSIS nlf file
 # nlf file syntax (2 lines):
 # # ^DirSubText
-# Zielverzeichnis
+# Destination Folder
 ##
 
 sub replace_identifier_in_nlffile
@@ -1771,8 +1771,7 @@ sub create_link_tree
 }
 
 ###
-# Setting supported platform for Sun OpenOffice.org
-# builds
+# Setting supported platform for OpenOffice builds
 ###
 
 sub is_supported_platform
@@ -1979,7 +1978,7 @@ sub create_download_link_tree
 my ($downloaddir, $languagestringref, $allvariableshashref) = @_;
 
 $installer::logger::Info->print("\n");
-
$installer::logger::Info->print("**\n");
 #
+
$installer::logger::Info->print("**\n");
 $installer::logger::Info->print("... creating download hard link ...\n");
 
$installer::logger::Info->print("**\n");
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 116947] Fail Add to DIC

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116947

--- Comment #7 from Diogo Filho de Morais  ---
I set the system to English and nothing happened, the problem still continues.
The word is not added to the dictionary.(In reply to Jean-Baptiste Faure from
comment #6)
> (In reply to Diogo Filho de Morais from comment #5)
> > Ok, I use Brazilian Portuguese Ubuntu 16.04 and downloaded LibreOffice from
> > the official site in .deb files. The problem continues and may be something
> > in the Brazilian Portuguese version of LibreOffice.
> 
> You can check this hypothesis by switching the UI language to English USA
> which should be installed too. Menu Tools > Options > Language Settings >
> Language
> 
> Best regards. JBF

I set the system to English and nothing happened, the problem still continues.
The word is not added to the dictionary.

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


[Libreoffice-bugs] [Bug 100925] When overwriting a cell, new content is displayed on top of the old content until finishing the edit

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100925

--- Comment #89 from Caolán McNamara  ---
caolanm->Buovjaga: do you think we can call this fixed now ?

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


[Libreoffice-bugs] [Bug 103182] [META] GTK3-specific bugs

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

Bug 117034 Summary: CRASH: special characters dialog - right click Favorite 
characters (gtk3)
https://bugs.documentfoundation.org/show_bug.cgi?id=117034

   What|Removed |Added

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

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


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

2018-04-16 Thread Caolán McNamara
 vcl/unx/gtk3/gtk3gtkinst.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 00c317da4b50db8793c4d7a2e70084b716d75735
Author: Caolán McNamara 
Date:   Mon Apr 16 14:03:36 2018 +0100

tdf#117034 right click crash

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

diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx
index 5ce77bea39fa..183d61075b18 100644
--- a/vcl/unx/gtk3/gtk3gtkinst.cxx
+++ b/vcl/unx/gtk3/gtk3gtkinst.cxx
@@ -1573,7 +1573,7 @@ public:
 nTime = GtkSalFrame::GetLastInputEventTime();
 }
 
-gtk_menu_popup(GTK_MENU(pWidget), nullptr, nullptr, nullptr, nullptr, 
nButton, nTime);
+gtk_menu_popup(m_pMenu, nullptr, nullptr, nullptr, nullptr, nButton, 
nTime);
 #endif
 
 if (g_main_loop_is_running(pLoop))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-04-16 Thread Mike Kaganski
 cui/source/dialogs/SpellDialog.cxx |   30 +++---
 1 file changed, 19 insertions(+), 11 deletions(-)

New commits:
commit ae37494d93a1eb2e9e48d96a46d420e5accd261f
Author: Mike Kaganski 
Date:   Mon Apr 16 12:55:48 2018 +0100

sal_uInt16 -> sal_Int32

Change-Id: I756206aacabe53d85b7a6f397bf08abd5892ca76
Reviewed-on: https://gerrit.libreoffice.org/52969
Tested-by: Jenkins 
Reviewed-by: Mike Kaganski 

diff --git a/cui/source/dialogs/SpellDialog.cxx 
b/cui/source/dialogs/SpellDialog.cxx
index 1f66ca104c71..4de13ce682b0 100644
--- a/cui/source/dialogs/SpellDialog.cxx
+++ b/cui/source/dialogs/SpellDialog.cxx
@@ -657,7 +657,9 @@ IMPL_LINK( SpellDialog, DialogUndoHdl, 
SpellUndoAction_Impl&, rAction, void )
 break;
 case SPELLUNDO_CHANGE_NEXTERROR:
 {
-
m_pSentenceED->MoveErrorMarkTo(static_cast(rAction.GetOldErrorStart()),
 static_cast(rAction.GetOldErrorEnd()), false);
+
m_pSentenceED->MoveErrorMarkTo(static_cast(rAction.GetOldErrorStart()),
+   
static_cast(rAction.GetOldErrorEnd()),
+   false);
 if(rAction.IsErrorLanguageSelected())
 {
 UpdateBoxes_Impl();
@@ -1534,8 +1536,8 @@ bool SentenceEditWindow_Impl::MarkNextError( bool 
bIgnoreCurrentError, const css
 //if it's not already modified the modified flag has to be reset at the 
end of the marking
 bool bModified = IsModified();
 bool bRet = false;
-const sal_uInt16 nOldErrorStart = m_nErrorStart;
-const sal_uInt16 nOldErrorEnd   = m_nErrorEnd;
+const sal_Int32 nOldErrorStart = m_nErrorStart;
+const sal_Int32 nOldErrorEnd   = m_nErrorEnd;
 
 //create a cursor behind the end of the last error
 //- or at 0 at the start of the sentence
@@ -1576,7 +1578,12 @@ bool SentenceEditWindow_Impl::MarkNextError( bool 
bIgnoreCurrentError, const css
 
 aCursor.GetIndex() += xEntry->getReplacementText().getLength();
 // maybe the error found here is already added to the dictionary and 
has to be ignored
-} else if(pSpellErrorDescription && !bGrammarError && xSpell->isValid( 
GetErrorText(), static_cast(LanguageTag::convertToLanguageType( 
pSpellErrorDescription->aLocale )), Sequence< PropertyValue >() )) {
+}
+else if(pSpellErrorDescription && !bGrammarError &&
+xSpell->isValid(GetErrorText(),
+
static_cast(LanguageTag::convertToLanguageType( 
pSpellErrorDescription->aLocale )),
+Sequence< PropertyValue >() ))
+{
 ++aCursor.GetIndex();
 }
 else
@@ -1679,7 +1686,7 @@ void SentenceEditWindow_Impl::ChangeMarkedWord(const 
OUString& rNewWord, Languag
 //adjust end position
 long nEndTemp = m_nErrorEnd;
 nEndTemp += nDiffLen;
-m_nErrorEnd = static_cast(nEndTemp);
+m_nErrorEnd = static_cast(nEndTemp);
 
 SpellUndoAction_Impl* pAction = new SpellUndoAction_Impl(
 SPELLUNDO_MOVE_ERROREND, 
GetSpellDialog()->aDialogUndoLink);
@@ -1759,10 +1766,10 @@ void SentenceEditWindow_Impl::SetText( const OUString& 
rStr )
 
 struct LanguagePosition_Impl
 {
-sal_uInt16  nPosition;
+sal_Int32   nPosition;
 LanguageTypeeLanguage;
 
-LanguagePosition_Impl(sal_uInt16 nPos, LanguageType eLang) :
+LanguagePosition_Impl(sal_Int32 nPos, LanguageType eLang) :
 nPosition(nPos),
 eLanguage(eLang)
 {}
@@ -1770,7 +1777,7 @@ struct LanguagePosition_Impl
 typedef std::vector LanguagePositions_Impl;
 
 static void lcl_InsertBreakPosition_Impl(
-LanguagePositions_Impl& rBreakPositions, sal_uInt16 nInsert, 
LanguageType eLanguage)
+LanguagePositions_Impl& rBreakPositions, sal_Int32 nInsert, 
LanguageType eLanguage)
 {
 LanguagePositions_Impl::iterator aStart = rBreakPositions.begin();
 while(aStart != rBreakPositions.end())
@@ -1847,7 +1854,7 @@ svx::SpellPortions 
SentenceEditWindow_Impl::CreateSpellPortions() const
 LanguagePositions_Impl::iterator aStart = aBreakPositions.begin();
 //start should always be Null
 eLang = aStart->eLanguage;
-sal_uInt16 nStart = aStart->nPosition;
+sal_Int32 nStart = aStart->nPosition;
 DBG_ASSERT(!nStart, "invalid start position - language attribute 
missing?");
 ++aStart;
 
@@ -1952,10 +1959,11 @@ void SentenceEditWindow_Impl::UndoActionEnd()
 
 void SentenceEditWindow_Impl::MoveErrorEnd(long nOffset)
 {
+// Shoudn't we always add the real signed value instead???
 if(nOffset > 0)
-m_nErrorEnd = m_nErrorEnd - static_cast(nOffset);
+m_nErrorEnd = m_nErrorEnd - static_cast(nOffset);
 else
-m_nErrorEnd = m_nErrorEnd -static_cast(- nOffset);
+

[Libreoffice-bugs] [Bug 117050] Unable to copy or paste in the Hyperlink dialog box

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117050

--- Comment #3 from rom...@tutanota.com ---
Configuration: 

Newly installed nextcloud 13.0.1 with the latest image of Collabora/CODE,
Collabora online app 2.0.5.

nginx as a webserver for nextcloud and reverse proxy for the docker image.
php-fpm 7.0.27.

Bug:

I am unable to copy or paste from the URL field in the Insert > Hyperlink
dialog box. 

With either internal (coming from the document content itself) or external
(from outside the browser) data in the clipboard, the Cut/Copy/Paste items in
the contextual menu opening on right click stay grayed out and deactivated.
Keyboard shortcuts do not work either.

No error messages appear in the js console with either firefox or chromium. No
relevant error messages either in nextcloud.log or "docker logs" output
(attached to the bugreport).

PS: Sorry for the empty description for the bug, I hit "enter" by accident on
the form.

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


[Libreoffice-bugs] [Bug 117050] Unable to copy or paste in the Hyperlink dialog box

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117050

--- Comment #2 from rom...@tutanota.com ---
Created attachment 141407
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141407=edit
docker logs output

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


[Libreoffice-bugs] [Bug 117050] Unable to copy or paste in the Hyperlink dialog box

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117050

--- Comment #1 from rom...@tutanota.com ---
Created attachment 141406
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141406=edit
nextcloud.log output (IP stripped)

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


[Libreoffice-bugs] [Bug 117050] New: Unable to copy or paste in the Hyperlink dialog box

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117050

Bug ID: 117050
   Summary: Unable to copy or paste in the Hyperlink dialog box
   Product: LibreOffice Online
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rom...@tutanota.com

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


[Libreoffice-commits] core.git: chart2/source include/svx sc/source sd/source svx/inc svx/source sw/source

2018-04-16 Thread Armin Le Grand
 chart2/source/controller/main/SelectionHelper.cxx |2 
 include/svx/obj3d.hxx |   54 ---
 include/svx/scene3d.hxx   |   23 +
 include/svx/svdobj.hxx|6 
 include/svx/svdogrp.hxx   |2 
 include/svx/svdpage.hxx   |6 
 sc/source/core/tool/detfunc.cxx   |2 
 sc/source/ui/Accessibility/AccessibleDocument.cxx |2 
 sd/source/core/EffectMigration.cxx|2 
 sd/source/core/sdpage.cxx |4 
 sd/source/ui/animations/motionpathtag.cxx |2 
 sd/source/ui/unoidl/unoobj.cxx|2 
 svx/inc/sdr/properties/e3dproperties.hxx  |3 
 svx/source/engine3d/obj3d.cxx |  301 ++
 svx/source/engine3d/scene3d.cxx   |  253 --
 svx/source/engine3d/view3d.cxx|2 
 svx/source/sdr/contact/viewcontactofsdrobj.cxx|2 
 svx/source/sdr/properties/e3dproperties.cxx   |   15 -
 svx/source/sdr/properties/e3dsceneproperties.cxx  |   30 +-
 svx/source/sdr/properties/groupproperties.cxx |   35 +-
 svx/source/svdraw/svdedtv.cxx |6 
 svx/source/svdraw/svdedtv2.cxx|   32 +-
 svx/source/svdraw/svdedxv.cxx |6 
 svx/source/svdraw/svdmark.cxx |8 
 svx/source/svdraw/svdmrkv.cxx |2 
 svx/source/svdraw/svdobj.cxx  |   45 ++-
 svx/source/svdraw/svdogrp.cxx |4 
 svx/source/svdraw/svdpage.cxx |   62 ++--
 svx/source/svdraw/svdpagv.cxx |2 
 svx/source/svdraw/svdundo.cxx |8 
 svx/source/svdraw/svdview.cxx |4 
 svx/source/unodraw/unoshap2.cxx   |6 
 svx/source/unodraw/unoshap3.cxx   |4 
 svx/source/unodraw/unoshape.cxx   |6 
 sw/source/core/frmedt/fecopy.cxx  |4 
 sw/source/core/frmedt/feshview.cxx|2 
 sw/source/filter/xml/swxml.cxx|2 
 37 files changed, 447 insertions(+), 504 deletions(-)

New commits:
commit fda4b0f65eb23b597612113686a927a90f11a0f0
Author: Armin Le Grand 
Date:   Wed Apr 11 19:22:52 2018 +0200

Take care of E3DObjList

E3DObjList is not needed, remove. Remove memeber from
E3DObject, derive E3DScene directly from SdrObjList, some
cleanups in SdrObject, too

Change-Id: Ifa4620a800c14faf21f8b80fd4dc1d39f71be804
Reviewed-on: https://gerrit.libreoffice.org/52740
Tested-by: Jenkins 
Reviewed-by: Armin Le Grand 

diff --git a/chart2/source/controller/main/SelectionHelper.cxx 
b/chart2/source/controller/main/SelectionHelper.cxx
index 44171c6bd966..f7918d2ba4d2 100644
--- a/chart2/source/controller/main/SelectionHelper.cxx
+++ b/chart2/source/controller/main/SelectionHelper.cxx
@@ -330,7 +330,7 @@ bool SelectionHelper::findNamedParent( SdrObject*& 
pInOutObject
 
 while( pObj && !ObjectIdentifier::isCID( aName  )  )
 {
-SdrObjList* pObjList = pObj->GetObjList();
+SdrObjList* pObjList = pObj->getParentOfSdrObject();
 if( !pObjList )
 return false;
 SdrObject* pOwner = pObjList->GetOwnerObj();
diff --git a/include/svx/obj3d.hxx b/include/svx/obj3d.hxx
index 7ad18848d4cd..099c4b3aad63 100644
--- a/include/svx/obj3d.hxx
+++ b/include/svx/obj3d.hxx
@@ -36,10 +36,7 @@
 #include 
 #include 
 
-
-// Forward declaration
-
-
+// Forward declarations
 class SfxPoolItem;
 class Viewport3D;
 class E3dScene;
@@ -71,30 +68,6 @@ public:
 
 /*
 |*
-|* List for 3D objects
-|*
-\/
-
-class E3dObjList final : public SdrObjList
-{
-public:
-E3dObjList();
-SVX_DLLPUBLIC virtual ~E3dObjList() override;
-
-virtual E3dObjList* CloneSdrObjList(SdrModel* pNewModel = nullptr) const 
override;
-
-virtual void NbcInsertObject(SdrObject* pObj, size_t nPos=SAL_MAX_SIZE) 
override;
-virtual void InsertObject(SdrObject* pObj, size_t nPos=SAL_MAX_SIZE) 
override;
-virtual SdrObject* NbcRemoveObject(size_t nObjNum) override;
-virtual SdrObject* RemoveObject(size_t nObjNum) override;
-
-private:
-E3dObjList =(const E3dObjList& rSrcList) = delete;
-E3dObjList(const E3dObjList& rSrcList) = delete;
-};
-
-/*
-|*
 |* Base class for 3D objects
 |*
 \/
@@ -106,14 +79,11 @@ private:
 friend class sdr::properties::E3dProperties;
 
 // Allow everything for E3dObjList and E3dDragMethod
-

[Libreoffice-bugs] [Bug 117038] UI: The layout of the Special character dialog moving a little when switching from recent to favorite character

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117038

--- Comment #5 from V Stuart Foote  ---
OK the second screencast shows pretty clearly it is not from an odd font.

So, what happens if you disable OpenGL? What GPU and driver pair are you
working with on Windows 8.1? Does changing to Default with HA, or just CPU
rendering affect things?

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


[Libreoffice-commits] core.git: include/vcl sw/inc sw/source sw/uiconfig vcl/inc vcl/source vcl/unx

2018-04-16 Thread Caolán McNamara
 include/vcl/weld.hxx  |3 
 sw/inc/swabstdlg.hxx  |2 
 sw/source/ui/dialog/swdlgfact.cxx |   25 ++-
 sw/source/ui/dialog/swdlgfact.hxx |   11 +
 sw/source/ui/misc/insfnote.cxx|  223 +-
 sw/source/uibase/inc/insfnote.hxx |   71 -
 sw/source/uibase/shells/textsh1.cxx   |6 
 sw/source/uibase/uiview/viewdlg2.cxx  |2 
 sw/uiconfig/swriter/ui/insertfootnote.ui  |   22 ++
 vcl/inc/unx/gtk/gtkinst.hxx   |2 
 vcl/source/app/salvtables.cxx |   10 +
 vcl/unx/gtk3/gtk3gtkinst.cxx  |   84 +++
 vcl/unx/gtk3/gtk3salnativewidgets-gtk.cxx |5 
 13 files changed, 284 insertions(+), 182 deletions(-)

New commits:
commit 6703b806a7d33f27bdec53d5c897beac94308fd9
Author: Caolán McNamara 
Date:   Mon Apr 16 10:44:32 2018 +0100

weld SwInsFootNoteDlg

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

diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx
index 52585c65b506..74ce9a7ab37d 100644
--- a/include/vcl/weld.hxx
+++ b/include/vcl/weld.hxx
@@ -409,6 +409,9 @@ public:
 virtual void set_position(int nCursorPos) = 0;
 virtual void set_editable(bool bEditable) = 0;
 
+virtual vcl::Font get_font() = 0;
+virtual void set_font(const vcl::Font& rFont) = 0;
+
 void connect_changed(const Link& rLink) { m_aChangeHdl = 
rLink; }
 
 void connect_insert_text(const Link& rLink) { 
m_aInsertTextHdl = rLink; }
diff --git a/sw/inc/swabstdlg.hxx b/sw/inc/swabstdlg.hxx
index a72a8f17fde1..8e35a4114fc9 100644
--- a/sw/inc/swabstdlg.hxx
+++ b/sw/inc/swabstdlg.hxx
@@ -462,7 +462,7 @@ public:
 SwWrtShell *pWrtShell) = 0;
 virtual VclPtr
CreateFieldInputDlg(vcl::Window *pParent,
 SwWrtShell , SwField* pField, bool bPrevButton, bool bNextButton) 
= 0;
-virtual VclPtr 
CreateInsFootNoteDlg(vcl::Window * pParent,
+virtual VclPtr 
CreateInsFootNoteDlg(weld::Window * pParent,
 SwWrtShell , bool bEd = false) = 0;
 virtual VclPtr  CreateTitlePageDlg ( 
vcl::Window * pParent ) = 0;
 virtual VclPtr CreateVclSwViewDialog(SwView& 
rView) = 0;
diff --git a/sw/source/ui/dialog/swdlgfact.cxx 
b/sw/source/ui/dialog/swdlgfact.cxx
index b105bd332808..880792e93a84 100644
--- a/sw/source/ui/dialog/swdlgfact.cxx
+++ b/sw/source/ui/dialog/swdlgfact.cxx
@@ -145,11 +145,17 @@ short AbstractSwRenameXNamedDlg_Impl::Execute()
 IMPL_ABSTDLG_BASE(AbstractSwModalRedlineAcceptDlg_Impl);
 IMPL_ABSTDLG_BASE(AbstractGlossaryDlg_Impl);
 IMPL_ABSTDLG_BASE(AbstractFieldInputDlg_Impl);
-IMPL_ABSTDLG_BASE(AbstractInsFootNoteDlg_Impl);
+
+short AbstractInsFootNoteDlg_Impl::Execute()
+{
+return m_xDlg->execute();
+}
+
 short AbstractInsTableDlg_Impl::Execute()
 {
 return m_xDlg->run();
 }
+
 IMPL_ABSTDLG_BASE(AbstractJavaEditDialog_Impl);
 IMPL_ABSTDLG_BASE(AbstractMailMergeDlg_Impl);
 IMPL_ABSTDLG_BASE(AbstractMailMergeCreateFromDlg_Impl);
@@ -456,27 +462,27 @@ bool AbstractFieldInputDlg_Impl::NextButtonPressed() const
 
 OUString AbstractInsFootNoteDlg_Impl::GetFontName()
 {
-return pDlg->GetFontName();
+return m_xDlg->GetFontName();
 }
 
 bool AbstractInsFootNoteDlg_Impl::IsEndNote()
 {
-return pDlg->IsEndNote();
+return m_xDlg->IsEndNote();
 }
 
 OUString AbstractInsFootNoteDlg_Impl::GetStr()
 {
-return pDlg->GetStr();
+return m_xDlg->GetStr();
 }
 
-void AbstractInsFootNoteDlg_Impl::SetHelpId( const OString& sHelpId )
+void AbstractInsFootNoteDlg_Impl::SetHelpId(const OString& rHelpId)
 {
-pDlg->SetHelpId( sHelpId );
+m_xDlg->set_help_id(rHelpId);
 }
 
 void AbstractInsFootNoteDlg_Impl::SetText( const OUString& rStr )
 {
-pDlg->SetText( rStr );
+m_xDlg->set_title(rStr);
 }
 
 void AbstractInsTableDlg_Impl::GetValues( OUString& rName, sal_uInt16& rRow, 
sal_uInt16& rCol,
@@ -928,10 +934,9 @@ VclPtr 
SwAbstractDialogFactory_Impl::CreateFieldInputDlg(
 }
 
 VclPtr 
SwAbstractDialogFactory_Impl::CreateInsFootNoteDlg(
-vcl::Window * pParent, SwWrtShell , bool bEd )
+weld::Window * pParent, SwWrtShell , bool bEd )
 {
-VclPtr pDlg = VclPtr::Create(pParent, 
rSh, bEd);
-return VclPtr::Create( pDlg );
+return VclPtr::Create(new 
SwInsFootNoteDlg(pParent, rSh, bEd));
 }
 
 VclPtr SwAbstractDialogFactory_Impl::CreateTitlePageDlg ( 
vcl::Window *pParent )
diff --git a/sw/source/ui/dialog/swdlgfact.hxx 
b/sw/source/ui/dialog/swdlgfact.hxx
index 363f110362d4..503049b63f8b 100644
--- a/sw/source/ui/dialog/swdlgfact.hxx
+++ b/sw/source/ui/dialog/swdlgfact.hxx
@@ -354,7 +354,14 @@ class AbstractFieldInputDlg_Impl : public 

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

2018-04-16 Thread Caolán McNamara
 cui/uiconfig/ui/specialcharacters.ui |   25 ++---
 1 file changed, 18 insertions(+), 7 deletions(-)

New commits:
commit b3846685e52f06f7c7a6c293e6ce6849ee795ac6
Author: Caolán McNamara 
Date:   Mon Apr 16 12:28:19 2018 +0100

missing mnemonics

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

diff --git a/cui/uiconfig/ui/specialcharacters.ui 
b/cui/uiconfig/ui/specialcharacters.ui
index 2185a83ec79b..c9c9bd1f44da 100644
--- a/cui/uiconfig/ui/specialcharacters.ui
+++ b/cui/uiconfig/ui/specialcharacters.ui
@@ -1,5 +1,5 @@
 
-
+
 
   
   
@@ -20,13 +20,13 @@
 False
 end
 
-  
-_Insert
+  
+gtk-ok
 True
 True
 True
 True
-True
+True
   
   
 False
@@ -35,14 +35,13 @@
   
 
 
-  
-gtk-ok
+  
+_Insert
 True
 True
 True
 True
 True
-True
   
   
 False
@@ -107,6 +106,7 @@
 start
 Subset:
 True
+subsetlb
   
   
 2
@@ -120,6 +120,7 @@
 start
 Font:
 True
+fontlb
   
   
 1
@@ -132,6 +133,8 @@
 False
 start
 Search:
+True
+search
   
   
 0
@@ -216,6 +219,8 @@
 False
 start
 Hexadecimal:
+True
+hexvalue
 0
   
   
@@ -267,6 +272,8 @@
 True
 False
 Decimal:
+True
+decimalvalue
 0
   
   
@@ -340,6 +347,8 @@
 start
 start
 Recent Characters:
+True
+viewchar1
   
   
 False
@@ -572,6 +581,8 @@
 start
 start
 Favorite Characters:
+True
+favchar1
   
   
 False
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 116876] First click in "Special Characters" -> "Favorite Characters" does not properly update fields.

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116876

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #7 from V Stuart Foote  ---
Can not confirm on Windows 10 Ent or Pro 64-bit en-US with
Version: 6.1.0.0.alpha0+ (x64)
Build ID: d246aa574571409046619254292698184c2545a3
CPU threads: 8; OS: Windows 10.0; UI render: GL (or Default) 
TinderBox: Win-x86_64@42, Branch:master, Time: 2018-04-16_02:10:59
Locale: en-US (en_US); Calc: group

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


Building 6.0.3.2 fails - /src/libreoffice-6.0.3.2/unotest/source/cpp/filters-test.cxx:145:VclFiltersTest::testCVEs: equality assertion failed

2018-04-16 Thread Дилян Палаузов

Hello,

I do
  ./configure --enable-evolution2 --enable-avahi  
--enable-python=system --enable-eot --enable-online-update  
--enable-introspection=yes --without-doxygen --with-jdk-home=/opt/jdk  
--with-ant-home=/opt/ant --without-junit --enable-formula-logger  
--enable-introspection --with-system-bzip2 --with-system-cairo  
--with-system-epoxy --with-system-zlib --with-system-jpeg  
--with-system-expat --with-system-libxml --with-system-icu  
--with-system-openldap --with-system-poppler --with-system-curl  
--with-system-boost --with-webdav --with-krb5 --with-gssapi  
--with-system-lcms2 --with-boost --with-system-nss  
--with-system-graphite --with-system-harfbuzz --with-system-openssl  
--with-system-libpng --disable-firebird-sdbc --disable-pdfium


and call `make`, which prints:

mkdir -p /src/libreoffice-6.0.3.2/instdir
/src/libreoffice-6.0.3.2/solenv/bin/install-gdb-printers -a  
/src/libreoffice-6.0.3.2/instdir -c

make -j 4  -rs -f /src/libreoffice-6.0.3.2/Makefile.gbuildall
[build MOD] basctl
[build DEP] LNK:Library/libchartcontrollerlo.so
[build LNK] Library/libchartcontrollerlo.so
[build DEP] LNK:Library/libchartopengllo.so
[build LNK] Library/libchartopengllo.so
[build MOD] desktop
[build MOD] extensions
[build PRL] CustomTarget/postprocess/images/sorted.lst
[build PRL] CustomTarget/postprocess/images/commandimagelist.ilst
[build CMP] starmath/util/sm
[build ECH] CustomTarget/instsetoo_native/setup/versionrc
fatal: Not a git repository (or any of the parent directories): .git
[build MOD] oox
[build MOD] scripting
[build BIN] starmath
[build MOD] vbahelper
[build MOD] writerperfect
[build LOC] top level modules: libreoffice
[build CUT] basegfx
[build CUT] basic_scanner
[build CUT] basic_macros
[build CUT] binaryurp_test-cache
[build CUT] binaryurp_test-unmarshal
[build CUT] chart2_common_functors
[build CUT] comphelper_threadpool_test
[build CUT] comphelper_syntaxhighlight_test
[build CUT] comphelper_variadictemplates_test
[build CUT] comphelper_ifcontainer
[build CUT] comphelper_test
[build CUT] configmgr_unit
[build CUT] connectivity_mork
[build CUT] connectivity_commontools
[build CUT] cppcanvas_test
[build CUT] cppu_any-external
[build CUT] cppu_qa_any
[build CUT] cppu_qa_recursion
[build CUT] cppu_qa_reference
[build CUT] cppu_qa_unotype
[build CUT] cppu_test_cppumaker
[build CUT] cppuhelper_cppu_ifcontainer
[build CUT] cppuhelper_cppu_unourl
[build CUT] desktop_app
[build CUT] desktop_version
[build CUT] editeng_core
[build CUT] editeng_borderline
[build CUT] editeng_lookuptree
[build CUT] emfio_emf
[build CUT] emfio_wmf
[build CUT] extensions_test_update
[build CUT] filter_xslt
[build CUT] filter_priority
[build CUT] filter_msfilter
[build CUT] filter_textfilterdetect
[build CUT] filter_dxf_test
[build CUT] filter_eps_test
[build CUT] filter_met_test
[build CUT] filter_pcd_test
[build CUT] filter_pcx_test
[build CUT] filter_pict_test
[build CUT] filter_ppm_test
[build CUT] filter_psd_test
[build CUT] filter_ras_test
[build CUT] filter_tiff_test
[build CUT] filter_tga_test
[build CUT] hwpfilter_test_hwpfilter
[build CUT] i18nlangtag_test_languagetag
[build CUT] i18npool_test_breakiterator
[build CUT] i18npool_test_characterclassification
[build CUT] i18npool_test_ordinalsuffix
[build CUT] i18npool_test_textsearch
[build CUT] libreofficekit_checkapi
[build CUT] lotuswordpro_test_lotuswordpro
[build CUT] o3tl_tests
[build CUT] odk_checkapi
[build CHK] CustomTarget/odk/check/checkbin
[build CUT] officecfg_cppheader_test
[build CUT] oox_tokenmap
[build DEP] LNK:CppunitTest/libtest_oox_vba_compression.so
[build LNK] CppunitTest/libtest_oox_vba_compression.so
[build DEP] LNK:CppunitTest/libtest_oox_vba_encryption.so
[build LNK] CppunitTest/libtest_oox_vba_encryption.so
[build CUT] package2_test
[build PYT] pyuno_pytests_ssl
[build CUT] Module_DLL
[build CUT] sal_osl_security
[build CUT] sal_osl
[build CUT] sal_rtl
[build CUT] sal_types
[build CUT] salhelper_testapi
[build CUT] sax
[build CUT] sax_attributes
[build CUT] sax_parser
[build CUT] sax_xmlimport
[build CUT] sdext_pdfimport
[build CUT] sfx2_metadatable
[build CUT] sfx2_controlleritem
[build CUT] sot_test_sot
[build DEP] LNK:CppunitTest/libtest_starmath_export.so
[build LNK] CppunitTest/libtest_starmath_export.so
[build DEP] LNK:CppunitTest/libtest_starmath_import.so
[build LNK] CppunitTest/libtest_starmath_import.so
[build DEP] LNK:CppunitTest/libtest_starmath_qa_cppunit.so
[build LNK] CppunitTest/libtest_starmath_qa_cppunit.so
[build CUT] svgio
[build CUT] svl_inetcontenttype
[build CUT] svl_itempool
[build CUT] svl_items
[build CUT] svl_lngmisc
[build CUT] svl_notify
[build CUT] svl_qa_cppunit
[build CUT] svl_urihelper
[build CUT] svtools_html
[build CUT] tools_test
[build CUT] unotools_fontdefs
[build CUT] vcl_lifecycle
[build CUT] vcl_bitmap_test
[build CUT] vcl_bitmapprocessor_test
[build CUT] vcl_fontcharmap
[build CUT] vcl_font
[build CUT] vcl_fontmetric
[build CUT] vcl_complextext
[build CUT] vcl_filters_test
[build CUT] 

[Libreoffice-bugs] [Bug 117038] UI: The layout of the Special character dialog moving a little when switching from recent to favorite character

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117038

--- Comment #4 from Telesto  ---
Created attachment 141405
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141405=edit
Screencast

> Also, when you are clicking to change the selected glyph--rather than its
> Unicode name, the glyph preview on the right is showing "Space" and the Hex
> is shown 20? So that seems off (and can not reproduce that at all).

I could reproduce this after a profile reset. STR

1. Launch Writer with a clean profile
2. Insert some symbols with the special character dialog 
3. Select the Space button (single click)
5. Switch between Recent Character/ Favorite character -> Hex 20

---
And you'll notice that the Recent characters, and the Favorite characters as
well, record both the Unicode glyph but also the source font--so could be that
if working with some odd font (with bad metrics) that we could get something
like this. I can't force it though, and wonder if it would clear for you with a
reset profile to use font defaults.

-> I tried a profile reset -> No change as far I can tell.. but I'm not
noticing the issue anyway (new screencast attached)

Version: 6.1.0.0.alpha0+
Build ID: 9c4eaa7b81a40d97fe49b85272b40bfeaaf44f86
CPU threads: 4; OS: Windows 6.3; UI render: GL; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-04-16_03:31:36
Locale: nl-NL (nl_NL); 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 117049] Severe bug in LibreOffice (Calc Speadsheet)

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117049

--- Comment #1 from Mike Kaganski  ---
I do reproduce the described behavior. But I can't confirm the bug because I
don't know if it's actually a bug.

What is the meaning of what you have done here? The iterative calculation of
values that have circular references to themselves is meant to bring a result
that can be obtained by incrementally approaching; that means that there should
be some guessed value, and some algorithm (designed as the formulas in cells)
that comes closer each step. The number of steps and the precision value are
something taken using rinse-and-repeat approach, or from experience... and now
you take a task that has no meaning and that is not converging, put some values
to avoid any meaningful processing, and call it a "severe bug".

At the very least, please describe *why* do you believe that the result must be
as you think it must be, and not as it is (remember, that it's just an initial
guess that should be improved incrementally iteratively afterwards). Is there
any specification that you base your statements on?

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


[Libreoffice-bugs] [Bug 43220] UI: The Navigation Toolbar (on top of Navigator) in Writer is closing when you wouldn't expect it, and the other way round too

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43220

--- Comment #9 from Harald Koester  ---
Bug still exists with version 6.0.3 (64 bit, Win7). Steps 8 and 9 are
different, because the Navigate By function has been changed meanwhile.

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


[Libreoffice-bugs] [Bug 116876] First click in "Special Characters" -> "Favorite Characters" does not properly update fields.

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116876

oleg.tolmat...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #6 from oleg.tolmat...@gmail.com ---
I have reset my profile and retested. The problem was still present. The
character name, the "Hexadecimal" and the "Decimal" fields were not properly
updated.

I also downloaded a daily build

Version: 6.0.4.0.0+ (x64)
Build ID: 717e0853dce50c33b61ea8541d24186e40e84c73
CPU threads: 4; OS: Windows 10.0; UI render: default; 
TinderBox: Win-x86_64@42, Branch:libreoffice-6-0, Time: 2018-04-05_03:10:17
Locale: de-DE (de_DE); Calc: group

and could not reproduce it there, but I noticed another problem that has
probably the same cause.

If you resize the special characters dialog, then the character name, the
"Hexadecimal" and the "Decimal" fields are reset to their initial values. I
could reproduce this problem in both versions.

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


[Libreoffice-bugs] [Bug 117044] EDITING: LibO6.1 alpha crash when attempting to edit a table definition.

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117044

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisected, bisected,
   ||regression
   Priority|medium  |highest
 Status|UNCONFIRMED |NEW
 CC||noelgran...@gmail.com,
   ||xiscofa...@libreoffice.org
 Ever confirmed|0   |1
   Severity|normal  |critical

--- Comment #2 from Xisco Faulí  ---
Wow, this is a really fast catch!

Regression introduced by:

author  Noel Grandin  2018-04-16 08:28:16
+0200
committer   Noel Grandin  2018-04-16
10:42:01 +0200
commit  0973e1f4e727a3204c843398bcb0e6a411b1a02d (patch)
tree954d190ad385f5bb9a3ab2d763403468f0f66b62
parent  914f6385d98f8c898102c971a4d5b0eb9f075ef0 (diff)
follow on for tdf#116981
the previous commit 235d61890512894e27f4f81e38a325eee3c67b30, fixed just
exactly the problem reported in tdf#116981.

Bisected with: bibisect-linux64-6.1 

Adding Cc: to Noel Grandin

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


[Libreoffice-bugs] [Bug 114943] UNO command controls to only showing font name and font size

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114943

--- Comment #5 from LibreTraining  ---
(In reply to Yousuf Philips (jay) (retired) from comment #3)

> 
> > And for the same reason you added it to
> > the toolbar, I want to have it visible but without the possibility that a
> > colleague can do direct formatting with it.
> 
> Well if others agree its a good idea, then the better option would be to
> have an argument added onto the existing uno commands that just disables
> user input, something like .uno:CharFontName?Enabled:short=0

Word has a feature where you can disable any direct formatting.
Users can only use the template pre-defined styles.

This prevents receiving "style soup" documents from inexperienced users.

This is very useful when multiple users are supplying documents to be combined
or imported into a larger publication.

It sounds like these UNO commands could also help achieve that goal.

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


[Libreoffice-bugs] [Bug 117038] UI: The layout of the Special character dialog moving a little when switching from recent to favorite character

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117038

V Stuart Foote  changed:

   What|Removed |Added

 CC||akshaydeepi...@gmail.com

--- Comment #3 from V Stuart Foote  ---
I still can't reproduce. But do notice in the screencast that the font from the
Recent characters is not Liberation Serif--what Sans font is it? I thought
maybe Consolas, but the shape of the G and the 6 is off.

For testing we can recreate the recents from any font by picking out the string
"VYJ63ch:"

And you'll notice that the Recent characters, and the Favorite characters as
well, record both the Unicode glyph but also the source font--so could be that
if working with some odd font (with bad metrics) that we could get something
like this. I can't force it though, and wonder if it would clear for you with a
reset profile to use font defaults.

Also, when you are clicking to change the selected glyph--rather than its
Unicode name, the glyph preview on the right is showing "Space" and the Hex is
shown 20? So that seems off (and can not reproduce that at all).

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


[Libreoffice-bugs] [Bug 98259] [META] Keyboard shortcuts and accelerators bugs and enhancements

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98259
Bug 98259 depends on bug 34704, which changed state.

Bug 34704 Summary: Customization of MOD3 missing on macOS
https://bugs.documentfoundation.org/show_bug.cgi?id=34704

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 41560] [META] Keyboard shortcuts tab of Customization dialog

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=41560
Bug 41560 depends on bug 34704, which changed state.

Bug 34704 Summary: Customization of MOD3 missing on macOS
https://bugs.documentfoundation.org/show_bug.cgi?id=34704

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 42082] [META] Make LibreOffice shine and glow on OS X

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42082
Bug 42082 depends on bug 78777, which changed state.

Bug 78777 Summary: Keyboard shortcut for format as Currency and Date on OSX 
used by system for screenshot
https://bugs.documentfoundation.org/show_bug.cgi?id=78777

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-commits] core.git: officecfg/registry

2018-04-16 Thread heiko tietze
 officecfg/registry/data/org/openoffice/Office/Accelerators.xcu |   12 
+-
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit a616d1e52fdf5f5ace39f8d706d89f4d28228dec
Author: heiko tietze 
Date:   Mon Apr 16 13:29:34 2018 +0200

tdf#78777 - Keyboard shortcut for number formatting on macOS

Shortcuts moved from MOD2 to MOD3

Change-Id: I5e038916b7c607b7cae06a297f57f7c75b790c4c
Reviewed-on: https://gerrit.libreoffice.org/52966
Reviewed-by: Heiko Tietze 
Tested-by: Heiko Tietze 

diff --git a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu 
b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
index 9ce3b9974c6b..0709db4fbd4a 100644
--- a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
@@ -556,7 +556,7 @@
 .uno:NumberFormatDecimal
   
 
-
+
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:NumberFormatDecimal
@@ -574,7 +574,7 @@
 .uno:NumberFormatScientific
   
 
-
+
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:NumberFormatScientific
@@ -586,7 +586,7 @@
 .uno:NumberFormatDate
   
 
-
+
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:NumberFormatDate
@@ -598,7 +598,7 @@
 .uno:NumberFormatCurrency
   
 
-
+
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:NumberFormatCurrency
@@ -616,7 +616,7 @@
 .uno:NumberFormatPercent
   
 
-
+
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:NumberFormatPercent
@@ -628,7 +628,7 @@
 .uno:NumberFormatStandard
   
 
-
+
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:NumberFormatStandard
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-04-16 Thread Heiko Tietze
 cui/source/customize/acccfg.cxx |  160 
 1 file changed, 160 insertions(+)

New commits:
commit 96d034ec4699ff2a27a7cab42614e4345ff3a57f
Author: Heiko Tietze 
Date:   Mon Apr 16 13:23:40 2018 +0200

tdf#37074 - Customization of MOD3 missing on macOS

Shortcuts added likewise for MOD1

Change-Id: I506897500b4e22349aecdf5231e80c84a0f3a878
Reviewed-on: https://gerrit.libreoffice.org/52964
Tested-by: Jenkins 
Reviewed-by: Heiko Tietze 

diff --git a/cui/source/customize/acccfg.cxx b/cui/source/customize/acccfg.cxx
index 033e895e8328..70ed7d80ecb6 100644
--- a/cui/source/customize/acccfg.cxx
+++ b/cui/source/customize/acccfg.cxx
@@ -616,6 +616,166 @@ static const sal_uInt16 KEYCODE_ARRAY[] =
 KEY_SHIFT | KEY_MOD1 | KEY_MOD2 | KEY_BACKSPACE,
 KEY_SHIFT | KEY_MOD1 | KEY_MOD2 | KEY_INSERT,
 KEY_SHIFT | KEY_MOD1 | KEY_MOD2 | KEY_DELETE
+
+#ifdef __APPLE__
+   ,KEY_MOD3 | KEY_0,
+KEY_MOD3 | KEY_1,
+KEY_MOD3 | KEY_2,
+KEY_MOD3 | KEY_3,
+KEY_MOD3 | KEY_4,
+KEY_MOD3 | KEY_5,
+KEY_MOD3 | KEY_6,
+KEY_MOD3 | KEY_7,
+KEY_MOD3 | KEY_8,
+KEY_MOD3 | KEY_9,
+KEY_MOD3 | KEY_A,
+KEY_MOD3 | KEY_B,
+KEY_MOD3 | KEY_C,
+KEY_MOD3 | KEY_D,
+KEY_MOD3 | KEY_E,
+KEY_MOD3 | KEY_F,
+KEY_MOD3 | KEY_G,
+KEY_MOD3 | KEY_H,
+KEY_MOD3 | KEY_I,
+KEY_MOD3 | KEY_J,
+KEY_MOD3 | KEY_K,
+KEY_MOD3 | KEY_L,
+KEY_MOD3 | KEY_M,
+KEY_MOD3 | KEY_N,
+KEY_MOD3 | KEY_O,
+KEY_MOD3 | KEY_P,
+KEY_MOD3 | KEY_Q,
+KEY_MOD3 | KEY_R,
+KEY_MOD3 | KEY_S,
+KEY_MOD3 | KEY_T,
+KEY_MOD3 | KEY_U,
+KEY_MOD3 | KEY_V,
+KEY_MOD3 | KEY_W,
+KEY_MOD3 | KEY_X,
+KEY_MOD3 | KEY_Y,
+KEY_MOD3 | KEY_Z,
+KEY_MOD3 | KEY_SEMICOLON,
+KEY_MOD3 | KEY_QUOTERIGHT,
+KEY_MOD3 | KEY_BRACKETLEFT,
+KEY_MOD3 | KEY_BRACKETRIGHT,
+KEY_MOD3 | KEY_POINT,
+KEY_MOD3 | KEY_COMMA,
+KEY_MOD3 | KEY_TILDE,
+KEY_MOD3 | KEY_TAB,
+
+KEY_MOD3 | KEY_F1,
+KEY_MOD3 | KEY_F2,
+KEY_MOD3 | KEY_F3,
+KEY_MOD3 | KEY_F4,
+KEY_MOD3 | KEY_F5,
+KEY_MOD3 | KEY_F6,
+KEY_MOD3 | KEY_F7,
+KEY_MOD3 | KEY_F8,
+KEY_MOD3 | KEY_F9,
+KEY_MOD3 | KEY_F10,
+KEY_MOD3 | KEY_F11,
+KEY_MOD3 | KEY_F12,
+KEY_MOD3 | KEY_F13,
+KEY_MOD3 | KEY_F14,
+KEY_MOD3 | KEY_F15,
+KEY_MOD3 | KEY_F16,
+
+KEY_MOD3 | KEY_DOWN,
+KEY_MOD3 | KEY_UP,
+KEY_MOD3 | KEY_LEFT,
+KEY_MOD3 | KEY_RIGHT,
+KEY_MOD3 | KEY_HOME,
+KEY_MOD3 | KEY_END,
+KEY_MOD3 | KEY_PAGEUP,
+KEY_MOD3 | KEY_PAGEDOWN,
+KEY_MOD3 | KEY_RETURN,
+KEY_MOD3 | KEY_SPACE,
+KEY_MOD3 | KEY_BACKSPACE,
+KEY_MOD3 | KEY_INSERT,
+KEY_MOD3 | KEY_DELETE,
+
+KEY_MOD3 | KEY_ADD,
+KEY_MOD3 | KEY_SUBTRACT,
+KEY_MOD3 | KEY_MULTIPLY,
+KEY_MOD3 | KEY_DIVIDE,
+
+KEY_SHIFT | KEY_MOD3 | KEY_0,
+KEY_SHIFT | KEY_MOD3 | KEY_1,
+KEY_SHIFT | KEY_MOD3 | KEY_2,
+KEY_SHIFT | KEY_MOD3 | KEY_3,
+KEY_SHIFT | KEY_MOD3 | KEY_4,
+KEY_SHIFT | KEY_MOD3 | KEY_5,
+KEY_SHIFT | KEY_MOD3 | KEY_6,
+KEY_SHIFT | KEY_MOD3 | KEY_7,
+KEY_SHIFT | KEY_MOD3 | KEY_8,
+KEY_SHIFT | KEY_MOD3 | KEY_9,
+KEY_SHIFT | KEY_MOD3 | KEY_A,
+KEY_SHIFT | KEY_MOD3 | KEY_B,
+KEY_SHIFT | KEY_MOD3 | KEY_C,
+KEY_SHIFT | KEY_MOD3 | KEY_D,
+KEY_SHIFT | KEY_MOD3 | KEY_E,
+KEY_SHIFT | KEY_MOD3 | KEY_F,
+KEY_SHIFT | KEY_MOD3 | KEY_G,
+KEY_SHIFT | KEY_MOD3 | KEY_H,
+KEY_SHIFT | KEY_MOD3 | KEY_I,
+KEY_SHIFT | KEY_MOD3 | KEY_J,
+KEY_SHIFT | KEY_MOD3 | KEY_K,
+KEY_SHIFT | KEY_MOD3 | KEY_L,
+KEY_SHIFT | KEY_MOD3 | KEY_M,
+KEY_SHIFT | KEY_MOD3 | KEY_N,
+KEY_SHIFT | KEY_MOD3 | KEY_O,
+KEY_SHIFT | KEY_MOD3 | KEY_P,
+KEY_SHIFT | KEY_MOD3 | KEY_Q,
+KEY_SHIFT | KEY_MOD3 | KEY_R,
+KEY_SHIFT | KEY_MOD3 | KEY_S,
+KEY_SHIFT | KEY_MOD3 | KEY_T,
+KEY_SHIFT | KEY_MOD3 | KEY_U,
+KEY_SHIFT | KEY_MOD3 | KEY_V,
+KEY_SHIFT | KEY_MOD3 | KEY_W,
+KEY_SHIFT | KEY_MOD3 | KEY_X,
+KEY_SHIFT | KEY_MOD3 | KEY_Y,
+KEY_SHIFT | KEY_MOD3 | KEY_Z,
+KEY_SHIFT | KEY_MOD3 | KEY_SEMICOLON,
+KEY_SHIFT | KEY_MOD3 | KEY_QUOTERIGHT,
+KEY_SHIFT | KEY_MOD3 | KEY_BRACKETLEFT,
+KEY_SHIFT | KEY_MOD3 | KEY_BRACKETRIGHT,
+KEY_SHIFT | KEY_MOD3 | KEY_POINT,
+KEY_SHIFT | KEY_MOD3 | KEY_COMMA,
+KEY_SHIFT | KEY_MOD3 | KEY_TILDE,
+KEY_SHIFT | KEY_MOD3 | KEY_TAB,
+
+KEY_SHIFT | KEY_MOD3 | KEY_F1,
+KEY_SHIFT | KEY_MOD3 | KEY_F2,
+KEY_SHIFT | KEY_MOD3 | KEY_F3,
+KEY_SHIFT | KEY_MOD3 | KEY_F4,
+KEY_SHIFT | KEY_MOD3 | KEY_F5,
+KEY_SHIFT | KEY_MOD3 | KEY_F6,
+KEY_SHIFT | KEY_MOD3 | KEY_F7,
+KEY_SHIFT | KEY_MOD3 | KEY_F8,
+KEY_SHIFT | KEY_MOD3 | KEY_F9,
+KEY_SHIFT | KEY_MOD3 | KEY_F10,
+KEY_SHIFT | KEY_MOD3 | KEY_F11,
+KEY_SHIFT | KEY_MOD3 | KEY_F12,
+KEY_SHIFT | 

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

2018-04-16 Thread heiko tietze
 vcl/osx/salframe.cxx |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit e422efcaff1bf789343a73a16e46b00f303e3032
Author: heiko tietze 
Date:   Mon Apr 16 12:11:33 2018 +0200

tdf#117033 - Tooltips show the wrong symbol for MOD3 combinations

Symbol for MOD3 added

Change-Id: Idb76199fbff240fe39c96ed837db098a4283d70b
Reviewed-on: https://gerrit.libreoffice.org/52957
Reviewed-by: Tor Lillqvist 
Tested-by: Tor Lillqvist 
Tested-by: Jenkins 

diff --git a/vcl/osx/salframe.cxx b/vcl/osx/salframe.cxx
index 7b5b203668d8..31159f8545c0 100644
--- a/vcl/osx/salframe.cxx
+++ b/vcl/osx/salframe.cxx
@@ -1026,13 +1026,13 @@ OUString AquaSalFrame::GetKeyName( sal_uInt16 nKeyCode )
 if( it != aKeyMap.end() )
 {
 if( (nKeyCode & KEY_SHIFT) != 0 )
-aResult.append( u'\x21e7' );
+aResult.append( u'\x21e7' ); //⇧
 if( (nKeyCode & KEY_MOD1) != 0 )
-aResult.append( u'\x2318' );
-// we do not really handle Alt (see below)
-// we map it to MOD3, which is actually Command
-if( (nKeyCode & (KEY_MOD2|KEY_MOD3)) != 0 )
-aResult.append( u'\x2325' );
+aResult.append( u'\x2318' ); //⌘
+if( (nKeyCode & KEY_MOD2) != 0 )
+aResult.append( u'\x2325' ); //⌥
+if( (nKeyCode & KEY_MOD3) != 0 )
+aResult.append( u'\x2303' ); //⌃
 
 aResult.append( it->second );
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117038] UI: The layout of the Special character dialog moving a little when switching from recent to favorite character

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117038

Telesto  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 117039] Print Preview crashes on signed document

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117039

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisected, bisected,
   ||regression
   Priority|medium  |highest
 CC||bu...@bubli.org
   Severity|normal  |critical

--- Comment #3 from Xisco Faulí  ---
Regression introduced by:

author  Katarina Behrens   2017-05-31 18:26:07
+0200
committer   Samuel Mehrbrodt   2017-06-08
14:44:25 +0200
commit  2e11bbd288ec59d0ff3368cc5c5ef83e2f5133a2 (patch)
tree9115b59dd5c354a8bf3148a59a01707e61780024
parent  0632208977a204195a4f5b9e727aed511ece075f (diff)
tdf#105566: Account for 'signature used to be ok but isn't anymore'

Bisected with: bibisect-linux64-6.0

Adding Cc: to Katarina Behrens

For the bisection, I used attachment 54849 from bug 44182

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


[Libreoffice-bugs] [Bug 116968] [META] Migrating existing embedded HSQLDB databases to Firebird

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116968

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||117046


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117046
[Bug 117046] HSQLDB MIGRATION Error message box text is not wrapped and becomes
unreadable
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117046] HSQLDB MIGRATION Error message box text is not wrapped and becomes unreadable

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117046

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||btom...@gmail.com,
   ||vstuart.fo...@utsa.edu
 Blocks||116968
Summary|EDITING: UI: MIGRATION  |HSQLDB MIGRATION Error
   |Error message box text is   |message box text is not
   |not wrapped and becomes |wrapped and becomes
   |unreadable  |unreadable
 Ever confirmed|0   |1

--- Comment #2 from V Stuart Foote  ---
Confirmed the error message does not wrap in the pop-up dialog with migration.

On Windows, the error box can be moved to view the off screen portion,
otherwise dialog frame of the error box can not be resized.

On Windows 10 Ent 64-bit en-US with
Version: 6.1.0.0.alpha0+
Build ID: 818619b0f2f7813decb26d0b14362dec76a8ff37
CPU threads: 8; OS: Windows 10.0; UI render: GL; 
TinderBox: Win-x86@62-TDF, Branch:MASTER, Time: 2018-04-08_13:29:47
Locale: en-US (en_US); Calc: CL


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116968
[Bug 116968] [META] Migrating existing embedded HSQLDB databases to Firebird
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 116968] [META] Migrating existing embedded HSQLDB databases to Firebird

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116968

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||117044


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117044
[Bug 117044] EDITING: LibO6.1 alpha crash when attempting to edit a table
definition.
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117044] EDITING: LibO6.1 alpha crash when attempting to edit a table definition.

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117044

V Stuart Foote  changed:

   What|Removed |Added

 CC||btom...@gmail.com,
   ||vstuart.fo...@utsa.edu
 Blocks||116968


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116968
[Bug 116968] [META] Migrating existing embedded HSQLDB databases to Firebird
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117049] New: Severe bug in LibreOffice (Calc Speadsheet)

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117049

Bug ID: 117049
   Summary: Severe bug in LibreOffice (Calc Speadsheet)
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sarti_ca...@yahoo.com

Description:
I put below the steps to reproduce the error on LIBRE.

Tools -> Options -> LibreOffice Calc -> Calculate -> Click on Iterations ->
Steps from 100 to 1 and Minimum Change from 0,001 to 100,
then 0 in A1 and in B1; then, starting from B1 in the insertion cell,
put =B1+A1,
(If you have error, try again with some click in the condition of
Calculate),
finally put 100 in A1 and Enter; then 0 in A1 and Enter.

Unfortunately the  result is B1=200, instead of 0+100=100.

Why was the error not shown?
Because to do 100 or 101 iterations to reduce the error under 0.001 is not
important.
With the settings done, to do 1 (minimal value) or 2 iterations means to have
the severe bug.

Best regards
Carlo Sarti


Steps to Reproduce:
See above

Actual Results:  
See above

Expected Results:
See above


Reproducible: Always


User Profile Reset: No



Additional Info:
If necessary, I can attach the file where I use the circular references
(definition for Excel).


User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; LCTE; rv:11.0)
like Gecko

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


[Libreoffice-bugs] [Bug 117048] New: Impress: Hyperlink Does Not Work after PDF Export if Hidden Slides

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117048

Bug ID: 117048
   Summary: Impress: Hyperlink Does Not Work after PDF Export if
Hidden Slides
   Product: LibreOffice
   Version: 5.4.6.2 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: john.linto...@gmail.com

When exporting an Impress document to PDF, hyperlinks will not work in the PDF
if the hyperlinks are on a slide after a hidden slide. 

Steps to reproduce:
1. Open new Impress document
2. Add text and hyperlink on 1st slide
3. Add 4 new slides
4. Add text and hyperlink on 5th slide
5. "Export to PDF" and the links in the PDF work
6. Right click on slide 3 and select "Hide Slide"
7. "Export to PDF" now link on last slide does not work

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


[Libreoffice-bugs] [Bug 117047] New: Inter-process localc cut-and-paste pastes into wrong area

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117047

Bug ID: 117047
   Summary: Inter-process localc cut-and-paste pastes into wrong
area
   Product: LibreOffice
   Version: 5.4.5.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mwelin...@gmail.com

Description:
When one localc process does a paste to another, the wrong target area
is sometimes used.

This simulates what would happen if pasting from a non-localc spreadsheet
to localc.


Steps to Reproduce:
1. Start two localc processes.  That likely involves running on a different
   machine not sharing home directory or setting HOME=/tmp/me

   NOTE: if the second process exits immediately, only one process is running.

2. Enter 11,21,12,22 into C7:C8.  (I.e., a 2x2 area.)

3. Select B6:D9 (I.e., a 3x3 area.)

4. Copy

5. Switch to other localc

6. Select A5.

7. Paste

Actual Results:  
A 2x2 data area is pasted into A5:B6.  Ie., the data gets shifted up one
row and one column to the left.  With expressions in the source area it
is possible to get them corrupted.

Expected Results:
A 3x3 data area is pasted into A5:C7


Reproducible: Always


User Profile Reset: No



Additional Info:
This does not happen when doing the cut-and-paste all in one process.

The mini-ods file created and sent via the clipboard simply does not seem
to have any information about the source area.  It would appear that the
bounding box of the non-empty cells is being used as a proxy.

It is possible that the correct area could be deduces from settings.xml

-  2709
-  4515
-  4516
-  903



User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:59.0) Gecko/20100101
Firefox/59.0

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


[Libreoffice-bugs] [Bug 98500] Multiple animated GIFs cause 100% CPU utilization in Impress

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98500

--- Comment #27 from Telesto  ---
> The bad:
> * hovering over animated GIF in editing pane still causes LO UI to lock-up
> for some time (UI repaint takes seconds and happens line by line). As long
> as GIF image is not hovered over by the mouse cursor, LO runs fine.

-> I observed the same for bug 104878

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


[Libreoffice-bugs] [Bug 58133] : No Transparency what Happened with Changed Options if you Change to another Options Dialog

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=58133

Harald Koester  changed:

   What|Removed |Added

Version|3.6.4.3 release |Inherited From OOo

--- Comment #8 from Harald Koester  ---
Bug still exists in 6.0.3 (64 bit, Win7).

The procedure in order to reproduce the bug is a bit different, because the
memory options do not exist no more. Hence at step 4 you have to change to
another options dialog e.g. the view dialog.

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


[Libreoffice-bugs] [Bug 117040] Enabling the bullet list for a selected right table cell will enabled it also for adjacent left table cell

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117040

--- Comment #2 from Telesto  ---
Created attachment 141404
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141404=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 117046] EDITING: UI: MIGRATION Error message box text is not wrapped and becomes unreadable

2018-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117046

--- Comment #1 from Drew Jensen  ---
Created attachment 141403
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141403=edit
test ODB

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