[Libreoffice-bugs] [Bug 115344] FORMATTING - Format -> Columns... dialog missing

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

--- Comment #20 from Adolfo Jayme  ---
While I understand the reasoning behind this menu item’s removal and totally
agree with it, honestly I’m glad it’s back, because I always had a hard time
finding the columns feature in a quick manner =)

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


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

2018-04-26 Thread David Tardon
 writerperfect/source/calc/MSWorksCalcImportFilter.cxx |   36 --
 writerperfect/source/writer/MSWorksImportFilter.cxx   |   26 ++---
 2 files changed, 30 insertions(+), 32 deletions(-)

New commits:
commit e0e8f5f60f9912cd2e12818cd1bc2eb6c3e1e75f
Author: David Tardon 
Date:   Thu Apr 26 14:41:09 2018 +0200

replace a series of if/else if/ by a switch

Change-Id: I6319971e1a2a4bffa0466fa37a31beff5a349fd1
Reviewed-on: https://gerrit.libreoffice.org/53535
Tested-by: Jenkins 
Reviewed-by: David Tardon 

diff --git a/writerperfect/source/calc/MSWorksCalcImportFilter.cxx 
b/writerperfect/source/calc/MSWorksCalcImportFilter.cxx
index 0972c97df84e..04dcffcdac48 100644
--- a/writerperfect/source/calc/MSWorksCalcImportFilter.cxx
+++ b/writerperfect/source/calc/MSWorksCalcImportFilter.cxx
@@ -388,29 +388,27 @@ bool 
MSWorksCalcImportFilter::doDetectFormat(librevenge::RVNGInputStream& rInput
 if ((kind == libwps::WPS_SPREADSHEET || kind == libwps::WPS_DATABASE)
 && confidence != libwps::WPS_CONFIDENCE_NONE)
 {
-if (creator == libwps::WPS_MSWORKS)
-{
-rTypeName = "calc_MS_Works_Document";
-return true;
-}
-if (creator == libwps::WPS_LOTUS || creator == libwps::WPS_SYMPHONY)
-{
-rTypeName = "calc_WPS_Lotus_Document";
-return true;
-}
-if (creator == libwps::WPS_QUATTRO_PRO)
-{
-rTypeName = "calc_WPS_QPro_Document";
-return true;
-}
-if (creator == libwps::WPS_RESERVED_2)
+switch (creator)
 {
-rTypeName = "calc_MS_Multiplan";
-return true;
+case libwps::WPS_MSWORKS:
+rTypeName = "calc_MS_Works_Document";
+break;
+case libwps::WPS_LOTUS:
+case libwps::WPS_SYMPHONY:
+rTypeName = "calc_WPS_Lotus_Document";
+break;
+case libwps::WPS_QUATTRO_PRO:
+rTypeName = "calc_WPS_QPro_Document";
+break;
+case libwps::WPS_RESERVED_2:
+rTypeName = "calc_MS_Multiplan";
+break;
+default:
+break;
 }
 }
 
-return false;
+return !rTypeName.isEmpty();
 }
 
 void MSWorksCalcImportFilter::doRegisterHandlers(OdsGenerator&) {}
diff --git a/writerperfect/source/writer/MSWorksImportFilter.cxx 
b/writerperfect/source/writer/MSWorksImportFilter.cxx
index c22474d190bc..4c2c86c5e787 100644
--- a/writerperfect/source/writer/MSWorksImportFilter.cxx
+++ b/writerperfect/source/writer/MSWorksImportFilter.cxx
@@ -98,23 +98,23 @@ bool 
MSWorksImportFilter::doDetectFormat(librevenge::RVNGInputStream& rInput, OU
 
 if ((kind == libwps::WPS_TEXT) && (confidence == 
libwps::WPS_CONFIDENCE_EXCELLENT))
 {
-if (creator == libwps::WPS_MSWORKS)
+switch (creator)
 {
-rTypeName = "writer_MS_Works_Document";
+case libwps::WPS_MSWORKS:
+rTypeName = "writer_MS_Works_Document";
+break;
+case libwps::WPS_RESERVED_0:
+rTypeName = "writer_MS_Write";
+break;
+case libwps::WPS_RESERVED_1:
+rTypeName = "writer_DosWord";
+break;
+default:
+break;
 }
-else if (creator == libwps::WPS_RESERVED_0)
-{
-rTypeName = "writer_MS_Write";
-}
-else
-{
-rTypeName = "writer_DosWord";
-}
-
-return true;
 }
 
-return false;
+return !rTypeName.isEmpty();
 }
 
 void MSWorksImportFilter::doRegisterHandlers(OdtGenerator& rGenerator)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: setting compile_commands.json on Mac for building LO in VS Code

2018-04-26 Thread Tor Lillqvist
> What are the correct values for "command" and "file" of
> compile_commands.json?
>

I have no idea, but if all you want is for VS Code to run the same commands
that you would otherwise enter yourself, you need to run ./autogen.sh
first, at least once, before you can run make.

--tml
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 108894] Update Office version in file format confirmation dialog to not refer to Office 2013

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

--- Comment #24 from Adolfo Jayme  ---
This file has never included it; see the patch where it was first introduced:
https://cgit.freedesktop.org/libreoffice/core/commit/filter/source/config/fragments/types/MS_PowerPoint_2007_XML_AutoPlay.xcu?id=ddb579355d9be06bf15e50ac0d20e544eaa8e953

If it’s an error, please file a separate report.

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


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

2018-04-26 Thread Andrea Gelmini
 dtrans/source/win32/dtobj/XTDataObject.hxx |2 +-
 dtrans/source/win32/workbench/XTDo.hxx |2 +-
 sc/source/filter/inc/xehelper.hxx  |2 +-
 sc/source/filter/inc/xihelper.hxx  |2 +-
 sc/source/filter/lotus/lotform.cxx |4 ++--
 xmloff/dtd/office.mod  |2 +-
 xmloff/dtd/text.mod|2 +-
 7 files changed, 8 insertions(+), 8 deletions(-)

New commits:
commit b00d6854f88bb9f071095c89bf2c6d4ded6b4ec6
Author: Andrea Gelmini 
Date:   Wed Apr 25 09:08:06 2018 +0200

Fix typos

Change-Id: I32c0966f8489d58f02b32bf205aedbb8303a217d
Reviewed-on: https://gerrit.libreoffice.org/53432
Tested-by: Jenkins 
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/dtrans/source/win32/dtobj/XTDataObject.hxx 
b/dtrans/source/win32/dtobj/XTDataObject.hxx
index 3a6a0d49c5c3..d9979e7cfebb 100644
--- a/dtrans/source/win32/dtobj/XTDataObject.hxx
+++ b/dtrans/source/win32/dtobj/XTDataObject.hxx
@@ -44,7 +44,7 @@
 - This class inherits from IDataObject an so can be placed on the
   OleClipboard. The class wraps a transferable object which is the
   original DataSource
-- DataFlavors offerd by this transferable will be translated into
+- DataFlavors offered by this transferable will be translated into
   appropriate clipboard formats
 - if the transferable contains text data always text and unicodetext
   will be offered or vice versa
diff --git a/dtrans/source/win32/workbench/XTDo.hxx 
b/dtrans/source/win32/workbench/XTDo.hxx
index a6c9c763c6db..5b35699038bc 100644
--- a/dtrans/source/win32/workbench/XTDo.hxx
+++ b/dtrans/source/win32/workbench/XTDo.hxx
@@ -44,7 +44,7 @@ class EnumFormatEtc;
 - This class inherits from IDataObject an so can be placed on the
   OleClipboard. The class wraps a transferable object which is the
   original DataSource
-- DataFlavors offerd by this transferable will be translated into
+- DataFlavors offered by this transferable will be translated into
   appropriate clipboard formats
 - if the transferable contains text data always text and unicodetext
   will be offered or vice versa
diff --git a/sc/source/filter/inc/xehelper.hxx 
b/sc/source/filter/inc/xehelper.hxx
index 22ae75852343..c90c6fa18c76 100644
--- a/sc/source/filter/inc/xehelper.hxx
+++ b/sc/source/filter/inc/xehelper.hxx
@@ -331,7 +331,7 @@ class EditEngine;
 /** Converts edit engine text objects to an Excel header/footer string.
 @descr  Header/footer content is divided into three parts: Left, center and
 right portion. All formatting information will be encoded in the Excel 
string
-using special character seuences. A control sequence starts with the 
ampersand
+using special character sequences. A control sequence starts with the 
ampersand
 character.
 
 Supported control sequences:
diff --git a/sc/source/filter/inc/xihelper.hxx 
b/sc/source/filter/inc/xihelper.hxx
index a4e8c2527103..8f64e2fd606c 100644
--- a/sc/source/filter/inc/xihelper.hxx
+++ b/sc/source/filter/inc/xihelper.hxx
@@ -136,7 +136,7 @@ struct XclFontData;
 /** Converts an Excel header/footer string into three edit engine text objects.
 @descr  Header/footer content is divided into three parts: Left, center and
 right portion. All formatting information is encoded in the Excel string
-using special character seuences. A control sequence starts with the 
ampersand
+using special character sequences. A control sequence starts with the 
ampersand
 character.
 
 Supported control sequences:
diff --git a/sc/source/filter/lotus/lotform.cxx 
b/sc/source/filter/lotus/lotform.cxx
index a80cc13c4693..4000b3c1a4ea 100644
--- a/sc/source/filter/lotus/lotform.cxx
+++ b/sc/source/filter/lotus/lotform.cxx
@@ -287,7 +287,7 @@ void LotusToSc::LotusRelToScRel( sal_uInt16 nCol, 
sal_uInt16 nRow, ScSingleRefDa
 nRow &= 0x1FFF;
 break;
 default:
-SAL_WARN( "sc.filter", "*LotusToSc::LotusRelToScRel(): 
unhandeled case?" );
+SAL_WARN( "sc.filter", "*LotusToSc::LotusRelToScRel(): 
unhandled case?" );
 }
 }
 else
@@ -307,7 +307,7 @@ void LotusToSc::LotusRelToScRel( sal_uInt16 nCol, 
sal_uInt16 nRow, ScSingleRefDa
 nRow &= 0x3FFF;
 break;
 default:
-SAL_WARN( "sc.filter", "*LotusToSc::LotusRelToScRel(): 
unhandeled case?" );
+SAL_WARN( "sc.filter", "*LotusToSc::LotusRelToScRel(): 
unhandled case?" );
 }
 }
 
diff --git a/xmloff/dtd/office.mod b/xmloff/dtd/office.mod
index a0ec56c50f34..e3f332e29e52 100644
--- a/xmloff/dtd/office.mod
+++ b/xmloff/dtd/office.mod
@@ -182,7 +182,7 @@
text:bibliography-configuration and
text:linenumbering-configuration
may appear only once!
-   Unfortunatetly, 

[Libreoffice-bugs] [Bug 114272] [macOS] Some Asian characters are garbled with western fonts.

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

Khaled Hosny  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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


[Libreoffice-bugs] [Bug 108894] Update Office version in file format confirmation dialog to not refer to Office 2013

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

--- Comment #22 from Gerry  ---
Thanks all. This sounds like a good solution.

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


[Libreoffice-bugs] [Bug 108894] Update Office version in file format confirmation dialog to not refer to Office 2013

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

--- Comment #23 from Thomas Lendo  ---
Is the term Autoplay missing?

--- a/filter/source/config/fragments/types/MS_PowerPoint_2007_XML_AutoPlay.xcu
+++ b/filter/source/config/fragments/types/MS_PowerPoint_2007_XML_AutoPlay.xcu
@@ -22,6 +22,6 @@
 application/vnd.openxmlformats-officedocument.presentationml.slideshow
 true
 Impress MS PowerPoint 2007 XML
AutoPlay
-Microsoft PowerPoint
OOXML
+PowerPoint
2007–2019___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 114272] [macOS] Some Asian characters are garbled with western fonts.

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

Khaled Hosny  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #16 from Khaled Hosny  ---
Why is this marked as a blocker for bug 103729, Has any one bisected 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 107585] [META] Microsoft Office binary, text and xml file formats

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

Bug 108894 Summary: Update Office version in file format confirmation dialog to 
not refer to Office 2013
https://bugs.documentfoundation.org/show_bug.cgi?id=108894

   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 108894] Update Office version in file format confirmation dialog to not refer to Office 2013

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

Adolfo Jayme  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 108894] Update Office version in file format confirmation dialog to not refer to Office 2013

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

--- Comment #21 from Commit Notification 
 ---
Adolfo Jayme Barrientos committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=3fae9479d7c95d1ef2b4b406c7a856cbe9c402ac

tdf#108894 Implement suggested filter names

It will be available in 6.1.0.

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

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

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


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

2018-04-26 Thread Adolfo Jayme Barrientos
 filter/source/config/fragments/filters/MS_Word_2007_XML.xcu
|2 +-
 filter/source/config/fragments/filters/MS_Word_2007_XML_Template.xcu   
|2 +-
 filter/source/config/fragments/filters/MS_Word_2007_XML_VBA.xcu
|2 +-
 filter/source/config/fragments/filters/calc_MS_Excel_2007_XML.xcu  
|2 +-
 filter/source/config/fragments/filters/calc_MS_Excel_2007_XML_Template.xcu 
|2 +-
 filter/source/config/fragments/filters/impress_MS_PowerPoint_2007_XML.xcu  
|2 +-
 
filter/source/config/fragments/filters/impress_MS_PowerPoint_2007_XML_AutoPlay.xcu
 |2 +-
 
filter/source/config/fragments/filters/impress_MS_PowerPoint_2007_XML_Template.xcu
 |2 +-
 filter/source/config/fragments/filters/impress_MS_PowerPoint_2007_XML_VBA.xcu  
|2 +-
 filter/source/config/fragments/types/MS_Excel_2007_XML.xcu 
|2 +-
 filter/source/config/fragments/types/MS_Excel_2007_XML_Template.xcu
|2 +-
 filter/source/config/fragments/types/MS_PowerPoint_2007_XML.xcu
|2 +-
 filter/source/config/fragments/types/MS_PowerPoint_2007_XML_AutoPlay.xcu   
|2 +-
 filter/source/config/fragments/types/MS_PowerPoint_2007_XML_Template.xcu   
|2 +-
 filter/source/config/fragments/types/MS_PowerPoint_2007_XML_VBA.xcu
|2 +-
 filter/source/config/fragments/types/writer_MS_Word_2007_XML.xcu   
|2 +-
 filter/source/config/fragments/types/writer_MS_Word_2007_XML_Template.xcu  
|2 +-
 filter/source/config/fragments/types/writer_MS_Word_2007_XML_VBA.xcu   
|2 +-
 18 files changed, 18 insertions(+), 18 deletions(-)

New commits:
commit 3fae9479d7c95d1ef2b4b406c7a856cbe9c402ac
Author: Adolfo Jayme Barrientos 
Date:   Thu Apr 26 23:27:36 2018 -0500

tdf#108894 Implement suggested filter names

Change-Id: Ib2e99c0830d9e6d7339f502719d3fff6d7a13a04

diff --git a/filter/source/config/fragments/filters/MS_Word_2007_XML.xcu 
b/filter/source/config/fragments/filters/MS_Word_2007_XML.xcu
index 972749053e67..a9807b84e737 100644
--- a/filter/source/config/fragments/filters/MS_Word_2007_XML.xcu
+++ b/filter/source/config/fragments/filters/MS_Word_2007_XML.xcu
@@ -21,7 +21,7 @@
 com.sun.star.comp.Writer.WriterFilter
 OXML
 
-Microsoft Word OOXML
+Word 2007–2019
 
 0
 writer_MS_Word_2007
diff --git 
a/filter/source/config/fragments/filters/MS_Word_2007_XML_Template.xcu 
b/filter/source/config/fragments/filters/MS_Word_2007_XML_Template.xcu
index 238a786553de..2a116be19d98 100644
--- a/filter/source/config/fragments/filters/MS_Word_2007_XML_Template.xcu
+++ b/filter/source/config/fragments/filters/MS_Word_2007_XML_Template.xcu
@@ -20,7 +20,7 @@
 
 com.sun.star.comp.Writer.WriterFilter
 OXML
-Microsoft Word OOXML 
Template
+Word 2007–2019 
Template
 0
 writer_MS_Word_2007_Template
 
diff --git a/filter/source/config/fragments/filters/MS_Word_2007_XML_VBA.xcu 
b/filter/source/config/fragments/filters/MS_Word_2007_XML_VBA.xcu
index 340d51db2543..632831fe3ffe 100644
--- a/filter/source/config/fragments/filters/MS_Word_2007_XML_VBA.xcu
+++ b/filter/source/config/fragments/filters/MS_Word_2007_XML_VBA.xcu
@@ -10,7 +10,7 @@
 
 com.sun.star.comp.Writer.WriterFilter
 OXML
-Microsoft Word OOXML 
VBA
+Word 2007–2019 
VBA
 0
 writer_MS_Word_2007_VBA
 
diff --git a/filter/source/config/fragments/filters/calc_MS_Excel_2007_XML.xcu 
b/filter/source/config/fragments/filters/calc_MS_Excel_2007_XML.xcu
index c39f53c7e832..c5f680ecf53f 100644
--- a/filter/source/config/fragments/filters/calc_MS_Excel_2007_XML.xcu
+++ b/filter/source/config/fragments/filters/calc_MS_Excel_2007_XML.xcu
@@ -25,6 +25,6 @@
 
 com.sun.star.sheet.SpreadsheetDocument
 
-Microsoft Excel OOXML
+Excel 2007–2019
 
 
diff --git 
a/filter/source/config/fragments/filters/calc_MS_Excel_2007_XML_Template.xcu 
b/filter/source/config/fragments/filters/calc_MS_Excel_2007_XML_Template.xcu
index 9ab822907d68..f42c60d71630 100644
--- a/filter/source/config/fragments/filters/calc_MS_Excel_2007_XML_Template.xcu
+++ b/filter/source/config/fragments/filters/calc_MS_Excel_2007_XML_Template.xcu
@@ -25,6 +25,6 @@
 
 com.sun.star.sheet.SpreadsheetDocument
 
-Microsoft Excel OOXML Template
+Excel 2007–2019 Template
 
 
diff --git 
a/filter/source/config/fragments/filters/impress_MS_PowerPoint_2007_XML.xcu 
b/filter/source/config/fragments/filters/impress_MS_PowerPoint_2007_XML.xcu
index 77412ceca550..ba23d95ed3c0 100644
--- a/filter/source/config/fragments/filters/impress_MS_PowerPoint_2007_XML.xcu
+++ 

[Libreoffice-bugs] [Bug 58440] EDITING: moving columns/rows with <alt+drag> overwrites instead of ousting

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

--- Comment #38 from LC  ---
Using a Mac - alt/option copies, but doesn't move the rows/columns.

Any idea when this will be fixed or is this not perceived as a problem?

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


[Libreoffice-bugs] [Bug 108226] [META] PPTX (OOXML) bug tracker

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

Bug 105798 Summary: FILEOPEN: PPTX - EMF image with contained text - text 
spacing wrong [Regression]
https://bugs.documentfoundation.org/show_bug.cgi?id=105798

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 103859] [META] EMF/WMF (Enhanced/Windows Metafile) bugs and enhancements

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

Bug 105798 Summary: FILEOPEN: PPTX - EMF image with contained text - text 
spacing wrong [Regression]
https://bugs.documentfoundation.org/show_bug.cgi?id=105798

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 105798] FILEOPEN: PPTX - EMF image with contained text - text spacing wrong [Regression]

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

Khaled Hosny  changed:

   What|Removed |Added

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

--- Comment #9 from Khaled Hosny  ---


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

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


[Libreoffice-bugs] [Bug 108582] NVDA Screen Review mode dropping letters and running together words when sounding , Object Review mode correctly sounds words

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

--- Comment #24 from V Stuart Foote  ---
(In reply to zahra from comment #23)
> (In reply to V Stuart Foote from comment #22)
> > Sorry Zahra, you were correct with your observation of dropped characters
> > and run together strings. ...

> 
> i am not familiar with technical expressions, but
> is the issue realy because of openGL?

Actually no--OpenGL is not involved because the DirectWrite text rendering
paths it uses do not seem to pass text strings to NVDA's IAccessible module for
Screen review. Instead it simply does not respond--that problems is with NVDA
screen review.  

That contrasts to Object review mode using OpenGL rendering--there the
LibreOffice accessible events provided are exposed and correctly sounded by
IAccessible module. Anything not sounding is because no event is
provided--there are a lot and those are bugs.

The third mode of NVDA support (not affected by Default or OpenGL rendering) is
using Windows graphics API calls on mouse over "screen scrapping" in a
different NVDA module that is near flawless in the LibreOffice dialogs that
Screen review garbles. But it requires mouse driven use, so a bit of a
challenge for accessibility, though it fills in holes in Object navigation.

Disabling OpenGL rendering to use "Default" GDI rendering (or as enabled by
default on older Windows builds with unsupported graphics) does expose
LibreOffice GUI elements to NVDA IAccessible module Screen review. 

And of course then the Object review of LibreOffice Accessible events is pretty
good--this is your default situation when installing on Windows XP. You are
limited to "Default" mode.

> my graphic card is very old and i believe that it does not support openGL.

Correct, there is no functional OpenGL rendering in LibreOffice with Windows XP
drivers.

> with my favorite version of libreoffice, reading dialogs works as expected
> without any problem in screen review.
> 
> Version: 5.3.4.2
> Build ID: f82d347ccc0be322489bf7da61d7e4ad13fe2ff3
> CPU Threads: 2; OS Version: Windows 5.1; UI Render: default; Layout Engine:
> old; 
> Locale: fa-IR (fa_IR); Calc: single
> i should mention that the user interface of my libreoffice is enUS.

Actually you should probably be on the 5.3.7.2 build. 

Anyhow, your clip indicates you are using the legacy GDI based rendering that
was being reworked by Khaled to use HarfBuzz for both "default" GDI rendering
and OpenGL rendering.

Here is the link to the build Archive:
http://downloadarchive.documentfoundation.org/libreoffice/old/

Hope you understand that the ability to use the legacy GDI calls was removed at
the 5.4.0 LibreOffice release as the mixed GDI and Direct3D DirectWrite
replacements are more functional for their intended use of cross platform text
rendering to document canvas.

While concentrating on UIA and emerging Windows 10 enhancments, believe the
NVDA devs are building up technical debt in the Symphony and IAccessible module
support of IA2 based applications.

This really is NOT OUR BUG to LibreOffice and the issue is with NVDA in Screen
review mode--not sure if it is mishandling the language change, or the COM
error thrown in get_IA2_attributes that drops the characters and runs the
string together.  I hope the see also NVDA issue #8197 I opened will get some
attention.

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


[Libreoffice-bugs] [Bug 117265] New: PDF export in Draw uses the "document background" application color in PDF export

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

Bug ID: 117265
   Summary: PDF export in Draw uses the "document background"
application color in PDF export
   Product: LibreOffice
   Version: 6.0.3.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: khanson...@gmail.com

Description:
I noticed this when black and white drawing that I printed from an exported PDF
had a light grey background. It turns out that LO Draw is incorrectly using the
"document background" from Options > LibreOffice > Application Colors.

I had previous set this color to a light gray in Writier to avoid eyestrain,
and to confirm I set the background to purple. The background comes out purple
in PDF export in Draw, as well as Impress.

Printing from Draw is not affected. PDF export in Writer and Calc is not
affected.

Steps to Reproduce:
1. Set application color "document background" to something other than
"default".
2. Export to PDF.

Actual Results:  
PDF background color is changed.

Expected Results:
PDF background colod is unaffected.


Reproducible: Always


User Profile Reset: No



Additional Info:


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

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


[Libreoffice-bugs] [Bug 107167] [EDITING] Space at the end of the line when there is ligature using font Linux Libertine G

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

Khaled Hosny  changed:

   What|Removed |Added

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

--- Comment #12 from Khaled Hosny  ---


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

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


[Libreoffice-bugs] [Bug 71732] [META] Bugs related to text rendering, typography and font features in LO

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

Bug 107167 Summary: [EDITING] Space at the end of the line when there is 
ligature using font Linux Libertine G
https://bugs.documentfoundation.org/show_bug.cgi?id=107167

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 114510] Increased character spacing AND ligatures → faulty justifica =?UTF-8?Q?tion?=, caret positioning etc.

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

Khaled Hosny  changed:

   What|Removed |Added

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

--- Comment #4 from Khaled Hosny  ---


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

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


setting compile_commands.json on Mac for building LO in VS Code

2018-04-26 Thread Ch g
I want to build LO in VS Code on Mac.
Though "${workspaceFolder}" was set in browse.path and includePath in 
$LODE_HOME/dev/core/.vscode/c_cpp_properties.json,
there are many "cannot open source file..." in problem panel and many #include 
are underlined with jiggles.
By searching on Internet, I learned setting "directory" of 
$LODE_HOME/lode/dev/core/compile_commands.json will enable recursive inclusion,
but the values of other two keys "command" and "file" puzzle me.
{
"directory": "${workspaceFolder}",
"command": "${LODE_HOME}/opt/bin/make build-nocheck 2>&1",
"file": [".cxx", ".cpp", ".py", ".c"]
}

What are the correct values for "command" and "file" of compile_commands.json?
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 105913] Calculating character widths is broken for ligatures in 5.3

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

Khaled Hosny  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 105913] Calculating character widths is broken for ligatures in 5.3

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

Khaled Hosny  changed:

   What|Removed |Added

Summary|Calculating character   |Calculating character
   |widths is broken for Indic  |widths is broken for
   |text with some fonts in 5.3 |ligatures in 5.3

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


[Libreoffice-bugs] [Bug 108582] NVDA Screen Review mode dropping letters and running together words when sounding , Object Review mode correctly sounds words

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

--- Comment #23 from zahra  ---
(In reply to V Stuart Foote from comment #22)
> Sorry Zahra, you were correct with your observation of dropped characters
> and run together strings. Pushing this Not Our Bug.
> 
> Seems NVDA Screen Review is unsupported when running LibreOffice in OpenGL
> mode with its DirectWrite and HarfBuzz based rendering. Suspect an
> implementation issue the NVDA gdihooks.cpp/gdihooks.h -- but that is for
> others to say.
> 
> Running in Object Review, non-object text is read by API display
> scrapping--which frankly threw me off.
> 
> Otherwise, running LibreOffice with Default rendering NVDA Screen Review
> mode _can_ be activated. And when activated (NVDA - numpad7 cycles available
> modes), unlike Object Review, there is an issue with the parsing the oleacc
> COM events.
> 
> The reported dropped characters do occur, as does the run together of
> strings dropping word breaks.
> 
> On Windows 10 Home 64-bit en-US (ver 1709) with NVDA 2018.1.1 and
> Version: 6.1.0.0.alpha0+ (x64)
> Build ID: ef7f8c263fcb2bac596aa0247f1e54ff375c3146
> CPU threads: 4; OS: Windows 10.0; UI render: default; 
> TinderBox: Win-x86_64@42, Branch:master, Time: 2018-04-20_16:41:59
> Locale: en-US (en_US); Calc: CL
> 
> Here is a snippet of the NVDA debug level log while reading the About ->
> Help dialog with Screen Review mode enabled. The Input: lines are the Screen
> Review numpad navigation key. While the Speaking: lines are the actual text
> strings as parsed to audio.
> 
> 
> 
> Calling idle on audio player
> IO - inputCore.InputManager.executeGesture (14:23:30.295):
> Input: kb(desktop):numpad9
> DEBUG - synthDrivers.oneCore.SynthDriver.cancel (14:23:30.321):
> Cancelling
> DEBUG - synthDrivers.oneCore.SynthDriver._processQueue (14:23:30.323):
> Queue empty, done processing
> IO - speech.speak (14:23:30.345):
> Speaking [LangChangeCommand (u'en_US'), u'Locale:en-US(en_US); alc: L']
> DEBUGWARNING - NVDAObjects.IAccessible.IAccessible._get_IA2Attributes
> (14:23:30.450):
> IAccessibleObject.attributes COMError (-2147467259, 'Unspecified error',
> (None, None, None, 0, None))
> DEBUG - synthDrivers.oneCore.SynthDriver._processQueue (14:23:31.361):
> Begin processing speech
> DEBUGWARNING - IAccessibleHandler.accessibleObjectFromEvent (14:23:31.361):
> oleacc.AccessibleObjectFromEvent with window 6817536, objectID 159 and
> childID 0: [Error -2147467259] Unspecified error
> DEBUGWARNING - IAccessibleHandler.accessibleObjectFromEvent (14:23:31.361):
> oleacc.AccessibleObjectFromEvent with window 6817536, objectID 160 and
> childID 0: [Error -2147467259] Unspecified error
> DEBUG - synthDrivers.oneCore.SynthDriver._callback (14:23:31.377):
> Done pushing audio
> DEBUG - synthDrivers.oneCore.SynthDriver._processQueue (14:23:31.377):
> Calling idle on audio player
> DEBUG - synthDrivers.oneCore.SynthDriver._processQueue (14:23:34.709):
> Queue empty, done processing
> IO - inputCore.InputManager.executeGesture (14:23:37.994):
> Input: kb(desktop):numpad9
> DEBUG - synthDrivers.oneCore.SynthDriver.cancel (14:23:38.010):
> Cancelling
> IO - speech.speak (14:23:38.032):
> Speaking [LangChangeCommand (u'en_US'),
> u'SeeLog:ef7f8c263fcb2bac596aa0247f1e54ff375c3146']
> DEBUGWARNING - NVDAObjects.IAccessible.IAccessible._get_IA2Attributes
> (14:23:38.247):
> IAccessibleObject.attributes COMError (-2147467259, 'Unspecified error',
> (None, None, None, 0, None))
> DEBUG - synthDrivers.oneCore.SynthDriver._processQueue (14:23:39.052):
> Begin processing speech
> DEBUGWARNING - IAccessibleHandler.accessibleObjectFromEvent (14:23:39.052):
> oleacc.AccessibleObjectFromEvent with window 6817536, objectID 161 and
> childID 0: [Error -2147467259] Unspecified error
> DEBUGWARNING - IAccessibleHandler.accessibleObjectFromEvent (14:23:39.052):
> oleacc.AccessibleObjectFromEvent with window 6817536, objectID 162 and
> childID 0: [Error -2147467259] Unspecified error
> DEBUG - synthDrivers.oneCore.SynthDriver._callback (14:23:39.099):
> Done pushing audio
> DEBUG - synthDrivers.oneCore.SynthDriver._processQueue (14:23:39.099):
> Calling idle on audio player
> IO - inputCore.InputManager.executeGesture (14:23:43.503):
> Input: kb(desktop):numpad9
> DEBUG - synthDrivers.oneCore.SynthDriver.cancel (14:23:43.519):
> Cancelling
> DEBUG - synthDrivers.oneCore.SynthDriver._processQueue (14:23:43.520):
> Queue empty, done processing
> IO - speech.speak (14:23:43.542):
> Speaking [LangChangeCommand (u'en_US'),
> u'LibreOfficeDevisamodern,easy-to-use,opensourceproductivity']
> DEBUGWARNING - NVDAObjects.IAccessible.IAccessible._get_IA2Attributes
> (14:23:43.569):
> IAccessibleObject.attributes COMError (-2147467259, 'Unspecified error',
> (None, None, None, 0, None))
> DEBUG - synthDrivers.oneCore.SynthDriver._processQueue (14:23:44.552):
> Begin processing speech
> DEBUGWARNING - IAccessibleHandler.accessibleObjectFromEvent (14:23:44.555):
> 

[Libreoffice-bugs] [Bug 106989] LibreOffice is not treating dot the same way it does comma when spell checking

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 106843] FILESAVE DOCX: Protect changes setting not saved to docx file

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 59926] FILESAVE breaks Edit Password Protection

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 92628] EDITING: Double click in formula sometimes gets wrong word boundaries

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 95438] SLIDESHOW/VIEWING: Misrendered SVG in presenter console

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 117174] image in LibreOffice Writer keep disappearing after a few hour of use

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

--- Comment #7 from fake name  ---
yes.same set of image, i recognize because i put title before image, for a few
image the size is 1170 x 605, the image itself disappear from document not
could not be load (doc>7zip open archive>image folder>no image) and the
document have password to open it...currently trying with new document using
windows library public picture, some empty table, literally this whole bug
report copy paste into the document (unformated text) until it reach 50
pages...

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


[Libreoffice-bugs] [Bug 117174] image in LibreOffice Writer keep disappearing after a few hour of use

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

--- Comment #6 from fake name  ---
> That said, I have not so much hope that the new version will solve your
> problem. I have many Writer documents with dozens of images and never
> encountered such a problem. In adddition, your description is very vague, I
> would not know how to try to reproduce the problem other than what I did
> with my documents, and I cannot reproduce it.
> With such sparse information I fear nobody will look closer to the problem.
> Does it arrive for a single document or could you reproduce it with another,
> new document? Did you reproduce it with the same set of images or also with
> others? What does "put a lot of image in that" mean? Many images, a large
> image, then which? I you didn't save, you should recognize which is the last
> image loaded (if you mena many images) correctly into the file; did you test
> only with the image that could not be loaded?
> Etc. These questions should be handled before anyone will know what you mean.

did your setting same as mine?look at additional info...most of my image is
screenshot from firefox screenshot, how many page your document have?mine is at
40-50 in a file that i open frequently,there a 10-15 table too, and like the
report say the bug happen sometimes, and i say it only reproduceable when the
image itself say "read error"...i dont know how to say anymore, it happen to me
T_T.well if it doesnt happen to anyone else, then i'm dont know what to say
anymore...

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


LOOL Client module - Problem with implementation

2018-04-26 Thread Renato Ribeiro
[cid:26c16002-2208-4c81-b97f-1b9645b51d96]

Hi all,

I'm trying to build LOOL for my final project. As a first step build the LO 
core without problems and the wsd "module" too. When I do "make run" the server 
start to listen the port 9980 and keep waiting for a client connection. If I 
try to open the LibreOffice follow the link:

(https://localhost:9980/loleaflet/2bac7784b/loleaflet.html?file_path=file:///home/renato/libreoffice/online/test/data/hello-world.odt)

I can access the document on Web Browser. I think the server part is ready!

But now, I can't understand well the client part. Supposedly, When a client 
establish connection with the server "He'll be closed inside the LibreOffice 
directory" (chroot jail). Is that? How I can give permissions for the client to 
access the jail? Do I need to create a group to manage this clients? I choose 
to do make run "automatically" so I not set up a minimal chroot system 
manually. Will it be a problem for me?

It's a little bit confuse for me. I read the READ document in Loleaflet folder 
but I don't understand the strategy to follow.

Please someone could help me with this question?

Thanks in advance
Best regards,
Renato Ribeiro



















___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 117190] Formatting is applied to outer table when Embedding a formatted table ( using a table style) into a table cell

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

--- Comment #7 from Furkan Tokac  ---
It is reproducable for me too. I'm investigating the problem.

Version: 6.1.0.0.alpha0+
Build ID: d8808e1200416ef51f3aef61a2a3e6b49150a394
CPU threads: 8; OS: Linux 4.13; UI render: default; VCL: gtk3; 
Locale: en-US (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 116579] Date format setting not recognised

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

--- Comment #9 from Gerhard Weydt  ---
Hi Elmar,

I've spent a lot of time to figure out what you really want to achieve, and it
becomes ever more nebulous.

It starts with your statement "should convert 18-3-23 to date format". This
already poses some questions:
You state in your example files that y-m-d is the standard format for South
Africa, so why would you expect a conversion?
What do you mean by "... to date format"? Do you wish to have another date
format? Which?
Wikipeda says
(https://en.wikipedia.org/wiki/Date_and_time_notation_in_South_Africa) that
South Africa has accepted the ISO standard, which means that dates can/should
be written as -MM-DD, but that  d/m/y is still commonly used (so how can
you say that y-m-d is the standard format?); and it seems that LibreOffice
still uses this "old" format as its default for South Africa, according to my
tests. It's the same in Germany: ISO is the standard since at least 18 years (I
delved into the matter when I managed the year 2000 project in my company), but
still nowadays people rarely use the ISO representation. So I think the default
date format d/m/y used in LibO is the best choice as user friendliness is
concerned, although I would wish for using the ISO date for principal reasons.

Date handling is a very complex problem, and I can't say that I understand all
its ramifications. But I think that in LibO these rules apply:
1. there is a standard date representation used, for which I do not know where
to find the definition. For South Africa it seems to be y/m/d which does not
fit  the wikipedia statement: if I add y.m.d. as date acceptance pattern, a
given date 1.2.3 will be converted to 1/2/3.
2. The date acceptance patterns define which string representations will be
interpreted as dates and consequently be converted to the standard date
representation for this locale. My test y.m.d, using a german style for a date,
is an example.
3. Entries similar to ISO dates are treated as those: 18-3-4 is converted to a
correct ISO format 2018-03-04, and they are not converted to the standard
format used in 1.

I think this is the best one could do, viewing that ISO is a standard accepted
in these countries (I never looked into the situation of a country that had not
accepted ISO), but common usage is different: present dates in the format
commonly used, but retain a (standardised) format for entries in ISO-conforming
format, for then it is assumed that the user intentionally uses this format.

I hope this makes matters clearer for you. I have the suspicion that you wish
LibO to perform some conversion of dates which you do not exactly know how to
specify, but I cannot guess which.

The comments in your documents:
Col B is as as input
Col C shows how I input the info (without the <>)
are a problem for me (and probably for many people), because you use "input" in
both cases, whereas I assume that one column (B) is the result of the input
after the standard conversion by Calc.

Consider these remarks, and if you still think there's something wrong with
LibreOffice, provide precise informatiuon.

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


[Libreoffice-bugs] [Bug 117262] Page size does not work to change the size of a project paper size

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

--- Comment #4 from Mike Kaganski  ---
This is a toolbar button; please test putting it to a toolbar - not to menu

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


[Libreoffice-bugs] [Bug 117262] Page size does not work to change the size of a project paper size

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

Richard Flygare  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from Richard Flygare  ---
"Page Size" is the affected button. Should allow changes in paper size when
used, unless I am mistaken.

Libre OfficeWriter is the app.

Great product otherwise, by the way. :)

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


[Libreoffice-bugs] [Bug 117262] Page size does not work to change the size of a project paper size

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

--- Comment #2 from Richard Flygare  ---
Created attachment 141665
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141665=edit
Identified button: page size

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


[Libreoffice-bugs] [Bug 117259] Visual indicator of open tab in Tabbed bar inspired in Quantum theme from Firefox

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Blocks||107237


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 107237] [META] Notebookbar Tabbed Implementation

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

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||117259


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117259
[Bug 117259] Visual indicator of open tab in Tabbed bar inspired in Quantum
theme from Firefox
-- 
You are receiving this mail because:
You 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 117259] Visual indicator of open tab in Tabbed bar inspired in Quantum theme from Firefox

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Blocks||107237


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107237
[Bug 107237] [META] Notebookbar Tabbed Implementation
-- 
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 117259] Visual indicator of open tab in Tabbed bar inspired in Quantum theme from Firefox

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

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---
Seems reasonable if the color decoration can be applied to the "Tab" widget...
=> 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 103167] Disable sidebar decks in Notebookbar mode

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

--- Comment #8 from Cor Nouws  ---
(In reply to Heiko Tietze from comment #7)
> The idea is likely not to prevent users from a workflow. So what Jay had in
> mind was probably to collapse the content panel depending on the NB. An
> example is the inserting shapes - position/size is collapsed.

Ah, then this issue should read "hide .. " and not "disable.." ?

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


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - extensions.lst

2018-04-26 Thread Matthias Seidel
 extensions.lst |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9e676c5e27a60cc31bf8be0160709ce5bf94c59c
Author: Matthias Seidel 
Date:   Thu Apr 26 22:02:04 2018 +

Updated English dictionary (again)

diff --git a/extensions.lst b/extensions.lst
index 80b18abd8325..f9fdbc4fcb88 100644
--- a/extensions.lst
+++ b/extensions.lst
@@ -73,7 +73,7 @@
 
 # English dictionary
 [ language=en.* || language=de || language=it ]
-9f4e39cafe6598e84fbfaae1c2aa9109 
https://sourceforge.net/projects/aoo-extensions/files/17102/40/dict-en-20180501.oxt/download
 "dict-en.oxt"
+27197183bb3e7a12e3d554559f80808f 
https://sourceforge.net/projects/aoo-extensions/files/17102/41/dict-en-20180501b.oxt/download
 "dict-en.oxt"
 
 # English (USA, en_US) dictionary
 [ language==nl || language==ru ]
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117264] New: Rotated image cannot be moved fully to left/ right margins

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

Bug ID: 117264
   Summary: Rotated image cannot be moved fully to left/right
margins
   Product: LibreOffice
   Version: 6.0.3.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: wolf...@fischer-zim.ch

- Import an image (tested: pdf and png).
- Rotate it 90 degrees clockwise or counterclockwise.
- Try move it with the mouse fully to the left or right page margin.
--> The image will jump back into the paragraph area.
(There will be even a space of approx. 1 cm to the left or right paragraph
margin.)
- Changeing the page margins does not change the position of the moved image.
- The image can be moved until the upper and lower margins without problems.

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


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

2018-04-26 Thread Michael Meeks
 sw/source/uibase/shells/textsh.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit e9ac3a9c1ee7689c4d591a68250666c95632bd2a
Author: Michael Meeks 
Date:   Thu Apr 26 19:08:53 2018 +0100

Use async dialog path for format columns.

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

diff --git a/sw/source/uibase/shells/textsh.cxx 
b/sw/source/uibase/shells/textsh.cxx
index c2747c86243e..357d0483184e 100644
--- a/sw/source/uibase/shells/textsh.cxx
+++ b/sw/source/uibase/shells/textsh.cxx
@@ -525,9 +525,9 @@ void SwTextShell::ExecInsert(SfxRequest )
 {
 SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();
 assert(pFact && "Dialog creation failed!");
-ScopedVclPtr 
pColDlg(pFact->CreateSwColumnDialog(GetView().GetWindow(), rSh));
+VclPtr 
pColDlg(pFact->CreateSwColumnDialog(GetView().GetWindow(), rSh));
 assert(pColDlg && "Dialog creation failed!");
-pColDlg->Execute();
+pColDlg->StartExecuteAsync([](sal_Int32 /*nResult*/){});
 }
 break;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117256] Export as PDF slow

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

MM  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from MM  ---
Tested on windows 7 x64 with Version: 6.0.4.1 (x64)
Build ID: a63363f6506b8bdc5222481ce79ef33b2d13c741
CPU threads: 3; OS: Windows 6.1; UI render: default;

In my own little test with about 1600x7 records (73.5 KB), it outputs quite
fast ~5 secs (267 KB).
Maybe you can strip your file with any sensitive data and share it, so we can
try to reproduce 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 117048] Impress: Hyperlink Does Not Work after PDF Export if Hidden Slides

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

John  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


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

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

--- Comment #4 from John  ---
Created attachment 141664
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141664=edit
PDF with Hidden Slide

Attached is the exported PDF with the 3rd slide hidden. Notice the link on the
last slide no longer works.

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


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

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

--- Comment #3 from John  ---
Created attachment 141663
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141663=edit
PDF with No Hidden Slides

Attached is the exported PDF file when there are no hidden slides. Notice that
the links on slide 1 and slide 5 work.

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


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

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

--- Comment #2 from John  ---
Created attachment 141662
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141662=edit
ODP Bug Example

Attached is the ODP file used to generate an example 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 117261] External Forms: Form control property connection-resource link-ref contents changed when an odt file is saved

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

Drew Jensen  changed:

   What|Removed |Added

Summary|External Forms: Connection  |External Forms: Form
   |to database is lost when|control property
   |pressing "Save" after input |connection-resource
   |data|link-ref contents changed
   ||when an odt file is saved

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


[Libreoffice-bugs] [Bug 117261] External Forms: Connection to database is lost when pressing "Save" after input data

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

--- Comment #2 from Drew Jensen  ---
Also. If relative addressing were working the path ../TestDB.odb is still an
error, the actual path to the file is ./TestDB.odb or TestDB.odb neither of
with the form control accepted when I tried them.

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


[Libreoffice-bugs] [Bug 108660] [META] Formula bar (input line) bugs and enhancements

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

Bug 70597 Summary: URL corrupted when right click in the formula bar
https://bugs.documentfoundation.org/show_bug.cgi?id=70597

   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 70597] URL corrupted when right click in the formula bar

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

Maxim Monastirsky  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |momonas...@gmail.com
   |desktop.org |
 Whiteboard||target:6.1.0

--- Comment #11 from Maxim Monastirsky  ---
Fixed by the commit of Bug 57000.

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


[Libreoffice-bugs] [Bug 108019] [META] Calc UX bugs and enhancements

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

Bug 57000 Summary: UI: No context menu available in Input Line (formula bar)
https://bugs.documentfoundation.org/show_bug.cgi?id=57000

   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 57000] UI: No context menu available in Input Line (formula bar)

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

Maxim Monastirsky  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |momonas...@gmail.com
   |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 86349] [META] Context menu bugs and enhancements

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

Bug 57000 Summary: UI: No context menu available in Input Line (formula bar)
https://bugs.documentfoundation.org/show_bug.cgi?id=57000

   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 108660] [META] Formula bar (input line) bugs and enhancements

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

Bug 57000 Summary: UI: No context menu available in Input Line (formula bar)
https://bugs.documentfoundation.org/show_bug.cgi?id=57000

   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 117261] External Forms: Connection to database is lost when pressing "Save" after input data

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

Drew Jensen  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Drew Jensen  ---
can confirm this using:
Version: 5.4.6.2
Build ID: 1:5.4.6-0ubuntu0.17.10.1
CPU threads: 4; OS: Linux 4.13; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); Calc: group

After unzipping the example files opening content.xml inside TestAufnahme.odt
you will find the form control with the following:


Now I fix that for my directory path and the form functions as needed.

Save the form and close it.

Looking at contents.xml the value has changed to:

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


[Libreoffice-bugs] [Bug 117263] New: Spelling, grammar

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

Bug ID: 117263
   Summary: Spelling, grammar
   Product: LibreOffice
   Version: 5.2.7.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: abeble...@cox.net

Description:
Words are recorded as spelled correctly, then after a time are regarded
incorrect. I have taken a screenshot of the marked word next to a correct
version to which they are the same. As I am an author I find my self having to
take time to second guess my self that should not be necessary. I have also
found that I seem to be correcting missing letters more often than when using
other programs. Any assistance would be much appreciated.

Steps to Reproduce:
1.typing
2.copy and paste
3.

Actual Results:  
Same

Expected Results:
Same


Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

Additional Info:
Any information would be helpful. I realize this is open source and have the
ability to add the words to the dictionary and upon addition the error does not
resurface. It just leads me to feel that my work, once published, may not be
what I see, and include errors when transposed to other formats. Thank you for
your time.

Version: 5.2.7.2
Build ID: 1:5.2.7-1+deb9u4
CPU Threads: 4; OS Version: Linux 4.9; UI Render: default; VCL: kde4; 
Locale: en-US (en_US.UTF-8); Calc: group


User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like
Gecko) Chrome/66.0.3359.117 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 117262] Page size does not work to change the size of a project paper size

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

Mike Kaganski  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Mike Kaganski  ---
Please describe what *exactly* is not working, and what *exactly* do you
attempt.

Because your description, including the text
> ... but the "paper size" function does not work ...
> ...
> 2.click "page size"

has at least two problems:
1. It uses "paper size" vs "page size" - which one is the correct one?
2. It doesn't tell where should one click: if it's some button somewhere, or a
menu, or something else;
3. It doesn't even mention which application (Writer? Calc? Draw?) is used.

Please provide a better description that would allow to understand the issue
and reproduce it.

After you have provided the necessary info, please set the status back to
UNCONFIRMED. Thank you.

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


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

2018-04-26 Thread Maxim Monastirsky
 officecfg/registry/data/org/openoffice/Office/UI/CalcWindowState.xcu |5 ++
 sc/UIConfig_scalc.mk |1 
 sc/source/ui/app/inputwin.cxx|   14 

 sc/uiconfig/scalc/popupmenu/formulabar.xml   |   17 
++
 4 files changed, 37 insertions(+)

New commits:
commit 9d9076cb00c474ba7f13d458f1e280e31f5d4bac
Author: Maxim Monastirsky 
Date:   Wed Apr 18 02:49:37 2018 +0300

tdf#57000 Add a context menu to the formula bar input field

As a side effect also fixes tdf#70597

Change-Id: Idd872d93f7a9da50f67c91a11e7e0231c7ac924e
Reviewed-on: https://gerrit.libreoffice.org/53513
Tested-by: Jenkins 
Reviewed-by: Maxim Monastirsky 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/CalcWindowState.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/CalcWindowState.xcu
index 7614ea3827c0..b9948964babf 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/CalcWindowState.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/CalcWindowState.xcu
@@ -65,6 +65,11 @@
   Text Box Formatting
 
   
+  
+
+  Formula Bar
+
+  
   
 
   Image
diff --git a/sc/UIConfig_scalc.mk b/sc/UIConfig_scalc.mk
index bfbf46305226..6eb7c34d49f9 100644
--- a/sc/UIConfig_scalc.mk
+++ b/sc/UIConfig_scalc.mk
@@ -26,6 +26,7 @@ $(eval $(call gb_UIConfig_add_popupmenufiles,modules/scalc,\
sc/uiconfig/scalc/popupmenu/drawtext \
sc/uiconfig/scalc/popupmenu/form \
sc/uiconfig/scalc/popupmenu/formrichtext \
+   sc/uiconfig/scalc/popupmenu/formulabar \
sc/uiconfig/scalc/popupmenu/freezepanes \
sc/uiconfig/scalc/popupmenu/graphic \
sc/uiconfig/scalc/popupmenu/media \
diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx
index fd97dc58d21c..4389cb643cec 100644
--- a/sc/source/ui/app/inputwin.cxx
+++ b/sc/source/ui/app/inputwin.cxx
@@ -1418,6 +1418,20 @@ void ScTextWnd::Command( const CommandEvent& rCEvt )
 rBindings.Invalidate( SID_ATTR_CHAR_FONTHEIGHT );
 }
 }
+else if ( nCommand == CommandEventId::ContextMenu )
+{
+SfxViewFrame* pViewFrm = SfxViewFrame::Current();
+if (pViewFrm)
+{
+Point aPos = rCEvt.GetMousePosPixel();
+if (!rCEvt.IsMouseEvent())
+{
+Size aSize = GetOutputSizePixel();
+aPos = Point(aSize.Width() / 2, aSize.Height() / 2);
+}
+pViewFrm->GetDispatcher()->ExecutePopup("formulabar", this, 
);
+}
+}
 else if ( nCommand == CommandEventId::Wheel )
 {
 //don't call InputChanged for CommandEventId::Wheel
diff --git a/sc/uiconfig/scalc/popupmenu/formulabar.xml 
b/sc/uiconfig/scalc/popupmenu/formulabar.xml
new file mode 100644
index ..ce6abf1d393d
--- /dev/null
+++ b/sc/uiconfig/scalc/popupmenu/formulabar.xml
@@ -0,0 +1,17 @@
+
+
+http://openoffice.org/2001/menu;>
+  
+  
+  
+  
+  
+  
+
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 57000] UI: No context menu available in Input Line (formula bar)

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|BSA |BSA target:6.1.0

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


[Libreoffice-bugs] [Bug 57000] UI: No context menu available in Input Line (formula bar)

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

--- Comment #13 from Commit Notification 
 ---
Maxim Monastirsky committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=9d9076cb00c474ba7f13d458f1e280e31f5d4bac

tdf#57000 Add a context menu to the formula bar input field

It will be available in 6.1.0.

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

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

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


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

2018-04-26 Thread Maxim Monastirsky
 sc/source/ui/app/inputwin.cxx |4 
 1 file changed, 4 insertions(+)

New commits:
commit 4af174f659ecd1ae8338865a17e436aba9e74685
Author: Maxim Monastirsky 
Date:   Thu Apr 26 03:40:29 2018 +0300

Also blacklist CommandEventId::LongPress

Change-Id: I187634f38092644cad63f5d89071de1e6e83
Reviewed-on: https://gerrit.libreoffice.org/53515
Tested-by: Jenkins 
Reviewed-by: Maxim Monastirsky 

diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx
index bac9f99028a7..fd97dc58d21c 100644
--- a/sc/source/ui/app/inputwin.cxx
+++ b/sc/source/ui/app/inputwin.cxx
@@ -1426,6 +1426,10 @@ void ScTextWnd::Command( const CommandEvent& rCEvt )
 {
 //don't call InputChanged for CommandEventId::Swipe
 }
+else if ( nCommand == CommandEventId::LongPress )
+{
+//don't call InputChanged for CommandEventId::LongPress
+}
 else if ( nCommand == CommandEventId::ModKeyChange )
 {
 //pass alt press/release to parent impl
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-04-26 Thread Maxim Monastirsky
 sc/source/ui/app/inputwin.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit baddcc38dee7b286cc73c1eaeb6f78d10b911a8e
Author: Maxim Monastirsky 
Date:   Mon Apr 23 03:04:07 2018 +0300

sc: Fix menubar auto-accelerator behavior under gtk2

... when the focus is in the input field of the formula bar.
Regression of commit d90dcf3554a84b5600800ee6deb3cde879c62b8d
("tdf#113894 release ctrl of ctrl+v in input line should strip
formatting").

Change-Id: I819dc8106901b967eda505a488bf99cda57f5469
Reviewed-on: https://gerrit.libreoffice.org/53514
Tested-by: Jenkins 
Reviewed-by: Maxim Monastirsky 

diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx
index 80823aca43f4..bac9f99028a7 100644
--- a/sc/source/ui/app/inputwin.cxx
+++ b/sc/source/ui/app/inputwin.cxx
@@ -1428,7 +1428,8 @@ void ScTextWnd::Command( const CommandEvent& rCEvt )
 }
 else if ( nCommand == CommandEventId::ModKeyChange )
 {
-//don't call InputChanged for CommandEventId::ModKeyChange
+//pass alt press/release to parent impl
+Window::Command(rCEvt);
 }
 else
 SC_MOD()->InputChanged( mpEditView.get() );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 101957] Crash when inserting an row in Writer using the context menu (likely GTK2-related)

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

--- Comment #29 from Caolán McNamara  ---
The original reporter, Henk, was on rhel 6.8 which is a very old distro by now.
I don't see any information in the last few comments from David that indicates
that its the same 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-commits] core.git: configure.ac download.lst external/libstaroffice solenv/flatpak-manifest.in

2018-04-26 Thread David Tardon
 configure.ac | 
   2 
 download.lst | 
   4 -
 external/libstaroffice/0001-add-missing-include-for-std-max.patch.1  | 
  24 ++
 external/libstaroffice/0001-fix-null-ptr-deref.-if-decryption-failed.patch.1 | 
  35 --
 external/libstaroffice/Library_staroffice.mk | 
   2 
 external/libstaroffice/UnpackedTarball_libstaroffice.mk  | 
   4 -
 solenv/flatpak-manifest.in   | 
   6 -
 7 files changed, 34 insertions(+), 43 deletions(-)

New commits:
commit 488f70e0c5209fd092b67252fdebb784efa04673
Author: David Tardon 
Date:   Thu Apr 26 08:41:52 2018 +0200

upload libstaroffice 0.0.6

Change-Id: Id3a845174e7cebad999895bc57e2d05f36f3d597
Reviewed-on: https://gerrit.libreoffice.org/53499
Tested-by: Jenkins 
Reviewed-by: David Tardon 

diff --git a/configure.ac b/configure.ac
index bdc3efa59172..56e9b01811a4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7881,7 +7881,7 @@ libo_CHECK_SYSTEM_MODULE([libqxp],[QXP],[libqxp-0.0])
 libo_CHECK_SYSTEM_MODULE([libzmf],[ZMF],[libzmf-0.0])
 
 libo_CHECK_SYSTEM_MODULE([libstaroffice],[STAROFFICE],[libstaroffice-0.0])
-libo_PKG_VERSION([STAROFFICE], [libstaroffice-0.0], [0.0.4])
+libo_PKG_VERSION([STAROFFICE], [libstaroffice-0.0], [0.0.6])
 
 dnl ===
 dnl Check for system lcms2
diff --git a/download.lst b/download.lst
index e61ba6be9fae..c05c99ba4dc0 100644
--- a/download.lst
+++ b/download.lst
@@ -225,8 +225,8 @@ export RHINO_SHA256SUM := 
1fb458d6aab06932693cc8a9b6e4e70944ee1ff052fa63606e3131
 export RHINO_TARBALL := 798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip
 export SERF_SHA256SUM := 
6988d394b62c3494635b6f0760bc3079f9a0cd380baf0f6b075af1eb9fa5e700
 export SERF_TARBALL := serf-1.2.1.tar.bz2
-export STAROFFICE_SHA256SUM := 
315507add58068aa6d5c437e7c2a6fd1abe684515915152c6cf338fc588da982
-export STAROFFICE_VERSION_MICRO := 5
+export STAROFFICE_SHA256SUM := 
6b00e1ed8194e6072be4441025d1b888e39365727ed5b23e0e8c92c4009d1ec4
+export STAROFFICE_VERSION_MICRO := 6
 export STAROFFICE_TARBALL := 
libstaroffice-0.0.$(STAROFFICE_VERSION_MICRO).tar.xz
 export SWING_SHA256SUM := 
64585ac36a81291a58269ec5347e7e3e2e8596dbacb9221015c208191333c6e1
 export SWING_TARBALL := 35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
diff --git 
a/external/libstaroffice/0001-add-missing-include-for-std-max.patch.1 
b/external/libstaroffice/0001-add-missing-include-for-std-max.patch.1
new file mode 100644
index ..2445d2a4a8e3
--- /dev/null
+++ b/external/libstaroffice/0001-add-missing-include-for-std-max.patch.1
@@ -0,0 +1,24 @@
+From d6c34e98a6adb060ad42b9f1c60a1e8036bc27ff Mon Sep 17 00:00:00 2001
+From: David Tardon 
+Date: Thu, 26 Apr 2018 14:21:06 +0200
+Subject: [PATCH] add missing include for std::max
+
+---
+ src/lib/STOFFChart.cxx | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/lib/STOFFChart.cxx b/src/lib/STOFFChart.cxx
+index cd1566f..3e7310c 100644
+--- a/src/lib/STOFFChart.cxx
 b/src/lib/STOFFChart.cxx
+@@ -37,6 +37,7 @@
+  *
+  */
+ 
++#include 
+ #include 
+ #include 
+ #include 
+-- 
+2.14.3
+
diff --git 
a/external/libstaroffice/0001-fix-null-ptr-deref.-if-decryption-failed.patch.1 
b/external/libstaroffice/0001-fix-null-ptr-deref.-if-decryption-failed.patch.1
deleted file mode 100644
index 658f6797940d..
--- 
a/external/libstaroffice/0001-fix-null-ptr-deref.-if-decryption-failed.patch.1
+++ /dev/null
@@ -1,35 +0,0 @@
-From 59f29dd735bf5890ea29fdde809afcf111463a65 Mon Sep 17 00:00:00 2001
-From: David Tardon 
-Date: Mon, 12 Mar 2018 20:33:54 +0100
-Subject: [PATCH] fix null ptr deref. if decryption failed
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Thanks to Antti Levomäki and Christian Jalio from Forcepoint.

- src/lib/StarObjectDraw.cxx | 7 ---
- 1 file changed, 4 insertions(+), 3 deletions(-)
-
-diff --git a/src/lib/StarObjectDraw.cxx b/src/lib/StarObjectDraw.cxx
-index fd3411a..8a19b1c 100644
 a/src/lib/StarObjectDraw.cxx
-+++ b/src/lib/StarObjectDraw.cxx
-@@ -199,10 +199,11 @@ try
-if the user mask does correspond to the real mask.
- */
- input=StarEncryption::decodeStream(input, 
StarEncryption::getMaskToDecodeStream(firstByte, 0x44));
--if (input) {
--  zone.setInput(input);
--  input->seek(0, librevenge::RVNG_SEEK_SET);
-+if (!input) {
-+  STOFF_DEBUG_MSG(("StarObjectDraw::readDrawDocument: decryption 
failed\n"));
-+  return false;
- }
-+zone.setInput(input);
-   }
-   input->seek(0, librevenge::RVNG_SEEK_SET);
-   std::shared_ptr model(new StarObjectModel(*this, true));
--- 
-2.14.3
-
diff --git 

[Libreoffice-bugs] [Bug 117262] New: Page size does not work to change the size of a project paper size

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

Bug ID: 117262
   Summary: Page size does not work to change the size of a
project paper size
   Product: LibreOffice
   Version: 6.0.3.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: richardflyg...@hotmail.com

Description:
I often need to use paper sizes other than letter size, but the "paper size"
function does not work within the app.

Steps to Reproduce:
1.create doc
2.click "page size"
3.

Actual Results:  
Nothing happens

Expected Results:
Menu or setting panel to change size of paper within project


Reproducible: Always


User Profile Reset: No



Additional Info:
As above


User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:59.0) Gecko/20100101
Firefox/59.0

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


[Libreoffice-bugs] [Bug 117174] image in LibreOffice Writer keep disappearing after a few hour of use

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

Gerhard Weydt  changed:

   What|Removed |Added

 CC||gerhard.we...@t-online.de

--- Comment #5 from Gerhard Weydt  ---
(In reply to fake name from comment #4)
> still have to pass on that...i dont want to take risk using
> alpha/beta/nightly software whatsoever...i use stable version only, which is
> why i'm using still lo

As Buovjaga already said, the master build is installed *separately*, your
stable version is still there and untouched. You can delete the master build if
you do not need it any longer. Use the master for testing whether the error
still occurs there, and the stable version for your normal work. So there's no
risk. And if the error is really gone, you can always use this master in case
you have the same problem gain with the same or another document, until you
have updated your stable system to a version where the error does no more
occur.
By the way, the link Buovjaga provided is, I think, for 64-bit LibO, which
might not work for your system, but I am not sure of that.
Anyway, there is an easy way to install a newer version of LibO in parallel to
your stable system, for Windows: look at
https://wiki.documentfoundation.org/SI-GUI.

That said, I have not so much hope that the new version will solve your
problem. I have many Writer documents with dozens of images and never
encountered such a problem. In adddition, your description is very vague, I
would not know how to try to reproduce the problem other than what I did with
my documents, and I cannot reproduce it.
With such sparse information I fear nobody will look closer to the problem.
Does it arrive for a single document or could you reproduce it with another,
new document? Did you reproduce it with the same set of images or also with
others? What does "put a lot of image in that" mean? Many images, a large
image, then which? I you didn't save, you should recognize which is the last
image loaded (if you mena many images) correctly into the file; did you test
only with the image that could not be loaded?
Etc. These questions should be handled before anyone will know what you mean.

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


[Libreoffice-bugs] [Bug 113643] Editing tables in Impress lags terribly

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

Buovjaga  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED
 Resolution|DUPLICATE   |FIXED

--- Comment #8 from Buovjaga  ---
In Windows I am able to repro with 6.0.3, but 6.1 alpha1 does not have the
terrible lag

Version: 6.1.0.0.alpha1 (x64)
Build ID: cb47f0d320994e001bc38dc2ee9b7d957b15e6ab
CPU threads: 4; OS: Windows 10.0; UI render: default; 
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-commits] core.git: Branch 'libreoffice-6-0-4' - sw/qa sw/source

2018-04-26 Thread Justin Luth
 sw/qa/core/data/ww8/pass/tdf117129_dxagoal0.doc |binary
 sw/source/filter/ww8/ww8graf2.cxx   |3 ++-
 2 files changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 59d41f0bd54522a15e4177cbc9fda175b5190646
Author: Justin Luth 
Date:   Mon Apr 23 09:27:00 2018 +0300

tdf#117129 ww8import: prevent divide-by-zero

Before commit ffc3358515799057e72379b76a1165c6ea5a9bd1 for
tdf#75539, the divisor was hard-coded at 1000. The preceeding code
also notes that an undefined relativeWidth is forced to 1000.
So, on an invalid divisor, revert to previous behaviour.

Change-Id: I40210194eec39682d9ab3ce68268d343af16e2b1
Reviewed-on: https://gerrit.libreoffice.org/53329
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 
(cherry picked from commit 9b55701b88c42cac491587072f1f09522207de77)
Reviewed-on: https://gerrit.libreoffice.org/53517
Reviewed-by: Justin Luth 
Tested-by: Justin Luth 

diff --git a/sw/qa/core/data/ww8/pass/tdf117129_dxagoal0.doc 
b/sw/qa/core/data/ww8/pass/tdf117129_dxagoal0.doc
new file mode 100644
index ..9fca8ef048ae
Binary files /dev/null and b/sw/qa/core/data/ww8/pass/tdf117129_dxagoal0.doc 
differ
diff --git a/sw/source/filter/ww8/ww8graf2.cxx 
b/sw/source/filter/ww8/ww8graf2.cxx
index fde01e6ad296..4035d583c1ba 100644
--- a/sw/source/filter/ww8/ww8graf2.cxx
+++ b/sw/source/filter/ww8/ww8graf2.cxx
@@ -579,10 +579,11 @@ SwFrameFormat* SwWW8ImplReader::ImportGraf(SdrTextObj 
const * pTextObj,
 relativeWidth = pRecord->isHorizontalRule ? 1000 : 0;
 if( relativeWidth != 0 )
 {
+const sal_Int16 nScale = aPic.dxaGoal ? aPic.dxaGoal : 
1000;
 aPic.mx = msword_cast(
 m_aSectionManager.GetPageWidth() -
 m_aSectionManager.GetPageRight() -
-m_aSectionManager.GetPageLeft()) * relativeWidth / 
aPic.dxaGoal;
+m_aSectionManager.GetPageLeft()) * relativeWidth / 
nScale;
 aPD = WW8PicDesc( aPic );
 // This SetSnapRect() call adjusts the size of the
 // object itself, no idea why it's this call (or even
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-0-4' - cui/source

2018-04-26 Thread Miklos Vajna
 cui/source/options/personalization.cxx |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 0d90c992f54845b2403e7f564fec00ce876736ad
Author: Miklos Vajna 
Date:   Tue Apr 24 17:44:54 2018 +0200

tdf#113377 cui personalization: fix calling into VCL without necessary 
locking

We assume the SolarMutex is always taken when doing GL calls, but
putting DBG_TESTSOLARMUTEX() into WinOpenGLContext::makeCurrent()
pointed out two places in the persona code where this invariant wasn't
hold, fix those.

Opening the dialog and downloading previews of one category, then
clicking on an other button to download previews of an other category no
longer results in a crash while calling glBindFramebuffer() with this.

(cherry picked from commit 336d91a6f2bc12ff0342f984cdbb2cf64abd0b56)

Change-Id: Ib8148a709f89c2dc44da102e2023cc61ba890744
Reviewed-on: https://gerrit.libreoffice.org/53434
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 
(cherry picked from commit 980e19af46dae68c800d55582e8f6b2c7fdd)
Reviewed-on: https://gerrit.libreoffice.org/53518
Reviewed-by: Michael Meeks 

diff --git a/cui/source/options/personalization.cxx 
b/cui/source/options/personalization.cxx
index 9b3e482b55d2..a9ff29edf078 100644
--- a/cui/source/options/personalization.cxx
+++ b/cui/source/options/personalization.cxx
@@ -252,6 +252,8 @@ void SelectPersonaDialog::AddPersonaSetting( OUString const 
& rPersonaSetting )
 
 void SelectPersonaDialog::ClearSearchResults()
 {
+// for VCL to be able to destroy bitmaps
+SolarMutexGuard aGuard;
 m_vPersonaSettings.clear();
 m_aSelectedPersona.clear();
 for(VclPtr & nIndex : m_vResultList)
@@ -770,14 +772,14 @@ void SearchAndParseThread::execute()
 continue;
 }
 INetURLObject aURLObj( sPreviewFile );
+// for VCL to be able to create bitmaps / do visual changes in the 
thread
+SolarMutexGuard aGuard;
 aFilter.ImportGraphic( aGraphic, aURLObj );
 Bitmap aBmp = aGraphic.GetBitmap();
 
 if( !m_bExecute )
 return;
 
-// for VCL to be able to do visual changes in the thread
-SolarMutexGuard aGuard;
 m_pPersonaDialog->SetImages( Image( aBmp ), nIndex++ );
 m_pPersonaDialog->setOptimalLayoutSize();
 m_pPersonaDialog->AddPersonaSetting( aPersonaSetting );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-qa] REMINDER: First Bug Hunting Session for LibreOffice 6.1. Tomorrow Friday, April 27.

2018-04-26 Thread Xisco Fauli
LibreOffice 6.1 is due to be released in mid August 2018
,
with many new features (those already implemented are summarized on the
release notes page
, with much more
still to come).

In order to find, report and triage bugs, the Quality Assurance (QA)
community is organizing the first Bug Hunting Session for LibreOffice
6.1 on *Friday, April 27, 2018*. All details are available on the
specific wiki page.


In order to find, report and triage bugs, the tests during the First Bug
Hunting Session will be performed on the first Alpha version of
LibreOffice 6.1, which will be available on the pre-releases server

on the day of the event. Builds will be available for Linux (DEB and
RPM), macOS and Windows, and can be run in parallel with the production
version – so you can test without affecting your existing stable
installation.

Mentors

will be available on April 27th 2018, from *8AM UTC to 8PM UTC* for
questions or help in the IRC channel: #libreoffice-qa
 (connect via webchat
) and
its Telegram bridge . Of course, hunting
bugs will be possible also on other days, as the builds of this
particular Alpha release (LibreOffice 6.1.0 Alpha1) will be available
until the end of May.

During the day there will be two dedicated sessions

focus on two of the tenders

implemented in LibreOffice 6.1: The first to test the improvements on
the image handling

between 10AM UTC and 12AM UTC, and the second to test the HSQLDB import
filter for firebird

between 14PM UTC and 16PM UTC.

-- 
Xisco Faulí
Libreoffice QA Team
IRC: x1sc0

___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: https://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

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

2018-04-26 Thread Sophia Schröder
 source/text/shared/01/06140400.xhp   |2 +-
 source/text/shared/optionen/01010400.xhp |   16 +++-
 2 files changed, 8 insertions(+), 10 deletions(-)

New commits:
commit ee3eb62b553466da7572944643485a83d18cd78c
Author: Sophia Schröder 
Date:   Thu Apr 26 14:43:59 2018 +0100

Fix typos reported by Steen Ronnow and Necdet Yucel

and some others findings in this source files

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

diff --git a/source/text/shared/01/06140400.xhp 
b/source/text/shared/01/06140400.xhp
index 92110b7c9..a13ba33f4 100644
--- a/source/text/shared/01/06140400.xhp
+++ b/source/text/shared/01/06140400.xhp
@@ -49,7 +49,7 @@
 Location
 Select 
the location where the toolbar is to be attached. If attached to a %PRODUCTNAME 
module, the toolbar is available for all files opened in that module. If 
attached to the file, the toolbar will be available only when that file is 
opened and active.
 Toolbar
-Select 
the toolbar where the customization is to be applied. The current ser of 
functions is displayed in the box below.
+Select 
the toolbar where the customization is to be applied. The current set of 
functions is displayed in the box below.
 Add
 Click 
on the Add button to add a new toolbar.
 Remove
diff --git a/source/text/shared/optionen/01010400.xhp 
b/source/text/shared/optionen/01010400.xhp
index e628ce5ad..522ba85d8 100644
--- a/source/text/shared/optionen/01010400.xhp
+++ b/source/text/shared/optionen/01010400.xhp
@@ -1,6 +1,6 @@
 
 
-   
+
 
- 
-   
+
 
 
 Writing Aids
@@ -49,8 +48,8 @@
 
 Available Language Modules
 Contains the installed language 
modules.
-A language 
module can contain one, two or three submodules: Spellcheck, hyphenation and 
thesaurus. Each sub-module can be available in one or more languages. If you 
click in front of the name of the module, you activate all the available 
sub-modules simultaneously. If you remove a set mark, you deactivate all the 
available sub-modules simultaneously. If you wish to activate or deactivate 
individual sub-modules, click the Edit button to open the Edit 
Modules dialog.
-The configuration 
allows for two different directories: one folder where the user has write 
permissions, and one without write permissions. The user can only edit and 
delete the user dictionaries that are located in the writable path. Other 
dictionaries can be read only.
+A language 
module can contain one, two or three submodules: Spellcheck, hyphenation and 
thesaurus. Each sub-module can be available in one or more languages. If you 
click in front of the name of the module, you activate all the available 
sub-modules simultaneously. If you remove a set mark, you deactivate all the 
available sub-modules simultaneously. If you wish to activate or deactivate 
individual sub-modules, click the Edit button to open the Edit 
Modules dialog.
+The configuration 
allows two different directories: one folder where the user has write 
permissions, and one without write permissions. The user can only edit and 
delete the user dictionaries that are located in the writable path. Other 
dictionaries can be read only.
 
 Edit
 To edit a language module, select it 
and click Edit. The Edit 
Modules dialog appears.
@@ -78,12 +77,11 @@
 Opens the Edit custom 
dictionary dialog, in which you can add to your custom dictionary or 
edit existing entries.
 
 In the Edit Custom Dictionary dialog you have the option 
to enter new terms or edit existing entries. If you edit an exception 
dictionary, the dialog has the added facility of defining an exception for a 
word. During the spellcheck this exception is then listed as a 
suggestion.
-When a 
dictionary is edited, a check is made on the status of the file. If the file is 
write-protected, it cannot be changed. The buttons New and 
Delete are then deactivated. 
+When a 
dictionary is edited, a check is made on the status of the file. If the file is 
write-protected, it cannot be changed. The buttons New and 
Delete are then deactivated.
 
 Book
 Specifies the book to be 
edited.
-The IgnoreAllList (All) includes all words that have 
been marked with Ignore during spellcheck. This list is valid only 
for the current spellcheck. 
-
+The IgnoreAllList (All) includes all words that have 
been marked with Ignore during spellcheck. This list is valid only 
for the current spellcheck.
 The 
IgnoreAllList entry cannot be selected and cannot be deleted. Only 
the words included as content can be deleted. This happens automatically each 
time that $[officename] is closed.
 
 Language
@@ -97,7 +95,7 @@
 This input field is only available if 
you are editing an exception dictionary or a language-dependent custom 
dictionary. In exception dictionaries, the field shows the alternative 

[Libreoffice-commits] core.git: helpcontent2

2018-04-26 Thread Sophia Schröder
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d482ecdfcf3b30fece662270cc1a8ea5c24cb226
Author: Sophia Schröder 
Date:   Thu Apr 26 14:43:59 2018 +0100

Updated core
Project: help  ee3eb62b553466da7572944643485a83d18cd78c

Fix typos reported by Steen Ronnow and Necdet Yucel

and some others findings in this source files

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

diff --git a/helpcontent2 b/helpcontent2
index 8bca37f6c6f7..ee3eb62b5534 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 8bca37f6c6f708fc5f8c1eb4938648e4f5324d4c
+Subproject commit ee3eb62b553466da7572944643485a83d18cd78c
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117198] Missing non-breaking space for French punctuation

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

--- Comment #4 from Gerhard Weydt  ---
Hi Patrice,

I assume that you meant: 
Expected Results:
2. « test »
3. « test »
otherwise expected would be as actual and all would be OK.

And you do not need a french environment to test it, it is sufficient to set
the language of the paragraph to French; this will make tests by people who do
not use  a french environment normally (and would have to install the language
package first) much easier.

I tested this on Windows, and I have used special characters or the clipboard
to simulate the keys for the guillemets available for you. And I tested it in
the french environment too, to be sure if there's a difference. There is none.

So I set the status to NEW.

Version: 6.0.2.1
Build ID: f7f06a8f319e4b62f9bc5095aa112a65d2f3ac89
Threads CPU : 4; OS : Windows 10.0; UI Render : par défaut; 
Locale : de-DE (de_DE); 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 117167] Not enough space for the "Slide XX of YY" string in impress

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

--- Comment #10 from Buovjaga  ---
(In reply to Jim Raykowski from comment #9)
> Not reproduced with build from yesterdays master
> 
> Version: 6.1.0.0.alpha1+
> Build ID: 653e58f9eb3d4ee61d8103993cdff2660c9127a5
> CPU threads: 4; OS: Linux 4.13; UI render: default; VCL: gtk2; 
> Locale: en-US (en_US.UTF-8); Calc: group

Ok, mystery solved: in safe mode the problem disappeared for me in my master
Linux build, so it was because of stale configs!

However, I still see the problem in Windows, with the just-built alpha1:
Version: 6.1.0.0.alpha1 (x64)
Build ID: cb47f0d320994e001bc38dc2ee9b7d957b15e6ab
CPU threads: 4; OS: Windows 10.0; UI render: default; 
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 117261] External Forms: Connection to database is lost when pressing "Save" after input data

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

rob...@familiegrosskopf.de changed:

   What|Removed |Added

   Keywords||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 117261] New: External Forms: Connection to database is lost when pressing "Save" after input data

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

Bug ID: 117261
   Summary: External Forms: Connection to database is lost when
pressing "Save" after input data
   Product: LibreOffice
   Version: 5.3.0.3 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rob...@familiegrosskopf.de

Created attachment 141661
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141661=edit
Unzip the attached Zip. Open the external form. Rest: See bugdescription.

- Unzip the attached folder. It contains a database and a external Writer-form.
- Open the Writer-form.
- Change some data, goto next row. Data will be saved.
- Close the form. You will be asked if you wish to save your document. You
haven't changed anything, what should be save, butt press "Save".
Form will be closed.
- Reopen the form.
The connection to the database will be lost.

This bug appears first here with LO 5.3.0.3 on OpenSUSE 42.3 64bit rpm Linux.
Works without destroying the connection to the database in LO 5.2.5.1 (last
installed version from LO 5.2 here).
This buggy behavior could be reproduced also with LO 5.4.6.2 and LO 6.0.4.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 106637] FILEOPEN: RTF table row height too big

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

--- Comment #9 from Ari Latvala  ---
Problem still exist on LibreOffice 6.0.3 at 64-bit Windows 10 on RTF version.
DOC version of the same document looks correct.

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


[Libreoffice-bugs] [Bug 117167] Not enough space for the "Slide XX of YY" string in impress

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

--- Comment #9 from Jim Raykowski  ---
Not reproduced with build from yesterdays master

Version: 6.1.0.0.alpha1+
Build ID: 653e58f9eb3d4ee61d8103993cdff2660c9127a5
CPU threads: 4; OS: Linux 4.13; UI render: default; VCL: gtk2; 
Locale: en-US (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 117260] FILEOPEN: DOC Extra page breaks before and after 2 column section

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

--- Comment #2 from Ari Latvala  ---
Problem still exists on the latest LibreOffice 6.0.3.

Version: 6.0.3.2 (x64)
Build ID: 8f48d515416608e3a835360314dac7e47fd0b821
CPU threads: 2; OS: Windows 10.0; UI render: default; 
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 117214] Impressão de texto em preto apenas não funciona se utilizar o tamanho do papel em A5

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

--- Comment #1 from Thomas Lendo  ---
Please file your bug report in English. Otherwise most of the Bugzilla users
can't help and we must close this report. Thank you.

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


[Libreoffice-bugs] [Bug 117260] FILEOPEN: DOC Extra page breaks before and after 2 column section

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

--- Comment #1 from Ari Latvala  ---
Created attachment 141660
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141660=edit
RTF version does not add page breaks but has too big checkboxes messing layout

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


[Libreoffice-bugs] [Bug 117260] New: FILEOPEN: DOC Extra page breaks before and after 2 column section

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

Bug ID: 117260
   Summary: FILEOPEN: DOC Extra page breaks before and after 2
column section
   Product: LibreOffice
   Version: 3.5.0 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dsik...@hotmail.com

Created attachment 141659
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141659=edit
DOC version having extra page breaks

Imported "Astutussopimus" Word DOC version (attached) from
https://www.kissaliitto.fi/lomakkeet/kasvattaja -page adds extra page breaks
before and after the 2 column section. Problem does not exist on RTF version
and PDF version shows the expected layout.

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


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

2018-04-26 Thread Michael Meeks
 sw/source/uibase/shells/textsh.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit f8317f97baf0d450500ba70d34401ae3ba959eed
Author: Michael Meeks 
Date:   Thu Apr 26 19:08:53 2018 +0100

Use async dialog path for format columns.

Change-Id: I7097abd68b5921697d1d5f39f5e81ac961b61226
Reviewed-on: https://gerrit.libreoffice.org/53538
Reviewed-by: Jan Holesovsky 
Tested-by: Jan Holesovsky 

diff --git a/sw/source/uibase/shells/textsh.cxx 
b/sw/source/uibase/shells/textsh.cxx
index e61436d47bd2..ed2273d314fa 100644
--- a/sw/source/uibase/shells/textsh.cxx
+++ b/sw/source/uibase/shells/textsh.cxx
@@ -524,9 +524,9 @@ void SwTextShell::ExecInsert(SfxRequest )
 {
 SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();
 assert(pFact && "Dialog creation failed!");
-ScopedVclPtr 
pColDlg(pFact->CreateSwColumnDialog(GetView().GetWindow(), rSh));
+VclPtr 
pColDlg(pFact->CreateSwColumnDialog(GetView().GetWindow(), rSh));
 assert(pColDlg && "Dialog creation failed!");
-pColDlg->Execute();
+pColDlg->StartExecuteAsync([](sal_Int32 /*nResult*/){});
 }
 break;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.3' - sw/source

2018-04-26 Thread Michael Meeks
 sw/source/uibase/shells/textsh.cxx |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 108bbd078c7b91fabc8cb2eb1976fe8973493193
Author: Michael Meeks 
Date:   Thu Apr 26 19:08:53 2018 +0100

Use async dialog path for format columns.

Change-Id: I7097abd68b5921697d1d5f39f5e81ac961b61226
Reviewed-on: https://gerrit.libreoffice.org/53539
Reviewed-by: Jan Holesovsky 
Tested-by: Jan Holesovsky 

diff --git a/sw/source/uibase/shells/textsh.cxx 
b/sw/source/uibase/shells/textsh.cxx
index ca6dc13eaf39..3d0172219d11 100644
--- a/sw/source/uibase/shells/textsh.cxx
+++ b/sw/source/uibase/shells/textsh.cxx
@@ -531,10 +531,10 @@ void SwTextShell::ExecInsert(SfxRequest )
 case FN_FORMAT_COLUMN :
 {
 SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();
-OSL_ENSURE(pFact, "Dialog creation failed!");
-ScopedVclPtr 
pColDlg(pFact->CreateVclAbstractDialog( GetView().GetWindow(), rSh, 
DLG_COLUMN));
-OSL_ENSURE(pColDlg, "Dialog creation failed!");
-pColDlg->Execute();
+OSL_ENSURE(pFact && "Dialog creation failed!");
+VclPtr pColDlg(pFact->CreateVclAbstractDialog( 
GetView().GetWindow(), rSh, DLG_COLUMN));
+assert(pColDlg && "Dialog creation failed!");
+pColDlg->StartExecuteAsync([](sal_Int32 /*nResult*/){});
 }
 break;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117234] FILTER: Typing in the autofilter box on a long list causes keyboard entry to be incorrectly entered

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

David Mcgowan  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 117234] FILTER: Typing in the autofilter box on a long list causes keyboard entry to be incorrectly entered

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

--- Comment #3 from David Mcgowan  ---
Created attachment 141658
  --> https://bugs.documentfoundation.org/attachment.cgi?id=141658=edit
sample data

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


[Libreoffice-bugs] [Bug 117234] FILTER: Typing in the autofilter box on a long list causes keyboard entry to be incorrectly entered

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

--- Comment #2 from David Mcgowan  ---
Yeah, ive included a csv of sample data, hashed, except for the portion after
the @ on emails ending guest.booking.com 

if you autofilter this csv and try typing in "booking" you will get the bug if
it is reproducible.

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


[Libreoffice-commits] online.git: loleaflet/src

2018-04-26 Thread Jan Holesovsky
 loleaflet/src/core/Socket.js |   14 +++---
 1 file changed, 11 insertions(+), 3 deletions(-)

New commits:
commit 27a4f70a555a7d8cb597c0c33fe37e8abab0a9ef
Author: Jan Holesovsky 
Date:   Wed Apr 25 17:23:03 2018 +0200

SendMessage needs to accept Blob too.

Make the condition more readable when at that.

Change-Id: Ibcabfc2b57eb4ebd8f1ad8bb5ee71010e52e8e3c
Reviewed-on: https://gerrit.libreoffice.org/53525
Reviewed-by: Michael Meeks 
Tested-by: Michael Meeks 

diff --git a/loleaflet/src/core/Socket.js b/loleaflet/src/core/Socket.js
index edf143af6..4275a3d7c 100644
--- a/loleaflet/src/core/Socket.js
+++ b/loleaflet/src/core/Socket.js
@@ -87,12 +87,20 @@ L.Socket = L.Class.extend({
},
 
sendMessage: function (msg, coords) {
-   if ((!msg.startsWith('useractive') && 
!msg.startsWith('userinactive') && !this._map._active) ||
-   this._map._fatal) {
-   // Avoid communicating when we're inactive.
+   if (this._map._fatal) {
+   // Avoid communicating when we're in fatal state
return;
}
 
+   if (!this._map._active) {
+   // Avoid communicating when we're inactive.
+   if (typeof msg !== 'string')
+   return;
+
+   if (!msg.startsWith('useractive') && 
!msg.startsWith('userinactive'))
+   return;
+   }
+
var socketState = this.socket.readyState;
if (socketState === 2 || socketState === 3) {
this._map.loadDocument();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-04-26 Thread Justin Luth
 sw/qa/core/data/ww8/pass/tdf117129_dxagoal0.doc |binary
 sw/source/filter/ww8/ww8graf2.cxx   |3 ++-
 2 files changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 9e450605d8a5675a8bbabfffe167a72286f1731a
Author: Justin Luth 
Date:   Mon Apr 23 09:27:00 2018 +0300

tdf#117129 ww8import: prevent divide-by-zero

Before commit ffc3358515799057e72379b76a1165c6ea5a9bd1 for
tdf#75539, the divisor was hard-coded at 1000. The preceeding code
also notes that an undefined relativeWidth is forced to 1000.
So, on an invalid divisor, revert to previous behaviour.

Change-Id: I40210194eec39682d9ab3ce68268d343af16e2b1
Reviewed-on: https://gerrit.libreoffice.org/53308
Reviewed-by: Michael Meeks 
Tested-by: Michael Meeks 
Tested-by: Jenkins 
Reviewed-by: Justin Luth 

diff --git a/sw/qa/core/data/ww8/pass/tdf117129_dxagoal0.doc 
b/sw/qa/core/data/ww8/pass/tdf117129_dxagoal0.doc
new file mode 100644
index ..9fca8ef048ae
Binary files /dev/null and b/sw/qa/core/data/ww8/pass/tdf117129_dxagoal0.doc 
differ
diff --git a/sw/source/filter/ww8/ww8graf2.cxx 
b/sw/source/filter/ww8/ww8graf2.cxx
index 6cda45844ac1..2998c26f93f3 100644
--- a/sw/source/filter/ww8/ww8graf2.cxx
+++ b/sw/source/filter/ww8/ww8graf2.cxx
@@ -584,10 +584,11 @@ SwFrameFormat* SwWW8ImplReader::ImportGraf(SdrTextObj 
const * pTextObj,
 relativeWidth = pRecord->isHorizontalRule ? 1000 : 0;
 if( relativeWidth != 0 )
 {
+const sal_Int16 nScale = aPic.dxaGoal ? aPic.dxaGoal : 
1000;
 aPic.mx = msword_cast(
 m_aSectionManager.GetPageWidth() -
 m_aSectionManager.GetPageRight() -
-m_aSectionManager.GetPageLeft()) * relativeWidth / 
aPic.dxaGoal;
+m_aSectionManager.GetPageLeft()) * relativeWidth / 
nScale;
 aPD = WW8PicDesc( aPic );
 // This SetSnapRect() call adjusts the size of the
 // object itself, no idea why it's this call (or even
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96297] FILEOPEN: checkboxes too big on RTF vs PDF and DOC version causing incorrect layout

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

Ari Latvala  changed:

   What|Removed |Added

Summary|FILEOPEN: checkboxes too|FILEOPEN: checkboxes too
   |big on DOC and RTF vs PDF   |big on RTF vs PDF and DOC
   |version causing incorrect   |version causing incorrect
   |layout  |layout

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


[Libreoffice-bugs] [Bug 96297] FILEOPEN: checkboxes too big on DOC and RTF vs PDF version causing incorrect layout

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

--- Comment #8 from Ari Latvala  ---
Bug is still present on RTF version but not any more on DOC. RTF version has
too big check boxes, DOC version then again adds extra page breaks but has
correct check box size. Refer to bug 98321.

Version: 6.0.3.2 (x64)
Build ID: 8f48d515416608e3a835360314dac7e47fd0b821
CPU threads: 2; OS: Windows 10.0; UI render: default; 
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 117233] Editing: Numbering restarts from 1 where it should continue from previous list

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

--- Comment #9 from mueslifl...@nexgo.de ---
(In reply to Timur from comment #8)
> You say "Select the first three paras" but that's not precise enough. 
> If we do it up-bottom then it starts a new list and looks like restart from
> 1. 
> If we do it bottom-up then it continues previous list. 
What a surprise. I confirm I can reproduce.

> So, I did reproduce but I don't consider this a bug. If you know what you're
> doing, LO has options. Problem is how to be aware of the options. 

There are two things for us to consider:
1. When you select top-down, is it correct that numbering restarts at 1
*without* the Restart numbering property of the fourth paragraph being set?
Apparently, there is another, hidden property of the fourth paragraph that
makes the numbering restart. IMHO, such hidden properties should be avoided and
should be considered a (user interface) bug. And the behavior in my Step 6 is
also not right in my opinion.

2. I wasn't aware that selections are directional, i.e., that the direction of
a selection makes a difference in LO. I don't know of other editors that make
that same difference, maybe I'm missing something here. Is this the only place
in LO where selection direction makes a difference?
Should we make this difference? At least for me it led to unexpected behavior.
I agree, it is kind of neat when you know the difference, when you are a heavy
user. But I would venture to say that most users won't and even a tool tip
won't change that significantly. I am not entirely sure what I would recommend.
Definitely, the Restart numbering property should be heeded. Maybe someone has
an idea how we could make the behavior simpler and more obvious, maybe some
nice visual cue. For example, there could be a handle at the end of the
previous numbered set that could be pulled down across the following paras to
create consecutive numbers.

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


[Libreoffice-bugs] [Bug 65754] Alt+Tab Switching Icon Has Low Resolution and Lacks Transparency because _NET_WM_ICON is set to a 48x48 raster image

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

--- Comment #8 from Nate Graham  ---
Thanks, and sorry to be a pain in the butt!

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


[Libreoffice-bugs] [Bug 117259] Visual indicator of open tab in Tabbed bar inspired in Quantum theme from Firefox

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

kompilainenn <79045_79...@mail.ru> changed:

   What|Removed |Added

   Keywords||needsUXEval

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


  1   2   3   4   >