[Libreoffice-bugs] [Bug 100050] UI / VIEWING: Tango icons for saving flicker while saving

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100050

f5d50...@opayq.com changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #3 from f5d50...@opayq.com ---
(In reply to Maxim Monastirsky from comment #2)
> There is certainly one problem that I see, is that the save button sometimes
> enters the "Save As" mode while saving. That's an unfortunate side effect of
> my latest save button refactoring, which was meant to fix another bug (a
> functional one, not something "cosmetic" as this one). I'm not sure by now
> how to fix it, still considering different options...
> 
> But - that shouldn't make it pixelate, and I'm unable to reproduce that part
> under Fedora 24, so no idea why that happens.
> 
> f5d505f9/raal: Does the "Save As" button pixelate as well? (It's hidden by
> default. Make it visible to test.) Also - Is disabling OpenGL makes any
> difference?

The "save as" button pixelates as well. Enabling or disabling OpenGL makes no
difference.

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


[Libreoffice-bugs] [Bug 42374] Opening a specific PDF file causes libreoffice to hang

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42374

--- Comment #12 from vv...@yandex.ru ---
It is the same problem.
Background from page #43 is imported as 6 tiny images.

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


[Libreoffice-bugs] [Bug 97087] Timers and idles should have programmer comprehensible, unique names

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97087

--- Comment #15 from Aparajita Haldar  ---
(In reply to Muhammet Kara from comment #13)
> Some tips for the ones who would like to work on this bug:
> 
> - Make sure all the names you give are unique
> - You don't need to add "Idles" to all names of idles because they can be
> easily identified from the scheduler
> - Be careful about the order of initializers in constructors. Initialization
> must be done in the same order as the member variables was declared in the
> header file.
> - You may review the previous patches to see more.

Hello!
I'd like to get involved with the open source community. Would this fix be a
reasonable place to make my first contribution?

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


[Libreoffice-commits] core.git: starmath/inc starmath/source

2016-06-09 Thread Takeshi Abe
 starmath/inc/cursor.hxx|7 ---
 starmath/source/cursor.cxx |   19 ---
 2 files changed, 16 insertions(+), 10 deletions(-)

New commits:
commit 1fc4af8695ae0ffb7590198e0d3791a19084a99b
Author: Takeshi Abe 
Date:   Wed Jun 8 16:31:30 2016 +0900

Pass it by const ref

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

diff --git a/starmath/inc/cursor.hxx b/starmath/inc/cursor.hxx
index 9554fc7..cd36b4e 100644
--- a/starmath/inc/cursor.hxx
+++ b/starmath/inc/cursor.hxx
@@ -306,9 +306,9 @@ private:
 /** Clone list of nodes in a clipboard (creates a deep clone) */
 static SmNodeList* CloneList(SmClipboard );
 
-/** Find an iterator pointing to the node in pLineList following aCaretPos
+/** Find an iterator pointing to the node in pLineList following rCaretPos
  *
- * If aCaretPos::pSelectedNode cannot be found it is assumed that it's in 
front of pLineList,
+ * If rCaretPos.pSelectedNode cannot be found it is assumed that it's in 
front of pLineList,
  * thus not an element in pLineList. In this case this method returns an 
iterator to the
  * first element in pLineList.
  *
@@ -316,7 +316,8 @@ private:
  * reason you should beaware that iterators to elements in pLineList may 
be invalidated, and
  * that you should call PatchLineList() with this iterator if no action is 
taken.
  */
-static SmNodeList::iterator FindPositionInLineList(SmNodeList* pLineList, 
SmCaretPos aCaretPos);
+static SmNodeList::iterator FindPositionInLineList(SmNodeList* pLineList,
+   const SmCaretPos& 
rCaretPos);
 
 /** Patch a line list after modification, merge SmTextNode, remove 
SmPlaceNode etc.
  *
diff --git a/starmath/source/cursor.cxx b/starmath/source/cursor.cxx
index dab3dc4..bae4778 100644
--- a/starmath/source/cursor.cxx
+++ b/starmath/source/cursor.cxx
@@ -340,17 +340,22 @@ void SmCursor::InsertNodes(SmNodeList* pNewNodes){
 FinishEdit(pLineList, pLineParent, nParentIndex, PosAfterInsert);
 }
 
-SmNodeList::iterator SmCursor::FindPositionInLineList(SmNodeList* pLineList, 
SmCaretPos aCaretPos) {
+SmNodeList::iterator SmCursor::FindPositionInLineList(SmNodeList* pLineList,
+  const SmCaretPos& 
rCaretPos)
+{
 //Find iterator for position
 SmNodeList::iterator it;
 for(it = pLineList->begin(); it != pLineList->end(); ++it){
-if(*it == aCaretPos.pSelectedNode){
-if((*it)->GetType() == NTEXT){
+if(*it == rCaretPos.pSelectedNode)
+{
+if((*it)->GetType() == NTEXT)
+{
 //Split textnode if needed
-if(aCaretPos.Index > 0){
-SmTextNode* pText = 
static_cast(aCaretPos.pSelectedNode);
-OUString str1 = pText->GetText().copy(0, aCaretPos.Index);
-OUString str2 = pText->GetText().copy(aCaretPos.Index);
+if(rCaretPos.Index > 0)
+{
+SmTextNode* pText = 
static_cast(rCaretPos.pSelectedNode);
+OUString str1 = pText->GetText().copy(0, rCaretPos.Index);
+OUString str2 = pText->GetText().copy(rCaretPos.Index);
 pText->ChangeText(str1);
 ++it;
 //Insert str2 as new text node
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100301] New: Change to mojibake

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100301

Bug ID: 100301
   Summary: Change to mojibake
   Product: QA Tools
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kashif.r...@study.beds.ac.uk

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

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


[Libreoffice-bugs] [Bug 100149] LibreOffice crashes when spreadsheet or document is closed

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100149

--- Comment #7 from Dan Loomis  ---
Thank you for the clarification.   I have not enabled any accessibility
technology on this system.

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


[Libreoffice-bugs] [Bug 95595] pictures not stable at their positions / blank pages inserted

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95595

--- Comment #11 from Cor Nouws  ---
(In reply to Buovjaga from comment #9)
> New per comment 8.

This issue is not clearly described.

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-2' - include/sfx2 sfx2/source

2016-06-09 Thread Akshay Deep
 include/sfx2/templateabstractview.hxx|2 +-
 include/sfx2/templatedefaultview.hxx |2 ++
 include/sfx2/templatelocalview.hxx   |2 +-
 sfx2/source/control/templateabstractview.cxx |   13 +++--
 sfx2/source/control/templatedefaultview.cxx  |9 +
 sfx2/source/control/templatelocalview.cxx|3 ++-
 sfx2/source/dialog/backingwindow.cxx |1 +
 sfx2/source/doc/doc.hrc  |2 +-
 sfx2/source/doc/doc.src  |4 
 sfx2/source/doc/templatedlg.cxx  |4 ++--
 10 files changed, 34 insertions(+), 8 deletions(-)

New commits:
commit 6c782fe1568d1b3a5f968b3696ba1bf8ad6d914c
Author: Akshay Deep 
Date:   Wed Jun 8 05:22:13 2016 +0530

GSoC: Templates: Display titles and category as tooltips

Tooltip text:
1. Template Manager:
 All Categories: Title + Category
 Category: Title
2. Start center: Title

Conflicts:
sfx2/source/doc/doc.hrc

Conflicts:
sfx2/source/doc/templatedlg.cxx

Reviewed-on: https://gerrit.libreoffice.org/26040
Tested-by: Jenkins 
Reviewed-by: Akshay Deep 

Conflicts:
sfx2/source/control/templateabstractview.cxx
sfx2/source/doc/doc.src

Change-Id: I0bfd5e78120f13338f88c1b0617df3a057cce02f
Reviewed-on: https://gerrit.libreoffice.org/26139
Reviewed-by: Akshay Deep 
Tested-by: Jenkins 

diff --git a/include/sfx2/templateabstractview.hxx 
b/include/sfx2/templateabstractview.hxx
index a5d4a75..b211b57 100644
--- a/include/sfx2/templateabstractview.hxx
+++ b/include/sfx2/templateabstractview.hxx
@@ -76,7 +76,7 @@ public:
 void insertItem (const TemplateItemProperties );
 
 // Fill view with new item list
-void insertItems (const std::vector , 
bool isRegionSelected = true);
+void insertItems (const std::vector , 
bool isRegionSelected = true, bool bShowCategoryInTooltip = false);
 
 // Fill view with template folders thumbnails
 virtual void Populate () { }
diff --git a/include/sfx2/templatedefaultview.hxx 
b/include/sfx2/templatedefaultview.hxx
index 6d2fcdf..4438536 100644
--- a/include/sfx2/templatedefaultview.hxx
+++ b/include/sfx2/templatedefaultview.hxx
@@ -19,6 +19,8 @@ public:
 
 virtual void reload() override;
 
+virtual void showAllTemplates () override;
+
 virtual void KeyInput( const KeyEvent& rKEvt ) override;
 
 void createContextMenu();
diff --git a/include/sfx2/templatelocalview.hxx 
b/include/sfx2/templatelocalview.hxx
index f342645..9d72af7 100644
--- a/include/sfx2/templatelocalview.hxx
+++ b/include/sfx2/templatelocalview.hxx
@@ -92,7 +92,7 @@ public:
 
 virtual bool renameItem(ThumbnailViewItem* pItem, const OUString& 
sNewTitle) override;
 
-private:
+protected:
 
 SfxDocumentTemplates *mpDocTemplates;
 std::vector maRegions;
diff --git a/sfx2/source/control/templateabstractview.cxx 
b/sfx2/source/control/templateabstractview.cxx
index 4e57585..6c7fcae 100644
--- a/sfx2/source/control/templateabstractview.cxx
+++ b/sfx2/source/control/templateabstractview.cxx
@@ -130,7 +130,7 @@ void TemplateAbstractView::insertItem(const 
TemplateItemProperties )
 Invalidate();
 }
 
-void TemplateAbstractView::insertItems(const 
std::vector , bool isRegionSelected)
+void TemplateAbstractView::insertItems(const 
std::vector , bool isRegionSelected, bool 
bShowCategoryInTooltip)
 {
 mItemList.clear();
 
@@ -149,7 +149,16 @@ void TemplateAbstractView::insertItems(const 
std::vector
 pChild->mnRegionId = pCur->nRegionId;
 pChild->maTitle = pCur->aName;
 pChild->setPath(pCur->aPath);
-pChild->setHelpText(pCur->aRegionName);
+
+if(!bShowCategoryInTooltip)
+pChild->setHelpText(pCur->aName);
+else
+{
+OUString sHelpText = SfxResId(STR_TEMPLATE_TOOLTIP).toString();
+sHelpText = (sHelpText.replaceFirst("$1", 
pCur->aName)).replaceFirst("$1", pCur->aRegionName);
+pChild->setHelpText(sHelpText);
+}
+
 pChild->maPreview1 = pCur->aThumbnail;
 
 if(IsDefaultTemplate(pCur->aPath))
diff --git a/sfx2/source/control/templatedefaultview.cxx 
b/sfx2/source/control/templatedefaultview.cxx
index d6ffb63..789ef16 100644
--- a/sfx2/source/control/templatedefaultview.cxx
+++ b/sfx2/source/control/templatedefaultview.cxx
@@ -48,6 +48,15 @@ void TemplateDefaultView::reload()
 set_width_request(mnTextHeight + mnItemMaxSize + 2*mnItemPadding);
 }
 
+void TemplateDefaultView::showAllTemplates()
+{
+mnCurRegionId = 0;
+maCurRegionName.clear();
+
+insertItems(maAllTemplates, false);
+maOpenRegionHdl.Call(nullptr);
+}
+
 void TemplateDefaultView::KeyInput( const KeyEvent& rKEvt )
 {
 ThumbnailView::KeyInput(rKEvt);
diff --git 

[Libreoffice-bugs] [Bug 100184] OpenGL-related crash upon exit

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100184

--- Comment #15 from Aron Budea  ---
(In reply to Tor Lillqvist from comment #14)
> So I wonder how Aron here even saw any indication of a crash? Or is it so
> that if I would have actually had a document open when exiting, I would have
> seen error messages?

I had no document open upon exit.
I still have the aforementioned dbgutil build from master when it was still
exhibiting this behavior (~2 weeks ago), is there anything useful I could check
about this inexplicably showing crash? (for me, this crash never got
suppressed, unlike the crash at the start, for which I now opened bug 100300)

Tor, Tomaz, thanks for looking into this, and for the fix! I'll verify it when
RC1 comes.

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


[Libreoffice-bugs] [Bug 100284] Cannot install 5.2.0 in Ubuntu 16.04

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100284

--- Comment #6 from Dan Dascalescu  ---
`sudo dpkg -i --force-overwrite *.deb` did the trick - thanks!

Should I update the wiki?

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


[Libreoffice-bugs] [Bug 75650] Formulas with boolean result change cell format while other formulas keep it

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75650

Aron Budea  changed:

   What|Removed |Added

 CC||h7ro...@gmail.com

--- Comment #6 from Aron Budea  ---
*** Bug 100220 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 100220] Result of the Combination IF() and AND()

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100220

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #5 from Aron Budea  ---
Reopened bug 75650. Closing this as duplicate.

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

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


[Libreoffice-bugs] [Bug 75650] Formulas with boolean result change cell format while other formulas keep it

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75650

Aron Budea  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression
 Status|RESOLVED|NEW
Version|4.2.1.1 release |4.1.0.4 release
 Resolution|WORKSFORME  |---

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


[Libreoffice-bugs] [Bug 75650] Formulas with boolean result change cell format while other formulas keep it

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75650

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu

--- Comment #5 from Aron Budea  ---
Created attachment 125583
  --> https://bugs.documentfoundation.org/attachment.cgi?id=125583=edit
Boolean formula to numeric, cell format not updated

The reason why it could not be reproduced is the "Now delete A3 value (DEL key)
and enter formula" step. If the text is copied from a neutral source, like this
bug report, you will see the formatting updated to number.

The formula in A3 either has to be changed for the issue to show:
1. via Input line,
2. by deleting A3, and pasting "=MAX(A1:A2)*1000" that was copied from Calc
itself (another field),
3. by deleting A3, and writing "=MAX(A1:A2)*1000" manually.

Attaching a screenshot where:
-A3 has "=IF(A1>A2)", B3 has "=MAX(A1:A2)*1000"
-A4-A7 had "=IF(A1>A2)" initially

-A4 is updated by copying B3's Input line over its Input line
-A5 is updated by pressing Delete, and pasting B3's Input line
-A6 is updated by pressing Delete, and entering the formula manually
-A7 is updated by pressing Delete, and pasting the formula copied from this bug
report

Result: A4-A6 shows TRUE, A7 shows 2000.
Expected: A4-A7 should show 2000.

Confirmed in 4.1.0.4 and 5.2.0.0.beta2.
Not confirmed in 4.0.0.3 => regression

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


[Libreoffice-bugs] [Bug 95797] Current display of the document moves away (jumps) when saving or when autorecovery information is saved

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95797

--- Comment #9 from sebalis  ---
I can reproduce this issue on version 5.1.3.2 (Arch Linux build 1).

How anyone could previously argue that this might not be a bug is absolutely
incredible to me. It is a very annoying bug. I fail to see how saving
(regardless whether “really saving” via Ctrl+S or auto-saving recovery
information) should make the view jump. Surely restoring the view position is
what should happen when a file is opened, not when it’s saved.

I see a certain logic in the fact that the view is currently restored to the
cursor position after opening, even if the view was shifted away from that
cursor position at the time of saving. But if the file remains open after
shifting the view, the natural expectation is that the view should only jump
back if something happens at the cursor position: e.g. arrow keys are pressed
to move the cursor, text is entered, or a previously selected word is formatted
(to, say, bold) via the appropriate keyboard shortcut (Ctrl+B) or by clicking a
button in a toolbar. What makes this particularly annoying is that auto-save
should trigger the jump. I may want to review parts of a document deliberately
before saving *and* keep the cursor where it is, using the scrollbar for the
review. If I am constantly moved back to the cursor, that becomes impossible.

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


[Libreoffice-bugs] [Bug 100300] New: Crash upon start

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100300

Bug ID: 100300
   Summary: Crash upon start
   Product: LibreOffice
   Version: 5.2.0.0.beta2
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: framework
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@caesar.elte.hu

With the second half of bug 100184 resolved, only the first crash remains. It's
a "hidden" crash, LibreOffice recovers, but there's an (empty) Document
Recovery dialog, and the crash reporter also activates.

Steps:
-delete user profile
-start Writer

=> possible result 1: Writer starts fine, UI render is default => rinse and
repeat from start (this happens very rarely for me, usually on the second try I
get the crash)

=> possible result 2: after splash screen, an empty LibreOfficeDev Document
Recovery dialog is shown

-press OK
-Crash Report dialog appears, press Send Crash Report (
http://crashreport.libreoffice.org/stats/crash_details/b9ee7997-479b-47fa-8cea-c725dcc28f72
), then Close
-LibreOfficeDev main application appears, UI render is GL


This one doesn't seem to be directly related to OpenGL, maybe to the sidebar
instead. There's no crash if the main application is run, only when
Writer/Calc/etc. is started.

However, if there's no crash, UI render is always default, and if there is a
crash, it's always GL. So it might still be connected to GL somehow.

OS: Windows 7, x64
LO version: 5.2.0.0.beta2, x86

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


[Libreoffice-bugs] [Bug 97269] Linux portable edition

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97269

--- Comment #16 from Bastián Díaz  ---
(In reply to Christian Lohmaier from comment #15)
> *THIS* is about portable, continuing ramblings about *OTHER* bugs won't
> change anything.
> 

Both reports are closely related and may be unique solution. A portable
application improves the user experience obtaining the latest version,
installation/update of software using new technologies. 
If you do not understand the relationship of both issues it is not my problem.

> And you can write bullshit about "dependency problems" as much as you want,
> but fact is that LibreOffice as provided by TDF doesn't have any external
> dependencies that would cause problems on any Linux distro.
> 

Come on... You said that if a user requires easy installation of LibreOffice,
should use the methods provided by each distribution. The problem is that
distributions do not always offer the latest versions of LibreOffice for
technical reasons ... is not bullshit as you say and does not solve the
problem.

On the other hand, TDF only provides binaries are packaged in two formats and
installation is not very intuitive for the end user. A portable binary solves
this problem, in addition to use in other more exotic places, such as a flash
drive or external HDD.

> And furthermore: A portable version would have the very same dependencies.
> 

Of course, no one disputes that point. However, a package like AppImage or
Flatpak includes the necessary dependencies to run even on very old systems and
multiple distribucione easily.

> If you want a different way to install LibreOffice, you're commenting *ON
> THE WRONG BUG*!

Sorry, here we are discussing the feasibility of using a portable version of
LibreOffice for Linux user. By definition, a portable application is one that
can be run without prior installation, easy run and "portable".

LibreOffice developers have already chosen alternative installation system for
Linux user using Flatpak. Now the point of discussion is whether Flatpak is
"portable", I think not and you seem to agree.

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


[Libreoffice-bugs] [Bug 93529] [META] VCL/OpenGL tracker bug for 5.0+

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93529

Aron Budea  changed:

   What|Removed |Added

 Depends on||100279


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100279
[Bug 100279] OpenGL enabled: Calc Input Line is displaying block characters
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 100279] OpenGL enabled: Calc Input Line is displaying block characters

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100279

Aron Budea  changed:

   What|Removed |Added

 Blocks||93529


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=93529
[Bug 93529] [META] VCL/OpenGL tracker bug for 5.0+
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 100233] Wrong Windows version reported in the About window in Windows 10

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100233

--- Comment #3 from Aron Budea  ---
It wouldn't be a bug if the dialog reported 6.2, but 6.19 is not a valid
version number.

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


[Libreoffice-bugs] [Bug 100240] Windows version stopped being notified of updates

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100240

Aron Budea  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #6 from Aron Budea  ---
Christian fixed this earlier today. I checked, update is correctly offered with
versions 5.1.0.3 and 5.1.2.2. 5.1.3.2 is reported as up-to-date.

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-2' - sfx2/source

2016-06-09 Thread Akshay Deep
 sfx2/source/doc/templatedlg.cxx |   61 
 1 file changed, 31 insertions(+), 30 deletions(-)

New commits:
commit 048ca1825e9213dba6b94045900d4099a3cfa75c
Author: Akshay Deep 
Date:   Wed Jun 8 06:35:35 2016 +0530

GSoC: Template Manager: Improve "Rename Category" functionality

Change-Id: I0b32179133eca5cf01df6d581a25843da40a8a7e
Reviewed-on: https://gerrit.libreoffice.org/26043
Tested-by: Jenkins 
Reviewed-by: Samuel Mehrbrodt 
Reviewed-on: https://gerrit.libreoffice.org/26137
Reviewed-by: Akshay Deep 
Tested-by: Akshay Deep 

diff --git a/sfx2/source/doc/templatedlg.cxx b/sfx2/source/doc/templatedlg.cxx
index c440095..ab0da91 100644
--- a/sfx2/source/doc/templatedlg.cxx
+++ b/sfx2/source/doc/templatedlg.cxx
@@ -377,6 +377,7 @@ void SfxTemplateManagerDlg::fillFolderComboBox()
 mpCBFolder->InsertEntry(aFolderNames[i], i+1);
 }
 mpCBFolder->SelectEntryPos(0);
+mpActionMenu->HideItem(MNI_ACTION_RENAME_FOLDER);
 mpLocalView->ShowTooltips(true);
 }
 
@@ -386,6 +387,7 @@ void SfxTemplateManagerDlg::getApplicationSpecificSettings()
 {
 mpCBApp->SelectEntryPos(0);
 mpCBFolder->SelectEntryPos(0);
+mpActionMenu->HideItem(MNI_ACTION_RENAME_FOLDER);
 
mpCurView->filterItems(ViewFilter_Application(getCurrentApplicationFilter()));
 mpLocalView->showAllTemplates();
 return;
@@ -416,6 +418,7 @@ void SfxTemplateManagerDlg::getApplicationSpecificSettings()
 
 
mpCurView->filterItems(ViewFilter_Application(getCurrentApplicationFilter()));
 mpCBFolder->SelectEntryPos(0);
+mpActionMenu->HideItem(MNI_ACTION_RENAME_FOLDER);
 mpLocalView->showAllTemplates();
 }
 
@@ -460,6 +463,7 @@ void SfxTemplateManagerDlg::readSettings ()
 {
 //show all categories
 mpCBFolder->SelectEntryPos(0);
+mpActionMenu->HideItem(MNI_ACTION_RENAME_FOLDER);
 mpLocalView->ShowTooltips(true);
 mpLocalView->showAllTemplates();
 }
@@ -467,6 +471,7 @@ void SfxTemplateManagerDlg::readSettings ()
 {
 mpCBFolder->SelectEntry(aLastFolder);
 mpLocalView->showRegion(aLastFolder);
+mpActionMenu->ShowItem(MNI_ACTION_RENAME_FOLDER);
 }
 }
 
@@ -496,6 +501,7 @@ IMPL_LINK_NOARG_TYPED(SfxTemplateManagerDlg, 
SelectApplicationHdl, ListBox&, voi
 
mpCurView->filterItems(ViewFilter_Application(getCurrentApplicationFilter()));
 mpCurView->showAllTemplates();
 mpCBFolder->SelectEntryPos(0);
+mpActionMenu->HideItem(MNI_ACTION_RENAME_FOLDER);
 mpCurView->ShowTooltips(true);
 }
 
@@ -512,11 +518,13 @@ IMPL_LINK_NOARG_TYPED(SfxTemplateManagerDlg, 
SelectRegionHdl, ListBox&, void)
 {
 mpLocalView->showAllTemplates();
 mpLocalView->ShowTooltips(true);
+mpActionMenu->HideItem(MNI_ACTION_RENAME_FOLDER);
 }
 else
 {
 mpLocalView->showRegion(sSelectedRegion);
 mpLocalView->ShowTooltips(false);
+mpActionMenu->ShowItem(MNI_ACTION_RENAME_FOLDER);
 }
 }
 
@@ -732,6 +740,7 @@ IMPL_LINK_NOARG_TYPED(SfxTemplateManagerDlg, 
ImportClickHdl, Button*, void)
 mpLocalView->ShowTooltips(true);
 mpCBApp->SelectEntryPos(0);
 mpCBFolder->SelectEntryPos(0);
+mpActionMenu->HideItem(MNI_ACTION_RENAME_FOLDER);
 }
 
 IMPL_STATIC_LINK_NOARG_TYPED(SfxTemplateManagerDlg, LinkClickHdl, Button*, 
void)
@@ -928,6 +937,7 @@ IMPL_LINK_NOARG_TYPED(SfxTemplateManagerDlg, 
SearchUpdateHdl, Edit&, void)
 {
 OUString sLastFolder = mpCBFolder->GetSelectEntry();
 mpLocalView->showRegion(sLastFolder);
+mpActionMenu->ShowItem(MNI_ACTION_RENAME_FOLDER);
 }
 }
 }
@@ -1225,41 +1235,31 @@ void SfxTemplateManagerDlg::OnCategoryNew()
 
 void SfxTemplateManagerDlg::OnCategoryRename()
 {
-ScopedVclPtrInstance< SfxTemplateCategoryDialog > aDlg;
-aDlg->SetCategoryLBEntries(mpLocalView->getFolderNames());
-aDlg->HideNewCategoryOption();
-aDlg->SetText(SfxResId(STR_CATEGORY_RENAME).toString());
-aDlg->SetSelectLabelText(SfxResId(STR_CATEGORY_SELECT).toString());
+OUString sCategory = mpCBFolder->GetSelectEntry();
+ScopedVclPtrInstance< InputDialog > 
dlg(SfxResId(STR_INPUT_NEW).toString(),this);
 
-if(aDlg->Execute() == RET_OK)
-{
-OUString sCategory = aDlg->GetSelectedCategory();
-ScopedVclPtrInstance< InputDialog > 
dlg(SfxResId(STR_INPUT_NEW).toString(),this);
+dlg->SetEntryText(sCategory);
+int ret = dlg->Execute();
 
-dlg->SetEntryText(sCategory);
-int ret = dlg->Execute();
+if (ret)
+{
+OUString aName = dlg->GetEntryText();
 
-if (ret)
+if(mpLocalView->renameRegion(sCategory, aName))
 {
-OUString aName = 

[Libreoffice-bugs] [Bug 100279] OpenGL enabled: Calc Input Line is displaying block characters

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100279

--- Comment #7 from Aron Budea  ---
Thanks for the clarification, Michael. I didn't know how the blacklisting
worked exactly, but can now see that in the case of the aforementioned
(otherwise unrelated) bug report the Intel IGP is blacklisted based on an older
driver version.

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


[Libreoffice-bugs] [Bug 100284] Cannot install 5.2.0 in Ubuntu 16.04

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100284

--- Comment #5 from Paul  ---
That did indeed get 5.2 installed. Thanks.

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


[Libreoffice-bugs] [Bug 100284] Cannot install 5.2.0 in Ubuntu 16.04

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100284

--- Comment #4 from Christian Lohmaier  ---
you need to actually read the output of the "dpkg -i *.deb" command.

it is not about any dependencies, it is a bug that a file is included in two
packages, and debian doesn't allow that, even if it is the very same file. To
workaround, use --force-overwrite switch.

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


[Libreoffice-ux-advise] [Bug 97269] Linux portable edition

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97269

Heiko Tietze  changed:

   What|Removed |Added

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

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


[Libreoffice-ux-advise] [Bug 97269] Linux portable edition

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97269

--- Comment #15 from Christian Lohmaier  ---
*THIS* is about portable, continuing ramblings about *OTHER* bugs won't change
anything.

And you can write bullshit about "dependency problems" as much as you want, but
fact is that LibreOffice as provided by TDF doesn't have any external
dependencies that would cause problems on any Linux distro.

And furthermore: A portable version would have the very same dependencies.

If you want a different way to install LibreOffice, you're commenting *ON THE
WRONG BUG*!

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


[Libreoffice-bugs] [Bug 97269] Linux portable edition

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97269

--- Comment #15 from Christian Lohmaier  ---
*THIS* is about portable, continuing ramblings about *OTHER* bugs won't change
anything.

And you can write bullshit about "dependency problems" as much as you want, but
fact is that LibreOffice as provided by TDF doesn't have any external
dependencies that would cause problems on any Linux distro.

And furthermore: A portable version would have the very same dependencies.

If you want a different way to install LibreOffice, you're commenting *ON THE
WRONG BUG*!

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


[ANN] LibreOffice 5.2.0 Beta2 available

2016-06-09 Thread Christian Lohmaier
Dear Community,

The Document Foundation is pleased to announce the second Beta release
of LibreOffice 5.2.0. The upcoming 5.2.0 will be the twelfth major
release of LibreOffice, coming
with a bunch of new features beside the usual bugfixes.

The Beta2 can be installed alongside the stable version, so feel free
to give it a try. Beta2 is not ready for production yet, and while
in feature freeze, final UI and string freeze is yet to come, and
translations are not complete.

A work-in-progress list of new features in LibreOffice 5.2 can be
found at https://wiki.documentfoundation.org/ReleaseNotes/5.2

The release is available for Windows, Linux and Mac OS X from our QA
builds download page at

  http://www.libreoffice.org/download/pre-releases

There is also a 64bit version available for Windows (please note that
the 64bit version requires Windows Vista or newer, while the 32bit
version runs on Windows XP or later)

Should you find bugs, please report them to our Bugzilla at

  https://bugs.documentfoundation.org

A good way to assess the release candidate quality is to run some
specific manual tests on it, our TCM wiki page has more details:

 
http://wiki.documentfoundation.org/QA/Testing/Regression_Tests#Full_Regression_Test

For other ways to get involved with this exciting project - you can
e.g. contribute code:

  http://www.libreoffice.org/community/developers/

translate LibreOffice to your language:

  http://wiki.documentfoundation.org/LibreOffice_Localization_Guide

or help with funding our operations:

  http://donate.libreoffice.org/

A list of known issues and fixed bugs with 5.2.0 Beta2 is available
from our wiki:

  http://wiki.documentfoundation.org/Releases/5.2.0/Beta2

Let us close again with a BIG Thank You! to all of you having
contributed to the LibreOffice project - this release would not have
been possible without your help.

On behalf of the Community,

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


[Libreoffice-bugs] [Bug 100284] Cannot install 5.2.0 in Ubuntu 16.04

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100284

Adolfo Jayme  changed:

   What|Removed |Added

Summary|Installation instructions   |Cannot install 5.2.0 in
   |for 5.2.0 are wrong (Ubuntu |Ubuntu 16.04
   |16.04)  |

--- Comment #3 from Adolfo Jayme  ---
Done

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


[Libreoffice-bugs] [Bug 99590] Impossible to work with larger/specific document ( GS42-GettingStartedLO.odt)

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99590

Michael Stahl  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||mst...@redhat.com
 Resolution|--- |DUPLICATE

--- Comment #3 from Michael Stahl  ---
that document looks familiar

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

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


[Libreoffice-commits] help.git: Branch 'libreoffice-5-2' - source/text

2016-06-09 Thread Adolfo Jayme Barrientos
 source/text/swriter/01/0515.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 250480021f5dcdadf09c79c11abaf776d2f1970c
Author: Adolfo Jayme Barrientos 
Date:   Thu Jun 9 16:08:43 2016 -0500

Duh!

Change-Id: I17ae04efde155cc38f8c3506400fb7431c3da641
(cherry picked from commit 6343e2e9b252deb2f1fb0b9ec20ed578ac258a8e)
Reviewed-on: https://gerrit.libreoffice.org/26136
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/source/text/swriter/01/0515.xhp 
b/source/text/swriter/01/0515.xhp
index 5306b57..f1ea529 100644
--- a/source/text/swriter/01/0515.xhp
+++ b/source/text/swriter/01/0515.xhp
@@ -31,7 +31,7 @@
 AutoCorrect function;text 
documents
 MW changed AutoFormat to AutoCorrect
 AutoCorrect
- Automatically formats the file according to the options that 
you set under Tools - 
AutoCorrect - AutoCorrect Options.
+ Automatically formats the file according to the options that 
you set under Tools - 
AutoCorrect - AutoCorrect Options.
   
   
  
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-2' - helpcontent2

2016-06-09 Thread Adolfo Jayme Barrientos
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit aff030e43c1333c94a712b31fa3da821dc80af0f
Author: Adolfo Jayme Barrientos 
Date:   Thu Jun 9 16:08:43 2016 -0500

Updated core
Project: help  250480021f5dcdadf09c79c11abaf776d2f1970c

Duh!

Change-Id: I17ae04efde155cc38f8c3506400fb7431c3da641
(cherry picked from commit 6343e2e9b252deb2f1fb0b9ec20ed578ac258a8e)
Reviewed-on: https://gerrit.libreoffice.org/26136
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/helpcontent2 b/helpcontent2
index 99a8659..2504800 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 99a8659559ce7db13a75d24cfb225a037476f10a
+Subproject commit 250480021f5dcdadf09c79c11abaf776d2f1970c
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2016-06-09 Thread Adolfo Jayme Barrientos
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d18f46c0aefda2f60a137d7ede1223d8667075f1
Author: Adolfo Jayme Barrientos 
Date:   Thu Jun 9 16:08:43 2016 -0500

Updated core
Project: help  6343e2e9b252deb2f1fb0b9ec20ed578ac258a8e

Duh!

Change-Id: I17ae04efde155cc38f8c3506400fb7431c3da641

diff --git a/helpcontent2 b/helpcontent2
index 5d7082c..6343e2e 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 5d7082c339ed01e67d8296f60b8429f39ca2452f
+Subproject commit 6343e2e9b252deb2f1fb0b9ec20ed578ac258a8e
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-06-09 Thread Adolfo Jayme Barrientos
 source/text/swriter/01/0515.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6343e2e9b252deb2f1fb0b9ec20ed578ac258a8e
Author: Adolfo Jayme Barrientos 
Date:   Thu Jun 9 16:08:43 2016 -0500

Duh!

Change-Id: I17ae04efde155cc38f8c3506400fb7431c3da641

diff --git a/source/text/swriter/01/0515.xhp 
b/source/text/swriter/01/0515.xhp
index 5306b57..f1ea529 100644
--- a/source/text/swriter/01/0515.xhp
+++ b/source/text/swriter/01/0515.xhp
@@ -31,7 +31,7 @@
 AutoCorrect function;text 
documents
 MW changed AutoFormat to AutoCorrect
 AutoCorrect
- Automatically formats the file according to the options that 
you set under Tools - 
AutoCorrect - AutoCorrect Options.
+ Automatically formats the file according to the options that 
you set under Tools - 
AutoCorrect - AutoCorrect Options.
   
   
  
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-2' - helpcontent2

2016-06-09 Thread Adolfo Jayme Barrientos
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 943c2d1aab9a60c2a665ff7da7d2a956b46ae30c
Author: Adolfo Jayme Barrientos 
Date:   Thu Jun 9 16:03:39 2016 -0500

Updated core
Project: help  99a8659559ce7db13a75d24cfb225a037476f10a

Remove duplicate  and whitespace

Change-Id: If3a14040d2395584ef81b4d0d1f21bac2f471fd2
(cherry picked from commit 5d7082c339ed01e67d8296f60b8429f39ca2452f)
Reviewed-on: https://gerrit.libreoffice.org/26135
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/helpcontent2 b/helpcontent2
index 3c62f98..99a8659 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 3c62f984f3f6fcdbf9f27fc62f5fac7a6aa0734a
+Subproject commit 99a8659559ce7db13a75d24cfb225a037476f10a
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-06-09 Thread Adolfo Jayme Barrientos
 source/text/swriter/01/0515.xhp |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 5d7082c339ed01e67d8296f60b8429f39ca2452f
Author: Adolfo Jayme Barrientos 
Date:   Thu Jun 9 16:03:39 2016 -0500

Remove duplicate  and whitespace

Change-Id: If3a14040d2395584ef81b4d0d1f21bac2f471fd2

diff --git a/source/text/swriter/01/0515.xhp 
b/source/text/swriter/01/0515.xhp
index 78a7a0e..5306b57 100644
--- a/source/text/swriter/01/0515.xhp
+++ b/source/text/swriter/01/0515.xhp
@@ -31,8 +31,7 @@
 AutoCorrect function;text 
documents
 MW changed AutoFormat to AutoCorrect
 AutoCorrect
- Automatically formats the file according to the options 
that you set under Tools - AutoCorrect
-Options.
+ Automatically formats the file according to the options that 
you set under Tools - 
AutoCorrect - AutoCorrect Options.
   
   
  
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2016-06-09 Thread Adolfo Jayme Barrientos
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1472ffd5f89cf2136f3708bfae5ae2e624c2074d
Author: Adolfo Jayme Barrientos 
Date:   Thu Jun 9 16:03:39 2016 -0500

Updated core
Project: help  5d7082c339ed01e67d8296f60b8429f39ca2452f

Remove duplicate  and whitespace

Change-Id: If3a14040d2395584ef81b4d0d1f21bac2f471fd2

diff --git a/helpcontent2 b/helpcontent2
index 17405f4..5d7082c 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 17405f4ca6d12814f5abc0f97028745308edca9a
+Subproject commit 5d7082c339ed01e67d8296f60b8429f39ca2452f
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100284] Installation instructions for 5.2.0 are wrong (Ubuntu 16.04)

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100284

MM  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Hardware|All |x86-64 (AMD64)
Version|unspecified |5.2.0.0.beta2
 Ever confirmed|0   |1
 OS|All |Linux (All)

--- Comment #2 from MM  ---
I confirm on ubuntu 16.04 x64.
Installing with 'sudo dpkg -i *.deb' doesn't install all files, so it can't be
run. That's why I went back to the alpha build again.

Think that the header for this report is a bit odd though, should be something
like: 'Can't install 5.2.0.0 beta under ubuntu 16.04' or so, as there might be
nothing wrong with the installation instructions itself.

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


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

2016-06-09 Thread Akshay Deep
 include/sfx2/templateabstractview.hxx|2 +-
 include/sfx2/templatedefaultview.hxx |2 ++
 include/sfx2/templatelocalview.hxx   |2 +-
 sfx2/source/control/templateabstractview.cxx |   13 +++--
 sfx2/source/control/templatedefaultview.cxx  |9 +
 sfx2/source/control/templatelocalview.cxx|3 ++-
 sfx2/source/dialog/backingwindow.cxx |1 +
 sfx2/source/doc/doc.hrc  |1 +
 sfx2/source/doc/doc.src  |4 
 sfx2/source/doc/templatedlg.cxx  |4 ++--
 10 files changed, 34 insertions(+), 7 deletions(-)

New commits:
commit a7220f6a19556b982bedb52c87d8d345eab85118
Author: Akshay Deep 
Date:   Wed Jun 8 05:22:13 2016 +0530

Templates: Display titles and category as tooltips

Tooltip text:
1. Template Manager:
 All Categories: Title + Category
 Category: Title
2. Start center: Title

Conflicts:
sfx2/source/doc/doc.hrc

Conflicts:
sfx2/source/doc/templatedlg.cxx

Change-Id: I0bfd5e78120f13338f88c1b0617df3a057cce02f
Reviewed-on: https://gerrit.libreoffice.org/26040
Tested-by: Jenkins 
Reviewed-by: Akshay Deep 

diff --git a/include/sfx2/templateabstractview.hxx 
b/include/sfx2/templateabstractview.hxx
index 79ec353..68faee3 100644
--- a/include/sfx2/templateabstractview.hxx
+++ b/include/sfx2/templateabstractview.hxx
@@ -74,7 +74,7 @@ public:
 virtual void dispose() override;
 
 // Fill view with new item list
-void insertItems (const std::vector , 
bool isRegionSelected = true);
+void insertItems (const std::vector , 
bool isRegionSelected = true, bool bShowCategoryInTooltip = false);
 
 // Fill view with template folders thumbnails
 virtual void Populate () { }
diff --git a/include/sfx2/templatedefaultview.hxx 
b/include/sfx2/templatedefaultview.hxx
index 6d2fcdf..4438536 100644
--- a/include/sfx2/templatedefaultview.hxx
+++ b/include/sfx2/templatedefaultview.hxx
@@ -19,6 +19,8 @@ public:
 
 virtual void reload() override;
 
+virtual void showAllTemplates () override;
+
 virtual void KeyInput( const KeyEvent& rKEvt ) override;
 
 void createContextMenu();
diff --git a/include/sfx2/templatelocalview.hxx 
b/include/sfx2/templatelocalview.hxx
index db5c1b6..735e897 100644
--- a/include/sfx2/templatelocalview.hxx
+++ b/include/sfx2/templatelocalview.hxx
@@ -87,7 +87,7 @@ public:
 
 virtual bool renameItem(ThumbnailViewItem* pItem, const OUString& 
sNewTitle) override;
 
-private:
+protected:
 
 SfxDocumentTemplates *mpDocTemplates;
 std::vector maRegions;
diff --git a/sfx2/source/control/templateabstractview.cxx 
b/sfx2/source/control/templateabstractview.cxx
index 536acdf..ac4d086 100644
--- a/sfx2/source/control/templateabstractview.cxx
+++ b/sfx2/source/control/templateabstractview.cxx
@@ -107,7 +107,7 @@ void TemplateAbstractView::dispose()
 ThumbnailView::dispose();
 }
 
-void TemplateAbstractView::insertItems(const 
std::vector , bool isRegionSelected)
+void TemplateAbstractView::insertItems(const 
std::vector , bool isRegionSelected, bool 
bShowCategoryInTooltip)
 {
 mItemList.clear();
 
@@ -126,7 +126,16 @@ void TemplateAbstractView::insertItems(const 
std::vector
 pChild->mnRegionId = pCur->nRegionId;
 pChild->maTitle = pCur->aName;
 pChild->setPath(pCur->aPath);
-pChild->setHelpText(pCur->aRegionName);
+
+if(!bShowCategoryInTooltip)
+pChild->setHelpText(pCur->aName);
+else
+{
+OUString sHelpText = SfxResId(STR_TEMPLATE_TOOLTIP).toString();
+sHelpText = (sHelpText.replaceFirst("$1", 
pCur->aName)).replaceFirst("$1", pCur->aRegionName);
+pChild->setHelpText(sHelpText);
+}
+
 pChild->maPreview1 = pCur->aThumbnail;
 
 if(IsDefaultTemplate(pCur->aPath))
diff --git a/sfx2/source/control/templatedefaultview.cxx 
b/sfx2/source/control/templatedefaultview.cxx
index d6ffb63..789ef16 100644
--- a/sfx2/source/control/templatedefaultview.cxx
+++ b/sfx2/source/control/templatedefaultview.cxx
@@ -48,6 +48,15 @@ void TemplateDefaultView::reload()
 set_width_request(mnTextHeight + mnItemMaxSize + 2*mnItemPadding);
 }
 
+void TemplateDefaultView::showAllTemplates()
+{
+mnCurRegionId = 0;
+maCurRegionName.clear();
+
+insertItems(maAllTemplates, false);
+maOpenRegionHdl.Call(nullptr);
+}
+
 void TemplateDefaultView::KeyInput( const KeyEvent& rKEvt )
 {
 ThumbnailView::KeyInput(rKEvt);
diff --git a/sfx2/source/control/templatelocalview.cxx 
b/sfx2/source/control/templatelocalview.cxx
index 533ee6b..de8650c 100644
--- a/sfx2/source/control/templatelocalview.cxx
+++ b/sfx2/source/control/templatelocalview.cxx
@@ -143,7 +143,8 @@ void TemplateLocalView::showAllTemplates()
 mnCurRegionId = 0;
 

[Libreoffice-bugs] [Bug 83455] UI: Sidebar > Properties > Character: underline dropdown barely viewable (white underlines instead of black) only using Sifr icon set

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83455

Maxim Monastirsky  changed:

   What|Removed |Added

 CC||philip...@hotmail.com

--- Comment #7 from Maxim Monastirsky  ---
*** Bug 100296 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 100296] Breeze underline drop down has white text

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100296

Maxim Monastirsky  changed:

   What|Removed |Added

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

--- Comment #1 from Maxim Monastirsky  ---
The images are at svx/res/symphony/line*.png

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

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


[Libreoffice-bugs] [Bug 100233] Wrong Windows version reported in the About window in Windows 10

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100233

--- Comment #2 from Adolfo Jayme  ---
Given the previous explanation, shouldn’t this be closed as NOTABUG?

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


[Libreoffice-bugs] [Bug 100278] Add shortcut key 'n' to "Don't save" in the Save Document? dialog

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100278

--- Comment #6 from Adolfo Jayme  ---
FWIW, I’ve already changed the mnemonic of this button once, because someone
found it non-intuitive:
https://cgit.freedesktop.org/libreoffice/core/commit/?id=10abd657aacea884f520c97054625a94184c4aca

I’m reluctant to change it again to something else.

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


[Libreoffice-ux-advise] [Bug 100278] Add shortcut key 'n' to "Don't save" in the Save Document? dialog

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100278

--- Comment #6 from Adolfo Jayme  ---
FWIW, I’ve already changed the mnemonic of this button once, because someone
found it non-intuitive:
https://cgit.freedesktop.org/libreoffice/core/commit/?id=10abd657aacea884f520c97054625a94184c4aca

I’m reluctant to change it again to something else.

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


[Libreoffice-bugs] [Bug 47252] FILESAVE: cross-references do not export well to DOCX file

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47252

--- Comment #6 from Frederic Parrenin  ---
I confirm this bug is still present in 5.0.6.
Cross-reference to a Figure number result in the word "Illustration' being
inserted in the .docx file.
The export to .doc is OK, though.

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


[Libreoffice-bugs] [Bug 100296] Breeze underline drop down has white text

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100296

Adolfo Jayme  changed:

   What|Removed |Added

  Component|LibreOffice |UI

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


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

2016-06-09 Thread Michael Stahl
 sw/source/core/layout/frmtool.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 95ed42cc9f9cd40503ca609f1bcad31c5298889b
Author: Michael Stahl 
Date:   Thu Jun 9 15:52:16 2016 +0200

tdf#96089 sw: fix scope of bBreakAfter in InsertCnt_()

The problem is that bBreakAfter is passed by reference to SwLayHelper
and stored as a reference member there, so it has to live at least as
long as pPageMaker.  (Unfortunately C++ can't statically check that.)

This then somehow caused the number of pages created after initial load
to be 812 instead of the correct 396 determined from the layout-cache in
the bugdoc, and that then caused Drawing objects to move backward during
the following re-pagination, and then SwDrawContact::Changed_() calls
SetFlyFrmAttr() and that sets the document to modified, which triggers the
AutoSave that was reported in the bug.

(regression from b4b7703e4335460cf48bfd6440f116359994c8ff)

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

diff --git a/sw/source/core/layout/frmtool.cxx 
b/sw/source/core/layout/frmtool.cxx
index 8033f04..aac8960 100644
--- a/sw/source/core/layout/frmtool.cxx
+++ b/sw/source/core/layout/frmtool.cxx
@@ -1248,6 +1248,7 @@ void _InsertCnt( SwLayoutFrame *pLay, SwDoc *pDoc,
 SwPageFrame *pPage = pLay->FindPageFrame();
 const SwFrameFormats *pTable = pDoc->GetSpzFrameFormats();
 SwFrame   *pFrame = nullptr;
+bool bBreakAfter = false;
 SwActualSection *pActualSection = nullptr;
 SwLayHelper *pPageMaker;
 
@@ -1258,7 +1259,6 @@ void _InsertCnt( SwLayoutFrame *pLay, SwDoc *pDoc,
 {
 // Attention: the SwLayHelper class uses references to the content-,
 // page-, layout-frame etc. and may change them!
-bool   bBreakAfter   = false;
 pPageMaker = new SwLayHelper( pDoc, pFrame, pPrv, pPage, pLay,
 pActualSection, bBreakAfter, nIndex, 0 == nEndIndex );
 if( bStartPercent )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100181] loffice --quickstart crashes immediately with " Application Error" without Quickstarter installed

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100181

Caolán McNamara  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |

--- Comment #3 from Caolán McNamara  ---
https://gerrit.libreoffice.org/26134 probably fixes this, I'll let it build on
all platforms before pushing

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


[Libreoffice-bugs] [Bug 42374] Opening a specific PDF file causes libreoffice to hang

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42374

--- Comment #11 from Samuel Sieb  ---
I just tested the pdf from
http://standards.ieee.org/getieee802/download/802.1AE-2006.pdf with V5.1.4 and
it hasn't managed to finish loading after 20 minutes.  I took apart the pdf and
found that it's page 43 that is the problem.  I suspect it's because there is
some kind of patterned background in a diagram.  Is this the same issue or
should I open a new bug?

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


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

2016-06-09 Thread Michael Stahl
 sc/inc/orcusxml.hxx   |6 +++---
 sc/source/filter/orcus/xmlcontext.cxx |   13 +++--
 2 files changed, 10 insertions(+), 9 deletions(-)

New commits:
commit 741077bf1cdb0c9240ee3e90f07a42bef5bb7a8f
Author: Michael Stahl 
Date:   Thu Jun 9 21:43:00 2016 +0200

sc: eeek, a boost::ptr_vector! take it off! take it off!

Change-Id: I3fffecd295577cc8eaa521e819b3c922f8c3f56e

diff --git a/sc/inc/orcusxml.hxx b/sc/inc/orcusxml.hxx
index cc41f3b..9d803ef 100644
--- a/sc/inc/orcusxml.hxx
+++ b/sc/inc/orcusxml.hxx
@@ -15,7 +15,7 @@
 #include 
 
 #include 
-#include 
+#include 
 
 class SvTreeListEntry;
 
@@ -38,7 +38,7 @@ struct ScOrcusXMLTreeParam
 SC_DLLPUBLIC EntryData(EntryType eType);
 };
 
-typedef boost::ptr_vector UserDataStoreType;
+typedef std::vector UserDataStoreType;
 
 Image maImgElementDefault;
 Image maImgElementRepeat;
@@ -48,7 +48,7 @@ struct ScOrcusXMLTreeParam
  * Store all custom data instances since the tree control doesn't manage
  * the life cycle of user datas.
  */
-UserDataStoreType maUserDataStore;
+UserDataStoreType m_UserDataStore;
 
 static SC_DLLPUBLIC EntryData* getUserData(SvTreeListEntry& rEntry);
 static SC_DLLPUBLIC const EntryData* getUserData(const SvTreeListEntry& 
rEntry);
diff --git a/sc/source/filter/orcus/xmlcontext.cxx 
b/sc/source/filter/orcus/xmlcontext.cxx
index 873e2ef..6064565 100644
--- a/sc/source/filter/orcus/xmlcontext.cxx
+++ b/sc/source/filter/orcus/xmlcontext.cxx
@@ -15,6 +15,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -36,9 +37,9 @@ namespace {
 ScOrcusXMLTreeParam::EntryData& setUserDataToEntry(
 SvTreeListEntry& rEntry, ScOrcusXMLTreeParam::UserDataStoreType& rStore, 
ScOrcusXMLTreeParam::EntryType eType)
 {
-rStore.push_back(new ScOrcusXMLTreeParam::EntryData(eType));
-rEntry.SetUserData(());
-return rStore.back();
+rStore.push_back(o3tl::make_unique(eType));
+rEntry.SetUserData(rStore.back().get());
+return *rStore.back();
 }
 
 void setEntityNameToUserData(
@@ -73,7 +74,7 @@ void populateTree(
 return;
 
 ScOrcusXMLTreeParam::EntryData& rEntryData = setUserDataToEntry(
-*pEntry, rParam.maUserDataStore,
+*pEntry, rParam.m_UserDataStore,
 bRepeat ? ScOrcusXMLTreeParam::ElementRepeat : 
ScOrcusXMLTreeParam::ElementDefault);
 
 setEntityNameToUserData(rEntryData, rElemName, rWalker);
@@ -103,7 +104,7 @@ void populateTree(
 continue;
 
 ScOrcusXMLTreeParam::EntryData& rAttrData =
-setUserDataToEntry(*pAttr, rParam.maUserDataStore, 
ScOrcusXMLTreeParam::Attribute);
+setUserDataToEntry(*pAttr, rParam.m_UserDataStore, 
ScOrcusXMLTreeParam::Attribute);
 setEntityNameToUserData(rAttrData, rAttrName, rWalker);
 
 rTreeCtrl.SetExpandedEntryBmp(pAttr, rParam.maImgAttribute);
@@ -180,7 +181,7 @@ ScOrcusXMLContextImpl::~ScOrcusXMLContextImpl() {}
 
 void ScOrcusXMLContextImpl::loadXMLStructure(SvTreeListBox& rTreeCtrl, 
ScOrcusXMLTreeParam& rParam)
 {
-rParam.maUserDataStore.clear();
+rParam.m_UserDataStore.clear();
 
 std::string aStrm;
 loadContentFromURL(maPath, aStrm);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Repository.mk

2016-06-09 Thread Christian Lohmaier
 Repository.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1193443b15b0e38cbfb41573b31acf9a8d90ce2c
Author: Christian Lohmaier 
Date:   Thu Jun 9 20:01:53 2016 +0200

fix packimages that broke android build

Change-Id: Iecab49bfdf16790b777ff9069074479ec3d4188e
Reviewed-on: https://gerrit.libreoffice.org/26130
Tested-by: Jenkins 
Reviewed-by: Christian Lohmaier 

diff --git a/Repository.mk b/Repository.mk
index a6b6912..a07f758 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -935,7 +935,7 @@ $(eval $(call gb_Helper_register_resources,\
eur \
for \
forui \
-   fps_office \
+   $(call gb_Helper_optional_for_host,DESKTOP,fps_office) \
frm \
fwe \
gal \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: officecfg/registry sd/uiconfig

2016-06-09 Thread Yousuf Philips
 officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu |
2 
 sd/uiconfig/simpress/toolbar/commontaskbar.xml   |   
10 ++
 sd/uiconfig/simpress/toolbar/standardbar.xml |   
34 +++---
 sd/uiconfig/simpress/toolbar/tableobjectbar.xml  |
2 
 4 files changed, 24 insertions(+), 24 deletions(-)

New commits:
commit f0e3a36f6508dcfa0a3c672e15e15f3582e02110
Author: Yousuf Philips 
Date:   Wed Jun 8 18:03:26 2016 +0400

tdf#84909 Impress: Rearrange the standard toolbar

Change-Id: Ia2582fa118b5622c36ed80525273ac28a224fc6d
Reviewed-on: https://gerrit.libreoffice.org/26070
Tested-by: Jenkins 
Reviewed-by: Yousuf Philips 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu
index 8a907b7..4e3f887 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu
@@ -133,7 +133,7 @@
   
   
 
-  Fit Text to Frame
+  Fit Text in Textbox Size
 
 
   1
diff --git a/sd/uiconfig/simpress/toolbar/commontaskbar.xml 
b/sd/uiconfig/simpress/toolbar/commontaskbar.xml
index 85397d6..205cae3 100644
--- a/sd/uiconfig/simpress/toolbar/commontaskbar.xml
+++ b/sd/uiconfig/simpress/toolbar/commontaskbar.xml
@@ -26,4 +26,14 @@
  
  
  
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
 
diff --git a/sd/uiconfig/simpress/toolbar/standardbar.xml 
b/sd/uiconfig/simpress/toolbar/standardbar.xml
index bfb7b17..eb5a0f3 100644
--- a/sd/uiconfig/simpress/toolbar/standardbar.xml
+++ b/sd/uiconfig/simpress/toolbar/standardbar.xml
@@ -47,38 +47,28 @@
  
  
  
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
  
  
  
  
  
  
- 
+ 
  
  
- 
- 
- 
- 
  
  
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
+ 
  
  
  
diff --git a/sd/uiconfig/simpress/toolbar/tableobjectbar.xml 
b/sd/uiconfig/simpress/toolbar/tableobjectbar.xml
index 15813d6..5cbd65c 100644
--- a/sd/uiconfig/simpress/toolbar/tableobjectbar.xml
+++ b/sd/uiconfig/simpress/toolbar/tableobjectbar.xml
@@ -29,7 +29,7 @@
  
  
  
- 
+ 
  
  
  
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 84909] [META] Enhancing Impress/Draw toolbars and context menu

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84909

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:4.5.0 target:4.4.0.2 |target:4.5.0 target:4.4.0.2
   |target:5.1.0 target:5.0.0.2 |target:5.1.0 target:5.0.0.2
   |target:5.0.0.3 target:5.2.0 |target:5.0.0.3 target:5.2.0
   |target:5.1.0.1  |target:5.1.0.1 target:5.3.0

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


[Libreoffice-bugs] [Bug 84909] [META] Enhancing Impress/Draw toolbars and context menu

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84909

--- Comment #32 from Commit Notification 
 ---
Yousuf Philips committed a patch related to this issue.
It has been pushed to "master":

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

tdf#84909 Impress: Rearrange the standard toolbar

It will be available in 5.3.0.

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

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

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


[Libreoffice-commits] core.git: officecfg/registry sw/uiconfig

2016-06-09 Thread Yousuf Philips
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu |2 +-
 sw/uiconfig/swriter/menubar/menubar.xml  |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit c8200675c7fd6550c78b20b7c87ebf03047bb6d4
Author: Yousuf Philips 
Date:   Wed Jun 8 16:30:34 2016 +0400

tdf#91781 tweak to Writer's insert menu

Change-Id: Id099a1f393fa115faf53899f94db5d53f3daa849
Reviewed-on: https://gerrit.libreoffice.org/26062
Tested-by: Jenkins 
Reviewed-by: Yousuf Philips 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index 01fa906..aaad92c 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -3261,7 +3261,7 @@
   
   
 
-  ~Link
+  ~Bookmark and Cross-reference
 
 
   1
diff --git a/sw/uiconfig/swriter/menubar/menubar.xml 
b/sw/uiconfig/swriter/menubar/menubar.xml
index 309a486..31f2d77 100644
--- a/sw/uiconfig/swriter/menubar/menubar.xml
+++ b/sw/uiconfig/swriter/menubar/menubar.xml
@@ -259,9 +259,9 @@
   
   
   
+  
   
 
-  
   
   
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100299] Crash when update database in document with conditional texts

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100299

--- Comment #1 from vincent.lefou...@free.fr ---
Created attachment 125582
  --> https://bugs.documentfoundation.org/attachment.cgi?id=125582=edit
The database

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


[Libreoffice-bugs] [Bug 100299] New: Crash when update database in document with conditional texts

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100299

Bug ID: 100299
   Summary: Crash when update database in document with
conditional texts
   Product: LibreOffice
   Version: 5.1.3.1 rc
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: vincent.lefou...@free.fr

Created attachment 125581
  --> https://bugs.documentfoundation.org/attachment.cgi?id=125581=edit
The original .odt file

Hi,

I work on Arch Linux x86_64 and LO 5.3.1
(https://www.archlinux.org/packages/?arch=any=i686=x86_64=libreoffice-fresh)
crashes when I change the database of a document with conditional texts:

* Create a .ods file "test.ods"
* In A1, put "Var"
* In A2, put 0
* Create a .odt file "test.odt"
* Insert a conditional text based on the value of "Var" : Insert > Field > More
> Hidden text > Condition : "a_stupid_db_name.Sheet1.Var == 0"
* Add "test.ods" as database : Edit > Exchange database > Browse
* Define test.Sheet1 as data source
* Close LO or print the document as form letter and see it crash

When I reopen the .odt file, "a_stupid_db_name" has been replaced by "test" in
the field's condition, but LO tells me that the database "test" cannot be
loaded when I try to print the document. If I browse the database again, LO
crashes again.

Thank you

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


[Libreoffice-bugs] [Bug 100263] Feedback is missing if the search doesn't find anything

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100263

sworddrag...@aol.com changed:

   What|Removed |Added

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

--- Comment #3 from sworddrag...@aol.com ---


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

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


[Libreoffice-bugs] [Bug 100295] LibODev-5.2.0.0.b2 does not run in Windows_XP (32 or 64 bit)

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100295

--- Comment #4 from V Stuart Foote  ---
Created attachment 125580
  --> https://bugs.documentfoundation.org/attachment.cgi?id=125580=edit
WinDbg stackTrace of launch failure on WinXP sp3 32-bit, with the module loads

Another stack trace with the module load sequence, and somewhat useless analyze
-v.

But, looks to die after loading the libcurl.dll and then system LDAP and HTTP.

C:\Program Files\LibreOfficeDev 5\program\libcurl.dll
C:\WINDOWS\system32\WLDAP32.dll
C:\WINDOWS\system32\WINHTTP.dll

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


[Libreoffice-ux-advise] [Bug 97269] Linux portable edition

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97269

--- Comment #14 from Bastián Díaz  ---
(In reply to Christian Lohmaier from comment #12)
> that has no relation to a portable version. You can install LO provided by
> TDF without dependency hell. If you already had LO, you can install update.
> Even if you never had LO installed, the baseline of TDF provided builds is
> so low that the requirements will always be met.
> 

The list of reports for distribution would be too long to put here, but it is a
reality that LibreOffice maintainers can not always keep the last update for
dependency problems.

> Users in that case most definitely also *DON'T* want a portable version. As
> a portable version would come without any system integration, no startmenu
> items, no filetype associations.
> Please don't mix issues.

I think you should learn more ... do you know the technologies that have been
spoken here as a portable solution for LO? 

Well, as much as Flatpak and AppImage not lose integration with the system.

Please, now you can easily test both:
• https://www.libreoffice.org/download/flatpak/
• https://bintray.com/probono/AppImages/LibreOffice/view
  https://bintray.com/probono/AppImages/LibreOfficeDev/view

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


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

2016-06-09 Thread Michael Stahl
 sw/source/core/layout/frmtool.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 905e38c7c6c02ec618b9231545c45debba3a8a44
Author: Michael Stahl 
Date:   Thu Jun 9 15:52:16 2016 +0200

tdf#96089 sw: fix scope of bBreakAfter in InsertCnt_()

The problem is that bBreakAfter is passed by reference to SwLayHelper
and stored as a reference member there, so it has to live at least as
long as pPageMaker.  (Unfortunately C++ can't statically check that.)

This then somehow caused the number of pages created after initial load
to be 812 instead of the correct 396 determined from the layout-cache in
the bugdoc, and that then caused Drawing objects to move backward during
the following re-pagination, and then SwDrawContact::Changed_() calls
SetFlyFrmAttr() and that sets the document to modified, which triggers the
AutoSave that was reported in the bug.

(regression from b4b7703e4335460cf48bfd6440f116359994c8ff)

Change-Id: I14dc4644c2e127b3c3ff0e6876eedcc534e1a68e
(cherry picked from commit c488214817516c13603deb1c180fef02f4c700bf)
Reviewed-on: https://gerrit.libreoffice.org/26120
Reviewed-by: Michael Stahl 
Tested-by: Michael Stahl 

diff --git a/sw/source/core/layout/frmtool.cxx 
b/sw/source/core/layout/frmtool.cxx
index 4cfcdf7..70c1409 100644
--- a/sw/source/core/layout/frmtool.cxx
+++ b/sw/source/core/layout/frmtool.cxx
@@ -1246,6 +1246,7 @@ void InsertCnt_( SwLayoutFrame *pLay, SwDoc *pDoc,
 SwPageFrame *pPage = pLay->FindPageFrame();
 const SwFrameFormats *pTable = pDoc->GetSpzFrameFormats();
 SwFrame   *pFrame = nullptr;
+bool bBreakAfter = false;
 SwActualSection *pActualSection = nullptr;
 SwLayHelper *pPageMaker;
 
@@ -1256,7 +1257,6 @@ void InsertCnt_( SwLayoutFrame *pLay, SwDoc *pDoc,
 {
 // Attention: the SwLayHelper class uses references to the content-,
 // page-, layout-frame etc. and may change them!
-bool   bBreakAfter   = false;
 pPageMaker = new SwLayHelper( pDoc, pFrame, pPrv, pPage, pLay,
 pActualSection, bBreakAfter, nIndex, 0 == nEndIndex );
 if( bStartPercent )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97269] Linux portable edition

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97269

--- Comment #14 from Bastián Díaz  ---
(In reply to Christian Lohmaier from comment #12)
> that has no relation to a portable version. You can install LO provided by
> TDF without dependency hell. If you already had LO, you can install update.
> Even if you never had LO installed, the baseline of TDF provided builds is
> so low that the requirements will always be met.
> 

The list of reports for distribution would be too long to put here, but it is a
reality that LibreOffice maintainers can not always keep the last update for
dependency problems.

> Users in that case most definitely also *DON'T* want a portable version. As
> a portable version would come without any system integration, no startmenu
> items, no filetype associations.
> Please don't mix issues.

I think you should learn more ... do you know the technologies that have been
spoken here as a portable solution for LO? 

Well, as much as Flatpak and AppImage not lose integration with the system.

Please, now you can easily test both:
• https://www.libreoffice.org/download/flatpak/
• https://bintray.com/probono/AppImages/LibreOffice/view
  https://bintray.com/probono/AppImages/LibreOfficeDev/view

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


[Libreoffice-bugs] [Bug 100286] Database creation wizard halts in step 1

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100286

Maxim Monastirsky  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 100286] Database creation wizard halts in step 1

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100286

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

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

tdf#100286 Fix deactivate flags

It will be available in 5.3.0.

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

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

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


[Libreoffice-bugs] [Bug 100286] Database creation wizard halts in step 1

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100286

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:5.3.0

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


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

2016-06-09 Thread Maxim Monastirsky
 dbaccess/source/ui/dlg/dbwizsetup.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit de4c5283ac475c0eec757057471fc75d3f933576
Author: Maxim Monastirsky 
Date:   Thu Jun 9 21:58:12 2016 +0300

tdf#100286 Fix deactivate flags

regression of 11b4a6ddce31f173f10b703eb63fde2c88c0bc70

Change-Id: I4981fee4264c833cd3166491d3812c40c78e3d67

diff --git a/dbaccess/source/ui/dlg/dbwizsetup.cxx 
b/dbaccess/source/ui/dlg/dbwizsetup.cxx
index 7329637..197c321 100644
--- a/dbaccess/source/ui/dlg/dbwizsetup.cxx
+++ b/dbaccess/source/ui/dlg/dbwizsetup.cxx
@@ -650,7 +650,7 @@ bool ODbTypeWizDialogSetup::leaveState(WizardState _nState)
 resetPages(m_pImpl->getCurrentDataSource());
 }
 SfxTabPage* pPage = 
static_cast(WizardDialog::GetPage(_nState));
-return pPage && pPage->DeactivatePage(m_pOutSet) != 
DeactivateRC::LeavePage;
+return pPage && pPage->DeactivatePage(m_pOutSet) != DeactivateRC::KeepPage;
 }
 
 void ODbTypeWizDialogSetup::setTitle(const OUString& /*_sTitle*/)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100298] Style names come and go (are blanked out / white) in Styles and Formatting window

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100298

Harry  changed:

   What|Removed |Added

Summary|Style Headings 1 through 3  |Style names come and go
   |are invisible (white) in|(are blanked out / white)
   |Styles and Formatting   |in Styles and Formatting
   |window  |window

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


[Libreoffice-ux-advise] [Bug 97269] Linux portable edition

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97269

--- Comment #13 from Bastián Díaz  ---
(In reply to Christian Lohmaier from comment #10)

I see that you have not answered my question is it has nothing to say about it?

> the point is not about a linux version in general,

Again Bug 80941

> but about a portable
> version. Why would you need a portable version of LibreOffice for linux?
> Chanches are that if you're using linux, you can just launch LibreOffice
> that's part of the default desktop-installation.
> 

As already mentioned, not always has the latest LO update (still or fresh) in
default packages included in the distribution. This is a problem in general and
is not always possible to install the latest version from the web due to
dependency problems. I think in this case, a portable version using AppImage is
a good solution.

> If you're going elsewhere, and they happen to have linux installed, but not
> LibreOffice, that'd be pretty rare (and as alternative you can have a
> live-USB distro with all included)
> 

It is not the real problem

> if unpacking LO is to complicated, you can use the script Michael mentioned.
> 

We return to the problem of usability/UX and availability in only two types of
packet format

> Again: I see no point in offering something where the only change is a
> different value for userprofile in bootstraprc 
> 

...

> users like in Bug 80941 should just use LibreOffice as provided by their
> distribution.

Wow... See above

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


[Libreoffice-bugs] [Bug 97269] Linux portable edition

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97269

--- Comment #13 from Bastián Díaz  ---
(In reply to Christian Lohmaier from comment #10)

I see that you have not answered my question is it has nothing to say about it?

> the point is not about a linux version in general,

Again Bug 80941

> but about a portable
> version. Why would you need a portable version of LibreOffice for linux?
> Chanches are that if you're using linux, you can just launch LibreOffice
> that's part of the default desktop-installation.
> 

As already mentioned, not always has the latest LO update (still or fresh) in
default packages included in the distribution. This is a problem in general and
is not always possible to install the latest version from the web due to
dependency problems. I think in this case, a portable version using AppImage is
a good solution.

> If you're going elsewhere, and they happen to have linux installed, but not
> LibreOffice, that'd be pretty rare (and as alternative you can have a
> live-USB distro with all included)
> 

It is not the real problem

> if unpacking LO is to complicated, you can use the script Michael mentioned.
> 

We return to the problem of usability/UX and availability in only two types of
packet format

> Again: I see no point in offering something where the only change is a
> different value for userprofile in bootstraprc 
> 

...

> users like in Bug 80941 should just use LibreOffice as provided by their
> distribution.

Wow... See above

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


[Libreoffice-bugs] [Bug 100298] New: Style Headings 1 through 3 are invisible (white) in Styles and Formatting window

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100298

Bug ID: 100298
   Summary: Style Headings 1 through 3 are invisible (white) in
Styles and Formatting window
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: harrylpar...@gmail.com

Created attachment 125579
  --> https://bugs.documentfoundation.org/attachment.cgi?id=125579=edit
Blanked style names illustrated in Styles and Formatting window.

On my Mac OS 10.9.5 laptop, with LibreOffice 4.x - 5.1.3 Writer, the Heading1
through Heading3 style are blank (all white).  They show OK on the Formatting
dropdown tool.

Also some other styles are blank as well in this display.

I noticed that the style names come and go as I change the width of the
windows.

I'm attaching an image file showing this.

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


[Libreoffice-bugs] [Bug 59758] Text not scaled when scaling a group of object

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59758

--- Comment #8 from kolAflash  ---
(In reply to Heiko Tietze from comment #7)
> *** Bug 100277 has been marked as a duplicate of this bug. ***

Please also consider, that line widths also don't resize with the rest of the
graphic. (described in my duplicate bug 100277)

Have a look at the attached ODT file.

http://bugs.documentfoundation.org/attachment.cgi?id=125556
(from bug 100277)


I also proposed, that font and line width scaling should be an optional
behavior, which you can switch on or off.

Sometimes you need fonts and line widths to stay constant.
And sometimes you like to resize an ODG graphic from Draw like an imported SVG
or raster graphic.

And it's a pity and work-time consuming, if you need to export an ODG to SVG
and reimport it into LibreOffice. Instead of just copy-pasting from Draw to
Writer.


--

Big thanks for the for!
LibreOffice is doing great for writing my bachelor thesis!

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


[Libreoffice-bugs] [Bug 100295] LibODev-5.2.0.0.b2 does not run in Windows_XP (32 or 64 bit)

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100295

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||haveBacktrace
 CC||tima...@gmail.com

--- Comment #3 from V Stuart Foote  ---
I think 64-bit Windows XP SP2 is beyond hope.  And the libcurl glitches of bug
95183 and bug 95184 suggested things to come.

Maybe the attached stack trace (such as it is) can help tease out what can be
bypassed to salvage use on Windows XP SP3.

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


[Libreoffice-bugs] [Bug 100264] Export to PDF forgets font-background-color.

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100264

Alexander  changed:

   What|Removed |Added

Summary|Export to PDF forets|Export to PDF forgets
   |font-background-color.  |font-background-color.

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


[Libreoffice-bugs] [Bug 100295] LibODev-5.2.0.0.b2 does not run in Windows_XP (32 or 64 bit)

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100295

--- Comment #2 from V Stuart Foote  ---
Created attachment 125578
  --> https://bugs.documentfoundation.org/attachment.cgi?id=125578=edit
WinDbg stackTrace of launch failure on WinXP sp3 32-bit

@Cloph, Andre

Don't know if you can do anything with it but attached...

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


[Libreoffice-bugs] [Bug 100286] Database creation wizard halts in step 1

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100286

--- Comment #2 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I could reproduce this.
But even worse, just clicking "Next" with by default option "Create a new DB",
does nothing.

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


Avaya Users

2016-06-09 Thread Brad Davis

Hi,

Would you be interested in Avaya Users Listfor your sales and marketing  
campaigns?



Geography we cover: - USA, Europe, Asia, Australia, Middle East,Africa with  
100% database and data usage for multi-channel marketing purpose.


Information Fields – Name, Title, Email, Phone Numbers, CompanyName, and  
Company Details like Physical Address, Web Address, Revenue Size,Employee  
Size and industry.


Below are the few targeted lists you might be interested:Polycom, Nortel  
Networks, Mitel, Aruba Networks, ShoreTel, Juniper Networks,AT, Citrix  
Systems, Lync Server, Cisco Systems, RiverbedF5 Networks,Arista Networks,  
Vonage, Ringcentral and many more.


We also provide specific title contacts like:-
CEOs, IT Decision Makers, Sales and Marketing Decision Makers, HR  
DecisionMakers, Finance Decision Makers, Call Center Decision Makers,  
CustomerRelations Decision Makers, Data Center Decision Makers List and  
TelecomAdministrators list.


Please review and let me know if you are interested and I will get back to  
youwith more information for the same.


Regards,
Brad Davis
Marketing Executive


Toopt-out response 'Remove' in the subject line.

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


[Libreoffice-bugs] [Bug 100297] New: API, Calc sheets, Inconsistency concerning changes of cell properties by a user function.

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100297

Bug ID: 100297
   Summary: API, Calc sheets, Inconsistency concerning changes of
cell properties by a user function.
   Product: LibreOffice
   Version: 5.1.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: j...@psilosoph.de

Created attachment 125577
  --> https://bugs.documentfoundation.org/attachment.cgi?id=125577=edit
Demonstration of the problems; Code included

Predecessors of LibO Calc did not allow any changes of the content of a cell by
a function called from a formula contained in a cell of the same sheet. AOO
4.1.2 still is regarding this restriction (as I tested). 

LibO relieved this restriction substantially. From my recent tests I found that
changes of all the relevant properties as there are 
- Value
- String
- Formula
for cells in the same sheet as the call of the function whose body is
performing the changes are allowed. 
This with one exception: Setting the Formula property to "" (empty string)
which should make the cell BLANK (answer TRUE if asked ISBLANK) does not cause
an error, but is not performed. It only works for cells in different sheets. 

If the content of a cell in a different sheet is changed by the body of a
function called from a cell not in the active sheet, the recalculation of a
cell in the active sheet referencing the changed cell, is not correctly
triggered. 

Generally the behaviour of cells is inconsistent with respect to changes of
contents by the bodies of user functions via the API. 

The alternatives I see are to either suppress changes of cells by function
bodies completely, or to thoroughly remove any inconsistencies. 

See attached example.

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


[Libreoffice-bugs] [Bug 100218] FILESAVE: Crop gets lost when exporting to PPT

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100218

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||0215
 Ever confirmed|0   |1

--- Comment #2 from Buovjaga  ---
In my test, seems somehow same as bug 100215 - the image is squashed.
So not sure, if it is related to pp*

Setting to NEW anyways and hoping the See also will be enough guidance.

Arch Linux 64-bit, KDE Plasma 5
Version: 5.3.0.0.alpha0+
Build ID: 2d2a33934ecb952433a635ce5dab76cb2837b8a0
CPU Threads: 8; OS Version: Linux 4.6; UI Render: default; 
Locale: fi-FI (fi_FI.UTF-8)
Built on June 9th 2016

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


[Libreoffice-bugs] [Bug 100215] Cropped images corrupted when reopening the Slidedeck

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100215

Buovjaga  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 100217] Cropped image can be badly displayed during presentation mode

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100217

Buovjaga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #2 from Buovjaga  ---
No problem here for slide 5.

Arch Linux 64-bit, KDE Plasma 5
Version: 5.3.0.0.alpha0+
Build ID: 2d2a33934ecb952433a635ce5dab76cb2837b8a0
CPU Threads: 8; OS Version: Linux 4.6; UI Render: default; 
Locale: fi-FI (fi_FI.UTF-8)
Built on June 9th 2016

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


[Libreoffice-bugs] [Bug 100215] Cropped images corrupted when reopening the Slidedeck

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100215

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1
 OS|Windows (All)   |All

--- Comment #2 from Buovjaga  ---
Yes, their height gets squashed a bit (reproduced).

Arch Linux 64-bit, KDE Plasma 5
Version: 5.3.0.0.alpha0+
Build ID: 2d2a33934ecb952433a635ce5dab76cb2837b8a0
CPU Threads: 8; OS Version: Linux 4.6; UI Render: default; 
Locale: fi-FI (fi_FI.UTF-8)
Built on June 9th 2016

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


[Libreoffice-bugs] [Bug 100188] Lost of CONDITIONAL FORMATTING with formula on refresh by macro with cell link with an another file

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100188

--- Comment #8 from hawk63  ---
I have add my original document.
This documents works with 4.x but not 5.x.

The file to launch is : "Affaire 4.0.ods"

The file will refresh links at launch but i have add a button "Refresh" if
needed.

The conditionnal formatting is to apply a grey background at the line if cell
AF contains "Oui" in sheet "Affaires".

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


[Libreoffice-bugs] [Bug 100202] FILEOPEN: Paragraph White Fill added to cell in DOCX import

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100202

Buovjaga  changed:

   What|Removed |Added

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

--- Comment #3 from Buovjaga  ---
Yes.

Arch Linux 64-bit, KDE Plasma 5
Version: 5.3.0.0.alpha0+
Build ID: 2d2a33934ecb952433a635ce5dab76cb2837b8a0
CPU Threads: 8; OS Version: Linux 4.6; UI Render: default; 
Locale: fi-FI (fi_FI.UTF-8)
Built on June 9th 2016

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


[Libreoffice-bugs] [Bug 100200] password protected templates can only be opened with workaround

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100200

Buovjaga  changed:

   What|Removed |Added

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

--- Comment #1 from Buovjaga  ---
I can't edit it at all, nothing happens.

Arch Linux 64-bit, KDE Plasma 5
Version: 5.3.0.0.alpha0+
Build ID: 2d2a33934ecb952433a635ce5dab76cb2837b8a0
CPU Threads: 8; OS Version: Linux 4.6; UI Render: default; 
Locale: fi-FI (fi_FI.UTF-8)
Built on June 9th 2016

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


[Libreoffice-bugs] [Bug 100188] Lost of CONDITIONAL FORMATTING with formula on refresh by macro with cell link with an another file

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100188

--- Comment #7 from hawk63  ---
Created attachment 125576
  --> https://bugs.documentfoundation.org/attachment.cgi?id=125576=edit
Document Original (works under 4.x but not under 5.x)

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


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

2016-06-09 Thread Miklos Vajna
 sw/source/core/crsr/viscrs.cxx |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 22367b58dbca65149ec9bc64d851be4d57759f6e
Author: Miklos Vajna 
Date:   Thu Jun 9 17:32:18 2016 +0200

sw: implement per-view LOK_CALLBACK_SET_PART

Used when e.g. jumping from page 1 to page 2 in a document, and the page
number widget should be updated in gtktiledviewer.

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

diff --git a/sw/source/core/crsr/viscrs.cxx b/sw/source/core/crsr/viscrs.cxx
index 03486c3..8c9ee30 100644
--- a/sw/source/core/crsr/viscrs.cxx
+++ b/sw/source/core/crsr/viscrs.cxx
@@ -189,7 +189,10 @@ void SwVisibleCursor::SetPosAndShow()
 {
 m_nPageLastTime = nPage;
 OString aPayload = OString::number(nPage - 1);
-m_pCursorShell->libreOfficeKitCallback(LOK_CALLBACK_SET_PART, 
aPayload.getStr());
+if (comphelper::LibreOfficeKit::isViewCallback())
+
m_pCursorShell->GetSfxViewShell()->libreOfficeKitViewCallback(LOK_CALLBACK_SET_PART,
 aPayload.getStr());
+else
+m_pCursorShell->libreOfficeKitCallback(LOK_CALLBACK_SET_PART, 
aPayload.getStr());
 }
 
 // notify about the cursor position & size
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100295] LibODev-5.2.0.0.b2 does not run in Windows_XP (32 or 64 bit)

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100295

ape  changed:

   What|Removed |Added

   Keywords||regression

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


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

2016-06-09 Thread Caolán McNamara
 vcl/unx/gtk3/gtk3gtkframe.cxx |   25 +++--
 1 file changed, 15 insertions(+), 10 deletions(-)

New commits:
commit ffbd9647698738084c7a69fc72a2a7317109df7c
Author: Caolán McNamara 
Date:   Thu Jun 9 17:40:13 2016 +0100

wrong hunk included

Change-Id: I5fbeea83393e811cdf333f3cf456cbd6cc2f9d6c

diff --git a/vcl/unx/gtk3/gtk3gtkframe.cxx b/vcl/unx/gtk3/gtk3gtkframe.cxx
index c76e2cd..5a12fa6 100644
--- a/vcl/unx/gtk3/gtk3gtkframe.cxx
+++ b/vcl/unx/gtk3/gtk3gtkframe.cxx
@@ -1440,11 +1440,15 @@ void GtkSalFrame::Show( bool bVisible, bool bNoActivate 
)
 m_nFloats++;
 if( ! getDisplay()->GetCaptureFrame() && m_nFloats == 1 )
 {
-GdkDeviceManager* pDeviceManager = 
gdk_display_get_device_manager(getGdkDisplay());
-GdkDevice* pPointer = 
gdk_device_manager_get_client_pointer(pDeviceManager);
-GdkDevice* pKeyboard = 
gdk_device_get_associated_device(pPointer);
-gtk_device_grab_add(m_pParent->getWindow(), pPointer, 
false);
-gtk_device_grab_add(m_pParent->getWindow(), pKeyboard, 
false);
+GtkWidget* pGrabWidgetBeforeShowFloat;
+while ((pGrabWidgetBeforeShowFloat = 
gtk_grab_get_current()))
+{
+
m_aGrabWidgetsBeforeShowFloat.push_back(pGrabWidgetBeforeShowFloat);
+gtk_grab_remove(pGrabWidgetBeforeShowFloat);
+}
+grabPointer(true, true);
+GtkSalFrame *pKeyboardFrame = m_pParent ? m_pParent : this;
+pKeyboardFrame->grabKeyboard(true);
 }
 // #i44068# reset parent's IM context
 if( m_pParent )
@@ -1460,11 +1464,12 @@ void GtkSalFrame::Show( bool bVisible, bool bNoActivate 
)
 m_nFloats--;
 if( ! getDisplay()->GetCaptureFrame() && m_nFloats == 0)
 {
-GdkDeviceManager* pDeviceManager = 
gdk_display_get_device_manager(getGdkDisplay());
-GdkDevice* pPointer = 
gdk_device_manager_get_client_pointer(pDeviceManager);
-GdkDevice* pKeyboard = 
gdk_device_get_associated_device(pPointer);
-gtk_device_grab_remove(m_pParent->getWindow(), pKeyboard);
-gtk_device_grab_remove(m_pParent->getWindow(), pPointer);
+GtkSalFrame *pKeyboardFrame = m_pParent ? m_pParent : this;
+pKeyboardFrame->grabKeyboard(false);
+grabPointer(false);
+for (auto i = m_aGrabWidgetsBeforeShowFloat.rbegin(); i != 
m_aGrabWidgetsBeforeShowFloat.rend(); ++i)
+gtk_grab_add(*i);
+m_aGrabWidgetsBeforeShowFloat.clear();
 }
 }
 gtk_widget_hide( m_pWindow );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88793] EDITING, subtotals don't apply formatting

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88793

--- Comment #9 from Robert Gonzalez MX  ---
Created attachment 125575
  --> https://bugs.documentfoundation.org/attachment.cgi?id=125575=edit
Screenshot

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


[Libreoffice-bugs] [Bug 88793] EDITING, subtotals don't apply formatting

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88793

--- Comment #8 from Robert Gonzalez MX  ---
Hello.
Just tested this bug with Version: 5.2.0.0.beta1
Build ID: 1e9933ef611c66bcded94b84052543c78cf1c223
CPU Threads: 8; OS Version: Linux 4.1; UI Render: default; 
Locale: es-MX (es_MX.UTF-8)
In OpenSUSE Leap 42.1

Is still reproducible

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


[Libreoffice-bugs] [Bug 100273] do not finish cell content with _x where x is digit

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100273

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #5 from V Stuart Foote  ---
OP recognized the usage issue. Closing.

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


[Libreoffice-qa] next BH session and feature testing

2016-06-09 Thread Sophie
Hi all,

I'm preparing the next BH session which will take place on the 24th of
June. Are there some features that you see need more testing in the 5.2
version?
Thanks in advance
Cheers
Sophie
-- 
Sophie Gautier sophie.gaut...@documentfoundation.org
GSM: +33683901545
IRC: sophi
Co-founder - Release coordinator
The Document Foundation
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: https://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-bugs] [Bug 100248] Crash scrolling upwards the Insert menu, then pointing the format menu (non-native menus)

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100248

Caolán McNamara  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 100248] Crash scrolling upwards the Insert menu, then pointing the format menu (non-native menus)

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100248

--- Comment #4 from Commit Notification 
 ---
Caolán McNamara committed a patch related to this issue.
It has been pushed to "libreoffice-5-2":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=7def34c0f013b0c9ac1b8ee39e800577bfa800e7=libreoffice-5-2

Resolves: tdf#100248 vcl menu scroll timer still active post dispose

It will be available in 5.2.0.1.

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

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

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


[Libreoffice-bugs] [Bug 100248] Crash scrolling upwards the Insert menu, then pointing the format menu (non-native menus)

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100248

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:5.3.0|target:5.3.0 target:5.2.0.1

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-2' - vcl/source

2016-06-09 Thread Caolán McNamara
 vcl/source/window/menufloatingwindow.cxx |6 ++
 1 file changed, 6 insertions(+)

New commits:
commit 7def34c0f013b0c9ac1b8ee39e800577bfa800e7
Author: Caolán McNamara 
Date:   Thu Jun 9 17:02:14 2016 +0100

Resolves: tdf#100248 vcl menu scroll timer still active post dispose

Change-Id: I8988a42e7e505c967661c4a5f3c1e4ef3fbc08e0
(cherry picked from commit f89b9d8b8064a2f323f5b3362f88cb873bad8fcc)

diff --git a/vcl/source/window/menufloatingwindow.cxx 
b/vcl/source/window/menufloatingwindow.cxx
index 50c8f23..c00a869 100644
--- a/vcl/source/window/menufloatingwindow.cxx
+++ b/vcl/source/window/menufloatingwindow.cxx
@@ -98,6 +98,12 @@ void MenuFloatingWindow::doShutdown()
 }
 pMenu = nullptr;
 RemoveEventListener( LINK( this, MenuFloatingWindow, ShowHideListener 
) );
+
+aScrollTimer.Stop();
+aSubmenuCloseTimer.Stop();
+aSubmenuCloseTimer.Stop();
+aHighlightChangedTimer.Stop();
+aHighlightChangedTimer.Stop();
 }
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100248] Crash scrolling upwards the Insert menu, then pointing the format menu (non-native menus)

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100248

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:5.3.0

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


[Libreoffice-bugs] [Bug 100248] Crash scrolling upwards the Insert menu, then pointing the format menu (non-native menus)

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100248

--- Comment #3 from Commit Notification 
 ---
Caolán McNamara committed a patch related to this issue.
It has been pushed to "master":

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

Resolves: tdf#100248 vcl menu scroll timer still active post dispose

It will be available in 5.3.0.

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

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

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


[Libreoffice-bugs] [Bug 100294] Text editor problem

2016-06-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100294

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  ---
Thanks for filing. But, we need you to provide better "steps to reproduce" the
issue.

Also, what operating system and desktop environment are you using?

What build of LibreOffice are you using?

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


  1   2   3   4   >