[Libreoffice-bugs] [Bug 107060] [META] Pivot chart issues

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107060
Bug 107060 depends on bug 108986, which changed state.

Bug 108986 Summary: PIVOT CHARTS: drop down list arrow shouldn't appear on 
"Data" button in the pivot chart controls
https://bugs.documentfoundation.org/show_bug.cgi?id=108986

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 107060] [META] Pivot chart issues

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107060
Bug 107060 depends on bug 108921, which changed state.

Bug 108921 Summary: PIVOT CHARTS: filters that leave no data available
https://bugs.documentfoundation.org/show_bug.cgi?id=108921

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 108987] Writer crash after save document to HTML file

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108987

--- Comment #5 from grofaty  ---
Xisco, I have tested on master and file saves to HTML without crash. It looks
like problem was fixed on master.


=
Version: 6.0.0.0.alpha0+ (x64)
Build ID: 959be1b5a9cd522394dba9366686a1256588223b
CPU threads: 3; OS: Windows 6.1; UI render: default; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2017-07-10_22:54:08
Locale: sl-SI (sl_SI); Calc: group
=

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


[Libreoffice-bugs] [Bug 109016] FILESAVE XLSX PIVOTTABLE: Filter set on row fields not saved

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109016

Bartosz  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |gan...@poczta.onet.pl
   |desktop.org |

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


[Libreoffice-bugs] [Bug 109016] FILESAVE XLSX PIVOTTABLE: Filter set on row fields not saved

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109016

Bartosz  changed:

   What|Removed |Added

Version|6.0.0.0.alpha0+ Master  |5.3.2.2 release

--- Comment #5 from Bartosz  ---
Also reproducible with LibreOffice 5.3.2.2 on MacOS.
The issue is inside:
 /xl/pivotCache/pivotCacheDefinition1.xml part (PivotTable cache)

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

2017-07-10 Thread Chris Sherlock
 sal/osl/unx/file.cxx |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 4bd2e2931efbe31a5b112fec1556af17bb446163
Author: Chris Sherlock 
Date:   Wed Jul 5 12:00:51 2017 +1000

osl: unx file.cxx nullptr testing cleanup

Change-Id: Id265092c1cbf09f8c29c77c048edbf14f15070eb
Reviewed-on: https://gerrit.libreoffice.org/39515
Tested-by: Jenkins 
Reviewed-by: Chris Sherlock 

diff --git a/sal/osl/unx/file.cxx b/sal/osl/unx/file.cxx
index 41584c22f7dc..f95651dab55a 100644
--- a/sal/osl/unx/file.cxx
+++ b/sal/osl/unx/file.cxx
@@ -217,13 +217,13 @@ void FileHandle_Impl::Allocator::deallocate(sal_uInt8 * 
pBuffer)
 FileHandle_Impl::Guard::Guard(pthread_mutex_t * pMutex)
 : m_mutex(pMutex)
 {
-assert(m_mutex != nullptr);
-(void) pthread_mutex_lock(m_mutex); // ignoring EINVAL ...
+assert(m_mutex);
+(void) pthread_mutex_lock(m_mutex); // ignoring EINVAL if a null mutex is 
passed ...
 }
 
 FileHandle_Impl::Guard::~Guard()
 {
-assert(m_mutex != nullptr);
+assert(m_mutex);
 (void) pthread_mutex_unlock(m_mutex);
 }
 
@@ -725,7 +725,7 @@ oslFileError FileHandle_Impl::writeSequence_Impl(
 *pnOffset += nBytes;
 }
 
-return (*ppSequence != nullptr) ? osl_File_E_None : osl_File_E_NOMEM;
+return (*ppSequence) ? osl_File_E_None : osl_File_E_NOMEM;
 }
 
 oslFileError FileHandle_Impl::syncFile()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 109016] FILESAVE XLSX PIVOTTABLE: Filter set on row fields not saved

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109016

Bartosz  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 109025] Vector graphics not 100% identical/ precise in prints and generated PDFs

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109025

Bartosz  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


[Libreoffice-bugs] [Bug 71413] WRITER and CALC: Font color toolbar button not redrawn in correct color

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71413

Xisco Faulí  changed:

   What|Removed |Added

   Assignee|shim...@most.gov.il |libreoffice-b...@lists.free
   ||desktop.org

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


[Libreoffice-bugs] [Bug 108845] pasting data from a CSV file didn't work properly: only a single row

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108845

--- Comment #14 from js...@hotmail.com ---
Robert, Alex: thank-you.  The video on YouTube is much clearer than the
LibreOffice instructions were.

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


[Libreoffice-bugs] [Bug 109057] No Fonts visible in Menu's after upgrade ( Non RC Version but not in the version choices)

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109057

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---


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

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


[Libreoffice-bugs] [Bug 107166] Text is invisible, both in UI and in editor on update to 5.3.2, older AMD and Intel GPUs

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107166

V Stuart Foote  changed:

   What|Removed |Added

 CC||larn...@nomadic.net

--- Comment #50 from V Stuart Foote  ---
*** Bug 109057 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 108925] Too small bullet size confuses the user

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108925

--- Comment #11 from Tamás Zolnai  ---
(In reply to Heiko Tietze from comment #10)
> While the input now has 5% steps from 25% to 250% (which is cut on the upper
> and lower edges, btw) it's not possible to enter precise values like 22%. Or
> rather these values are not stored. That might affect only a few users but
> is bad usability as the user input is not respected. Can you change this,
> Tamás?

As I see it's allowed to enter precise values like 26%, 27% and so on. The 22%
value is not allowed because it's smaller than the minimum value (25%). It's
not about the steps, but about the minimum value. I'm not sure what's your
problem with this. That was the aim of the code change to not allow setting
small values.
This is how restriction works, not allowed values are ignored. You can see the
same behavior if you type for example a character into this field. When the
number field loses the focus it checks whether the typed value is valid and if
not it changes back to the previous value or to the minimum value (if the input
is a small number).

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


[Libreoffice-ux-advise] [Bug 108925] Too small bullet size confuses the user

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108925

--- Comment #11 from Tamás Zolnai  ---
(In reply to Heiko Tietze from comment #10)
> While the input now has 5% steps from 25% to 250% (which is cut on the upper
> and lower edges, btw) it's not possible to enter precise values like 22%. Or
> rather these values are not stored. That might affect only a few users but
> is bad usability as the user input is not respected. Can you change this,
> Tamás?

As I see it's allowed to enter precise values like 26%, 27% and so on. The 22%
value is not allowed because it's smaller than the minimum value (25%). It's
not about the steps, but about the minimum value. I'm not sure what's your
problem with this. That was the aim of the code change to not allow setting
small values.
This is how restriction works, not allowed values are ignored. You can see the
same behavior if you type for example a character into this field. When the
number field loses the focus it checks whether the typed value is valid and if
not it changes back to the previous value or to the minimum value (if the input
is a small number).

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


[Libreoffice-bugs] [Bug 105705] Libreoffice Writer crashes on inserting Zotero citations

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105705

--- Comment #30 from willismon...@gmail.com ---
I just tested this out in Libreoffice 5.4.0.1 and it is still the case that
adding citations crashes writer.  This seems like a pretty crucial bug as
having a plugin (that hasn't changed) take down the entire application
regularly is a large regression.

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


[Libreoffice-bugs] [Bug 109057] New: No Fonts visible in Menu's after upgrade ( Non RC Version but not in the version choices)

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109057

Bug ID: 109057
   Summary: No Fonts visible in Menu's after upgrade  (Non RC
Version but not in the version choices)
   Product: LibreOffice
   Version: 5.3.4.1 rc
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Installation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: larn...@nomadic.net

Description:
Had been working on 32bit derivative version (started w/ 5.02).
Uninstalled  then installed
LibreOffice 5.3.4 Win_x64.msi

No Menu's texts were visible (not sure if I opened a document).
I tried Repair.
I uninstalled and reinstalled.

Same result.

Finally dowloaded LibreOffice 5.2.7.2_Win_x64.msi and installed

Everything seems to be working.  Menu's have visible contents and documents
open.

Thank you for your efforts.
Great Product.
Landis

Steps to Reproduce:
1.Uninstall 32 bit
2. Install 64 Bit 5.3.4 Win x64  (no menu's function
3:  Uninstall/ Reinstall  (same problem_)
3. Uninstall 5.3.4 Win X64
4:  Install 5.2.7.2 Win X64
everything works now

Actual Results:  
ended up working in downgrade

Expected Results:
Should have worked with Full version 5.3.4


Reproducible: Didn't try

User Profile Reset: (I could not find where to do this as no menu's were
visible.  May have happened but still nothing changed in 5.3.4

Additional Info:


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

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


[Libreoffice-bugs] [Bug 108949] RTF import: Numbering is duplicated

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108949

--- Comment #5 from Justin L  ---
RTF!!! writerfilter/source/dmapper/DomainMapper_Impl.cxx:1725:
::PushFootOrEndnote topContext is PARA[1] CHAR[0]

DOCX!! writerfilter/source/dmapper/DomainMapper_Impl.cxx:1725:
::PushFootOrEndnote topContext is PARA[0] CHAR[1]

RTF export is terribly wrong, so just avoiding the problem when detecting
RTFImport.
proposed fix: https://gerrit.libreoffice.org/39775

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


[Libreoffice-bugs] [Bug 109056] Crash in: PDFCore8_x64.dll

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109056

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
Thank you for reporting the bug.
Unfortunately without clear steps to reproduce it, we cannot track down the
origin of the problem.
Please provide a clearer set of step-by-step instructions on how to reproduce
the problem.
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the steps are provided

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


[Libreoffice-bugs] [Bug 87740] [META] Anchor and text wrapping bugs and enhancements

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87740
Bug 87740 depends on bug 108999, which changed state.

Bug 108999 Summary: UI: uno:WrapThroughTransparent menu checkbox can be 
enabled, but not disabled
https://bugs.documentfoundation.org/show_bug.cgi?id=108999

   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-bugs] [Bug 86349] [META] Context menu bugs and enhancements

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86349
Bug 86349 depends on bug 108999, which changed state.

Bug 108999 Summary: UI: uno:WrapThroughTransparent menu checkbox can be 
enabled, but not disabled
https://bugs.documentfoundation.org/show_bug.cgi?id=108999

   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-bugs] [Bug 108999] UI: uno:WrapThroughTransparent menu checkbox can be enabled, but not disabled

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108999

Justin L  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
 Whiteboard||target:6.0.0

--- Comment #4 from Justin L  ---
Committed in LO 6.0 master by commit
https://cgit.freedesktop.org/libreoffice/core/commit/?id=959be1b5a9cd522394dba9366686a1256588223b

UI Wrap InBackground: transition to wrapthru transparency toggleHEADmaster
This patch creates FN_FRAME_WRAPTHRU_TOGGLE to replace
most uses of the previous function.

Change-Id: Ia46ddbd47899e8ca569bf3adb2b1c4ad7cfa1920

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


[Libreoffice-bugs] [Bug 109056] Crash in: PDFCore8_x64.dll

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109056

Patrick E. Bernard  changed:

   What|Removed |Added

   Hardware|All |x86-64 (AMD64)
Version|unspecified |5.3.4.2 release
 OS|All |Windows (All)

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


[Libreoffice-ux-advise] [Bug 108925] Too small bullet size confuses the user

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108925

--- Comment #10 from Heiko Tietze  ---
While the input now has 5% steps from 25% to 250% (which is cut on the upper
and lower edges, btw) it's not possible to enter precise values like 22%. Or
rather these values are not stored. That might affect only a few users but is
bad usability as the user input is not respected. Can you change this, Tamás?

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


[Libreoffice-bugs] [Bug 108925] Too small bullet size confuses the user

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108925

--- Comment #10 from Heiko Tietze  ---
While the input now has 5% steps from 25% to 250% (which is cut on the upper
and lower edges, btw) it's not possible to enter precise values like 22%. Or
rather these values are not stored. That might affect only a few users but is
bad usability as the user input is not respected. Can you change this, Tamás?

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


[Libreoffice-bugs] [Bug 109056] New: Crash in: PDFCore8_x64.dll

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109056

Bug ID: 109056
   Summary: Crash in: PDFCore8_x64.dll
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Chart
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: pattr...@yahoo.com

This bug was filed from the crash reporting server and is
br-e65424d1-2cc7-4ab6-a56d-85b4573bc66f.
=

-- 
You are receiving this mail because:
You 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 sw/inc sw/sdi sw/source sw/uiconfig

2017-07-10 Thread Justin Luth
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu |5 ++
 sw/inc/cmdid.h  |3 -
 sw/sdi/_basesh.sdi  |8 +++
 sw/sdi/swriter.sdi  |   17 

 sw/source/uibase/shells/basesh.cxx  |   21 
+-
 sw/uiconfig/sglobal/menubar/menubar.xml |2 
 sw/uiconfig/sglobal/popupmenu/draw.xml  |2 
 sw/uiconfig/sglobal/popupmenu/form.xml  |2 
 sw/uiconfig/sglobal/popupmenu/frame.xml |2 
 sw/uiconfig/sglobal/popupmenu/graphic.xml   |2 
 sw/uiconfig/sglobal/popupmenu/media.xml |2 
 sw/uiconfig/sglobal/popupmenu/oleobject.xml |2 
 sw/uiconfig/sweb/menubar/menubar.xml|2 
 sw/uiconfig/sweb/popupmenu/form.xml |2 
 sw/uiconfig/sweb/popupmenu/frame.xml|2 
 sw/uiconfig/sweb/popupmenu/graphic.xml  |2 
 sw/uiconfig/sweb/popupmenu/oleobject.xml|2 
 sw/uiconfig/swform/menubar/menubar.xml  |2 
 sw/uiconfig/swform/popupmenu/draw.xml   |2 
 sw/uiconfig/swform/popupmenu/form.xml   |2 
 sw/uiconfig/swform/popupmenu/frame.xml  |2 
 sw/uiconfig/swform/popupmenu/graphic.xml|2 
 sw/uiconfig/swform/popupmenu/media.xml  |2 
 sw/uiconfig/swform/popupmenu/oleobject.xml  |2 
 sw/uiconfig/swreport/menubar/menubar.xml|2 
 sw/uiconfig/swreport/popupmenu/draw.xml |2 
 sw/uiconfig/swreport/popupmenu/form.xml |2 
 sw/uiconfig/swreport/popupmenu/frame.xml|2 
 sw/uiconfig/swreport/popupmenu/graphic.xml  |2 
 sw/uiconfig/swreport/popupmenu/media.xml|2 
 sw/uiconfig/swreport/popupmenu/oleobject.xml|2 
 sw/uiconfig/swriter/menubar/menubar.xml |2 
 sw/uiconfig/swriter/popupmenu/draw.xml  |2 
 sw/uiconfig/swriter/popupmenu/form.xml  |2 
 sw/uiconfig/swriter/popupmenu/frame.xml |2 
 sw/uiconfig/swriter/popupmenu/graphic.xml   |2 
 sw/uiconfig/swriter/popupmenu/media.xml |2 
 sw/uiconfig/swriter/popupmenu/oleobject.xml |2 
 sw/uiconfig/swxform/menubar/menubar.xml |2 
 sw/uiconfig/swxform/popupmenu/draw.xml  |2 
 sw/uiconfig/swxform/popupmenu/form.xml  |2 
 sw/uiconfig/swxform/popupmenu/frame.xml |2 
 sw/uiconfig/swxform/popupmenu/graphic.xml   |2 
 sw/uiconfig/swxform/popupmenu/media.xml |2 
 sw/uiconfig/swxform/popupmenu/oleobject.xml |2 
 45 files changed, 91 insertions(+), 43 deletions(-)

New commits:
commit 959be1b5a9cd522394dba9366686a1256588223b
Author: Justin Luth 
Date:   Thu Jul 6 19:29:00 2017 -0400

UI Wrap InBackground: transition to wrapthru transparency toggle

The UI for placing a frame in the background is confusing because:
-in menus, the icon looks like a checkbox, but functions as a radio button
-it isn't obvious that "in background" is the opposite of "wrap through"
-it doesn't act like the checkboxes below it like "First paragraph"
-in dialog boxes, it is actually implemented as a checkbox toggle.

So it looks like a checkbox, and you can enable the checkbox, but
once enabled it can never be disabled.  (The currently designed way is to
select wrap off/page/optimal/through in order to disable in background.)

This patch creates FN_FRAME_WRAPTHRU_TOGGLE to replace
most uses of the previous function.

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

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index 20704835e0f7..cf0e0cb1f400 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ 

[Libreoffice-bugs] [Bug 109054] Crash in: SalFrame::SetCallback(vcl::Window *, bool (*)(vcl:: Window *, SalEvent, void const *))

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109054

--- Comment #1 from Telesto  ---
Repro with
Versie: 5.4.0.1

but not with:
Versie: 5.4.0.2 
Build ID: 2b906d450a44f2bbe506dcd22c51b3fa11dc65fd
CPU-threads: 4; Besturingssysteem:Windows 6.2; UI-render: GL; 
Locale: nl-NL (nl_NL); Calc: CL

Based on the crash report fixed with bug 108833

-- 
You are receiving this mail because:
You 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] dev-tools.git: esc-reporting/qa-tools.py

2017-07-10 Thread Xisco Fauli
 esc-reporting/qa-tools.py |   53 --
 1 file changed, 38 insertions(+), 15 deletions(-)

New commits:
commit 506bbd13abebbc2506dc509c9dcf0bd9953e04ec
Author: Xisco Fauli 
Date:   Mon Jul 10 21:08:31 2017 +0200

QA tools: List all crashreports with more than 1 bug

This way we can find duplicated bugs easily.

diff --git a/esc-reporting/qa-tools.py b/esc-reporting/qa-tools.py
index 698070a..9053bd2 100755
--- a/esc-reporting/qa-tools.py
+++ b/esc-reporting/qa-tools.py
@@ -128,6 +128,7 @@ def util_create_statList():
 'backTraceStatus': {},
 'regressionStatus': {},
 'bisectedStatus': {},
+'crashSignatures': {},
 'status_changed_to': {s:0 for s in statutes_list},
 'keyword_added': {k:0 for k in keywords_list},
 'keyword_removed': {k:0 for k in keywords_list},
@@ -213,6 +214,7 @@ def analyze_bugzilla(statList, bugzillaData, cfg):
 
 statList['data']['bugs']['all']['count'] += 1
 
+rowId = row['id']
 rowStatus = row['status']
 rowResolution = row['resolution']
 
@@ -266,7 +268,7 @@ def analyze_bugzilla(statList, bugzillaData, cfg):
 
 if rowStatus == 'UNCONFIRMED':
 statList['detailedReport']['unconfirmed_count'] += 1
-
statList['detailedReport']['lists']['unconfirmed'].append(row['id'])
+
statList['detailedReport']['lists']['unconfirmed'].append(rowId)
 
 statList['detailedReport']['lists']['author'][0].append(key)
 
statList['detailedReport']['lists']['author'][1].append(creatorMail)
@@ -276,6 +278,14 @@ def analyze_bugzilla(statList, bugzillaData, cfg):
 statList['detailedReport']['created_week'][week] = 0
 statList['detailedReport']['created_week'][week] += 1
 
+
+crashSignature = row['cf_crashreport']
+
+if crashSignature:
+if crashSignature not in 
statList['detailedReport']['crashSignatures']:
+
statList['detailedReport']['crashSignatures'][crashSignature] = []
+
statList['detailedReport']['crashSignatures'][crashSignature].append([rowId, 
rowStatus])
+
 whiteboard_list = row['whiteboard'].split(' ')
 bugTargets = []
 for whiteboard in whiteboard_list:
@@ -517,19 +527,19 @@ def analyze_bugzilla(statList, bugzillaData, cfg):
 
 if movedToFixed:
 total += 1
-print(str(total) + " - MOVED TO FIXED: 
https://bugs.documentfoundation.org/show_bug.cgi?id=; + str(row['id']))
+print(str(total) + " - MOVED TO FIXED: 
https://bugs.documentfoundation.org/show_bug.cgi?id=; + str(rowId))
 
 if autoConfirmed:
 total += 1
-print(str(total) + " - AUTO-CONFIRMED: 
https://bugs.documentfoundation.org/show_bug.cgi?id=; + str(row['id']))
+print(str(total) + " - AUTO-CONFIRMED: 
https://bugs.documentfoundation.org/show_bug.cgi?id=; + str(rowId))
 
 if newerVersion:
 total += 1
-print(str(total) + " - VERSION CHANGED TO A NEWER ONE: 
https://bugs.documentfoundation.org/show_bug.cgi?id=; + str(row['id']))
+print(str(total) + " - VERSION CHANGED TO A NEWER ONE: 
https://bugs.documentfoundation.org/show_bug.cgi?id=; + str(rowId))
 
-if row['cf_crashreport'] and not 
row['cf_crashreport'].startswith('["'):
+if crashSignature and not crashSignature.startswith('["'):
 total += 1
-print(str(total) + " - INCORRECT CRASHREPORT SYNTAX: 
https://bugs.documentfoundation.org/show_bug.cgi?id=; + str(row['id']))
+print(str(total) + " - INCORRECT CRASHREPORT SYNTAX: 
https://bugs.documentfoundation.org/show_bug.cgi?id=; + str(rowId))
 
 
 for k, v in statList['people'].items():
@@ -749,6 +759,19 @@ def users_Report(statList) :
 for v,k in statList['newUsersPeriod'].items():
 print(v)
 
+def crashes_Report(statList) :
+fp = open('/tmp/crashes_report.txt', 'w', encoding='utf-8')
+
+print('* Report from {} to 
{}'.format(cfg[reportPeriod].strftime("%Y-%m-%d"), statList['stat']['newest']), 
file=fp )
+
+for key, value in 
sorted(statList['detailedReport']['crashSignatures'].items()):
+if len(value) > 1:
+print(file=fp)
+print('* ' + key + '.', file=fp)
+for i in value:
+print('\t - ' + i[1] + ' - 
https://bugs.documentfoundation.org/show_bug.cgi?id=' + str(i[0]), file=fp)
+fp.close()
+
 def Blog_Report(statList) :
 fp = open('/tmp/blog_report.txt', 'w', encoding='utf-8')
 
@@ -840,7 +863,7 @@ def Blog_Report(statList) :
 
 fp.close()
 
-def QA_Report(statList) :
+def Weekly_Report(statList) :
 print('QA report from {} to 

[Libreoffice-bugs] [Bug 109036] LibreOffice - spreadsheet / numbertext-0.9.5.oxt not working

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109036

--- Comment #4 from andreas.sturmlech...@gmail.com ---
(In reply to Cor Nouws from comment #3)
> Sorry for the confusion.
> OTOH, the conclusion remains the same.

Sure, it happens. So, basically we can file that under locale setting
confusion? Then standard functions with more than one argument must have failed
as well for the bug reporter.

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


[Libreoffice-bugs] [Bug 109052] Crash in: mergedlo.dll (see comment 3)

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109052

Telesto  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||8833
Summary|Crash in: mergedlo.dll  |Crash in: mergedlo.dll (see
   ||comment 3)

--- Comment #3 from Telesto  ---
Hmm, I changed the default undo setting to zero (and I forgot about it).
Looks like a follow-up of bug 108833 

1. Open LibO
2. Set the undo count to zero
(https://help.libreoffice.org/Common/Memory#Number_of_undo_steps)
3. Open http://www.cs.rpi.edu/~moorthy/Courses/S04/modcomp/class14.ppt
4. Select All Sheets in the slides pane (CTRL+A)
5. Sidebar -> Master Pages
6. Select a template and apply
7. Select a second template and apply -> 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 108925] Too small bullet size confuses the user

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108925

--- Comment #9 from Commit Notification 
 ---
Tamás Zolnai committed a patch related to this issue.
It has been pushed to "libreoffice-5-3":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=166d63036b57672a16d50663246c73750ef98ea7=libreoffice-5-3

tdf#108925: Too small bullet size confuses the user

It will be available in 5.3.5.

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

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

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


[Libreoffice-bugs] [Bug 108925] Too small bullet size confuses the user

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108925

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.0.0|target:6.0.0 target:5.3.5

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


[Libreoffice-ux-advise] [Bug 108925] Too small bullet size confuses the user

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108925

--- Comment #9 from Commit Notification 
 ---
Tamás Zolnai committed a patch related to this issue.
It has been pushed to "libreoffice-5-3":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=166d63036b57672a16d50663246c73750ef98ea7=libreoffice-5-3

tdf#108925: Too small bullet size confuses the user

It will be available in 5.3.5.

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

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

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - cui/source include/editeng sd/qa

2017-07-10 Thread Tamás Zolnai
 cui/source/tabpages/numpages.cxx  |1 +
 include/editeng/numitem.hxx   |5 -
 sd/qa/unit/data/odp/tdf108925.odp |binary
 sd/qa/unit/import-tests.cxx   |   19 +++
 4 files changed, 24 insertions(+), 1 deletion(-)

New commits:
commit 166d63036b57672a16d50663246c73750ef98ea7
Author: Tamás Zolnai 
Date:   Fri Jul 7 16:22:47 2017 +0200

tdf#108925: Too small bullet size confuses the user

Add a constraint for bullet relative size to avoid too small
bullets which are hardly recognizable. Use the same 25% lower
limit what MSO uses.

Reviewed-on: https://gerrit.libreoffice.org/39696
Tested-by: Jenkins 
Reviewed-by: Tamás Zolnai 
(cherry picked from commit 11652be4071ef6d1d89b2c397aa1a32476e03bf6)

Change-Id: Id956ecf3ec831c569188b944be58da03bf30a55e
Reviewed-on: https://gerrit.libreoffice.org/39709
Tested-by: Jenkins 
Reviewed-by: Andras Timar 

diff --git a/cui/source/tabpages/numpages.cxx b/cui/source/tabpages/numpages.cxx
index 49564a9e1716..ded539a44714 100644
--- a/cui/source/tabpages/numpages.cxx
+++ b/cui/source/tabpages/numpages.cxx
@@ -1108,6 +1108,7 @@ SvxNumOptionsTabPage::SvxNumOptionsTabPage(vcl::Window* 
pParent,
 
 get(m_pBulRelSizeFT, "relsizeft");
 get(m_pBulRelSizeMF, "relsize");
+m_pBulRelSizeMF->SetMin(SVX_NUM_REL_SIZE_MIN);
 
 get(m_pAllLevelFT, "sublevelsft");
 get(m_pAllLevelNF, "sublevels");
diff --git a/include/editeng/numitem.hxx b/include/editeng/numitem.hxx
index 86d8b0591ede..b10056c70100 100644
--- a/include/editeng/numitem.hxx
+++ b/include/editeng/numitem.hxx
@@ -33,6 +33,7 @@
 #include 
 #include 
 #include 
+#include 
 
 class SvxBrushItem;
 namespace vcl { class Font; }
@@ -47,6 +48,8 @@ namespace com{namespace sun{ namespace star{
 
 #define SVX_NO_NUM  200 // Marker for no numbering
 #define SVX_NO_NUMLEVEL 0x20
+#define SVX_NUM_REL_SIZE_MIN25 // Lower limit for numbering relative size
+
 
 #define LINK_TOKEN  0x80 //indicate linked bitmaps - for use in dialog only
 class EDITENG_DLLPUBLIC SvxNumberType
@@ -168,7 +171,7 @@ public:
 const vcl::Font* GetBulletFont() const {return pBulletFont;}
 voidSetBulletChar(sal_Unicode cSet){cBullet = cSet;}
 sal_Unicode GetBulletChar()const {return cBullet;}
-voidSetBulletRelSize(sal_uInt16 nSet) {nBulletRelSize = nSet;}
+voidSetBulletRelSize(sal_uInt16 nSet) {nBulletRelSize = 
std::max(nSet, sal_uInt16(SVX_NUM_REL_SIZE_MIN));}
 sal_uInt16  GetBulletRelSize() const { return nBulletRelSize;}
 voidSetBulletColor(Color nSet){nBulletColor = nSet;}
 const Color&GetBulletColor()const {return nBulletColor;}
diff --git a/sd/qa/unit/data/odp/tdf108925.odp 
b/sd/qa/unit/data/odp/tdf108925.odp
new file mode 100755
index ..5b6dfc4ca4a2
Binary files /dev/null and b/sd/qa/unit/data/odp/tdf108925.odp differ
diff --git a/sd/qa/unit/import-tests.cxx b/sd/qa/unit/import-tests.cxx
index b6f3462f7744..4e62c3479cf2 100644
--- a/sd/qa/unit/import-tests.cxx
+++ b/sd/qa/unit/import-tests.cxx
@@ -141,6 +141,7 @@ public:
 void testTdf104015();
 void testTdf104201();
 void testTdf104445();
+void testTdf108925();
 
 CPPUNIT_TEST_SUITE(SdImportTest);
 
@@ -200,6 +201,7 @@ public:
 CPPUNIT_TEST(testTdf104015);
 CPPUNIT_TEST(testTdf104201);
 CPPUNIT_TEST(testTdf104445);
+CPPUNIT_TEST(testTdf108925);
 
 CPPUNIT_TEST_SUITE_END();
 };
@@ -1770,6 +1772,23 @@ void SdImportTest::testTdf104445()
 xDocShRef->DoClose();
 }
 
+void SdImportTest::testTdf108925()
+{
+// Test document contains bulleting with too small bullet size (1%) which 
breaks the lower constraint
+// So it should be converted to the lowest allowed value (25%).
+sd::DrawDocShellRef xDocShRef = 
loadURL(m_directories.getURLFromSrc("sd/qa/unit/data/odp/tdf108925.odp"), ODP);
+const SdrPage *pPage = GetPage(1, xDocShRef);
+SdrTextObj *pTxtObj = dynamic_cast(pPage->GetObj(0));
+CPPUNIT_ASSERT_MESSAGE("No text object", pTxtObj != nullptr);
+const EditTextObject& aEdit = 
pTxtObj->GetOutlinerParaObject()->GetTextObject();
+
+const SvxNumBulletItem *pNumFmt = dynamic_cast(aEdit.GetParaAttribs(0).GetItem(EE_PARA_NUMBULLET));
+CPPUNIT_ASSERT(pNumFmt);
+
CPPUNIT_ASSERT_EQUAL(pNumFmt->GetNumRule()->GetLevel(0).GetBulletRelSize(), 
sal_uInt16(25));
+
+xDocShRef->DoClose();
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(SdImportTest);
 
 CPPUNIT_PLUGIN_IMPLEMENT();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-ux-advise] [Bug 108925] Too small bullet size confuses the user

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108925

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.0.0|target:6.0.0 target:5.3.5

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


[Libreoffice-bugs] [Bug 67145] CRASH: ODBC - Firebird: Attempting to edit table definition causes abort

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67145

DickStomp  changed:

   What|Removed |Added

Version|4.1.0.3 rc  |5.3.2.2 release

--- Comment #31 from DickStomp  ---
Ubuntu 14.04.5 LO5.3.3.2
2 weeks ago: ThinkPad T410; Starting Writer: comes up en goes down
everything tried; system Ubuntu 14.4 reinstall; apt LO5.3.3.2 reinstall;
perfect
1 week ago: BioStar; Starting Writer: comes up en goes down
everything tried; system Ubuntu 14.4 reinstall; apt LO5.3.3.2 reinstall;
perfect
now: ThinkPad T410: starting Base; attempt start Table New; ABORT; reinstall
Base;
starting Base; attempt start Table New; ABORT
Some aborts generates an crash-report to ???
Do I have another time reinstall my ThinkPad T410? It costs five hours
waiting...
My two other PC´s, not so much used, are running smoothless at the same
DropBox.

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


[Libreoffice-bugs] [Bug 109055] New: Problem converting Round function from excel in portuguese ( Arred function)

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109055

Bug ID: 109055
   Summary: Problem converting Round function from excel in
portuguese (Arred function)
   Product: Document Liberation Project
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: vinic...@basepro.com.br

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


[Libreoffice-bugs] [Bug 57464] RTF Copying across paragraphs creates broken ANSI content

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57464

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #20 from Buovjaga  ---
I did this:

1. Open attachment 71376
2. Select all and copy
3. Inspect clipboard with http://www.nirsoft.net/utils/inside_clipboard.html (I
guess you could also do it with xclip)
4. Select all and change font to Lucida Console
5. Copy
6. Inspect clipboard, check the diff

It appears "the garbage \'3x-\'4x" is manifesting. I will show relevant lines.

Before font change:
\par \pard\plain
\s0\widctlpar\hyphpar0\cf0\kerning1\dbch\af5\langfe2052\dbch\af8\afs24\alang1081\loch\f3\hich\af3\fs24\lang1035{\rtlch
\ltrch\loch
\u1054\'3f\u1073\'3f\u1088\'3f\u1072\'3f\u1079\'3f\u1077\'3f\u1094\'3f 2}
\par \pard\plain
\s0\widctlpar\hyphpar0\cf0\kerning1\dbch\af5\langfe2052\dbch\af8\afs24\alang1081\loch\f3\hich\af3\fs24\lang1035{\rtlch
\ltrch\loch
\u1054\'3f\u1073\'3f\u1088\'3f\u1072\'3f\u1079\'3f\u1077\'3f\u1094\'3f 3}
}

After font change:
\par \pard\plain
\s0\widctlpar\hyphpar0\cf0\kerning1\dbch\af6\langfe2052\dbch\af9\afs24\alang1081\loch\f3\hich\af3\fs24\lang1035{\rtlch
\ltrch\loch\loch\f5\hich\af5
\uc2
\u1054\'84\'4f\u1073\'84\'71\u1088\'84\'82\u1072\'84\'70\u1079\'84\'78\u1077\'84\'75\u1094\'84\'88
2\uc1 }
\par \pard\plain
\s0\widctlpar\hyphpar0\cf0\kerning1\dbch\af6\langfe2052\dbch\af9\afs24\alang1081\loch\f3\hich\af3\fs24\lang1035{\rtlch
\ltrch\loch\loch\f5\hich\af5
\uc2
\u1054\'84\'4f\u1073\'84\'71\u1088\'84\'82\u1072\'84\'70\u1079\'84\'78\u1077\'84\'75\u1094\'84\'88
3\uc1 }
}

Version: 6.0.0.0.alpha0+ (x64)
Build ID: e0f67add2ec56706ce06a03572535266f21c0303
CPU threads: 4; OS: Windows 6.19; UI render: default; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2017-06-27_23:04:56
Locale: fi-FI (fi_FI); Calc: group

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


[Libreoffice-bugs] [Bug 85651] Writer crashes when a MailMerge instance is created in C#

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85651

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
Crash report or||["SwCache::Delete(void
crash signature||const *)"]

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


[Libreoffice-bugs] [Bug 107730] CRASH when opening simple document containing shapes with OpenGL enabled

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107730

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
Crash report or||["mergedlo.dll"]
crash signature||

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


[Libreoffice-bugs] [Bug 109052] Crash in: mergedlo.dll

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109052

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #2 from Xisco Faulí  ---
I can't reproduce it in

Version: 6.0.0.0.alpha0+
Build ID: 7931ef2abbcef22de5c26738e4dd8d1d8ca5
CPU threads: 4; OS: Linux 4.8; UI render: default; VCL: x11; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group

nor in

Version: 6.0.0.0.alpha0+
Build ID: cb37c5f0f3de7b545231a53d46a5271058af76ad
CPU threads: 1; OS: Windows 6.1; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2017-06-23_06:55:41
Locale: es-ES (es_ES); Calc: group

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


[Libreoffice-bugs] [Bug 75277] FORMATTING: MS Office docx frame and index renders incorrect

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75277

--- Comment #7 from mondane.woodwor...@gmail.com ---
What is still incorrect:

- The frame on the first page is shown as a square.
- In the PDF, paragraph 2.10 should be shown on page 2, instead it's on page 3.
Incorrect line height or font size?

What is fixed (was also fixed on 4.4.2.2):

- The index doesn't have space between the number and the titles.

I'm currently on Ubuntu 16.04 with LibreOffice Version: 

Version: 5.3.4.2
Build ID: libreoffice-5.3.4.2-snap1
CPU Threads: 2; OS Version: Linux 4.4; UI Render: default; VCL: gtk3; Layout
Engine: new; 
Locale: nl-NL (nl_NL.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 99822] FILEOPEN: Objects in tables located in wrong position

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99822

Xisco Faulí  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 109053] DOCX: Multipage table is not imported properly

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109053

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisected, bisected,
   ||regression
 Status|UNCONFIRMED |NEW
 CC||xiscofa...@libreoffice.org
Version|6.0.0.0.alpha0+ Master  |4.1 all versions
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=99
   ||822
 Ever confirmed|0   |1

--- Comment #2 from Xisco Faulí  ---
Regression introduced in

author  Cédric Bosdonnat  2013-02-20 10:04:16
(GMT)
committer   Cédric Bosdonnat  2013-02-20
10:17:00 (GMT)
commit  d0cde9640b52ccfbb28ed1f65bba0927afd7b69b (patch)
tree18c6342798d98ff8559a3cf26dac4994a2f82998
parent  a633a96c3a50d803e5fa43b603edc0b8e2e34b6e (diff)
n#779642: Fixed floating tables import in writerfilter

Bisected with bibisect-41max

bug 99822 is affected by the same commit.

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


[Libreoffice-bugs] [Bug 104579] FILEOPEN DOCX: Inconsistent pie chart color

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104579

Xisco Faulí  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 99822] FILEOPEN: Objects in tables located in wrong position

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99822

Xisco Faulí  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 99822] FILEOPEN: Objects in tables located in wrong position

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99822

Xisco Faulí  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 104579] FILEOPEN DOCX: Inconsistent pie chart color

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104579

Xisco Faulí  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You 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: 3 commits - formula/source include/formula reportdesign/source sc/source

2017-07-10 Thread Eike Rathke
 formula/source/ui/dlg/formula.cxx|   17 ++---
 include/formula/FormulaCompiler.hxx  |   10 +-
 include/formula/IFunctionDescription.hxx |3 +++
 reportdesign/source/ui/dlg/Formula.cxx   |6 ++
 reportdesign/source/ui/inc/Formula.hxx   |1 +
 sc/source/ui/formdlg/formula.cxx |7 +++
 sc/source/ui/inc/formula.hxx |6 --
 7 files changed, 36 insertions(+), 14 deletions(-)

New commits:
commit e8fcb1fbd365b7c6104c7941abee07a612ba7813
Author: Eike Rathke 
Date:   Mon Jul 10 20:04:08 2017 +0200

Make GetForceArrayParameter() public

Change-Id: I3a82c43e80fffb4bf37bb2f7a3f5b3b26f1baf98

diff --git a/include/formula/FormulaCompiler.hxx 
b/include/formula/FormulaCompiler.hxx
index 31a3cf5e5ee4..45166193487c 100644
--- a/include/formula/FormulaCompiler.hxx
+++ b/include/formula/FormulaCompiler.hxx
@@ -259,6 +259,11 @@ public:
  */
 bool NeedsTableRefTransformation() const;
 
+/** If a parameter nParam (0-based) is to be forced to array for OpCode
+eOp, i.e. classified as ParamClass::ForceArray or
+ParamClass::ReferenceOrForceArray type. */
+virtual formula::ParamClass GetForceArrayParameter( const FormulaToken* 
pToken, sal_uInt16 nParam ) const;
+
 static void UpdateSeparatorsNative( const OUString& rSep, const OUString& 
rArrayColSep, const OUString& rArrayRowSep );
 static void ResetNativeSymbols();
 static void SetNativeSymbols( const OpCodeMapPtr& xMap );
@@ -295,11 +300,6 @@ protected:
 virtual void CreateStringFromIndex( OUStringBuffer& rBuffer, const 
FormulaToken* pToken ) const;
 virtual void LocalizeString( OUString& rName ) const;   // modify rName - 
input: exact name
 
-/** If a parameter nParam (0-based) is to be forced to array for OpCode
-eOp, i.e. classified as ParamClass::ForceArray or
-ParamClass::ReferenceOrForceArray type. */
-virtual formula::ParamClass GetForceArrayParameter( const FormulaToken* 
pToken, sal_uInt16 nParam ) const;
-
 void AppendErrorConstant( OUStringBuffer& rBuffer, FormulaError nError ) 
const;
 
 bool   GetToken();
commit 741f61d0ca70069e875f6f57bf08d9aa282c0676
Author: Eike Rathke 
Date:   Mon Jul 10 18:33:22 2017 +0200

Introduce IFormulaEditorHelper::getCompiler()

Implemented at rptui::FormulaDialog as nullptr and at ScFormulaDlg as 
ScCompiler*

Change-Id: I0edaca56f5d9e3505ed766d43bc9ee4af80f03ff

diff --git a/include/formula/IFunctionDescription.hxx 
b/include/formula/IFunctionDescription.hxx
index 40820ebbe040..3a310d704563 100644
--- a/include/formula/IFunctionDescription.hxx
+++ b/include/formula/IFunctionDescription.hxx
@@ -42,6 +42,7 @@ namespace formula
 class IFunctionDescription;
 class FormEditData;
 class FormulaTokenArray;
+class FormulaCompiler;
 
 class SAL_NO_VTABLE IFunctionManager
 {
@@ -133,6 +134,8 @@ namespace formula
 virtual FormEditData* getFormEditData() const = 0;
 virtual bool calculateValue(const OUString& _sExpression, OUString& 
_rResult, bool bMatrixFormula) = 0;
 
+virtual std::shared_ptr getCompiler() const = 0;
+
 virtual void switchBack() = 0;
 
 virtual void clear() = 0;
diff --git a/reportdesign/source/ui/dlg/Formula.cxx 
b/reportdesign/source/ui/dlg/Formula.cxx
index 480f017e7ac1..826ad3253ca6 100644
--- a/reportdesign/source/ui/dlg/Formula.cxx
+++ b/reportdesign/source/ui/dlg/Formula.cxx
@@ -112,6 +112,12 @@ bool FormulaDialog::calculateValue( const OUString& 
rStrExp, OUString& rStrResul
 rStrResult = rStrExp;
 return false;
 }
+
+std::shared_ptr FormulaDialog::getCompiler() const
+{
+return nullptr;
+}
+
 void FormulaDialog::doClose(bool _bOk)
 {
 EndDialog(_bOk ? RET_OK : RET_CANCEL);
diff --git a/reportdesign/source/ui/inc/Formula.hxx 
b/reportdesign/source/ui/inc/Formula.hxx
index 77153a0db40d..ceba75141964 100644
--- a/reportdesign/source/ui/inc/Formula.hxx
+++ b/reportdesign/source/ui/inc/Formula.hxx
@@ -74,6 +74,7 @@ public:
 virtual void notifyChange() override;
 virtual void fill() override;
 virtual bool calculateValue(const OUString& _sExpression, OUString& 
_rResult, bool bMatrixFormula) override;
+virtual std::shared_ptr getCompiler() const;
 virtual void doClose(bool _bOk) override;
 virtual void insertEntryToLRUList(const formula::IFunctionDescription*  
pDesc) override;
 virtual void showReference(const OUString& _sFormula) override;
diff --git a/sc/source/ui/formdlg/formula.cxx b/sc/source/ui/formdlg/formula.cxx
index ac8b3369fe4a..547ee391919c 100644
--- a/sc/source/ui/formdlg/formula.cxx
+++ b/sc/source/ui/formdlg/formula.cxx
@@ -373,6 +373,13 @@ bool ScFormulaDlg::calculateValue( const OUString& 
rStrExp, OUString& rStrResult
 return true;
 }
 
+std::shared_ptr ScFormulaDlg::getCompiler() const
+{
+if (!m_xCompiler)
+m_xCompiler.reset( new ScCompiler( m_pDoc, 

[Libreoffice-bugs] [Bug 105522] Crash in: vcl::Window::dispose()

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105522

Xisco Faulí  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #2 from Xisco Faulí  ---


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

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


[Libreoffice-bugs] [Bug 105938] Crash when closing a Base database

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105938

Xisco Faulí  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #3 from Xisco Faulí  ---


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

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


[Libreoffice-bugs] [Bug 103599] SEH exception: access violation on saving forms

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103599

Xisco Faulí  changed:

   What|Removed |Added

 CC||l...@ptoye.com

--- Comment #9 from Xisco Faulí  ---
*** Bug 105938 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 109052] Crash in: mergedlo.dll

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109052

--- Comment #1 from Telesto  ---
No repro with
Versie: 5.3.3.1 
Build ID: 46360c72c4823cefeaa85af537fba22bd568da7e
CPU Threads: 4; Versie besturingssysteem:Windows 6.2; UI Render: standaard;
Layout-Engine: nieuw; 
Locale: nl-NL (nl_NL); Calc: CL

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


[Libreoffice-bugs] [Bug 108299] CALC crashes reproducibly on COPYing 3+ whole rows to clipboard with OPENGL enabled

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108299

Xisco Faulí  changed:

   What|Removed |Added

 CC||r...@jwcca.com

--- Comment #8 from Xisco Faulí  ---
*** Bug 106997 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 106997] Crash in: BitmapReadAccess::GetPixelForN32BitTcRgba( unsigned char const *, long, ColorMask const &)

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106997

Xisco Faulí  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #2 from Xisco Faulí  ---


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

-- 
You are receiving this mail because:
You 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/new-vcl-scheduler' - 30 commits - avmedia/source basctl/source cui/source dbaccess/source desktop/qa formula/source framework/source include/vcl reportd

2017-07-10 Thread Jan-Marek Glogowski
Rebased ref, commits from common ancestor:
commit fd4a556d077bd3f1834f5429226e43bcfaaa93a0
Author: Jan-Marek Glogowski 
Date:   Wed Apr 5 14:44:34 2017 +0200

WIN shorten DoYield by using existing functions

This also adds an sal_uLong nCount parameter to
ImplSalYieldMutexAcquireWithWait, so it can be called like
ImplSalAcquireYieldMutex and actually uses the result from
the deferred DoYield.

Change-Id: Ie3b466ad03e7ed8c35a62f41c09d09757865364d

diff --git a/vcl/inc/win/saldata.hxx b/vcl/inc/win/saldata.hxx
index 367319743c94..b28f3e2c09be 100644
--- a/vcl/inc/win/saldata.hxx
+++ b/vcl/inc/win/saldata.hxx
@@ -171,7 +171,7 @@ bool ImplLoadSalIcon( int nId, HICON& rIcon, HICON& 
rSmallIcon );
 void ImplInitSalGDI();
 void ImplFreeSalGDI();
 
-void ImplSalYieldMutexAcquireWithWait();
+void ImplSalYieldMutexAcquireWithWait( sal_uLong nCount = 1 );
 bool ImplSalYieldMutexTryToAcquire();
 void ImplSalYieldMutexRelease();
 sal_uLong ImplSalReleaseYieldMutex();
diff --git a/vcl/win/app/salinst.cxx b/vcl/win/app/salinst.cxx
index 5ef585891e1b..1b1d0f82fee8 100644
--- a/vcl/win/app/salinst.cxx
+++ b/vcl/win/app/salinst.cxx
@@ -182,7 +182,7 @@ sal_uLong SalYieldMutex::GetAcquireCount( sal_uLong 
nThreadId )
 /// note: while VCL is fully up and running (other threads started and
 /// before shutdown), the main thread must acquire SolarMutex only via
 /// this function to avoid deadlock
-void ImplSalYieldMutexAcquireWithWait()
+void ImplSalYieldMutexAcquireWithWait( sal_uLong nCount )
 {
 WinSalInstance* pInst = GetSalData()->mpFirstInstance;
 if ( !pInst )
@@ -197,21 +197,26 @@ void ImplSalYieldMutexAcquireWithWait()
 // needed because if we don't reschedule, then we create deadlocks if a
 // Window's create/destroy is called via SendMessage() from another 
thread.
 // Have a look at the osl_waitCondition implementation for more info.
-pInst->mpSalYieldMutex->m_condition.reset();
-while (!pInst->mpSalYieldMutex->tryToAcquire())
+SalYieldMutex * const pYieldMutex = pInst->mpSalYieldMutex;
+osl::Condition  = pYieldMutex->m_condition;
+while ( nCount )
 {
-// wait for SalYieldMutex::release() to set the condition
-osl::Condition::Result res = 
pInst->mpSalYieldMutex->m_condition.wait();
-assert(osl::Condition::Result::result_ok == res);
-// reset condition *before* acquiring!
-pInst->mpSalYieldMutex->m_condition.reset();
+do {
+// reset condition *before* acquiring!
+rCondition.reset();
+if (pYieldMutex->tryToAcquire())
+break;
+// wait for SalYieldMutex::release() to set the condition
+osl::Condition::Result res = rCondition.wait();
+assert(osl::Condition::Result::result_ok == res);
+}
+while ( 1 );
+--nCount;
 }
 }
 else
-{
 // If this is not the main thread, call acquire directly.
-pInst->mpSalYieldMutex->acquire();
-}
+ImplSalAcquireYieldMutex( nCount );
 }
 
 bool ImplSalYieldMutexTryToAcquire()
@@ -597,17 +602,8 @@ bool WinSalInstance::DoYield(bool bWait, bool 
bHandleAllCurrentEvents, sal_uLong
 bool bDidWork = false;
 // NOTE: if nReleased != 0 this will be called without SolarMutex
 //   so don't do anything dangerous before releasing it here
-SalYieldMutex*  pYieldMutex = mpSalYieldMutex;
-DWORD   nCurThreadId = GetCurrentThreadId();
 sal_uLong const nCount = (nReleased != 0)
-? nReleased
-: pYieldMutex->GetAcquireCount(nCurThreadId);
-sal_uLong   n = (nReleased != 0) ? 0 : nCount;
-while ( n )
-{
-pYieldMutex->release();
-n--;
-}
+ ? nReleased : ImplSalReleaseYieldMutex();
 if ( !IsMainThread() )
 {
 // #97739# A SendMessage call blocks until the called thread (here: 
the main thread)
@@ -621,31 +617,20 @@ bool WinSalInstance::DoYield(bool bWait, bool 
bHandleAllCurrentEvents, sal_uLong
 
 // #i18883# only sleep if potential deadlock scenario, ie, when a 
dialog is open
 if( ImplGetSVData()->maAppData.mnModalMode )
-Sleep(1);
+SwitchToThread();
 else
-SendMessageW( mhComWnd, SAL_MSG_THREADYIELD, (WPARAM)bWait, 
(LPARAM)bHandleAllCurrentEvents );
+bDidWork = SendMessageW( mhComWnd, SAL_MSG_THREADYIELD, 
(WPARAM)bWait, (LPARAM)bHandleAllCurrentEvents );
 
-n = nCount;
-while ( n )
-{
-pYieldMutex->acquire();
-n--;
-}
+ImplSalAcquireYieldMutex( nCount );
 }
 else
 {
 if (nReleased == 0) // tdf#99383 ReAcquireSolarMutex shouldn't Yield
-{
 bDidWork = ImplSalYield( 

[Libreoffice-bugs] [Bug 105491] Copying many cells in big spreadsheet makes LibreOffice crash

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105491

--- Comment #11 from Xavier Van Wijmeersch  ---
i have no crash with big spreadsheet mitB2.ods
loading takes a while also copy I column takes some time
pasting to another column takes time also saving the file

Version: 6.0.0.0.alpha0+
Build ID: 18909d45977a897cbd921d76d1dde4bf3a466271
CPU threads: 8; OS: Linux 4.9; UI render: default; VCL: kde4; 
Locale: nl-BE (en_US.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 109054] Crash in: SalFrame::SetCallback(vcl::Window *, bool (*)(vcl:: Window *, SalEvent, void const *))

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109054

Telesto  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 109052] Crash in: mergedlo.dll

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109052

Telesto  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 109054] Crash in: SalFrame::SetCallback(vcl::Window *, bool (*)(vcl:: Window *, SalEvent, void const *))

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109054

Telesto  changed:

   What|Removed |Added

   Severity|normal  |critical

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


[Libreoffice-bugs] [Bug 109054] Crash in: SalFrame::SetCallback(vcl::Window *, bool (*)(vcl:: Window *, SalEvent, void const *))

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109054

Telesto  changed:

   What|Removed |Added

Version|unspecified |5.3.3.1 rc

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


[Libreoffice-bugs] [Bug 109054] New: Crash in: SalFrame::SetCallback(vcl::Window *, bool (*)( vcl::Window *, SalEvent, void const *))

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109054

Bug ID: 109054
   Summary: Crash in: SalFrame::SetCallback(vcl::Window *,bool
(*)(vcl::Window *,SalEvent,void const *))
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

This bug was filed from the crash reporting server and is
br-27a7c156-92e3-4d6a-a674-ba2b65947c68.
=

1. Open LibreOffice with OpenGL enabled
1. Open http://www.cs.rpi.edu/~moorthy/Courses/S04/modcomp/class14.ppt
2. Menu -> View -> Slide Sorter
3. Select All Sheets (CTRL+A)
3. Sidebar -> Master Pages
4. Select a template and apply
5. Select a second template and apply -> Crash
6. If no crash -> repeat step 4 and 5

Bug is closely related to bug 109052. It could be a dupe. However. There are
some differences.

LibO 5.3.3.1 won't crash without OpenGL enabled and I couldn't reproduce it in
Normal View

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


[Libreoffice-bugs] [Bug 109053] DOCX: Multipage table is not imported properly

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109053

--- Comment #1 from Tamás Zolnai  ---
Created attachment 134577
  --> https://bugs.documentfoundation.org/attachment.cgi?id=134577=edit
Document with a multipage table

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


[Libreoffice-bugs] [Bug 109053] New: DOCX: Multipage table is not imported properly

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109053

Bug ID: 109053
   Summary: DOCX: Multipage table is not imported properly
   Product: LibreOffice
   Version: 6.0.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: zolnaitamas2...@gmail.com

Description:
The test document (created based on a real life document) contains a table
positioned on two pages. If I open it in Writer I get only a one page document
with a smaller table on the first page.

Steps to Reproduce:
1. Open attached document
2. Check the pages size and the table

Actual Results:  
Only one page is imported with a smaller table on it.

Expected Results:
The whole table should be imported with the two pages.


Reproducible: Always

User Profile Reset: No

Additional Info:


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

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


[Libreoffice-bugs] [Bug 109052] New: Crash in: mergedlo.dll

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109052

Bug ID: 109052
   Summary: Crash in: mergedlo.dll
   Product: LibreOffice
   Version: 5.4.0.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

This bug was filed from the crash reporting server and is
br-3f051ebe-317f-4937-b9b6-896350eadde3.
=

1. Open http://www.cs.rpi.edu/~moorthy/Courses/S04/modcomp/class14.ppt
3. Select All Sheets in the slides pane (CTRL+A)
3. Sidebar -> Master Pages
4. Select a template and apply
5. Select a second template and apply -> Crash

Also with:
Version: 6.0.0.0.alpha0+
Build ID: 7b4f4f15971047664fa278fff96b959d53b272b3
CPU threads: 4; OS: Windows 6.19; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2017-07-08_00:29:31
Locale: nl-NL (nl_NL); Calc: CL

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


[Libreoffice-commits] core.git: Branch 'feature/new-vcl-scheduler' - 31 commits - avmedia/source basctl/source cui/source dbaccess/source desktop/qa formula/source framework/source include/vcl include

2017-07-10 Thread Jan-Marek Glogowski
Rebased ref, commits from common ancestor:
commit 3c1f147cf0fd2d1fee276739d8cb0732ad0ebd2e
Author: Jan-Marek Glogowski 
Date:   Wed Apr 5 14:44:34 2017 +0200

WIN shorten DoYield by using existing functions

This also adds an sal_uLong nCount parameter to
ImplSalYieldMutexAcquireWithWait, so it can be called like
ImplSalAcquireYieldMutex and actually uses the result from
the deferred DoYield.

Change-Id: Ie3b466ad03e7ed8c35a62f41c09d09757865364d

diff --git a/vcl/inc/win/saldata.hxx b/vcl/inc/win/saldata.hxx
index 367319743c94..b28f3e2c09be 100644
--- a/vcl/inc/win/saldata.hxx
+++ b/vcl/inc/win/saldata.hxx
@@ -171,7 +171,7 @@ bool ImplLoadSalIcon( int nId, HICON& rIcon, HICON& 
rSmallIcon );
 void ImplInitSalGDI();
 void ImplFreeSalGDI();
 
-void ImplSalYieldMutexAcquireWithWait();
+void ImplSalYieldMutexAcquireWithWait( sal_uLong nCount = 1 );
 bool ImplSalYieldMutexTryToAcquire();
 void ImplSalYieldMutexRelease();
 sal_uLong ImplSalReleaseYieldMutex();
diff --git a/vcl/win/app/salinst.cxx b/vcl/win/app/salinst.cxx
index 5ef585891e1b..1b1d0f82fee8 100644
--- a/vcl/win/app/salinst.cxx
+++ b/vcl/win/app/salinst.cxx
@@ -182,7 +182,7 @@ sal_uLong SalYieldMutex::GetAcquireCount( sal_uLong 
nThreadId )
 /// note: while VCL is fully up and running (other threads started and
 /// before shutdown), the main thread must acquire SolarMutex only via
 /// this function to avoid deadlock
-void ImplSalYieldMutexAcquireWithWait()
+void ImplSalYieldMutexAcquireWithWait( sal_uLong nCount )
 {
 WinSalInstance* pInst = GetSalData()->mpFirstInstance;
 if ( !pInst )
@@ -197,21 +197,26 @@ void ImplSalYieldMutexAcquireWithWait()
 // needed because if we don't reschedule, then we create deadlocks if a
 // Window's create/destroy is called via SendMessage() from another 
thread.
 // Have a look at the osl_waitCondition implementation for more info.
-pInst->mpSalYieldMutex->m_condition.reset();
-while (!pInst->mpSalYieldMutex->tryToAcquire())
+SalYieldMutex * const pYieldMutex = pInst->mpSalYieldMutex;
+osl::Condition  = pYieldMutex->m_condition;
+while ( nCount )
 {
-// wait for SalYieldMutex::release() to set the condition
-osl::Condition::Result res = 
pInst->mpSalYieldMutex->m_condition.wait();
-assert(osl::Condition::Result::result_ok == res);
-// reset condition *before* acquiring!
-pInst->mpSalYieldMutex->m_condition.reset();
+do {
+// reset condition *before* acquiring!
+rCondition.reset();
+if (pYieldMutex->tryToAcquire())
+break;
+// wait for SalYieldMutex::release() to set the condition
+osl::Condition::Result res = rCondition.wait();
+assert(osl::Condition::Result::result_ok == res);
+}
+while ( 1 );
+--nCount;
 }
 }
 else
-{
 // If this is not the main thread, call acquire directly.
-pInst->mpSalYieldMutex->acquire();
-}
+ImplSalAcquireYieldMutex( nCount );
 }
 
 bool ImplSalYieldMutexTryToAcquire()
@@ -597,17 +602,8 @@ bool WinSalInstance::DoYield(bool bWait, bool 
bHandleAllCurrentEvents, sal_uLong
 bool bDidWork = false;
 // NOTE: if nReleased != 0 this will be called without SolarMutex
 //   so don't do anything dangerous before releasing it here
-SalYieldMutex*  pYieldMutex = mpSalYieldMutex;
-DWORD   nCurThreadId = GetCurrentThreadId();
 sal_uLong const nCount = (nReleased != 0)
-? nReleased
-: pYieldMutex->GetAcquireCount(nCurThreadId);
-sal_uLong   n = (nReleased != 0) ? 0 : nCount;
-while ( n )
-{
-pYieldMutex->release();
-n--;
-}
+ ? nReleased : ImplSalReleaseYieldMutex();
 if ( !IsMainThread() )
 {
 // #97739# A SendMessage call blocks until the called thread (here: 
the main thread)
@@ -621,31 +617,20 @@ bool WinSalInstance::DoYield(bool bWait, bool 
bHandleAllCurrentEvents, sal_uLong
 
 // #i18883# only sleep if potential deadlock scenario, ie, when a 
dialog is open
 if( ImplGetSVData()->maAppData.mnModalMode )
-Sleep(1);
+SwitchToThread();
 else
-SendMessageW( mhComWnd, SAL_MSG_THREADYIELD, (WPARAM)bWait, 
(LPARAM)bHandleAllCurrentEvents );
+bDidWork = SendMessageW( mhComWnd, SAL_MSG_THREADYIELD, 
(WPARAM)bWait, (LPARAM)bHandleAllCurrentEvents );
 
-n = nCount;
-while ( n )
-{
-pYieldMutex->acquire();
-n--;
-}
+ImplSalAcquireYieldMutex( nCount );
 }
 else
 {
 if (nReleased == 0) // tdf#99383 ReAcquireSolarMutex shouldn't Yield
-{
 bDidWork = ImplSalYield( 

[Libreoffice-bugs] [Bug 104870] crash when opening odp/ppt/ pps file from mail + ask slideshow (if not pps) then select Slide Sorter

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104870

Xisco Faulí  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #25 from Xisco Faulí  ---
(In reply to Julien Nabet from comment #24)
> Following Xisco's comment, let's put this one to NEEDINFO.

I don't think setting the status to NEEDINFO is correct here. This status is
only used when asking for further information to the reporter in order to get
the bug confirmed and this bug was already confirmed. Changing it back to NEW

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


[Libreoffice-bugs] [Bug 109036] LibreOffice - spreadsheet / numbertext-0.9.5.oxt not working

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109036

--- Comment #3 from Cor Nouws  ---
(In reply to andreas.sturmlechner from comment #2)

> 5.2.7.2 was released on 2017-05-09.

Oh, I really have to apologize here..
Just too much looking at fresh releases, that 5.2.x looks as ages ago to me.
Sorry for the confusion.
OTOH, the conclusion remains the same.

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


[Libreoffice-bugs] [Bug 104870] crash when opening odp/ppt/ pps file from mail + ask slideshow (if not pps) then select Slide Sorter

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104870

Xisco Faulí  changed:

   What|Removed |Added

Crash report or||["sfx2::sidebar::Panel::Get
crash signature||TitleBar()"]

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


[Libreoffice-bugs] [Bug 96505] Get rid of cargo cult "long" integer literals

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96505

Ivan Safonov  changed:

   What|Removed |Added

 CC||insafo...@gmail.com

--- Comment #46 from Ivan Safonov  ---
Created attachment 134576
  --> https://bugs.documentfoundation.org/attachment.cgi?id=134576=edit
Remove "long" literals from cui/source/tabpages directory

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


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

2017-07-10 Thread Mohammed Abdul Azeem
 include/xmloff/xmltoken.hxx|5 +
 sc/source/filter/xml/XMLCalculationSettingsContext.cxx |   12 ++--
 sc/source/filter/xml/XMLConsolidationContext.cxx   |2 +-
 sc/source/filter/xml/datastreamimport.cxx  |4 ++--
 sc/source/filter/xml/xmlbodyi.cxx  |2 +-
 sc/source/filter/xml/xmlcelli.cxx  |4 ++--
 sc/source/filter/xml/xmldrani.cxx  |   14 +++---
 sc/source/filter/xml/xmlexternaltabi.cxx   |2 +-
 sc/source/filter/xml/xmlrowi.cxx   |2 +-
 sc/source/filter/xml/xmltabi.cxx   |4 ++--
 xmloff/source/core/xmltoken.cxx|   11 +++
 11 files changed, 39 insertions(+), 23 deletions(-)

New commits:
commit 5364990831a7d5773ddbc2f35842c7b3a8d5534a
Author: Mohammed Abdul Azeem 
Date:   Sun Jul 9 22:37:00 2017 +0530

Adding an overloaded IsXMLToken method:

Passing FastAttributeIter to the method makes the
code much cleaner and easy to read.

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

diff --git a/include/xmloff/xmltoken.hxx b/include/xmloff/xmltoken.hxx
index d746ae78c5d0..976ffeea583f 100644
--- a/include/xmloff/xmltoken.hxx
+++ b/include/xmloff/xmltoken.hxx
@@ -24,6 +24,7 @@
 #include 
 #include 
 #include 
+#include 
 
 /**
  * Handling of tokens in XML:
@@ -3302,6 +3303,10 @@ namespace xmloff { namespace token {
 XMLOFF_DLLPUBLIC bool IsXMLToken(
 const char* pCString,
 enum XMLTokenEnum eToken );
+
+XMLOFF_DLLPUBLIC bool IsXMLToken(
+const sax_fastparser::FastAttributeList::FastAttributeIter& aIter,
+enum XMLTokenEnum eToken );
 } }
 
 #endif
diff --git a/sc/source/filter/xml/XMLCalculationSettingsContext.cxx 
b/sc/source/filter/xml/XMLCalculationSettingsContext.cxx
index f39ccebe5eb6..e885d737de33 100644
--- a/sc/source/filter/xml/XMLCalculationSettingsContext.cxx
+++ b/sc/source/filter/xml/XMLCalculationSettingsContext.cxx
@@ -58,19 +58,19 @@ 
ScXMLCalculationSettingsContext::ScXMLCalculationSettingsContext( ScXMLImport& r
 switch( aIter.getToken() )
 {
 case XML_ELEMENT( TABLE, XML_CASE_SENSITIVE ):
-if( IsXMLToken( aIter.toCString(), XML_FALSE ) )
+if( IsXMLToken( aIter, XML_FALSE ) )
 bIgnoreCase = true;
 break;
 case XML_ELEMENT( TABLE, XML_PRECISION_AS_SHOWN ):
-if( IsXMLToken( aIter.toCString(), XML_TRUE ) )
+if( IsXMLToken( aIter, XML_TRUE ) )
 bCalcAsShown = true;
 break;
 case XML_ELEMENT( TABLE, 
XML_SEARCH_CRITERIA_MUST_APPLY_TO_WHOLE_CELL ):
-if( IsXMLToken( aIter.toCString(), XML_FALSE ) )
+if( IsXMLToken( aIter, XML_FALSE ) )
 bMatchWholeCell = false;
 break;
 case XML_ELEMENT( TABLE, XML_AUTOMATIC_FIND_LABELS ):
-if( IsXMLToken( aIter.toCString(), XML_FALSE ) )
+if( IsXMLToken( aIter, XML_FALSE ) )
 bLookUpLabels = false;
 break;
 case XML_ELEMENT( TABLE, XML_NULL_YEAR ):
@@ -80,11 +80,11 @@ 
ScXMLCalculationSettingsContext::ScXMLCalculationSettingsContext( ScXMLImport& r
 break;
 case XML_ELEMENT( TABLE, XML_USE_REGULAR_EXPRESSIONS ):
 // Overwrite only the default (regex true) value, not wildcard.
-if( eSearchType == utl::SearchParam::SearchType::Regexp && 
IsXMLToken( aIter.toCString(), XML_FALSE ) )
+if( eSearchType == utl::SearchParam::SearchType::Regexp && 
IsXMLToken( aIter, XML_FALSE ) )
 eSearchType = utl::SearchParam::SearchType::Normal;
 break;
 case XML_ELEMENT( TABLE, XML_USE_WILDCARDS ):
-if( IsXMLToken( aIter.toCString(), XML_TRUE ) )
+if( IsXMLToken( aIter, XML_TRUE ) )
 eSearchType = utl::SearchParam::SearchType::Wildcard;
 break;
 }
diff --git a/sc/source/filter/xml/XMLConsolidationContext.cxx 
b/sc/source/filter/xml/XMLConsolidationContext.cxx
index 8e27b573de7b..092f561cec99 100644
--- a/sc/source/filter/xml/XMLConsolidationContext.cxx
+++ b/sc/source/filter/xml/XMLConsolidationContext.cxx
@@ -65,7 +65,7 @@ ScXMLConsolidationContext::ScXMLConsolidationContext(
 sUseLabel = aIter.toString();
 break;
 case XML_ELEMENT( TABLE, XML_LINK_TO_SOURCE_DATA ):
-bLinkToSource = IsXMLToken( aIter.toCString(), XML_TRUE );
+bLinkToSource = IsXMLToken( aIter, 

[Libreoffice-bugs] [Bug 103926] Crash in: vcl::Window::ImplGrabFocus(GetFocusFlags)

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103926

Xisco Faulí  changed:

   What|Removed |Added

 CC||delite...@msn.com

--- Comment #35 from Xisco Faulí  ---
*** Bug 108229 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 108229] Crash in: vcl::Window::ImplGrabFocus(GetFocusFlags)

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108229

Xisco Faulí  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #2 from Xisco Faulí  ---


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

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


[Libreoffice-bugs] [Bug 108184] crashreport.libreoffice.org/stats/crash_details/ 0f38383c-c933-4edc-9ada-cc6d6f103a85

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108184

Xisco Faulí  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
Crash report or||["vcl::Window::ImplGrabFocu
crash signature||s(GetFocusFlags)"]
 Resolution|--- |DUPLICATE

--- Comment #3 from Xisco Faulí  ---


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

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


[Libreoffice-bugs] [Bug 103926] Crash in: vcl::Window::ImplGrabFocus(GetFocusFlags)

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103926

Xisco Faulí  changed:

   What|Removed |Added

 CC||bur...@gmail.com

--- Comment #36 from Xisco Faulí  ---
*** Bug 108184 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 107799] Total unresponsive saving dialog

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107799

Telesto  changed:

   What|Removed |Added

Crash report or||['MSONSEXT.DLL']
crash signature||

--- Comment #4 from Telesto  ---
I found the culprit. A broken msonsext.dll. 
http://crashreport.libreoffice.org/stats/crash_details/92a56236-62d6-474b-87fe-9988c885c733

http://solvedproblems.hydex11.net/old/22_Random_Windows_7_crashes_on_Save_As_dialog.htm

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


[Libreoffice-bugs] [Bug 108972] EDITING: Hang after cutting content

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108972

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisected, bisected, perf,
   ||regression
 Status|UNCONFIRMED |NEW
 CC||noelgran...@gmail.com,
   ||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

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

author  Noel Grandin  2017-06-27 13:06:22
(GMT)
committer   Noel Grandin  2017-06-28
06:50:35 (GMT)
commit  1eee0abd459a508a6dcf9e71cbf2c1be3725faa7 (patch)
tree9d9775249923ea166db8c997e506aebff4ff4ae2
parent  7b850c15b15be10ed3b52822f63b02d8787bcb2f (diff)
use std::vector in BigPtrArray

Bisected with bibisect-linux64-6.0

Adding Cc: to Noel Grandin

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


[Libreoffice-bugs] [Bug 108982] Crash in: mergedlo.dll

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108982

--- Comment #2 from Mike Kaganski  ---
Unfortunately I cannot test on Linux - I only have Linux VM, and don't work
there much. That's not 100% reproducible - I suppose, it happens in 5% of
attempts. Resetting profile doesn't help.

It doesn't make problems to me; I post it here for information (hopefully the
crashdump could help someone fixing in general).

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


[Libreoffice-bugs] [Bug 93328] Editing circular reference causes #VALUE! error

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93328

--- Comment #14 from Xavier Van Wijmeersch  ---
i think the value error is due mixing number and currency format
i tested with a help cell first as normal number(value error) and than set as
currency, the value error was gone

Version: 6.0.0.0.alpha0+
Build ID: 18909d45977a897cbd921d76d1dde4bf3a466271
CPU threads: 8; OS: Linux 4.9; UI render: default; VCL: kde4; 
Locale: nl-BE (en_US.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 109006] The "save document" function stalls and takes a long time to complete

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109006

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #2 from Xisco Faulí  ---
Hello,
What was the saving time in the previous version of LibreOffice?

OTOH, please attach a sample document, as this makes it easier for us to verify
the bug. 
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested document is provided.
(Please note that the attachment will be public, remove any sensitive
information before attaching it. 
See
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
for help on how to do so.)

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


[Libreoffice-bugs] [Bug 108922] PIVOT CHARTS: crashes while manipulating pivot charts

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108922

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #4 from Xisco Faulí  ---
Dear Reporter,
Could you please attach the document used at the time LibreOffice crashed ?

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


[Libreoffice-bugs] [Bug 108970] DOCX IMPORT: page number is absent in specific document' s footer

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108970

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||xiscofa...@libreoffice.org
Version|unspecified |4.4 all versions
 Ever confirmed|0   |1

--- Comment #2 from Xisco Faulí  ---
Confirmed in

Version: 6.0.0.0.alpha0+
Build ID: 7931ef2abbcef22de5c26738e4dd8d1d8ca5
CPU threads: 4; OS: Linux 4.8; UI render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group

and

Version: 4.4.0.0.alpha0+
Build ID: f340f0454627939f1830826fb5cc53a90e6c62a4

in previous version, the footer is not even displayed on the first page.

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


[Libreoffice-bugs] [Bug 108953] FILESAVE - SAVE AS cause Calc to hang for one particular file ,

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108953

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #4 from Xisco Faulí  ---
Please attach a sample document, as this makes it easier for us to verify the
bug. 
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested document is provided.
(Please note that the attachment will be public, remove any sensitive
information before attaching it. 
See
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
for help on how to do so.)

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


[Libreoffice-bugs] [Bug 108982] Crash in: mergedlo.dll

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108982

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #1 from Xisco Faulí  ---
Hi Mike,
Can you reproduce it on Linux as well? Does resetting the profile help to fix
the issue?

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


[Libreoffice-bugs] [Bug 108979] Crash in: mergedlo.dll while closing writer with document

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108979

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #3 from Xisco Faulí  ---
Closing as NEEDINFO until further information is provided

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


[Libreoffice-bugs] [Bug 108980] Win10 1607 after running Edge, Libre Office startup won' t open a window

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108980

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
Thank you for reporting the bug. To be certain the reported issue is not
related to corruption in the user profile, could you please reset your
Libreoffice profile ( https://wiki.documentfoundation.org/UserProfile ) and
re-test?

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the issue is still present

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


[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-2-1' - loleaflet/dist loleaflet/src wsd/Admin.cpp wsd/Admin.hpp wsd/AdminModel.cpp wsd/AdminModel.hpp wsd/ClientSession.hpp

2017-07-10 Thread Aditya Dewan
 loleaflet/dist/admin/bootstrap/dashboard.css |   12 ++
 loleaflet/src/admin/AdminSocketOverview.js   |   53 ++-
 wsd/Admin.cpp|6 +--
 wsd/Admin.hpp|2 -
 wsd/AdminModel.cpp   |   46 +--
 wsd/AdminModel.hpp   |   10 +++--
 wsd/ClientSession.hpp|2 -
 wsd/DocumentBroker.cpp   |2 -
 8 files changed, 97 insertions(+), 36 deletions(-)

New commits:
commit da9baa4997e3414b4d01e58628e047ebf7c5236b
Author: Aditya Dewan 
Date:   Fri Apr 7 19:49:04 2017 +0530

tdf#106449 admin:adding user list for each document

Change-Id: Ia5c382f469a80464d0435e1e2e4de3daaba8a690
Reviewed-on: https://gerrit.libreoffice.org/36275
Reviewed-by: pranavk 
Tested-by: pranavk 
(cherry picked from commit 41ed318de8c1ebb5c2d707b6fb12a9c9b5440407)
Reviewed-on: https://gerrit.libreoffice.org/39700
Reviewed-by: Michael Meeks 
Tested-by: Michael Meeks 
(cherry picked from commit df90eecdd194f4d5c59ced4193cfb876025016af)
Reviewed-on: https://gerrit.libreoffice.org/39764

diff --git a/loleaflet/dist/admin/bootstrap/dashboard.css 
b/loleaflet/dist/admin/bootstrap/dashboard.css
index 0535a2fd..60ed98d2 100644
--- a/loleaflet/dist/admin/bootstrap/dashboard.css
+++ b/loleaflet/dist/admin/bootstrap/dashboard.css
@@ -113,3 +113,15 @@ body {
   position: absolute;
   display: none;
 }
+
+.userContainer{
+  display: none;
+  position: absolute;
+  border: 1px solid black;
+  padding: 5px;
+  border-radius: 4px;
+  background-color: #dd;
+}
+tr:hover .userContainer{
+  display: block;
+}
\ No newline at end of file
diff --git a/loleaflet/src/admin/AdminSocketOverview.js 
b/loleaflet/src/admin/AdminSocketOverview.js
index 4f6e0812..96c29a0b 100644
--- a/loleaflet/src/admin/AdminSocketOverview.js
+++ b/loleaflet/src/admin/AdminSocketOverview.js
@@ -89,21 +89,31 @@ var AdminSocketOverview = AdminSocketBase.extend({
var nViews, nTotalViews;
var docProps, sPid, sName, sViews, sMem, sDocTime;
if (textMsg.startsWith('documents')) {
-   var documents = textMsg.substring('documents'.length);
-   documents = documents.trim().split('\n');
-   for (var i = 0; i < documents.length; i++) {
-   docProps = documents[i].trim().split(' ');
-   sPid = docProps[0];
-   sName = decodeURI(docProps[1]);
-   sViews = docProps[2];
-   sMem = docProps[3];
-   sDocTime = docProps[4];
-   sDocIdle = docProps[5];
+   jsonStart = textMsg.indexOf('{');
+   jsonMsg = JSON.parse(textMsg.substr(jsonStart).trim());
+   docList = jsonMsg['documents'];
+   for (var i = 0; i < docList.length; i++) {
+
+   docProps = docList[i];
+   sPid = docProps['pid'];
+   sName = decodeURI(docProps['fileName']);
+   sViews = docProps['activeViews'];
+   sMem = docProps['memory'];
+   sDocTime = docProps['elapsedTime'];
+   sDocIdle = docProps['idleTime'];
+   userListJson = docProps['views']
 
$doc = $('#doc' + sPid);
$rowContainer = 
$(document.createElement('tr')).attr('id', 'doc' + sPid);
-
$pid = 
$(document.createElement('td')).text(sPid);
+   $userContainer = 
$(document.createElement('div')).attr('id', 'ucontainer' + sPid)
+   
  .addClass('userContainer');
+   for (var j = 0; j < userListJson.length; j++) {
+   $user = 
$(document.createElement('div')).text(userListJson[j]['userName'])
+   
.attr('id', 'user' + userListJson[j]['sessionid']);
+   $userContainer.append($user);
+   }
+   $pid.append($userContainer);
$rowContainer.append($pid);
 
$name = 
$(document.createElement('td')).text(sName);
@@ -142,14 +152,18 @@ var AdminSocketOverview = AdminSocketBase.extend({

[Libreoffice-bugs] [Bug 109036] LibreOffice - spreadsheet / numbertext-0.9.5.oxt not working

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109036

--- Comment #2 from andreas.sturmlech...@gmail.com ---
(In reply to Cor Nouws from comment #1)
> You mention an 'upgrade' to 5.2.7.2 - that version is some years old.

5.2.7.2 was released on 2017-05-09.

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


[Libreoffice-bugs] [Bug 57464] RTF Copying across paragraphs creates broken ANSI content

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57464

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|NEW |UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #19 from Yousuf Philips (jay)  ---
(In reply to Urmas from comment #18)
> The necessary steps to reproduce it has been given.
> The bug still persists.
> If no one has found the time in the 5 years since it was reported, it is not
> my problem.

If nobody is able to repo it with the steps you provide, provide better steps
and dont set it to NEW unless others can repo 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 84837] Make show/hide comments UNO command work in Calc

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84837

Yousuf Philips (jay)  changed:

   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-bugs] [Bug 103407] [META] Unify behaviour and functions across apps

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103407
Bug 103407 depends on bug 84837, which changed state.

Bug 84837 Summary: Make show/hide comments UNO command work in Calc
https://bugs.documentfoundation.org/show_bug.cgi?id=84837

   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-bugs] [Bug 101216] [META] Calc comment bugs and enhancements

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101216
Bug 101216 depends on bug 84837, which changed state.

Bug 84837 Summary: Make show/hide comments UNO command work in Calc
https://bugs.documentfoundation.org/show_bug.cgi?id=84837

   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-bugs] [Bug 86899] [META] Requests for the addition of UNO commands

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86899
Bug 86899 depends on bug 84837, which changed state.

Bug 84837 Summary: Make show/hide comments UNO command work in Calc
https://bugs.documentfoundation.org/show_bug.cgi?id=84837

   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-bugs] [Bug 109051] text invisible on screen

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109051

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||ba...@caesar.elte.hu
 Resolution|--- |DUPLICATE

--- Comment #1 from Aron Budea  ---
Let's assume it's the same issue, then.

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

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


[Libreoffice-bugs] [Bug 107166] Text is invisible, both in UI and in editor on update to 5.3.2, older AMD and Intel GPUs

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107166

Aron Budea  changed:

   What|Removed |Added

 CC||dcephr...@gmail.com

--- Comment #49 from Aron Budea  ---
*** Bug 109051 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 108286] Crash while reloading the file

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108286

Xisco Faulí  changed:

   What|Removed |Added

Version|6.0.0.0.alpha0+ Master  |5.3.3.2 release
 OS|Windows (All)   |All

--- Comment #3 from Xisco Faulí  ---
I was wrong when I said the 'reload' option is disabled on linux.

Reproduced in

Version: 5.3.3.2
Build ID: 1:5.3.3~rc2-0ubuntu0.16.10.1~lo0
CPU Threads: 4; OS Version: Linux 4.8; UI Render: default; VCL: gtk3; Layout
Engine: new; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 108286] Crash while reloading the file

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108286

Xisco Faulí  changed:

   What|Removed |Added

Summary|Crash after reloading the   |Crash while reloading the
   |file|file

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


[Libreoffice-bugs] [Bug 108286] Crash after reloading the file

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108286

Xisco Faulí  changed:

   What|Removed |Added

Summary|Crash in: mergedlo.dll  |Crash after reloading the
   ||file

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


[Libreoffice-commits] dev-tools.git: esc-reporting/qa-tools.py

2017-07-10 Thread Xisco Fauli
 esc-reporting/qa-tools.py |9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

New commits:
commit c429529f9e46ac13599f7adf7f8ac43874bb5949
Author: Xisco Fauli 
Date:   Mon Jul 10 18:26:49 2017 +0200

QA Tools: warm about incorrect crashreport syntax

diff --git a/esc-reporting/qa-tools.py b/esc-reporting/qa-tools.py
index a37cbb5..698070a 100755
--- a/esc-reporting/qa-tools.py
+++ b/esc-reporting/qa-tools.py
@@ -16,9 +16,9 @@ import re
 
 homeDir = '/home/xisco/dev-tools/esc-reporting/'
 
-reportPeriod = '8d'
+reportPeriod = '7d'
 
-newUsersPeriod = '8d'
+newUsersPeriod = '7d'
 
 targets_list = ['5.4.0']
 
@@ -527,6 +527,11 @@ def analyze_bugzilla(statList, bugzillaData, cfg):
 total += 1
 print(str(total) + " - VERSION CHANGED TO A NEWER ONE: 
https://bugs.documentfoundation.org/show_bug.cgi?id=; + str(row['id']))
 
+if row['cf_crashreport'] and not 
row['cf_crashreport'].startswith('["'):
+total += 1
+print(str(total) + " - INCORRECT CRASHREPORT SYNTAX: 
https://bugs.documentfoundation.org/show_bug.cgi?id=; + str(row['id']))
+
+
 for k, v in statList['people'].items():
 if not statList['people'][k]['name']:
 statList['people'][k]['name'] = 
statList['people'][k]['email'].split('@')[0]
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 83066] [META] CJK issues

2017-07-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83066

Mark Hung  changed:

   What|Removed |Added

 Depends on||71329


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=71329
[Bug 71329] No linebreak between Latin text and Ideographic punctuation
-- 
You are receiving this mail because:
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   >