[Libreoffice-bugs] [Bug 123752] EDITING: Regression in handling of the group separator in formula context

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123752

--- Comment #13 from Buovjaga  ---
(In reply to Jouni Kosonen from comment #12)
> Created attachment 150588 [details]
> Minimal patch to restore functionality
> 
> This appears to be the simplest patch. If the locale provides a decimal
> group separator, use the new KParseTokens::GROUP_SEPARATOR_IN_NUMBER to
> indicate this so that it doesn't get zeroed out.
> 
> The patch was made against 6.2.3.1 sources.

Could you make a patch against master and submit it to gerrit?
https://wiki.documentfoundation.org/Development/gerrit

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

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

2019-04-07 Thread Andrea Gelmini (via logerrit)
 basic/source/sbx/sbxform.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a271c15d85dff4907bc31a42501f741f7c0de356
Author: Andrea Gelmini 
AuthorDate: Sun Apr 7 12:50:10 2019 +
Commit: Julien Nabet 
CommitDate: Mon Apr 8 07:37:24 2019 +0200

Fix typo

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

diff --git a/basic/source/sbx/sbxform.cxx b/basic/source/sbx/sbxform.cxx
index ce394fa903b3..4cdf7678eac9 100644
--- a/basic/source/sbx/sbxform.cxx
+++ b/basic/source/sbx/sbxform.cxx
@@ -115,7 +115,7 @@ SbxBasicFormater::SbxBasicFormater( sal_Unicode _cDecPoint, 
sal_Unicode _cThousa
 {
 }
 
-// function for output of a error-text (for debugging)
+// function to output an error-text (for debugging)
 // displaces all characters of the string, starting from nStartPos
 // for one position to larger indexes, i. e. place for a new
 // character (which is to be inserted) is created.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-04-07 Thread Andrea Gelmini (via logerrit)
 basic/source/sbx/sbxexec.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 75b51d34f85427e94bfdee6b2b6f0f76a9c3b5f1
Author: Andrea Gelmini 
AuthorDate: Thu Apr 4 19:21:30 2019 +
Commit: Julien Nabet 
CommitDate: Mon Apr 8 07:36:55 2019 +0200

Fix typo

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

diff --git a/basic/source/sbx/sbxexec.cxx b/basic/source/sbx/sbxexec.cxx
index 3b831b6a9c2c..9d58ae34a22a 100644
--- a/basic/source/sbx/sbxexec.cxx
+++ b/basic/source/sbx/sbxexec.cxx
@@ -55,7 +55,7 @@ static const sal_Unicode* Symbol( const sal_Unicode* p, 
OUString& rSym )
 }
 else
 {
-// A symbol had to begin with a alphabetic character or an underline
+// A symbol had to begin with an alphabetic character or an underline
 if( !rtl::isAsciiAlpha( *p ) && *p != '_' )
 {
 SbxBase::SetError( ERRCODE_BASIC_SYNTAX );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-04-07 Thread Andrea Gelmini (via logerrit)
 sw/qa/extras/ww8export/ww8export3.cxx |2 +-
 sw/source/uibase/inc/uitool.hxx   |6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit cc2668dc79f6f79187408e9fced9549d9f60f8ff
Author: Andrea Gelmini 
AuthorDate: Sun Apr 7 12:45:13 2019 +
Commit: Julien Nabet 
CommitDate: Mon Apr 8 07:35:27 2019 +0200

Fix typos

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

diff --git a/sw/qa/extras/ww8export/ww8export3.cxx 
b/sw/qa/extras/ww8export/ww8export3.cxx
index e62bcaf5a182..5afb7b187d80 100644
--- a/sw/qa/extras/ww8export/ww8export3.cxx
+++ b/sw/qa/extras/ww8export/ww8export3.cxx
@@ -240,7 +240,7 @@ DECLARE_WW8EXPORT_TEST(testTdf118375export, 
"tdf118375_240degClockwise.doc")
 sal_Int32 nPosX, nPosY;
 xShapeProps->getPropertyValue("HoriOrientPosition") >>= nPosX;
 xShapeProps->getPropertyValue("VertOrientPosition") >>= nPosY;
-// Allow some tolerance because rounding errors through integer arithmethic
+// Allow some tolerance because rounding errors through integer arithmetic
 // in rotation.
 CPPUNIT_ASSERT_DOUBLES_EQUAL(5200.0, static_cast(nPosX), 1.0);
 CPPUNIT_ASSERT_DOUBLES_EQUAL(1152.0, static_cast(nPosY), 1.0);
diff --git a/sw/source/uibase/inc/uitool.hxx b/sw/source/uibase/inc/uitool.hxx
index f237c83c0952..8b4a9ea738be 100644
--- a/sw/source/uibase/inc/uitool.hxx
+++ b/sw/source/uibase/inc/uitool.hxx
@@ -63,12 +63,12 @@ SW_DLLPUBLIC void ConvertAttrGenToChar(SfxItemSet& rSet, 
const SfxItemSet& rOrig
 
 
 /**
-* Apply characeter background on the shell. Need to use this to hide the mixed
-* charachter background and character highlighting attribute, which were
+* Apply character background on the shell. Need to use this to hide the mixed
+* character background and character highlighting attribute, which were
 * added for MSO compatibility where there are two kind of character background.
 *
 * @param[in]   rBackgroundColorthe color to apply on the shell
-* @param[in,out]   rShell  the shell on which we apply the new 
attirbute
+* @param[in,out]   rShell  the shell on which we apply the new 
attribute
 **/
 SW_DLLPUBLIC void ApplyCharBackground(const Color& rBackgroundColor, 
SwWrtShell& rShell);
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-04-07 Thread Andrea Gelmini (via logerrit)
 basic/source/runtime/methods.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 65922c2631bf2a0f7be25b0ae97727634f009ce8
Author: Andrea Gelmini 
AuthorDate: Sun Apr 7 12:47:36 2019 +
Commit: Julien Nabet 
CommitDate: Mon Apr 8 07:34:36 2019 +0200

Fix typo

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

diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx
index 3a6bbc2715a5..6ff4a23a2500 100644
--- a/basic/source/runtime/methods.cxx
+++ b/basic/source/runtime/methods.cxx
@@ -225,7 +225,7 @@ void SbRtl_Error(StarBASIC * pBasic, SbxArray & rPar, bool)
 StarBASIC::MakeErrorText( nErr, aErrorMsg );
 tmpErrMsg = StarBASIC::GetErrorText();
 }
-// If this rtlfunc 'Error'  passed a errcode the same as the active 
Err Objects's
+// If this rtlfunc 'Error' passed an errcode the same as the active 
Err Objects's
 // current err then  return the description for the error message if 
it is set
 // ( complicated isn't it ? )
 if ( bVBA && rPar.Count() > 1 )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 116399] Sending a print job for a 400 paged document is rather slow

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

--- Comment #7 from Buovjaga  ---
(In reply to Telesto from comment #5)
> Created attachment 150585 [details]
> Flame Perf Graph for opening Print Dialog (CTRL+P)

Looks like you are using ETW for those graphs (perf would be on Linux).

Are you using a master build without debug symbols (you don't mention the
version)? Asking because the traces have  at the top and all kinds of
"missing". I assume the only way to have one would be to build it yourself with
--enable-symbols.

Symbols for release builds should be in the symbol server.

I once tried to get symbols set up with ETW, using UIforETW, but did not
succeed. If you manage to get them working, please document the steps in the
QA/BugReport/Debug Information wiki page, because ETW is a powerful tool.

I used this blog as a source of information, when I messed around with ETW:
https://randomascii.wordpress.com/2016/09/05/etw-flame-graphs-made-easy/

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

[Libreoffice-bugs] [Bug 124540] Advancing to an Embedded Video Causes the Previous text Slide to be Overlayed on it

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124540

Mark Hung  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Mark Hung  ---
Please try to install gstreamer1.0-gtk3, or check if it is installed. Possibly
duplicated with tdf#124068.

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

[Libreoffice-bugs] [Bug 124599] Bad example: This product continues to - at best - not respond, -at worst - have to be crashed out of.

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124599

--- Comment #2 from emailrequired.0...@gmail.com ---
Please delete this account after you have read this.

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

[Libreoffice-bugs] [Bug 123969] VIEWING zoom 100% really 91%

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123969

V Stuart Foote  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 114127] Internally set scale factor 1 is not set right.

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114127

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #7 from V Stuart Foote  ---
If the os/DE "Scale factor 1" equates to a zoom of 100% there is no expectation
in LibreOffice that zoom to 100% is rendering to screen in "actual"
measurements. 

Zoom is to 100% of the applications internal scaling which works in screen
independent TWIPS(1/1,440"), or worse PIXELS -- how big is a pixel?

You can adjust the application's zoom so that it will actually measure out on
the screen at 100%. 

Or you could adjust your os/DE screen resolution reducing/increasing the
effective pixel size--until the applications 100% zoom matches real world
measurement. But that will impact other use of the desktop.

Some potential for improvement as LO has been forced for HiDPI support to
identify the DPI that a combination of screen size and pixel resolution
supports so the UI can be appropriately scaled. But the actual scale of a 100%
zoom would still not be directly tested/validated--just rendered "close
enough".

Printing & Export, unlike screen rendering, are directly written out with
size/scale values relevant to the device/file format.

IMHO, this is not a valid bug and is just a manifestation of the graphics
framework and application interface.

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

[Libreoffice-bugs] [Bug 124599] Bad example: This product continues to - at best - not respond, -at worst - have to be crashed out of.

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124599

emailrequired.0...@gmail.com changed:

   What|Removed |Added

  Alias||Lisa, Rae

--- Comment #1 from emailrequired.0...@gmail.com ---
I can't help you further and I am uninstalling the product. I am severely
mentally ill so please do not ask. I am sorry I cannot help further.

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

[Libreoffice-bugs] [Bug 123653] Media objects do not trigger effects.

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123653

--- Comment #6 from Mark Hung  ---
Also on Linux.

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

[Libreoffice-bugs] [Bug 124599] New: Bad example: This product continues to - at best - not respond, -at worst - have to be crashed out of.

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124599

Bug ID: 124599
   Summary: Bad example: This product continues to - at best - not
respond, -at worst - have to be crashed out of.
   Product: LibreOffice
   Version: 6.1.5.2 release
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: emailrequired.0...@gmail.com

Description:
I am sorry, I cannot be descriptive. I will be uninstalling the suite after
this. In both Calc and Writer (particularly Calc), if I try to use any of the
more complex tasks - eg in Writer it was creating a new style, and in Calc it
was first with sorting more than one column in the order I chose (Calc did
other things as well but I do not recall) - the program stopped responding.
Loading some pre-existing Microsoft documents also did this. If I was lucky, it
would eventually respond and I could cancel what I had tried to do. More often
I had to crash out - or be crashed out - of the program.
I simply wished to report this as feedback as I am not able to deal with this
nonsense. If I cannot find a suitable substitute for my simple needs I will use
WordPad.
Thank you for your time. Good luck with your product.
*Note: I have selected Calc as the component as it was the main offender,
however Writer also displayed this bug - particularly when opening MS
documents. Perhaps the fonts were not compatible? I no longer have any
technical expertise.

Steps to Reproduce:
1. Turn on Product
2. In Calc try to sort multiple column list
3. Writer and Calc - Try to do anything harder than cut copy paste
Sorry I can't help you more. I just wanted to advise that I am abandoning the
product due to the frustrations this error causes.

Actual Results:
"Not responding" = GOOD
"Not responding" + Crash = BAD

Expected Results:
To be able to sort, to be able to open document, to create a new style, to use
anything in Calc other than as a table...


Reproducible: Always


User Profile Reset: No



Additional Info:
I am sorry. I am mentally ill and will simply not put up with this any longer,
I am going to use WordPad. And filling in this bug report was a really stupid
idea, I should have just provided feedback. Your product doesn't work properly
on my computer. I looked at the System Info and have no idea what the
"Hardware" is, it does not appear to be anything on your list. It's a Lenovo
ideapad 520. x64.
Now I am going away.

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

[Libreoffice-bugs] [Bug 124598] Do not try to load KDE5-related VCL plugins on LXQt

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124598

--- Comment #1 from Tsu Jan  ---
> I propose to use pStandardFallbackList instead of pKDEFallbackList if 
> DESKTOP_LXQT is detected

Or, generally, outside KDE.

-- 
You are receiving this mail because:
You 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: comphelper/source embeddedobj/source package/source sc/source sfx2/source sot/source svl/source sw/source UnoControls/source

2019-04-07 Thread Mike Kaganski (via logerrit)
 UnoControls/source/controls/progressmonitor.cxx |4 ++--
 UnoControls/source/controls/statusindicator.cxx |4 ++--
 comphelper/source/container/enumhelper.cxx  |   16 
 comphelper/source/misc/instancelocker.cxx   |2 +-
 embeddedobj/source/commonembedding/miscobj.cxx  |2 +-
 embeddedobj/source/general/docholder.cxx|6 +++---
 embeddedobj/source/msole/olemisc.cxx|2 +-
 package/source/xstor/ocompinstream.cxx  |2 +-
 package/source/xstor/owriteablestream.cxx   |2 +-
 package/source/xstor/xstorage.cxx   |2 +-
 package/source/zippackage/zipfileaccess.cxx |3 ++-
 sc/source/ui/unoobj/cellsuno.cxx|8 
 sfx2/source/notify/globalevents.cxx |4 ++--
 sfx2/source/view/sfxbasecontroller.cxx  |4 ++--
 sot/source/unoolestorage/xolesimplestorage.cxx  |2 +-
 svl/source/fsstor/fsstorage.cxx |2 +-
 sw/source/core/unocore/unodraw.cxx  |4 ++--
 sw/source/uibase/dbui/dbtree.cxx|4 ++--
 sw/source/uibase/uiview/uivwimp.cxx |4 ++--
 sw/source/uibase/uno/unodispatch.cxx|4 ++--
 sw/source/uibase/uno/unotxvw.cxx|4 ++--
 21 files changed, 43 insertions(+), 42 deletions(-)

New commits:
commit f3fc127dc007f32355859ae4fc7d34916c500a18
Author: Mike Kaganski 
AuthorDate: Sun Apr 7 16:00:31 2019 +0100
Commit: Mike Kaganski 
CommitDate: Mon Apr 8 05:32:56 2019 +0200

Use osl_atomic_increment/osl_atomic_decrement to change m_refCount

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

diff --git a/UnoControls/source/controls/progressmonitor.cxx 
b/UnoControls/source/controls/progressmonitor.cxx
index 23451ac5c2a9..2c728cb7ae5a 100644
--- a/UnoControls/source/controls/progressmonitor.cxx
+++ b/UnoControls/source/controls/progressmonitor.cxx
@@ -48,7 +48,7 @@ ProgressMonitor::ProgressMonitor( const css::uno::Reference< 
XComponentContext >
 {
 // It's not allowed to work with member in this method (refcounter !!!)
 // But with a HACK (++refcount) its "OK" :-(
-++m_refCount;
+osl_atomic_increment(_refCount);
 
 // Create instances for fixedtext, button and progress ...
 
@@ -94,7 +94,7 @@ ProgressMonitor::ProgressMonitor( const css::uno::Reference< 
XComponentContext >
 m_xTopic_Bottom->setText ( PROGRESSMONITOR_DEFAULT_TOPIC );
 m_xText_Bottom->setText  ( PROGRESSMONITOR_DEFAULT_TEXT );
 
---m_refCount;
+osl_atomic_decrement(_refCount);
 }
 
 ProgressMonitor::~ProgressMonitor()
diff --git a/UnoControls/source/controls/statusindicator.cxx 
b/UnoControls/source/controls/statusindicator.cxx
index c1c9d3597beb..2b6a23b9846a 100644
--- a/UnoControls/source/controls/statusindicator.cxx
+++ b/UnoControls/source/controls/statusindicator.cxx
@@ -42,7 +42,7 @@ StatusIndicator::StatusIndicator( const css::uno::Reference< 
XComponentContext >
 {
 // It's not allowed to work with member in this method (refcounter !!!)
 // But with a HACK (++refcount) its "OK" :-(
-++m_refCount;
+osl_atomic_increment(_refCount);
 
 // Create instances for fixedtext and progress ...
 m_xText.set( rxContext->getServiceManager()->createInstanceWithContext( 
FIXEDTEXT_SERVICENAME, rxContext ), UNO_QUERY );
@@ -61,7 +61,7 @@ StatusIndicator::StatusIndicator( const css::uno::Reference< 
XComponentContext >
 // (progressbar take automatically its own defaults)
 m_xText->setText( "" );
 
---m_refCount;
+osl_atomic_decrement(_refCount);
 }
 
 StatusIndicator::~StatusIndicator() {}
diff --git a/comphelper/source/container/enumhelper.cxx 
b/comphelper/source/container/enumhelper.cxx
index 41585ae24a8a..dc467bb23fa8 100644
--- a/comphelper/source/container/enumhelper.cxx
+++ b/comphelper/source/container/enumhelper.cxx
@@ -105,14 +105,14 @@ void OEnumerationByName::impl_startDisposeListening()
 if (m_bListening)
 return;
 
-++m_refCount;
+osl_atomic_increment(_refCount);
 css::uno::Reference< css::lang::XComponent > xDisposable(m_xAccess, 
css::uno::UNO_QUERY);
 if (xDisposable.is())
 {
 xDisposable->addEventListener(this);
 m_bListening = true;
 }
---m_refCount;
+osl_atomic_decrement(_refCount);
 }
 
 
@@ -123,14 +123,14 @@ void OEnumerationByName::impl_stopDisposeListening()
 if (!m_bListening)
 return;
 
-++m_refCount;
+osl_atomic_increment(_refCount);
 css::uno::Reference< css::lang::XComponent > xDisposable(m_xAccess, 
css::uno::UNO_QUERY);
 if (xDisposable.is())
 {
 xDisposable->removeEventListener(this);
 m_bListening = false;
 }
---m_refCount;
+osl_atomic_decrement(_refCount);
 }
 
 OEnumerationByIndex::OEnumerationByIndex(const css::uno::Reference< 
css::container::XIndexAccess >& 

[Libreoffice-bugs] [Bug 123595] Do not default to KDE5 VCL plugins under LXQt

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123595

--- Comment #9 from Chih-Hsuan Yen  ---
Hi Michael Weghorn,

We reached a conclusion in LXQt, and I created
https://bugs.documentfoundation.org/show_bug.cgi?id=124598. Could you have a
look at the new ticket?

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

[Libreoffice-bugs] [Bug 124598] New: Do not try to load KDE5-related VCL plugins on LXQt

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124598

Bug ID: 124598
   Summary: Do not try to load KDE5-related VCL plugins on LXQt
   Product: LibreOffice
   Version: 6.2.2.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: y...@chyen.cc

Description:
This is a follow-up of
https://bugs.documentfoundation.org/show_bug.cgi?id=123595. See also
https://github.com/lxqt/lxqt/issues/1673.

Currently in Arch Linux with LXQt, gtk3_kde5 is used when kio libraries are not
installed, and thus file dialogs are broken. To workaround the issue, I propose
to use pStandardFallbackList instead of pKDEFallbackList if DESKTOP_LXQT is
detected in libreoffice/vcl/source/app/salplug.cxx.

Simon Quigley, the author of commits proposing DESKTOP_LXQT, is fine with
changing upstream defaults:

> Sure, I think that's acceptable

(https://github.com/lxqt/lxqt/issues/1673#issuecomment-480558178)

Steps to Reproduce:
1. Install LXQt WITHOUT kio 
2. Unset all SAL_USE_VCLPLUGIN environment variables
3. Run LibreOffice
4. Hitting Ctrl+O

Actual Results:
LibreOffice hangs, waiting for the open file dialog, and there's an error in
the terminal:

> /usr/lib/libreoffice/program/lo_kde5filepicker: error while loading shared 
> libraries: libKF5KIOFileWidgets.so.5: cannot open shared object file: No such 
> file or directory

Expected Results:
The open file dialog appears


Reproducible: Always


User Profile Reset: No



Additional Info:

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

[Libreoffice-bugs] [Bug 114127] Internally set scale factor 1 is not set right.

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114127

--- 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 113815] Arrow shape is rendered incorrectly in some buttons

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113815

--- Comment #10 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 115377] Export to EPUB should get rid of spans being sole child of their p parent

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115377

--- 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 50572] EDITING: bug clipboard bug: after copying thousands of lines, and closing LO, process keeps running at 100% CPU

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50572

--- Comment #18 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 108911] Cannot toggle cursor focus between formula and worksheet

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108911

--- 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 101243] Clicking "Slide Master" button second time does not return view mode to "Normal"

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101243

--- 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 115706] odp slideshow is not working on lo viewer master daily build

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115706

--- 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 115708] fodp slideshow is not working on lo viewer master daily build

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115708

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 116663] Ungrouping collapsed rows leaves them hidden

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116663

--- Comment #6 from Aron Budea  ---
Still buggy in LO 6.3.0.0.alpha0+ (cc9a8c13dad6f3d82a2386554bd6113b486a1752) /
Windows 7.

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

[Libreoffice-bugs] [Bug 124597] New: Template manager is incorrectly positioned at start

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124597

Bug ID: 124597
   Summary: Template manager is incorrectly positioned at start
   Product: LibreOffice
   Version: 6.3.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: bibisected, bisected, regression
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@caesar.elte.hu
CC: caol...@redhat.com

Make sure template manager opens when you start impress.

Start LO from console as: ./soffice --impress

=> Template manager opens in top left corner instead of the center.

However, it opens in the center if first the start center is started, and
Impress is opened from there.

Observed using LO 6.3.0.0.alpha0+ (c8c0292c2152df8c353aeff32896f0cfa8a53a64) /
Ubuntu 18.04.
No issue in LO 6.2.0.3.
=> regression

Bibisected to the following commit using repo bibisect-linux-64-6.3. Adding Cc:
to Caolán McNamara, please take a look.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=3e078e17ee2144fb976a7e6b9227152113cea0d4
author  Caolán McNamara 2019-03-26 16:27:17
+
committer   Caolán McNamara 2019-03-28 22:07:06
+0100

weld SfxTemplateManagerDlg

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

[Libreoffice-bugs] [Bug 124597] Template manager is incorrectly positioned at start

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124597

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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

Jason Burns license statement

2019-04-07 Thread Jason Burns
All of my past & future contributions to LibreOffice may be
licensed under the MPLv2/LGPLv3+ dual license.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice

[Libreoffice-bugs] [Bug 124595] Style does not inherit change

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124595

--- Comment #1 from tor...@yahoo.com ---
Created attachment 150591
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150591=edit
file with 3 styles

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

[Libreoffice-bugs] [Bug 124596] New: found syllabification error in German

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124596

Bug ID: 124596
   Summary: found syllabification error in German
   Product: LibreOffice
   Version: 6.1.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Linguistic
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: katmel...@googlemail.com

Description:
Found a syllabification error in the geran word "darum". It will separated now
as "dar-um", in Duden and like we speak, it is to separate as "da-rum".

Steps to Reproduce:
1. make da document and select German as language
2. write a text with "darum" at the end of a line
3. you should see it will seperate incorrect. for the right separation see
Duden Band 1

Actual Results:
dar-um

Expected Results:
da-rum


Reproducible: Always


User Profile Reset: No



Additional Info:

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

[Libreoffice-bugs] [Bug 124595] New: Style does not inherit change

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124595

Bug ID: 124595
   Summary: Style does not inherit change
   Product: LibreOffice
   Version: 6.2.1.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tor...@yahoo.com

Description:
In TabCh.odt, 3 para have styles List, List1, and Numbering3.
edit style Default: delete Tab 6.6 (inch).
List, List1 inherit this change, but not Numbering3, which is supposed, like
List1, to inherit from List.

Steps to Reproduce:
1.
2.In TabCh.odt, 3 para have styles List, List1, and Numbering3.
edit style Default: delete Tab 6.6 (inch)
3.

Actual Results:
List, List1 inherit this change, but not Numbering3

Expected Results:
Numbering3 is supposed, like List1, to inherit the style change and loose Tab
6.6


Reproducible: Always


User Profile Reset: No



Additional Info:

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

[Libreoffice-bugs] [Bug 124594] New: FILEOPEN DOCX Additional top and bottom margin on shape breaks layout

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124594

Bug ID: 124594
   Summary: FILEOPEN DOCX Additional top and bottom margin on
shape breaks layout
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

Created attachment 150590
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150590=edit
Document with shape and screenshot

Open attached document. It has in the upper part an arrow shape with text wrap
"square", which is "parallel" in LO. The distance to text is set to 0 on all
four sides in Word.

The lower part has a screenshot that shows, how it look in Word. Notice the
text line above the shape in the original. This line is missing in LO because
the shape has got a margin-top and margin-bottom of about 6mm although it was
set to 0 in Word.

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

[Libreoffice-bugs] [Bug 124573] Printer extremely slow for each page with anything but normal print setting

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124573

--- Comment #3 from 76kenr...@gmail.com ---
Created attachment 150589
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150589=edit
Here's the "About Libre Office" screen for my version

I was asked for more info from the "About Libre Office" screen.  Here's a
screenshot of that.

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

[Libreoffice-bugs] [Bug 114801] EDITOR DOCX Cannot use the highlight 'bucket' function with docx file

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114801

Tamás Zolnai  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 118901] [META] Issues related to direct formatting in DOCX (OOXML) bullet and numbering list

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118901
Bug 118901 depends on bug 114801, which changed state.

Bug 114801 Summary: EDITOR DOCX Cannot use the highlight 'bucket' function with 
docx file
https://bugs.documentfoundation.org/show_bug.cgi?id=114801

   What|Removed |Added

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

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

[Libreoffice-commits] core.git: Branch 'feature/cib_contract57c' - 33 commits - configure.ac download.lst external/python3 filter/source filter/uiconfig fpicker/source i18npool/source include/vcl offi

2019-04-07 Thread Thorsten Behrens (via logerrit)
Rebased ref, commits from common ancestor:
commit 6e43a2bcd6f774e81837653262395f2d764374c6
Author: Thorsten Behrens 
AuthorDate: Mon Apr 8 00:32:09 2019 +0200
Commit: Thorsten Behrens 
CommitDate: Mon Apr 8 01:28:16 2019 +0200

pdf: always write resource dict for content streams

Take out:
- revert i#42884 workaround for AR5: use implicit resources in
  transparency groups

Since verapdf complains with FAIL 6.2.2-2 in this case - missing
resource dict for content stream.

Change-Id: Ic186d2b4b393ac34f991a6747667332cf8f4658b

diff --git a/vcl/source/gdi/pdfwriter_impl.cxx 
b/vcl/source/gdi/pdfwriter_impl.cxx
index 108f9199ce4f..1f8d1a1a31e9 100644
--- a/vcl/source/gdi/pdfwriter_impl.cxx
+++ b/vcl/source/gdi/pdfwriter_impl.cxx
@@ -8579,16 +8579,14 @@ void PDFWriterImpl::writeTransparentObject( 
TransparencyEmit& rObject )
 {
 if( ! m_bIsPDF_A1 )
 {
+// 7.8.3 Resource dicts are required for content streams
+aLine.append( "/Resources " );
+aLine.append( getResourceDictObj() );
+aLine.append( " 0 R\n" );
+
 aLine.append( "/Group<>\n" );
 }
 }
-/* #i42884# the PDF reference recommends that each Form XObject
-*  should have a resource dict; alas if that is the same object
-*  as the one of the page it triggers an endless recursion in
-*  acroread 5 (6 and up have that fixed). Since we have only one
-*  resource dict anyway, let's use the one from the page by NOT
-*  emitting a Resources entry.
-*/
 
 aLine.append( "/Length " );
 aLine.append( static_cast(nSize) );
@@ -8661,7 +8659,11 @@ void PDFWriterImpl::writeTransparentObject( 
TransparencyEmit& rObject )
 appendFixedInt( rObject.m_aBoundRect.Bottom()+1, aMask );
 aMask.append( "]\n" );
 
-/* #i42884# see above */
+// 7.8.3 Resource dicts are required for content streams
+aMask.append( "/Resources " );
+aMask.append( getResourceDictObj() );
+aMask.append( " 0 R\n" );
+
 aMask.append( "/Group<>\n" );
 aMask.append( "/Length " );
 aMask.append( nMaskSize );
commit 4b50b27c75830f1a3c2debc231f6c8e214a910bc
Author: Samuel Mehrbrodt 
AuthorDate: Tue Mar 26 15:08:12 2019 +0100
Commit: Thorsten Behrens 
CommitDate: Mon Apr 8 01:28:05 2019 +0200

Fix windows build

After 54ac2b203a6dd974c0153996ba67b26d585e98e1

Change-Id: I805415dfa75568d843fceb5a79b637aac337ffd4

diff --git a/vcl/win/gdi/salfont.cxx b/vcl/win/gdi/salfont.cxx
index b0158f9154d5..f3d0cf97811e 100644
--- a/vcl/win/gdi/salfont.cxx
+++ b/vcl/win/gdi/salfont.cxx
@@ -932,6 +932,7 @@ void WinSalGraphics::SetFont( const FontSelectPattern* 
pFont, int nFallbackLevel
 // WinSalGraphics::GetEmbedFontData does not set mpFontInstance
 // since it is interested in font file data only.
 mpWinFontEntry[ nFallbackLevel ] = reinterpret_cast( 
pFont->mpFontInstance.get() );
+WinFontInstance *pFontInstance = 
static_cast(pFont->mpFontInstance.get());
 
 HFONT hOldFont = nullptr;
 HFONT hNewFont = pFontInstance ? pFontInstance->GetHFONT() : nullptr;
@@ -970,7 +971,6 @@ void WinSalGraphics::SetFont( const FontSelectPattern* 
pFont, int nFallbackLevel
 }
 if (mpWinFontEntry[i])
 {
-GetWinFontEntry(i)->Release();
 mpWinFontEntry[i] = nullptr;
 }
 mfFontScale[i] = 1.0;
@@ -1363,7 +1363,7 @@ void WinSalGraphics::ClearDevFontCache()
 
 bool WinSalGraphics::GetGlyphBoundRect(const GlyphItem& rGlyph, 
tools::Rectangle& rRect)
 {
-WinFontInstance* pFont = mpWinFontEntry[rGlyph.mnFallbackLevel];
+rtl::Reference pFont = 
mpWinFontEntry[rGlyph.mnFallbackLevel];
 HFONT hNewFont = pFont ? pFont->GetHFONT() : 
mhFonts[rGlyph.mnFallbackLevel];
 float fFontScale = pFont ? pFont->GetScale() : 
mfFontScale[rGlyph.mnFallbackLevel];
 
@@ -1572,7 +1572,7 @@ bool WinSalGraphics::GetGlyphOutline(const GlyphItem& 
rGlyph,
 // rescaling needed for the tools::PolyPolygon conversion
 if( rB2DPolyPoly.count() )
 {
-WinFontInstance *pFont = mpWinFontEntry[rGlyph.mnFallbackLevel];
+rtl::Reference pFont = 
mpWinFontEntry[rGlyph.mnFallbackLevel];
 float fFontScale = pFont ? pFont->GetScale() : 
mfFontScale[rGlyph.mnFallbackLevel];
 const double fFactor(fFontScale/256);
 
rB2DPolyPoly.transform(basegfx::utils::createScaleB2DHomMatrix(fFactor, 
fFactor));
commit b3f943ef3687daab3fe801bf5bb60dd39a07a4b5
Author: Samuel Mehrbrodt 
AuthorDate: Tue Mar 26 12:27:38 2019 +0100
Commit: Thorsten Behrens 
CommitDate: Mon Apr 8 01:28:05 2019 +0200

Add missing include

Fallout from 7f9dfae2f83f11cc7799110435164a6bd2ba19d5

Change-Id: If1f9ac47baf389c363f1fbda4158f4101ae2d50a

diff --git a/sw/qa/extras/layout/layout.cxx 

[Libreoffice-bugs] [Bug 123752] EDITING: Regression in handling of the group separator in formula context

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123752

--- Comment #12 from Jouni Kosonen  ---
Created attachment 150588
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150588=edit
Minimal patch to restore functionality

This appears to be the simplest patch. If the locale provides a decimal group
separator, use the new KParseTokens::GROUP_SEPARATOR_IN_NUMBER to indicate this
so that it doesn't get zeroed out.

The patch was made against 6.2.3.1 sources.

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

[Libreoffice-bugs] [Bug 124592] persistent crashes on file load with ver. libo-master64~2019-04-07_01.12.58_LibreOfficeDev_6.3.0.0.alpha0_Win_x64

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124592

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #2 from m.a.riosv  ---
If you attach the file with the issue, maybe someone can 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-bugs] [Bug 124593] Libreoffice Calc 6.2 crash fresh install

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124593

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #2 from m.a.riosv  ---
Please test Menu/Help/Restart in Safe Mode.

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

[Libreoffice-bugs] [Bug 108253] [META] Calc cell formula bugs and enhancements

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108253
Bug 108253 depends on bug 124585, which changed state.

Bug 124585 Summary: balans error bookkeeping
https://bugs.documentfoundation.org/show_bug.cgi?id=124585

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTABUG

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

[Libreoffice-bugs] [Bug 124585] balans error bookkeeping

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124585

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #3 from m.a.riosv  ---
IMO there is not a bug, it is how spreadsheets work, if you cut a cell and
paste in other place, references to it change to the new address.

The only way it's not using cut, instead use copy - suppress - paste.

Cut must be done always very carefully, because if after is no pasted,
references became broken, and if pasted are changed.

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

[Libreoffice-bugs] [Bug 124593] Libreoffice Calc 6.2 crash fresh install

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124593

--- Comment #1 from Jonny Grant  ---
Created attachment 150587
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150587=edit
gdb

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

[Libreoffice-bugs] [Bug 124593] New: Libreoffice Calc 6.2 crash fresh install

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124593

Bug ID: 124593
   Summary: Libreoffice Calc 6.2 crash fresh install
   Product: LibreOffice
   Version: 6.2.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: j...@jguk.org

Description:
Do you know maintains OutputDevice::LogicToPixel ?


Thread 1 "soffice.bin" received signal SIGSEGV, Segmentation fault.
0x7f978d71ed80 in OutputDevice::LogicToPixel(Size const&, MapMode const&)
const () from /usr/lib/libreoffice/program/libmergedlo.so
#0  0x7f978d71ed80 in OutputDevice::LogicToPixel(Size const&, MapMode
const&) const () at /usr/lib/libreoffice/program/libmergedlo.so

Steps to Reproduce:
1. install https://www.libreoffice.org/download/download/
2.open calc
3. close calc.

Actual Results:
Observe crash after 3

Expected Results:
Not crash


Reproducible: Always


User Profile Reset: No



Additional Info:
Will attach gdb trace

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

[Libreoffice-bugs] [Bug 116399] Sending a print job for a 400 paged document is rather slow

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

--- Comment #6 from Telesto  ---
Created attachment 150586
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150586=edit
Flame Perf Graph when giving the print command

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

[Libreoffice-bugs] [Bug 116399] Sending a print job for a 400 paged document is rather slow

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

--- Comment #5 from Telesto  ---
Created attachment 150585
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150585=edit
Flame Perf Graph for opening Print Dialog (CTRL+P)

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

[Libreoffice-bugs] [Bug 54819] EDITING: with "track changes" the paragraph following a deleted paragraph changes its style

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=54819

Aron Budea  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 123848] "Compare Document": Changes misrepresented as new document sections

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123848

Aron Budea  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=54
   ||819
 CC||ba...@caesar.elte.hu

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

[Libreoffice-bugs] [Bug 123837] FILESAVE XLSX Combined chart loses X axis visibility setting

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123837

Buovjaga  changed:

   What|Removed |Added

Version|4.1 all versions|5.0.0.5 release
 CC||todven...@suomi24.fi

--- Comment #5 from Buovjaga  ---
The old behaviour was that secondary X axis got turned on and nothing got
turned off.

Bibisected the change on Linux with 50max to
https://gerrit.libreoffice.org/plugins/gitiles/core/+/1573315ec978b7f53a8babeb7ad44e104896209e%5E!/
export each axis only once non-deleted, related tdf#84347

At least it is a code pointer.

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

[Libreoffice-bugs] [Bug 83946] [META] Tracking changes issues

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83946

Buovjaga  changed:

   What|Removed |Added

 Depends on||123848


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=123848
[Bug 123848] "Compare Document": Changes misrepresented as new document
sections
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 123848] "Compare Document": Changes misrepresented as new document sections

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123848

Buovjaga  changed:

   What|Removed |Added

 CC||nem...@numbertext.org,
   ||todven...@suomi24.fi
   Keywords||bibisected, bisected,
   ||regression
 Blocks||83946

--- Comment #5 from Buovjaga  ---
Bibisected with win32-6.2 to
https://gerrit.libreoffice.org/plugins/gitiles/core/+/22639148ae5400bac98f32a75d7431b857c80195%5E!/

tdf#54819 change tracking: keep paragraph style after full deletion

Adding Cc: to László Németh

I did not have to save the document to see the problem. I just closed the
dialog after comparing and went to see the section 3.3.


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 124589] Editing formula with cross-tab content is broken

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124589

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #1 from raal  ---
I can not confirm with Version: 6.3.0.0.alpha0+
Build ID: c8c0292c2152df8c353aeff32896f0cfa8a53a64
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
and Verze: 6.2.2.2 (x64)
ID sestavení: 2b840030fec2aae0fd2658d8d4f9548af4e3518d
Vlákna CPU: 1; OS: Windows 10.0; Vykreslování UI: výchozí; VCL: win

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

[Libreoffice-bugs] [Bug 113869] [META] MS Office XML formats (pre-OOXML) bugs and enhancements

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113869
Bug 113869 depends on bug 124580, which changed state.

Bug 124580 Summary: XML MS EXCEL 2003  IMPORT PROBLEM
https://bugs.documentfoundation.org/show_bug.cgi?id=124580

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

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

[Libreoffice-bugs] [Bug 123553] Cannot open MSO XML file

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123553

raal  changed:

   What|Removed |Added

 CC||ypene...@gmail.com

--- Comment #7 from raal  ---
*** Bug 124580 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 124580] XML MS EXCEL 2003 IMPORT PROBLEM

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124580

raal  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED
 CC||r...@post.cz

--- Comment #2 from raal  ---
The file is encoden UTF-16BE and in command line: 
1:1: ��
 ^
malformed_xml_error: unsupported encoding. only 8 bit encodings are supported

duplicate of bug 123553

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

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

[Libreoffice-bugs] [Bug 124469] table of figures and index of tables not clickable in pdf

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124469

raal  changed:

   What|Removed |Added

 CC||michael.st...@cib.de,
   ||r...@post.cz
 Status|UNCONFIRMED |NEW
   Keywords|bibisectRequest |bibisected, bisected
 Ever confirmed|0   |1

--- Comment #2 from raal  ---
This seems to have begun at the below commit.
Adding Cc: to Michael Stahl ; Could you possibly take a look at this one?
Thanks

f792c3486c986bd58e2e450e514d3ca19baea792 is the first bad commit
commit f792c3486c986bd58e2e450e514d3ca19baea792
Author: Jenkins Build User 
Date:   Tue Dec 18 20:21:21 2018 +0100

source sha:7d481f7ac1971be622520258a4b13ada29282844

author  Michael Stahl 2018-12-11 17:29:44 +0100
committer   Michael Stahl 2018-12-18 17:55:28
+0100
commit  7d481f7ac1971be622520258a4b13ada29282844 (patch)
treee57d32365c58ef5b9d7a087281dc8a1d8372272e
parent  59bdf21f4d933835e158b1f94f29d7b273a4b154 (diff)
sw_redlinehide_4b: visibility checks for EnhancedPDFExport links

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

[Libreoffice-bugs] [Bug 123833] FILESAVE XLSX Combined chart loses the Y axis main grid visibility

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123833

Buovjaga  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||4181
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC||todven...@suomi24.fi
Version|6.3.0.0.alpha0+ Master  |Inherited From OOo

--- Comment #5 from Buovjaga  ---
Repro. Already in 3.3.0

Possibly a dupe of bug 114181, but that one has an xlsx coming from Excel as
the source.

Version: 6.3.0.0.alpha0+ (x64)
Build ID: 9956cf0692058414ef3efdb0e8058fbb0b39f6bc
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-04-04_02:20:31
Locale: fi-FI (fi_FI); UI-Language: en-US
Calc: threaded

(In reply to raal from comment #4)
> Please attach source .ods file. Thank you

The .ods file is linked in the description.

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

[Libreoffice-bugs] [Bug 114181] FILESAVE XLSX combined chart (Column and Line) X category axis crosses the Y axis at the wrong place and the Y axis major grid disappears.

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114181

Buovjaga  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 123684] FILEOPEN PPTX: Slide background fill imported with wrong color

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123684

--- Comment #10 from Mike Kaganski  ---
If it should have "no fill" then it looks like easyhack :-)

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

[Libreoffice-bugs] [Bug 123613] FILESAVE XLSX Arrows move and lose their text when saving xls file as xlsx

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123613

Buovjaga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi
Summary|FILESAVE | XLSX, When   |FILESAVE XLSX Arrows move
   |saving in LO as xlsx arrows |and lose their text when
   |move and lose their text.   |saving xls file as xlsx
Version|6.2.0.0.beta1+  |Inherited From OOo

--- Comment #4 from Buovjaga  ---
In old versions the transformations affected all the arrows so it was much
worse.

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

[Libreoffice-bugs] [Bug 108717] Fractional font size is rounded differently on Windows

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108717

--- Comment #15 from Georgy  ---
I suppose it happens because win  vcl on uses win api to get line width.

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

[Libreoffice-bugs] [Bug 123684] FILEOPEN PPTX: Slide background fill imported with wrong color

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123684

Buovjaga  changed:

   What|Removed |Added

Version|4.1 all versions|3.6.0.4 release
 CC||todven...@suomi24.fi
   Keywords||bibisected, regression

--- Comment #9 from Buovjaga  ---
Bibisected on Linux with 43all to range
https://gerrit.libreoffice.org/plugins/gitiles/core/+log/a5661d717197a6723b80fb65cde463c479983934..243fbda523cb71d0919539081d286eec4717ce15

This seems likely to be the cause:
https://gerrit.libreoffice.org/plugins/gitiles/core/+/5c714632583036f72377aa0fa6ed1137e53582dc%5E%21/
n744503: Importing useBgFill colors for shapes.

It even says
// This is supposed to fill with slide (background) color, but
// TODO: We are using white here, because thats the closest we can assume (?)

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

[Libreoffice-bugs] [Bug 124200] commands without icons

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124200

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.3.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 124200] commands without icons

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124200

--- Comment #5 from Commit Notification 
 ---
andreas kainz committed a patch related to this issue.
It has been pushed to "master":

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

tdf#124200 calc add icon for DefaultCellStyle

It will be available in 6.3.0.

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

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

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

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

2019-04-07 Thread andreas kainz (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu |   14 
++
 sc/uiconfig/scalc/menubar/menubar.xml |2 -
 2 files changed, 15 insertions(+), 1 deletion(-)

New commits:
commit 817e3447053d1a7465a5cf547b4eb39fc46b4d59
Author: andreas kainz 
AuthorDate: Sun Apr 7 01:05:06 2019 +0200
Commit: andreas_kainz 
CommitDate: Sun Apr 7 21:01:37 2019 +0200

tdf#124200 calc add icon for DefaultCellStyle

Change-Id: I27b3746140a362bc5f33e9a1daba9a0d0f897d63
Reviewed-on: https://gerrit.libreoffice.org/70357
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
index 08e0b97abde8..92da99cdbf45 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
@@ -2605,6 +2605,20 @@
   Default
 
   
+  
+
+  Default
+
+
+  Default Cell Style
+
+
+  
.uno:StyleApply?Style:string=DefaultFamilyName:string=CellStyles
+
+
+  9
+
+  
   
 
   Accent 1
diff --git a/sc/uiconfig/scalc/menubar/menubar.xml 
b/sc/uiconfig/scalc/menubar/menubar.xml
index a1ea067ea1f9..2e19084115e6 100644
--- a/sc/uiconfig/scalc/menubar/menubar.xml
+++ b/sc/uiconfig/scalc/menubar/menubar.xml
@@ -492,7 +492,7 @@
   
   
 
-  
+  
   
   
   
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 124592] persistent crashes on file load with ver. libo-master64~2019-04-07_01.12.58_LibreOfficeDev_6.3.0.0.alpha0_Win_x64

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124592

--- Comment #1 from b.  ---
Created attachment 150584
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150584=edit
dialog_on_crash

dialog_on_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 124592] New: persistent crashes on file load with ver. libo-master64~2019-04-07_01.12.58_LibreOfficeDev_6.3.0.0.alpha0_Win_x64

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124592

Bug ID: 124592
   Summary: persistent crashes on file load with ver.
libo-master64~2019-04-07_01.12.58_LibreOfficeDev_6.3.0
.0.alpha0_Win_x64
   Product: LibreOffice
   Version: 6.3.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: newbie...@gmx.de

Description:
plenty other files worked well, one special file crashed with attached dialog
on every attempt to open it, i can't provide the file reg. size and private
data, 

the error persistet over restart and toggeling 'threaded', opengl was off, 

back on ver.
libo-master64~2019-04-05_04.55.04_LibreOfficeDev_6.3.0.0.alpha0_Win_x64 the
error is off. 



Steps to Reproduce:
steps - see description

Actual Results:
crash

Expected Results:
load


Reproducible: Always


User Profile Reset: No



Additional Info:
ver. info see summary,

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

[Libreoffice-bugs] [Bug 123700] Adding selection mode is unreliable, clearing selections instead of adding

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123700

Buovjaga  changed:

   What|Removed |Added

   Keywords||bibisectRequest,
   ||needUITest, regression
 Ever confirmed|0   |1
 Blocks|86066   |
Version|6.2.0.2 rc  |4.2.0.4 release
   Severity|normal  |minor
 CC||todven...@suomi24.fi
Summary|the problem is in the   |Adding selection mode is
   |additional selection in the |unreliable, clearing
   |status bar of the   |selections instead of
   |libreoffice writer  |adding
 Status|UNCONFIRMED |NEW

--- Comment #4 from Buovjaga  ---
I repro. When using Adding mode, it will clear the selection after a few adds
or sometimes on the second add. Mouse selection is worse than keyboard
selection.

I bibisected on Linux 42max, but got an incorrect result "lp#1204592: activate
menues even earlier to reduce latency", which is a Linux-only commit. I can
repro on Win as well.

For reference, the help for selection modes:
https://help.libreoffice.org/latest/en-US/text/shared/02/2005.html?DbPAR=SHARED#bm_id3148668

Arch Linux 64-bit
Version: 6.3.0.0.alpha0+
Build ID: e967aea2d8cc4f9fc608cb726cb474c184fb61de
CPU threads: 8; OS: Linux 5.0; UI render: default; VCL: gtk3; 
Locale: fi-FI (fi_FI.UTF-8); UI-Language: en-US
Calc: threaded
Built on 7 April 2019


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 86066] [META] bugs and improvements to the statusbar

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86066

Buovjaga  changed:

   What|Removed |Added

 Depends on|123700  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=123700
[Bug 123700] Adding selection mode is unreliable, clearing selections instead
of adding
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 122898] FILESAVE DOCX, Shape loses its resize option when odt is saved as docx

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122898

--- Comment #11 from Regina Henschel  ---
*** Bug 123331 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 104442] [META] OOXML shape (DrawingML and VML) related issues

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104442
Bug 104442 depends on bug 123331, which changed state.

Bug 123331 Summary: FILESAVE DOCX, Shape loses its resize option when odt is 
saved as docx.
https://bugs.documentfoundation.org/show_bug.cgi?id=123331

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 123331] FILESAVE DOCX, Shape loses its resize option when odt is saved as docx.

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123331

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de
 Resolution|--- |DUPLICATE
 Status|NEW |RESOLVED

--- Comment #6 from Regina Henschel  ---
Duplicate to your own bug report.

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

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

[Libreoffice-bugs] [Bug 112182] [META] Text and object selection issues

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112182
Bug 112182 depends on bug 57296, which changed state.

Bug 57296 Summary: EDITING: Text selection is not cleared after exiting 'Adding 
selection' mode
https://bugs.documentfoundation.org/show_bug.cgi?id=57296

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 57296] EDITING: Text selection is not cleared after exiting 'Adding selection' mode

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57296

Buovjaga  changed:

   What|Removed |Added

Summary|EDITING: Text selection,|EDITING: Text selection is
   |'Adding selection' mode |not cleared after exiting
   ||'Adding selection' mode
 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #6 from Buovjaga  ---
Cannot repro anymore with latest master on Win or Linux. The selection is
cleared. Closing.

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

[Libreoffice-bugs] [Bug 122898] FILESAVE DOCX, Shape loses its resize option when odt is saved as docx

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122898

Regina Henschel  changed:

   What|Removed |Added

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

--- Comment #10 from Regina Henschel  ---
The adjust handle is still missing in Version: 6.3.0.0.alpha0+ (x64)
Build ID: 287df6cf083a8ebeea8d64108a9e6d74cd834319
CPU threads: 8; OS: Windows 10.0; UI render: default; VCL: win; 
Locale: de-DE (en_US); UI-Language: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 115813] Position shifted while moving the handle of OOXML Callout shape

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115813

Regina Henschel  changed:

   What|Removed |Added

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

--- Comment #3 from Regina Henschel  ---
The bug still exists in Version: 6.3.0.0.alpha0+ (x64)
Build ID: 287df6cf083a8ebeea8d64108a9e6d74cd834319
CPU threads: 8; OS: Windows 10.0; UI render: default; VCL: win; 
Locale: de-DE (en_US); UI-Language: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 99290] Spell checker with HTML code

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99290

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

   What|Removed |Added

 Blocks||96000


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 96000] [META] Spelling and grammar checking bugs and enhancements

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96000

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

   What|Removed |Added

 Depends on||99290


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=99290
[Bug 99290] Spell checker with HTML code
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124585] balans error bookkeeping

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124585

--- Comment #2 from Buovjaga  ---
Created attachment 150583
  --> https://bugs.documentfoundation.org/attachment.cgi?id=150583=edit
Example file

The reporter emailed me this example file, because he misunderstood what he was
supposed to do.

The file says:
"cut a cell in debit or credit and paste it in another cell
look what happened"

This is not enough information. Frans: please explain in a comment what you do
in the example file and what is the expected result. And DO NOT EMAIL ME.

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

[Libreoffice-bugs] [Bug 123635] Changing the default font size only affects certain symbols/expressions

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123635

--- Comment #11 from Buovjaga  ---
(In reply to k-riley from comment #10)
> When you tried to reproduce the bug, did you close and then re-open Writer
> after changing the default font size (steps 7 and 8)? The reason I ask is
> because when I don't perform those steps, and I type "sum a" right after I
> change the default font size, the fonts are the correct size. The bug only
> appears after I restart Writer.

Yes, I closed it.

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

[Libreoffice-bugs] [Bug 95601] Headers in HTML document have wrong fonts

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95601

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

   What|Removed |Added

 Blocks||111951
   Keywords||filter:html


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 111951] [META] HTML import bugs and enhancements

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111951

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

   What|Removed |Added

 Depends on||95601


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=95601
[Bug 95601] Headers in HTML document have wrong fonts
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 108799] [META] HTML export bugs and enhancements

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108799

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

   What|Removed |Added

 Depends on||95427


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=95427
[Bug 95427] Filled cells coordinates showed in wrong locate in HTML format
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 95427] Filled cells coordinates showed in wrong locate in HTML format

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95427

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

   What|Removed |Added

   Keywords||filter:html
 Blocks||108799

--- Comment #4 from Roman Kuznetsov <79045_79...@mail.ru> ---
still repro in

Version: 6.3.0.0.alpha0+ (x64)
Build ID: 35d9a2618dc0116378ab795a7b9277d248c5afd4
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-04-05_04:55:04
Locale: ru-RU (ru_RU); UI-Language: en-US
Calc: threaded


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 124591] New: Noto fonts don't display correctly in Microsoft (sorry, yes) Office 2016

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124591

Bug ID: 124591
   Summary: Noto fonts don't display correctly in Microsoft
(sorry, yes) Office 2016
   Product: LibreOffice
   Version: 6.0.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ezri...@gmx.de

Description:
The Noto fonts in version 2.000 that are currently installed with LibO Version
6.2.x do not display correctly in Microsoft Office 2016. They are substituted
with other fonts there. This is not strictly a LibO problem, but I am probably
not the only (home) user of LibO who also has Microsoft Office in parallel (for
job related reasons). Updating the Noto fonts to version 2.001 in LibO would
fix this, see here:

https://answers.microsoft.com/en-us/msoffice/forum/all/its-2018-and-microsoft-still-cant-get-fonts-right/36bac9bc-e85e-4ad1-a226-f6b61db0aca0

So it's not a Microsoft problem but a bug in the Noto fonts distributed with
LibO.

Steps to Reproduce:
1. Install Libreoffice (from version 6.x with Noto fonts)
2. Write document with Noto font (Noto Serif, Noto Sans)
3. Open document in Microsoft Office 2016.

Actual Results:
see above.

Expected Results:
Noto fonts are substituted with other fonts in Microsoft Office.


Reproducible: Always


User Profile Reset: No



Additional Info:
Use the latest version of Noto fonts (2.001) to avoid this 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 95052] vertical-align:top ignored in HTML documents

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95052

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

   What|Removed |Added

 Blocks||111951
   Keywords||filter:html


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 111951] [META] HTML import bugs and enhancements

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111951

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

   What|Removed |Added

 Depends on||95052


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=95052
[Bug 95052] vertical-align:top ignored in HTML documents
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 108799] [META] HTML export bugs and enhancements

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108799

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

   What|Removed |Added

 Depends on||95006


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=95006
[Bug 95006] EDITING: Writer fails to preserve some html
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 95006] EDITING: Writer fails to preserve some html

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95006

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

   What|Removed |Added

 Blocks||108799
   Keywords||filter:html


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 93320] Saving bulleted lists as HTML produces empty list items and interspersed paragraphs

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93320

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

   What|Removed |Added

 Blocks||108799
   Keywords||filter:html


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 108799] [META] HTML export bugs and enhancements

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108799

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

   What|Removed |Added

 Depends on||93320


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=93320
[Bug 93320] Saving bulleted lists as HTML produces empty list items and
interspersed paragraphs
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 108990] [META] HTML paste special bugs and enhancements

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108990

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

   What|Removed |Added

 Depends on||87765


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=87765
[Bug 87765] PASTE: HTML formatted text pasted from Chromium, Midori, Opera Does
Not Retain Indentation
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 87765] PASTE: HTML formatted text pasted from Chromium, Midori, Opera Does Not Retain Indentation

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87765

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

   What|Removed |Added

 Blocks||108990


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 87418] Bad ordered list after saving ODT document as HTML.

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87418

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

   What|Removed |Added

   Keywords||filter:html
 Blocks||108799


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 108799] [META] HTML export bugs and enhancements

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108799

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

   What|Removed |Added

 Depends on||87418


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=87418
[Bug 87418] Bad ordered list  after saving ODT document as HTML.
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124556] LibreOffice crashes with NexusFont

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124556

--- Comment #2 from Walter  ---
According to Nexusfont I have 553 installed fonts!
I have an i5-2450M CPU @ 2.5GHz, 6G RAM, Windows 7 64-bit
Nexusfont v 2.6.2
LibreOffice 5.4.7.2

In my case LibreOffice becomes completely unresponsive until I close Nexusfont
and have to wait for about 60 seconds before it gains responsiveness

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

[Libreoffice-bugs] [Bug 111951] [META] HTML import bugs and enhancements

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111951

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

   What|Removed |Added

 Depends on||78164


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=78164
[Bug 78164] FORMATTING: Writer does not respect the specified bottom margin of
paragraphs in HTML files
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 78164] FORMATTING: Writer does not respect the specified bottom margin of paragraphs in HTML files

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78164

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

   What|Removed |Added

   Keywords||filter:html
 Blocks||111951


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 108799] [META] HTML export bugs and enhancements

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108799

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

   What|Removed |Added

 Depends on||75837


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=75837
[Bug 75837] XHTML Saving creates invalid id:s for headings
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 75837] XHTML Saving creates invalid id:s for headings

2019-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75837

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

   What|Removed |Added

   Keywords||filter:html
 Blocks||108799


Referenced Bugs:

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

  1   2   3   >