[Libreoffice-bugs] [Bug 97246] New: Farsi (Right to Left) languages bugs

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

Bug ID: 97246
   Summary: Farsi (Right to Left) languages bugs
   Product: LibreOffice
   Version: 5.0.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: oracula...@yahoo.com

Created attachment 122073
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122073=edit
Writer CTL bugs

Hi!
In Persian documents (Right to left CTL) there is some bugs:

1) AutoCaption Category in persian(RTL) have english names, such as
Illustration, Table,  It must be "شکل" , "جدول" , 

2) Line numbering in Right to Left Pages: shows latin numbers (When we set
numrals to "Context", It must show persian numbers, not latin numbers)

3) Line numbering in Right to Left Pages: when I insert a persian separator
text, shows it in reverse order!

4) In a Right to left paragraph: In Alignment page of paragraph dialog,
justified last line set to default. but in preview field shows a left to right
paragraph.


5) In persian paragraphs: In the position page of Bullets and numbering dialog
and Outline Numbering dialog: Numbering alignment Left works fine, but It must
renamed to Right, and preview field must show Right to Left paragraphs.

6) Persian language is Right to left. So, every persian book starts on left
page. Left pages in persian have odd numbers, and Right pages have even numbers
(Unlike english). In Writer Books view mode and automatically inserted blank
pages (in printer) is buggy for persian document.

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


[Libreoffice-bugs] [Bug 95505] Dump usage stats to text file in user profile rather than std error

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

--- Comment #17 from Yousuf (Jay) Philips  ---
(In reply to aybuke from comment #16)
> Hi Yousuf,
> 
> I'm trying to fix this part, using SvtPathOptions::GetUserConfigPath() but I
> can't finish yet. I'll send patch about hardcoded part.

Hi Aybuke,

Thanks for the update. Any input on the possibility of putting it in separate
files per session (comment 12) and in a /user_profile/usage/ folder?

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


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

2016-01-19 Thread Noel Grandin
 compilerplugins/clang/unusedmethods.py |   28 --
 sw/inc/IMark.hxx   |   24 --
 sw/inc/SwNumberTree.hxx|   13 
 sw/inc/acmplwrd.hxx|3 --
 sw/inc/dbmgr.hxx   |4 ---
 sw/inc/edimp.hxx   |2 -
 sw/inc/fmtcol.hxx  |2 -
 sw/inc/lineinfo.hxx|1 
 sw/inc/ndindex.hxx |   12 ---
 sw/inc/redline.hxx |3 --
 sw/inc/tabcol.hxx  |1 
 sw/inc/tblafmt.hxx |1 
 sw/source/core/bastyp/tabcol.cxx   |   21 ---
 sw/source/core/doc/docredln.cxx|5 
 sw/source/core/doc/docsort.cxx |5 
 sw/source/core/doc/lineinfo.cxx|   15 --
 sw/source/core/inc/blink.hxx   |2 -
 sw/source/core/inc/docsort.hxx |1 
 sw/source/core/inc/noteurl.hxx |2 -
 sw/source/core/inc/swblocks.hxx|1 
 sw/source/core/text/porlin.hxx |9 
 sw/source/filter/html/htmlfly.hxx  |1 
 sw/source/uibase/dbui/dbmgr.cxx|   35 -
 23 files changed, 13 insertions(+), 178 deletions(-)

New commits:
commit 5fe99ea3ee7b33a80f1419f2a4c9c1ea56dd00ee
Author: Noel Grandin 
Date:   Tue Jan 19 09:40:25 2016 +0200

loplugin:unusedmethods in sw/

Change-Id: Id452bfac5c83f130a138e06984a0c79c37af70ac

diff --git a/compilerplugins/clang/unusedmethods.py 
b/compilerplugins/clang/unusedmethods.py
index fb2ad7f..d5c7946 100755
--- a/compilerplugins/clang/unusedmethods.py
+++ b/compilerplugins/clang/unusedmethods.py
@@ -178,15 +178,13 @@ for d in definitionSet:
 continue
 if d in callSet:
 continue
-# ignore operators, they are normally called from inside STL code
-if "::operator" in d[1]:
+if isOtherConstness(d, callSet):
 continue
-# ignore the custom RTTI stuff
-if (("::CreateType()" in d[1])
-or ("::IsA(" in d[1])
-or ("::Type()" in d[1])):
+# include assigment operators, if we remove them, the compiler creates a 
default one, which can have odd consequences
+if "::operator=(" in d[1]:
 continue
-if isOtherConstness(d, callSet):
+# these are only invoked implicitly, so the plugin does not see the calls
+if "::operator new(" in d[1] or "::operator delete(" in d[1]:
 continue
 # just ignore iterators, they normally occur in pairs, and we typically 
want to leave one constness version alone
 # alone if the other one is in use.
@@ -198,9 +196,6 @@ for d in definitionSet:
 # used by Windows build
 if any(x in d[1] for x in ["DdeTopic::", "DdeData::", "DdeService::", 
"DdeTransaction::", "DdeConnection::", "DdeLink::", "DdeItem::", 
"DdeGetPutItem::"]):
continue
-# the include/tools/rtti.hxx stuff
-if ("::StaticType()" in d[1]) or ("::IsOf(void *(*)(void))" in d[1]):
-   continue
 # too much template magic here for my plugin
 if (   ("cairocanvas::" in d[1])
 or ("canvas::" in d[1])
@@ -231,6 +226,9 @@ for d in definitionSet:
continue
 if d[0] == "basic_ostream &" and 
d[1].startswith("operator<<(basic_ostreamStartsAfter(rPos);
 }
-#ifdef DBG_UTIL
-bool operator()(std::shared_ptr const& pMark,
-SwPosition const& rPos)
-{
-return pMark->StartsBefore(rPos);
-}
-bool operator()(std::shared_ptr const& pMark1,
-std::shared_ptr const& pMark2)
-{
-return (*pMark1) < (*pMark2);
-}
-#endif
 };
 
  

[Libreoffice-bugs] [Bug 36546] Internal HSQLDB 1.8 fails to cascade updates through multiple paths and deletions through some cyclic structures

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

--- Comment #20 from ribotb  ---
I redid the "Stack overflow" test.

With embedded HSQLDB;
-->  S1000 General error java.lang.StackOverflowError on statement "delete from
d_node;").
Same error with standalone HSQLDB 1.8:
--> java.sql.SQLException: SIOOO General error java.lang.StackOverfiowError

No problem with embedded Firebird.

Version: 5.1.0.2
Build ID: ecd3574d51754b043f865cf5bafee286d24db7cc
CPU Threads: 2; OS Version: Windows 6.1; UI Render: default; 
Locale : fr-FR (fr_FR)
on Win7/x86

Bernard

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


[Libreoffice-bugs] [Bug 96903] LO5: Creating, saving ODS then exiting LO5 locks Plasma 5

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

--- Comment #15 from thomi.sch...@gmx.net ---
Created attachment 122074
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122074=edit
Screenshot LO 5.1.0.2 after locking up Plasma 5 DE

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


[Libreoffice-bugs] [Bug 96089] Autosave run on unmodified file

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

--- Comment #3 from Yousuf (Jay) Philips  ---
(In reply to Beluga from comment #1)
> I only have "Save autorecovery.." and no autosave option.

Yes autosave meant save autorecovery. :D

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


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

2016-01-19 Thread Miklos Vajna
 sw/qa/extras/ooxmlimport/data/tdf85523.docx   |binary
 sw/qa/extras/ooxmlimport/ooxmlimport.cxx  |8 
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |3 ++-
 3 files changed, 10 insertions(+), 1 deletion(-)

New commits:
commit 39969defa29948d77565a7cd8a3471baaec8f35d
Author: Miklos Vajna 
Date:   Tue Jan 19 09:27:19 2016 +0100

tdf#85523 DOCX import: fix unexpected extra char at comment end

Change-Id: Ic3eb073d11a395a81b90fd1a9292d6ecf2940c09

diff --git a/sw/qa/extras/ooxmlimport/data/tdf85523.docx 
b/sw/qa/extras/ooxmlimport/data/tdf85523.docx
new file mode 100644
index 000..cd31ae4
Binary files /dev/null and b/sw/qa/extras/ooxmlimport/data/tdf85523.docx differ
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 
b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index a245be0..5fd2bf8 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -2116,6 +2116,14 @@ DECLARE_OOXMLIMPORT_TEST(testAnnotationFormatting, 
"annotation-formatting.docx")
 CPPUNIT_ASSERT_EQUAL(awt::FontUnderline::SINGLE, 
getProperty(getRun(xParagraph, 1), "CharUnderline"));
 }
 
+DECLARE_OOXMLIMPORT_TEST(testTdf85523, "tdf85523.docx")
+{
+auto xTextField = getProperty< uno::Reference 
>(getRun(getParagraph(1), 6), "TextField");
+auto xText = getProperty< uno::Reference >(xTextField, 
"TextRange");
+// This was "commentX": an unexpected extra char was added at the comment 
end.
+getParagraphOfText(1, xText, "comment");
+}
+
 DECLARE_OOXMLIMPORT_TEST(testDMLGroupShapeRunFonts, 
"dml-groupshape-runfonts.docx")
 {
 // Fonts defined by w:rFonts was not imported and so the font specified by 
a:fontRef was used.
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 651fb27..4cdd7c0 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -1135,9 +1135,10 @@ void DomainMapper_Impl::finishParagraph( PropertyMapPtr 
pPropertyMap )
 else
 {
 uno::Reference xCursor;
-if (m_bParaHadField)
+if (m_bParaHadField && !m_bIsInComments)
 {
 // Workaround to make sure char props of the field are 
not lost.
+// Not relevant for editeng-based comments.
 OUString sMarker("X");
 xCursor = xTextAppend->getText()->createTextCursor();
 if (xCursor.is())
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - sw/source

2016-01-19 Thread Jan-Marek Glogowski
 sw/source/uibase/dbui/dbmgr.cxx |   15 ++-
 1 file changed, 10 insertions(+), 5 deletions(-)

New commits:
commit 8d03d6dea84f8c0c9a83031b646e242df7ea5678
Author: Jan-Marek Glogowski 
Date:   Tue Jan 5 20:53:06 2016 +0100

tdf#93565 Use multiple docs for individual PDF MM

There is actually a comment in the mail merge code:

  // convert fields to text if we are exporting to PDF
  // this prevents a second merge while updating the fields
  // in SwXTextDocument::getRendererCount()

This was included to fix i#93714.

But the reference to 2005-05-23 #122919# in the actual code
doesn't help to understand, why the original code is needed.
I would like to get rid of it, but currently don't have time
for tests.

So the optimization to skip ConvertFieldsToText() and use a
single working document for individual document mail merge
breaks for PDF, as the working document won't contain any
fields after the first document is written.
This uses multiple working documents for PDF export again.

(cherry picked from commit d7e0d0135ba65243fab5ee038c21290b8e74e548)

Conflicts:
sw/inc/dbmgr.hxx
sw/source/uibase/dbui/dbmgr.cxx

Change-Id: I0cf1c64da27863fc5fb4bb6c7812fed90b737d13
Reviewed-on: https://gerrit.libreoffice.org/21136
Tested-by: Jenkins 
Reviewed-by: Michael Stahl 
(cherry picked from commit dcae0a5dba5aadc1e89828518102947f749db10e)
Reviewed-on: https://gerrit.libreoffice.org/21478
Reviewed-by: Miklos Vajna 

diff --git a/sw/source/uibase/dbui/dbmgr.cxx b/sw/source/uibase/dbui/dbmgr.cxx
index 69c027c..98080da 100644
--- a/sw/source/uibase/dbui/dbmgr.cxx
+++ b/sw/source/uibase/dbui/dbmgr.cxx
@@ -928,6 +928,8 @@ bool SwDBManager::MergeMailFiles(SwWrtShell* pSourceShell,
 pStoreToFilterOptions = 

 }
 }
+const bool bIsPDFeport = pStoreToFilter && 
pStoreToFilter->GetFilterName() == "writer_pdf_Export";
+
 bCancel = false;
 
 // in case of creating a single resulting file this has to be 
created here
@@ -1113,7 +1115,7 @@ bool SwDBManager::MergeMailFiles(SwWrtShell* pSourceShell,
 // Create a copy of the source document and work with 
that one instead of the source.
 // If we're not in the single file mode (which 
requires modifying the document for the merging),
 // it is enough to do this just once.
-if( 1 == nDocNo || bCreateSingleFile )
+if( 1 == nDocNo || bCreateSingleFile || bIsPDFeport )
 {
 assert( !xWorkDocSh.Is());
 // copy the source document
@@ -1271,7 +1273,7 @@ bool SwDBManager::MergeMailFiles(SwWrtShell* pSourceShell,
 
 //convert fields to text if we are exporting to PDF
 //this prevents a second merge while updating the 
fields in SwXTextDocument::getRendererCount()
-if( pStoreToFilter && 
pStoreToFilter->GetFilterName() == "writer_pdf_Export")
+if( bIsPDFeport )
 rWorkShell.ConvertFieldsToText();
 xWorkDocSh->DoSaveAs(*pDstMed);
 xWorkDocSh->DoSaveCompleted(pDstMed);
@@ -1360,7 +1362,7 @@ bool SwDBManager::MergeMailFiles(SwWrtShell* pSourceShell,
 }
 }
 }
-if( bCreateSingleFile )
+if( bCreateSingleFile || bIsPDFeport )
 {
 pWorkDoc->SetDBManager( pOldDBManager );
 xWorkDocSh->DoClose();
@@ -1398,8 +1400,11 @@ bool SwDBManager::MergeMailFiles(SwWrtShell* 
pSourceShell,
 psp::PrinterInfoManager::get().flushBatchPrint();
 #endif
 }
-pWorkDoc->SetDBManager( pOldDBManager );
-xWorkDocSh->DoClose();
+if( !bIsPDFeport )
+{
+pWorkDoc->SetDBManager( pOldDBManager );
+xWorkDocSh->DoClose();
+}
 }
 
 if (bCreateSingleFile)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 93565] MAILMERGE: Mail merge doesn't work with version 5.0 (individual documents in PDF format does not increment to next record data)

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

--- Comment #15 from Commit Notification 
 ---
Jan-Marek Glogowski committed a patch related to this issue.
It has been pushed to "libreoffice-5-0":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=8d03d6dea84f8c0c9a83031b646e242df7ea5678=libreoffice-5-0

tdf#93565 Use multiple docs for individual PDF MM

It will be available in 5.0.5.

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

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

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


[Libreoffice-bugs] [Bug 93565] MAILMERGE: Mail merge doesn't work with version 5.0 (individual documents in PDF format does not increment to next record data)

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:5.2.0 target:5.1.0.2 |target:5.2.0 target:5.1.0.2
   | backportRequest:5.0| backportRequest:5.0
   ||target:5.0.5

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


[Libreoffice-bugs] [Bug 97246] Farsi (Right to Left) language bugs

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

oracula...@yahoo.com changed:

   What|Removed |Added

Summary|Farsi (Right to Left)   |Farsi (Right to Left)
   |languages bugs  |language bugs

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


[Libreoffice-bugs] [Bug 36546] Internal HSQLDB 1.8 fails to cascade updates through multiple paths and deletions through some cyclic structures

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

--- Comment #19 from ribotb  ---
Hi,

I redid the test "Integrity constraint violation" with embedded HSQLDB:
--> Integrity constraint violation - no parent FK_SAMPLESTUDY table: D_SAMPLE

Test and also with srandalone HSQLDB 1.8:
--> java.sql.SQLException: Integrity constraint violation - no parent
FK_SAMPLESTUDY table: D_SAMPLE

No problem with embedded Firebird or Firebird Database Server 2.5 (except
Firebird does not accept NULL for field "element" in table D_SAMPLE).

Bernard

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


[Libreoffice-bugs] [Bug 97246] Farsi (Right to Left) language bugs

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

--- Comment #1 from oracula...@yahoo.com ---
In Bug No.6 page numbers also is buggy. In Persian, Left pages must have odd
numbers and right pages must have even numbers.

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


[Libreoffice-bugs] [Bug 47716] XLSX - Import ignores page layout

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

steve -_-  changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME

--- Comment #6 from steve -_-  ---
Since we don't have a specific patch fixing this issue, setting to WORKSFORME.
Thanks Christian for re-testing and updating this bug.

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


[Libreoffice-bugs] [Bug 97184] Alternate position of legend not stored

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

--- Comment #7 from Karsten  ---
Maybe i can install 5.1.1 parallel to teh stable version.
But i will not install another Linux - sorry.

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-1-0' - formula/source include/formula

2016-01-19 Thread Eike Rathke
 formula/source/ui/dlg/formula.cxx  |   13 +++--
 formula/source/ui/dlg/funcpage.cxx |9 +++--
 include/formula/formdata.hxx   |8 
 3 files changed, 22 insertions(+), 8 deletions(-)

New commits:
commit 120349fc4f9259fefd38e9b2fc0fc50bae035f56
Author: Eike Rathke 
Date:   Fri Jan 8 22:08:40 2016 +0100

Function Wizard: don't overwrite an unlisted function

* in a spreadsheet cell enter =LOG(foobar(SIN(1)))
* invoke Function Wizard on that cell (Ctrl+F2)
  LOG(foobar(SIN(1))) is marked in Formula edit field
* activate Functions page
  LOG(foobar(SIN(1))) is marked in Formula edit field
  Function LOG is selected
* click Next button
  foobar(SIN(1)) is marked in Formula edit field
  Function ABS is selected
* click Next button
  foobar(SIN(1)) is overwritten with ABS( )
* only Cancel solves the problem

foobar() could be any user defined or macro function that have no
function description in the Formula Wizard.

Change-Id: I1cb69a9e38c0b8f251d783bd0f67b4b24ade50d0
(cherry picked from commit 8aee44c94fd2abdb7f1566ad237da4bfdfc011fa)
Reviewed-on: https://gerrit.libreoffice.org/21431
Reviewed-by: Miklos Vajna 
Reviewed-by: Markus Mohrhard 
Reviewed-by: David Tardon 
Tested-by: David Tardon 

diff --git a/formula/source/ui/dlg/formula.cxx 
b/formula/source/ui/dlg/formula.cxx
index 0d0a646..1cf839d 100644
--- a/formula/source/ui/dlg/formula.cxx
+++ b/formula/source/ui/dlg/formula.cxx
@@ -1041,7 +1041,16 @@ IMPL_LINK_TYPED( FormulaDlg_Impl, BtnHdl, Button*, pBtn, 
void )
 }
 else if ( pBtn == m_pBtnForward )
 {
-const IFunctionDescription* pDesc =pFuncPage->GetFuncDesc( 
pFuncPage->GetFunction() );
+const IFunctionDescription* pDesc;
+sal_Int32 nSelFunc = pFuncPage->GetFunction();
+if (nSelFunc != LISTBOX_ENTRY_NOTFOUND)
+pDesc = pFuncPage->GetFuncDesc( nSelFunc );
+else
+{
+// Do not overwrite the selected formula expression, just edit the
+// unlisted function.
+pFuncDesc = pDesc = nullptr;
+}
 
 if(pDesc==pFuncDesc || !pFuncPage->IsVisible())
 EditNextFunc( true );
@@ -1963,7 +1972,7 @@ void FormEditData::Reset()
 nMode = 0;
 nFStart = 0;
 nCatSel = 1;//! oder 0 (zuletzt benutzte)
-nFuncSel = 0;
+nFuncSel = LISTBOX_ENTRY_NOTFOUND;
 nOffset = 0;
 nEdFocus = 0;
 bMatrix = false;
diff --git a/formula/source/ui/dlg/funcpage.cxx 
b/formula/source/ui/dlg/funcpage.cxx
index 42a2b35..7b83298f 100644
--- a/formula/source/ui/dlg/funcpage.cxx
+++ b/formula/source/ui/dlg/funcpage.cxx
@@ -155,7 +155,9 @@ void FuncPage::UpdateFunctionList()
 
 
 m_pLbFunction->SetUpdateMode( true );
-m_pLbFunction->SelectEntryPos(0);
+// Ensure no function is selected so the Next button doesn't overwrite a
+// function that is not in the list with an arbitrary selected one.
+m_pLbFunction->SetNoSelection();
 
 if(IsVisible()) SelHdl(*m_pLbFunction);
 }
@@ -198,7 +200,10 @@ sal_Int32 FuncPage::GetFuncPos(const IFunctionDescription* 
_pDesc)
 
 void FuncPage::SetFunction(sal_Int32 nFunc)
 {
-m_pLbFunction->SelectEntryPos(nFunc);
+if (nFunc == LISTBOX_ENTRY_NOTFOUND)
+m_pLbFunction->SetNoSelection();
+else
+m_pLbFunction->SelectEntryPos(nFunc);
 }
 
 void FuncPage::SetFocus()
diff --git a/include/formula/formdata.hxx b/include/formula/formdata.hxx
index 30c0ce5..ecd3dd1 100644
--- a/include/formula/formdata.hxx
+++ b/include/formula/formdata.hxx
@@ -37,8 +37,8 @@ public:
 
 inline sal_uInt16   GetMode() const { return nMode; }
 inline sal_Int32GetFStart() const   { return nFStart; }
-inline sal_uInt16   GetCatSel() const   { return nCatSel; }
-inline sal_uInt16   GetFuncSel() const  { return nFuncSel; }
+inline sal_Int32GetCatSel() const   { return nCatSel; }
+inline sal_Int32GetFuncSel() const  { return nFuncSel; }
 inline sal_uInt16   GetOffset() const   { return nOffset; }
 inline sal_uInt16   GetEdFocus() const  { return nEdFocus; }
 inline const OUString&  GetUndoStr() const  { return aUndoStr; }
@@ -63,8 +63,8 @@ protected:
 private:
 sal_uInt16  nMode;  // enum ScFormulaDlgMode
 sal_Int32   nFStart;
-sal_uInt16  nCatSel;
-sal_uInt16  nFuncSel;
+sal_Int32   nCatSel;
+sal_Int32   nFuncSel;
 sal_uInt16  nOffset;
 sal_uInt16  nEdFocus;
 OUStringaUndoStr;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97170] OpenCL Hangs Calc When Open Spreadsheet with Simple Formula

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

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #8 from raal  ---
Unfortunately it hasn't been possible for me to reproduce the crash with master
build. If possible, please follow the instructions provided at this link <
https://wiki.documentfoundation.org/How_to_get_a_backtrace_with_WinDbg > and
submit a backtrace.

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


[Libreoffice-bugs] [Bug 97238] document not saved in fully calculated state

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

--- Comment #3 from Martin  ---
I know hard recalc, but it isn't solve of problem. Columns with formulas in
this workbook are usually hidden and user have spotted only bad values in
summary (after upgrade Libreoffice). Autocalculate was always on. After use
hard recalc, this error happened again after some time. May be resolving is set
"Recalculation on File Load", but how is it possible that it happens? Origin of
this workbook is about 2 years old and till the version 4.4.7.2 worked
properly.

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


[Libreoffice-qa] Meeting tomorrow and time

2016-01-19 Thread Sophie
Hi all,

So there will be a QA irc meeting tomorrow at 13:00 UTC. Robinson will
you chair it? In case you're not available, let me know, I would jump in.
Also, I would like to discuss a more convenient time for the meeting.
What would be the best time for the group? speaking in UTC would it be
AM or PM? later in the evening?

Thanks in advance for your inputs :)
Cheers
Sophie
-- 
Sophie Gautier sophie.gaut...@documentfoundation.org
GSM: +33683901545
IRC: sophi
Co-founder - Release coordinator
The Document Foundation
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-bugs] [Bug 96903] LO5: Creating, saving ODS then exiting LO5 locks Plasma 5

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

--- Comment #14 from thomi.sch...@gmx.net ---
OK, I have installed LO 5.1 (5.1.0.2) in /usr/local/LibreOffice_5.1.0.2/ and
followed the instructions given in
"https://wiki.documentfoundation.org/Installing_in_parallel/Linux;.

Unfortunately the problems persists: After the 2nd attempt to create a Calc
file with the text "Test" in cell A1, saving it, closing it and then
terminating LO 5.1, it locked up my DE Plasma 5 again. Attached a screenshot
(by camera) of the outputs of LO 5.1: "LO5.1_DE_LockUp_20160119.jpg"

LO 5.1 locks my DE regardless of the value given to SAL_USE_VCLPLUGIN: neither
"gen" nor "kde4" prevent the lock up.

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


[Libreoffice-bugs] [Bug 42029] can't access toolbar dropdowns with smaller LO window

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

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||tietze.he...@gmail.com
 Whiteboard||needsDevEval, topicUI

--- Comment #32 from Yousuf (Jay) Philips  ---
In reply to Yan Pashkovsky from comment #31)
> Created attachment 121858 [details]
> googledocs mockup
> 
> This is how it is made in google docs, "More" button spawns subpanel with
> buttons

Interesting approach to have a new toolbar popup that is filled with all the
missing buttons.

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


[Libreoffice-ux-advise] [Bug 42029] can't access toolbar dropdowns with smaller LO window

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

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||tietze.he...@gmail.com
 Whiteboard||needsDevEval, topicUI

--- Comment #32 from Yousuf (Jay) Philips  ---
In reply to Yan Pashkovsky from comment #31)
> Created attachment 121858 [details]
> googledocs mockup
> 
> This is how it is made in google docs, "More" button spawns subpanel with
> buttons

Interesting approach to have a new toolbar popup that is filled with all the
missing buttons.

-- 
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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 96982] libreoffice icons: feature request

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

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #2 from Yousuf (Jay) Philips  ---
Hi RudraB,

LibreOffice has over 2 thousand different icons per theme, so there isnt a
means of pulling these from a user's DE. Luckily the default theme used in LO
is derived from Gnome's default icons and LO also has a Breeze icon set which
is the default in Plasma/KDE 5.

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


[Libreoffice-bugs] [Bug 97150] OPENCL: VLOOKUP returns wrong data when it is used at many cells

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

m.a.riosv  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|NOTOURBUG   |---

--- Comment #5 from m.a.riosv  ---
Not so quick, Jesús. :)

The code to every function for use with OpenCL is done inside LibreOffice.

https://gerrit.libreoffice.org/gitweb?p=core.git=search=HEAD=commit=opencl+vlookup

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


[Libreoffice-bugs] [Bug 80110] UPDATE: get 'checking for an update failed' error when checking for updates

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

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||momonas...@gmail.com,
   ||vstuart.fo...@utsa.edu

--- Comment #6 from Yousuf (Jay) Philips  ---
Would be good to get dev and ux input on this.

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


Re: VCL question

2016-01-19 Thread Chris Sherlock
The readme, IMO, just reflects the state of VCL :-) a bit of a mess!

Chris

> On 19 Jan 2016, at 5:52 PM, Tor Lillqvist  wrote:
> 
> 
> > Well the "sv" stands for StarView, I am fairly sure. The "p" might
> > mean "pseudo" or "pixmap"?
> >
> plugin.
> 
> Which of course by now is rather hilarious, as "svp", if I understand 
> correctly, mostly is synonym with "headless" (in the vcl sense), and its code 
> is not a plugin in a technical sense, but statically linked in the vcl 
> (dynamical) library.
> 
> In general, vcl/README would need some clueful editing. It is full of terms 
> that are not defined, used only once, and then later another term used for 
> the same concept. Or the same term used for different concepts. I am not 
> volunteering.
> 
> --tml
>  
> ___
> LibreOffice mailing list
> LibreOffice@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/libreoffice

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


Re: Resuming downloads of external files

2016-01-19 Thread Stephan Bergmann

On 01/18/2016 11:16 PM, Chris Sherlock wrote:

We’d just have to add in the "-C -“ switches to Curl.

Are there any concerns in making this occur?


Note that, at least with --with-external-tar=..., it can happen that 
multiple builds try to download concurrently.  I don't know whether the 
current code handles that gracefully, nor whether adding -C would have 
an effect on that.

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


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

2016-01-19 Thread Tor Lillqvist
 basegfx/source/polygon/b2dpolygoncutandtouch.cxx |4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

New commits:
commit 6dfcaa89b542efac7561a956fb8bfaf39c3b89de
Author: Tor Lillqvist 
Date:   Tue Jan 19 11:58:03 2016 +0200

Bin unneeded variable

As far as I see, the only use of aNormalizedEdgeVector is as a
parameter to areParallel(), and there is no need for that to be
normalized, is there?

Change-Id: I31ca09391894ab441e5b88dbdd636cf4b91ac5c2

diff --git a/basegfx/source/polygon/b2dpolygoncutandtouch.cxx 
b/basegfx/source/polygon/b2dpolygoncutandtouch.cxx
index 71804b3..378c858 100644
--- a/basegfx/source/polygon/b2dpolygoncutandtouch.cxx
+++ b/basegfx/source/polygon/b2dpolygoncutandtouch.cxx
@@ -620,8 +620,6 @@ namespace basegfx
 {
 const B2DRange aRange(rCurr, rNext);
 const B2DVector aEdgeVector(rNext - rCurr);
-B2DVector aNormalizedEdgeVector(aEdgeVector);
-aNormalizedEdgeVector.normalize();
 bool bTestUsingX(fabs(aEdgeVector.getX()) > 
fabs(aEdgeVector.getY()));
 
 for(sal_uInt32 a(0L); a < nPointCount; a++)
@@ -634,7 +632,7 @@ namespace basegfx
 {
 const B2DVector aTestVector(aTestPoint - rCurr);
 
-if(areParallel(aNormalizedEdgeVector, aTestVector))
+if(areParallel(aEdgeVector, aTestVector))
 {
 const double fCut((bTestUsingX)
 ? aTestVector.getX() / aEdgeVector.getX()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 41190] FORMATTING, FILEOPEN: no drop-down field when open docx template file

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

Alejandro Moreno  changed:

   What|Removed |Added

 Depends on|49451   |66397

--- Comment #12 from Alejandro Moreno  ---
This bug also depens on 66397.

settings.xml has the line

that doesn't permit modify background color and this is ignored by Libreoffice.

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


[Libreoffice-bugs] [Bug 66397] FILEOPEN: DOCX import not doing anything about 'Restrict Editing'

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

Alejandro Moreno  changed:

   What|Removed |Added

 Blocks||41190

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


[Libreoffice-bugs] [Bug 49451] FILEOPEN MSO2007 .docx listbox inactive

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

Alejandro Moreno  changed:

   What|Removed |Added

 Blocks|41190   |

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


[Libreoffice-bugs] [Bug 97051] Writer crashes when document has header or footer and you open page style dialog

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

--- Comment #10 from Peter Maunder  ---
Can reproduce on Linux-Mint-Mate 17  32bit

Version: 5.1.0.2
Build ID: ecd3574d51754b043f865cf5bafee286d24db7cc
CPU Threads: 4; OS Version: Linux 3.13; UI Render: default; 
Locale: en-GB (en_GB.UTF-8)

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


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

2016-01-19 Thread Stephan Bergmann
 sc/source/ui/dbgui/validate.cxx |5 +
 sc/source/ui/inc/validate.hxx   |2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

New commits:
commit 8d1a24dae03690b576310e3539369916f31ac475
Author: Stephan Bergmann 
Date:   Tue Jan 19 10:58:44 2016 +0100

Make virtual ~ScValidationDlg non-inline

...otherwise, GCC 6 would aggressively inline ScValidationDlg destruction 
of the
VclPtr in ScValidityRefChildWin::ScValidityRefChildWin
(sc/source/ui/view/reffact.cxx, in sc library), checking whether the vtable
points at ~ScValidationDlg (instead of a derived class dtor) to directly 
inline
the ~ScValidationDlg code, which requires the ScValidateionDlg vtable (to 
store
it in the object's vtable during destruction), which requires the code of 
inline
virtual ScValidationDlg::dispose and ScValidationDlg::Close, which in turn 
need
the addresses of (non-inline) ScValidationDlg::RemoveRefDlg and
ScTPValidationValue::RemoveRefDlg, both defined in the scui library and not
exported from there.

Change-Id: I7eb96f42deb5edd844d91e999aa5511679302c01

diff --git a/sc/source/ui/dbgui/validate.cxx b/sc/source/ui/dbgui/validate.cxx
index 459c5d7..db73012 100644
--- a/sc/source/ui/dbgui/validate.cxx
+++ b/sc/source/ui/dbgui/validate.cxx
@@ -96,6 +96,11 @@ ScValidationDlg::ScValidationDlg(vcl::Window* pParent, const 
SfxItemSet* pArgSet
 get(m_pHBox, "refinputbox");
 }
 
+ScValidationDlg::~ScValidationDlg()
+{
+disposeOnce();
+}
+
 void ScTPValidationValue::SetReferenceHdl( const ScRange , ScDocument* 
pDoc )
 {
 if ( rRange.aStart != rRange.aEnd )
diff --git a/sc/source/ui/inc/validate.hxx b/sc/source/ui/inc/validate.hxx
index 2ef7738..8849557 100644
--- a/sc/source/ui/inc/validate.hxx
+++ b/sc/source/ui/inc/validate.hxx
@@ -176,7 +176,7 @@ class ScValidationDlg
 
 public:
 explicit ScValidationDlg( vcl::Window* pParent, const SfxItemSet* pArgSet, 
ScTabViewShell * pTabViewSh, SfxBindings *pB = nullptr );
-virtual ~ScValidationDlg() { disposeOnce(); }
+virtual ~ScValidationDlg();
 virtual voiddispose() override
 {
 if( m_bOwnRefHdlr )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97183] Blacked Toolbar Icon Background When Using Breeze Theme

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

thanosshad...@yahoo.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
Version|unspecified |5.0.2.2 release
 Ever confirmed|1   |0

--- Comment #2 from thanosshad...@yahoo.com ---
OpenGL boxes are unchecked. Oddly, when I tried to check them, after opening
again Tools > Options > LibreOffice > View, OpenGL was still unchecked. The
version is 5.0.2.2 and later. I updated teh information you requested.

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


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

2016-01-19 Thread Stephan Bergmann
 desktop/source/app/cmdlineargs.cxx |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 4a5dda084a8257bde6d89f7657a54def9e286c21
Author: Stephan Bergmann 
Date:   Tue Jan 19 11:30:12 2016 +0100

Make sure desktop under LOK does not see osl_setCommandArgs CommandLineArgs

Our sal/cppunittester/cppunittester.cxx uses SAL_IMPLEMENT_MAIN, so 
forwards the
cmd line args to osl_setCommandArgs.  
CppunitTest_libreofficekit_tiledrendering
(run via that cppunittester) starts LOK, which starts SVMain on a 
lo_startmain
thread, which calls deskopt::DispatchWatcher::executeDispatchRequests to 
process
any cmd line arg requests to open documents.  It sees the
libtest_libreofficekit_tiledrendering.so (or .dylib/.dll) passed to
cppunittester, and tries to open it as a LO document.  Type detection will
typically determine it is plain text that should be opened with Writer, 
which
will succeed.  But when the .so is built with GCC 6, it happens to be 
detected
as a MacPaint document, loading which fails, so that executeDispatchRequests
(desktop/source/app/dispatchwatcher.cxx) will call xDesktop->terminate(), 
which
unwinds that lo_startmain thread (DeInitVCL etc.).  But the main 
cppunittester
thread is still calling into LOK, which is under the assumption that VCL 
etc. is
still functional, and somewhat random crashes will happen.

Change-Id: Ie7b00e797a0f3223b3942bb63a31aa9c44370247

diff --git a/desktop/source/app/cmdlineargs.cxx 
b/desktop/source/app/cmdlineargs.cxx
index aa65234..b2b1ba8 100644
--- a/desktop/source/app/cmdlineargs.cxx
+++ b/desktop/source/app/cmdlineargs.cxx
@@ -30,6 +30,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -70,7 +71,9 @@ std::vector< OUString > translateExternalUris(
 class ExtCommandLineSupplier: public CommandLineArgs::Supplier {
 public:
 explicit ExtCommandLineSupplier():
-m_count(rtl_getAppCommandArgCount()),
+m_count(
+comphelper::LibreOfficeKit::isActive()
+? 0 : rtl_getAppCommandArgCount()),
 m_index(0)
 {
 OUString url;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 41190] FORMATTING, FILEOPEN: no drop-down field when open docx template file

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

--- Comment #13 from Alejandro Moreno  ---
If you see the content of the file it contains the line
 
in document.xml that is the background color in Libreoffice. But if I open the
file with MS Word I obtain that MS Word ignores that line. I could not identify
because MS Office does that.

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


[Libreoffice-commits] core.git: external/boost

2016-01-19 Thread Stephan Bergmann
 external/boost/UnpackedTarball_boost.mk |1 
 external/boost/gcc6-warnings.patch.0|   51 
 2 files changed, 52 insertions(+)

New commits:
commit 92969eaa5628c914e113d754c197de19c0908687
Author: Stephan Bergmann 
Date:   Tue Jan 19 11:45:08 2016 +0100

external/boost: silence some GCC 6 warnings

Change-Id: I4613f013c39e439dd11d3abc3737511cb8788d4f

diff --git a/external/boost/UnpackedTarball_boost.mk 
b/external/boost/UnpackedTarball_boost.mk
index e52f6cd..b3a9c3a 100644
--- a/external/boost/UnpackedTarball_boost.mk
+++ b/external/boost/UnpackedTarball_boost.mk
@@ -86,6 +86,7 @@ boost_patches += boost_1_59_0.multi_array.wshadow.patch
 boost_patches += boost_1_59_0.property_tree.wreturn-type.patch
 
 boost_patches += clang-cl.patch.0
+boost_patches += gcc6-warnings.patch.0
 
 $(eval $(call gb_UnpackedTarball_UnpackedTarball,boost))
 
diff --git a/external/boost/gcc6-warnings.patch.0 
b/external/boost/gcc6-warnings.patch.0
new file mode 100644
index 000..b0362d1
--- /dev/null
+++ b/external/boost/gcc6-warnings.patch.0
@@ -0,0 +1,51 @@
+--- boost/function/function_base.hpp
 boost/function/function_base.hpp
+@@ -305,7 +305,14 @@
+   if (op == clone_functor_tag || op == move_functor_tag) {
+ const functor_type* in_functor = 
+   static_cast(static_cast(_buffer.data));
++#if defined __GNUC__
++#pragma GCC diagnostic push
++#pragma GCC diagnostic ignored "-Wplacement-new"
++#endif
+ new (reinterpret_cast(_buffer.data)) 
functor_type(*in_functor);
++#if defined __GNUC__
++#pragma GCC diagnostic pop
++#endif
+ 
+ if (op == move_functor_tag) {
+   functor_type* f = 
static_cast(static_cast(_buffer.data));
+--- boost/function/function_template.hpp
 boost/function/function_template.hpp
+@@ -569,7 +569,14 @@
+ void 
+ assign_functor(FunctionObj f, function_buffer& functor, mpl::true_) 
const
+ {
++#if defined __GNUC__
++#pragma GCC diagnostic push
++#pragma GCC diagnostic ignored "-Wplacement-new"
++#endif
+   new (reinterpret_cast()) FunctionObj(f);
++#if defined __GNUC__
++#pragma GCC diagnostic pop
++#endif
+ }
+ template
+ void 
+--- boost/multi_index/detail/index_node_base.hpp
 boost/multi_index/detail/index_node_base.hpp
+@@ -51,7 +51,14 @@
+ 
+   value_type& value()
+   {
++#if defined __GNUC__
++#pragma GCC diagnostic push
++#pragma GCC diagnostic ignored "-Wstrict-aliasing"
++#endif
+ return *reinterpret_cast(>space);
++#if defined __GNUC__
++#pragma GCC diagnostic pop
++#endif
+   }
+ 
+   const value_type& value()const
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: external/clucene

2016-01-19 Thread Stephan Bergmann
 external/clucene/patches/clucene-warnings.patch |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit ae4139e220201fe40f034e054849634786f1afd9
Author: Stephan Bergmann 
Date:   Tue Jan 19 11:47:18 2016 +0100

external/clucene: Silence -Werror=misleading-indentation (GCC 6)

Change-Id: I9a067605f7c477f4e057338577a437cda7f2aa3d

diff --git a/external/clucene/patches/clucene-warnings.patch 
b/external/clucene/patches/clucene-warnings.patch
index fc3e322..49cc0d4 100644
--- a/external/clucene/patches/clucene-warnings.patch
+++ b/external/clucene/patches/clucene-warnings.patch
@@ -69,7 +69,7 @@
  #endif
 --- src/core/CLucene/util/Array.h  2012-02-22 12:37:22.510637696 +
 +++ src/core/CLucene/util/Array.h  2012-02-22 12:38:33.71884 +
-@@ -7,6 +7,12 @@
+@@ -7,6 +7,13 @@
  #ifndef _lucene_util_Array_
  #define _lucene_util_Array_
  
@@ -77,6 +77,7 @@
 +# pragma GCC diagnostic push
 +# pragma GCC diagnostic ignored "-Wshadow"
 +# pragma GCC diagnostic ignored "-Wunused-parameter"
++# pragma GCC diagnostic ignored "-Wmisleading-indentation"
 +#endif
 +
  #include 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: external/libetonyek

2016-01-19 Thread Stephan Bergmann
 external/libetonyek/ExternalProject_libetonyek.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b03879a9396c740bca248d9fcc7d8420a414e946
Author: Stephan Bergmann 
Date:   Tue Jan 19 11:48:21 2016 +0100

Pass --enable-symbols into external/libetonyek

Change-Id: I60f7817b1d5e32ad642076ea2a9f7b7522ebb1de

diff --git a/external/libetonyek/ExternalProject_libetonyek.mk 
b/external/libetonyek/ExternalProject_libetonyek.mk
index dda5a8b..963f48e 100644
--- a/external/libetonyek/ExternalProject_libetonyek.mk
+++ b/external/libetonyek/ExternalProject_libetonyek.mk
@@ -48,7 +48,7 @@ $(call gb_ExternalProject_get_state_target,libetonyek,build) :
'LDFLAGS=-Wl$(COMMA)-z$(COMMA)origin \
-Wl$(COMMA)-rpath$(COMMA)\ORIGIN') \
CPPFLAGS="$(CPPFLAGS) $(if 
$(SYSTEM_BOOST),$(BOOST_CPPFLAGS),-I$(call gb_UnpackedTarball_get_dir,boost))" \
-   CXXFLAGS="$(CXXFLAGS) $(CXXFLAGS_CXX11)" \
+   CXXFLAGS="$(CXXFLAGS) $(CXXFLAGS_CXX11) $(if $(filter 
$(true),$(gb_SYMBOL)),$(gb_DEBUGINFO_FLAGS))" \
LANGTAG_CFLAGS="$(LIBLANGTAG_CFLAGS)" \
LANGTAG_LIBS="$(LIBLANGTAG_LIBS)" \
XML_CFLAGS="$(LIBXML_CFLAGS)" \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-01-19 Thread Stephan Bergmann
 sw/source/core/text/txtfrm.cxx |8 
 1 file changed, 8 insertions(+)

New commits:
commit 59f190a5ac18a68a60d169e87fab9c335f488da0
Author: Stephan Bergmann 
Date:   Tue Jan 19 11:49:44 2016 +0100

Silence some odd -Werror=strict-overflow (GCC 6)

Change-Id: I7facae62c7ce0977e8c40d60720e4fe32460cd3d

diff --git a/sw/source/core/text/txtfrm.cxx b/sw/source/core/text/txtfrm.cxx
index 0cc84d9..dc33a52 100644
--- a/sw/source/core/text/txtfrm.cxx
+++ b/sw/source/core/text/txtfrm.cxx
@@ -681,7 +681,15 @@ sal_Int32 SwTextFrame::FindBrk( const OUString ,
 
 bool SwTextFrame::IsIdxInside( const sal_Int32 nPos, const sal_Int32 nLen ) 
const
 {
+// Silence over-eager warning emitted at least by GCC trunk towards 6:
+#if defined __GNUC__ && !defined __clang__
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wstrict-overflow"
+#endif
 if( nLen != COMPLETE_STRING && GetOfst() > nPos + nLen ) // the range 
preceded us
+#if defined __GNUC__ && !defined __clang__
+#pragma GCC diagnostic pop
+#endif
 return false;
 
 if( !GetFollow() ) // the range doesn't precede us,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Resuming downloads of external files

2016-01-19 Thread Matúš Kukan
On 18 January 2016 at 23:16, Chris Sherlock  wrote:
> I notice we use curl to download things like boost.

I think we use curl only if wget is not found.

> Would it be possible to use the -C (continue) command?

No idea, but you can easily do that locally as
make CURL="curl -C" fetch
Something like that should work I hope.

Best,

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


[Libreoffice-bugs] [Bug 95505] Dump usage stats to text file in user profile rather than std error

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

--- Comment #18 from aybuke  ---
(In reply to Yousuf (Jay) Philips from comment #17)
> (In reply to aybuke from comment #16)
> > Hi Yousuf,
> > 
> > I'm trying to fix this part, using SvtPathOptions::GetUserConfigPath() but I
> > can't finish yet. I'll send patch about hardcoded part.
> 
> Hi Aybuke,
> 
> Thanks for the update. Any input on the possibility of putting it in
> separate files per session (comment 12) and in a /user_profile/usage/ folder?

Sure, the patch i'll send includes what you said. (Directory "usage" and
filename contains time information.)

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-1-0' - officecfg/registry sd/source sd/uiconfig

2016-01-19 Thread Philippe Jung
 officecfg/registry/schema/org/openoffice/Office/Impress.xcs |   10 ++
 sd/source/ui/app/optsitem.cxx   |   13 +++
 sd/source/ui/inc/optsitem.hxx   |4 ++
 sd/source/ui/view/ViewShellBase.cxx |   20 +++-
 sd/uiconfig/simpress/toolbar/standardbar.xml|5 +--
 5 files changed, 41 insertions(+), 11 deletions(-)

New commits:
commit bef97e1e067b4e0ef48c0ea8966c8107a0d2b6d4
Author: Philippe Jung 
Date:   Mon Jan 18 13:25:41 2016 +0100

tdf#97119 Make TabBarVisible configuration persistant

Now the TabBarVisible status persist between LO quit/relaunch. It is also 
taking into accoutn when opening a (existing/new) presentation.
Fixes the incorrect toolbar button status
Moves the two buttons on Standard bar, in the PageSetup/SlideMasterPage 
group.
ShowTabBar button is also enabled but not selected by default.

Change-Id: Idd9ab15efebc2bf43bc827afaa1eb1457b39deec
Reviewed-on: https://gerrit.libreoffice.org/21541
Tested-by: Jenkins 
Reviewed-by: Katarina Behrens 
(cherry picked from commit 87084436d39662636e92dd03a5161293efb80948)
Reviewed-on: https://gerrit.libreoffice.org/21584
Reviewed-by: Samuel Mehrbrodt 
Reviewed-by: David Tardon 
Tested-by: David Tardon 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Impress.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Impress.xcs
index 276476a..2ba88b4 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Impress.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Impress.xcs
@@ -559,6 +559,16 @@
 
 150
   
+  
+
+
+
+
+  Indicates whether the tab bar should be visible on top of the 
slide panel.
+  Tab bar is visible
+
+false
+  
   
 
   Contains text editing related configuration items.
diff --git a/sd/source/ui/app/optsitem.cxx b/sd/source/ui/app/optsitem.cxx
index 628453b..ca0d104 100644
--- a/sd/source/ui/app/optsitem.cxx
+++ b/sd/source/ui/app/optsitem.cxx
@@ -428,6 +428,7 @@ SdOptionsMisc::SdOptionsMisc( sal_uInt16 nConfigId, bool 
bUseConfig ) :
 bEnablePresenterScreen( true),
 bSolidDragging( true ),
 bSummationOfParagraphs( false ),
+bTabBarVisible( true ),
 bShowUndoDeleteWarning( true ),
 bSlideshowRespectZOrder( true ),
 bShowComments( true ),
@@ -460,6 +461,7 @@ bool SdOptionsMisc::operator==( const SdOptionsMisc& rOpt ) 
const
 IsEnableSdremote() == rOpt.IsEnableSdremote() &&
 IsEnablePresenterScreen() == rOpt.IsEnablePresenterScreen()&&
 IsSummationOfParagraphs() == rOpt.IsSummationOfParagraphs() &&
+IsTabBarVisible() == rOpt.IsTabBarVisible() &&
 IsSolidDragging() == rOpt.IsSolidDragging() &&
 IsShowUndoDeleteWarning() == rOpt.IsShowUndoDeleteWarning() &&
 IsSlideshowRespectZOrder() == rOpt.IsSlideshowRespectZOrder() &&
@@ -513,7 +515,8 @@ void SdOptionsMisc::GetPropNameArray( const char**& 
ppNames, sal_uLong& rCount )
 "PenColor",
 "PenWidth",
 "Start/EnableSdremote",
-"Start/EnablePresenterScreen"
+"Start/EnablePresenterScreen",
+"TabBarVisible"
 };
 
 rCount = ( ( GetConfigId() == SDCFG_IMPRESS ) ? SAL_N_ELEMENTS(aPropNames) 
: 14 );
@@ -574,6 +577,10 @@ bool SdOptionsMisc::ReadData( const Any* pValues )
 
 if( pValues[25].hasValue() )
 SetEnablePresenterScreen( *static_cast(pValues[ 
25 ].getValue()) );
+
+if( pValues[26].hasValue() ) {
+SetTabBarVisible( *static_cast(pValues[ 26 
].getValue()) );
+}
 }
 
 return true;
@@ -615,6 +622,7 @@ bool SdOptionsMisc::WriteData( Any* pValues ) const
 pValues[ 23 ] <<= GetPresentationPenWidth();
 pValues[ 24 ] <<= IsEnableSdremote();
 pValues[ 25 ] <<= IsEnablePresenterScreen();
+pValues[ 26 ] <<= IsTabBarVisible();
 }
 
 return true;
@@ -642,6 +650,7 @@ SdOptionsMiscItem::SdOptionsMiscItem( sal_uInt16 _nWhich, 
SdOptions* pOpts, ::sd
 maOptionsMisc.SetEnableSdremote( pOpts->IsEnableSdremote() );
 maOptionsMisc.SetEnablePresenterScreen( 
pOpts->IsEnablePresenterScreen() );
 maOptionsMisc.SetSummationOfParagraphs( 
pOpts->IsSummationOfParagraphs() );
+maOptionsMisc.SetTabBarVisible( pOpts->IsTabBarVisible() );
 maOptionsMisc.SetShowUndoDeleteWarning( 
pOpts->IsShowUndoDeleteWarning() );
 maOptionsMisc.SetPrinterIndependentLayout( 
pOpts->GetPrinterIndependentLayout() );
 maOptionsMisc.SetDefaultObjectSizeWidth( 
pOpts->GetDefaultObjectSizeWidth() );
@@ -718,6 +727,8 @@ void SdOptionsMiscItem::SetOptions( SdOptions* pOpts ) const
 

[Libreoffice-bugs] [Bug 66397] FILEOPEN: DOCX import not doing anything about 'Restrict Editing'

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

Cor Nouws  changed:

   What|Removed |Added

Version|4.2.0.0.alpha0+ Master  |Inherited From OOo

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


[Libreoffice-commits] core.git: external/boost

2016-01-19 Thread Stephan Bergmann
 external/boost/UnpackedTarball_boost.mk |1 +
 external/boost/gcc6-warnings.patch.0|6 --
 2 files changed, 5 insertions(+), 2 deletions(-)

New commits:
commit 2c9d652dc7f7a1e2d0d8ea0cfcdcf47608a3d84e
Author: Stephan Bergmann 
Date:   Tue Jan 19 12:01:08 2016 +0100

Does that help old GCC that don't know -Wplacement-new

...and would thus error out with -Werror=pragmas?

Change-Id: I113c43bed4d6d0c03e4c3c68684c50fd386428d9

diff --git a/external/boost/UnpackedTarball_boost.mk 
b/external/boost/UnpackedTarball_boost.mk
index b3a9c3a..6b99265 100644
--- a/external/boost/UnpackedTarball_boost.mk
+++ b/external/boost/UnpackedTarball_boost.mk
@@ -87,6 +87,7 @@ boost_patches += boost_1_59_0.property_tree.wreturn-type.patch
 
 boost_patches += clang-cl.patch.0
 boost_patches += gcc6-warnings.patch.0
+boost_patches += gcc-pr69327.patch.0
 
 $(eval $(call gb_UnpackedTarball_UnpackedTarball,boost))
 
diff --git a/external/boost/gcc6-warnings.patch.0 
b/external/boost/gcc6-warnings.patch.0
index b0362d1..e5f7b2d 100644
--- a/external/boost/gcc6-warnings.patch.0
+++ b/external/boost/gcc6-warnings.patch.0
@@ -1,11 +1,12 @@
 --- boost/function/function_base.hpp
 +++ boost/function/function_base.hpp
-@@ -305,7 +305,14 @@
+@@ -305,7 +305,15 @@
if (op == clone_functor_tag || op == move_functor_tag) {
  const functor_type* in_functor = 
static_cast(static_cast(_buffer.data));
 +#if defined __GNUC__
 +#pragma GCC diagnostic push
++#pragma GCC diagnostic ignored "-Wpragmas"
 +#pragma GCC diagnostic ignored "-Wplacement-new"
 +#endif
  new (reinterpret_cast(_buffer.data)) 
functor_type(*in_functor);
@@ -17,12 +18,13 @@
functor_type* f = 
static_cast(static_cast(_buffer.data));
 --- boost/function/function_template.hpp
 +++ boost/function/function_template.hpp
-@@ -569,7 +569,14 @@
+@@ -569,7 +569,15 @@
  void 
  assign_functor(FunctionObj f, function_buffer& functor, mpl::true_) 
const
  {
 +#if defined __GNUC__
 +#pragma GCC diagnostic push
++#pragma GCC diagnostic ignored "-Wpragmas"
 +#pragma GCC diagnostic ignored "-Wplacement-new"
 +#endif
new (reinterpret_cast()) FunctionObj(f);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] dictionaries.git: Branch 'distro/collabora/cp-5.0' - 3 commits - de/de_AT_frami.aff de/de_AT_frami.dic de/de_CH_frami.aff de/de_CH_frami.dic de/de_DE_frami.aff de/de_DE_frami.dic

2016-01-19 Thread Ricardo Palomares
 de/README_de_DE_frami.txt |   34 
 de/README_extension_owner.txt |   20 
 de/README_hyph_de.txt |4 
 de/de_AT_frami.aff|   32 
 de/de_AT_frami.dic|30454 +-
 de/de_CH_frami.aff|   32 
 de/de_CH_frami.dic|30334 +-
 de/de_DE_frami.aff|   32 
 de/de_DE_frami.dic|30489 +-
 de/description.xml|2 
 de/hyph_de_AT.dic | 3901 
 de/hyph_de_CH.dic | 3892 
 de/hyph_de_DE.dic | 3901 
 de/th_de_CH_v2.dat|196411 
+++---
 de/th_de_DE_v2.dat|196405 +++--
 es/README_es_ANY.txt  |   18 
 es/README_hyph_es_ANY.txt |   19 
 es/README_th_es_ANY.txt   |8 
 es/es_ANY.aff |10634 +-
 es/es_ANY.dic |42180 +
 es/package-description.txt|2 
 es/th_es_ANY_v2.dat   |52386 +--
 sv_SE/description.xml |2 
 sv_SE/sv_FI.dic   |  361 
 sv_SE/sv_SE.dic   |  365 
 25 files changed, 402888 insertions(+), 199030 deletions(-)

New commits:
commit 2d2df105c0ba5b7ac4bf7c95b9ecffb3a2f94121
Author: Ricardo Palomares 
Date:   Sat Jan 16 21:34:41 2016 +0100

Bring shipped Spanish dictionary up to version 2.0

Change-Id: Iecc9e2d62bd72fa5cdcafe6f04343c611b056cff
Reviewed-on: https://gerrit.libreoffice.org/21522
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 
(cherry picked from commit 0d3b5e5314e68c3cf5d573b2e7bdc11143dcb821)
Signed-off-by: Adolfo Jayme Barrientos 

diff --git a/es/README_es_ANY.txt b/es/README_es_ANY.txt
index 83b0611..55700e7 100644
--- a/es/README_es_ANY.txt
+++ b/es/README_es_ANY.txt
@@ -1,12 +1,12 @@
-  
-  ****
-  **  Diccionario para corrección ortográfica en español de OpenOffice.org  
**
-  ****
-  
-  **  VERSIÓN GENÉRICA PARA TODAS LAS LOCALIZACIONES
**
-  
-
-   Versión 0.8
+  *
+  ** **
+  **  Diccionario para corrección ortográfica en español de LibreOffice  **
+  ** **
+  *
+  **  VERSIÓN GENÉRICA PARA TODAS LAS LOCALIZACIONES **
+  *
+
+   Versión 2.0
 
 SUMARIO
 
diff --git a/es/README_hyph_es_ANY.txt b/es/README_hyph_es_ANY.txt
index d0288ac..3ef38e3 100644
--- a/es/README_hyph_es_ANY.txt
+++ b/es/README_hyph_es_ANY.txt
@@ -1,10 +1,10 @@
-  
-  ****
-  **  Patrones de separación silábica en español para OpenOffice.org
**
-  ****
-  
-  **  VERSIÓN GENÉRICA PARA TODAS LAS LOCALIZACIONES DEL ESPAÑOL
**
-  
+***
+  ** **
+  **  Patrones de separación silábica en español para LibreOffice**
+  ** **
+  *
+  **  VERSIÓN GENÉRICA PARA TODAS LAS LOCALIZACIONES DEL ESPAÑOL **
+  *
 
  Versión 0.2
 
@@ -44,6 +44,11 @@ utilizará este listado.
 
 3. INSTALACIÓN
 
+   NOTA: en el resto del documento, cada aparición de OpenOffice.org puede
+entenderse referida también a LibreOffice. No obstante, tenga en cuenta que
+la primera versión de LibreOffice es compatible con OpenOffice.org 3.x, por
+lo que las menciones a OpenOffice.org 1.x y 2.x no son aplicables a 
LibreOffice.
+
En OpenOffice.org versión 3.x y superior, utilice el administrador de
 extensiones, seleccionando para instalar directamente el fichero 

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.0' - dictionaries

2016-01-19 Thread Ricardo Palomares
 dictionaries |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8f91b43c3cbfe595184a72d83d3db42e7365b8bc
Author: Ricardo Palomares 
Date:   Sat Jan 16 21:34:41 2016 +0100

Updated core
Project: dictionaries  2d2df105c0ba5b7ac4bf7c95b9ecffb3a2f94121

Bring shipped Spanish dictionary up to version 2.0

Change-Id: Iecc9e2d62bd72fa5cdcafe6f04343c611b056cff
Reviewed-on: https://gerrit.libreoffice.org/21522
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 
(cherry picked from commit 0d3b5e5314e68c3cf5d573b2e7bdc11143dcb821)
Signed-off-by: Adolfo Jayme Barrientos 

diff --git a/dictionaries b/dictionaries
index 325c7f4..2d2df10 16
--- a/dictionaries
+++ b/dictionaries
@@ -1 +1 @@
-Subproject commit 325c7f44aef55c744d29c8df058efa105d1e2330
+Subproject commit 2d2df105c0ba5b7ac4bf7c95b9ecffb3a2f94121
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97201] crash : when user creates hyperlink to new spreadsheet

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

raal  changed:

   What|Removed |Added

Version|5.1.0.2 rc  |4.4.6.3 release

--- Comment #6 from raal  ---
(In reply to Usama Akkad from comment #3)
> I can confirm that the bug is present in LO 5.1.0.1 and 4.4.6.3 Ubuntu 15.04
> LO 5.0.2.2 on Ubuntu 16.04

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


[Libreoffice-bugs] [Bug 95505] Dump usage stats to text file in user profile rather than std error

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

--- Comment #16 from aybuke  ---
(In reply to Yousuf (Jay) Philips from comment #15)
> Aybuke,
> 
> Thanks for the patch, but you shouldnt define a location that is likely only
> available on linux.
> 
> #define USAGE "file:///~/.config/libreofficedev/4/user/usage.txt"
> 
> Jan mentioned this.
> 
> (In reply to jan iversen from comment #4)
> > Hardcoding ~/.config/libreofficedev/4/user/stats/, instead use what is
> > currently the user's config dir.

Hi Yousuf,

I'm trying to fix this part, using SvtPathOptions::GetUserConfigPath() but I
can't finish yet. I'll send patch about hardcoded part.

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


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

2016-01-19 Thread Eike Rathke
 sc/source/core/tool/interpr2.cxx |7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

New commits:
commit e17a5df4b34b05f02b7254c5fec70c5ff660db06
Author: Eike Rathke 
Date:   Tue Jan 5 15:42:27 2016 +0100

tdf#96198 accept WEEKNUM with only one parameter, tdf#50950 follow-up

Loading ISOWEEKNUM(date) maps to WEEKNUM(date) so accept the actual
ISOWEEKNUM parameter count defined in ODFF. This also ensures forward
compatibility with 5.1 where 3e5deb8ccfaf0b73fb6cf394822e560dc036a686
(cherry picked from commit 15494f0f99d1cf6f75e8c2996377b242af247bbf)
converts ISOWEEKNUM(date,mode) to real ISOWEEKNUM(date) if mode!=1 as
there is no matching WEEKNUM(date,mode) defined. This WEEKNUM here never
implemented the ODFF WEEKNUM but a mix of ISOWEEKNUM and something
undefined different.

Change-Id: Ibd0d4483486a1db28cc600821baae9f13b9dd687
Reviewed-on: https://gerrit.libreoffice.org/21118
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 
(cherry picked from commit 3665652285f29021f4a12cc493fe8791b6afc126)

diff --git a/sc/source/core/tool/interpr2.cxx b/sc/source/core/tool/interpr2.cxx
index 84a5bff..d82bc29 100644
--- a/sc/source/core/tool/interpr2.cxx
+++ b/sc/source/core/tool/interpr2.cxx
@@ -207,9 +207,12 @@ void ScInterpreter::ScGetDayOfWeek()
 
 void ScInterpreter::ScGetWeekOfYear()
 {
-if ( MustHaveParamCount( GetByte(), 2 ) )
+sal_uInt8 nParamCount = GetByte();
+if ( MustHaveParamCount( nParamCount, 1, 2 ) )
 {
-short nFlag = (short) ::rtl::math::approxFloor(GetDouble());
+// Without mode parameter calculate ISO 8601 week starting on Monday
+// like ISOWEEKNUM(), which this is loaded from.
+short nFlag = (nParamCount == 1) ? 0 : (short) 
::rtl::math::approxFloor(GetDouble());
 
 Date aDate = *(pFormatter->GetNullDate());
 aDate += (long)::rtl::math::approxFloor(GetDouble());
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.0' - 14 commits - canvas/source filter/source i18npool/source icon-themes/sifr oox/source readlicense_oo/license sc/source sd/qa sfx2/sour

2016-01-19 Thread Caolán McNamara
 canvas/source/cairo/cairo_textlayout.cxx|  
 13 
 dev/null
|binary
 filter/source/pdf/pdfexport.cxx |  
 18 
 filter/source/pdf/pdfexport.hxx |  
  3 
 i18npool/source/collator/collator_unicode.cxx   |  
  6 
 icon-themes/sifr/cmd/lc_bulletsandnumberingdialog.png   
|binary
 icon-themes/sifr/cmd/lc_colorview.png   
|binary
 icon-themes/sifr/cmd/lc_decrementlevel.png  
|binary
 icon-themes/sifr/cmd/lc_decrementsublevels.png  
|binary
 icon-themes/sifr/cmd/lc_defaultbullet.png   
|binary
 icon-themes/sifr/cmd/lc_defaultnumbering.png
|binary
 icon-themes/sifr/cmd/lc_incrementlevel.png  
|binary
 icon-themes/sifr/cmd/lc_incrementsublevels.png  
|binary
 icon-themes/sifr/cmd/lc_linearrowsquare.png 
|binary
 icon-themes/sifr/cmd/lc_movedown.png
|binary
 icon-themes/sifr/cmd/lc_movedownsubitems.png
|binary
 icon-themes/sifr/cmd/lc_moveup.png  
|binary
 icon-themes/sifr/cmd/lc_moveupsubitems.png  
|binary
 icon-themes/sifr/cmd/lc_spacing.png 
|binary
 icon-themes/sifr/cmd/lc_text.png
|binary
 icon-themes/sifr/cmd/lc_verticaltext.png
|binary
 icon-themes/sifr/cmd/sc_bulletsandnumberingdialog.png   
|binary
 icon-themes/sifr/cmd/sc_linearrowsquare.png 
|binary
 icon-themes/sifr/cmd/sc_spacing.png 
|binary
 icon-themes/sifr/cmd/sc_text.png
|binary
 icon-themes/sifr/cmd/sc_verticaltext.png
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorderLineStyle_005.png 
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorderLineStyle_110.png 
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorderLineStyle_250.png 
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorderLineStyle_260.png 
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorderLineStyle_400.png 
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorderLineStyle_450.png 
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorderLineStyle_500.png 
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorderLineStyle_505.png 
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorderLineStyle_750.png 
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorder_All_18x18.png
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorder_Bottom_18x18.png 
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorder_Bottom_Double_18x18.png  
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorder_Bottom_Thick_18x18.png   
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorder_Empty_18x18.png  
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorder_FourBorders_18x18.png
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorder_FourBorders_Thick_18x18.png  
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorder_LeftAndRight_18x18.png   
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorder_LeftDiagonal_18x18.png   
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorder_Left_18x18.png   
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorder_RightDiagonal_18x18.png  
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorder_Right_18x18.png  
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorder_TopAndBottom_18x18.png   
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorder_TopSingle_BottomDouble_18x18.png 
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorder_TopThin_BottomThick_18x18.png
|binary
 icon-themes/sifr/sc/res/sidebar/CellBorder_Top_18x18.png
|binary
 oox/source/drawingml/shape.cxx  |  
 13 
 oox/source/ppt/pptshape.cxx |  
  9 
 readlicense_oo/license/CREDITS.fodt | 
3417 +-
 sc/source/core/data/column.cxx  |  
 21 
 sd/qa/unit/import-tests.cxx |  
 27 
 sfx2/source/doc/objserv.cxx |  
  4 
 svx/source/xml/xmlgrhlp.cxx |  
 28 
 

[Libreoffice-commits] help.git: Branch 'distro/collabora/cp-5.0' - source/text

2016-01-19 Thread Christian Lohmaier
 source/text/shared/01/0222.xhp  |2 +-
 source/text/swriter/01/04020100.xhp |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit fd2137731a0361440b7b6a08ac28f6ef0e08aae9
Author: Christian Lohmaier 
Date:   Tue Jan 12 13:24:45 2016 +0100

 should not be empty/self-closing element ()

f5fa46ed8626910d710fd535518ddf9e756f9356 already fixed (tried to) the
empty/self-closing ahelp tag, however  is merged to
 by "make translations", so po files ended up with the
self-closing form again. Surrounding a child/PCDATA with the tag solves
the problem.

(cherry picked from commit 8ecafdaa4e5b954941031e384b88c34309b7b27e)

Change-Id: I58725f6a7e5999609262abec2987a6d05445a7b2

diff --git a/source/text/shared/01/0222.xhp 
b/source/text/shared/01/0222.xhp
index cb1834c..3fece21 100644
--- a/source/text/shared/01/0222.xhp
+++ b/source/text/shared/01/0222.xhp
@@ -257,7 +257,7 @@
 Enter the name of the target frame that you want to open the URL 
in. You can also select a standard frame name from the list.
 List of frame types
 Graphic View
-dont hide 
the imagemap if extended tips are onDisplays the image map, so that 
you can click and edit the hotspots.
+dont hide the 
imagemap if extended tips are onDisplays the image map, so that you 
can click and edit the hotspots.
 
 Controlling the ImageMap Editor With the 
Keyboard
 
diff --git a/source/text/swriter/01/04020100.xhp 
b/source/text/swriter/01/04020100.xhp
index 4006882..4bcf1e5 100644
--- a/source/text/swriter/01/04020100.xhp
+++ b/source/text/swriter/01/04020100.xhp
@@ -37,7 +37,7 @@
 
 
 
-Section
+Section
 Sets the properties of the section.
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.0' - helpcontent2

2016-01-19 Thread Christian Lohmaier
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d2c90ac2627d70de065272fafa5ae0e7563bf011
Author: Christian Lohmaier 
Date:   Tue Jan 12 13:24:45 2016 +0100

Updated core
Project: help  fd2137731a0361440b7b6a08ac28f6ef0e08aae9

 should not be empty/self-closing element ()

f5fa46ed8626910d710fd535518ddf9e756f9356 already fixed (tried to) the
empty/self-closing ahelp tag, however  is merged to
 by "make translations", so po files ended up with the
self-closing form again. Surrounding a child/PCDATA with the tag solves
the problem.

(cherry picked from commit 8ecafdaa4e5b954941031e384b88c34309b7b27e)

Change-Id: I58725f6a7e5999609262abec2987a6d05445a7b2

diff --git a/helpcontent2 b/helpcontent2
index ab4c21f..fd21377 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit ab4c21fa199cdaa11862f49e201af73d67c7850b
+Subproject commit fd2137731a0361440b7b6a08ac28f6ef0e08aae9
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: writerperfect/CppunitTest_writerperfect_impress.mk

2016-01-19 Thread Stephan Bergmann
 writerperfect/CppunitTest_writerperfect_impress.mk |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit f29a7b98635547691be84ec1054a7a00b0907993
Author: Stephan Bergmann 
Date:   Tue Jan 19 10:36:26 2016 +0100

Missing dependency

Change-Id: I287bd92314780cc644ae559d988b93c408531340

diff --git a/writerperfect/CppunitTest_writerperfect_impress.mk 
b/writerperfect/CppunitTest_writerperfect_impress.mk
index 1c3bb7a..1a84d1741 100644
--- a/writerperfect/CppunitTest_writerperfect_impress.mk
+++ b/writerperfect/CppunitTest_writerperfect_impress.mk
@@ -45,4 +45,7 @@ $(eval $(call 
gb_CppunitTest_add_exception_objects,writerperfect_impress,\
writerperfect/qa/unit/WpftImpressFilterTest \
 ))
 
+$(call gb_CppunitTest_get_target,writerperfect_impress): \
+$(call gb_AllLangResTarget_get_target,sd)
+
 # vim: set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 90505] Enable access to .uno:Polygon in Writer and Calc

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

--- Comment #5 from Yousuf (Jay) Philips  ---
(In reply to Gülşah Köse from comment #4)
> It seems fixed
> opengrok.libreoffice.org/xref/core/sw/uiconfig/swriter/toolbar/drawbar.xml#28

The issue isnt with .uno:Polygon being in the toolbar xml, it is that if it is
in the toolbar, its not accessible/functional.

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


[Libreoffice-bugs] [Bug 97138] page format crash

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

steve -_-  changed:

   What|Removed |Added

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

--- Comment #4 from steve -_-  ---
this sounds very much like a duplicate indeed. I just reproduced this with
master on osx. will add a crashlog to the original report and set this to dupe.

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

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


[Libreoffice-bugs] [Bug 97051] Writer crashes when document has header or footer and you open page style dialog

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

steve -_-  changed:

   What|Removed |Added

 CC||christian.rufener@actelion.
   ||com

--- Comment #7 from steve -_-  ---
*** Bug 97138 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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 97247] New: Focus goes strange when typing UP/LEFT at merged cell at top-left corner

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

Bug ID: 97247
   Summary: Focus goes strange when typing UP/LEFT at merged cell
at top-left corner
   Product: LibreOffice
   Version: 4.3.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: t...@fixedpoint.jp

How to reproduce:
1. create new spreadsheet
2. merge cells A1 and B1 horizontally
3. focus at B2
4. type the UP key to go the merged cell
5. type the UP key again

What was observed actually:
Now focus looks on B1, not on the merged cell.
(Besides, it is OK if the focus starts at A2 in step 3.)

Expected behaviour:
Focus should stay the merged cell, as in Excel.


Similarly, merging vertically adjacent cells is also affected:
2'. merge cells A1 and A2 vertically
3'. focus B2
4'. type the LEFT key to go the merged cell
5'. type the LEFT key again (then A2 seems selected.)

Reproduced with LibO 4.3.3.2 on Debian jessie and LibO 5.0.4.2 on Windows 7.


This behaviour was originally suggested and discussed at [1].

[1] http://listarchives.libreoffice.org/ja/discuss/msg03989.html

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


[Libreoffice-bugs] [Bug 78486] LibreOffice 4.3 PIVOT TABLE -calculated field

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

--- Comment #5 from Vincent  ---
Hi,

I also would really like this functionality implemented.
Is there a way to vote this up?
The GETPIVOTDATA function does not what I need (or I am unable to use it) and a
suggestion at the question list for manipulating the data before the pivot
table is made does not work either.

A simple calculated field works, but does not move with an changed of the pivot
table.

I have asked the question here:
https://ask.libreoffice.org/en/question/62979/calculated-fields-in-a-pivot-table/

Still not available in LibreOffice 5.
I would be happy to contribute in anyway on request.
At this point setting up a development environment maybe a step to far, but I
am willing to try with the proper help.

thank you

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


[Libreoffice-commits] core.git: sw/CppunitTest_sw_uiwriter.mk

2016-01-19 Thread Stephan Bergmann
 sw/CppunitTest_sw_uiwriter.mk |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 9bff8716a45c063ebbef3d87dce607012b9ec557
Author: Stephan Bergmann 
Date:   Tue Jan 19 10:36:53 2016 +0100

Missing dependency

Change-Id: I549116095255426dd2036a2122097567bf40a204

diff --git a/sw/CppunitTest_sw_uiwriter.mk b/sw/CppunitTest_sw_uiwriter.mk
index e30197e..a0b7a58 100644
--- a/sw/CppunitTest_sw_uiwriter.mk
+++ b/sw/CppunitTest_sw_uiwriter.mk
@@ -62,4 +62,7 @@ $(eval $(call gb_CppunitTest_use_rdb,sw_uiwriter,services))
 
 $(eval $(call gb_CppunitTest_use_configuration,sw_uiwriter))
 
+$(call gb_CppunitTest_get_target,sw_uiwriter): \
+$(call gb_Library_get_target,textconv_dict)
+
 # vim: set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 65353] FILESAVE: LO embeds non-used fonts

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

--- Comment #18 from Yousuf (Jay) Philips  ---
@Martin: No i dont think we need an extra option, as the option to embed fonts
is only supposed to embed fonts used in the doc.

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


[Libreoffice-bugs] [Bug 97051] Writer crashes when document has header or footer and you open page style dialog

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

steve -_-  changed:

   What|Removed |Added

 OS|Windows (All)   |All

--- Comment #8 from steve -_-  ---
Tested https://bugs.documentfoundation.org//show_bug.cgi?id=97138 (which is a
dupe).

Steps to reproduce:

- Start writer
- Use the new document
- Menu: Insert Header -> Default Style
- Save document
- Menu: Format -> Page -> Area -> Fill -> Color (any color)
- Close Document -> LO asks for saving -> Save 
>>> CRASH (Document Recovery)

OS X 10.11.2 + LO Version: 5.2.0.0.alpha0+
Build ID: 87be4885d369ba06ab090c26fde23c52656b69a8
CPU Threads: 4; OS Version: -; UI Render: default; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2016-01-14_14:03:38
Locale: de-DE (de.UTF-8)

attaching crash log
setting Hardware OS to ALL since now confirmed on OS X + Linux

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


[Libreoffice-bugs] [Bug 97051] Writer crashes when document has header or footer and you open page style dialog

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

--- Comment #9 from steve -_-  ---
Created attachment 122075
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122075=edit
crashlog OSX 10.11.2 + LO master 2016-01-14

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


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

2016-01-19 Thread Stephan Bergmann
 shell/source/sessioninstall/SyncDbusSessionHelper.cxx |8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

New commits:
commit 21f98618d8cd7562d423e94db988126d662165c9
Author: Stephan Bergmann 
Date:   Tue Jan 19 10:37:55 2016 +0100

-Werror=terminate (GCC 6)

...when throwing an exception from implicitly noexcept ~GErrorWrapper.  So 
make
~GErrorWrapper noexcept(false) and see that no code executed while a
GErrorWrapper instance is active on the stack would throw an exception.  
But the
design of GErrorWrapper, to throw an exception from a dtor, is very brittle 
and
should be fixed.

Change-Id: Ib04ff2b0497c160dc7ee44c3354fa9619285ec88

diff --git a/shell/source/sessioninstall/SyncDbusSessionHelper.cxx 
b/shell/source/sessioninstall/SyncDbusSessionHelper.cxx
index d0c1b30..eca1a4b 100644
--- a/shell/source/sessioninstall/SyncDbusSessionHelper.cxx
+++ b/shell/source/sessioninstall/SyncDbusSessionHelper.cxx
@@ -26,7 +26,7 @@ namespace
 GError* m_pError;
 public:
 explicit GErrorWrapper(GError* pError) : m_pError(pError) {}
-~GErrorWrapper()
+~GErrorWrapper() noexcept(false)
 {
 if(!m_pError)
 return;
@@ -39,15 +39,17 @@ namespace
 static inline GDBusProxy* lcl_GetPackageKitProxy(const OUString& 
sInterface)
 {
 const OString sFullInterface = 
OUStringToOString("org.freedesktop.PackageKit." + sInterface, 
RTL_TEXTENCODING_ASCII_US);
-GErrorWrapper error(nullptr);
 GDBusProxy* proxy = nullptr;
-proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SESSION,
+{
+GErrorWrapper error(nullptr);
+proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SESSION,
G_DBUS_PROXY_FLAGS_NONE, nullptr,
"org.freedesktop.PackageKit",
"/org/freedesktop/PackageKit",
reinterpret_cast(sFullInterface.getStr()),
nullptr,
());
+}
 if(!proxy)
 throw RuntimeException("couldnt get a proxy!");
 return proxy;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-01-19 Thread Stephan Bergmann
 sdext/source/pdfimport/tree/pdfiprocessor.cxx |4 
 1 file changed, 4 insertions(+)

New commits:
commit 72865662208e1c053c8a48b4751e234cf3a312da
Author: Stephan Bergmann 
Date:   Tue Jan 19 10:41:08 2016 +0100

Ensure irreflexivity of std::stable_sort predicate

GCC 6 libstdc++ checks for that in debug mode now

Change-Id: I879b1b5eb9b54ad19749e561c55333b0a084c699

diff --git a/sdext/source/pdfimport/tree/pdfiprocessor.cxx 
b/sdext/source/pdfimport/tree/pdfiprocessor.cxx
index 7b1cd74..567f256 100644
--- a/sdext/source/pdfimport/tree/pdfiprocessor.cxx
+++ b/sdext/source/pdfimport/tree/pdfiprocessor.cxx
@@ -635,6 +635,10 @@ void PDFIProcessor::endIndicator()
 
 static bool lr_tb_sort( Element* pLeft, Element* pRight )
 {
+// Ensure irreflexivity (which could be compromised if h or w is negative):
+if (pLeft == pRight)
+return false;
+
 // first: top-bottom sorting
 
 // Note: allow for 10% overlap on text lines since text lines are usually
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: postprocess/CppunitTest_services.mk

2016-01-19 Thread Stephan Bergmann
 postprocess/CppunitTest_services.mk |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 6b328acbd3a427c4e9e69c081dde4298bd1e775d
Author: Stephan Bergmann 
Date:   Tue Jan 19 10:42:34 2016 +0100

Missing dependency

Change-Id: Icd867709d9d41a9ea1846d2f6332dd6988241efb

diff --git a/postprocess/CppunitTest_services.mk 
b/postprocess/CppunitTest_services.mk
index a0e5749..23df019 100644
--- a/postprocess/CppunitTest_services.mk
+++ b/postprocess/CppunitTest_services.mk
@@ -45,6 +45,7 @@ ifeq ($(ENABLE_JAVA),TRUE)
 $(eval $(call gb_CppunitTest_use_java_ure,services))
 
 $(eval $(call gb_CppunitTest_use_jars,services,\
+   ScriptProviderForJava \
smoketest \
 ))
 endif
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: basebmp/inc

2016-01-19 Thread Stephan Bergmann
 basebmp/inc/packedpixeliterator.hxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 352f9fdff619b5a0a1414c29cfc47068165a599c
Author: Stephan Bergmann 
Date:   Tue Jan 19 10:43:21 2016 +0100

-Werror=shift-negative-value (GCC 6)

Change-Id: Ifc7b1d6675a8e8fb41dd47cc1282059c3790736f

diff --git a/basebmp/inc/packedpixeliterator.hxx 
b/basebmp/inc/packedpixeliterator.hxx
index 776a45e..693f59b 100644
--- a/basebmp/inc/packedpixeliterator.hxx
+++ b/basebmp/inc/packedpixeliterator.hxx
@@ -78,7 +78,7 @@ public:
 num_intraword_positions=sizeof(value_type)*8/bits_per_pixel,
 /** Bit mask for one pixel (least significant bits)
  */
-bit_mask=~(~0 << bits_per_pixel)
+bit_mask=~(~0u << bits_per_pixel)
 };
 
 private:
@@ -238,7 +238,7 @@ public:
 num_intraword_positions=sizeof(value_type)*8/bits_per_pixel,
 /** Bit mask for one pixel (least significant bits)
  */
-bit_mask=~(~0 << bits_per_pixel)
+bit_mask=~(~0u << bits_per_pixel)
 };
 
 private:
@@ -477,7 +477,7 @@ public:
 num_intraword_positions=sizeof(value_type)*8/bits_per_pixel,
 /** Bit mask for one pixel (least significant bits)
  */
-bit_mask=~(~0 << bits_per_pixel)
+bit_mask=~(~0u << bits_per_pixel)
 };
 
 // TODO(F2): direction of iteration (ImageIterator can be made to
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-01-19 Thread Stephan Bergmann
 desktop/unx/source/splashx.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ef219e719116fd02030503d4711b22894b9208c9
Author: Stephan Bergmann 
Date:   Tue Jan 19 10:43:55 2016 +0100

-Werror=strict-aliasing (GCC 6)

Change-Id: I080315852db2f6e852f63f3965a2b7bf91529168

diff --git a/desktop/unx/source/splashx.c b/desktop/unx/source/splashx.c
index e26c530..d10ee89 100644
--- a/desktop/unx/source/splashx.c
+++ b/desktop/unx/source/splashx.c
@@ -304,7 +304,7 @@ static void create_pixmap(struct splash* splash)
 else if ( bpp == 24 )
 {
 if ( machine_byte_order == byte_order && byte_order == LSBFirst )
-COPY_IN_OUT( 3, *( (color_t *)out ) = *( (color_t *)(  ) 
); out += 3; )
+COPY_IN_OUT( 3, memcpy(out, , sizeof (color_t)); out += 
3; )
 else if ( machine_byte_order == byte_order && byte_order == 
MSBFirst )
 COPY_IN_OUT( 3, tmp = pixel;
  *( (uint8_t *)out ) = *( (uint8_t *)() + 
1 );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-01-19 Thread Stephan Bergmann
 filter/source/msfilter/msdffimp.cxx |   25 -
 1 file changed, 20 insertions(+), 5 deletions(-)

New commits:
commit e96eaea07dde9a375c4d771c27ee7e7da9ef53b6
Author: Stephan Bergmann 
Date:   Tue Jan 19 10:44:50 2016 +0100

-Werror=misleading-indentation (GCC 6)

Change-Id: Idcb4386f37d4f945301934e4f2e65d81cf1db2bd

diff --git a/filter/source/msfilter/msdffimp.cxx 
b/filter/source/msfilter/msdffimp.cxx
index 8e5d8ae..e88d9e8 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -2215,11 +2215,26 @@ void 
DffPropertyReader::ApplyCustomShapeGeometryAttributes( SvStream& rIn, SfxIt
 nCnt = (sal_Int16)( nTmp & 0x1fff );//Last 13 bits for 
segment points number
 switch( nTmp >> 13 )//First 3 bits for command type
 {
-case 0x0: nCommand = 
EnhancedCustomShapeSegmentCommand::LINETO; if ( !nCnt ) nCnt = 1; break;
-case 0x1: nCommand = 
EnhancedCustomShapeSegmentCommand::CURVETO; if ( !nCnt ) nCnt = 1; break;
-case 0x2: nCommand = 
EnhancedCustomShapeSegmentCommand::MOVETO; if ( !nCnt ) nCnt = 1; break;
-case 0x3: nCommand = 
EnhancedCustomShapeSegmentCommand::CLOSESUBPATH; nCnt = 0; break;
-case 0x4: nCommand = 
EnhancedCustomShapeSegmentCommand::ENDSUBPATH; nCnt = 0; break;
+case 0x0:
+nCommand = 
EnhancedCustomShapeSegmentCommand::LINETO;
+if ( !nCnt ) nCnt = 1;
+break;
+case 0x1:
+nCommand = 
EnhancedCustomShapeSegmentCommand::CURVETO;
+if ( !nCnt ) nCnt = 1;
+break;
+case 0x2:
+nCommand = 
EnhancedCustomShapeSegmentCommand::MOVETO;
+if ( !nCnt ) nCnt = 1;
+break;
+case 0x3:
+nCommand = 
EnhancedCustomShapeSegmentCommand::CLOSESUBPATH;
+nCnt = 0;
+break;
+case 0x4:
+nCommand = 
EnhancedCustomShapeSegmentCommand::ENDSUBPATH;
+nCnt = 0;
+break;
 case 0x5:
 case 0x6:
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96067] Crash on undo row inserts

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

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #18 from Yousuf (Jay) Philips  ---
Version: 5.2.0.0.alpha0+
Build ID: d95d9d7f908419f397941ef60ac6ced3261c9b87
CPU Threads: 2; OS Version: Linux 4.2; UI Render: default; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2016-01-19_00:40:21
Locale: en-US (en_US.UTF-8)

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


[Libreoffice-commits] core.git: include/o3tl

2016-01-19 Thread Stephan Bergmann
 include/o3tl/enumarray.hxx |   10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

New commits:
commit 96fea1a05d2cfb0173f292f59018c997d2f63c89
Author: Stephan Bergmann 
Date:   Tue Jan 19 10:46:13 2016 +0100

Make enumarray_iterator adhere to iterator requirements

...or else using it with GCC 6 libstdc++ std::find causes compilation 
failures

Change-Id: I95e674922348f72fab6da8f049b2b4fcbdc74d07

diff --git a/include/o3tl/enumarray.hxx b/include/o3tl/enumarray.hxx
index a6861c1..c264c2f 100644
--- a/include/o3tl/enumarray.hxx
+++ b/include/o3tl/enumarray.hxx
@@ -22,6 +22,7 @@
 
 #include 
 #include 
+#include 
 
 namespace o3tl {
 
@@ -86,7 +87,10 @@ public:
 typedef typename EA::value_type value_type;
 typedef typename EA::key_type   key_type;
 typedef std::bidirectional_iterator_tag iterator_category; //should be 
random access, but that would require define subtraction operators on the enums
-typedef typename EA::key_type   difference_type;
+typedef
+typename std::make_signed<
+typename std::underlying_type::type>::type
+difference_type;
 typedef typename EA::value_type*   pointer;
 typedef typename EA::value_type&   reference;
 
@@ -95,8 +99,8 @@ public:
 value_type *()  { return (*m_buf)[static_cast(m_pos)]; }
 value_type *operator->() { return &(operator*()); }
 self_type  ++() { ++m_pos; return *this; }
-booloperator!=(const self_type& other) { return m_buf != 
other.m_buf || m_pos != other.m_pos; }
-booloperator==(const self_type& other) { return m_buf == 
other.m_buf && m_pos == other.m_pos; }
+booloperator!=(const self_type& other) const { return m_buf != 
other.m_buf || m_pos != other.m_pos; }
+booloperator==(const self_type& other) const { return m_buf == 
other.m_buf && m_pos == other.m_pos; }
 };
 
 }; // namespace o3tl
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-01-19 Thread Stephan Bergmann
 sc/qa/unit/filters-test.cxx |   11 +--
 1 file changed, 1 insertion(+), 10 deletions(-)

New commits:
commit 9e74ff76cdd92849def033f2f65dd5d771bb0267
Author: Stephan Bergmann 
Date:   Tue Jan 19 10:49:57 2016 +0100

-Werror=address (GCC 6)

"the compiler can assume that the address of ‘rDoc’ will always 
evaluate to
‘true’"

Change-Id: Ic5dc481b84efad679150d13002a360478474cb90

diff --git a/sc/qa/unit/filters-test.cxx b/sc/qa/unit/filters-test.cxx
index 0a02a0d..33bf054 100644
--- a/sc/qa/unit/filters-test.cxx
+++ b/sc/qa/unit/filters-test.cxx
@@ -289,7 +289,6 @@ void ScFiltersTest::testContentLotus123()
 xDocSh->DoHardRecalc(true);
 
 ScDocument& rDoc = xDocSh->GetDocument();
-CPPUNIT_ASSERT();
 testContentImpl(rDoc, FORMAT_LOTUS123);
 xDocSh->DoClose();
 }
@@ -298,8 +297,7 @@ void ScFiltersTest::testContentDIF()
 {
 ScDocShellRef xDocSh = loadDoc("universal-content.", FORMAT_DIF);
 
-ScDocument& rDoc = xDocSh->GetDocument();
-CPPUNIT_ASSERT();
+xDocSh->GetDocument();
 xDocSh->DoClose();
 }
 
@@ -319,7 +317,6 @@ void ScFiltersTest::testContentXLSB()
 // CPPUNIT_ASSERT(xDocSh);
 //
 // ScDocument& rDoc = xDocSh->GetDocument();
-// CPPUNIT_ASSERT();
 // testContentImpl(pDoc, FORMAT_XLS_XML);
 // xDocSh->DoClose();
 // }
@@ -397,7 +394,6 @@ void ScFiltersTest::testSharedFormulaXLSX()
 {
 ScDocShellRef xDocSh = loadDoc("shared-formula/basic.", FORMAT_XLSX);
 ScDocument& rDoc = xDocSh->GetDocument();
-CPPUNIT_ASSERT();
 xDocSh->DoHardRecalc(true);
 // Check the results of formula cells in the shared formula range.
 for (SCROW i = 1; i <= 18; ++i)
@@ -472,7 +468,6 @@ void ScFiltersTest::testLegacyCellAnchoredRotatedShape()
 ScDocShellRef xDocSh = 
loadDoc("legacycellanchoredrotatedclippedshape.", FORMAT_ODS);
 
 ScDocument& rDoc = xDocSh->GetDocument();
-CPPUNIT_ASSERT();
 // ensure the imported legacy rotated shape is in the expected position
 Rectangle aRect( 6000, -2000, 8000, 4000 );
 // ensure the imported ( and converted ) anchor ( note we internally 
now store the anchor in
@@ -488,7 +483,6 @@ void ScFiltersTest::testLegacyCellAnchoredRotatedShape()
 // a core dump in editeng ( so moved to here )
 xDocSh = saveAndReload( &(*xDocSh), FORMAT_ODS);
 ScDocument& rDoc2 = xDocSh->GetDocument();
-CPPUNIT_ASSERT();
 impl_testLegacyCellAnchoredRotatedShape( rDoc2, aRect, aAnchor );
 
 xDocSh->DoClose();
@@ -500,7 +494,6 @@ void ScFiltersTest::testLegacyCellAnchoredRotatedShape()
 // are hidden
 ScDocShellRef xDocSh = 
loadDoc("legacycellanchoredrotatedhiddenshape.", FORMAT_ODS, true);
 ScDocument& rDoc = xDocSh->GetDocument();
-CPPUNIT_ASSERT();
 // ensure the imported legacy rotated shape is in the expected position
 // when a shape is fully hidden reloading seems to result is in some 
errors, usually
 // ( same but different error happens pre-patch ) - we should do 
better here, I regard it
@@ -528,7 +521,6 @@ void ScFiltersTest::testLegacyCellAnchoredRotatedShape()
 ScDocShellRef xDocSh = loadDoc("legacycellanchoredrotatedshape.", 
FORMAT_ODS);
 
 ScDocument& rDoc = xDocSh->GetDocument();
-CPPUNIT_ASSERT();
 // ensure the imported legacy rotated shape is in the expected position
 Rectangle aRect( 6000, 3000, 8000, 9000 );
 // ensure the imported (and converted) anchor (note we internally now 
store the anchor in
@@ -544,7 +536,6 @@ void ScFiltersTest::testLegacyCellAnchoredRotatedShape()
 // test save and reload
 xDocSh = saveAndReload( &(*xDocSh), FORMAT_ODS);
 ScDocument& rDoc2 = xDocSh->GetDocument();
-CPPUNIT_ASSERT();
 impl_testLegacyCellAnchoredRotatedShape( rDoc2, aRect, aAnchor );
 
 xDocSh->DoClose();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-01-19 Thread Stephan Bergmann
 sc/source/core/data/table5.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 811d1f0a0428a293d829d2c3d90bf3e8bbe1be90
Author: Stephan Bergmann 
Date:   Tue Jan 19 10:51:03 2016 +0100

-Werror=maybe-uninitialized (GCC 6)

...so take the same "= -1" approach in ScTable::CopyColHidden as was alreday
taken in ScTable::CopyRowHidden

Change-Id: I0155965f142bd33706a303fb154d46776e40ec62

diff --git a/sc/source/core/data/table5.cxx b/sc/source/core/data/table5.cxx
index eb18a2c..8ba078c 100644
--- a/sc/source/core/data/table5.cxx
+++ b/sc/source/core/data/table5.cxx
@@ -620,7 +620,7 @@ void ScTable::CopyColHidden(ScTable& rTable, SCCOL 
nStartCol, SCCOL nEndCol)
 SCCOL nCol = nStartCol;
 while (nCol <= nEndCol)
 {
-SCCOL nLastCol;
+SCCOL nLastCol = -1;
 bool bHidden = rTable.ColHidden(nCol, nullptr, );
 if (nLastCol > nEndCol)
 nLastCol = nEndCol;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 62704] save at several places at one time

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

steve -_-  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #1 from steve -_-  ---
I am not aware of any software offering such functionality and for a good
reason. I highly doubt this will ever see the light of day.

Also having identical files in several locations on your harddrive is wasting
space and ineffective. You'll end up in different versions of the same file and
a big chaos.

Closing as WONTFIX.

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


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

2016-01-19 Thread Stephan Bergmann
 sc/source/ui/app/scmod.cxx |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 8404dc3c76babbc9d0a165f4046a6e5e1be35fe5
Author: Stephan Bergmann 
Date:   Tue Jan 19 10:53:27 2016 +0100

-Werror=address (GCC 6)

"the compiler can assume that the address of ‘rItem’ will never be NULL"

Change-Id: I90a8a3074c2dab427b4bc6345ec4a824eb2ac249

diff --git a/sc/source/ui/app/scmod.cxx b/sc/source/ui/app/scmod.cxx
index 6fbbf92..162e355 100644
--- a/sc/source/ui/app/scmod.cxx
+++ b/sc/source/ui/app/scmod.cxx
@@ -467,8 +467,9 @@ void ScModule::Execute( SfxRequest& rReq )
 case SID_PSZ_FUNCTION:
 if (pReqArgs)
 {
-const SfxUInt16Item& rItem = static_cast(pReqArgs->Get(SID_PSZ_FUNCTION));
-OSL_ENSURE(dynamic_cast( ) !=  
nullptr,"wrong Parameter");
+auto const & p = pReqArgs->Get(SID_PSZ_FUNCTION);
+OSL_ENSURE(dynamic_cast() !=  
nullptr,"wrong Parameter");
+const SfxUInt16Item& rItem = static_cast(p);
 
 ScAppOptions aNewOpts( GetAppOptions() );
 aNewOpts.SetStatusFunc( rItem.GetValue() );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97248] New: strange tab added when copying and pasting

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

Bug ID: 97248
   Summary: strange tab added when copying and pasting
   Product: LibreOffice
   Version: 5.0.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: parrenin@gmail.com

Created attachment 122076
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122076=edit
.doc file to reproduce the problem

Steps to reproduce:
- open the attached .doc document
- in the first cell of the table, select the text from "Albert..." to
"...http://lgge.osug.fr;
- copy the text
- paste it to the same location
=> a tab is added at the beginning of the last line

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


[Libreoffice-bugs] [Bug 62704] save at several places at one time

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

steve -_-  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|WONTFIX |---

--- Comment #2 from steve -_-  ---
After discussion in QA IRC there were several opinions on this. I'm re-opening,
but still believe this won't happen. We can re-evaluate in 10 years. If this
has not happened in 2026, I want someone from the future to close this report
for me :D

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


[Libreoffice-bugs] [Bug 62704] save at several places at one time

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

steve -_-  changed:

   What|Removed |Added

   Priority|high|low

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


[Libreoffice-bugs] [Bug 80110] UPDATE: get 'checking for an update failed' error when checking for updates

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

--- Comment #7 from Heiko Tietze  ---
What an ugliness ;-). 

>From usability POV error messages have to be specific, actionable, and
user-centered. Users should either perform an action or change their behavior
as the result of the message. He or she should be informed about the reason for
a problem and get help on how to solve the problem. The message has to be
phrased clearly, in non-technical terms and without obscure error codes. In
respect the the multistage updating process the dialog should also be more
verbose on the progress (which is also informative regarding the reason for an
error).

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


[Libreoffice-ux-advise] [Bug 80110] UPDATE: get 'checking for an update failed' error when checking for updates

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

--- Comment #7 from Heiko Tietze  ---
What an ugliness ;-). 

From usability POV error messages have to be specific, actionable, and
user-centered. Users should either perform an action or change their behavior
as the result of the message. He or she should be informed about the reason for
a problem and get help on how to solve the problem. The message has to be
phrased clearly, in non-technical terms and without obscure error codes. In
respect the the multistage updating process the dialog should also be more
verbose on the progress (which is also informative regarding the reason for an
error).

-- 
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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 80110] UPDATE: get 'checking for an update failed' error when checking for updates

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

--- Comment #8 from Heiko Tietze  ---
Created attachment 122077
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122077=edit
Proposal for an alternative update dialog

The attached mockup intends to support discussion. It has a nice image/logo on
the left (took just some picture from the web), a title, a progress with
success info, and if there is an error the message below including details. I
also suggest to add some reasons how to solve the problem. The text needs
obviously much more work, it's just a quick example here.

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


[Libreoffice-ux-advise] [Bug 80110] UPDATE: get 'checking for an update failed' error when checking for updates

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

--- Comment #8 from Heiko Tietze  ---
Created attachment 122077
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122077=edit
Proposal for an alternative update dialog

The attached mockup intends to support discussion. It has a nice image/logo on
the left (took just some picture from the web), a title, a progress with
success info, and if there is an error the message below including details. I
also suggest to add some reasons how to solve the problem. The text needs
obviously much more work, it's just a quick example here.

-- 
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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-commits] core.git: external/boost

2016-01-19 Thread Stephan Bergmann
 external/boost/UnpackedTarball_boost.mk |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 356599d2e156b98f21536d25797228b1e174b3ad
Author: Stephan Bergmann 
Date:   Tue Jan 19 12:12:28 2016 +0100

Remove bogus addition from prev commit

Change-Id: I9b1aa86e3cb325b07158e3994a961db8ea4114d8

diff --git a/external/boost/UnpackedTarball_boost.mk 
b/external/boost/UnpackedTarball_boost.mk
index 6b99265..b3a9c3a 100644
--- a/external/boost/UnpackedTarball_boost.mk
+++ b/external/boost/UnpackedTarball_boost.mk
@@ -87,7 +87,6 @@ boost_patches += boost_1_59_0.property_tree.wreturn-type.patch
 
 boost_patches += clang-cl.patch.0
 boost_patches += gcc6-warnings.patch.0
-boost_patches += gcc-pr69327.patch.0
 
 $(eval $(call gb_UnpackedTarball_UnpackedTarball,boost))
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: Branch 'distro/collabora/milestone-7' - 2 commits - loleaflet/src

2016-01-19 Thread Jan Holesovsky
 loleaflet/src/layer/tile/CalcTileLayer.js|5 ++---
 loleaflet/src/layer/tile/ImpressTileLayer.js |5 ++---
 loleaflet/src/layer/tile/WriterTileLayer.js  |3 +++
 3 files changed, 7 insertions(+), 6 deletions(-)

New commits:
commit bb96386735844f0c19d77a910554ad5489adb6ca
Author: Jan Holesovsky 
Date:   Tue Jan 19 11:45:51 2016 +0100

loleaflet: No need to ask for tiles for non-current parts.

LibreOffice may trigger invalidation of a part that is not current (eg. 
during
the part switch).  But as we don't need the old data, discard such requests.

diff --git a/loleaflet/src/layer/tile/CalcTileLayer.js 
b/loleaflet/src/layer/tile/CalcTileLayer.js
index a993db6..061eaa1 100644
--- a/loleaflet/src/layer/tile/CalcTileLayer.js
+++ b/loleaflet/src/layer/tile/CalcTileLayer.js
@@ -69,7 +69,7 @@ L.CalcTileLayer = L.TileLayer.extend({
}
}
 
-   if (needsNewTiles)
+   if (needsNewTiles && command.part === this._selectedPart)
{
var message = 'tilecombine ' +
'part=' + command.part + ' ' +
diff --git a/loleaflet/src/layer/tile/ImpressTileLayer.js 
b/loleaflet/src/layer/tile/ImpressTileLayer.js
index 4bb1e9f..1969bd6 100644
--- a/loleaflet/src/layer/tile/ImpressTileLayer.js
+++ b/loleaflet/src/layer/tile/ImpressTileLayer.js
@@ -60,7 +60,7 @@ L.ImpressTileLayer = L.TileLayer.extend({
}
}
 
-   if (needsNewTiles)
+   if (needsNewTiles && command.part === this._selectedPart)
{
var message = 'tilecombine ' +
'part=' + command.part + ' ' +
diff --git a/loleaflet/src/layer/tile/WriterTileLayer.js 
b/loleaflet/src/layer/tile/WriterTileLayer.js
index 31be837..5fdcb25 100644
--- a/loleaflet/src/layer/tile/WriterTileLayer.js
+++ b/loleaflet/src/layer/tile/WriterTileLayer.js
@@ -63,6 +63,9 @@ L.WriterTileLayer = L.TileLayer.extend({
 
if (needsNewTiles)
{
+   // CalcTileLayer.js and ImpressTileLayer.js avoid this 
when
+   // command.part !== this._selectedPart; but in Writer, 
the part is
+   // always 0 anyway
var message = 'tilecombine ' +
'part=' + command.part + ' ' +
'width=' + this._tileSize + ' ' +
commit f029a13a6af4b44ac1bab1f32cccd328efdf11d0
Author: Jan Holesovsky 
Date:   Tue Jan 19 09:09:04 2016 +0100

loleaflet: Share code for updating the parts.

diff --git a/loleaflet/src/layer/tile/CalcTileLayer.js 
b/loleaflet/src/layer/tile/CalcTileLayer.js
index 0d8167e..a993db6 100644
--- a/loleaflet/src/layer/tile/CalcTileLayer.js
+++ b/loleaflet/src/layer/tile/CalcTileLayer.js
@@ -112,8 +112,7 @@ L.CalcTileLayer = L.TileLayer.extend({
_onSetPartMsg: function (textMsg) {
var part = parseInt(textMsg.match(/\d+/g)[0]);
if (part !== this._selectedPart) {
-   this._selectedPart = part;
-   this._update();
+   this._map.setPart(part);
this._map.fire('setpart', {selectedPart: 
this._selectedPart});
this._map._socket.sendMessage('commandvalues 
command=.uno:ViewRowColumnHeaders');
}
diff --git a/loleaflet/src/layer/tile/ImpressTileLayer.js 
b/loleaflet/src/layer/tile/ImpressTileLayer.js
index 6505f6d..4bb1e9f 100644
--- a/loleaflet/src/layer/tile/ImpressTileLayer.js
+++ b/loleaflet/src/layer/tile/ImpressTileLayer.js
@@ -108,8 +108,7 @@ L.ImpressTileLayer = L.TileLayer.extend({
_onSetPartMsg: function (textMsg) {
var part = parseInt(textMsg.match(/\d+/g)[0]);
if (part !== this._selectedPart) {
-   this._selectedPart = part;
-   this._update();
+   this._map.setPart(part);
this._map.fire('setpart', {selectedPart: 
this._selectedPart});
}
},
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-01-19 Thread Jan Holesovsky
 loleaflet/src/layer/tile/CalcTileLayer.js|5 ++---
 loleaflet/src/layer/tile/ImpressTileLayer.js |5 ++---
 loleaflet/src/layer/tile/WriterTileLayer.js  |3 +++
 3 files changed, 7 insertions(+), 6 deletions(-)

New commits:
commit 152a7bbb76137508b112f940150f475eec350dc7
Author: Jan Holesovsky 
Date:   Tue Jan 19 11:45:51 2016 +0100

loleaflet: No need to ask for tiles for non-current parts.

LibreOffice may trigger invalidation of a part that is not current (eg. 
during
the part switch).  But as we don't need the old data, discard such requests.

diff --git a/loleaflet/src/layer/tile/CalcTileLayer.js 
b/loleaflet/src/layer/tile/CalcTileLayer.js
index a993db6..061eaa1 100644
--- a/loleaflet/src/layer/tile/CalcTileLayer.js
+++ b/loleaflet/src/layer/tile/CalcTileLayer.js
@@ -69,7 +69,7 @@ L.CalcTileLayer = L.TileLayer.extend({
}
}
 
-   if (needsNewTiles)
+   if (needsNewTiles && command.part === this._selectedPart)
{
var message = 'tilecombine ' +
'part=' + command.part + ' ' +
diff --git a/loleaflet/src/layer/tile/ImpressTileLayer.js 
b/loleaflet/src/layer/tile/ImpressTileLayer.js
index 16f9bb2..b5e78e3 100644
--- a/loleaflet/src/layer/tile/ImpressTileLayer.js
+++ b/loleaflet/src/layer/tile/ImpressTileLayer.js
@@ -60,7 +60,7 @@ L.ImpressTileLayer = L.TileLayer.extend({
}
}
 
-   if (needsNewTiles)
+   if (needsNewTiles && command.part === this._selectedPart)
{
var message = 'tilecombine ' +
'part=' + command.part + ' ' +
diff --git a/loleaflet/src/layer/tile/WriterTileLayer.js 
b/loleaflet/src/layer/tile/WriterTileLayer.js
index 31be837..5fdcb25 100644
--- a/loleaflet/src/layer/tile/WriterTileLayer.js
+++ b/loleaflet/src/layer/tile/WriterTileLayer.js
@@ -63,6 +63,9 @@ L.WriterTileLayer = L.TileLayer.extend({
 
if (needsNewTiles)
{
+   // CalcTileLayer.js and ImpressTileLayer.js avoid this 
when
+   // command.part !== this._selectedPart; but in Writer, 
the part is
+   // always 0 anyway
var message = 'tilecombine ' +
'part=' + command.part + ' ' +
'width=' + this._tileSize + ' ' +
commit 3f35e2f3ade05cb453ea6cadd9802dec6a303ed7
Author: Jan Holesovsky 
Date:   Tue Jan 19 09:09:04 2016 +0100

loleaflet: Share code for updating the parts.

diff --git a/loleaflet/src/layer/tile/CalcTileLayer.js 
b/loleaflet/src/layer/tile/CalcTileLayer.js
index 0d8167e..a993db6 100644
--- a/loleaflet/src/layer/tile/CalcTileLayer.js
+++ b/loleaflet/src/layer/tile/CalcTileLayer.js
@@ -112,8 +112,7 @@ L.CalcTileLayer = L.TileLayer.extend({
_onSetPartMsg: function (textMsg) {
var part = parseInt(textMsg.match(/\d+/g)[0]);
if (part !== this._selectedPart) {
-   this._selectedPart = part;
-   this._update();
+   this._map.setPart(part);
this._map.fire('setpart', {selectedPart: 
this._selectedPart});
this._map._socket.sendMessage('commandvalues 
command=.uno:ViewRowColumnHeaders');
}
diff --git a/loleaflet/src/layer/tile/ImpressTileLayer.js 
b/loleaflet/src/layer/tile/ImpressTileLayer.js
index d1caefd..16f9bb2 100644
--- a/loleaflet/src/layer/tile/ImpressTileLayer.js
+++ b/loleaflet/src/layer/tile/ImpressTileLayer.js
@@ -108,8 +108,7 @@ L.ImpressTileLayer = L.TileLayer.extend({
_onSetPartMsg: function (textMsg) {
var part = parseInt(textMsg.match(/\d+/g)[0]);
if (part !== this._selectedPart) {
-   this._selectedPart = part;
-   this._update();
+   this._map.setPart(part);
this._map.fire('setpart', {selectedPart: 
this._selectedPart});
}
},
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: external/clucene

2016-01-19 Thread Stephan Bergmann
 external/clucene/patches/clucene-warnings.patch |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit f71a0b44e634ca3ca61ac15e4cd62b0db1354ae6
Author: Stephan Bergmann 
Date:   Tue Jan 19 12:24:04 2016 +0100

Silence -Werror,-Wunknown-pragmas

Change-Id: If726008f6755db59b01784ad6b479bbfe2d23e96

diff --git a/external/clucene/patches/clucene-warnings.patch 
b/external/clucene/patches/clucene-warnings.patch
index 49cc0d4..270451d 100644
--- a/external/clucene/patches/clucene-warnings.patch
+++ b/external/clucene/patches/clucene-warnings.patch
@@ -69,7 +69,7 @@
  #endif
 --- src/core/CLucene/util/Array.h  2012-02-22 12:37:22.510637696 +
 +++ src/core/CLucene/util/Array.h  2012-02-22 12:38:33.71884 +
-@@ -7,6 +7,13 @@
+@@ -7,6 +7,14 @@
  #ifndef _lucene_util_Array_
  #define _lucene_util_Array_
  
@@ -77,6 +77,7 @@
 +# pragma GCC diagnostic push
 +# pragma GCC diagnostic ignored "-Wshadow"
 +# pragma GCC diagnostic ignored "-Wunused-parameter"
++# pragma GCC diagnostic ignored "-Wpragmas"
 +# pragma GCC diagnostic ignored "-Wmisleading-indentation"
 +#endif
 +
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97217] Renaming fields in base not working

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

Alex Thurgood  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Alex Thurgood  ---
No repro with 

Version: 4.4.7.2
Build ID: f3153a8b245191196a4b6b9abd1d0da16eead600
Locale: fr.UTF-8

OSX 10.11.2

I created a table using the wizard, chose Tasks from the default list of
business tables. Saved the table.

Opened the table for editing the table definition (rigth mouse button click -
edit). I select any field and can overwrite or add to existing string of
characters, these changes are saved when I either change field, or click on the
Save icon.

I would :
1) try renaming your user profile and restarting LO to see if that makes any
difference.
2) try installing a JDK rather than a JRE, if you don't already have one.

Please report back here with your findings.

Also, it would be handy to have a test file which displays the problems you are
experiencing, unless you encounter the problems with all of your files.

Setting NEEDINFO

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


[Libreoffice-commits] core.git: desktop/Library_sofficeapp.mk

2016-01-19 Thread Oliver Specht
 desktop/Library_sofficeapp.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0d31873dc1f40963b70a3840537e9c25bec7cff0
Author: Oliver Specht 
Date:   Tue Jan 19 10:47:01 2016 +0100

Build the LibreOfficeKit bits also on Windows

Change-Id: Ibbd5e50ffeeb061a30d6f0f09a393a67ba67421e
Reviewed-on: https://gerrit.libreoffice.org/21598
Tested-by: Jenkins 
Reviewed-by: Oliver Specht 

diff --git a/desktop/Library_sofficeapp.mk b/desktop/Library_sofficeapp.mk
index 6062da8..9be7c2d 100644
--- a/desktop/Library_sofficeapp.mk
+++ b/desktop/Library_sofficeapp.mk
@@ -117,7 +117,7 @@ endif
 endif
 
 # LibreOfficeKit bits
-ifneq ($(filter $(OS),ANDROID IOS MACOSX),)
+ifneq ($(filter $(OS),ANDROID IOS MACOSX WNT),)
 $(eval $(call gb_Library_add_exception_objects,sofficeapp,\
desktop/source/lib/init \
desktop/source/lib/lokinteractionhandler \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97249] All versions after LibreOffice_4.2.8.2 have problems with font heading

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

--- Comment #1 from Michael Velten  ---
Created attachment 122078
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122078=edit
Working with LibreOffice_4.2.8.2

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


[Libreoffice-bugs] [Bug 97249] New: All versions after LibreOffice_4.2.8.2 have problems with font heading

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

Bug ID: 97249
   Summary: All versions after LibreOffice_4.2.8.2 have problems
with font heading
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: vel...@hanke-seidel.com

User-Agent:   Mozilla/5.0 (Windows NT 10.0; rv:43.0) Gecko/20100101
Firefox/43.0
Build Identifier: LibreOffice 5.0.4.2

A whole line is missing. See screenshots and the problem word document.

Reproducible: Always

Steps to Reproduce:
1. Open the attached file with any version after LibreOffice_4.2.8.2

Actual Results:  
The second line is missing


[Information automatically included from LibreOffice]
Locale: de
Module: TextDocument
[Information guessed from browser]
OS: Windows (All)
OS is 64bit: no


Reset User Profile?Yes

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


[Libreoffice-bugs] [Bug 97249] All versions after LibreOffice_4.2.8.2 have problems with font heading

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

--- Comment #2 from Michael Velten  ---
Created attachment 122079
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122079=edit
Not working with any Version later LibreOffice_4.2.8.2

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


[Libreoffice-bugs] [Bug 97249] All versions after LibreOffice_4.2.8.2 have problems with font heading

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

--- Comment #3 from Michael Velten  ---
Created attachment 122080
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122080=edit
The problem document

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


[Libreoffice-bugs] [Bug 89067] Irish language interface

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

--- Comment #7 from computaqu...@googlemail.com ---
No, so far I have no solution.

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


[Libreoffice-bugs] [Bug 95991] LibO crashes when watching and inspecting a complex Calc structure in BASIC debug session

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

--- Comment #5 from Wolfgang Jäger  ---
Works for me now in V 5.1.0.2 (x64, Win 8.1).
Suppose the bug is fixed now.

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


[Libreoffice-bugs] [Bug 97146] Mysql Databases only showing views, not tables in JDBC connection type with mariadb connector jar

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

Alex Thurgood  changed:

   What|Removed |Added

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

--- Comment #7 from Alex Thurgood  ---
(In reply to Tony from comment #6)
> Hi there
> 
> I've had a go, using the wizard. And that worked fine, I don't know, if
> anybody has noticed, but if after you have got the connection working, if
> you edit the connection, and take the database name out of the parameters,
> you get access to all databases that the connecting user has access to.
> 
> I hope that's by design, as that is an absolute bonus :-)

Let's just say that it is an interesting side-effect :)

Per your comment, closing then as WFM

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


[Libreoffice-bugs] [Bug 89067] Irish language interface

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

--- Comment #8 from computaqu...@googlemail.com ---
It looks like I would have to build the dictionary myself.  From the locale
file I should be able to add more menu translations, etc.

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


[Libreoffice-commits] core.git: 2 commits - sal/qa sc/inc sc/source svx/inc sw/inc

2016-01-19 Thread Noel Grandin
 sal/qa/inc/stringhelper.hxx   |4 
 sc/inc/address.hxx|   10 --
 sc/inc/cellvalue.hxx  |2 --
 sc/inc/chartarr.hxx   |2 --
 sc/inc/pivot.hxx  |1 -
 sc/source/core/data/cellvalue.cxx |9 -
 sc/source/core/data/pivot2.cxx|   20 
 sc/source/core/tool/chartarr.cxx  |6 --
 sc/source/ui/inc/docsh.hxx|1 -
 svx/inc/xpolyimp.hxx  |2 --
 sw/inc/IMark.hxx  |   24 
 11 files changed, 24 insertions(+), 57 deletions(-)

New commits:
commit a06eefdec89537ec1d939a5d001fd0d6f3eb9793
Author: Noel Grandin 
Date:   Tue Jan 19 13:21:37 2016 +0200

place it safe with MSVC 2008 build

revert a couple of pieces of commit
5fe99ea3ee7b33a80f1419f2a4c9c1ea56dd00ee
"loplugin:unusedmethods in sw"

Change-Id: If1eb9c7f01dcdea7ef7059165470357d5186ff93

diff --git a/sw/inc/IMark.hxx b/sw/inc/IMark.hxx
index 0a8860e..5f891b8 100644
--- a/sw/inc/IMark.hxx
+++ b/sw/inc/IMark.hxx
@@ -137,6 +137,18 @@ namespace sw { namespace mark
 {
 return pMark->StartsAfter(rPos);
 }
+#ifdef DBG_UTIL
+bool operator()(std::shared_ptr const& pMark,
+SwPosition const& rPos)
+{
+return pMark->StartsBefore(rPos);
+}
+bool operator()(std::shared_ptr const& pMark1,
+std::shared_ptr const& pMark2)
+{
+return (*pMark1) < (*pMark2);
+}
+#endif
 };
 
 // MSVC 2008 with _DEBUG calls this with parameters in wrong order
@@ -148,6 +160,18 @@ namespace sw { namespace mark
 {
 return pMark->StartsBefore(rPos);
 }
+#ifdef DBG_UTIL
+bool operator()(SwPosition const& rPos,
+std::shared_ptr const& pMark)
+{
+return pMark->StartsAfter(rPos);
+}
+bool operator()(std::shared_ptr const& pMark1,
+std::shared_ptr const& pMark2)
+{
+return (*pMark1) < (*pMark2);
+}
+#endif
 };
 
 OUString ExpandFieldmark(IFieldmark* pBM);
commit c0b199b3c69ace999db6e688466b2bbd9ad7c389
Author: Noel Grandin 
Date:   Tue Jan 19 13:10:56 2016 +0200

loplugin:unusedmethods in sc/

Change-Id: I2c24d06d9fad26c65fa13cdcaa2c3f908971106c

diff --git a/sal/qa/inc/stringhelper.hxx b/sal/qa/inc/stringhelper.hxx
index cb7a0ab..e7a0328 100644
--- a/sal/qa/inc/stringhelper.hxx
+++ b/sal/qa/inc/stringhelper.hxx
@@ -27,10 +27,6 @@ inline void operator <<= (rtl::OString& _rAsciiString, 
rtl::OUString const & _rU
 {
 _rAsciiString = 
rtl::OUStringToOString(_rUnicodeString,RTL_TEXTENCODING_ASCII_US);
 }
-inline void operator <<= (rtl::OUString& _rUnicodeString, rtl::OString const & 
_rAsciiString )
-{
-_rUnicodeString = rtl::OStringToOUString(_rAsciiString, 
RTL_TEXTENCODING_ASCII_US);
-}
 
 #endif
 
diff --git a/sc/inc/address.hxx b/sc/inc/address.hxx
index 3aa0ba1..9853a40 100644
--- a/sc/inc/address.hxx
+++ b/sc/inc/address.hxx
@@ -709,7 +709,6 @@ public:
 return aRange[n];
 }
 inline bool operator==( const ScRangePair& ) const;
-inline bool operator!=( const ScRangePair& ) const;
 };
 
 inline ScRangePair& ScRangePair::operator= ( const ScRangePair& rRange )
@@ -725,11 +724,6 @@ inline bool ScRangePair::operator==( const ScRangePair& 
rRange ) const
(aRange[1] == rRange.aRange[1]);
 }
 
-inline bool ScRangePair::operator!=( const ScRangePair& rRange ) const
-{
-return !operator==( rRange );
-}
-
 //  ScRefAddress
 class ScRefAddress
 {
@@ -809,10 +803,6 @@ public:
 }
 
 inline bool operator == ( const ScRefAddress& r ) const;
-inline bool operator != ( const ScRefAddress& r ) const
-{
-return !(operator==(r));
-}
 
 OUString  GetRefString( ScDocument* pDocument, SCTAB nActTab,
 const ScAddress::Details& rDetails = 
ScAddress::detailsOOOa1) const;
diff --git a/sc/inc/cellvalue.hxx b/sc/inc/cellvalue.hxx
index 7ac6a87..6dcbc8f 100644
--- a/sc/inc/cellvalue.hxx
+++ b/sc/inc/cellvalue.hxx
@@ -155,8 +155,6 @@ struct SC_DLLPUBLIC ScRefCellValue
 bool equalsWithoutFormat( const ScRefCellValue& r ) const;
 
 ScRefCellValue& operator= ( const ScRefCellValue& r );
-
-void swap( ScRefCellValue& r );
 };
 
 #endif
diff --git a/sc/inc/chartarr.hxx b/sc/inc/chartarr.hxx
index 0e2c255..d91e492 100644
--- a/sc/inc/chartarr.hxx
+++ b/sc/inc/chartarr.hxx
@@ -84,8 +84,6 @@ public:
 boolHasRowHeaders() const { return aPositioner.HasRowHeaders(); }
 const OUString& GetName() const { return aName; }
 
-bool operator==(const ScChartArray& rCmp) const;
-
 ScMemChart* CreateMemChart();
 };
 
diff --git a/sc/inc/pivot.hxx b/sc/inc/pivot.hxx
index a3583a7..f0dd99b 100644
--- a/sc/inc/pivot.hxx
+++ b/sc/inc/pivot.hxx
@@ -124,7 +124,6 

[Libreoffice-bugs] [Bug 97249] All versions after LibreOffice_4.2.8.2 have problems with font heading

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

Cor Nouws  changed:

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #4 from Cor Nouws  ---
Hi Michael,

Thanks for filing and the clear screen shots.

On Ubuntu 32 bits I cannot reproduce the bug with 4.4.0rc2, 5.1.0 (build
2016-01-12) nor with a recent daily (2016-01-12).
So possibly a windows specific problem?

Cheers,
Cor

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


[Libreoffice-bugs] [Bug 36852] FILEOPEN hard lock when opening files from a remote NFS volume

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

h.goe...@goebel-consult.de changed:

   What|Removed |Added

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

--- Comment #15 from h.goe...@goebel-consult.de ---
Works for me, even with libreoffice 4.4.7.2.

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


[Libreoffice-bugs] [Bug 97250] New: Header Highlight Lost When Ctrl+Click

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

Bug ID: 97250
   Summary: Header Highlight Lost When Ctrl+Click
   Product: LibreOffice
   Version: 5.2.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jimbertama...@gmail.com

Created attachment 122081
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122081=edit
screenshot of the said issue

When I tried to select adjacent header (i.e. A, B, C) using Ctrl + click, it
works as expected - highlight header and full row, but when I tried to click
non-adjacent header (A,B,C then F), header lost it's highlight.

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


  1   2   3   4   >