[Libreoffice-commits] core.git: bin/get-bugzilla-attachments-by-mimetype

2016-01-01 Thread David Tardon
 bin/get-bugzilla-attachments-by-mimetype |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 15fdfe25578d5fa0e17b8f7f9c4b8c8632d357ad
Author: David Tardon 
Date:   Thu Dec 31 14:13:32 2015 +0100

application/visio.drawing is sometimes used in bugzilla

Change-Id: I3b8b85d91c2b19dc3cf6cba95d258ea639dd9862

diff --git a/bin/get-bugzilla-attachments-by-mimetype 
b/bin/get-bugzilla-attachments-by-mimetype
index 8307e4c..3c6d624 100755
--- a/bin/get-bugzilla-attachments-by-mimetype
+++ b/bin/get-bugzilla-attachments-by-mimetype
@@ -424,6 +424,7 @@ mimetypes = {
 'application/vnd.openxmlformats-officedocument.wordprocessingml.document': 
'docx',
 'application/vnd.openxmlformats-officedocument.wordprocessingml.template': 
'dotx',
 'application/vnd.visio': 'vsd',
+'application/visio.drawing': 'vsd',
 'application/vnd.visio.xml': 'vdx',
 'application/x-mspublisher': 'pub',
 # W3C
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96613] Lightproof extension is broken

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

Beluga  changed:

   What|Removed |Added

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

--- Comment #3 from Beluga  ---
Ok, good to hear!
Well, if Németh reads his email he now knows that he should upload an updated
version to the extensions site so I will close 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


[Libreoffice-commits] core.git: Branch 'feature/mailmerge-toolbar' - 2 commits - officecfg/registry sw/inc sw/Library_sw.mk sw/sdi sw/source sw/uiconfig sw/util

2016-01-01 Thread Jan Holesovsky
Rebased ref, commits from common ancestor:
commit f83a3743b345f6c369b5256e66dfa441ace6baa1
Author: Jan Holesovsky 
Date:   Sat Jan 2 00:38:18 2016 +0100

mailmerge: Toolbar edit box to show or change the current entry number.

Change-Id: I935c059da44f2309c3cb1a8b2e93341c353bee01

diff --git a/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
index 42559cf..7a93a8f 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
@@ -855,6 +855,17 @@
   starshapes;.uno:StarShapes.star5
 
   
+  
+
+  .uno:MailMergeCurrentEntry
+
+
+  
+
+
+  lo.writer.MMCurrentEntryController
+
+  
   
 
   .uno:MailMergeExcludeEntry
diff --git a/sw/inc/cmdid.h b/sw/inc/cmdid.h
index 03bdc51..cd8ee2d 100644
--- a/sw/inc/cmdid.h
+++ b/sw/inc/cmdid.h
@@ -256,6 +256,7 @@
 #define FN_MAILMERGE_PREV_ENTRY (FN_INSERT + 71)/* mail merge toolbar - go 
to the previous entry */
 #define FN_MAILMERGE_NEXT_ENTRY (FN_INSERT + 72)/* mail merge toolbar - go 
to the next entry */
 #define FN_MAILMERGE_LAST_ENTRY (FN_INSERT + 73)/* mail merge toolbar - go 
to the next entry */
+#define FN_MAILMERGE_CURRENT_ENTRY (FN_INSERT + 74) /* mail merge toolbar - 
show or change the current entry */
 #define FN_MAILMERGE_EXCLUDE_ENTRY (FN_INSERT + 75) /* mail merge toolbar - 
checkbox to exclude the current entry */
 
 #define FN_DRAWTEXT_ATTR_DLG(FN_INSERT + 76)/* position DrawText */
diff --git a/sw/sdi/swriter.sdi b/sw/sdi/swriter.sdi
index fe92ba9..92b246d 100644
--- a/sw/sdi/swriter.sdi
+++ b/sw/sdi/swriter.sdi
@@ -5323,6 +5323,30 @@ SfxVoidItem MailMergeLastEntry FN_MAILMERGE_LAST_ENTRY
 GroupId = GID_DOCUMENT;
 ]
 
+SfxVoidItem MailMergeCurrentEntry FN_MAILMERGE_CURRENT_ENTRY
+()
+[
+/* flags: */
+AutoUpdate = TRUE,
+Cachable = Cachable,
+FastCall = TRUE,
+HasCoreId = FALSE,
+HasDialog = FALSE,
+ReadOnlyDoc = FALSE,
+Toggle = FALSE,
+Container = TRUE,
+RecordAbsolute = FALSE,
+RecordPerSet;
+Synchron;
+
+/* config: */
+AccelConfig = TRUE,
+MenuConfig = TRUE,
+StatusBarConfig = FALSE,
+ToolBoxConfig = TRUE,
+GroupId = GID_DOCUMENT;
+]
+
 SfxVoidItem MailMergeExcludeEntry FN_MAILMERGE_EXCLUDE_ENTRY
 ()
 [
diff --git a/sw/sdi/wrtapp.sdi b/sw/sdi/wrtapp.sdi
index 794f796..16e5094 100644
--- a/sw/sdi/wrtapp.sdi
+++ b/sw/sdi/wrtapp.sdi
@@ -89,6 +89,12 @@ interface StarWriter
 StateMethod = StateOther ;
 ]
 
+FN_MAILMERGE_CURRENT_ENTRY
+[
+ExecMethod = ExecOther ;
+StateMethod = StateOther ;
+]
+
 FN_MAILMERGE_EXCLUDE_ENTRY
 [
 StateMethod = StateOther ;
diff --git a/sw/source/uibase/app/apphdl.cxx b/sw/source/uibase/app/apphdl.cxx
index e8670b4..06e4e5e 100644
--- a/sw/source/uibase/app/apphdl.cxx
+++ b/sw/source/uibase/app/apphdl.cxx
@@ -225,9 +225,11 @@ void SwModule::StateOther(SfxItemSet )
 }
 }
 break;
+case FN_MAILMERGE_CURRENT_ENTRY:
 case FN_MAILMERGE_EXCLUDE_ENTRY:
 {
 // just trigger calling statusChanged() of 
MMExcludeEntryController
+// resp. MMCurrentEntryController
 rSet.InvalidateItem(nWhich);
 }
 break;
@@ -751,6 +753,7 @@ void SwModule::ExecOther(SfxRequest& rReq)
 case FN_MAILMERGE_PREV_ENTRY:
 case FN_MAILMERGE_NEXT_ENTRY:
 case FN_MAILMERGE_LAST_ENTRY:
+case FN_MAILMERGE_CURRENT_ENTRY:
 {
 SwView* pView = ::GetActiveView();
 SwMailMergeConfigItem* pConfigItem = 
pView->GetMailMergeConfigItem();
@@ -764,6 +767,7 @@ void SwModule::ExecOther(SfxRequest& rReq)
 case FN_MAILMERGE_PREV_ENTRY:  pConfigItem->MoveResultSet(nPos 
- 1); break;
 case FN_MAILMERGE_NEXT_ENTRY:  pConfigItem->MoveResultSet(nPos 
+ 1); break;
 case FN_MAILMERGE_LAST_ENTRY:  pConfigItem->MoveResultSet(-1); 
break;
+case FN_MAILMERGE_CURRENT_ENTRY: /* don't move the result set, 
just update the document */ break;
 default: break;
 }
 
@@ -790,6 +794,7 @@ void SwModule::ExecOther(SfxRequest& rReq)
 rBindings.Invalidate(FN_MAILMERGE_PREV_ENTRY);
 rBindings.Invalidate(FN_MAILMERGE_NEXT_ENTRY);
 rBindings.Invalidate(FN_MAILMERGE_LAST_ENTRY);
+rBindings.Invalidate(FN_MAILMERGE_CURRENT_ENTRY);
 rBindings.Invalidate(FN_MAILMERGE_EXCLUDE_ENTRY);
 rBindings.Update();
 }
diff --git a/sw/source/uibase/dbui/mailmergetoolbarcontrols.cxx 
b/sw/source/uibase/dbui/mailmergetoolbarcontrols.cxx
index d4dacfb..749d65f 100644
--- 

[Libreoffice-bugs] [Bug 96856] New: After opening, LibreOffice becomes slower to respond

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

Bug ID: 96856
   Summary: After opening, LibreOffice becomes slower to respond
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sj...@yahoo.com

User-Agent:   Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36
Build Identifier: LibreOffice 5.0.3.2  Version: 5.0.3.2 Build ID:
e5f16313668ac592c1bfb310f4390624e3dbfb75 Locale: en-US (en.UTF-8)

Since this latest update, LO has become less responsive and a memory hog.
With only a single 103kb spreadsheet open, Activity Monitor shows LO using 1GB
of RAM.
My computer has 8GB of RAM and never has to use Swap.
What is the problem? 

Reproducible: Always

Steps to Reproduce:
1. open application
2.open spreadsheet
3.add, change, move entries in spreadsheet
response time for actions slows down.
Actual Results:  
Application response slows down from milliseconds response time to 1 - 2
seconds.

Expected Results:  
responded fast, as previous LO revision on this same spreadsheet

[Information automatically included from LibreOffice]
Locale: en-US
Module: SpreadsheetDocument
[Information guessed from browser]
OS: Mac OS X (All)
OS is 64bit: no


Reset User Profile?No

-- 
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 96833] Remote Files UI dialog has various small issues (lost values in editing, wrong TCP port number management...)

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

--- Comment #2 from Giuseppe Castagno (aka beppec56) 
 ---
(In reply to Julien Nabet from comment #1)
> About the port, I submitted a patch here:
> https://gerrit.libreoffice.org/#/c/21032/
> It allows until 5 characters but doesn't control if it's over 65535 or not.

Late this morning I'll push on top of yours gerrit some code to fix part of the
remaining problems:
- TCP port got lost/reset when editing a server;
- TCP port range is from 0 to 65535 inclusive: changed Gtk widget
  disabled comma, added max and min limits;
- secure protocol checkbox always unchecked when editing a WebDAV server.

In the meantime two others bugs on the remote files dialog are:

- breadcrumb doesn't work on some WebDAV servers;
- folder tree view on file select dialog is empty of folder names in WebDAV
servers

The last one I fixed already, breadcrumb one is difficult, seems that the TCP
port information is lost in processing...

I'm still testing the rest of the fix with 3 different WebDAV servers, I'll
then push them to gerrit and ask for your suggestions.

-- 
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 48887] FILESAVE: Save as HTML in Writer, even linked images are embedded and link details are lost from the document (comment 24 comment 30 )

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

--- Comment #54 from David Spring  ---
Luke, Thank you for raising this problem to critical. HTML is extremely
important to many people who use Libre Writer. HTML is the most basic language
of the Internet. From the first days of the Internet, images have been a
problem and linking images as a separate file has been an acceptable solution.
Embedding images is not an acceptable solution and never has been and never
will be. I understand that Open Office also has problems. But this is a
critical issue for those of us who use HTML to create content for the Internet.
As for Libre Writer simply abandoning the function of being an HTML editor, I
think that would be an even worse mistake. It would only result in driving
millions of people away from LibreOffice and into the hands of Open Office. I
think the solution is to take a close look at how Libre Office handled this
issue in the past and how Open Office is currently handling this issue in the
present and then adopting similar code. I realize that there are all kinds of
problems with XHTML and HTML5 and Mail Merge image insertion. But right now,
LibreWriter Save As HTML is broken. So is Export As XHTML. I appreciate the
efforts of Elaix, Writer 2 Epub and others. But they also are having trouble
keeping up with LibreOffice 5. Perhaps the team should consider slowing down on
the new features to make sure that former essential features are working again.
May the force be with 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-bugs] [Bug 96848] Base Form grid cannot be edited

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

David Tardon  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||dtar...@redhat.com
 Resolution|--- |DUPLICATE

--- Comment #1 from David Tardon  ---


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

-- 
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 96482] cannot access columns of a tablecontrol in design mode

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

David Tardon  changed:

   What|Removed |Added

 CC||t...@tim-passingham.co.uk

--- Comment #10 from David Tardon  ---
*** Bug 96848 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 48887] FILESAVE: Save as HTML in Writer, even linked images are embedded and link details are lost from the document (comment 24 comment 30 )

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

--- Comment #53 from David Spring  ---
Thank you for your suggestions. I have tried dozens of options including Export
to XHTML and Elaix. I have been building websites and creating Epubs and
teaching courses in HTML since the early 1990s. Being able to use HTML to put
content on the web is important. In my opinion, LibreWriter produced very clean
HTML up until this change was made (especially compared to MS Weird). I would
like to recommend LibreWriter to my students - but embedded images are not
proper HTML. It leads to all kinds of problems not only with Epubs but with
websites and I think it is important that websites and Epubs be interchangable.
Linking images is proper HTML and works well. Libre Writer Save as HTML worked
well (not perfect but acceptable) up until someone decided that linking images
was not needed. Whoever that person was, they were wrong. Thankfully, Open
Office still works so I will just have to recommend that option until
LibreOffice Save As HTML is restored. As for Elaix, I use that tool all of the
time and have attempted to use that tool to get around the problems created by
Libre Writer. The person who claimed that works well with Libre Office 5 is
also wrong. I have spent several days this past week trying to get Elaix to
work with Libre Office 5 and it is very unstable. It crashes with complex
documents with more than 100 images. So does Writer 2 Epub. I am currently
using Elaix with Open Office 4. It works for some functions but not others.
Many functions I simply have to wait and do in Sigil. This really slows down
the process of creating complex books.   At some point, when I get more time, I
will write up a more complete description of the problems of Elaix with Libre
Office 5. But I want to make it clear that it is not accurate to say that Elaix
works well with LibreOffice 5. It does not. Finally, I do not mean to be
complaining or yelling. I am just surprised at the lack of understanding of the
need for and importance of linking and not embedding images in 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


Re: Dipankar Niranjan license statement

2016-01-01 Thread Chris Sherlock
Welcome aboard :-)

Chris

Sent from my iPhone

> On 2 Jan 2016, at 5:27 AM, Dipankar Niranjan  wrote:
> 
> All of my past & future contributions to LibreOffice may be licensed under 
> the MPLv2/LGPLv3+ dual license
> ___
> 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


[Libreoffice-bugs] [Bug 48887] FILESAVE: Save as HTML in Writer, even linked images are embedded and link details are lost from the document (comment 24 comment 30 )

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

--- Comment #51 from V Stuart Foote  ---
(In reply to David Spring from comment #50)
Sigh... you really are missing the point. 

No one disputes that there was a wrong turn 54 months ago in implementing an
*unconditional* use of data URI (RFC 2397) especially as the Writer import
filters were not adjusted to handle that format round trip--making the
Writer/Web mode pretty much useless from that point. Import filtering has been
restored, but the Writer/Web canvas still needs dev attention to render the
markup for the  URIs.

But, in point of fact the XSLT based export of ODF documents to XHTML has
received prolonged dev attention and provides much better fidelity to the
original ODF document than the Writer/Web and HTML export filter has ever
achieved.

You say your goal is generating ePUB, have you even tested the LibreOffice XSLT
export to XHTML as source document for Sigil conversion to ePUB?  

In that scenario LibreOffice Writer becomes the editing and layout
environment--the XSLT conversion generates the fully styled XHTML.  Yes the
images are embedded base64 there also. But, you would not need normally to
tweak the XHTML code directly--but could do so against the XHTML using your
markup editor of choice.

LibreOffice's XSLT generated markup is XHTML tagged as http://www.w3.org/Math/DTD/mathml2/xhtml-math11-f.dtd;> DTD, as opposed to the
Writer "save-as" filter which retains its mislabeled legacy  DTD. Writer/Web has been a
poorly maintained module.

This all will get sorted out in some fashion--likely as Andras T. outlined in
comment 40. Restoring correct handling of the per document embedding of images
in the source ODF--and protecting that linkage and file naming during export to
HTML. With this issue, and bug 88038 and bug 95861, as set at appropriate
priorities this will be worked out in some fashion. 

But should note it is entirely possible that in the end we strip out the
Writer/Web module as unsupportable while bringing the HTML "save-as"
export/import filter more in line with performance/fidelity of the XSLT
conversion available in that export module. Ending the illusion of LibreOffice
as an HTML code editor.

The swhtml filter may even be consolidated with XSLT processing which also
could be improved upon. But those are implementation decisions for the dev(s)
that elects to take on the task.

-- 
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 86428] Help Page “Wrap” Exists Two Times in Local Help

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

Adolfo Jayme  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |olivier.hallot@documentfoun
   |desktop.org |dation.org
 Whiteboard|needDevEval |

-- 
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] help.git: AllLangHelp_swriter.mk source/text

2016-01-01 Thread Olivier Hallot
 AllLangHelp_swriter.mk  |1 
 source/text/swriter/00/0405.xhp |   29 -
 source/text/swriter/01/05060200.xhp |   14 
 source/text/swriter/01/0518.xhp |   61 
 source/text/swriter/guide/wrap.xhp  |   10 ++---
 source/text/swriter/main0105.xhp|2 -
 6 files changed, 27 insertions(+), 90 deletions(-)

New commits:
commit efa3b7d1e3eb003e6babb49c9b83c47979da0a89
Author: Olivier Hallot 
Date:   Thu Dec 31 13:48:32 2015 -0200

Fix tdf#86428 Wrap text help page duplicated

Fix for tdf#86428  Help Page “Wrap” Exists Two Times in Local Help

Wrap text help page 0518.xhp was replaced by 05060200.xhp but
left there because of a link from the main format help page.

The 05060200.xhp page now carries the recent changes in Writer UI
and context menus.

Wrap page from guide (main0105.xhp) also updated.

Change-Id: Icd0c015ceca89dc1e3f8f7200ffe491ddb03ff7b
Reviewed-on: https://gerrit.libreoffice.org/21023
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/AllLangHelp_swriter.mk b/AllLangHelp_swriter.mk
index c55d189..0dc26d3 100644
--- a/AllLangHelp_swriter.mk
+++ b/AllLangHelp_swriter.mk
@@ -152,7 +152,6 @@ $(eval $(call gb_AllLangHelp_add_helpfiles,swriter,\
 helpcontent2/source/text/swriter/01/05150200 \
 helpcontent2/source/text/swriter/01/05150300 \
 helpcontent2/source/text/swriter/01/0517 \
-helpcontent2/source/text/swriter/01/0518 \
 helpcontent2/source/text/swriter/01/0519 \
 helpcontent2/source/text/swriter/01/0520 \
 helpcontent2/source/text/swriter/01/0599 \
diff --git a/source/text/swriter/00/0405.xhp 
b/source/text/swriter/00/0405.xhp
index d5d4452..ad2e020 100644
--- a/source/text/swriter/00/0405.xhp
+++ b/source/text/swriter/00/0405.xhp
@@ -1,6 +1,6 @@
 
 
-   
+
 
- 
-   
+
+
 
   
  Format Menu
@@ -52,7 +52,7 @@
  Choose Format - Paragraph - Outline  
Numbering tab
  Choose Format - Styles and Formatting - 
open context menu Modify/New - Outline  Numbering tab 
(Paragraph Styles)
   
-  Choose Format - Sections - 
Options button 
+  Choose Format - Sections - 
Options button
 
   
  Choose Format - Page - Columns tab
@@ -89,13 +89,13 @@
 
   Choose Format - AutoCorrect - 
Apply and Edit Changes
 
-  Choose Table - 
AutoFormat (with cursor in a table) 
+  Choose Table - 
AutoFormat (with cursor in a table)
 
   
  Choose Format - Image
  
  Choose Insert - Image - From File - 
Properties button
- Choose Insert - Image - From File (when graphics 
are selected) 
+ Choose Insert - Image - From File (when graphics 
are selected)
 
  On the Image Bar (when images are 
selected), click
  
@@ -121,11 +121,10 @@
  Choose Insert - Frame - Type tab
   
   
- Choose Format - Image - Wrap tab
- Choose Format - Frame/Object - Wrap 
tab
+ Choose Format - Image - Properties - Wrap 
tab
+ Choose Format - Frame/Object - Properties - 
Wrap tab
  Choose Insert - Frame - Wrap tab
- Choose Format - Wrap
-
+ Choose Format - Wrap - Edit - Wrap 
tab
   
   Choose Format - Wrap - Edit 
Contour
 
@@ -136,11 +135,11 @@
   
   
  Choose Format - Image - Options 
tab
- Choose Format - Frame/Object - Options 
tab
+ Choose Format - Frame and Object - Options 
tab
  Choose Format - Styles and Formatting - open 
context menu Modify/New - Options tab
  Choose Insert - Frame - Options 
tab
   
-  Choose Format - Image - Image 
tab 
+  Choose Format - Image - Image 
tab
 
   
  Choose Insert/Format - Image - Macro 
tab
@@ -158,11 +157,11 @@
 
   Choose Table - Merge 
Table
 
-  Choose Table - Table Properties - 
Table tab 
+  Choose Table - Table Properties - 
Table tab
 
-  Choose Table - Table Properties - 
Columns tab 
+  Choose Table - Table Properties - 
Columns tab
 
-  Choose Table - Table 
Properties - Text Flow tab 
+  Choose Table - Table 
Properties - Text Flow tab
 
   Right-click in a table, choose 
Cell
 
diff --git a/source/text/swriter/01/05060200.xhp 
b/source/text/swriter/01/05060200.xhp
index 9b01c4f..7516e1d 100644
--- a/source/text/swriter/01/05060200.xhp
+++ b/source/text/swriter/01/05060200.xhp
@@ -1,6 +1,6 @@
 
 
-   
+
 
- 
-   
+
+
 
 
 Wrap
@@ -32,7 +32,7 @@
 
 
 Wrap
-Specify the way 
you want text to wrap around an object. You can also specify the 
spacing between the text and the object. 
+Specify the way 
you want text to wrap around an object. You can also specify the 
spacing between the text and the object.
 
 
 
@@ -149,7 +149,7 @@
 
 
 First Paragraph
-Starts a new 

[Libreoffice-commits] core.git: helpcontent2

2016-01-01 Thread Olivier Hallot
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit cbf62c1d75f270fcff14d4bc3b592dadd3b6d8e1
Author: Olivier Hallot 
Date:   Thu Dec 31 13:48:32 2015 -0200

Updated core
Project: help  efa3b7d1e3eb003e6babb49c9b83c47979da0a89

Fix tdf#86428 Wrap text help page duplicated

Fix for tdf#86428  Help Page “Wrap” Exists Two Times in Local Help

Wrap text help page 0518.xhp was replaced by 05060200.xhp but
left there because of a link from the main format help page.

The 05060200.xhp page now carries the recent changes in Writer UI
and context menus.

Wrap page from guide (main0105.xhp) also updated.

Change-Id: Icd0c015ceca89dc1e3f8f7200ffe491ddb03ff7b
Reviewed-on: https://gerrit.libreoffice.org/21023
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/helpcontent2 b/helpcontent2
index dd8cc9d..efa3b7d 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit dd8cc9d27b6891661185f02bf7478b5934deff08
+Subproject commit efa3b7d1e3eb003e6babb49c9b83c47979da0a89
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89955] EDITING: focus lost when using edit button or CTRL-SHIFT_M

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

raal  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected
 CC||r...@post.cz,
   ||samuel.mehrbr...@cib.de

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

0f9f354ac2a2e115f76429c91aa1ba545a08f328 is the first bad commit
commit 0f9f354ac2a2e115f76429c91aa1ba545a08f328
Author: Matthew Francis 
Date:   Sun Mar 15 01:49:58 2015 +0800

source-hash-b4558b508141af16d335f45a0f12bdd34521e944

commit b4558b508141af16d335f45a0f12bdd34521e944
Author: Samuel Mehrbrodt 
AuthorDate: Fri Aug 22 22:37:56 2014 +0200
Commit: Thomas Arnhold 
CommitDate: Sun Aug 24 06:26:17 2014 -0500

fdo#73151 Make better use of the sidebar

The general idea is to encourage use of the sidebar instead of floating
windows (for Navigator, Styles and Gallery)

Changes:
* Show the sidebar by default in Writer & Impress
* Remove the Gallery floating window (Gallery now always opens in the
sidebar)
* Remove all Gallery, Navigator and Styles links from the
default toolbar in Writer
  (since they have an icon in the sidebar and the sidebar is shown by
default now)
* When selecting "More" from the Styles dropdown, the Stylelist opens
in the sidebar instead of the floating window

This has all been discussed extensively here:
https://bugs.freedesktop.org/show_bug.cgi?id=73151

Change-Id: I3a0461d1472711da7121801000af294b432fccb1
Reviewed-on: https://gerrit.libreoffice.org/11077
Reviewed-by: Thomas Arnhold 
Tested-by: Thomas Arnhold 

-- 
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 96850] FORMATTING: send-to-back does not work for embedded images

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

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---
PNG, JPG, TIFF, EMF, SVG... going to need details. Better would be Steps to
Reproduce.  And of course screen clips and attached test case document would
help the process.

-- 
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 48887] FILESAVE: Save as HTML in Writer, even linked images are embedded and link details are lost from the document (comment 24 comment 30 )

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

--- Comment #50 from David Spring  ---
Here is the code for an Open Office 4 "Save As HTML"  linked image. It is
identical to the code used by Libre Writer before the change to embedded images
with LibreOffice 4.2: 

Here is the HTML code for the exact same image in LibreOffice 5.0.3 "Save As
HTML" image which has been exported not as a separate linked file but left
inside of the document as an "embedded" image. Keep in mind that this is the
code for a single image. Our books typically have more than 100 images. Does
anyone on this forum think this is acceptable HTML code for a single image? 



This is why I am forced to recommend Open Office until this HTML coding error
in LibreOffice is fixed.

-- 
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 'private/jmux/kde5' - 245 commits - android/source autogen.sh avmedia/source basctl/source basic/source bin/gbuild-to-ide bin/get-bugzilla-attachments-by-mimetyp

2016-01-01 Thread Jan-Marek Glogowski
Rebased ref, commits from common ancestor:
commit bb052df12007ca4c57b8753c25c9212fdd4146bf
Author: Jan-Marek Glogowski 
Date:   Fri Dec 11 21:57:44 2015 +0100

KDE5

Change-Id: I8ccdf61dd210e77dd78ac685863092dd37c90a59

diff --git a/Repository.mk b/Repository.mk
index 5c468b2..b7e2da3 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -256,8 +256,10 @@ $(eval $(call 
gb_Helper_register_libraries_for_install,OOOLIBS,gnome, \
 
 $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,kde, \
$(if $(ENABLE_KDE4),kde4be1) \
+   $(if $(ENABLE_KDE5),kde5be1) \
$(if $(USING_X11), \
$(if $(ENABLE_KDE4),vclplug_kde4) \
+   $(if $(ENABLE_KDE5),vclplug_kde5) \
) \
 ))
 
diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index fe614db3..61b1b2c 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -2982,6 +2982,39 @@ endef
 endif # ENABLE_KDE4
 
 
+ifeq ($(ENABLE_KDE5),TRUE)
+
+define gb_LinkTarget__use_kde5
+$(call gb_LinkTarget_set_include,$(1),\
+   $(subst -isystem/,-isystem /,$(filter -I% -isystem%,$(subst -isystem 
/,-isystem/,$(KF5_CFLAGS \
+   $$(INCLUDE) \
+)
+
+$(call gb_LinkTarget_add_defs,$(1),\
+   $(filter-out -I% -isystem%,$(subst -isystem /,-isystem/,$(KF5_CFLAGS))) 
\
+)
+
+$(call gb_LinkTarget_add_libs,$(1),\
+   $(KF5_LIBS) \
+)
+
+ifeq ($(COM),GCC)
+$(call gb_LinkTarget_add_cxxflags,$(1),\
+   -Wno-shadow \
+)
+endif
+
+endef
+
+else # !ENABLE_KDE5
+
+define gb_LinkTarget__use_kde5
+
+endef
+
+endif # ENABLE_KDE5
+
+
 ifeq ($(ENABLE_TDE),TRUE)
 
 define gb_LinkTarget__use_tde
diff --git a/config_host.mk.in b/config_host.mk.in
index 0fc29b6..1729019 100644
--- a/config_host.mk.in
+++ b/config_host.mk.in
@@ -144,6 +144,7 @@ export ENABLE_GTK_PRINT=@ENABLE_GTK_PRINT@
 export ENABLE_HEADLESS=@ENABLE_HEADLESS@
 export ENABLE_JAVA=@ENABLE_JAVA@
 export ENABLE_KDE4=@ENABLE_KDE4@
+export ENABLE_KDE5=@ENABLE_KDE5@
 export ENABLE_LIBLANGTAG=@ENABLE_LIBLANGTAG@
 export ENABLE_LPSOLVE=@ENABLE_LPSOLVE@
 export ENABLE_LTO=@ENABLE_LTO@
@@ -306,6 +307,11 @@ export KDE4_LIBS=$(gb_SPACE)@KDE4_LIBS@
 export KDE4_GLIB_CFLAGS=$(gb_SPACE)@KDE4_GLIB_CFLAGS@
 export KDE4_GLIB_LIBS=$(gb_SPACE)@KDE4_GLIB_LIBS@
 export KDE4_HAVE_GLIB=@KDE4_HAVE_GLIB@
+export KF5_CFLAGS=$(gb_SPACE)@KF5_CFLAGS@
+export KF5_LIBS=$(gb_SPACE)@KF5_LIBS@
+export KF5_GLIB_CFLAGS=$(gb_SPACE)@KF5_GLIB_CFLAGS@
+export KF5_GLIB_LIBS=$(gb_SPACE)@KF5_GLIB_LIBS@
+export KF5_HAVE_GLIB=@KF5_HAVE_GLIB@
 export KRB5_LIBS=@KRB5_LIBS@
 export LCMS2_CFLAGS=$(gb_SPACE)@LCMS2_CFLAGS@
 export LCMS2_LIBS=$(gb_SPACE)@LCMS2_LIBS@
@@ -397,6 +403,7 @@ export MINGW_SHARED_LIBSTDCPP=@MINGW_SHARED_LIBSTDCPP@
 export MINGW_SYSROOT=@MINGW_SYSROOT@
 export ML_EXE=@ML_EXE@
 export MOC4=@MOC4@
+export MOC5=@MOC5@
 export MPL_SUBSET=@MPL_SUBSET@
 export MSM_PATH=@MSM_PATH@
 export MSPUB_CFLAGS=$(gb_SPACE)@MSPUB_CFLAGS@
diff --git a/config_host/config_kde5.h.in b/config_host/config_kde5.h.in
new file mode 100644
index 000..01fa9d2
--- /dev/null
+++ b/config_host/config_kde5.h.in
@@ -0,0 +1,10 @@
+/*
+Settings for KDE5 integration.
+*/
+
+#ifndef CONFIG_KDE5_H
+#define CONFIG_KDE5_H
+
+#define KF5_HAVE_GLIB 0
+
+#endif
diff --git a/config_host/config_vclplug.h.in b/config_host/config_vclplug.h.in
index ae17474..75558b5 100644
--- a/config_host/config_vclplug.h.in
+++ b/config_host/config_vclplug.h.in
@@ -9,6 +9,7 @@ Settings about which X11 desktops have support enabled.
 
 #define ENABLE_GTK 0
 #define ENABLE_KDE4 0
+#define ENABLE_KDE5 0
 #define ENABLE_TDE 0
 #define ENABLE_GIO 0
 
diff --git a/configure.ac b/configure.ac
index fa441c3..6d80f45 100644
--- a/configure.ac
+++ b/configure.ac
@@ -641,6 +641,7 @@ linux-gnu*|k*bsd*-gnu*)
 build_gstreamer_0_10=yes
 test_tde=yes
 test_kde4=yes
+test_kde5=yes
 test_freetype=yes
 _os=Linux
 ;;
@@ -737,6 +738,7 @@ freebsd*)
 build_gstreamer_0_10=yes
 test_tde=yes
 test_kde4=yes
+test_kde5=yes
 test_freetype=yes
 AC_MSG_CHECKING([the FreeBSD operating system release])
 if test -n "$with_os_version"; then
@@ -766,6 +768,7 @@ freebsd*)
 build_gstreamer_0_10=yes
 test_tde=no
 test_kde4=yes
+test_kde5=yes
 test_freetype=yes
 PTHREAD_LIBS="-pthread -lpthread"
 _os=NetBSD
@@ -793,6 +796,7 @@ dragonfly*)
 build_gstreamer_0_10=yes
 test_tde=yes
 test_kde4=yes
+test_kde5=yes
 test_freetype=yes
 PTHREAD_LIBS="-pthread"
 _os=DragonFly
@@ -814,6 +818,7 @@ linux-android*)
 test_gtk=no
 test_tde=no
 test_kde4=no
+test_kde5=no
 test_randr=no
 test_xrender=no
 _os=Android
@@ -1248,6 +1253,12 @@ AC_ARG_ENABLE(kde4,
  KDE4 are available.]),
 ,)
 
+AC_ARG_ENABLE(kde5,
+AS_HELP_STRING([--enable-kde5],
+[Determines whether to use Qt5/KF5 vclplug on platforms where Qt5 and
+ KF5 are available.]),
+,)
+
 AC_ARG_ENABLE(randr,
 

[Libreoffice-bugs] [Bug 95428] Deleting inserted code from object catalogue hangs office

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

raal  changed:

   What|Removed |Added

   Keywords||bibisected, bisected
 CC||caol...@redhat.com

--- Comment #3 from raal  ---
This seems to have begun at the below commit.
Adding Cc: to Caolán McNamara ; Could you possibly take a look at this one?
Thanks

b01df79affa64361136ff572705faae45a677bba is the first bad commit
commit b01df79affa64361136ff572705faae45a677bba
Author: Matthew Francis 
Date:   Thu May 28 18:33:19 2015 +0800

source-hash-d76dc580a2cb60794e91b921008b8585d5a137e4

commit d76dc580a2cb60794e91b921008b8585d5a137e4
Author: Caolán McNamara 
AuthorDate: Mon Jan 27 14:31:56 2014 +
Commit: Caolán McNamara 
CommitDate: Mon Jan 27 14:38:39 2014 +

coverity#982152 Unchecked return value

Change-Id: I58fd11e38fa0b8ba7efeff8861aeec17742999c3


bibisect-43max$ git bisect log
# bad: [74b89c3193673ba9897dc4a4541500ef6e8d9bf7]
source-hash-8f97326bdd3f42fc82aa5e1989fd03b0af1daf64
# good: [9c392cfdfe6e9a9bce98555ea989283a957aa3ad]
source-hash-fc8f44e82de4ebdd50ac5fbb9207cd1a59a927e3
git bisect start 'latest' 'oldest'
# bad: [e289d9d328719fd70e9a2680fd0e4f586a97b3be]
source-hash-3c0a7cf4f67720f2cca2c4eb543f838d5b644e7f
git bisect bad e289d9d328719fd70e9a2680fd0e4f586a97b3be
# good: [0327d0bc45d60df0d1c8ac2470cf252b6bb8f780]
source-hash-38fed70782ae6ac6b0282897c7abc6fa33a6de9e
git bisect good 0327d0bc45d60df0d1c8ac2470cf252b6bb8f780
# bad: [3179b7f12b618884e4e9cfbc80a3f3200a3cb411]
source-hash-38ea39b517b218573b8d1430d7b06280bcfef0fb
git bisect bad 3179b7f12b618884e4e9cfbc80a3f3200a3cb411
# bad: [b2789ff1f668f7d3f85ae132a562af8147c540ea]
source-hash-470b393fd593440f49f0c3c1e95ef7a41fac0bb5
git bisect bad b2789ff1f668f7d3f85ae132a562af8147c540ea
# bad: [9aae3994e3f8a01faa036266abe8a596c5d96fc0]
source-hash-dc61cc8c96dc7286076185b1fb09c7c9887601e0
git bisect bad 9aae3994e3f8a01faa036266abe8a596c5d96fc0
# bad: [b0eaaf8e90196975a21968be66414a6bd11ada13]
source-hash-c1b7a2feb435d8e738e0636d58f027c5db4e8201
git bisect bad b0eaaf8e90196975a21968be66414a6bd11ada13
# good: [3941eb3afc62e524eb1785fb00e9f0e32cca617a]
source-hash-cd20baf40aba2153091eb5e7c680fd7e458c3286
git bisect good 3941eb3afc62e524eb1785fb00e9f0e32cca617a
# good: [063aeedcbc606a517f7b52ce997cf69c0f8b3b09]
source-hash-d72af8cba6d1125251804a7b9abe74165c706aa5
git bisect good 063aeedcbc606a517f7b52ce997cf69c0f8b3b09
# good: [25113fda1f2ac9901f6b2c989e5406bf8a6d004b]
source-hash-44064d1a342ba00d128fac3d9fbe52e29f496b73
git bisect good 25113fda1f2ac9901f6b2c989e5406bf8a6d004b
# good: [6c2a4e8d0203a570f742ec7c76586dc616070504]
source-hash-6b554dd8f6c9bd2ec9cc9b35b951f7499c6bd6f4
git bisect good 6c2a4e8d0203a570f742ec7c76586dc616070504
# good: [050385cd2f3eff9c5bce05a4c05a0c7a77fde719]
source-hash-fd7dbe5a15c3393ea9ad7c26267056743099c506
git bisect good 050385cd2f3eff9c5bce05a4c05a0c7a77fde719
# good: [ef4c77a63c49506e4ba3d264d7fce5ea7af30f3b]
source-hash-8cccfb8f8f793ebae4c2d5feb2674b1b2c976d9f
git bisect good ef4c77a63c49506e4ba3d264d7fce5ea7af30f3b
# bad: [b01df79affa64361136ff572705faae45a677bba]
source-hash-d76dc580a2cb60794e91b921008b8585d5a137e4
git bisect bad b01df79affa64361136ff572705faae45a677bba
# good: [9b126c5b7ec2b8ff311b1c0f15c3519d2ee32580]
source-hash-ec7c8f4ed1893711313221dd5fc46b6b37433df9
git bisect good 9b126c5b7ec2b8ff311b1c0f15c3519d2ee32580
# first bad commit: [b01df79affa64361136ff572705faae45a677bba]
source-hash-d76dc580a2cb60794e91b921008b8585d5a137e4

-- 
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 96679] Add Ability to Assign Keyboard Shortcuts for All Font Effects

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

--- Comment #8 from Heiko Tietze  ---
It's possible to configure your own shortcut right now: Start customize from
main menu, switch to tab keyboard, select the target key like shift+strl+s,
select your function below (category=format, function=strikethrough) and click
modify to assign the selected shortcut to this function (not sure that every
direct formatting has a pendant there since emboss wasn't there on the first
glance).

Admittedly, it's not easy to configure (here is an old blog post how we could
improve this dialog, althogh I would change some aspects today:
http://user-prompt.com/de/how-to-make-libreoffice-customization-usable/). And
in the course of implementing the extended toolbar we need a better
customization anyway.

What Cor and me challenge is the idea to assign a fix shortcut. But that's only
two opinions, against three voting pro such a feature (out of >120M; and I
understand your point as actually 50/50). Anyway, if the yea-sayers outweight
the sceptical people I'm fine with any change.

-- 
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 96679] Add Ability to Assign Keyboard Shortcuts for All Font Effects

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

--- Comment #8 from Heiko Tietze  ---
It's possible to configure your own shortcut right now: Start customize from
main menu, switch to tab keyboard, select the target key like shift+strl+s,
select your function below (category=format, function=strikethrough) and click
modify to assign the selected shortcut to this function (not sure that every
direct formatting has a pendant there since emboss wasn't there on the first
glance).

Admittedly, it's not easy to configure (here is an old blog post how we could
improve this dialog, althogh I would change some aspects today:
http://user-prompt.com/de/how-to-make-libreoffice-customization-usable/). And
in the course of implementing the extended toolbar we need a better
customization anyway.

What Cor and me challenge is the idea to assign a fix shortcut. But that's only
two opinions, against three voting pro such a feature (out of >120M; and I
understand your point as actually 50/50). Anyway, if the yea-sayers outweight
the sceptical people I'm fine with any change.

-- 
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 90661] EDITING: Drag from Navigator "As Copy" or "As Link" doesn't work starting with Libo 4.4+

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

Joel Madero  changed:

   What|Removed |Added

   Keywords|bibisectRequest, regression |
   Priority|medium  |low
 CC||jmadero@gmail.com
 Whiteboard||possibleRegression
   Severity|normal  |minor

--- Comment #5 from Joel Madero  ---
I cannot confirm that this is a regression. As there are a couple issues in the
bug I focused just on the copy a table from navigator issue. Tested all the way
back to 3.5 and couldn't confirm the regression.

Requesting independent confirmation that this is a regression - if that is
done, feel free to request the bibisect again.

Thanks.

-- 
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 89139] DATALOSS FILESAVE: xlsx pivot table corrupted after save with LO and re-open with MS Office

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

Joel Madero  changed:

   What|Removed |Added

   Keywords|bibisectRequest |
 CC||jmadero@gmail.com
 Whiteboard||interoperability

--- Comment #19 from Joel Madero  ---
I don't see any evidence that this is a regression. Removing bibisectRequest.

-- 
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 96853] New: UI: Selected tab color hard to see with default theme

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

Bug ID: 96853
   Summary: UI: Selected tab color hard to see with default theme
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: baril_math...@hotmail.com

Since the default Libreoffice color scheme is light gray (15%ish?), it is very
difficult to see selected tab(s) since they turn white.

Easiest fix would be to have default tab color that is something closer to a
50-60% gray

-- 
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 96365] SolarMutex not locked ...

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

--- Comment #2 from Commit Notification 
 ---
Bjoern Michaelsen committed a patch related to this issue.
It has been pushed to "master":

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

tdf#96365: ensure holding SolarMutex before triggering core code

It will be available in 5.2.0.

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

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

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


[Libreoffice-bugs] [Bug 96365] SolarMutex not locked ...

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|| target:5.2.0

-- 
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 95341] Last item of a popup menu with a title isn't selectable

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

Terrence Enger  changed:

   What|Removed |Added

 CC||harald.koes...@mail.de

--- Comment #1 from Terrence Enger  ---
*** Bug 96849 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 96849] “Close Toolbar” in Context Menu does not work

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

Terrence Enger  changed:

   What|Removed |Added

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

--- Comment #1 from Terrence Enger  ---
This sounds like bug 95341.  Setting setting status RESO DUP.

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

-- 
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 96852] New: FORMATTING: "Move/Copy Sheet..." not copying page format

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

Bug ID: 96852
   Summary: FORMATTING: "Move/Copy Sheet..." not copying page
format
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: baril_math...@hotmail.com

When copying one sheet to an other workbook, the following settings (at a
minimum) are NOT transferred:

- Format/Page.../margings
- Format/Page.../Orientations
- Toggle grid lines for current sheet
- Print range

If copying multiple sheets, (not sure exactly when) could get the following
cases:

1. Both sheets lost the above formatting
2. Only 1 sheet lost above formatting but the sheet before and/or after insert
point loose above formatting. Using CTRL-Z will remove the inserted pages but
will not revert corrupted sheets

-- 
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 83667] AutoFormat is not automatically applied to newly inserted / adjusted (via deletion) table rows

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

--- Comment #5 from Beluga  ---
(In reply to Axel Bock from comment #4)
> all this aside, as a general observation I think the table handling in LO
> can be improved in a *LOT* of ways, with this being a pretty useful step in
> the process.

If you have ideas about improving it, you could work with the design team:
https://wiki.documentfoundation.org/Design
You can contact them on IRC or post a proposal to the mailing list.

-- 
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 96854] New: UI: Persistent options in ''Move/Copy Sheet..."

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

Bug ID: 96854
   Summary: UI: Persistent options in ''Move/Copy Sheet..."
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: baril_math...@hotmail.com

- Having a persistent toggle between "move" and "copy" would be great.
Personally, I mostly use copy and having to select it every  time is annoying.

-- 
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 96853] UI: Selected tab color hard to see with default theme

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

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---
Agree that contrast of the active Tab could be a bit higher for indicating the
selected active sheet.  Current gray (inactive) and White (active) is a little
muddled--but not that unreadable.

So for simplicity it might be appropriate to use the same--color and reversed
font color--used for the selected active Column or Row on the active sheet Tab.

Default for those now is a pseudo Blue gradient (just 2 hues), and font color
toggled white when active.

-- 
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: 5 commits - sw/source

2016-01-01 Thread Bjoern Michaelsen
 sw/source/core/unocore/unostyle.cxx |  163 
 1 file changed, 73 insertions(+), 90 deletions(-)

New commits:
commit b4082bed2de12cd576a06a9f456a71101809f3ed
Author: Bjoern Michaelsen 
Date:   Sat Jan 2 01:12:51 2016 +0100

make this temp override of ItemSet more explicit and scoped

Change-Id: I8a02be2772b8f7c0d1b13556d0c49f1b00bcc1aa

diff --git a/sw/source/core/unocore/unostyle.cxx 
b/sw/source/core/unocore/unostyle.cxx
index 42a8f11..8caa0dd 100644
--- a/sw/source/core/unocore/unostyle.cxx
+++ b/sw/source/core/unocore/unostyle.cxx
@@ -1320,7 +1320,6 @@ private:
 std::unique_ptr m_pMyItemSet;
 OUString m_rStyleName;
 const SwAttrSet* m_pParentStyle;
-
 public:
 SwStyleBase_Impl(SwDoc& rSwDoc, const OUString& rName, const SwAttrSet* 
pParentStyle)
 : m_rDoc(rSwDoc)
@@ -1346,13 +1345,6 @@ public:
 return m_xNewBase.is();
 }
 
-SfxItemSet* replaceItemSet(SfxItemSet* pNew)
-{
-SfxItemSet* pRetval = m_pItemSet;
-m_pItemSet = pNew;
-return pRetval;
-}
-
 SfxItemSet& GetItemSet()
 {
 assert(m_xNewBase.is());
@@ -1369,6 +1361,19 @@ public:
 }
 
 const SwPageDesc* GetOldPageDesc();
+
+// still a hack, but a bit more explicit and with a proper scope
+struct ItemSetOverrider
+{
+SwStyleBase_Impl& m_rStyleBase;
+SfxItemSet* m_pOldSet;
+ItemSetOverrider(SwStyleBase_Impl& rStyleBase, SfxItemSet* pTemp)
+: m_rStyleBase(rStyleBase)
+, m_pOldSet(m_rStyleBase.m_pItemSet)
+{ m_rStyleBase.m_pItemSet = pTemp; }
+~ItemSetOverrider()
+{ m_rStyleBase.m_pItemSet = m_pOldSet; };
+};
 };
 
 const SwPageDesc* SwStyleBase_Impl::GetOldPageDesc()
@@ -1394,6 +1399,7 @@ const SwPageDesc* SwStyleBase_Impl::GetOldPageDesc()
 return m_pOldPageDesc;
 }
 
+
 static void lcl_SetStyleProperty(const SfxItemPropertySimpleEntry& rEntry,
 const SfxItemPropertySet& rPropSet,
 const uno::Any& rValue,
@@ -3058,9 +3064,10 @@ static void lcl_putItemToSet(const SvxSetItem* pSetItem, 
const SfxItemPropertySe
 
 // replace the used SfxItemSet at the SwStyleBase_Impl temporarily and use 
the
 // default method to set the property
-SfxItemSet* pRememberItemSet = rBaseImpl.replaceItemSet();
-lcl_SetStyleProperty(rEntry, rPropSet, rVal, rBaseImpl, pPool, pDoc, 
eFamily);
-rBaseImpl.replaceItemSet(pRememberItemSet);
+{
+SwStyleBase_Impl::ItemSetOverrider o(rBaseImpl, );
+lcl_SetStyleProperty(rEntry, rPropSet, rVal, rBaseImpl, pPool, pDoc, 
eFamily);
+}
 
 // reset paret at ItemSet from SetItem
 rSetSet.SetParent(nullptr);
@@ -3261,9 +3268,10 @@ void SAL_CALL SwXPageStyle::SetPropertyValues_Impl(
 
 // replace the used SfxItemSet at the 
SwStyleBase_Impl temporarily and use the
 // default method to set the property
-SfxItemSet* pRememberItemSet = 
aBaseImpl.replaceItemSet();
-lcl_SetStyleProperty(*pEntry, *pPropSet, 
pValues[nProp], aBaseImpl, m_pBasePool, GetDoc(), GetFamily());
-aBaseImpl.replaceItemSet(pRememberItemSet);
+{
+SwStyleBase_Impl::ItemSetOverrider 
o(aBaseImpl, );
+lcl_SetStyleProperty(*pEntry, *pPropSet, 
pValues[nProp], aBaseImpl, m_pBasePool, GetDoc(), GetFamily());
+}
 
 // reset paret at ItemSet from SetItem
 rSetSet.SetParent(nullptr);
@@ -3452,9 +3460,10 @@ uno::Sequence< uno::Any > SAL_CALL 
SwXPageStyle::GetPropertyValues_Impl(
 {
 // get from SfxItemSet of the corresponding 
SfxSetItem
 const SfxItemSet& rSetSet = pSetItem->GetItemSet();
-SfxItemSet* pRememberItemSet = 
aBase.replaceItemSet(_cast< SfxItemSet& >(rSetSet));
-pRet[nProp] = lcl_GetStyleProperty(*pEntry, 
*pPropSet, aBase, pBase, GetFamily(), GetDoc() );
-aBase.replaceItemSet(pRememberItemSet);
+{
+SwStyleBase_Impl::ItemSetOverrider o(aBase, 
_cast< SfxItemSet& >(rSetSet));
+pRet[nProp] = lcl_GetStyleProperty(*pEntry, 
*pPropSet, aBase, pBase, GetFamily(), GetDoc());
+}
 }
 else if(pEntry->nWID == SID_ATTR_PAGE_ON)
 {
@@ -3522,9 +3531,10 @@ uno::Sequence< uno::Any > SAL_CALL 
SwXPageStyle::GetPropertyValues_Impl(
 {
 // set at SfxItemSet of the corresponding 
SfxSetItem
   

[Libreoffice-commits] core.git: Branch 'feature/mailmerge-toolbar' - 2 commits - officecfg/registry sw/inc sw/Library_sw.mk sw/sdi sw/source sw/uiconfig sw/util

2016-01-01 Thread Jan Holesovsky
Rebased ref, commits from common ancestor:
commit 1b47f8aaf0d9d031889316e3203500c6d4733922
Author: Jan Holesovsky 
Date:   Sat Jan 2 00:38:18 2016 +0100

mailmerge: Toolbar edit box to show or change the current entry number.

Change-Id: I935c059da44f2309c3cb1a8b2e93341c353bee01

diff --git a/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
index 42559cf..7a93a8f 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
@@ -855,6 +855,17 @@
   starshapes;.uno:StarShapes.star5
 
   
+  
+
+  .uno:MailMergeCurrentEntry
+
+
+  
+
+
+  lo.writer.MMCurrentEntryController
+
+  
   
 
   .uno:MailMergeExcludeEntry
diff --git a/sw/inc/cmdid.h b/sw/inc/cmdid.h
index 03bdc51..cd8ee2d 100644
--- a/sw/inc/cmdid.h
+++ b/sw/inc/cmdid.h
@@ -256,6 +256,7 @@
 #define FN_MAILMERGE_PREV_ENTRY (FN_INSERT + 71)/* mail merge toolbar - go 
to the previous entry */
 #define FN_MAILMERGE_NEXT_ENTRY (FN_INSERT + 72)/* mail merge toolbar - go 
to the next entry */
 #define FN_MAILMERGE_LAST_ENTRY (FN_INSERT + 73)/* mail merge toolbar - go 
to the next entry */
+#define FN_MAILMERGE_CURRENT_ENTRY (FN_INSERT + 74) /* mail merge toolbar - 
show or change the current entry */
 #define FN_MAILMERGE_EXCLUDE_ENTRY (FN_INSERT + 75) /* mail merge toolbar - 
checkbox to exclude the current entry */
 
 #define FN_DRAWTEXT_ATTR_DLG(FN_INSERT + 76)/* position DrawText */
diff --git a/sw/sdi/swriter.sdi b/sw/sdi/swriter.sdi
index fe92ba9..92b246d 100644
--- a/sw/sdi/swriter.sdi
+++ b/sw/sdi/swriter.sdi
@@ -5323,6 +5323,30 @@ SfxVoidItem MailMergeLastEntry FN_MAILMERGE_LAST_ENTRY
 GroupId = GID_DOCUMENT;
 ]
 
+SfxVoidItem MailMergeCurrentEntry FN_MAILMERGE_CURRENT_ENTRY
+()
+[
+/* flags: */
+AutoUpdate = TRUE,
+Cachable = Cachable,
+FastCall = TRUE,
+HasCoreId = FALSE,
+HasDialog = FALSE,
+ReadOnlyDoc = FALSE,
+Toggle = FALSE,
+Container = TRUE,
+RecordAbsolute = FALSE,
+RecordPerSet;
+Synchron;
+
+/* config: */
+AccelConfig = TRUE,
+MenuConfig = TRUE,
+StatusBarConfig = FALSE,
+ToolBoxConfig = TRUE,
+GroupId = GID_DOCUMENT;
+]
+
 SfxVoidItem MailMergeExcludeEntry FN_MAILMERGE_EXCLUDE_ENTRY
 ()
 [
diff --git a/sw/sdi/wrtapp.sdi b/sw/sdi/wrtapp.sdi
index 794f796..16e5094 100644
--- a/sw/sdi/wrtapp.sdi
+++ b/sw/sdi/wrtapp.sdi
@@ -89,6 +89,12 @@ interface StarWriter
 StateMethod = StateOther ;
 ]
 
+FN_MAILMERGE_CURRENT_ENTRY
+[
+ExecMethod = ExecOther ;
+StateMethod = StateOther ;
+]
+
 FN_MAILMERGE_EXCLUDE_ENTRY
 [
 StateMethod = StateOther ;
diff --git a/sw/source/uibase/app/apphdl.cxx b/sw/source/uibase/app/apphdl.cxx
index e8670b4..06e4e5e 100644
--- a/sw/source/uibase/app/apphdl.cxx
+++ b/sw/source/uibase/app/apphdl.cxx
@@ -225,9 +225,11 @@ void SwModule::StateOther(SfxItemSet )
 }
 }
 break;
+case FN_MAILMERGE_CURRENT_ENTRY:
 case FN_MAILMERGE_EXCLUDE_ENTRY:
 {
 // just trigger calling statusChanged() of 
MMExcludeEntryController
+// resp. MMCurrentEntryController
 rSet.InvalidateItem(nWhich);
 }
 break;
@@ -751,6 +753,7 @@ void SwModule::ExecOther(SfxRequest& rReq)
 case FN_MAILMERGE_PREV_ENTRY:
 case FN_MAILMERGE_NEXT_ENTRY:
 case FN_MAILMERGE_LAST_ENTRY:
+case FN_MAILMERGE_CURRENT_ENTRY:
 {
 SwView* pView = ::GetActiveView();
 SwMailMergeConfigItem* pConfigItem = 
pView->GetMailMergeConfigItem();
@@ -764,6 +767,7 @@ void SwModule::ExecOther(SfxRequest& rReq)
 case FN_MAILMERGE_PREV_ENTRY:  pConfigItem->MoveResultSet(nPos 
- 1); break;
 case FN_MAILMERGE_NEXT_ENTRY:  pConfigItem->MoveResultSet(nPos 
+ 1); break;
 case FN_MAILMERGE_LAST_ENTRY:  pConfigItem->MoveResultSet(-1); 
break;
+case FN_MAILMERGE_CURRENT_ENTRY: /* don't move the result set, 
just update the document */ break;
 default: break;
 }
 
@@ -790,6 +794,7 @@ void SwModule::ExecOther(SfxRequest& rReq)
 rBindings.Invalidate(FN_MAILMERGE_PREV_ENTRY);
 rBindings.Invalidate(FN_MAILMERGE_NEXT_ENTRY);
 rBindings.Invalidate(FN_MAILMERGE_LAST_ENTRY);
+rBindings.Invalidate(FN_MAILMERGE_CURRENT_ENTRY);
 rBindings.Invalidate(FN_MAILMERGE_EXCLUDE_ENTRY);
 rBindings.Update();
 }
diff --git a/sw/source/uibase/dbui/mailmergetoolbarcontrols.cxx 
b/sw/source/uibase/dbui/mailmergetoolbarcontrols.cxx
index d980ce6..35d679f 100644
--- 

[Libreoffice-bugs] [Bug 96855] LO51RC1 Online help content selection no longer offers help for "LibreOffice Basic"

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

mi...@filmsi.net changed:

   What|Removed |Added

 CC||tima...@gmail.com

--- Comment #1 from mi...@filmsi.net ---
Oh, I am using OSX 10.11.2 and LO51RC1 with Slovenian lang-pack.

-- 
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 96855] New: LO51RC1 Online help content selection no longer offers help for "LibreOffice Basic"

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

Bug ID: 96855
   Summary: LO51RC1 Online help content selection no longer offers
help for "LibreOffice Basic"
   Product: LibreOffice
   Version: 5.1.0.1 rc
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mi...@filmsi.net

Created attachment 121675
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121675=edit
Drop-down selection of help subcontent

Wanted to test if bug I reported
https://bugs.documentfoundation.org/show_bug.cgi?id=91992
is still happening with 51RC! and I wanted to test the same help page, the GoTo
Command from LibreOffice Basic help.

But upon opening the help window on OSX I just cannot select LibreOffice Basic
help, it does no exist anymore. Also, no other help section offers definition
for the GoTo (or probably other Basic commands), so it seems that LibreOffice
Basic help content somehow vanished from online help.

I am attaching the drop-down menu content where there is no "LibreOffice Basic"
item present.

-- 
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: helpcontent2

2016-01-01 Thread Stanislav Horacek
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3da9c484679373e77c3b339485c98f6f26b08046
Author: Stanislav Horacek 
Date:   Wed Dec 30 22:35:01 2015 +0100

Updated core
Project: help  dd8cc9d27b6891661185f02bf7478b5934deff08

COUNTIFS: add missing argument name

Change-Id: Ic099ea1272f1c8c0ea6804cd77b15c75159d084b
Reviewed-on: https://gerrit.libreoffice.org/21014
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/helpcontent2 b/helpcontent2
index 7338cf7..dd8cc9d 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 7338cf7526423d3e20cf408416e17d5f82c60e34
+Subproject commit dd8cc9d27b6891661185f02bf7478b5934deff08
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-01-01 Thread Stanislav Horacek
 source/text/scalc/01/func_countifs.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit dd8cc9d27b6891661185f02bf7478b5934deff08
Author: Stanislav Horacek 
Date:   Wed Dec 30 22:35:01 2015 +0100

COUNTIFS: add missing argument name

Change-Id: Ic099ea1272f1c8c0ea6804cd77b15c75159d084b
Reviewed-on: https://gerrit.libreoffice.org/21014
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/source/text/scalc/01/func_countifs.xhp 
b/source/text/scalc/01/func_countifs.xhp
index faa7a0b..aa77677 100644
--- a/source/text/scalc/01/func_countifs.xhp
+++ b/source/text/scalc/01/func_countifs.xhp
@@ -39,7 +39,7 @@ The operators equal to (=), not equal to (>), greater 
than (>), greater than
 The function can have up to 500 arguments, meaning that you can specify 250 
pairs of ranges and criteria.
 
 If a cell 
contains TRUE, it is treated as 1, if a cell contains FALSE – as 0 
(zero).
-If ranges for arguments Range have unequal sizes, the function 
returns err:502.
+If ranges for arguments Range and Criterion have 
unequal sizes, the function returns err:502.
 
 Simple usage
 =COUNTIFS(B2:B6;">=20")
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 94106] l10n Italian(Italy) does not recognize the colon as delimiter when entering time values

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

--- Comment #3 from Wolfgang Jäger  ---
Component changed to 'Localization'.

-- 
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 - svx/source sw/source

2016-01-01 Thread Bjoern Michaelsen
 svx/source/accessibility/AccessibleControlShape.cxx |   31 ++--
 sw/source/core/unocore/unostyle.cxx |2 -
 2 files changed, 17 insertions(+), 16 deletions(-)

New commits:
commit c1258abe50f1508ea0f628ff963bc1914ab86b67
Author: Bjoern Michaelsen 
Date:   Sat Jan 2 02:02:21 2016 +0100

tdf#96365: ensure holding SolarMutex before triggering core code

(likely a bad sign that this compilation unit, defines lots of UNO
interfaces without ever using a SolarMutexGuard)

Change-Id: I2cca810f8e4e1684c75d9185d701024f692403a4

diff --git a/svx/source/accessibility/AccessibleControlShape.cxx 
b/svx/source/accessibility/AccessibleControlShape.cxx
index 03e6a2c..ab768d7 100644
--- a/svx/source/accessibility/AccessibleControlShape.cxx
+++ b/svx/source/accessibility/AccessibleControlShape.cxx
@@ -42,6 +42,7 @@
 #include 
 #include 
 #include "svx/svdstr.hrc"
+#include 
 #include 
 
 using namespace ::accessibility;
@@ -466,24 +467,24 @@ void SAL_CALL AccessibleControlShape::notifyEvent( const 
AccessibleEventObject&
 }
 }
 
-void SAL_CALL AccessibleControlShape::modeChanged( const ModeChangeEvent& 
_rSource ) throw (RuntimeException, std::exception)
+void SAL_CALL AccessibleControlShape::modeChanged(const ModeChangeEvent& 
rSource) throw (RuntimeException, std::exception)
 {
 // did it come from our inner context (the real one, not it's proxy!)?
-OSL_TRACE ("AccessibleControlShape::modeChanged");
-Reference< XControl > xSource( _rSource.Source, UNO_QUERY );// for 
faster compare
-if ( xSource.get() == m_xUnoControl.get() )
-{
-// If our "pseudo-aggregated" inner context does not live anymore,
-// we don't want to live, too.  This is accomplished by asking our
-// parent to replace this object with a new one.  Disposing this
-// object and sending notifications about the replacement are in
-// the responsibility of our parent.
-OSL_VERIFY( mpParent->ReplaceChild ( this, mxShape, mnIndex, 
maShapeTreeInfo ) );
+SAL_INFO("sw.uno", "AccessibleControlShape::modeChanged");
+Reference xSource(rSource.Source, UNO_QUERY); // for faster 
compare
+if(xSource.get() != m_xUnoControl.get())
+{
+SAL_WARN("sw.uno", "AccessibleControlShape::modeChanged: where did 
this come from?");
+return;
 }
-#if OSL_DEBUG_LEVEL > 0
-else
-OSL_FAIL( "AccessibleControlShape::modeChanged: where did this come 
from?" );
-#endif
+SolarMutexGuard g;
+// If our "pseudo-aggregated" inner context does not live anymore,
+// we don't want to live, too.  This is accomplished by asking our
+// parent to replace this object with a new one.  Disposing this
+// object and sending notifications about the replacement are in
+// the responsibility of our parent.
+const bool bReplaced = mpParent->ReplaceChild(this, mxShape, mnIndex, 
maShapeTreeInfo);
+SAL_WARN_IF(!bReplaced, "sw.uno", "AccessibleControlShape::modeChanged: 
replacing ourselves away did fail");
 }
 
 void SAL_CALL AccessibleControlShape::disposing (const EventObject& _rSource) 
throw (RuntimeException, std::exception)
commit 3ae3af4a989758a0772881b1a2a6c1a68ee67dda
Author: Bjoern Michaelsen 
Date:   Sat Jan 2 01:35:53 2016 +0100

fix indent

Change-Id: I79623024b008b60a33935942986e8a98fccc3d8d

diff --git a/sw/source/core/unocore/unostyle.cxx 
b/sw/source/core/unocore/unostyle.cxx
index 8caa0dd..0bfb6b8 100644
--- a/sw/source/core/unocore/unostyle.cxx
+++ b/sw/source/core/unocore/unostyle.cxx
@@ -937,7 +937,7 @@ static const std::vector* 
lcl_GetStyleFamilyEntries()
 { SFX_STYLE_FAMILY_PARA,   PROPERTY_MAP_PARA_STYLE,  
nsSwGetPoolIdFromName::GET_POOLID_TXTCOLL,  "ParagraphStyles", 
STR_STYLE_FAMILY_PARAGRAPH, _GetCountOrName,   
_CreateStyle,   
_TranslateIndex   },
 { SFX_STYLE_FAMILY_PAGE,   PROPERTY_MAP_PAGE_STYLE,  
nsSwGetPoolIdFromName::GET_POOLID_PAGEDESC, "PageStyles",  
STR_STYLE_FAMILY_PAGE,  _GetCountOrName,   
_CreateStyle,   
_TranslateIndexRange  },
 { SFX_STYLE_FAMILY_FRAME,  PROPERTY_MAP_FRAME_STYLE, 
nsSwGetPoolIdFromName::GET_POOLID_FRMFMT,   "FrameStyles", 
STR_STYLE_FAMILY_FRAME, _GetCountOrName,  
_CreateStyle,  
_TranslateIndexRange },
-{ SFX_STYLE_FAMILY_PSEUDO, PROPERTY_MAP_NUM_STYLE, 
nsSwGetPoolIdFromName::GET_POOLID_NUMRULE,  "NumberingStyles", 
STR_STYLE_FAMILY_NUMBERING, _GetCountOrName, 
_CreateStyle, 
_TranslateIndexRange   }
+{ SFX_STYLE_FAMILY_PSEUDO, PROPERTY_MAP_NUM_STYLE,   
nsSwGetPoolIdFromName::GET_POOLID_NUMRULE,  "NumberingStyles", 
STR_STYLE_FAMILY_NUMBERING, _GetCountOrName, 
_CreateStyle, 
_TranslateIndexRange   }

[Libreoffice-bugs] [Bug 48887] FILESAVE: Save as HTML in Writer, even linked images are embedded and link details are lost from the document (comment 24 comment 30 )

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

--- Comment #52 from V Stuart Foote  ---
(In reply to V Stuart Foote from comment #51)

> ... a wrong turn 54 months ago ...

Sorry, it was just 30 months ago in July 2013, not sure what radix I was
thinking in.

-- 
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 96851] Missing Option “Automatically save the document too”

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

--- Comment #1 from MM  ---
It's not a bug. It got removed because it never worked correctly.
See bug 65509

-- 
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 48887] FILESAVE: Save as HTML in Writer, even linked images are embedded and link details are lost from the document (comment 24 comment 30 )

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

--- Comment #49 from Joel Madero  ---
Fully support V Stuart Foote here and just for additional considerations:
https://bugs.documentfoundation.org/buglist.cgi?bug_status=NEW=0_id=581818=opendate%20DESC%2Cchangeddate%20DESC%2Cbug_id%20DESC=LibreOffice_format=advanced=---

10k open bugs - many have users screaming and yelling about how their bug
deserves additional priority. We have an objective way of prioritizing and it's
not *at all* intended to dictate to developers what they must fix.

Finally, regardless if it's critical or major - it won't necessarily change
when/if it's fixed as that will *entirely* depend on a volunteer taking the
time to fix it. There is no paid staff, no one dictates what gets fixed, there
is no system where users can scream louder to get their pet bugs fixed faster
(thankfully as that would destroy the project).

As always your options are:
1) Fix it yourself (that's what open source is all about);
2) Pay for a fix;
3) Find a friend, family member, colleague to fix it;
4) Wait patiently;
5) Use a different product.

You seem to have chosen #5, which is entirely fine with everyone :)

-- 
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 43023] EDITING: Undo stack deleted after Drag from Navigator "As Copy" or "As Link"

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

Joel Madero  changed:

   What|Removed |Added

 CC||jmadero@gmail.com

--- Comment #7 from Joel Madero  ---
Attached a test document for step 1 as it makes it a lot easier to triage the
issue.

-- 
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 65509] FILESAVE "Automatically save" is not running

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

Julien Nabet  changed:

   What|Removed |Added

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

-- 
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 96851] Missing Option “Automatically save the document too”

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

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||serval2...@yahoo.fr
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=65
   ||509
 Resolution|--- |NOTABUG

--- Comment #2 from Julien Nabet  ---
Not a bug then.

-- 
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 43023] EDITING: Undo stack deleted after Drag from Navigator "As Copy" or "As Link"

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

--- Comment #8 from Joel Madero  ---
Created attachment 121674
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121674=edit
Test 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 77044] FILEOPEN : Incorrect docX import (frames border)

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

Joel Madero  changed:

   What|Removed |Added

   Keywords|bibisectRequest, regression |filter:docx
 CC||jmadero@gmail.com
 Whiteboard||interoperability

--- Comment #10 from Joel Madero  ---
Again removing bibisectRequest - please don't add it again to this bug. I
explained why I removed it.

This bug pertains to the frame around the text box - the position of the box is
a separate issue which should be reported separately. Please don't conflate
issues as it just makes them hard to track and even harder to find a developer
to tackle the issue.

-- 
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: [libreoffice-l10n] Happy New Year 2016

2016-01-01 Thread Sylvia Sánchez
Thank you very much!!
Same for you too!!




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


[Libreoffice-bugs] [Bug 96835] The main LibreOffice icon could use redesign -- not distinctive enough in some Desktop environments

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

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #3 from m.a.riosv  ---
Created attachment 121676
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121676=edit
Screenshot with icons.

I have done my own desktop icons mainly to differentiate between some of the
installed versions, so I don't need to go over the icon and see their pop-up
text.

I think a some people has the stable and fresh installed, some way to
differentiate it could be nice.

-- 
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 96835] The main LibreOffice icon could use redesign -- not distinctive enough in some Desktop environments

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

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #3 from m.a.riosv  ---
Created attachment 121676
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121676=edit
Screenshot with icons.

I have done my own desktop icons mainly to differentiate between some of the
installed versions, so I don't need to go over the icon and see their pop-up
text.

I think a some people has the stable and fresh installed, some way to
differentiate it could be nice.

-- 
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 96479] Bookmark end node is destroyed by inserting text

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|| target:5.2.0

-- 
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: 4 commits - shell/source solenv/gdb sw/qa sw/source vcl/unx

2016-01-01 Thread Jan-Marek Glogowski
 shell/source/backends/kde4be/kde4access.cxx   |   10 +-
 shell/source/backends/kde4be/kde4backend.cxx  |2 
 solenv/gdb/libreoffice/sw.py  |   17 ++--
 sw/qa/extras/mailmerge/data/tdf92623.odt  |binary
 sw/qa/extras/mailmerge/mailmerge.cxx  |   51 +
 sw/qa/extras/uiwriter/uiwriter.cxx|   97 ++
 sw/source/core/txtnode/thints.cxx |7 -
 vcl/unx/kde4/KDE4FilePicker.cxx   |   13 +--
 vcl/unx/kde4/KDE4FilePicker.hxx   |6 -
 vcl/unx/kde4/KDEData.cxx  |2 
 vcl/unx/kde4/KDESalFrame.cxx  |8 +-
 vcl/unx/kde4/KDESalGraphics.cxx   |   10 +-
 vcl/unx/kde4/KDESalGraphics.hxx   |2 
 vcl/unx/kde4/KDEXLib.cxx  |   24 ++
 vcl/unx/kde4/KDEXLib.hxx  |6 -
 vcl/unx/kde4/VCLKDEApplication.cxx|4 -
 vcl/unx/kde4/main.cxx |2 
 vcl/unx/kde4/tst_exclude_posted_events.hxx|4 -
 vcl/unx/kde4/tst_exclude_socket_notifiers.hxx |6 -
 19 files changed, 209 insertions(+), 62 deletions(-)

New commits:
commit d9bceb34310f05acce886fe28e9e42433fd488c2
Author: Jan-Marek Glogowski 
Date:   Fri Dec 11 21:57:02 2015 +0100

tdf#84263 KDE4: unify includes

Use Qt submodule notation for Qt includes and also "correct"
some KDE headers AKA use <> notation for external headers.

Change-Id: I9457f75baae56514989800b016a11348a72a242b

diff --git a/shell/source/backends/kde4be/kde4access.cxx 
b/shell/source/backends/kde4be/kde4access.cxx
index bebb528..5d962b7 100644
--- a/shell/source/backends/kde4be/kde4access.cxx
+++ b/shell/source/backends/kde4be/kde4access.cxx
@@ -19,11 +19,11 @@
 
 #include "sal/config.h"
 
-#include "QFont"
-#include "QString"
-#include "kemailsettings.h"
-#include "kglobalsettings.h"
-#include "kprotocolmanager.h"
+#include 
+#include 
+#include 
+#include 
+#include 
 
 #include "com/sun/star/uno/Any.hxx"
 #include "cppu/unotype.hxx"
diff --git a/shell/source/backends/kde4be/kde4backend.cxx 
b/shell/source/backends/kde4be/kde4backend.cxx
index fadd5ae..d15f2d2 100644
--- a/shell/source/backends/kde4be/kde4backend.cxx
+++ b/shell/source/backends/kde4be/kde4backend.cxx
@@ -19,7 +19,7 @@
 
 #include "sal/config.h"
 
-#include "kapplication.h"
+#include 
 
 #include "boost/noncopyable.hpp"
 #include "com/sun/star/beans/Optional.hpp"
diff --git a/vcl/unx/kde4/KDE4FilePicker.cxx b/vcl/unx/kde4/KDE4FilePicker.cxx
index d1c718d..9aa4817 100644
--- a/vcl/unx/kde4/KDE4FilePicker.cxx
+++ b/vcl/unx/kde4/KDE4FilePicker.cxx
@@ -17,6 +17,8 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
+#include "KDE4FilePicker.hxx"
+
 #include 
 #include 
 #include 
@@ -36,7 +38,6 @@
 
 #include "osl/file.h"
 
-#include "KDE4FilePicker.hxx"
 #include "FPServiceInfo.hxx"
 #include "VCLKDEApplication.hxx"
 
@@ -49,10 +50,10 @@
 #include 
 #include 
 
-#include 
-#include 
-#include 
-#include 
+#include 
+#include 
+#include 
+#include 
 
 #undef Region
 
@@ -82,7 +83,7 @@ using namespace ::com::sun::star::uno;
 
 // helper functions
 
-#include 
+#include 
 
 namespace
 {
diff --git a/vcl/unx/kde4/KDE4FilePicker.hxx b/vcl/unx/kde4/KDE4FilePicker.hxx
index 65cb01a..ebc7a60 100644
--- a/vcl/unx/kde4/KDE4FilePicker.hxx
+++ b/vcl/unx/kde4/KDE4FilePicker.hxx
@@ -32,9 +32,9 @@
 
 #include 
 
-#include 
-#include 
-#include 
+#include 
+#include 
+#include 
 
 class KFileDialog;
 class QWidget;
diff --git a/vcl/unx/kde4/KDEData.cxx b/vcl/unx/kde4/KDEData.cxx
index b180695..71267a0 100644
--- a/vcl/unx/kde4/KDEData.cxx
+++ b/vcl/unx/kde4/KDEData.cxx
@@ -17,7 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#include 
+#include 
 #include 
 
 #undef Region
diff --git a/vcl/unx/kde4/KDESalFrame.cxx b/vcl/unx/kde4/KDESalFrame.cxx
index 25a401f..d02779a 100644
--- a/vcl/unx/kde4/KDESalFrame.cxx
+++ b/vcl/unx/kde4/KDESalFrame.cxx
@@ -17,8 +17,10 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#include 
-#include 
+#include 
+#include 
+#include 
+#include 
 
 #include 
 #include 
@@ -27,8 +29,6 @@
 #include 
 #include 
 #include 
-#include 
-#include 
 
 #undef Region
 
diff --git a/vcl/unx/kde4/KDESalGraphics.cxx b/vcl/unx/kde4/KDESalGraphics.cxx
index b8c98c3..a05f358 100644
--- a/vcl/unx/kde4/KDESalGraphics.cxx
+++ b/vcl/unx/kde4/KDESalGraphics.cxx
@@ -17,11 +17,11 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#include 
-#include 
-#include 
-#include 
-#include 
+#include 
+#include 
+#include 
+#include 
+#include 
 
 #include 
 #include 
diff --git a/vcl/unx/kde4/KDESalGraphics.hxx b/vcl/unx/kde4/KDESalGraphics.hxx
index b803c60..38dd169 100644
--- a/vcl/unx/kde4/KDESalGraphics.hxx
+++ b/vcl/unx/kde4/KDESalGraphics.hxx
@@ -25,7 +25,7 @@
 #include 
 #include 
 
-#include 
+#include 
 
 /** handles graphics drawings 

[Libreoffice-bugs] [Bug 84263] compile fails due to bad Qt include directives

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|| target:5.2.0

-- 
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 84263] compile fails due to bad Qt include directives

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

--- Comment #11 from Commit Notification 
 ---
Jan-Marek Glogowski committed a patch related to this issue.
It has been pushed to "master":

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

tdf#84263 KDE4: unify includes

It will be available in 5.2.0.

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

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

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


[Libreoffice-bugs] [Bug 96479] Bookmark end node is destroyed by inserting text

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

--- Comment #12 from Commit Notification 
 ---
Jan-Marek Glogowski committed a patch related to this issue.
It has been pushed to "master":

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

tdf#96479 workaround bookmark end pos handling...

It will be available in 5.2.0.

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

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

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


[Libreoffice-bugs] [Bug 92623] mail merge crashes between step 6 and 7

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

--- Comment #8 from Commit Notification 
 ---
Jan-Marek Glogowski committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=480e943f0100154fa82942db092ed1f66b76ef66

tdf#92623 MM: add unit test

It will be available in 5.2.0.

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

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

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


[Libreoffice-bugs] [Bug 96847] New: Android viewer crashes on every file (android 4.4.4)

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

Bug ID: 96847
   Summary: Android viewer crashes on every file (android 4.4.4)
   Product: LibreOffice
   Version: 5.2.0.0.alpha0+ Master
  Hardware: ARM
OS: Android
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Android Viewer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: r...@post.cz

Android viewer crashes on every file (android 4.4.4)

Version: 5.2.0.0.alpha0+
Build ID: 4c23184



steps:
open android viewer
open file in 
crash

tested with ods, odt, odp, doc


** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
Build fingerprint: 'Xiaomi/mocha/mocha:4.4.4/KTU84P/5.11.26:user/release-keys'
Revision: '0'
pid: 17764, tid: 17943, name: Thread-  >>> org.example.libreoffice <<<
signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr 
r0   r1 4617  r2 0006  r3 
r4 0006  r5 0002  r6 4617  r7 010c
r8 7ca2dd18  r9 7c93  sl 7c0664f0  fp 7ca2dcec
ip 71c87f28  sp 7ca2dc70  lr 400c3021  pc 400d1f88  cpsr 000f0010
d0  6e6f697470656378  d1  3a3a726174733a3a
d2  7065443a3a6f6e75  d3  45746e656d796f6c
d4  4026  d5  40478000
d6  4026  d7  000b
d8  3f803f80  d9  4391800044c9
d10 44f08000  d11 
d12   d13 
d14   d15 
d16 fffeae80  d17 3ff0
d18 4024  d19 75d93d5d75d93d5d
d20 75d93d4975d93d49  d21 75d93d4975d93d49
d22 75d93d3975d93d39  d23 75d93d3975d93d39
d24 005b0059  d25 005f005d
d26 0707070703030303  d27 017a0172
d28 014a005301420051  d29 015a005701520055
d30 016a005b01620059  d31 017a005f0172005d
scr 8010

backtrace:
#00  pc 00021f88  /system/lib/libc.so (tgkill+12)
#01  pc 0001301d  /system/lib/libc.so (pthread_kill+48)
#02  pc 00013231  /system/lib/libc.so (raise+10)
#03  pc 00011f67  /system/lib/libc.so
#04  pc 0002183c  /system/lib/libc.so (abort+4)
#05  pc 025915dc 
/data/app-lib/org.example.libreoffice-1/liblo-native-code.so

code around pc:
400d1f68 e8bd00f0 e3700a01 912fff1e e260 
400d1f78 ea006f79 e92d50f0 e3a07f43 ef00 
400d1f88 e8bd50f0 e3700a01 912fff1e e260 
400d1f98 ea006f71 e92d50f0 e3a070ee ef00 
400d1fa8 e8bd50f0 e3700a01 912fff1e e260 
400d1fb8 ea006f69  e1520003 8aab 
400d1fc8 f5d1f040 e92d4001 e352 1151 
400d1fd8 08bd8001 f5d1f000 f5d1f040 e3520020 
400d1fe8 3a8f e3520080 3a84 e2603000 
400d1ff8 e213303f 0a15 e0422003 e1b0cf83 
400d2008 44d1c001 44c0c001 24d1c001 24c0c001 
400d2018 24d1c001 24c0c001 e1b0ce83 5a01 
400d2028 f4a1030d f480031d 3a01 f421070d 
400d2038 f400071d e1b0cd83 5a01 f4210a0d 
400d2048 f4000a2d 3a01 f421020d f400023d 
400d2058 f5d1f080 f5d1f0c0 e3520902 3a04 

code around lr:
400c3000 447b4b13 42b3e010 4812d10e 44786a1e 
400c3010 ec90f7fb e9d8f00d 46224631 efaef00e 
400c3020 d00a3001 e00b2400 2b00681b 480ad1eb 
400c3030 44782403 ec7ef7fb f001e002 6804fa1b 
400c3040 fa18f001 46206005 bf00bd70 0003b3a2 
400c3050 0003b396 0003b38e 0003b36a bf7ef7ff 
400c3060 4a3e4b3d 43f0e92d 4606b08b 447b460d 
400c3070 6823589c 930946a1 f9fcf001 8000f8d0 
400c3080 d0482d00 f0104628 280ff80b d8444604 
400c3090 ffe4f7ff d1064286 4629200f e8a2f00d 
400c30a0 d03c2800 482ee02e f7fb4478 482debc2 
400c30b0 e0154478 d11342b0 482b6a06 f7fb4478 
400c30c0 4a2aec3a 46332120 447aa801 fc24f013 
400c30d0 a8012101 ff22f01a 46061c42 e011d104 
400c30e0 28006800 e02cd1e6 46294630 f00d4622 
400c30f0 1c43e8de d11e4607 f9bcf001 29046801

-- 
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


Possible easy hack

2016-01-01 Thread Chris Sherlock
Hi all, 

I think I have an old bug that could be used for an easy hack for new 
contributors. 

The bug is Bug 77667 - Remove gcc3 workaround where it could handle 
instantiated objects as parameters (found here: 
https://bugs.documentfoundation.org/show_bug.cgi?id=77667 
)

Basically, it’s a cleanup of code - for some reason a now ancient version of 
gcc had problems allowing an object to be created directly as a parameter - 
e.g. Draw(Point(), parameter2).

Could this be added as an easy hack, would it meet the criteria? If so, how 
does one do this?

Cheers,
Chris___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Johannes Hauf license statement

2016-01-01 Thread jan iversen
Thanks for your license statement.

I have added you to our wiki:
https://wiki.documentfoundation.org/Development/Developers

I you want help to get started or have any questions, then please contact me. I 
am here to help you (and others) getting their first patch submitted.

LibreOffice is a very big program and getting it build, setting up gerrit, and 
getting the first patch right, can be a bit challenging, therefore do not 
hesitate to email me if you want help.

rgds
Jan Iversen.

Sent from my iPad, please excuse any misspellings

Sent from my iPad, please excuse any misspellings 

> On 31 Dec 2015, at 17:14, Johannes Hauf  wrote:
> 
> All of my past & future contributions to LibreOffice may be
>licensed under the MPLv2/LGPLv3+ dual license.
> 
> Best regards ... Johannes
> ___
> 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


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

2016-01-01 Thread Michael Meeks
 include/vcl/opengl/OpenGLContext.hxx |1 +
 vcl/opengl/framebuffer.cxx   |1 +
 vcl/opengl/gdiimpl.cxx   |2 +-
 vcl/source/opengl/OpenGLContext.cxx  |   21 +
 vcl/source/opengl/OpenGLHelper.cxx   |3 ++-
 5 files changed, 26 insertions(+), 2 deletions(-)

New commits:
commit 370199fa0f92f29cb75ad50705c71cd871abb2d9
Author: Michael Meeks 
Date:   Thu Dec 31 22:12:59 2015 +

vcl: improve OpenGL debugging variously.

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

diff --git a/include/vcl/opengl/OpenGLContext.hxx 
b/include/vcl/opengl/OpenGLContext.hxx
index 6f5ba5f..b2a0f09 100644
--- a/include/vcl/opengl/OpenGLContext.hxx
+++ b/include/vcl/opengl/OpenGLContext.hxx
@@ -156,6 +156,7 @@ public:
 OpenGLFramebuffer* AcquireFramebuffer( const OpenGLTexture& rTexture );
 static voidReleaseFramebuffer( OpenGLFramebuffer* pFramebuffer );
 void UnbindTextureFromFramebuffers( GLuint nTexture );
+static boolIsTextureAttachedAnywhere( GLuint nTexture );
 
 void   ReleaseFramebuffer( const OpenGLTexture& rTexture );
 void   ReleaseFramebuffers();
diff --git a/vcl/opengl/framebuffer.cxx b/vcl/opengl/framebuffer.cxx
index 464662d..215eadf 100644
--- a/vcl/opengl/framebuffer.cxx
+++ b/vcl/opengl/framebuffer.cxx
@@ -29,6 +29,7 @@ OpenGLFramebuffer::OpenGLFramebuffer() :
 OpenGLFramebuffer::~OpenGLFramebuffer()
 {
 glDeleteFramebuffers( 1,  );
+VCL_GL_INFO( "Deleted framebuffer " << (int)mnId );
 CHECK_GL_ERROR();
 }
 
diff --git a/vcl/opengl/gdiimpl.cxx b/vcl/opengl/gdiimpl.cxx
index 21ff211..7c6664b 100644
--- a/vcl/opengl/gdiimpl.cxx
+++ b/vcl/opengl/gdiimpl.cxx
@@ -460,9 +460,9 @@ bool OpenGLSalGraphicsImpl::CheckOffscreenTexture()
 if( maOffscreenTex.GetWidth()  != GetWidth() ||
 maOffscreenTex.GetHeight() != GetHeight() )
 {
+VCL_GL_INFO( "re-size offscreen texture " << maOffscreenTex.Id() );
 mpContext->ReleaseFramebuffer( maOffscreenTex );
 maOffscreenTex = OpenGLTexture();
-VCL_GL_INFO( "re-size offscreen texture" );
 }
 }
 
diff --git a/vcl/source/opengl/OpenGLContext.cxx 
b/vcl/source/opengl/OpenGLContext.cxx
index 36ede42..d4397a1 100644
--- a/vcl/source/opengl/OpenGLContext.cxx
+++ b/vcl/source/opengl/OpenGLContext.cxx
@@ -1647,6 +1647,27 @@ void OpenGLContext::UnbindTextureFromFramebuffers( 
GLuint nTexture )
 }
 pFramebuffer = pFramebuffer->mpPrevFramebuffer;
 }
+
+// Lets just check that no other context has a framebuffer
+// with this texture - that would be bad ...
+assert( !IsTextureAttachedAnywhere( nTexture ) );
+}
+
+/// Method for debugging; check texture is not already attached.
+bool OpenGLContext::IsTextureAttachedAnywhere( GLuint nTexture )
+{
+ImplSVData* pSVData = ImplGetSVData();
+for( auto *pCheck = pSVData->maGDIData.mpLastContext; pCheck;
+   pCheck = pCheck->mpPrevContext )
+{
+for( auto pBuffer = pCheck->mpLastFramebuffer; pBuffer;
+  pBuffer = pBuffer->mpPrevFramebuffer )
+{
+if( pBuffer->IsAttached( nTexture ) )
+return true;
+}
+}
+return false;
 }
 
 void OpenGLContext::ReleaseFramebuffer( OpenGLFramebuffer* pFramebuffer )
diff --git a/vcl/source/opengl/OpenGLHelper.cxx 
b/vcl/source/opengl/OpenGLHelper.cxx
index bfd8110..32f2994 100644
--- a/vcl/source/opengl/OpenGLHelper.cxx
+++ b/vcl/source/opengl/OpenGLHelper.cxx
@@ -1012,7 +1012,8 @@ bool OpenGLWrapper::isVCLOpenGLEnabled()
 
 void OpenGLHelper::debugMsgStream(std::ostringstream const )
 {
-debugMsgPrint("%s", pStream.str().c_str());
+debugMsgPrint ("%x: %s", osl_getThreadIdentifier(nullptr),
+   pStream.str().c_str());
 }
 
 void OpenGLHelper::debugMsgPrint(const char *pFormat, ...)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96847] Android viewer crashes on every file (android 4.4.4)

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

raal  changed:

   What|Removed |Added

   Priority|medium  |high
 CC||r...@post.cz

-- 
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 96846] New: compatibility Problem with Microsoft Excel

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

Bug ID: 96846
   Summary: compatibility Problem with Microsoft Excel
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: donk...@web.de

User-Agent:   Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586
Build Identifier: LibreOffice 4.4.7.2

In Calc create a listbox that contains a lot of names in field F1:F10
With the listbox i will choose a Name and write it to field F5.
In calc it run's fine.
Then I save it with Microsoft Excel Format "xls".
When I open this file with Calc, instead of the Name I choose the Position of
the selected entry will be add to field F5. i.e. "4"

Reproducible: Always

Steps to Reproduce:
1.change again the properties of the list box at "Contents of the linked cell"
to "selected entry"
2.
3.
Actual Results:  
It run's fine. but when i reopen this xls sheet the "Contents of the linked
cell" is changed to "Position of the selected entry" again.


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


Reset User Profile?No

-- 
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 96846] compatibility Problem with Microsoft Excel

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

--- Comment #1 from UweB  ---
Created attachment 121671
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121671=edit
Example of this listbox problem

-- 
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: Hot tip for vim users: highlight spaces at end of lines

2016-01-01 Thread Chris Sherlock
Probably best to use:

augroup trailing_whitespace
   autocmd!
   autocmd BufWritePre *.c :%s/\s\+$//e
   autocmd BufWritePre *.h :%s/\s\+$//e
   autocmd BufWritePre *.cxx :%s/\s\+$//e
   autocmd BufWritePre *.hxx :%s/\s\+$//e
augroup END

> On 1 Jan 2016, at 4:53 AM, Daniel Robertson  wrote:
> 
> In light of Norbert's comment maybe add *.cxx *.hxx
> 
> augroup trailing_whitespace
>autocmd!
>autocmd BufWritePre *.cxx :%s/\s\+$//e
>autocmd BufWritePre *.hxx :%s/\s\+$//e
> augroup END
> 

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


Re: Remove ActiveX from LibreOffice

2016-01-01 Thread Chris Sherlock
Does this mean it’s no longer crashing?

Chris

> On 1 Jan 2016, at 3:31 PM, Chris Sherlock  wrote:
> 
> P.S. given that LO is crashing due to the ActiveX control borking, that bug 
> still needs troubleshooting. 
> 
> Mark, can you provide us with a backtrace when soffice dies, then add it to 
> the TDF bug report?
> 
> Chris
> 
> On Fri, Jan 1, 2016 at 3:17 PM, Chris Sherlock  > wrote:
> Unless I'm much mistaken, the ActiveX control does almost exactly the same 
> thing that the browser plugin did for Netscape. 
> 
> Given that in Edge Microsoft will not be supporting ActiveX plugins any more, 
> isn't the justification for removing the ActiveX control the same as for 
> remove the NSAPI plugin?
> 
> Incidentally, in the bug references, if I had to hazard a guess, the ocx 
> needs to be registered manually. 
> 
> Chris
> 
> On Fri, Jan 1, 2016 at 3:13 AM, Thorsten Behrens  > wrote:
> Mark Hung wrote:
> > A valid use case is to read the uploaded documents on SharePoint server in
> > intranet.
> > Eventually it obsoletes, but I prefer to consider this when facing some
> > directly related event.
> >  ( i.e EOL of Windows7, new toolchain ceasing ActiveX support, or security
> > issue which lacks of engineer resource ) .
> >
> Yeah. Unless this is not working anywhere anymore, let's keep it for
> the while - seems it's useful at least in some cases. And the cost of
> maintaining it is currently near zero, no?
> 
> Cheers,
> 
> -- Thorsten
> 
> ___
> 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


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

2016-01-01 Thread Chris Sherlock
 vcl/inc/outfont.hxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 38e6383009aba9ff779ad9d0b4d9c94ed2bce347
Author: Chris Sherlock 
Date:   Fri Jan 1 19:54:43 2016 +1100

vcl: Regression from a74a04f98

Very silly mistake - I put in an else, where it should have been an
entirely new if statement... this will have broken font mapping :(

Change-Id: I026b1f3808cb3a3793467fa3b2670bf9b56e3c5c

diff --git a/vcl/inc/outfont.hxx b/vcl/inc/outfont.hxx
index 70c2854..54d6986 100644
--- a/vcl/inc/outfont.hxx
+++ b/vcl/inc/outfont.hxx
@@ -88,7 +88,8 @@ public:
 {
 maMapNames += ";";
 }
-else
+
+if (aMapName.getLength() == 0)
 {
 SAL_WARN("vcl.fonts", "New map name is empty");
 return;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96843] No input focus after starting an application

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

Óvári  changed:

   What|Removed |Added

 CC||ovar...@gmail.com

--- Comment #1 from Óvári  ---
I have also experienced this on Windows 8.1 64-bit; however, it is not
consistently reproducible on our computer.

-- 
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: vcl/opengl

2016-01-01 Thread Michael Meeks
 vcl/opengl/texture.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 7120906cf47de8c5bc73de1a4846fc97fd2979dc
Author: Michael Meeks 
Date:   Thu Dec 31 22:35:38 2015 +

vcl: un-bind render-buffer after setup & add debug.

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

diff --git a/vcl/opengl/texture.cxx b/vcl/opengl/texture.cxx
index f2439a1..83aa3d4 100644
--- a/vcl/opengl/texture.cxx
+++ b/vcl/opengl/texture.cxx
@@ -134,12 +134,15 @@ GLuint ImplOpenGLTexture::AddStencil()
 assert( mnOptStencil == 0 );
 
 glGenRenderbuffers( 1,  );
+CHECK_GL_ERROR();
 glBindRenderbuffer( GL_RENDERBUFFER, mnOptStencil );
 CHECK_GL_ERROR();
 VCL_GL_INFO( "Allocate stencil " << mnWidth << " x " << mnHeight );
 glRenderbufferStorage( GL_RENDERBUFFER, GL_STENCIL_INDEX,
mnWidth, mnHeight );
 CHECK_GL_ERROR();
+glBindRenderbuffer(GL_RENDERBUFFER, 0);
+CHECK_GL_ERROR();
 
 return mnOptStencil;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96833] Remote Files UI dialog has various small issues (lost values in editing, wrong TCP port number management...)

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

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet  ---
About the port, I submitted a patch here:
https://gerrit.libreoffice.org/#/c/21032/
It allows until 5 characters but doesn't control if it's over 65535 or not.

-- 
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 48887] FILESAVE: Save as HTML in Writer, even linked images are embedded and link details are lost from the document (comment 24 comment 30 )

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

Luke  changed:

   What|Removed |Added

   Severity|major   |critical

--- Comment #47 from Luke  ---
I’ve updated the priority since saving as HTML is a basic feature of any office
suite and the triaging documents suggest pairing critical with highest. 

David, 
I understand your frustration and agree with you that this is a serious issue.
Until this bug is fixed the only way for users to generate proper web pages
with their word processor is to use OpenOffice one of the propriety options
like MS Word. Unfortunately, Joel is correct in that TDF does not employ any
programmers and depends on the community of volunteers to fix issues like this.
If you work in academia, maybe someone in the CS department would be interested
in working on this. Another option is to start a crowd funding campaign at
Freedom Sponsors  or Bounty Source. 

Joel,
Would you be willing to bring this up at the next ESC? If not, I will try to.

-- 
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 96611] Changing between full/half screen the viewing position is not restored

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

--- Comment #2 from szots...@gmail.com ---
I'll try to reproduce this when 5.1 comes out. Anyway, my working environment
is an openSUSE Leap 42.1 x64 with 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 83667] AutoFormat is not automatically applied to newly inserted / adjusted (via deletion) table rows

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

--- Comment #4 from Axel Bock  ---
It seems this is actually intentional, in the way that LO assumes that every
table has a separately formatted bottom row (the "sum" row I call it, cause in
all the previews it's labeled "sum" :). 

This makes sense if the row _is_ actually there, but LO has no way of actually
knowing or determining that this is the case for the table which is about to be
formatted. 

a possible "fix" is a dialog which opens when you hit "auto format", which has 
a check box which says "separately formatted bottom row" (or "sum row" or
anything similar), given LO wants to keep the ability to color the last row
separately.

the same would apply for the header row, but it is more safe to assume that
this one is always present ...

all this aside, as a general observation I think the table handling in LO can
be improved in a *LOT* of ways, with this being a pretty useful step in the
process.

-- 
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 46817] Screen font anti-aliasing does not work (Windows)

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

--- Comment #18 from ship...@gmail.com ---
Created attachment 121672
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121672=edit
Jaggies

-- 
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 95861] Writer Web -- rework HTML export and import filters to use HTML 5 and inline CSS3 styles

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

--- Comment #3 from David Tardon  ---
(In reply to V Stuart Foote from comment #2)
> @David T., *
> 
> >Should libreoffice even aspire to be an HTML editor?
> 
> It is not an aspiration, rather seeking to restore that capability.

But do we want to restore that capability? Does libreoffice need an internal
HTML editor? (Note I am not talking about HTML import/export.)

> The HTML Web component remains implemented--and its "source view" mode was a
> pretty convenient WYSIWYG editor for HTML 4 and inline style I believe back
> to StarOffice era.
> 
> Are you suggesting we strip it all out and concentrate on XLST export only? 

I suggest we strip the whole Web module out. The HTML import/export should
stay. (As C++ code--XSLT is IMHO completely unsuitable for the heavy processing
that is needed to convert ODF to HTML.)

> 
> While that is probably valid, I'd like to think there is still a need for
> visual HTML 5 markup with inline CSS3 and presenting that markup as WYSIWYG.

I don't disagree with that. What I disagree with is the need to have that HTML
5 WYSIWYG editor inside 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 48887] FILESAVE: Save as HTML in Writer, even linked images are embedded and link details are lost from the document (comment 24 comment 30 )

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

--- Comment #48 from V Stuart Foote  ---
(In reply to David Spring from comment #46)
> I can confirm that Save As HTML is handled correctly in the latest version
> of Open Office. So this is strictly a problem with LibreOffice.

Your point?

> It is not a
> question of whether web browsers can handle embedded images. It is whether
> web authors can Save As a (properly formatted) HTML document to work with
> Sigil in the creation of Epub documents. 

Sorry, but that is clearly *your* use case.

As an alternative for anyone similarly concerned, use an appropriate extension
and export to ePub directly. The eLAIX project's extension (
http://elaix.org/features.html ) does quite nicely with complex documents on
5.0, 5.1 and 5.2/master--which I just verified.  Also verified that Sigil has
few concerns with resulting ePUB, which passes most of the FlightCrew
validation tests.

> For the time being, until the
> developers of LibreOffice can realize the magnitude of this error I will
> have to tell my students to use Open Office instead of LibreOffice. 

You are free to do so. Or work around as above.

> I am
> deeply concerned that some members of this forum do not realize what a major
> -and even critical - problem it is to not have a properly working "Save As
> HTML document" function.

And?

This is not a "forum", this is Bugzilla issue tracker for LibreOffice QA and
Development. Opinions, and senseless assertions "the sky is falling" , have
little value here. Please refrain.

-- 
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 46817] Screen font anti-aliasing does not work (Windows)

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

ship...@gmail.com changed:

   What|Removed |Added

Version|3.5.0 release   |4.4.7.2 release

-- 
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: vcl/inc vcl/source

2016-01-01 Thread Chris Sherlock
 vcl/inc/PhysicalFontFace.hxx   |   16 +++-
 vcl/source/font/PhysicalFontFace.cxx   |   32 ++--
 vcl/source/font/PhysicalFontFamily.cxx |3 ++-
 3 files changed, 27 insertions(+), 24 deletions(-)

New commits:
commit b890a0ed02968589029fedf1854be83f1ffe8600
Author: Chris Sherlock 
Date:   Fri Jan 1 22:38:29 2016 +1100

Revert "vcl: Get rid of FontMatchStatus structure"

This reverts commit 60676b3b376d5f3f6fb29fa68c34117c2149bbec.

The FontMapStatus structure is passed as a reference to save the
search state outside of the search loop in
PhysicalFontFamily::FindBestFontFace.

This *looked* like it would be an easy win, evidently not! Back to
the drawing board.

Change-Id: Icc7078543e50bc34221127d8df055f056e249cdb

diff --git a/vcl/inc/PhysicalFontFace.hxx b/vcl/inc/PhysicalFontFace.hxx
index 4c3704c..bb0b900 100644
--- a/vcl/inc/PhysicalFontFace.hxx
+++ b/vcl/inc/PhysicalFontFace.hxx
@@ -25,9 +25,19 @@
 #include "outfont.hxx"
 
 class ImplFontEntry;
+struct FontMatchStatus;
 class FontSelectPattern;
 class PhysicalFontFamily;
 
+struct FontMatchStatus
+{
+public:
+int mnFaceMatch;
+int mnHeightMatch;
+int mnWidthMatch;
+const OUString* mpTargetStyleName;
+};
+
 // - PhysicalFontFace -
 
 // TODO: no more direct access to members
@@ -68,11 +78,7 @@ public:
 boolIsScalable() const  { return (mnHeight == 
0); }
 boolCheckMagic( int n ) const   { return (n == 
mnMagic); }
 
-boolIsBetterMatch( const FontSelectPattern& rFSD,
-   const OUString* pTargetStyleName,
-   int nStatusFaceMatch=0,
-   int nStatusHeightMatch=0,
-   int nStatusWidthMatch=0 ) const;
+boolIsBetterMatch( const FontSelectPattern&, 
FontMatchStatus& ) const;
 sal_Int32   CompareWithSize( const PhysicalFontFace& ) const;
 sal_Int32   CompareIgnoreSize( const PhysicalFontFace& ) const;
 virtual~PhysicalFontFace() {}
diff --git a/vcl/source/font/PhysicalFontFace.cxx 
b/vcl/source/font/PhysicalFontFace.cxx
index 5383e36..c7c7ee2 100644
--- a/vcl/source/font/PhysicalFontFace.cxx
+++ b/vcl/source/font/PhysicalFontFace.cxx
@@ -84,11 +84,7 @@ sal_Int32 PhysicalFontFace::CompareWithSize( const 
PhysicalFontFace& rOther ) co
 return 0;
 }
 
-bool PhysicalFontFace::IsBetterMatch( const FontSelectPattern& rFSD,
-  const OUString* pTargetStyleName,
-  int nStatusFaceMatch,
-  int nStatusHeightMatch,
-  int nStatusWidthMatch ) const
+bool PhysicalFontFace::IsBetterMatch( const FontSelectPattern& rFSD, 
FontMatchStatus& rStatus ) const
 {
 int nMatch = 0;
 
@@ -96,8 +92,8 @@ bool PhysicalFontFace::IsBetterMatch( const 
FontSelectPattern& rFSD,
 if( rFontName.equalsIgnoreAsciiCase( GetFamilyName() ) )
 nMatch += 24;
 
-if( pTargetStyleName
-&&  GetStyleName().equalsIgnoreAsciiCase( *pTargetStyleName ) )
+if( rStatus.mpTargetStyleName
+&&  GetStyleName().equalsIgnoreAsciiCase( *rStatus.mpTargetStyleName ) )
 nMatch += 12;
 
 if( (rFSD.GetPitch() != PITCH_DONTKNOW) && (rFSD.GetPitch() == GetPitch()) 
)
@@ -202,31 +198,31 @@ bool PhysicalFontFace::IsBetterMatch( const 
FontSelectPattern& rFSD,
 }
 }
 
-if( nStatusFaceMatch > nMatch )
+if( rStatus.mnFaceMatch > nMatch )
 return false;
-else if( nStatusFaceMatch < nMatch )
+else if( rStatus.mnFaceMatch < nMatch )
 {
-nStatusFaceMatch  = nMatch;
-nStatusHeightMatch= nHeightMatch;
-nStatusWidthMatch = nWidthMatch;
+rStatus.mnFaceMatch  = nMatch;
+rStatus.mnHeightMatch= nHeightMatch;
+rStatus.mnWidthMatch = nWidthMatch;
 return true;
 }
 
 // when two fonts are still competing prefer the
 // one with the best matching height
-if( nStatusHeightMatch > nHeightMatch )
+if( rStatus.mnHeightMatch > nHeightMatch )
 return false;
-else if( nStatusHeightMatch < nHeightMatch )
+else if( rStatus.mnHeightMatch < nHeightMatch )
 {
-nStatusHeightMatch= nHeightMatch;
-nStatusWidthMatch = nWidthMatch;
+rStatus.mnHeightMatch= nHeightMatch;
+rStatus.mnWidthMatch = nWidthMatch;
 return true;
 }
 
-if( nStatusWidthMatch > nWidthMatch )
+if( rStatus.mnWidthMatch > nWidthMatch )
 return false;
 
-nStatusWidthMatch = nWidthMatch;
+rStatus.mnWidthMatch = nWidthMatch;
 return true;
 }
 
diff --git 

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

2016-01-01 Thread Michael Meeks
 vcl/opengl/gdiimpl.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3ac975dded6df870969f68ec00e8f3097c5146bf
Author: Michael Meeks 
Date:   Fri Jan 1 12:38:37 2016 +

Fix drawTransformedBitmap for NULL pAlphaBitmap #2.

Change-Id: Ie4d03a01c557e93a3ba3b5925896e38ed07f9a27

diff --git a/vcl/opengl/gdiimpl.cxx b/vcl/opengl/gdiimpl.cxx
index 7c6664b..c39d25e 100644
--- a/vcl/opengl/gdiimpl.cxx
+++ b/vcl/opengl/gdiimpl.cxx
@@ -1880,7 +1880,7 @@ bool OpenGLSalGraphicsImpl::drawTransformedBitmap(
 const SalBitmap* pAlphaBitmap)
 {
 assert(dynamic_cast());
-assert(dynamic_cast(pAlphaBitmap));
+assert(!pAlphaBitmap || dynamic_cast(pAlphaBitmap));
 
 OpenGLZone aZone;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Hot tip for vim users: highlight spaces at end of lines

2016-01-01 Thread Daniel Robertson

> You could also run that :substitute on :w and never have to worry about
> trailing whitespace ever again :)
>
> autocmd BufWritePre * :%s/\s\+$//e

Great tip! Just remember if you place a `autocmd` in your vimrc to place
it in a `augroup` and run `autocmd!`. Otherwise vim will create multiple
`autocmd`s for this each time vimrc is sourced. If I'm correct something
like the following will avoid that.

E.g.

augroup trailing_whitespace
autocmd!
autocmd BufWritePre * :%s/\s\+$//e
augroup END

Also for non-vim users, the git book has an incredible section on
configuring git to help with whitespace issues.

http://www.git-scm.com/book/en/v2/Customizing-Git-Git-Configuration#Formatting-and-Whitespace

- Daniel


signature.asc
Description: Digital signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Hot tip for vim users: highlight spaces at end of lines

2016-01-01 Thread Daniel Robertson
In light of Norbert's comment maybe add *.cxx *.hxx

augroup trailing_whitespace
autocmd!
autocmd BufWritePre *.cxx :%s/\s\+$//e
autocmd BufWritePre *.hxx :%s/\s\+$//e
augroup END



signature.asc
Description: Digital signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 95573] EXTENSION MANAGER - freeze / hang when attempting to install extensions on OSX 10.11, installation confirmation dialog not displayed

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

Michael Meeks  changed:

   What|Removed |Added

 CC||nthieb...@gmail.com,
   ||tima...@gmail.com

--- Comment #12 from Michael Meeks  ---
Relatively few of us have Macs unfortunately; making this hard to test. I
suspect some threading / event madness - provoked by the new main-loop work.
Can you get a dbgutil build and get a log file with SAL_LOG=1 set - or at least
the vcl.schedule log domain (both warn and info) is what I'm most interested in
=)

Norbert, and/or Andras - is that something that's easy to get ?

-- 
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 96613] Lightproof extension is broken

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

--- Comment #2 from szots...@gmail.com ---
After cloning "git://anongit.freedesktop.org/libreoffice/lightproof" and issued
"python3 make.py src/hu_HU/hu_HU.cfg", the created "lightproof_hu-1.5.oxt" is
fully functional in Writer.

Thank you for the tip!

I already CC'd Németh László (the author of the extension) here along with the
report, but I don't know whether his e-mail address still works.

-- 
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 96679] Add Ability to Assign Keyboard Shortcuts for All Font Effects

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

Michael Meeks  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |---
 Ever confirmed|0   |1

--- Comment #7 from Michael Meeks  ---
Hi guys; so - tentatively re-opening this; Heiko - thanks for your feedback,
let me comment on that:

> The most relevant formattings are available,

agreed.

> adding more shortcuts by default is difficult since we run out of keys, 

agreed - and it makes people type these things by mistake ;-)

> individual customization is possible and

This is the piece I think you missed; so - if I want to configure a key to do
one of the things that Joel mentions eg. 'Embossed' or 'small caps' - how can I
do that ?

A superficial scan of tools->customize->keyboard suggests that this is very far
from trivial. It is perhaps possible for experts to write macros for those -
but I'd (personally) struggle to do that myself ;-) so ...

As such, I suspect that this enhancement comes down to creating and translating
a new set of UNO commands to apply those effects; much as I like styles - I
think that's a reasonably valid request - surely ?

-- 
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 96679] Add Ability to Assign Keyboard Shortcuts for All Font Effects

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

Michael Meeks  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |---
 Ever confirmed|0   |1

--- Comment #7 from Michael Meeks  ---
Hi guys; so - tentatively re-opening this; Heiko - thanks for your feedback,
let me comment on that:

> The most relevant formattings are available,

agreed.

> adding more shortcuts by default is difficult since we run out of keys, 

agreed - and it makes people type these things by mistake ;-)

> individual customization is possible and

This is the piece I think you missed; so - if I want to configure a key to do
one of the things that Joel mentions eg. 'Embossed' or 'small caps' - how can I
do that ?

A superficial scan of tools->customize->keyboard suggests that this is very far
from trivial. It is perhaps possible for experts to write macros for those -
but I'd (personally) struggle to do that myself ;-) so ...

As such, I suspect that this enhancement comes down to creating and translating
a new set of UNO commands to apply those effects; much as I like styles - I
think that's a reasonably valid request - surely ?

-- 
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 96308] FILEOPEN RTF incorrect tab spacing on table

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

Miklos Vajna  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |vmik...@collabora.co.uk
   |desktop.org |

-- 
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 96308] FILEOPEN RTF incorrect tab spacing on table

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

Miklos Vajna  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

--- Comment #6 from Miklos Vajna  ---
This is probably a regression from my b9c1a9b9aa41dbbb6bed0c77f4370ab6105c7fb1,
I'll take care of it.

-- 
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 46817] Screen font anti-aliasing does not work (Windows)

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

--- Comment #19 from ship...@gmail.com ---
Hi 

I am new here. I am failing to get my text to anti-alias.

I have recently downloaded LibreOffice 4.4.7.2
Build ID: f3153a8b245191196a4b6b9abd1d0da16eead600
Locale: en_GB

Here is my hardware:
   Motherboard: Intel DP55WB   (MA TX)
   Processor:   Intel Core I5 750 2.66GHz
   RAM: 8GB  = (2GB 1066 DDR3 Memory) x4 modules
   Hard disk:   SSD 300GB, "INTEL SSDSA2CW300G3 ATA Device"
   Graphics card:   ATI Radeon HD 5770 - S/n: 7 78656 05291 8
   Operating system:Windows7 Pro 64Bit


My Windows “Clear Type” is on.

And in LibreOffice Writer
Tools > Options > View > Graphics Output > “Use anti-aliasing” is ticked.

Without anti-aliasing text starts to become hard to read and looks basically
hideous. There is absolutely no way I am going to tolerate that in a word
processor. Even my web browsers – ALL my browers – are doing better that 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-bugs] [Bug 96482] cannot access columns of a tablecontrol in design mode

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

David Tardon  changed:

   What|Removed |Added

 CC||martinb...@gmail.com

--- Comment #9 from David Tardon  ---
*** Bug 96845 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 96845] Unable to edit contents of tables

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

David Tardon  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||dtar...@redhat.com
 Resolution|--- |DUPLICATE

--- Comment #1 from David Tardon  ---


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

-- 
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 96787] Autocorrection of (c) to copyright symbol persists after removal from autocorrection list

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

--- Comment #10 from tommy27  ---
are you sure you don't have any other special character software in your Linux
computer that may interfere with LibreOffice?

otherwise I have no more ideas...

I can't reproduce your bug under Windows 8.1 x64
using LibO 5.0.3.1 and recent 5.2.0.0 alpha

another Linux tester is needed to replicate your issue.

-- 
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: vcl/generic vcl/inc vcl/quartz vcl/source vcl/win

2016-01-01 Thread Chris Sherlock
 vcl/generic/glyphs/gcach_ftyp.cxx|2 +-
 vcl/generic/glyphs/gcach_ftyp.hxx|1 -
 vcl/generic/print/genpspgraphics.cxx |3 +--
 vcl/inc/PhysicalFontFace.hxx |   12 
 vcl/quartz/salgdi.cxx|2 +-
 vcl/source/font/PhysicalFontFace.cxx |3 +--
 vcl/source/gdi/pdffontcache.cxx  |6 --
 vcl/source/gdi/pdffontcache.hxx  |   14 ++
 vcl/source/gdi/pdfwriter_impl.cxx|   28 ++--
 vcl/source/gdi/pdfwriter_impl.hxx|   19 ++-
 vcl/win/gdi/salgdi3.cxx  |2 +-
 11 files changed, 43 insertions(+), 49 deletions(-)

New commits:
commit 264e6c04afaff96dda6cd510c1da90bb519a1f66
Author: Chris Sherlock 
Date:   Fri Jan 1 17:52:50 2016 +1100

vcl: remove poor-man's RTTI in PhysicalFontFace

The *only* things relying on the in-built magic number are PDFFontCache
and PDFWriterImpl. PDFWriterImpl::emitBuiltinFont has as its first
parameter a const PhysicalFontFace*, but this is only called upon by
PDFWriterImpl::emitFonts, which instantiates an ImplPdfBuiltinFontData
object from a built-in font map... so basically it is always guaranteed
to get a ImplPdfBuiltinFontData object. ImplPdfBuiltinFontData derives
from PhysicalFontFace, so to prevent the need to check the class being
used is a ImplPdfBuiltinFontData, just make emitBuiltinFont require as
it's first parameter ImplPdfBuiltinFontData!

Unfortunately, we can't get around RTTI completely, because
PDFFontCache::FontIdentifier requires a way of distinguishing between
two different PhysicalFontFaces...

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

diff --git a/vcl/generic/glyphs/gcach_ftyp.cxx 
b/vcl/generic/glyphs/gcach_ftyp.cxx
index f5b4a0d..a570548 100644
--- a/vcl/generic/glyphs/gcach_ftyp.cxx
+++ b/vcl/generic/glyphs/gcach_ftyp.cxx
@@ -420,7 +420,7 @@ ServerFont* FreetypeManager::CreateFont( const 
FontSelectPattern& rFSD )
 }
 
 ImplFTSFontData::ImplFTSFontData( FtFontInfo* pFI, const ImplFontAttributes& 
rDFA )
-:   PhysicalFontFace( rDFA, IFTSFONT_MAGIC ),
+:   PhysicalFontFace( rDFA ),
 mpFtFontInfo( pFI )
 {
 SetBuiltInFontFlag( false );
diff --git a/vcl/generic/glyphs/gcach_ftyp.hxx 
b/vcl/generic/glyphs/gcach_ftyp.hxx
index 1fe995a..327 100644
--- a/vcl/generic/glyphs/gcach_ftyp.hxx
+++ b/vcl/generic/glyphs/gcach_ftyp.hxx
@@ -150,7 +150,6 @@ class ImplFTSFontData : public PhysicalFontFace
 {
 private:
 FtFontInfo* mpFtFontInfo;
-enum { IFTSFONT_MAGIC = 0x1F150A1C };
 
 public:
 ImplFTSFontData( FtFontInfo*, const 
ImplFontAttributes& );
diff --git a/vcl/generic/print/genpspgraphics.cxx 
b/vcl/generic/print/genpspgraphics.cxx
index 207e414..f687ba28 100644
--- a/vcl/generic/print/genpspgraphics.cxx
+++ b/vcl/generic/print/genpspgraphics.cxx
@@ -542,7 +542,6 @@ void GenPspGraphics::invert(long,long,long,long,SalInvert)
 class ImplPspFontData : public PhysicalFontFace
 {
 private:
-enum { PSPFD_MAGIC = 0xb5bf01f0 };
 sal_IntPtr  mnFontId;
 
 public:
@@ -553,7 +552,7 @@ public:
 };
 
 ImplPspFontData::ImplPspFontData( const psp::FastPrintFontInfo& rInfo )
-:   PhysicalFontFace( GenPspGraphics::Info2FontAttributes(rInfo), PSPFD_MAGIC 
),
+:   PhysicalFontFace( GenPspGraphics::Info2FontAttributes(rInfo) ),
 mnFontId( rInfo.m_nID )
 {}
 
diff --git a/vcl/inc/PhysicalFontFace.hxx b/vcl/inc/PhysicalFontFace.hxx
index bb0b900..06a8fe2 100644
--- a/vcl/inc/PhysicalFontFace.hxx
+++ b/vcl/inc/PhysicalFontFace.hxx
@@ -66,33 +66,29 @@ public:
 class VCL_PLUGIN_PUBLIC PhysicalFontFace : public ImplFontAttributes
 {
 public:
+virtual~PhysicalFontFace() {}
+
 // by using an PhysicalFontFace object as a factory for its corresponding
 // ImplFontEntry an ImplFontEntry can be extended to cache device and
 // font instance specific data
 virtual ImplFontEntry*  CreateFontInstance( FontSelectPattern& ) const = 0;
+virtual PhysicalFontFace* Clone() const = 0;
 
 int GetHeight() const   { return mnHeight; }
 int GetWidth() const{ return mnWidth; }
 virtual sal_IntPtr  GetFontId() const = 0;
-int GetFontMagic() const{ return mnMagic; }
 boolIsScalable() const  { return (mnHeight == 
0); }
-boolCheckMagic( int n ) const   { return (n == 
mnMagic); }
 
 boolIsBetterMatch( const FontSelectPattern&, 
FontMatchStatus& ) const;
 sal_Int32   CompareWithSize( const PhysicalFontFace& ) const;
 sal_Int32   CompareIgnoreSize( const PhysicalFontFace& ) const;
- 

[Libreoffice-bugs] [Bug 87573] Numbering changed to bold when save as DOC

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

Joel Madero  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected
 CC||jmadero@gmail.com

--- Comment #6 from Joel Madero  ---
56260020c5caba00fbd063db5554b452c06116dc is the first bad commit
commit 56260020c5caba00fbd063db5554b452c06116dc
Author: Bjoern Michaelsen 
Date:   Wed Oct 16 14:50:19 2013 +

source-hash-34847f1cf7538c333e9b8700eb4012ae358644a6

commit 34847f1cf7538c333e9b8700eb4012ae358644a6
Author: Kohei Yoshida 
AuthorDate: Tue Nov 6 19:17:19 2012 -0500
Commit: Kohei Yoshida 
CommitDate: Thu Mar 14 15:35:48 2013 -0400

Re-order the header includes. Make sure column.hxx comes first.

Change-Id: I9f93724c4e0b565a9148d0893feda9e82109bff7

:100644 100644 34b251be3d2dc267e2c4b31bf4ade889be54ebd3
a476eec2644ce3d840a3525e60685c10b546a0b1 Mccache.log
:100644 100644 b8dc7ff128d9a6772510f291499d3e5f8034e4cf
989a6f8490d3dc9b6552faaa5d3338ef11d96ca2 Mcommitmsg
:100644 100644 75414764833c884979140a22c1fc3fa33e78
c3034c36e1045c28850073be1b5eeeab7948599e Mdev-install.log
:100644 100644 3a778b46f34f3bcf0d3c70c3479270986888f4c9
75d1590884ea160e3916623015bf2d8e8f3f4d63 Mmake.log
:04 04 15d374b168b90165da4d70957e5ac1da58e05d89
82cb1a6aa93c11182f124401ee3b61d154ac25e3 Mopt


# bad: [423a84c4f7068853974887d98442bc2a2d0cc91b]
source-hash-c15927f20d4727c3b8de68497b6949e72f9e6e9e
# good: [65fd30f5cb4cdd37995a33420ed8273c0a29bf00]
source-hash-d6cde02dbce8c28c6af836e2dc1120f8a6ef9932
git bisect start 'latest' 'oldest'
# bad: [e02439a3d6297a1f5334fa558ddec5ef4212c574]
source-hash-6b8393474974d2af7a2cb3c47b3d5c081b550bdb
git bisect bad e02439a3d6297a1f5334fa558ddec5ef4212c574
# good: [8f4aeaad2f65d656328a451154142bb82efa4327]
source-hash-1885266f274575327cdeee9852945a3e91f32f15
git bisect good 8f4aeaad2f65d656328a451154142bb82efa4327
# good: [9995fae0d8a24ce31bcb5e9cd0459b69cfbf7a02]
source-hash-8600bc24bbc9029e92bea6102bff2921bc10b33e
git bisect good 9995fae0d8a24ce31bcb5e9cd0459b69cfbf7a02
# bad: [8ad82bc1416a07501651e8d96fe268e47d3931d3]
source-hash-13821254f88d2c5488fba9fe6393dcf4ae810db4
git bisect bad 8ad82bc1416a07501651e8d96fe268e47d3931d3
# bad: [238338bc4111eb82429ea47384d4012bcd7cdc3e]
source-hash-b6ba04639b9922f6717f79ac4be215e09691d7a9
git bisect bad 238338bc4111eb82429ea47384d4012bcd7cdc3e
# good: [89dc8a802d1625e0efd88ba0fb720b22be87f3f0]
source-hash-da03bb1ee6a69d2f4fef4c3ca0adc0ba9588bd19
git bisect good 89dc8a802d1625e0efd88ba0fb720b22be87f3f0
# good: [4d8d18a8c871d6803af99b706f780eb6e65c7a5d]
source-hash-d4779887636fa9ab5b477f3436bcd3728a3e30ba
git bisect good 4d8d18a8c871d6803af99b706f780eb6e65c7a5d
# bad: [ec6ba885d9d4142060cebdef210d26f0b2ef5045]
source-hash-1ce6d6d4133865d9616e12228be2c04cbba1976c
git bisect bad ec6ba885d9d4142060cebdef210d26f0b2ef5045
# bad: [d42e14f46fbe1bfc716dc90d28001a0e32afa3d5]
source-hash-82b6c4884d7b2fbb3d45980785cebba7a159fb10
git bisect bad d42e14f46fbe1bfc716dc90d28001a0e32afa3d5
# bad: [56260020c5caba00fbd063db5554b452c06116dc]
source-hash-34847f1cf7538c333e9b8700eb4012ae358644a6
git bisect bad 56260020c5caba00fbd063db5554b452c06116dc
# first bad commit: [56260020c5caba00fbd063db5554b452c06116dc]
source-hash-34847f1cf7538c333e9b8700eb4012ae358644a6

-- 
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 82194] Document layout corrupted when two columns is used

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

Joel Madero  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, filter:docx
 CC||jmadero@gmail.com
 Whiteboard||interoperability

--- Comment #10 from Joel Madero  ---
Just FYI on this bibisect - there is a separate bug that comes up during the
bibisect that might be related. A different page break appears.

This bibisect focuses on the page break immediately after the double column.

5b4693bb72eca5e38e3f56d036bca425c9a21b37 is the first bad commit
commit 5b4693bb72eca5e38e3f56d036bca425c9a21b37
Author: Bjoern Michaelsen 
Date:   Sun Dec 9 11:49:31 2012 +

source-hash-e3633f60b349022994e291aa3d1a0c90c3403b2e

commit e3633f60b349022994e291aa3d1a0c90c3403b2e
Author: Stephan Bergmann 
AuthorDate: Wed May 16 09:32:51 2012 +0200
Commit: Stephan Bergmann 
CommitDate: Wed May 16 09:36:38 2012 +0200

fdo#46074 fdo#49948 Ignore corrupted items in Recent Documents

...following up on 4ccb4bda483eb548eb6efb5e2f1952f094522320 "fdo#46074
Ignore
corrupted items in Recent Documents" with another problematic scenario
found
with fdo#49948.

Change-Id: I3e7c803813f09c1f031defc2c18cfab6732b1621

:100644 100644 5aa1dfc68ecb9ac57316a995424b2d3683cb4774
aa42f04f09d97d387333244ba505d2fd3c3086c2 Mautogen.log
:100644 100644 72da0ea5e9ec1223cb456558a2e0254561faa98c
1829a020e51322ed60e655809575a93edd3b9032 Mccache.log
:100644 100644 5ef3324ce1c257155c9e095fdeb7d912b2681ae1
795d8ec3e2d59c5f0a85099dac7224954a57c4f2 Mcommitmsg
:100644 100644 8b14489bddefe04fcfaecb0be901837505c64b67
5e870f27775bef1e12288b413b09a4052c414870 Mdev-install.log
:100644 100644 68ac6a90c73f1f7c8776a70772a40ae1ce41e13d
78b57ac998248d89343563f89455faeeea3f57a1 Mmake.log
:04 04 8b906c6863615fd1253b393b35b18a883201b310
e793bfa8b661936460e69be1537f15a7e99d3289 Mopt


# bad: [423a84c4f7068853974887d98442bc2a2d0cc91b]
source-hash-c15927f20d4727c3b8de68497b6949e72f9e6e9e
# good: [65fd30f5cb4cdd37995a33420ed8273c0a29bf00]
source-hash-d6cde02dbce8c28c6af836e2dc1120f8a6ef9932
git bisect start 'latest' 'oldest'
# bad: [e02439a3d6297a1f5334fa558ddec5ef4212c574]
source-hash-6b8393474974d2af7a2cb3c47b3d5c081b550bdb
git bisect bad e02439a3d6297a1f5334fa558ddec5ef4212c574
# bad: [8f4aeaad2f65d656328a451154142bb82efa4327]
source-hash-1885266f274575327cdeee9852945a3e91f32f15
git bisect bad 8f4aeaad2f65d656328a451154142bb82efa4327
# good: [369369915d3582924b3d01c9b01167268ed38f3b]
source-hash-45295f3cdceb4c289553791071b5d7f4962d2ec4
git bisect good 369369915d3582924b3d01c9b01167268ed38f3b
# bad: [6fce03a944bf50e90cd31e2d559fe8705ccc993e]
source-hash-47e4a33a6405eb1b5186027f55bd9cb99b0c1fe7
git bisect bad 6fce03a944bf50e90cd31e2d559fe8705ccc993e
# good: [8a39227e344637eb7154a10ac825d211e64d584c]
source-hash-f5080ebb7022c9f5d7d7fdca4fe9d19f9bb8cabf
git bisect good 8a39227e344637eb7154a10ac825d211e64d584c
# bad: [e4c742a9e244bd7ebeabc50c90182df28ac3daaf]
source-hash-c52ba433491afbca70aa1977a624c795bdd5b9ef
git bisect bad e4c742a9e244bd7ebeabc50c90182df28ac3daaf
# good: [96a055e15ee7171a2973a3c3a7307dd9867f]
source-hash-9ca02a663c3eee2698eb360dd5dc7afb1951e743
git bisect good 96a055e15ee7171a2973a3c3a7307dd9867f
# bad: [e87a0055deae2c9e25ae1d1a365cec8418b785ce]
source-hash-67ff63988f3b8eef2cc2b5bdf917918b93c3f070
git bisect bad e87a0055deae2c9e25ae1d1a365cec8418b785ce
# bad: [5b4693bb72eca5e38e3f56d036bca425c9a21b37]
source-hash-e3633f60b349022994e291aa3d1a0c90c3403b2e
git bisect bad 5b4693bb72eca5e38e3f56d036bca425c9a21b37
# good: [d101b9946a6a04e65e3923038503436c790b7e12]
source-hash-18e6e7d929c2be209407ed2e56b8ec4d5e6c4900
git bisect good d101b9946a6a04e65e3923038503436c790b7e12
# first bad commit: [5b4693bb72eca5e38e3f56d036bca425c9a21b37]
source-hash-e3633f60b349022994e291aa3d1a0c90c3403b2e

-- 
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 94106] l10n Italian(Italy) does not recognize the colon as delimiter when entering time values

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

Wolfgang Jäger  changed:

   What|Removed |Added

  Component|LibreOffice |Localization

-- 
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: Contributing to LibreOffice

2016-01-01 Thread Jan-Marek Glogowski
Hi Akash,

Am 01.01.2016 um 17:34 schrieb Akash B:
> I'm interested in contribution to LibreOffice. I'm comfortable with
> C++, C++11, Python and Java. I'd like some guidance as to how to contribute
> to LibreOffice.

Have a look at

https://wiki.documentfoundation.org/Development

especially the "Getting Started with Development" section.

In case you have further questions or need help feel free to ask on the
mailing list. For faster / more interactive replies I suggest you to
join #libreoffice-dev IRC channel on Freenode (see links in the above
Development wiki).

> Regards,

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


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

2016-01-01 Thread Chris Sherlock
 vcl/inc/outfont.hxx |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

New commits:
commit 17d6876c5b2a194bf24614feeaf58314089eb7fb
Author: Chris Sherlock 
Date:   Sat Jan 2 04:13:32 2016 +1100

vcl: move comment to correct spot (cheers Norbert)

Change-Id: If8da668cba96364189de3b0aa89b43110cc41f9b
Reviewed-on: https://gerrit.libreoffice.org/21034
Reviewed-by: Chris Sherlock 
Tested-by: Chris Sherlock 

diff --git a/vcl/inc/outfont.hxx b/vcl/inc/outfont.hxx
index 54d6986..09e7bd2 100644
--- a/vcl/inc/outfont.hxx
+++ b/vcl/inc/outfont.hxx
@@ -39,11 +39,10 @@ class ConvertChar;
 class OutputDevice;
 class Size;
 
-// device independent font properties
-
 class ImplFontAttributes
 {
 public:
+// device independent font functions
 const OUString& GetFamilyName() const   { return maFamilyName; }
 FontFamily  GetFamilyType() const   { return meFamily; }
 const OUString& GetStyleName() const{ return maStyleName; }
@@ -104,6 +103,7 @@ public:
 voidSetOrientationFlag( bool bCanRotate )   { 
mbOrientation = bCanRotate; }
 
 private:
+// device independent variables
 OUStringmaFamilyName;   // Font Family Name
 OUStringmaStyleName;// Font Style Name
 FontWeight  meWeight;   // Weight Type
@@ -114,7 +114,6 @@ private:
 boolmbSymbolFlag;   // Is font a symbol?
 
 // device dependent variables
-
 OUStringmaMapNames; // List of family name aliases 
separated with ';'
 int mnQuality;  // Quality (used when similar fonts 
compete)
 boolmbOrientation;  // true: physical font can be rotated
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96850] New: FORMATTING: send-to-back does not work for images

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

Bug ID: 96850
   Summary: FORMATTING: send-to-back does not work for images
   Product: LibreOffice
   Version: 5.0.2.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: erikso...@123mail.org

Embedding an image into the text flow obscures any overlapped areas (using the
"wrap through" overlay option). The layering functions "back one" and "send to
back" do not work in this case.

Note that I haven't tried how transparent pixels, as supported by different
image formats, behave in this case.

-- 
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 96850] FORMATTING: send-to-back does not work for embedded images

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

Erik Sohns  changed:

   What|Removed |Added

Summary|FORMATTING: send-to-back|FORMATTING: send-to-back
   |does not work for images|does not work for embedded
   ||images

-- 
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: vcl/inc

2016-01-01 Thread Stephan Bergmann
 vcl/inc/outfont.hxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 820eeba6772a356cf57b9d1f4d114122f6a63abb
Author: Stephan Bergmann 
Date:   Fri Jan 1 19:14:43 2016 +0100

loplugin:passstuffbyref

Change-Id: I5d15ab7f8d9b7cb3ff0124f20c840dd2a285b400

diff --git a/vcl/inc/outfont.hxx b/vcl/inc/outfont.hxx
index 09e7bd2..92f01e3 100644
--- a/vcl/inc/outfont.hxx
+++ b/vcl/inc/outfont.hxx
@@ -80,8 +80,8 @@ public:
 voidSetQuality( int nQuality )  { mnQuality = 
nQuality; }
 voidIncreaseQualityBy( int nQualityAmount ) { mnQuality += 
nQualityAmount; }
 voidDecreaseQualityBy( int nQualityAmount ) { mnQuality -= 
nQualityAmount; }
-voidSetMapNames( OUString aMapNames )   { maMapNames = 
aMapNames; }
-voidAddMapName( OUString aMapName )
+voidSetMapNames( OUString const & aMapNames ) { maMapNames = 
aMapNames; }
+voidAddMapName( OUString const & aMapName )
 {
 if( maMapNames.getLength() > 0 )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


  1   2   >