[Libreoffice-bugs] [Bug 34212] Accented Characters and Umlauts are missing with Type1 fonts

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=34212

--- Comment #22 from przekop  ---
Try to copy any text with Polish characters (1ą 2ż 3ź 4ć 5ó 6ł) and paste in
field form. Most of them disappear after leaving a field.

5.3.0.0.beta1
Build ID: 690f553ecb3efd19143acbf01f3af4e289e94536

-- 
You are receiving this mail because:
You 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-5-3' - xmlsecurity/inc xmlsecurity/Library_xmlsecurity.mk xmlsecurity/qa xmlsecurity/source

2016-12-01 Thread Miklos Vajna
 xmlsecurity/Library_xmlsecurity.mk|1 
 xmlsecurity/inc/sigstruct.hxx |3 
 xmlsecurity/qa/unit/pdfsigning/data/cr-comment.pdf| 4480 ++
 xmlsecurity/qa/unit/pdfsigning/data/dict-bool.pdf |binary
 xmlsecurity/qa/unit/pdfsigning/data/good-non-detached.pdf |binary
 xmlsecurity/qa/unit/pdfsigning/data/no-eof.pdf|binary
 xmlsecurity/qa/unit/pdfsigning/pdfsigning.cxx |   68 
 xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx|3 
 xmlsecurity/source/pdfio/pdfdocument.cxx  |  257 
 9 files changed, 4794 insertions(+), 18 deletions(-)

New commits:
commit 1a567a548bc369551abdfcb4016dcd8d1ae0b85e
Author: Miklos Vajna 
Date:   Wed Nov 30 17:00:58 2016 +0100

xmlsecurity PDF verify: various fixes

This is a combination of 6 commits:

1) xmlsecurity PDF verify: look for the signingCertificateV2 attribute

This is a required part of the PAdES spec, but so far we only wrote it.
As a start just expose if the attribute exists or not.

(cherry picked from commit bef9ba5e062b340b1835db94620f7ea4fa0b123b)

2) xmlsecurity: don't write unchanged signatures back to the file

It's not useful, OTOH it can happen that something goes wrong and the
result does not match the original.

One situation when this can happen is when non-XAdES signatures are
read, but the checkbox to write XAdES signature is enabled.

(cherry picked from commit 7226ee0586191a495f427c2adbde68b1a47d2dbc)

3) xmlsecurity PDF verify: support non-detached signatures

And a couple of other changes to accept the bugdoc from
.

(cherry picked from commit 055fd58711d57af4d96214aebd71b713303d5527)

4) xmlsecurity PDF verify: tolerate missing %%EOF in incremental updates

This is broken, but work it around to avoid an infinite loop.

(cherry picked from commit 0233ff952372e9a15edf92beccba463d74c46c33)

5) xmlsecurity PDF verify: CR is also a terminator of a comment

If we skip to the first NL, then we start tokenizing some XML as PDF
data and soon error out due to an unexpected keyword.

(cherry picked from commit 9b526a43e10a565875c879063f6df4bfe2ba9a80)

6) xmlsecurity PDF verify: handle boolean type as dictionary value

This caused not finding the length of a stream -> could not actually
verify signature.

(cherry picked from commit c623a9f846c713b19a0d58337af4f4354aeffa6e)

Change-Id: I696b6da49525eb53f7575c27f619d2116be51f1d
Reviewed-on: https://gerrit.libreoffice.org/31503
Tested-by: Jenkins 
Reviewed-by: Miklos Vajna 

diff --git a/xmlsecurity/Library_xmlsecurity.mk 
b/xmlsecurity/Library_xmlsecurity.mk
index 487011f..b84c691 100644
--- a/xmlsecurity/Library_xmlsecurity.mk
+++ b/xmlsecurity/Library_xmlsecurity.mk
@@ -81,6 +81,7 @@ $(eval $(call gb_Library_add_defs,xmlsecurity,\
 ))
 $(eval $(call gb_Library_use_externals,xmlsecurity,\
 nss3 \
+plc4 \
 ))
 endif # BUILD_TYPE=DESKTOP
 endif
diff --git a/xmlsecurity/inc/sigstruct.hxx b/xmlsecurity/inc/sigstruct.hxx
index ab455d5..c217352 100644
--- a/xmlsecurity/inc/sigstruct.hxx
+++ b/xmlsecurity/inc/sigstruct.hxx
@@ -104,12 +104,15 @@ struct SignatureInformation
 css::uno::Sequence aSignatureBytes;
 /// For PDF: digest format, from css::xml::crypto::DigestID
 sal_Int32 nDigestID;
+/// For PDF: has id-aa-signingCertificateV2 as a signed attribute.
+bool bHasSigningCertificate;
 
 SignatureInformation( sal_Int32 nId )
 {
 nSecurityId = nId;
 nStatus = css::xml::crypto::SecurityOperationStatus_UNKNOWN;
 nDigestID = 0;
+bHasSigningCertificate = false;
 }
 };
 
diff --git a/xmlsecurity/qa/unit/pdfsigning/data/cr-comment.pdf 
b/xmlsecurity/qa/unit/pdfsigning/data/cr-comment.pdf
new file mode 100644
index 000..b1aae07
--- /dev/null
+++ b/xmlsecurity/qa/unit/pdfsigning/data/cr-comment.pdf
@@ -0,0 +1,4480 @@
+%PDF-1.4
%âãÏÓ
+1 0 obj
<>>>
endobj
2 0 obj
<>stream
+
+
+   http://www.w3.org/1999/02/22-rdf-syntax-ns#;>
+  http://ns.adobe.com/xap/1.0/mm/;
+xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#;
+xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#;
+xmlns:stMfs="http://ns.adobe.com/xap/1.0/sType/ManifestItem#;>
+ 
uuid:e7f483a2-dbf7-4046-8848-508b776dd738
+ 
xmp.did:89321C534E266811A613EDAC20FB34D2
+ 
adobe:docid:indd:924fbc79-cadb-11de-af61-e97e2740acd1
+ proof:pdf
+ 
+
xmp.iid:88321C534E266811A613EDAC20FB34D2
+
adobe:docid:indd:924fbc79-cadb-11de-af61-e97e2740acd1
+

[Libreoffice-bugs] [Bug 104014] Pasting indexes between documents with same indexes, does not preserve the first one

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104014

Buovjaga  changed:

   What|Removed |Added

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

--- Comment #2 from Buovjaga  ---
Please add example documents or templates so we can quickly test.

Set to NEEDINFO.
Change back to UNCONFIRMED after you have provided the documents.

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


[Libreoffice-bugs] [Bug 104182] [VIEWING] Table of contents - create index for specified discontinued levels

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104182

Buovjaga  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.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-ux-advise] [Bug 104182] [VIEWING] Table of contents - create index for specified discontinued levels

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104182

Buovjaga  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org

-- 
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 104000] Writer media scan produces scrambled image

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104000

Buovjaga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #4 from Buovjaga  ---
Just to make sure, could you test with a fresh master build?

https://wiki.documentfoundation.org/Installing_in_parallel/Linux
http://dev-builds.libreoffice.org/daily/master/Linux-rpm_deb-x86_64@70-TDF-dbg/current/

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


[Libreoffice-bugs] [Bug 104124] This is not a bug report, rather a feature request.Tracing precedents/dependents in another sheet.

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104124

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||todven...@suomi24.fi
 Resolution|--- |DUPLICATE

--- Comment #1 from Buovjaga  ---


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

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


[Libreoffice-bugs] [Bug 63087] Detective "Trace Precedents" or "Trace Dependents" pointing to a different tab does not provide reference cell

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63087

Buovjaga  changed:

   What|Removed |Added

 CC||behera.an...@gmail.com

--- Comment #24 from Buovjaga  ---
*** Bug 104124 has been marked as a duplicate of this bug. ***

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


[Libreoffice-commits] online.git: common/Session.cpp common/UnitHTTP.hpp

2016-12-01 Thread Miklos Vajna
 common/Session.cpp  |1 -
 common/UnitHTTP.hpp |1 -
 2 files changed, 2 deletions(-)

New commits:
commit dd1dbaa7370c8d71d03499dc5ea160301ee3160e
Author: Miklos Vajna 
Date:   Fri Dec 2 08:16:40 2016 +0100

common: clean up redundant initializers for members

Change-Id: I7ee177acdc2521bc5b2d9fd0b0d3fa4947d6f2e2

diff --git a/common/Session.cpp b/common/Session.cpp
index 36bf79c..e1a3f36 100644
--- a/common/Session.cpp
+++ b/common/Session.cpp
@@ -60,7 +60,6 @@ LOOLSession::LOOLSession(const std::string& id, const Kind 
kind,
 _isActive(true),
 _lastActivityTime(std::chrono::steady_clock::now()),
 _isCloseFrame(false),
-_mutex(),
 _docPassword(""),
 _haveDocPassword(false),
 _isDocPasswordProtected(false)
diff --git a/common/UnitHTTP.hpp b/common/UnitHTTP.hpp
index 7765e47..e70af89 100644
--- a/common/UnitHTTP.hpp
+++ b/common/UnitHTTP.hpp
@@ -74,7 +74,6 @@ public:
 UnitHTTPServerRequest(UnitHTTPServerResponse& inResponse,
   const std::string& uri) :
 _response(inResponse),
-_clientAddress(),
 _serverAddress(MasterPortNumber)
 {
 setURI(uri);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


New Defects reported by Coverity Scan for LibreOffice

2016-12-01 Thread scan-admin

Hi,

Please find the latest report on new defect(s) introduced to LibreOffice found 
with Coverity Scan.

4 new defect(s) introduced to LibreOffice found with Coverity Scan.
8 defect(s), reported by Coverity Scan earlier, were marked fixed in the recent 
build analyzed by Coverity Scan.

New defect(s) Reported-by: Coverity Scan
Showing 4 of 4 defect(s)


** CID 1396676:  Uninitialized members  (UNINIT_CTOR)
/sc/source/ui/unoobj/styleuno.cxx: 956 in ScStyleObj::ScStyleObj(ScDocShell *, 
SfxStyleFamily, const rtl::OUString &)()



*** CID 1396676:  Uninitialized members  (UNINIT_CTOR)
/sc/source/ui/unoobj/styleuno.cxx: 956 in ScStyleObj::ScStyleObj(ScDocShell *, 
SfxStyleFamily, const rtl::OUString &)()
950 aStyleName( rName )
951 {
952 //  pDocShell ist Null, wenn per ServiceProvider erzeugt
953 
954 if (pDocShell)
955 pDocShell->GetDocument().AddUnoObject(*this);
>>> CID 1396676:  Uninitialized members  (UNINIT_CTOR)
>>> Non-static class member "pStyle_cached" is not initialized in this 
>>> constructor nor in any functions that it calls.
956 }
957 
958 void ScStyleObj::InitDoc( ScDocShell* pNewDocSh, const OUString& 
rNewName )
959 {
960 if ( pNewDocSh && !pDocShell )
961 {

** CID 1396675:  Null pointer dereferences  (NULL_RETURNS)
/vcl/unx/generic/fontmanager/fontmanager.cxx: 972 in 
psp::PrintFontManager::getFontFaceNumber(int) const()



*** CID 1396675:  Null pointer dereferences  (NULL_RETURNS)
/vcl/unx/generic/fontmanager/fontmanager.cxx: 972 in 
psp::PrintFontManager::getFontFaceNumber(int) const()
966 }
967 
968 int PrintFontManager::getFontFaceNumber( fontID nFontID ) const
969 {
970 int nRet = 0;
971 PrintFont* pFont = getFont( nFontID );
>>> CID 1396675:  Null pointer dereferences  (NULL_RETURNS)
>>> Dereferencing a null pointer "pFont".
972 nRet = pFont->m_nCollectionEntry;
973 if (nRet < 0)
974 nRet = 0;
975 return nRet;
976 }
977 

** CID 1396674:(DEADCODE)
/vcl/unx/generic/print/genpspgraphics.cxx: 608 in 
GenPspGraphics::DrawTextLayout(const CommonSalLayout &)()
/vcl/unx/generic/print/genpspgraphics.cxx: 619 in 
GenPspGraphics::DrawTextLayout(const CommonSalLayout &)()



*** CID 1396674:(DEADCODE)
/vcl/unx/generic/print/genpspgraphics.cxx: 608 in 
GenPspGraphics::DrawTextLayout(const CommonSalLayout &)()
602 long nUnitsPerPixel = rLayout.GetUnitsPerPixel();
603 const sal_Unicode* pText = nullptr;
604 int nMinCharPos = 0;
605 int nMaxCharPos = 0;
606 for( int nStart = 0;; )
607 {
>>> CID 1396674:(DEADCODE)
>>> Execution cannot reach the expression "aCharPosAry" inside this 
>>> statement: "nGlyphCount = rLayout->GetN...".
608 int nGlyphCount = rLayout.GetNextGlyphs( nMaxGlyphs, aGlyphAry, 
aPos, nStart, aWidthAry, pText ? aCharPosAry : nullptr );
609 if( !nGlyphCount )
610 break;
611 
612 DeviceCoordinate nXOffset = 0;
613 for( int i = 0; i < nGlyphCount; ++i )
/vcl/unx/generic/print/genpspgraphics.cxx: 619 in 
GenPspGraphics::DrawTextLayout(const CommonSalLayout &)()
613 for( int i = 0; i < nGlyphCount; ++i )
614 {
615 nXOffset += aWidthAry[ i ];
616 aIdxAry[ i ] = nXOffset / nUnitsPerPixel;
617 sal_GlyphId aGlyphId = aGlyphAry[i] & (GF_IDXMASK | 
GF_ROTMASK);
618 if( pText )
>>> CID 1396674:(DEADCODE)
>>> Execution cannot reach the expression "aUnicodes[i]" inside this 
>>> statement: "aUnicodes[i] = ((aCharPosAr...".
619 aUnicodes[i] = (aCharPosAry[i] >= nMinCharPos && 
aCharPosAry[i] <= nMaxCharPos) ? pText[ aCharPosAry[i] ] : 0;
620 else
621 aUnicodes[i] = 0;
622 aGlyphAry[i] = aGlyphId;
623 }
624 

** CID 1396673:  Error handling issues  (CHECKED_RETURN)
/sw/source/uibase/shells/annotsh.cxx: 1537 in 
SwAnnotationShell::ExecUndo(SfxRequest &)()



*** CID 1396673:  Error handling issues  (CHECKED_RETURN)
/sw/source/uibase/shells/annotsh.cxx: 1537 in 
SwAnnotationShell::ExecUndo(SfxRequest &)()
1531 
1532 break;
1533 }
1534 
1535 case SID_REDO:
1536 {
>>> CID 1396673:  Error handling issues  (CHECKED_RETURN)
>>> Calling "GetFirstRedoInfo" without checking return value (as is done 
>>> elsewhere 5 out of 6 times).
1537 

[Libreoffice-bugs] [Bug 104338] New: Issue on 2 column format header inside a table under .doc format

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104338

Bug ID: 104338
   Summary: Issue on 2 column format header inside a table under
.doc format
   Product: LibreOffice
   Version: 5.2.3.3 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: periegutier...@outlook.ph

Created attachment 129222
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129222=edit
The test file both in odt and doc format

Issue on the unsaved header document format under doc type. 

to recreate the issue:
1. Open writer
2. create a 1 row/column table in the header. 
3. type text
4. highlight the text 
5. go to Format
6. choose coloumn 
7. choose 2 columns and apply to selection 
8.1 save in doc
8.2 save again but in odt 


a sample of 2 files have been attached

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

2016-12-01 Thread Julien Nabet
 xmloff/source/draw/shapeimport.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 793ca1688ffa07b377d9e93b6ed0aa34cb0df30d
Author: Julien Nabet 
Date:   Thu Dec 1 21:16:45 2016 +0100

Remove dup line in aGroupShapeElemTokenMap (xmloff)

Change-Id: Iac0194046a9a2aae25f7976df6f845f6f909425f
Reviewed-on: https://gerrit.libreoffice.org/31507
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/xmloff/source/draw/shapeimport.cxx 
b/xmloff/source/draw/shapeimport.cxx
index 121ab34..2016393 100644
--- a/xmloff/source/draw/shapeimport.cxx
+++ b/xmloff/source/draw/shapeimport.cxx
@@ -189,7 +189,6 @@ const SvXMLTokenMap& 
XMLShapeImportHelper::GetGroupShapeElemTokenMap()
 { XML_NAMESPACE_DR3D,   XML_SCENE,  
XML_TOK_GROUP_3DSCENE   },
 
 { XML_NAMESPACE_DRAW,   XML_FRAME,  
XML_TOK_GROUP_FRAME },
-{ XML_NAMESPACE_DRAW,   XML_CUSTOM_SHAPE,   
XML_TOK_GROUP_CUSTOM_SHAPE  },
 
 { XML_NAMESPACE_DRAW,   XML_CUSTOM_SHAPE,   
XML_TOK_GROUP_CUSTOM_SHAPE  },
 { XML_NAMESPACE_OFFICE, XML_ANNOTATION, 
XML_TOK_GROUP_ANNOTATION},
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-12-01 Thread Julien Nabet
 sw/source/core/doc/DocumentFieldsManager.cxx |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 12c75e0c3393044438bfa2c92c3f9b29d443021e
Author: Julien Nabet 
Date:   Fri Dec 2 07:25:20 2016 +0100

-Werror=maybe-uninitialized

Change-Id: I28804bb7b668d5c92bd61a8539860e2a8dddf8de
Reviewed-on: https://gerrit.libreoffice.org/31522
Reviewed-by: Julien Nabet 
Tested-by: Julien Nabet 

diff --git a/sw/source/core/doc/DocumentFieldsManager.cxx 
b/sw/source/core/doc/DocumentFieldsManager.cxx
index 1053a9c..85e28a8 100644
--- a/sw/source/core/doc/DocumentFieldsManager.cxx
+++ b/sw/source/core/doc/DocumentFieldsManager.cxx
@@ -595,8 +595,10 @@ void DocumentFieldsManager::UpdateTableFields( 
SfxPoolItem* pHt )
 // table where _rDoc field is located
 const SwTableNode* pTableNd;
 const SwTextNode& rTextNd = 
pFormatField->GetTextField()->GetTextNode();
-if( !rTextNd.GetNodes().IsDocNodes() ||
-nullptr == ( pTableNd = rTextNd.FindTableNode() ) )
+if(!rTextNd.GetNodes().IsDocNodes())
+continue;
+pTableNd = rTextNd.FindTableNode();
+if (pTableNd == nullptr)
 continue;
 
 switch( pUpdateField->m_eFlags )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 92917] Libreoffice Impress(x86-64) on Windows 8.1 crash when I open .ppsx files

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92917

--- Comment #5 from periegutier...@outlook.ph ---
This is to confirm that the issue is still existing for Windows 8.1Pro 64 bit
Libreoffice 5.2.3.3 (x64)

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

2016-12-01 Thread Noel Grandin
 xmloff/inc/txtfldi.hxx   |   43 ---
 xmloff/inc/txtvfldi.hxx  |   39 ---
 xmloff/source/draw/XMLImageMapContext.cxx|   41 ---
 xmloff/source/draw/sdxmlexp.cxx  |8 
 xmloff/source/draw/ximppage.cxx  |3 
 xmloff/source/draw/ximpshap.cxx  |6 
 xmloff/source/forms/elementimport.cxx|2 
 xmloff/source/forms/formcellbinding.cxx  |2 
 xmloff/source/table/XMLTableImport.cxx   |3 
 xmloff/source/text/XMLAutoMarkFileContext.cxx|5 
 xmloff/source/text/XMLAutoMarkFileContext.hxx|3 
 xmloff/source/text/XMLFootnoteImportContext.cxx  |3 
 xmloff/source/text/XMLFootnoteImportContext.hxx  |2 
 xmloff/source/text/XMLIndexAlphabeticalSourceContext.cxx |   33 --
 xmloff/source/text/XMLIndexAlphabeticalSourceContext.hxx |   12 
 xmloff/source/text/XMLIndexBibliographyEntryContext.cxx  |4 
 xmloff/source/text/XMLIndexChapterInfoEntryContext.cxx   |8 
 xmloff/source/text/XMLIndexObjectSourceContext.cxx   |   15 -
 xmloff/source/text/XMLIndexObjectSourceContext.hxx   |6 
 xmloff/source/text/XMLIndexSimpleEntryContext.cxx|4 
 xmloff/source/text/XMLIndexSimpleEntryContext.hxx|2 
 xmloff/source/text/XMLIndexSourceBaseContext.cxx |6 
 xmloff/source/text/XMLIndexSourceBaseContext.hxx |4 
 xmloff/source/text/XMLIndexSpanEntryContext.cxx  |4 
 xmloff/source/text/XMLIndexTOCContext.cxx|6 
 xmloff/source/text/XMLIndexTOCContext.hxx|3 
 xmloff/source/text/XMLIndexTOCSourceContext.cxx  |   12 
 xmloff/source/text/XMLIndexTOCSourceContext.hxx  |5 
 xmloff/source/text/XMLIndexTOCStylesContext.cxx  |3 
 xmloff/source/text/XMLIndexTOCStylesContext.hxx  |2 
 xmloff/source/text/XMLIndexTabStopEntryContext.cxx   |8 
 xmloff/source/text/XMLIndexTableSourceContext.cxx|9 
 xmloff/source/text/XMLIndexTableSourceContext.hxx|4 
 xmloff/source/text/XMLIndexTemplateContext.cxx   |   31 --
 xmloff/source/text/XMLIndexTemplateContext.hxx   |   26 --
 xmloff/source/text/XMLIndexTitleTemplateContext.cxx  |6 
 xmloff/source/text/XMLIndexTitleTemplateContext.hxx  |4 
 xmloff/source/text/XMLIndexUserSourceContext.cxx |   24 -
 xmloff/source/text/XMLIndexUserSourceContext.hxx |9 
 xmloff/source/text/XMLLineNumberingExport.cxx|   35 --
 xmloff/source/text/XMLLineNumberingExport.hxx|   12 
 xmloff/source/text/XMLRedlineExport.cxx  |   89 ++-
 xmloff/source/text/XMLRedlineExport.hxx  |   22 -
 xmloff/source/text/XMLSectionExport.cxx  |  182 +--
 xmloff/source/text/XMLSectionExport.hxx  |   62 -
 xmloff/source/text/XMLSectionImportContext.cxx   |   21 -
 xmloff/source/text/XMLSectionImportContext.hxx   |8 
 xmloff/source/text/XMLSectionSourceDDEImportContext.cxx  |   16 -
 xmloff/source/text/XMLSectionSourceDDEImportContext.hxx  |5 
 xmloff/source/text/XMLTextFrameContext.cxx   |   97 ++-
 xmloff/source/text/XMLTextNumRuleInfo.cxx|   50 +---
 xmloff/source/text/XMLTextNumRuleInfo.hxx|   25 --
 xmloff/source/text/txtfldi.cxx   |  113 +++--
 xmloff/source/text/txtparae.cxx  |4 
 xmloff/source/text/txtparai.cxx  |   50 +---
 xmloff/source/text/txtvfldi.cxx  |  101 ++--
 56 files changed, 348 insertions(+), 954 deletions(-)

New commits:
commit 06eb947c1651cb623cd60d81b08281de4cc6a86b
Author: Noel Grandin 
Date:   Thu Dec 1 10:51:35 2016 +0200

inline some constant strings in xmloff (part1)

Change-Id: I7971f210ffb30bdd80a1adde2c286b4d092bd053
Reviewed-on: https://gerrit.libreoffice.org/31433
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/xmloff/inc/txtfldi.hxx b/xmloff/inc/txtfldi.hxx
index f818242..cc457c1 100644
--- a/xmloff/inc/txtfldi.hxx
+++ b/xmloff/inc/txtfldi.hxx
@@ -851,8 +851,6 @@ protected:
 /** import page variable fields () */
 class XMLPageVarGetFieldImportContext : public XMLTextFieldImportContext
 {
-const OUString sPropertyNumberingType;
-
 OUString sNumberFormat;
 OUString sLetterSync;
 
@@ -878,9 +876,6 @@ protected:
 /** import page variable fields () */
 class XMLPageVarSetFieldImportContext : public XMLTextFieldImportContext
 {
-const OUString sPropertyOn;
-const OUString sPropertyOffset;
-
 sal_Int16 nAdjust;
 bool bActive;
 
@@ -904,10 +899,6 @@ protected:
 /** import macro fields () */
 class 

[Libreoffice-bugs] [Bug 104322] Formulas in tables in Writer not actualized

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104322

--- Comment #5 from Butch  ---
@V Stuart Foote: Of course. 
But this behavior cannot be considered as desired. Deleting a value in a cell
should show effect in the same way as changing the value, i.e. immediately
after leaving the cell.

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


Re: Requiring HarfBuzz 0.9.42?

2016-12-01 Thread Khaled Hosny
On Mon, Nov 28, 2016 at 03:27:18PM +0200, Khaled Hosny wrote:
> I currently have code that depends on a feature and new API introduced
> in HarfBuzz 0.9.42. The API use is behind a build time check, but the
> code elsewhere really assumes the behaviour enabled by this API. So
> technically we can use lower HarfBuzz versions, but practically the
> result will be wrong in many cases.
> 
> Would it be OK to raise the required HarfBuzz version from 0.9.3 to
> 0.9.42 (both master and 5.3 are affected)?
> 
> Actually, checking HarfBuzz’s NEWS, looks like we will need at least
> 1.0.3 as there have been few bug fixes for the related functionality
> between 0.9.42 and 1.0.3.

As no one objected, here we go https://gerrit.libreoffice.org/#/c/31521,
and will cherry-pick to 5.3 afterwards.

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


[Libreoffice-bugs] [Bug 104337] New: Formatting, Editing, of highligh colour in .odf not displaying in Print or Print to file

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104337

Bug ID: 104337
   Summary: Formatting, Editing, of highligh colour in .odf not
displaying in Print or Print to file
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: carl.fletc...@opensuse.org

When using LO Draw to edit or adding highlighting to the .odg file
The .odg does not print highlighting
Neither does it transfer it if you export the .odg to PDF

Tested various distros

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

2016-12-01 Thread Julien Nabet
 sw/source/core/attr/cellatr.cxx |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 9e9f52ad17a73f353b372bcdc9971443b961d39a
Author: Julien Nabet 
Date:   Thu Dec 1 22:39:58 2016 +0100

-Werror=maybe-uninitialized

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

diff --git a/sw/source/core/attr/cellatr.cxx b/sw/source/core/attr/cellatr.cxx
index 9a99b65..6a0401b 100644
--- a/sw/source/core/attr/cellatr.cxx
+++ b/sw/source/core/attr/cellatr.cxx
@@ -115,8 +115,10 @@ void SwTableBoxFormula::ChangeState( const SfxPoolItem* 
pItem )
 // detect table that contains this attribute
 const SwTableNode* pTableNd;
 const SwNode* pNd = GetNodeOfFormula();
-if( pNd && >GetNodes() == >GetDoc()->GetNodes() &&
-nullptr != ( pTableNd = pNd->FindTableNode() ))
+if (!pNd || >GetNodes() != >GetDoc()->GetNodes())
+return;
+pTableNd = pNd->FindTableNode();
+if( pTableNd != nullptr )
 {
 switch( pUpdateField->m_eFlags )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104312] macOS: Severe lag on drawing canvas in "Draw"

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104312

--- Comment #8 from lae...@tdf.com ---
I noticed there is also the same initial delay for drawing a shape while in
Writer

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


[Libreoffice-bugs] [Bug 104198] Copy a column and then trying to quit Calc hangs

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104198

--- Comment #7 from Buovjaga  ---
(In reply to fiftyigfuci_f_mi from comment #6)
> I'm using libgtk-3-0:amd64   3.20.9-1ubuntu2

If possible, try to update to gtk 3.22 in your Ubuntu.

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


[Libreoffice-bugs] [Bug 104315] Directories

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104315

tommy27  changed:

   What|Removed |Added

 CC||ba...@quipo.it

--- Comment #1 from tommy27  ---
sorry I don't understand... would you please try to rephrase or post a
screenshot?

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


[Libreoffice-bugs] [Bug 104335] Some Images look distorted in .XLSX file ( looks OK in MS Office)

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104335

tommy27  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||ba...@quipo.it
Version|5.1.6.2 release |3.5.0 release
 Ever confirmed|0   |1

--- Comment #2 from tommy27  ---
reproduced under Win8.1 x64 using LibO 5.3.0.0 alpha, 5.2.3.3 and 3.5.0.
status NEW.

would you please post a screenshot of the file in MS Office?

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


[Libreoffice-bugs] [Bug 104284] VIEWING: toolbar completely corrupted (UI is non-usable)

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104284

--- Comment #3 from lo...@math.nsc.ru ---
Equally bad with OpenGL and Xrender

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


[Libreoffice-bugs] [Bug 104242] Temporarily remove OpenGL setting as default rendering for Windows builds

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104242

--- Comment #7 from Volga  ---
Also, wen can try to implenment using DirectWrite to render text without OGL.

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


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

2016-12-01 Thread Khaled Hosny
 vcl/unx/generic/fontmanager/helper.cxx |  114 -
 1 file changed, 114 deletions(-)

New commits:
commit 01dcaa31f44aaf684cdfaff8af73aeafbbbd0aa3
Author: Khaled Hosny 
Date:   Fri Dec 2 03:08:15 2016 +0200

Unused code

Change-Id: I975f118f4bcfaed338509966240c553c51a9184e
Reviewed-on: https://gerrit.libreoffice.org/31518
Tested-by: Jenkins 
Reviewed-by: Khaled Hosny 

diff --git a/vcl/unx/generic/fontmanager/helper.cxx 
b/vcl/unx/generic/fontmanager/helper.cxx
index 17d74d2..84f87e7 100644
--- a/vcl/unx/generic/fontmanager/helper.cxx
+++ b/vcl/unx/generic/fontmanager/helper.cxx
@@ -235,120 +235,6 @@ OUString const & psp::getFontPath()
 return aPath;
 }
 
-bool psp::convertPfbToPfa( ::osl::File& rInFile, ::osl::File& rOutFile )
-{
-static const unsigned char hexDigits[] =
-{
-'0', '1', '2', '3', '4', '5', '6', '7',
-'8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
-};
-
-bool bSuccess = true;
-bool bEof = false;
-unsigned char buffer[256];
-sal_uInt64 nSize(0);
-rInFile.getSize(nSize);
-
-while( bSuccess && ! bEof )
-{
-sal_uInt64 nRead;
-// read leading bytes
-bEof = ((0 != rInFile.read( buffer, 6, nRead)) || (nRead != 6));
-if( bEof )
-break;
-unsigned int nType = buffer[ 1 ];
-unsigned int nBytesToRead = buffer[2] | buffer[3] << 8 | buffer[4] << 
16 | buffer[5] << 24;
-if( buffer[0] != 0x80 ) // test for pfb magic number
-{
-// this might be a pfa font already
-if( ! rInFile.read( buffer+6, 9, nRead ) && nRead == 9 &&
-( ! std::strncmp( reinterpret_cast(buffer), 
"%!FontType1-", 12 ) ||
-  ! std::strncmp( reinterpret_cast(buffer), 
"%!PS-AdobeFont-", 15 ) ) )
-{
-sal_uInt64 nWrite = 0;
-if( rOutFile.write( buffer, 15, nWrite ) || nWrite != 15 )
-bSuccess = false;
-while( bSuccess &&
-   ! rInFile.read( buffer, sizeof( buffer ), nRead ) &&
-   nRead != 0 )
-{
-if( rOutFile.write( buffer, nRead, nWrite ) ||
-nWrite != nRead )
-bSuccess = false;
-}
-bEof = true;
-}
-else
-bSuccess = false;
-}
-else if( nType == 1 || nType == 2 )
-{
-sal_uInt64 nOrgPos(0);
-rInFile.getPos(nOrgPos);
-nBytesToRead = std::min(nBytesToRead, nSize - nOrgPos);
-
-std::unique_ptr pBuffer(new unsigned 
char[nBytesToRead+1]);
-pBuffer[nBytesToRead] = 0;
-
-if( ! rInFile.read( pBuffer.get(), nBytesToRead, nRead ) && nRead 
== nBytesToRead )
-{
-if( nType == 1 )
-{
-// ascii data, convert dos lineends( \r\n ) and
-// m_ac lineends( \r ) to \n
-std::unique_ptr pWriteBuffer(new unsigned 
char[ nBytesToRead ]);
-unsigned int nBytesToWrite = 0;
-for( unsigned int i = 0; i < nBytesToRead; i++ )
-{
-if( pBuffer[i] != '\r' )
-pWriteBuffer[ nBytesToWrite++ ] = pBuffer[i];
-else if( pBuffer[ i+1 ] == '\n' )
-{
-i++;
-pWriteBuffer[ nBytesToWrite++ ] = '\n';
-}
-else
-pWriteBuffer[ nBytesToWrite++ ] = '\n';
-}
-if( rOutFile.write( pWriteBuffer.get(), nBytesToWrite, 
nRead ) || nRead != nBytesToWrite )
-bSuccess = false;
-}
-else
-{
-// binary data
-unsigned int nBuffer = 0;
-for( unsigned int i = 0; i < nBytesToRead && bSuccess; i++ 
)
-{
-buffer[ nBuffer++ ] = hexDigits[ pBuffer[ i ] >> 4 ];
-buffer[ nBuffer++ ] = hexDigits[ pBuffer[ i ] & 15 ];
-if( nBuffer >= 80 )
-{
-buffer[ nBuffer++ ] = '\n';
-if( rOutFile.write( buffer, nBuffer, nRead ) || 
nRead != nBuffer )
-bSuccess = false;
-nBuffer = 0;
-}
-}
-if( nBuffer > 0 && bSuccess )
-{
-buffer[ nBuffer++ ] = '\n';
-if( rOutFile.write( buffer, nBuffer, nRead ) || nRead 
!= nBuffer )
-

[Libreoffice-commits] core.git: uitest/uitest

2016-12-01 Thread Markus Mohrhard
 uitest/uitest/framework.py |9 +
 1 file changed, 9 insertions(+)

New commits:
commit fa5af9196bf9fbebf194f7fff09b779cb5c3d0fb
Author: Markus Mohrhard 
Date:   Fri Dec 2 01:19:11 2016 +0100

uitest: prevent deadlock when the test fails

when the test fails it was possible that the terminate call was
trying to close all the  open windows which could show the query close
dialog. The new approach is to close all remaining documents in
tearDown.

Change-Id: I0078eaf1995c3085af0072f636b316003c02
Reviewed-on: https://gerrit.libreoffice.org/31515
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/uitest/uitest/framework.py b/uitest/uitest/framework.py
index be58b12..7d4a78d 100644
--- a/uitest/uitest/framework.py
+++ b/uitest/uitest/framework.py
@@ -31,6 +31,15 @@ class UITestCase(unittest.TestCase):
 def tearDown(self):
 t = time.time() - self.startTime
 print("Execution time for %s: %.3f" % (self.id(), t))
+if self.xContext is not None:
+desktop = self.ui_test.get_desktop()
+components = desktop.getComponents()
+for component in components:
+try:
+component.close(False)
+except Exception as e:
+print(e)
+
 self.connection.tearDown()
 
 # vim: set shiftwidth=4 softtabstop=4 expandtab:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: uitest/test_main.py

2016-12-01 Thread Markus Mohrhard
 uitest/test_main.py |4 
 1 file changed, 4 insertions(+)

New commits:
commit 50962f29295e72bce0c45aef8fb3df9a291f22c0
Author: Markus Mohrhard 
Date:   Fri Oct 28 13:07:02 2016 -0700

provide a way to limit the UI tests through env

Change-Id: If0af462f20f3541a183e00732944b0650d94639d
Reviewed-on: https://gerrit.libreoffice.org/31512
Reviewed-by: Markus Mohrhard 
Tested-by: Markus Mohrhard 

diff --git a/uitest/test_main.py b/uitest/test_main.py
index 498e45d..fabb868 100644
--- a/uitest/test_main.py
+++ b/uitest/test_main.py
@@ -66,8 +66,12 @@ def get_test_case_classes_of_module(module):
 return [ c for c in classes if issubclass(c, UITestCase) ]
 
 def add_tests_for_file(test_file, test_suite):
+test_name_limit = os.environ.get('UITEST_TEST_NAME', '')
 test_loader = unittest.TestLoader()
 module_name = os.path.splitext(os.path.split(test_file)[1])[0]
+if len(test_name_limit) > 0 and not 
test_name_limit.startswith(module_name):
+return
+
 loader = importlib.machinery.SourceFileLoader(module_name, test_file)
 mod = loader.load_module()
 classes = get_test_case_classes_of_module(mod)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-12-01 Thread Mike Kaganski
 oox/source/core/fragmenthandler2.cxx   |1 
 oox/source/core/xmlfilterbase.cxx  |5 +
 oox/source/token/namespaces-strict.txt |1 
 oox/source/token/namespaces.hxx.tail   |1 
 oox/source/token/namespaces.txt|1 
 oox/source/token/tokens.txt|1 
 sc/qa/unit/bugfix-test.cxx |   50 +-
 sc/qa/unit/data/xlsx/tdf104310-2.xlsx  |binary
 sc/source/filter/inc/worksheetfragment.hxx |   41 +++
 sc/source/filter/oox/worksheetfragment.cxx |   77 +
 10 files changed, 155 insertions(+), 23 deletions(-)

New commits:
commit ce17ebb69500530c978767b1389c9e8341acb9bf
Author: Mike Kaganski 
Date:   Fri Dec 2 03:31:22 2016 +0300

tdf#104310: Accept x12ac lists and fallbacks in dataValidations

Change-Id: I42cf20fcfe3ec03ebd09923be509a9d11e0b40da
Reviewed-on: https://gerrit.libreoffice.org/31516
Tested-by: Jenkins 
Reviewed-by: Kohei Yoshida 

diff --git a/oox/source/core/fragmenthandler2.cxx 
b/oox/source/core/fragmenthandler2.cxx
index 9a708d5..ba3f880 100644
--- a/oox/source/core/fragmenthandler2.cxx
+++ b/oox/source/core/fragmenthandler2.cxx
@@ -76,6 +76,7 @@ bool FragmentHandler2::prepareMceContext( sal_Int32 nElement, 
const AttributeLis
 {
 "p14",
 "p15",
+"x12ac",
 };
 
 if (std::find(aSupportedNS.begin(), aSupportedNS.end(), 
aRequires) != aSupportedNS.end())
diff --git a/oox/source/core/xmlfilterbase.cxx 
b/oox/source/core/xmlfilterbase.cxx
index fae720f..952bf5e 100644
--- a/oox/source/core/xmlfilterbase.cxx
+++ b/oox/source/core/xmlfilterbase.cxx
@@ -146,7 +146,10 @@ struct NamespaceIds: public rtl::StaticWithInit<
 {"http://schemas.microsoft.com/office/powerpoint/2010/main;,
  NMSP_p14},
 {"http://schemas.microsoft.com/office/powerpoint/2012/main;,
- NMSP_p15}};
+ NMSP_p15},
+{"http://schemas.microsoft.com/office/spreadsheetml/2011/1/ac;,
+ NMSP_x12ac},
+};
 }
 };
 
diff --git a/oox/source/token/namespaces-strict.txt 
b/oox/source/token/namespaces-strict.txt
index f9a4633..0f606f7 100644
--- a/oox/source/token/namespaces-strict.txt
+++ b/oox/source/token/namespaces-strict.txt
@@ -83,6 +83,7 @@ p14 
http://schemas.microsoft.com/office/powerpoint/2010/main
 # MSO 2012/2013 extensions 
-
 
 p15 
http://schemas.microsoft.com/office/powerpoint/2012/main
+x12ac   
http://schemas.microsoft.com/office/spreadsheetml/2011/1/ac
 
 # extlst namespaces
 
diff --git a/oox/source/token/namespaces.hxx.tail 
b/oox/source/token/namespaces.hxx.tail
index 89f8c1c..17770dc 100644
--- a/oox/source/token/namespaces.hxx.tail
+++ b/oox/source/token/namespaces.hxx.tail
@@ -46,6 +46,7 @@ inline sal_Int32 getNamespace( sal_Int32 nToken ) { return 
nToken & NMSP_MASK; }
 #define R_TOKEN( token )OOX_TOKEN( officeRel, token )
 #define VML_TOKEN( token )  OOX_TOKEN( vml, token )
 #define VMLX_TOKEN( token ) OOX_TOKEN( vmlExcel, token )
+#define X12AC_TOKEN( token )OOX_TOKEN( x12ac, token )
 #define XDR_TOKEN( token )  OOX_TOKEN( dmlSpreadDr, token )
 #define XLS_TOKEN( token )  OOX_TOKEN( xls, token )
 #define XLS14_TOKEN( token )OOX_TOKEN( xls14Lst, token )
diff --git a/oox/source/token/namespaces.txt b/oox/source/token/namespaces.txt
index 7920572..4b6f49a 100644
--- a/oox/source/token/namespaces.txt
+++ b/oox/source/token/namespaces.txt
@@ -83,6 +83,7 @@ p14 
http://schemas.microsoft.com/office/powerpoint/2010/main
 # MSO 2012/2013 extensions 
-
 
 p15 
http://schemas.microsoft.com/office/powerpoint/2012/main
+x12ac   
http://schemas.microsoft.com/office/spreadsheetml/2011/1/ac
 
 # extlst namespaces
 
diff --git a/oox/source/token/tokens.txt b/oox/source/token/tokens.txt
index b113c84..6d4fcb8 100644
--- a/oox/source/token/tokens.txt
+++ b/oox/source/token/tokens.txt
@@ -5781,6 +5781,7 @@ writeProtection
 wsDr
 wsp
 x
+x12ac
 x14
 xAlign
 xIllusions
diff --git a/sc/qa/unit/bugfix-test.cxx b/sc/qa/unit/bugfix-test.cxx
index 9b7f2b7..3499109 100644
--- a/sc/qa/unit/bugfix-test.cxx
+++ b/sc/qa/unit/bugfix-test.cxx
@@ -242,20 +242,42 @@ void ScFiltersTest::testRhbz1390776()
 
 void ScFiltersTest::testTdf104310()
 {
-ScDocShellRef xDocSh = loadDoc("tdf104310.", FORMAT_XLSX);
-ScDocument& rDoc = xDocSh->GetDocument();
-
-const ScValidationData* pData = rDoc.GetValidationEntry(1);
-CPPUNIT_ASSERT(pData);
-
-// Make sure the list is correct.
-std::vector aList;
-pData->FillSelectionList(aList, ScAddress(0, 1, 0));
-

[Libreoffice-bugs] [Bug 104336] The translation disappeared. KeyID does not hit. Language JA.

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104336

--- Comment #2 from Junichi Matsukawa  ---
Created attachment 129221
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129221=edit
5.3.0.0beta1 keyid

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


[Libreoffice-bugs] [Bug 104336] The translation disappeared. KeyID does not hit. Language JA.

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104336

--- Comment #1 from Junichi Matsukawa  ---
Created attachment 129220
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129220=edit
5.3.0.0beta1 option on JA

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


[Libreoffice-bugs] [Bug 104336] New: The translation disappeared. KeyID does not hit. Language JA.

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104336

Bug ID: 104336
   Summary: The translation disappeared. KeyID does not hit.
Language JA.
   Product: LibreOffice
   Version: 5.3.0.0.beta1
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: a...@kagaku.xii.jp

Created attachment 129219
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129219=edit
5.2.3.2 option on JA.

5.3.0.0.beta1
Build ID: 690f553ecb3efd19143acbf01f3af4e289e94536
CPU Threads: 4; OS Version: Windows 6.2; UI Render: default; Layout Engine:
new; 
ロケール: ja-JP (ja_JP); Calc: single

Hi.
I tested 5.3.0.0 beta 1.
I opened the Option.
In 5.2.3.2 it was translated into Japanese.(Look at the attachment)
It is not translated in 5.3.0.0 beta 1.(Look at the attachment.)

So, I checked KeyID.(Look at the attachement.)

I checked KeyID with Pootle, but it does not hit.
Why?

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

2016-12-01 Thread Takeshi Abe
 starmath/inc/node.hxx|   24 
 starmath/source/node.cxx |   36 ++--
 2 files changed, 30 insertions(+), 30 deletions(-)

New commits:
commit 7d1be94484fa99bbfbaa0261cc243778a70b298e
Author: Takeshi Abe 
Date:   Thu Dec 1 18:55:58 2016 +0900

starmath: Prefix members of SmTextNode

Change-Id: Ic2509e7ee4040fec8173861f319bce61804837cf
Reviewed-on: https://gerrit.libreoffice.org/31468
Tested-by: Jenkins 
Reviewed-by: Takeshi Abe 

diff --git a/starmath/inc/node.hxx b/starmath/inc/node.hxx
index 52532c9..e3067b7 100644
--- a/starmath/inc/node.hxx
+++ b/starmath/inc/node.hxx
@@ -376,16 +376,16 @@ public:
  */
 class SmTextNode : public SmVisibleNode
 {
-OUString   aText;
-sal_uInt16  nFontDesc;
+OUString   maText;
+sal_uInt16 mnFontDesc;
 /** Index within text where the selection starts
  * @remarks Only valid if SmNode::IsSelected() is true
  */
-sal_Int32  nSelectionStart;
+sal_Int32  mnSelectionStart;
 /** Index within text where the selection ends
  * @remarks Only valid if SmNode::IsSelected() is true
  */
-sal_Int32  nSelectionEnd;
+sal_Int32  mnSelectionEnd;
 
 protected:
 SmTextNode(SmNodeType eNodeType, const SmToken , sal_uInt16 
nFontDescP );
@@ -393,12 +393,12 @@ protected:
 public:
 SmTextNode(const SmToken , sal_uInt16 nFontDescP );
 
-sal_uInt16  GetFontDesc() const { return nFontDesc; }
-voidSetText(const OUString ) { aText = rText; }
-const OUString &GetText() const { return aText; }
+sal_uInt16  GetFontDesc() const { return mnFontDesc; }
+voidSetText(const OUString ) { maText = rText; }
+const OUString &GetText() const { return maText; }
 /** Change the text of this node, including the underlying token */
 voidChangeText(const OUString ) {
-aText = rText;
+maText = rText;
 SmToken token = GetToken();
 token.aText = rText;
 SetToken(token); //TODO: Merge this with AdjustFontDesc for better 
performance
@@ -409,15 +409,15 @@ public:
 /** Index within GetText() where the selection starts
  * @remarks Only valid of SmNode::IsSelected() is true
  */
-sal_Int32   GetSelectionStart() const {return nSelectionStart;}
+sal_Int32   GetSelectionStart() const {return mnSelectionStart;}
 /** Index within GetText() where the selection end
  * @remarks Only valid of SmNode::IsSelected() is true
  */
-sal_Int32   GetSelectionEnd() const {return nSelectionEnd;}
+sal_Int32   GetSelectionEnd() const {return mnSelectionEnd;}
 /** Set the index within GetText() where the selection starts */
-voidSetSelectionStart(sal_Int32 index) {nSelectionStart = 
index;}
+voidSetSelectionStart(sal_Int32 index) {mnSelectionStart = 
index;}
 /** Set the index within GetText() where the selection end */
-voidSetSelectionEnd(sal_Int32 index) {nSelectionEnd = 
index;}
+voidSetSelectionEnd(sal_Int32 index) {mnSelectionEnd = 
index;}
 
 virtual void Prepare(const SmFormat , const SmDocShell ) 
override;
 virtual void Arrange(OutputDevice , const SmFormat ) override;
diff --git a/starmath/source/node.cxx b/starmath/source/node.cxx
index 4ca990f..023f523 100644
--- a/starmath/source/node.cxx
+++ b/starmath/source/node.cxx
@@ -2037,17 +2037,17 @@ void SmRectangleNode::Arrange(OutputDevice , const 
SmFormat &/*rFormat*/)
 
 SmTextNode::SmTextNode( SmNodeType eNodeType, const SmToken , 
sal_uInt16 nFontDescP )
 : SmVisibleNode(eNodeType, rNodeToken)
-, nFontDesc(nFontDescP)
-, nSelectionStart(0)
-, nSelectionEnd(0)
+, mnFontDesc(nFontDescP)
+, mnSelectionStart(0)
+, mnSelectionEnd(0)
 {
 }
 
 SmTextNode::SmTextNode( const SmToken , sal_uInt16 nFontDescP )
 : SmVisibleNode(NTEXT, rNodeToken)
-, nFontDesc(nFontDescP)
-, nSelectionStart(0)
-, nSelectionEnd(0)
+, mnFontDesc(nFontDescP)
+, mnSelectionStart(0)
+, mnSelectionEnd(0)
 {
 }
 
@@ -2061,7 +2061,7 @@ void SmTextNode::Prepare(const SmFormat , const 
SmDocShell )
 if (TTEXT == GetToken().eType)
 SetRectHorAlign( RectHorAlign::Left );
 
-aText = GetToken().aText;
+maText = GetToken().aText;
 GetFont() = rFormat.GetFont(GetFontDesc());
 
 if (IsItalic( GetFont() ))
@@ -2088,7 +2088,7 @@ void SmTextNode::Arrange(OutputDevice , const 
SmFormat )
 SmTmpDevice aTmpDev (rDev, true);
 aTmpDev.SetFont(GetFont());
 
-SmRect::operator = (SmRect(aTmpDev, , aText, 
GetFont().GetBorderWidth()));
+SmRect::operator = (SmRect(aTmpDev, , maText, 
GetFont().GetBorderWidth()));
 }
 
 void SmTextNode::CreateTextFromNode(OUString )
@@ -2140,31 +2140,31 @@ void 

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

2016-12-01 Thread Khaled Hosny
 vcl/inc/unx/fontmanager.hxx |2 -
 vcl/inc/unx/geninst.h   |1 
 vcl/unx/generic/fontmanager/fontmanager.cxx |   13 ---
 vcl/unx/generic/fontmanager/fontsubst.cxx   |   52 +++-
 4 files changed, 7 insertions(+), 61 deletions(-)

New commits:
commit ff8a29d01afef082741871c7ac40f635a5e2bfad
Author: Khaled Hosny 
Date:   Fri Dec 2 02:50:26 2016 +0200

Always use FontConfig in UNX

I know Solaris is a snowflake, but it is 2016 already and I think it can
handle FontConfig such fine.

As for the undocumented envvar, lets pretend it never existed because
that is what undocumented feature are. Anyway, it was introduced for
https://bz.apache.org/ooo/show_bug.cgi?id=85483 which is long obsolete
already.

Change-Id: Ib50f129a3828ed2ee5167178c6ff2467d2c8d96c
Reviewed-on: https://gerrit.libreoffice.org/31517
Tested-by: Jenkins 
Reviewed-by: Khaled Hosny 

diff --git a/vcl/inc/unx/fontmanager.hxx b/vcl/inc/unx/fontmanager.hxx
index 01419dc..9c05f43 100644
--- a/vcl/inc/unx/fontmanager.hxx
+++ b/vcl/inc/unx/fontmanager.hxx
@@ -159,8 +159,6 @@ class VCL_PLUGIN_PUBLIC PrintFontManager
 fontID  m_nNextFontID;
 std::unordered_map< fontID, PrintFont* >m_aFonts;
 std::unordered_map< int, FontFamily >   m_aFamilyTypes;
-std::list< OString >m_aFontDirectories;
-std::vector< int >  m_aPrivateFontDirectories;
 utl::MultiAtomProvider* m_pAtoms;
 // for speeding up findFontFileID
 std::unordered_map< OString, std::set< fontID >, OStringHash >
diff --git a/vcl/inc/unx/geninst.h b/vcl/inc/unx/geninst.h
index 060f751..5a9786f 100644
--- a/vcl/inc/unx/geninst.h
+++ b/vcl/inc/unx/geninst.h
@@ -109,7 +109,6 @@ public:
 
 // prolly belongs somewhere else ... just a font help
 static void RegisterFontSubstitutors( PhysicalFontCollection* 
pFontCollection );
-static int  FetchFontSubstitutionFlags();
 
 protected:
 static void configurePspInfoPrinter( PspSalInfoPrinter* pInfoPrinter,
diff --git a/vcl/unx/generic/fontmanager/fontmanager.cxx 
b/vcl/unx/generic/fontmanager/fontmanager.cxx
index ce06a65..cd414f7 100644
--- a/vcl/unx/generic/fontmanager/fontmanager.cxx
+++ b/vcl/unx/generic/fontmanager/fontmanager.cxx
@@ -722,11 +722,6 @@ bool PrintFontManager::analyzeSfntFile( PrintFont* pFont ) 
const
 return bSuccess;
 }
 
-static bool AreFCSubstitutionsEnabled()
-{
-return (SalGenericInstance::FetchFontSubstitutionFlags() & 3) == 0;
-}
-
 void PrintFontManager::initialize()
 {
 #ifdef CALLGRIND_COMPILE
@@ -742,8 +737,6 @@ void PrintFontManager::initialize()
 delete (*it).second;
 m_nNextFontID = 1;
 m_aFonts.clear();
-m_aFontDirectories.clear();
-m_aPrivateFontDirectories.clear();
 }
 
 #if OSL_DEBUG_LEVEL > 1
@@ -768,7 +761,6 @@ void PrintFontManager::initialize()
 if( !rSalPrivatePath.isEmpty() )
 {
 OString aPath = OUStringToOString( rSalPrivatePath, aEncoding );
-const bool bAreFCSubstitutionsEnabled = AreFCSubstitutionsEnabled();
 sal_Int32 nIndex = 0;
 do
 {
@@ -782,10 +774,7 @@ void PrintFontManager::initialize()
 // and fontconfig-based substitutions are enabled
 // then trying to use these app-specific fonts doesn't make sense
 if( !addFontconfigDir( aToken ) )
-if( bAreFCSubstitutionsEnabled )
-continue;
-m_aFontDirectories.push_back( aToken );
-m_aPrivateFontDirectories.push_back( getDirectoryAtom( aToken, 
true ) );
+continue;
 } while( nIndex >= 0 );
 }
 
diff --git a/vcl/unx/generic/fontmanager/fontsubst.cxx 
b/vcl/unx/generic/fontmanager/fontsubst.cxx
index c362948..2f050c8 100644
--- a/vcl/unx/generic/fontmanager/fontsubst.cxx
+++ b/vcl/unx/generic/fontmanager/fontsubst.cxx
@@ -43,55 +43,15 @@ public:
 bool FindFontSubstitute( FontSelectPattern&, OUString& rMissingCodes ) 
const override;
 };
 
-int SalGenericInstance::FetchFontSubstitutionFlags()
-{
-// init font substitution defaults
-int nDisableBits = 0;
-#ifdef SOLARIS
-nDisableBits = 1; // disable "font fallback" here on default
-#endif
-// apply the environment variable if any
-const char* pEnvStr = ::getenv( "SAL_DISABLE_FC_SUBST" );
-if( pEnvStr )
-{
-if( (*pEnvStr >= '0') && (*pEnvStr <= '9') )
-nDisableBits = (*pEnvStr - '0');
-else
-nDisableBits = ~0U; // no specific bits set: disable all
-}
-return nDisableBits;
-}
-
 void SalGenericInstance::RegisterFontSubstitutors( PhysicalFontCollection* 
pFontCollection )
 {
-// init font substitution defaults
-int nDisableBits = 0;
-#ifdef SOLARIS
-

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

2016-12-01 Thread Markus Mohrhard
 vcl/source/window/dialog.cxx |2 --
 1 file changed, 2 deletions(-)

New commits:
commit 2c3f95d5810521483f990030e0529bbf37fa90f0
Author: Markus Mohrhard 
Date:   Sat Nov 12 19:29:21 2016 -0800

remove unnecessary vertical whitespace

Change-Id: I285dab1e18d3455ae97080982832e29a97e5acea
Reviewed-on: https://gerrit.libreoffice.org/31513
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/vcl/source/window/dialog.cxx b/vcl/source/window/dialog.cxx
index 194a11b..688cfb5 100644
--- a/vcl/source/window/dialog.cxx
+++ b/vcl/source/window/dialog.cxx
@@ -898,8 +898,6 @@ short Dialog::Execute()
 
 VclPtr xWindow = this;
 
-
-
 css::uno::Reference< css::uno::XComponentContext > xContext(
 comphelper::getProcessComponentContext() );
 css::uno::Reference 
xEventBroadcaster(css::frame::theGlobalEventBroadcaster::get(xContext), 
css::uno::UNO_QUERY_THROW);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-12-01 Thread Khaled Hosny
 vcl/Library_vcl.mk  |1 
 vcl/inc/unx/fontcache.hxx   |   88 ---
 vcl/inc/unx/fontmanager.hxx |7 
 vcl/unx/generic/fontmanager/fontcache.cxx   |  625 
 vcl/unx/generic/fontmanager/fontconfig.cxx  |   34 -
 vcl/unx/generic/fontmanager/fontmanager.cxx |   58 --
 vcl/unx/generic/fontmanager/helper.cxx  |2 
 7 files changed, 11 insertions(+), 804 deletions(-)

New commits:
commit babf6d5e53516e80e8e3f2485796ebfaeb20e9c1
Author: Khaled Hosny 
Date:   Fri Dec 2 02:14:21 2016 +0200

Drop font cache on UNX

On my system reading the ~400 fonts I have takes ~0.07 seconds, which
does not really justify all this complexity. We don’t have such cache on
other platforms as well.

It might have been slower in the past with all PFB and AFM parsing, but
this is gone already.

Killing this ugly fontmanager over engineering one piece at a time.

Change-Id: I41fe3db48dc3de0cf8939c2120403f7d243d6096
Reviewed-on: https://gerrit.libreoffice.org/31511
Tested-by: Jenkins 
Reviewed-by: Khaled Hosny 

diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk
index 435e8cf..759d903 100644
--- a/vcl/Library_vcl.mk
+++ b/vcl/Library_vcl.mk
@@ -540,7 +540,6 @@ vcl_headless_freetype_code=\
 vcl/unx/generic/glyphs/freetype_glyphcache \
 vcl/unx/generic/glyphs/glyphcache \
 vcl/unx/generic/fontmanager/fontsubst \
-vcl/unx/generic/fontmanager/fontcache \
 vcl/unx/generic/fontmanager/fontconfig \
 vcl/unx/generic/fontmanager/fontmanager \
 vcl/unx/generic/fontmanager/helper \
diff --git a/vcl/inc/unx/fontcache.hxx b/vcl/inc/unx/fontcache.hxx
deleted file mode 100644
index 4332d41..000
--- a/vcl/inc/unx/fontcache.hxx
+++ /dev/null
@@ -1,88 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#ifndef INCLUDED_VCL_INC_UNX_FONTCACHE_HXX
-#define INCLUDED_VCL_INC_UNX_FONTCACHE_HXX
-
-#include 
-#include 
-#include 
-
-#include "unx/fontmanager.hxx"
-
-namespace psp
-{
-
-class VCL_PLUGIN_PUBLIC FontCache
-{
-struct FontDir;
-friend struct FontDir;
-struct FontFile;
-friend struct FontFile;
-
-struct FontFile
-{
-std::list< PrintFontManager::PrintFont* >  m_aEntry;
-};
-
-typedef std::unordered_map< OString, FontFile, OStringHash > FontDirMap;
-struct FontDir
-{
-sal_Int64   m_nTimestamp;
-boolm_bNoFiles;
-boolm_bUserOverrideOnly;
-FontDirMap  m_aEntries;
-
-FontDir() : m_nTimestamp(0), m_bNoFiles(false), m_bUserOverrideOnly( 
false ) {}
-};
-
-typedef std::unordered_map< int, FontDir > FontCacheData;
-FontCacheData   m_aCache;
-OUStringm_aCacheFile;
-boolm_bDoFlush;
-
-void read();
-void clearCache();
-
-static void copyPrintFont( const PrintFontManager::PrintFont* pFrom, 
PrintFontManager::PrintFont* pTo );
-static bool equalsPrintFont( const PrintFontManager::PrintFont* pLeft, 
PrintFontManager::PrintFont* pRight );
-static PrintFontManager::PrintFont* clonePrintFont( const 
PrintFontManager::PrintFont* pFont );
-
-void createCacheDir( int nDirID );
-public:
-FontCache();
-~FontCache();
-
-bool getFontCacheFile( int nDirID, const OString& rFile, std::list< 
PrintFontManager::PrintFont* >& rNewFonts ) const;
-void updateFontCacheEntry( const PrintFontManager::PrintFont*, bool bFlush 
);
-
-// returns false for non cached directory
-// a cached but empty directory will return true but not append anything
-bool listDirectory( const OString& rDir, std::list< 
PrintFontManager::PrintFont* >& rNewFonts ) const;
-// returns true for directories that contain only user overridden fonts
-bool scanAdditionalFiles( const OString& rDir );
-
-void flush();
-};
-
-} // namespace psp
-
-#endif // INCLUDED_VCL_INC_UNX_FONTCACHE_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/inc/unx/fontmanager.hxx 

[Libreoffice-bugs] [Bug 90497] Implementing document themes

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90497

Luke  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=97
   ||057,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||3478

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


[Libreoffice-bugs] [Bug 103478] FILESAVE: PPTX - Shape fill color lost after roundtrip due to theme xml file

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103478

Luke  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 97057] Shape Background Color Lost When Resave XLSX File

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97057

Luke  changed:

   What|Removed |Added

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

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


-Og in dbgutil builds

2016-12-01 Thread Markus Mohrhard
Hey,

seems that the Og change has quite some negative consequences for the
debugging experience.

Normally in dbgutil builds all the variables were available and none of
them would be optimized away. I just started debugging and already had a
number of gdb messages telling me that the variable has been optimized
away. I never experienced the same problem before in a dbgutil build.

Does anyone else see this problem?

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


[Libreoffice-bugs] [Bug 84205] FILESAVE: Theme Colors inverted in drawings after PPTX roundtrip ( black part turned to white)

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84205

Luke  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=97
   ||057,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||3478

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


[Libreoffice-bugs] [Bug 103478] FILESAVE: PPTX - Shape fill color lost after roundtrip due to theme xml file

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103478

Luke  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 97057] Shape Background Color Lost When Resave XLSX File

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97057

Luke  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 104335] Some Images look distorted in .XLSX file ( looks OK in MS Office)

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104335

--- Comment #1 from Gabriel  ---
Created attachment 129217
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129217=edit
.xlsl file with a image

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


[Libreoffice-bugs] [Bug 104335] New: Some Images look distorted in .XLSX file ( looks OK in MS Office)

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104335

Bug ID: 104335
   Summary: Some Images look distorted in .XLSX file (looks OK in
MS Office)
   Product: LibreOffice
   Version: 5.1.6.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gabrielcolo...@gmail.com

Description:
Some Images look distorted in .XLSX file (looks OK in MS Office). 
Example file:
https://drive.google.com/file/d/0B82GCDoU3vBXeDRDTk5Ia1JydFk/view?usp=sharing

Steps to Reproduce:
1.open the example file
2.
3.

Actual Results:  
image looks heavily distorted and over another cells

Expected Results:
image should be formated correctly


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like
Gecko) Chrome/54.0.2840.99 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 104193] Writer' s AutoCorrect Word Completion list is deleted during a LibreOffice version upgrade

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104193

LostLombard  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0
 OS|All |Windows (All)

--- Comment #2 from LostLombard  ---
Windows 10

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


[Libreoffice-bugs] [Bug 104334] FILEOPEN: DOC: Incorrect StyleRef

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104334

--- Comment #1 from Xisco Faulí  ---
Created attachment 129216
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129216=edit
comparison

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


[Libreoffice-bugs] [Bug 104334] FILEOPEN: DOC: Incorrect StyleRef

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104334

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisectRequest,
   ||filter:doc, regression
 CC||xiscofa...@libreoffice.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 104334] New: FILEOPEN: DOC: Incorrect StyleRef

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104334

Bug ID: 104334
   Summary: FILEOPEN: DOC: Incorrect StyleRef
   Product: LibreOffice
   Version: 5.3.0.0.alpha0+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: xiscofa...@libreoffice.org

Created attachment 129215
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129215=edit
sample

Steps:
1. Open attached document

Observed behaviour: Image's caption is 'Figure This is a Heading 1–1 This is a
Figure Caption'

Expected Behaviour: Image's caption is Figure 1–1 This is a Figure Caption

Reproduced in

Version: 5.3.0.0.alpha0+
Build ID: 63965d7dc571c7dce80737f9d57a7c5151da
CPU Threads: 4; OS Version: Linux 4.8; UI Render: default; 
Locale: ca-ES (ca_ES.UTF-8)

but not in

Version: 4.3.0.0.alpha1+
Build ID: c15927f20d4727c3b8de68497b6949e72f9e6e9e

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


[Libreoffice-bugs] [Bug 104333] FILEOPEN: DOC: Table incorrectly splitted

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104333

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #2 from m.a.riosv  ---
Created attachment 129214
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129214=edit
Screenshot table format 5.2.4 left 5.3 right

Looks fine with
Version: 5.2.4.1 (x64)
Build ID: 9b50003582f07ac674d6451e411e9b77cccd2b22
CPU Threads: 4; OS Version: Windows 6.19; UI Render: GL; 
Locale: es-ES (es_ES); Calc: group

but not with
Version: 5.3.0.0.alpha1+
Build ID: 172325bedf69bbc162f3c1948264451c90c105a3
CPU Threads: 4; OS Version: Windows 6.19; UI Render: default; Layout Engine:
new; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-11-21_05:26:40
Locale: es-ES (es_ES); Calc: group

Comparing table format on 5.2.4 and 5.3, seems 'Allow table to split across
pages' and 'Keep with next paragraph' are changed on 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 104316] FIREBIRD 3 : attempting to open a Firebird 3 embedded ODB database file fails to draw all UI elements , causes general LibreOffice UI malfunction

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104316

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #3 from m.a.riosv  ---
I can open and edit tables, but not create a new one, all task are greyed out
for tables, queries, forms and reports.

Version: 5.3.0.0.alpha1+
Build ID: 172325bedf69bbc162f3c1948264451c90c105a3
CPU Threads: 4; OS Version: Windows 6.19; UI Render: GL; Layout Engine: new; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-11-21_05:26:40
Locale: es-ES (es_ES); Calc: group

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


[Libreoffice-bugs] [Bug 103324] user interface freezes on opening dialogs and context menus

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103324

--- Comment #8 from Vangel Ajanovski  ---
I can confirm that this issue with gtk3 is fixed, now I am running gtk3
3.22.4-1.

The other mentioned issues that I noticed when trying to run as gen, gtk and
kde4 are still present. (transparent toolbars or transparent menu or invisible
frame on the current cell). I suppose a separate bug report is needed for
those.

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

2016-12-01 Thread Zdeněk Crhonek
 sc/qa/unit/data/functions/database/fods/daverage.fods | 1543 +++
 sc/qa/unit/data/functions/database/fods/dcount.fods   | 2943 ++
 sc/qa/unit/data/functions/database/fods/dcounta.fods  | 1494 +++
 sc/qa/unit/data/functions/database/fods/dget.fods | 1633 
 sc/qa/unit/data/functions/database/fods/dproduct.fods | 1515 +++
 sc/qa/unit/data/functions/database/fods/dstdev.fods   | 1457 +++
 sc/qa/unit/data/functions/database/fods/dstdevp.fods  | 1357 ++
 sc/qa/unit/data/functions/database/fods/dsum.fods | 3629 ++
 sc/qa/unit/data/functions/database/fods/dvar.fods | 1686 
 sc/qa/unit/data/functions/database/fods/dvarp.fods| 1663 
 sc/qa/unit/data/functions/fods/daverage.fods  | 1543 ---
 sc/qa/unit/data/functions/fods/dcount.fods| 2943 --
 sc/qa/unit/data/functions/fods/dcounta.fods   | 1494 ---
 sc/qa/unit/data/functions/fods/dget.fods  | 1633 
 sc/qa/unit/data/functions/fods/dproduct.fods  | 1515 ---
 sc/qa/unit/data/functions/fods/dstdev.fods| 1457 ---
 sc/qa/unit/data/functions/fods/dstdevp.fods   | 1357 --
 sc/qa/unit/data/functions/fods/dsum.fods  | 3629 --
 sc/qa/unit/data/functions/fods/dvar.fods  | 1686 
 sc/qa/unit/data/functions/fods/dvarp.fods | 1663 
 20 files changed, 18920 insertions(+), 18920 deletions(-)

New commits:
commit 33f5bc54aaa7fe7aa9335726e30f9c349155e04d
Author: Zdeněk Crhonek 
Date:   Thu Dec 1 18:28:34 2016 +0100

sc test functions - move database functions to the new directory

Change-Id: Ief5121967b12692c60a4b462617d91786e901b9e
Reviewed-on: https://gerrit.libreoffice.org/31504
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sc/qa/unit/data/functions/fods/daverage.fods 
b/sc/qa/unit/data/functions/database/fods/daverage.fods
similarity index 100%
rename from sc/qa/unit/data/functions/fods/daverage.fods
rename to sc/qa/unit/data/functions/database/fods/daverage.fods
diff --git a/sc/qa/unit/data/functions/fods/dcount.fods 
b/sc/qa/unit/data/functions/database/fods/dcount.fods
similarity index 100%
rename from sc/qa/unit/data/functions/fods/dcount.fods
rename to sc/qa/unit/data/functions/database/fods/dcount.fods
diff --git a/sc/qa/unit/data/functions/fods/dcounta.fods 
b/sc/qa/unit/data/functions/database/fods/dcounta.fods
similarity index 100%
rename from sc/qa/unit/data/functions/fods/dcounta.fods
rename to sc/qa/unit/data/functions/database/fods/dcounta.fods
diff --git a/sc/qa/unit/data/functions/fods/dget.fods 
b/sc/qa/unit/data/functions/database/fods/dget.fods
similarity index 100%
rename from sc/qa/unit/data/functions/fods/dget.fods
rename to sc/qa/unit/data/functions/database/fods/dget.fods
diff --git a/sc/qa/unit/data/functions/fods/dproduct.fods 
b/sc/qa/unit/data/functions/database/fods/dproduct.fods
similarity index 100%
rename from sc/qa/unit/data/functions/fods/dproduct.fods
rename to sc/qa/unit/data/functions/database/fods/dproduct.fods
diff --git a/sc/qa/unit/data/functions/fods/dstdev.fods 
b/sc/qa/unit/data/functions/database/fods/dstdev.fods
similarity index 100%
rename from sc/qa/unit/data/functions/fods/dstdev.fods
rename to sc/qa/unit/data/functions/database/fods/dstdev.fods
diff --git a/sc/qa/unit/data/functions/fods/dstdevp.fods 
b/sc/qa/unit/data/functions/database/fods/dstdevp.fods
similarity index 100%
rename from sc/qa/unit/data/functions/fods/dstdevp.fods
rename to sc/qa/unit/data/functions/database/fods/dstdevp.fods
diff --git a/sc/qa/unit/data/functions/fods/dsum.fods 
b/sc/qa/unit/data/functions/database/fods/dsum.fods
similarity index 100%
rename from sc/qa/unit/data/functions/fods/dsum.fods
rename to sc/qa/unit/data/functions/database/fods/dsum.fods
diff --git a/sc/qa/unit/data/functions/fods/dvar.fods 
b/sc/qa/unit/data/functions/database/fods/dvar.fods
similarity index 100%
rename from sc/qa/unit/data/functions/fods/dvar.fods
rename to sc/qa/unit/data/functions/database/fods/dvar.fods
diff --git a/sc/qa/unit/data/functions/fods/dvarp.fods 
b/sc/qa/unit/data/functions/database/fods/dvarp.fods
similarity index 100%
rename from sc/qa/unit/data/functions/fods/dvarp.fods
rename to sc/qa/unit/data/functions/database/fods/dvarp.fods
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104027] FILEOPEN: DOC: incorrect page break added to page 2

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104027

--- Comment #4 from Xisco Faulí  ---
Created attachment 129213
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129213=edit
sample3

another document affected by the same commit

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


[Libreoffice-commits] core.git: compilerplugins/clang

2016-12-01 Thread Stephan Bergmann
 compilerplugins/clang/checkconfigmacros.cxx |2 ++
 compilerplugins/clang/mergeclasses.cxx  |1 +
 compilerplugins/clang/stringstatic.cxx  |2 ++
 3 files changed, 5 insertions(+)

New commits:
commit 51b502bb53347e8117dce101ec7c2c1052ac9620
Author: Stephan Bergmann 
Date:   Thu Dec 1 23:42:09 2016 +0100

Missing include

Change-Id: I6af48e37b1b796a1680447ff972de8b5f5623d26

diff --git a/compilerplugins/clang/checkconfigmacros.cxx 
b/compilerplugins/clang/checkconfigmacros.cxx
index 3d6dc98..8557559 100644
--- a/compilerplugins/clang/checkconfigmacros.cxx
+++ b/compilerplugins/clang/checkconfigmacros.cxx
@@ -9,6 +9,8 @@
  *
  */
 
+#include 
+
 #include "compat.hxx"
 #include "plugin.hxx"
 
diff --git a/compilerplugins/clang/mergeclasses.cxx 
b/compilerplugins/clang/mergeclasses.cxx
index fa4eb3c..a3ba0cc 100644
--- a/compilerplugins/clang/mergeclasses.cxx
+++ b/compilerplugins/clang/mergeclasses.cxx
@@ -8,6 +8,7 @@
  */
 
 #include 
+#include 
 #include 
 #include 
 #include "plugin.hxx"
diff --git a/compilerplugins/clang/stringstatic.cxx 
b/compilerplugins/clang/stringstatic.cxx
index 823fc7b..9bcb372 100644
--- a/compilerplugins/clang/stringstatic.cxx
+++ b/compilerplugins/clang/stringstatic.cxx
@@ -7,6 +7,8 @@
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  */
 
+#include 
+
 #include "check.hxx"
 #include "plugin.hxx"
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97037] Rendering of particular Word document with table, frames and backgound graphics completely broken, missing text etc

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97037

--- Comment #14 from Xisco Faulí  ---
Created attachment 129212
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129212=edit
sample4

another document affected by the same commit

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


[Libreoffice-bugs] [Bug 101464] Assertion failed when doing a print preview

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101464

--- Comment #9 from Commit Notification 
 ---
Michael Stahl committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=002c1f7223a0363f848d37062a0043d63255ad94

tdf#101464 fix SwAccessibleMap::mpEvents assertions switching PrintPreview

It will be available in 5.4.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-bugs] [Bug 104333] FILEOPEN: DOC: Table incorrectly splitted

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104333

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||filter:doc

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


[Libreoffice-bugs] [Bug 104333] FILEOPEN: DOC: Table incorrectly splitted

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104333

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisected, bisected,
   ||dataLoss, regression
   Priority|medium  |high
 Status|UNCONFIRMED |NEW
 CC||jl...@mail.com,
   ||xiscofa...@libreoffice.org
 Ever confirmed|0   |1
   Severity|normal  |major

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

author  Justin Luth    2016-08-25 17:08:26 (GMT)
committer   Miklos Vajna   2016-08-30 11:29:03
(GMT)
commit  129f93e46c29b388d38e9097869fd3e72dc40a5e (patch)
treefe59a543022e650c1dc2f53af2f2f1022b3bf15c
parent  5758f8a7f8e2e9819ef09f4e1fe38921b247dc65 (diff)
tdf#91083 ww8import: set table keep/split properties if emulated
This applies primarily to multi-row tables.  (Single row tables handle
don't-split emulation differently).

Since .doc doesn't have table options to "don't split table"
and "keep with next paragraph", we emulated that and now we detect
the emulation and tick those settings again.

Adding Cc: to Justin Luth

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


[Libreoffice-bugs] [Bug 101464] Assertion failed when doing a print preview

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101464

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:5.4.0

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


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

2016-12-01 Thread Michael Stahl
 sfx2/source/doc/SfxDocumentMetaData.cxx |   49 
 svl/source/items/aeitem.cxx |6 +--
 svl/source/items/cenumitm.cxx   |6 +--
 svl/source/items/cintitem.cxx   |   16 +-
 sw/source/core/view/viewsh.cxx  |6 +++
 5 files changed, 39 insertions(+), 44 deletions(-)

New commits:
commit 002c1f7223a0363f848d37062a0043d63255ad94
Author: Michael Stahl 
Date:   Thu Dec 1 22:56:21 2016 +0100

tdf#101464 fix SwAccessibleMap::mpEvents assertions switching PrintPreview

The problem here is that when switching to the print preview, there are
2 view shells, SwEditShell::UpdateTable() is called and the first one
does some layouting in ImplEndAction(); this creates a11y events for the
2nd print preview one (see loops in SwViewShellImp::Invalidate*) and
stores them in the SwAccessibleMap since there is an Action going on;
then SwViewShell::ImplEndAction() for the print preview shell is called
but it returns early without sending out the events, so they remain
until the ~SwAccessibleMap asserts about them.

Change-Id: Ie1c6b82fc5f2cdb2998d514a632295ad07e97517

diff --git a/sw/source/core/view/viewsh.cxx b/sw/source/core/view/viewsh.cxx
index 83a58af..2d362a2 100644
--- a/sw/source/core/view/viewsh.cxx
+++ b/sw/source/core/view/viewsh.cxx
@@ -235,6 +235,12 @@ void SwViewShell::ImplEndAction( const bool bIdleEnd )
 {
 mbPaintWorks = true;
 UISizeNotify();
+// tdf#101464 print preview may generate events if another view shell
+// performs layout...
+if (IsPreview() && Imp()->IsAccessible())
+{
+Imp()->FireAccessibleEvents();
+}
 return;
 }
 
commit 745fe08e187ef623486b54e3036075748e789339
Author: Michael Stahl 
Date:   Thu Dec 1 15:29:05 2016 +0100

svl: convert some legacy DBG_ASSERT

Change-Id: I8fc4d849e434e245d871dc2d2eef42713e1359bb

diff --git a/svl/source/items/aeitem.cxx b/svl/source/items/aeitem.cxx
index c4f9f11..6ad2c76 100644
--- a/svl/source/items/aeitem.cxx
+++ b/svl/source/items/aeitem.cxx
@@ -93,13 +93,13 @@ sal_uInt16 SfxAllEnumItem::GetValueCount() const
 
 OUString SfxAllEnumItem::GetValueTextByPos( sal_uInt16 nPos ) const
 {
-DBG_ASSERT( pValues && nPos < pValues->size(), "enum overflow" );
+assert(pValues && nPos < pValues->size());
 return (*pValues)[nPos].aText;
 }
 
 sal_uInt16 SfxAllEnumItem::GetValueByPos( sal_uInt16 nPos ) const
 {
-DBG_ASSERT( pValues && nPos < pValues->size(), "enum overflow" );
+assert(pValues && nPos < pValues->size());
 return (*pValues)[nPos].nValue;
 }
 
@@ -192,7 +192,7 @@ bool SfxAllEnumItem::IsEnabled( sal_uInt16 nValue ) const
 void SfxAllEnumItem::RemoveValue( sal_uInt16 nValue )
 {
 sal_uInt16 nPos = GetPosByValue(nValue);
-DBG_ASSERT( nPos != USHRT_MAX, "removing value not in enum" );
+assert(nPos != USHRT_MAX);
 pValues->erase( pValues->begin() + nPos );
 }
 
diff --git a/svl/source/items/cenumitm.cxx b/svl/source/items/cenumitm.cxx
index e31ce2c..187eb73 100644
--- a/svl/source/items/cenumitm.cxx
+++ b/svl/source/items/cenumitm.cxx
@@ -65,7 +65,7 @@ bool SfxEnumItemInterface::PutValue(const css::uno::Any& rVal,
 SetEnumValue(sal_uInt16(nTheValue));
 return true;
 }
-OSL_FAIL("SfxEnumItemInterface::PutValue(): Wrong type");
+SAL_WARN("svl.items", "SfxEnumItemInterface::PutValue(): Wrong type");
 return false;
 }
 
@@ -141,7 +141,7 @@ void SfxEnumItem::SetEnumValue(sal_uInt16 const nTheValue)
 
 void SfxEnumItem::SetValue(sal_uInt16 const nTheValue)
 {
-DBG_ASSERT(GetRefCount() == 0, "SfxEnumItem::SetValue(): Pooled item");
+assert(GetRefCount() == 0 && "SfxEnumItem::SetValue(): Pooled item");
 m_nValue = nTheValue;
 }
 
@@ -199,7 +199,7 @@ bool SfxBoolItem::PutValue(const css::uno::Any& rVal, 
sal_uInt8)
 m_bValue = bTheValue;
 return true;
 }
-OSL_FAIL("SfxBoolItem::PutValue(): Wrong type");
+SAL_WARN("svl.items", "SfxBoolItem::PutValue(): Wrong type");
 return false;
 }
 
diff --git a/svl/source/items/cintitem.cxx b/svl/source/items/cintitem.cxx
index a6c73d0..bb5aaea 100644
--- a/svl/source/items/cintitem.cxx
+++ b/svl/source/items/cintitem.cxx
@@ -57,7 +57,7 @@ bool CntByteItem::PutValue(const css::uno::Any& rVal, 
sal_uInt8)
 return true;
 }
 
-OSL_FAIL( "CntByteItem::PutValue - Wrong type!" );
+SAL_WARN("svl.items", "CntByteItem::PutValue - Wrong type!");
 return false;
 }
 
@@ -123,12 +123,12 @@ bool CntUInt16Item::PutValue(const css::uno::Any& rVal, 
sal_uInt8)
 sal_Int32 nValue = 0;
 if (rVal >>= nValue)
 {
-DBG_ASSERT( nValue <= USHRT_MAX, "Overflow in UInt16 value!");
-m_nValue = (sal_uInt16)nValue;
+SAL_WARN_IF(nValue > USHRT_MAX, "svl.items", "Overflow in UInt16 
value!");
+m_nValue = static_cast(nValue);

[Libreoffice-bugs] [Bug 104333] New: FILEOPEN: DOC: Table incorrectly splitted

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104333

Bug ID: 104333
   Summary: FILEOPEN: DOC: Table incorrectly splitted
   Product: LibreOffice
   Version: 5.3.0.0.alpha0+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: xiscofa...@libreoffice.org

Created attachment 129211
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129211=edit
sample

Steps:
1. Open attached document

Observed behaviour: Different tables are incorrectly splitted causing text to
get lost

Reproduced in

Version: 5.3.0.0.alpha0+
Build ID: 63965d7dc571c7dce80737f9d57a7c5151da
CPU Threads: 4; OS Version: Linux 4.8; UI Render: default; 
Locale: ca-ES (ca_ES.UTF-8)

but not in

Version: 4.3.0.0.alpha1+
Build ID: c15927f20d4727c3b8de68497b6949e72f9e6e9e

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


[Libreoffice-bugs] [Bug 87764] FILEOPEN: Garbled import of document with OCR images inside ( .doc import)

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87764

--- Comment #16 from Xisco Faulí  ---
Created attachment 129210
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129210=edit
sample5

another one...

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


[Libreoffice-bugs] [Bug 87764] FILEOPEN: Garbled import of document with OCR images inside ( .doc import)

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87764

--- Comment #15 from Xisco Faulí  ---
Created attachment 129209
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129209=edit
sample4

another one...

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


[Libreoffice-bugs] [Bug 87764] FILEOPEN: Garbled import of document with OCR images inside ( .doc import)

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87764

--- Comment #14 from Xisco Faulí  ---
Created attachment 129208
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129208=edit
sample3

another one

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


[Libreoffice-bugs] [Bug 104327] [Feature Request] Drawing canvas in Writer

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104327

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---
Already a functional feature...

1. Insert -> Frame -> Frame interactively, and layout as needed
2. select Frame just created, style as needed
3. from Standard toolbar select Insert Basic shapes
4. draw several shapes into the Frame
5. move the frame -- shapes move with it.

Other Draw objects and annotation can be placed onto the frame as well.

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


[Libreoffice-bugs] [Bug 87764] FILEOPEN: Garbled import of document with OCR images inside ( .doc import)

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87764

--- Comment #13 from Xisco Faulí  ---
Created attachment 129207
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129207=edit
sample2

another file affected by the same commit

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


[Libreoffice-bugs] [Bug 87764] FILEOPEN: Garbled import of document with OCR images inside ( .doc import)

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87764

--- Comment #12 from Xisco Faulí  ---
Created attachment 129206
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129206=edit
sample1

another file affected by the same commit where the content inside the frame are
shifted to the next page

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


[Libreoffice-bugs] [Bug 104332] Opening Tools menu is slow for the first time (Writer only)

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104332

Aron Budea  changed:

   What|Removed |Added

   Keywords||bibisectRequest, 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 104332] New: Opening Tools menu is slow for the first time ( Writer only)

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104332

Bug ID: 104332
   Summary: Opening Tools menu is slow for the first time (Writer
only)
   Product: LibreOffice
   Version: 5.2.4.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@caesar.elte.hu

This is a new bug in 5.2.4.1 that only affects Writer. Only tested in Windows
7, (un)confirmation in Linux needed.

Start Writer, open Tools menu. It takes a few seconds to open for the first
time.
Other menus come up instantly. Occurs both with default and OpenGL rendering.

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

2016-12-01 Thread Noel Grandin
 connectivity/source/drivers/mork/MorkParser.cxx |   14 +++---
 connectivity/source/drivers/mork/MorkParser.hxx |2 +-
 2 files changed, 8 insertions(+), 8 deletions(-)

New commits:
commit 036603d72fd74607a6033118a7d395c4ad7f4907
Author: Noel Grandin 
Date:   Thu Dec 1 13:52:46 2016 +0200

convert nowParsing_ constants to scoped enum

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

diff --git a/connectivity/source/drivers/mork/MorkParser.cxx 
b/connectivity/source/drivers/mork/MorkParser.cxx
index 9a4b895..c2b931e 100644
--- a/connectivity/source/drivers/mork/MorkParser.cxx
+++ b/connectivity/source/drivers/mork/MorkParser.cxx
@@ -62,7 +62,7 @@ MorkParser::MorkParser() :
 morkPos_(0),
 nextAddValueId_(0x7fff),
 defaultTableId_(1),
-nowParsing_(NPValues)
+nowParsing_(NP::Values)
 {
 }
 
@@ -91,7 +91,7 @@ void MorkParser::initVars()
 {
 error_ = NoError;
 morkPos_ = 0;
-nowParsing_ = NPValues;
+nowParsing_ = NP::Values;
 currentCells_ = nullptr;
 nextAddValueId_ = 0x7fff;
 }
@@ -185,7 +185,7 @@ bool MorkParser::parseDict()
 {
 char cur = nextChar();
 bool Result = true;
-nowParsing_ = NPValues;
+nowParsing_ = NP::Values;
 
 while ( Result && cur != '>' && cur )
 {
@@ -198,7 +198,7 @@ bool MorkParser::parseDict()
 
 if ( morkData_.substr( morkPos_ - 1, strlen( 
MorkDictColumnMeta ) ) == MorkDictColumnMeta )
 {
-nowParsing_ = NPColumns;
+nowParsing_ = NP::Columns;
 morkPos_ += strlen( MorkDictColumnMeta ) - 1;
 }
 
@@ -324,12 +324,12 @@ bool MorkParser::parseCell()
 // Apply column and text
 int ColumnId = strtoul(Column.c_str(), nullptr, 16);
 
-if ( NPRows != nowParsing_ )
+if ( NP::Rows != nowParsing_ )
 {
 // Dicts
 if ( "" != Text )
 {
-if ( nowParsing_ == NPColumns )
+if ( nowParsing_ == NP::Columns )
 {
 columns_[ ColumnId ] = Text;
 }
@@ -488,7 +488,7 @@ bool MorkParser::parseRow( int TableId, int TableScope )
 bool Result = true;
 std::string TextId;
 int Id = 0, Scope = 0;
-nowParsing_ = NPRows;
+nowParsing_ = NP::Rows;
 
 char cur = nextChar();
 
diff --git a/connectivity/source/drivers/mork/MorkParser.hxx 
b/connectivity/source/drivers/mork/MorkParser.hxx
index 6b5088c..fcbdd6a 100644
--- a/connectivity/source/drivers/mork/MorkParser.hxx
+++ b/connectivity/source/drivers/mork/MorkParser.hxx
@@ -141,7 +141,7 @@ protected: // Data
 int defaultTableId_;
 
 // Indicates entity is being parsed
-enum { NPColumns, NPValues, NPRows } nowParsing_;
+enum class NP { Columns, Values, Rows } nowParsing_;
 
 private:
 MorkParser(const MorkParser &) = delete;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-12-01 Thread Noel Grandin
 svx/source/form/fmshell.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 69c3e6bf84d87c072d39660e9451c656c317bead
Author: Noel Grandin 
Date:   Thu Dec 1 14:56:33 2016 +0200

fix bug in FmFormShell::GetState

Found when attempting an enum conversion.

Not sure what effect this will have, it was introduced with

commit a0c7b2bc4511da87c776b92aaa77ba7680542fa1
Author: Oliver Bolte 
Date:   Tue Nov 16 10:24:21 2004 +
INTEGRATION: CWS eforms2 (1.48.52); FILE MERGED

which pushed a whole bunch of stuff together.

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

diff --git a/svx/source/form/fmshell.cxx b/svx/source/form/fmshell.cxx
index 2b21ee7..9aa9986 100644
--- a/svx/source/form/fmshell.cxx
+++ b/svx/source/form/fmshell.cxx
@@ -1027,7 +1027,7 @@ void FmFormShell::GetState(SfxItemSet )
 rSet.DisableItem( nWhich );
 else
 {
-if ( !GetImpl()->canConvertCurrentSelectionToControl( 
OBJ_FM_FIXEDTEXT ) )
+if ( !GetImpl()->canConvertCurrentSelectionToControl( 
SID_FM_CONVERTTO_FIXEDTEXT ) )
 // if it cannot be converted to a fixed text, it is no 
single control
 rSet.DisableItem( nWhich );
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97037] Rendering of particular Word document with table, frames and backgound graphics completely broken, missing text etc

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97037

--- Comment #13 from Xisco Faulí  ---
Created attachment 129205
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129205=edit
sample3

Another file affected by the same commit where the content from page 1 is
shifted to page 2

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


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

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103182
Bug 103182 depends on bug 103324, which changed state.

Bug 103324 Summary: user interface freezes on opening dialogs and context menus
https://bugs.documentfoundation.org/show_bug.cgi?id=103324

   What|Removed |Added

 Status|UNCONFIRMED |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 103324] user interface freezes on opening dialogs and context menus

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103324

Caolán McNamara  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #7 from Caolán McNamara  ---
"I saw that there was an update of gtk3 and all it's issues seem to be solved
with the latest version gtk3", so things are ok again then I assume.

This might have been the same issue fixed by

https://cgit.freedesktop.org/libreoffice/core/commit/?id=ef7abe81df10cb8a8c04afbb1fbe700f94e73f04

Resolves: rhbz#1373933 gtk 3.21 emits a lot more "style-set" signals
also deb#837356

since gtk3 commit of...

commit 0f116135f4a5033ce4e9dfa19f10624701fa615c
Author: Matthias Clasen 
Date:   Fri May 6 10:12:14 2016 -0400

Avoid emitting ::style-set by name

GtkStyle is deprecated, but we still emit ::style-set quite
a bit, so lets at least not be slow while doing 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 104331] Help file in calc

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104331

--- Comment #3 from Samson  ---
Libre office 5.3 Help file calc

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


[Libreoffice-bugs] [Bug 104331] Help file in calc

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104331

--- Comment #2 from Samson  ---
Created attachment 129204
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129204=edit
help file picture

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


[Libreoffice-bugs] [Bug 104331] Help file in calc

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104331

--- Comment #1 from Samson  ---
Created attachment 129203
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129203=edit
help file picture

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


[Libreoffice-bugs] [Bug 104331] New: Help file in calc

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104331

Bug ID: 104331
   Summary: Help file in calc
   Product: LibreOffice
   Version: 5.3.0.0.alpha1+ Master
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sambelet...@gmail.com

Created attachment 129202
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129202=edit
help file picture

-- 
You are receiving this mail because:
You 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-5-3' - unotools/source

2016-12-01 Thread Stephan Bergmann
 unotools/source/config/pathoptions.cxx |   17 +
 1 file changed, 17 insertions(+)

New commits:
commit 7f9338f4b8dc1e112d4268868bcc651764969645
Author: Stephan Bergmann 
Date:   Tue Nov 29 15:01:21 2016 +0100

Allow extensions to provide color palettes

Until now, .oxt extensions cannot provide additional color palettes (.soc 
files,
see e.g. Draw's "Format - Area... - Area - Color - Colors - Palette:" 
drop-down
list).  There are two ways how this feature could be added:

Either add a new file-entry media-type to extensions' META-INF/manifest.xml 
and
add support for that in the code.

Or leverage the existing code, which reads the configuration set
/org.openoffice.Office.Paths/Paths/Palette/InternalPaths, where each set 
element
denotes a directory, and scans those directories for .soc files.  So an
extension would include an .xcu file adding such a path (using %origin% to
denote a directory within the .oxt file itself) and a directory with one or 
more
.soc files.

For simplicity, this commit uses the second way.  The only problem with the
existing code is that extension configuration data using %origin% is 
rewritten
to vnd.sun.star.expand URIs which the palette-scanning code does not 
support.
So extend SvtPathOptions_Impl::GetPath's PATH_PALETTE case to expand such 
URIs.
(The choice of doing it in SvtPathOptions is somewhat arbitrary; there 
would be
other, more generic places where it might make sense to do such expansion, 
but
which would also carry a higher risk of regressions.)

 contains an example of 
such an
extension (with a LibreOffice-minimal-version of "LibreOffice 5.3", assuming
this commit will be backported to upcoming LO 5.3).

Some drawbacks of going this way are:

* No control over where extension palettes appear in the palette drop-down
  lists.  (But those lists appear to be sorted in some random order, 
anyway?)

* Commit on future support of the .soc file format (which, however, is XML) 
and
  the /org.openoffice.Office.Paths/Paths/Palette/InternalPaths 
configuration set
  in a backward-compatible way.  (But any other way of implementing this 
feature
  would also need a similar commitment.)

* Somewhat odd, indirect approach where an extension specifies a directory
  filled with .soc files, instead of specifying the .soc files diretly.

* With the current palette-management code, live extension addition/removal 
is
  not immediately reflected in all places that offer palette drop-down 
lists.
  (But this should be fixable, and would be an issue with other approaches,
  too.)

Change-Id: I68b30127d61764d1b5349f1f2af9c712828bee3e
(cherry picked from commit e2ea7bb3a6b681822a247e8c277694f921c92273)
Reviewed-on: https://gerrit.libreoffice.org/31501
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/unotools/source/config/pathoptions.cxx 
b/unotools/source/config/pathoptions.cxx
index 7b64c91..d905245 100644
--- a/unotools/source/config/pathoptions.cxx
+++ b/unotools/source/config/pathoptions.cxx
@@ -32,6 +32,7 @@
 #include 
 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -237,6 +238,22 @@ const OUString& SvtPathOptions_Impl::GetPath( 
SvtPathOptions::Paths ePath )
 osl::FileBase::getSystemPathFromFileURL( aPathValue, aResult );
 aPathValue = aResult;
 }
+else if (ePath == SvtPathOptions::PATH_PALETTE)
+{
+auto ctx = comphelper::getProcessComponentContext();
+OUStringBuffer buf;
+for (sal_Int32 i = 0;;)
+{
+buf.append(
+comphelper::getExpandedUri(
+ctx, aPathValue.getToken(0, ';', i)));
+if (i == -1) {
+break;
+}
+buf.append(';');
+}
+aPathValue = buf.makeStringAndClear();
+}
 
 m_aPathArray[ ePath ] = aPathValue;
 return m_aPathArray[ ePath ];
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104303] CUPS Print dialog page preview incorrect with default paper size US Letter

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104303

Ben Conder  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #9 from Ben Conder  ---

I found out I could get the LibreOffice Printer Dialog box by running this
command into terminal.

sudo launchctl unload -w /System/Library/LaunchDaemons/org.cups.cupsd.plist

If you want your printers back then run 

sudo launchctl load -w /System/Library/LaunchDaemons/org.cups.cupsd.plist


I was able to replicate this bug on 3 OS X devices. 

Another strange things is after I unloaded and loaded the the Daemons the print
out was only 1/8 inch off instead of 5/16 of an inch off. 

I will add that Microsoft Word 2016 15.19.1 has no problems printing. It even
opens up the same printer dialog box. the preview doesn't have any problems as
well as the physical printed copy. 

All my problems seem to be fixed as long as I have A4 set as my default paper
size. Having A4 set as default doesn’t seem to effect the few programs I’ve
tested. Word, Adobe Photoshop, Adobe Acrobat, AutoCAD, Chrome printing. So it’s
fine as a temporary fix. 

I will say that it may be hard to notice the subtle differences as I’ve had it
range from 1/8-5/16th of an inch. 3mm to 8mm for metric. I would use a ruler to
make sure. 

I’m hoping someone else can replicate this. If not I’ll have to point it to
something with my home printer/cups server. Although LibreOffice on Linux and
Windows print just fine with no issues.

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - xmloff/source

2016-12-01 Thread Caolán McNamara
 xmloff/source/text/txtparae.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 09b856289c44c0fe792082b681d48cf5ee70d808
Author: Caolán McNamara 
Date:   Thu Dec 1 21:15:00 2016 +

crashtesting: a gadzillion failures on export to odp

e.g. fdo35235-1.odp

Change-Id: I259cdc9ed073be2ad7d5208cd943d4f193f09c16
(cherry picked from commit f1c08d6503442ec257aa8535dfbe3743c743e4a0)

diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx
index d25e527..12a7103 100644
--- a/xmloff/source/text/txtparae.cxx
+++ b/xmloff/source/text/txtparae.cxx
@@ -1643,6 +1643,9 @@ void XMLTextParagraphExport::exportText(
 GetExport().GetShapeExport(); // make sure the graphics styles family
   // is added
 Reference < XEnumerationAccess > xEA( rText, UNO_QUERY );
+if( ! xEA.is() )
+return;
+
 Reference < XEnumeration > xParaEnum(xEA->createEnumeration());
 Reference < XPropertySet > xPropertySet( rText, UNO_QUERY );
 Reference < XTextSection > xBaseSection;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-12-01 Thread Caolán McNamara
 vcl/unx/generic/gdi/gdiimpl.cxx |   13 ++---
 1 file changed, 2 insertions(+), 11 deletions(-)

New commits:
commit 8cc096b2f43f02186da55050f357e7439350538b
Author: Caolán McNamara 
Date:   Wed Nov 30 14:47:23 2016 +

ditch old SAL_DO_NOT_USE_INVERT50 env var

Change-Id: I1b23db2335827cab6f1b98b40103b0508928b66e

diff --git a/vcl/unx/generic/gdi/gdiimpl.cxx b/vcl/unx/generic/gdi/gdiimpl.cxx
index ed7b377..4e367a6 100644
--- a/vcl/unx/generic/gdi/gdiimpl.cxx
+++ b/vcl/unx/generic/gdi/gdiimpl.cxx
@@ -377,17 +377,8 @@ GC X11SalGraphicsImpl::GetInvert50GC()
   | GCFillStyle
   | GCStipple;
 
-char* pEnv = getenv( "SAL_DO_NOT_USE_INVERT50" );
-if( pEnv && ! strcasecmp( pEnv, "true" ) )
-{
-values.fill_style = FillSolid;
-nValueMask &= ~ GCStipple;
-}
-else
-{
-values.fill_style   = FillStippled;
-values.stipple  = mrParent.GetDisplay()->GetInvert50( 
mrParent.m_nXScreen );
-}
+values.fill_style   = FillStippled;
+values.stipple  = mrParent.GetDisplay()->GetInvert50( 
mrParent.m_nXScreen );
 
 mpInvert50GC = XCreateGC( mrParent.GetXDisplay(), 
mrParent.GetDrawable(),
   nValueMask,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 101967] Calc do not import HTML under .xls

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101967

Telesto  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

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


[Libreoffice-bugs] [Bug 101967] Calc do not import HTML under .xls

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101967

--- Comment #7 from Telesto  ---
Created attachment 129201
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129201=edit
Screenshot Imported MTX2 HTM

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


[Libreoffice-bugs] [Bug 101967] Calc do not import HTML under .xls

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101967

Telesto  changed:

   What|Removed |Added

 Attachment #127198|0   |1
is obsolete||
 Attachment #127199|0   |1
is obsolete||
 Attachment #127200|0   |1
is obsolete||
 Attachment #127201|0   |1
is obsolete||

--- Comment #5 from Telesto  ---
Created attachment 129200
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129200=edit
Example files

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


[Libreoffice-bugs] [Bug 101967] Calc do not import HTML under .xls

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101967

--- Comment #6 from Telesto  ---
If understand it correctly CTAC is changing the file extension of htm files to
xls, and importing them into Calc.

However, it's working fine with:
Version: 5.4.0.0.alpha0+
Build ID: 4130c8def811d1dcc87eacaa8ae48ba02738a790
CPU Threads: 4; OS Version: Windows 6.19; UI Render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2016-11-29_01:03:18
Locale: nl-NL (nl_NL); Calc: CL

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


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

2016-12-01 Thread Caolán McNamara
 xmloff/source/text/txtparae.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit f1c08d6503442ec257aa8535dfbe3743c743e4a0
Author: Caolán McNamara 
Date:   Thu Dec 1 21:15:00 2016 +

crashtesting: a gadzillion failures on export to odp

e.g. fdo35235-1.odp

Change-Id: I259cdc9ed073be2ad7d5208cd943d4f193f09c16

diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx
index 8e515c4..0ba5f9d 100644
--- a/xmloff/source/text/txtparae.cxx
+++ b/xmloff/source/text/txtparae.cxx
@@ -1643,6 +1643,9 @@ void XMLTextParagraphExport::exportText(
 GetExport().GetShapeExport(); // make sure the graphics styles family
   // is added
 Reference < XEnumerationAccess > xEA( rText, UNO_QUERY );
+if( ! xEA.is() )
+return;
+
 Reference < XEnumeration > xParaEnum(xEA->createEnumeration());
 Reference < XPropertySet > xPropertySet( rText, UNO_QUERY );
 Reference < XTextSection > xBaseSection;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104330] New: 2 important enhancements for the tables

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104330

Bug ID: 104330
   Summary: 2 important enhancements for the tables
   Product: LibreOffice
   Version: 5.2.3.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jlbr...@portugalmail.com

1: Make possible to select different cells, rows and columns by using the shift
or control + click the arrow near the table cells.

2: Make possible to include tabulations inside cells. Because whenever you
press TAB inside a cell, the cursor gets to the next cell...

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


Re: minutes of ESC call ...

2016-12-01 Thread Xisco Fauli

Hello,

I've just created the event for FOSDEM and now I see it as 'undifined' 
in the events section. Is that correct and enough for the event creation?


Regards

El 01/12/16 a les 19:32, Michael Meeks ha escrit:

* Present:
 + Thorsten, Stephan, Heiko, Björn, Olivier, Kendy,
   janI, Caolán, Michael S, Jan-Marek, Eike, Sophie,
   Miklos, Xisco, Andras (left 16:25), Christian, Michael M

* Completed Action Items:
 + marked osl::Condition deprecated (Michael)
  
* Pending Action Items:

 + poke at MSDN licenses (Michael)
 + ask Tamás Bunth how he feels about Firebird default (Lionel)
 + move git-dm to gerrit (Norbert)
  
* Release Engineering update (Christian)

 + 5.2.4.1 status (Cloph)
 + tagged, and announced  for early testing
 + RC2 in two weeks
 + 5.3.0 Beta1 & branch
 + Late features:
  + separating images and icons for help modules (Olivier, Bubli)
 + misc. PDF signing / embedding bits (Miklos)
 + most probably finished the next week
 + Firebird by default ? (Lionel)
 => suggest to enable this on master for 5.4
 + 5.3.0 Beta2 the next week (Cloph)
 + bugfixes + update of the translation templates
 
 + Android & iOS Remote (Cloph)

 + tinderbox breakage, fixed
 + preparing a new build based on the branch-off tag -> app-store 
tomorrow.
 + updated the application icon, and released the new version
 + online (Michael)
+ branched for -5-3
  
* FOSDEM talks

  + https://penta.fosdem.org/submission/FOSDEM17/event/new
https://penta.fosdem.org/user/new_account/FOSDEM17 if you don’t have 
account yet
  + DEADLINE is Monday!
  + 20 minutes sessions is fine! :-)
  + who is going  ?
  + Xisco: interoperability regression testing
  + Kendy: Something wrt. Online
  + Andras: ???
  + Bjoern: IDE integration (already submitted), SwClient/Modify 
Horrorshow (possibly)
  + Stephan: Extensions
  + cloph: no topic yet
  + Heiko: Contextual groups Notebookbar
  + Olivier: XHP in your browser
   + caolan: gtk3 and wayland status
   + Eike: ?
  + Thorsten/Bubli/Samuel/Armin: TBD tomorrow
  + Michael: “threading nightmares”

* Documentation (Olivier)
  + important patch from Bubli that need to go in 5.3
  + separating images and icons for help modules
   + https://gerrit.libreoffice.org/#/c/30958/
   + https://gerrit.libreoffice.org/#/c/30959/
  + why not just push it ? (Michael)
+ will mark tons of strings as modified in pootle (Thorsten)
+ unless we can avoid touching the strings ? (Olivier)
+ perhaps a script; but script neeeds writing (Sophie)
+ somewhat less motivated to push for 5.3 here (Thorsten)
+ do we really need this in 5.3 ?
+ will be screenshots (Olivier)
+ unlikely help authors will need the screen-shotting 
for 5-3- (Thorsten)
=> defer and script properly for master; re-visit next week.
+ Cloph has script templates
+ but needs examples of the changes to the UI 
files.
AI: + provide information for cloph on what the change is 
(Olivier)
   + Several patches into help by Gabor Kelemen,
  + janitoring Math deleted features
   + New chapters of books to be revised
   + Brazilians finished Getting started Guide 5.0, will publish next week
   + So far we have issues with translations;
templates for PT_br are not up-loaded.
It is included (Sophie)
  
* UX Update (Heiko)

   + Bugzilla (topicUI) statistics
 257(257) (topicUI) bugs open, 494(494) (needsUXEval) needs to be evaluated 
by the UXteam
+ Updates:
BZ changes   1 week   1 month3 months   12 months
 added  7(1) 21(5)  65(0)  492(5)
 commented 54(9)235(41)987(51)2825(64)
   removed  0(0)  1(-1) 26(0)   30(0)
  resolved  7(7) 16(-23)   112(2)  128(6)
+ top 10 contributors:
  Heiko Tietze made 55 changes in 1 month, and 525 changes in 1 year
  Yousuf Philips made 14 changes in 1 month, and 408 changes in 1 year
  *UNKNOWN* made 13 changes in 1 month, and 13 changes in 1 year
  *UNKNOWN* made 13 changes in 1 month, and 103 changes in 1 year
  Samuel Mehrbrodt made 10 changes in 1 month, and 47 changes in 1 year
  Rene Engelhard made 10 changes in 1 month, and 10 changes in 1 year
  Tor Lillqvist made 8 changes in 1 month, and 9 changes in 1 year
  *UNKNOWN* made 8 changes in 1 month, and 18 changes in 1 year
  Björn Michaelsen 

[Libreoffice-bugs] [Bug 104322] Formulas in tables in Writer not actualized

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104322

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #4 from V Stuart Foote  ---
Not clear this is a bug--you've deleted the numerical value making the function
in cell D2 invalid--and it simply does not update.

If you position to cell D2 and open the formula dialog with F2, apply -- the
value will refresh, in this case to 0. I.e.  in B2 * 6 in C2. Go back to
table cell B2 and enter a 4--valid number, so the formula in D2 updates.

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


[Libreoffice-bugs] [Bug 103690] macOS: libreoffice crash on startup, VCL thread mutex condition

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103690

--- Comment #32 from Telesto  ---
Using a newly created User Account seems to fix the issue
(https://support.apple.com/en-us/HT204443)

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


[Libreoffice-bugs] [Bug 104312] macOS: Severe lag on drawing canvas in "Draw"

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104312

--- Comment #7 from Telesto  ---
Created attachment 129199
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129199=edit
LLDB backtrace

Backtrace will switching selecting a square. Done with:
Version: 5.4.0.0.alpha0+
Build ID: 2bad9f1cd8da0cd3d8ff33e875eaf10c1fd9d0bf
CPU Threads: 4; OS Version: Mac OS X 10.12.2; UI Render: default; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2016-11-29_01:04:44
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 100055] Cannot add new remote service

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100055

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #5 from Buovjaga  ---
Thanks, closing.

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


[Libreoffice-bugs] [Bug 55057] Unable to select Opera as mail client.

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55057

--- Comment #7 from Buovjaga  ---
(In reply to beimaginativeegroup from comment #6)
> I did not confirm this bug again so sorry if this has been fixed. However, I
> don't think so. I know a lot of time has passed but to answer Buovjaga's
> question, it depends on whether LibreOffice wants to support Opera 12. In
> reality, Opera 12 and Opera Mail seem to have been updated in February. I
> have no idea whether any new updates are in the works.

Well, it would be great, if you tested with LibreOffice 5.2.

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


[Libreoffice-bugs] [Bug 104244] EDITING: current cell not indicated in calc

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104244

--- Comment #4 from Buovjaga  ---
(In reply to JPJ from comment #3)
> I meant to say the problem does not occur with either LO 5.2.2.2 or
> 5.3.0.0.alpha0+ which are still running on my Kubuntu 14.04.5 system which
> now resides in a virtual machine on my Neon system.

Ok, maybe you could ask Neon users to test. Perhaps on #kde or
https://community.kde.org/Neon#Developer_Communication

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


[Libreoffice-bugs] [Bug 100055] Cannot add new remote service

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100055

beimaginativeegr...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #4 from beimaginativeegr...@gmail.com ---
In LibreOffice 5.2.3.3, this seems to be 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 99746] [META] Improve PDF filter handling

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99746

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||104329


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104329
[Bug 104329] New ipdf filter does not prompt for password for Secured PDF and
returns "Image filter not found"
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104329] New ipdf filter does not prompt for password for Secured PDF and returns "Image filter not found"

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104329

V Stuart Foote  changed:

   What|Removed |Added

 Blocks||99746


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 55057] Unable to select Opera as mail client.

2016-12-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55057

--- Comment #6 from beimaginativeegr...@gmail.com ---
I did not confirm this bug again so sorry if this has been fixed. However, I
don't think so. I know a lot of time has passed but to answer Buovjaga's
question, it depends on whether LibreOffice wants to support Opera 12. In
reality, Opera 12 and Opera Mail seem to have been updated in February. I have
no idea whether any new updates are in the 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


  1   2   3   4   >