[Libreoffice-bugs] [Bug 94358] Page Register doesn't save in documents

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94358

--- Comment #2 from Michael dorosh  ---
.odt file is the worst, because it doesn't let me save pages in that format. I
get XML errors and my work is completely lost unless I save it as .docx

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


[Libreoffice-commits] core.git: Branch 'feature/chained-text-boxes' - 15 commits - editeng/Library_editeng.mk editeng/source include/editeng include/svx sd/source svx/inc svx/Library_svxcore.mk svx/so

2015-09-19 Thread Thorsten Behrens
Rebased ref, commits from common ancestor:
commit 50468cb6b08c64b98fc9134c8f4a61495a3e5214
Author: Thorsten Behrens 
Date:   Sun Sep 20 01:42:12 2015 +0200

chained editeng: Convert fprintf to SAL_INFO

Change-Id: I8e0cfedd34d7e0d70a30147a3bbf0f1cd8e6d3cc

diff --git a/editeng/source/editeng/impedit3.cxx 
b/editeng/source/editeng/impedit3.cxx
index 70072a2..74eb16d 100644
--- a/editeng/source/editeng/impedit3.cxx
+++ b/editeng/source/editeng/impedit3.cxx
@@ -564,18 +564,13 @@ void ImpEditEngine::CheckAutoPageSize()
 
 void ImpEditEngine::CheckPageOverflow()
 {
-// FIXME(matteocam)
-/* fprintf( stderr, IsPageOverflow(aPaperSize, aPrevPaperSize)
-? "YES Overflow!\n"  : "NO Overflow!\n" ); */
-// setting overflow status
-
-fprintf(stderr, "[CONTROL_STATUS] AutoPageSize is %s",  ( 
aStatus.GetControlWord() & EEControlBits::AUTOPAGESIZE ) ? "ON\n" : "OFF\n" );
+SAL_INFO("editeng.chaining", "[CONTROL_STATUS] AutoPageSize is " << (( 
aStatus.GetControlWord() & EEControlBits::AUTOPAGESIZE ) ? "ON" : "OFF") );
 
 sal_uInt32 nBoxHeight = GetMaxAutoPaperSize().Height();
-fprintf(stderr, "[OVERFLOW-CHECK] Current MaxAutoPaperHeight is %d\n", 
nBoxHeight);
+SAL_INFO("editeng.chaining", "[OVERFLOW-CHECK] Current MaxAutoPaperHeight 
is " << nBoxHeight);
 
 sal_uInt32 nTxtHeight = CalcTextHeight(NULL);
-fprintf(stderr, "[OVERFLOW-CHECK] Current Text Height is %d\n", 
nTxtHeight);
+SAL_INFO("editeng.chaining", "[OVERFLOW-CHECK] Current Text Height is " << 
nTxtHeight);
 
 sal_uInt32 nParaCount = GetParaPortions().Count();
 sal_uInt32 nFirstLineCount = GetLineCount(0);
@@ -4636,7 +4631,7 @@ void 
ImpEditEngine::ImplUpdateOverflowingParaNum(sal_uInt32 nPaperHeight)
 if ( nY > nPaperHeight /*nCurTextHeight*/ ) // found first paragraph 
overflowing
 {
 mnOverflowingPara = nPara;
-fprintf(stderr, "[CHAINING] Setting first overflowing #Para#: 
%d\n", nPara);
+SAL_INFO("editeng.chaining", "[CHAINING] Setting first overflowing 
#Para#: " << nPara);
 ImplUpdateOverflowingLineNum( nPaperHeight, nPara, nY-nPH);
 return;
 }
@@ -4662,13 +4657,13 @@ void 
ImpEditEngine::ImplUpdateOverflowingLineNum(sal_uInt32 nPaperHeight,
 
 // Debugging output
 if (nLine == 0) {
-fprintf(stderr, "[CHAINING] First line has height %d\n", nLH);
+SAL_INFO("editeng.chaining", "[CHAINING] First line has height " 
<< nLH);
 }
 
 if ( nY > nPaperHeight ) // found first line overflowing
 {
 mnOverflowingLine = nLine;
-fprintf(stderr, "[CHAINING] Setting first overflowing -Line- to: 
%d\n", nLine);
+SAL_INFO("editeng.chaining", "[CHAINING] Setting first overflowing 
-Line- to: " << nLine);
 return;
 }
 }
diff --git a/editeng/source/outliner/outliner.cxx 
b/editeng/source/outliner/outliner.cxx
index 77bb66a..040bc6e 100644
--- a/editeng/source/outliner/outliner.cxx
+++ b/editeng/source/outliner/outliner.cxx
@@ -2094,17 +2094,16 @@ NonOverflowingText *Outliner::GetNonOverflowingText() 
const
 
 // Defensive check: oveflowing para index beyond actual # of paragraphs?
 if ( nCount > GetParagraphCount()-1) {
-fprintf(stderr,
-"[Overflowing] Ops, trying to retrieve para %d when max index 
is %d\n",
-nCount,
-GetParagraphCount()-1);
+SAL_INFO("editeng.chaining",
+ "[Overflowing] Ops, trying to retrieve para "
+ << nCount << " when max index is " << GetParagraphCount()-1 );
 return NULL;
 }
 
  if (nCount < 0)
  {
-fprintf(stderr,
-"[Overflowing] No Overflowing text but GetNonOverflowinText 
called?!\n");
+SAL_INFO("editeng.chaining",
+ "[Overflowing] No Overflowing text but GetNonOverflowinText 
called?!");
 return NULL;
  }
 
@@ -2202,10 +2201,10 @@ OverflowingText *Outliner::GetOverflowingText() const
 
 // Defensive check: oveflowing para index beyond actual # of paragraphs?
 if ( pEditEngine->GetOverflowingParaNum() > GetParagraphCount()-1) {
-fprintf(stderr,
-"[Overflowing] Ops, trying to retrieve para %d when max index 
is %d\n",
-pEditEngine->GetOverflowingParaNum(),
-GetParagraphCount()-1);
+SAL_INFO("editeng.chaining",
+ "[Overflowing] Ops, trying to retrieve para "
+ << pEditEngine->GetOverflowingParaNum() << " when max index 
is "
+ << GetParagraphCount()-1 );
 return NULL;
 }
 
diff --git a/editeng/source/outliner/overflowingtxt.cxx 
b/editeng/source/outliner/overflowingtxt.cxx
index 60120e5..f48f519 100644
--- a/editeng/source/outliner/overflowingtxt.cxx
+++ b/editeng/source/outliner/overflowingtxt.cxx
@@ -158,11 +158,9 @@ bool 

[Libreoffice-bugs] [Bug 94366] New: Double shadow added to object's with style that has shadow enabled

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94366

Bug ID: 94366
   Summary: Double shadow added to object's with style that has
shadow enabled
   Product: LibreOffice
   Version: 5.0.0.5 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Keywords: regression
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com

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

Steps:
1) Open Impress
2) Insert a rectangle or square
3) Set its style to 'object with shadow'
4) Notice that it has 2 shadows and toggling off the shadow button in the
drawing toolbar will hide the second one.

Regression as this doesnt happen in 4.4 daily. The weird thing is that this
only happens with rectangles and squares.

Version: 5.1.0.0.alpha1+
Build ID: cbf3fac0a5a1be34b2e1a58da959debd24ebc017
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2015-09-17_07:03:22
Locale: en-US (en_US.UTF-8)

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


[Libreoffice-bugs] [Bug 93580] META: HELPAUTHORING Issues

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93580
Bug 93580 depends on bug 94331, which changed state.

Bug 94331 Summary: Show help authoring menu in start center
https://bugs.documentfoundation.org/show_bug.cgi?id=94331

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 94331] Show help authoring menu in start center

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94331

Maxim Monastirsky  changed:

   What|Removed |Added

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

--- Comment #4 from Maxim Monastirsky  ---
Done with
http://cgit.freedesktop.org/libreoffice/contrib/dev-tools/commit/?id=4f3df53943c11c5b6a2333a623435fe8012d58d8

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


[Libreoffice-bugs] [Bug 94331] Show help authoring menu in start center

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94331
Bug 94331 depends on bug 76197, which changed state.

Bug 76197 Summary: Other: OfficeMenuBar no longer takes private menu's in 
StartModule
https://bugs.documentfoundation.org/show_bug.cgi?id=76197

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 76197] Other: OfficeMenuBar no longer takes private menu's in StartModule

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76197

--- Comment #7 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=b1326ecbb793a5940719b59a049368e7be45147a

tdf#76197 Make OfficeMenuBar work again in the start center

It will be available in 5.1.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds
Affected users are encouraged to test the fix and report feedback.

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


[Libreoffice-bugs] [Bug 76197] Other: OfficeMenuBar no longer takes private menu's in StartModule

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76197

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|BSA |BSA target:5.1.0

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


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

2015-09-19 Thread Maxim Monastirsky
 framework/source/uielement/menubarmanager.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit b1326ecbb793a5940719b59a049368e7be45147a
Author: Maxim Monastirsky 
Date:   Sun Sep 20 01:04:50 2015 +0300

tdf#76197 Make OfficeMenuBar work again in the start center

Regression of 4a7720e18238b926531a7082dbb8bc524889.
The code in MenuBarManager::FillMenuManager merges the
addon menu before .uno:WindowList, which doesn't exist
in the start center since that commit.

As a last resort, let's also check for .uno:HelpMenu
(assuming that it's never placed before the Window menu).

Change-Id: If45eebe4351c40d8ed69daba527844ffc02e8458

diff --git a/framework/source/uielement/menubarmanager.cxx 
b/framework/source/uielement/menubarmanager.cxx
index 3a3c512..405fb9d 100644
--- a/framework/source/uielement/menubarmanager.cxx
+++ b/framework/source/uielement/menubarmanager.cxx
@@ -1139,7 +1139,8 @@ void MenuBarManager::FillMenuManager( Menu* pMenu, const 
Reference< XFrame >& rF
 {
 sal_uInt16  nItemId  = pMenu->GetItemId( nPos );
 OUString aCommand = pMenu->GetItemCommand( nItemId );
-if ( nItemId == SID_MDIWINDOWLIST || aCommand == 
aSpecialWindowCommand)
+if ( nItemId == SID_MDIWINDOWLIST || aCommand == 
aSpecialWindowCommand ||
+ nItemId == SID_HELPMENU || aCommand == aCmdHelpMenu )
 {
 // Retrieve addon popup menus and add them to our menu bar
 framework::AddonMenuManager::MergeAddonPopupMenus( rFrame, 
nPos, static_cast(pMenu), m_xContext );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 76197] Other: OfficeMenuBar no longer takes private menu's in StartModule

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76197

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


[Libreoffice-commits] dev-tools.git: helpauthoring/Addons.xcu

2015-09-19 Thread Maxim Monastirsky
 helpauthoring/Addons.xcu |   80 ++-
 1 file changed, 79 insertions(+), 1 deletion(-)

New commits:
commit 4f3df53943c11c5b6a2333a623435fe8012d58d8
Author: Maxim Monastirsky 
Date:   Sun Sep 20 01:30:02 2015 +0300

helpauthoring: Show menu in the start center (tdf#94331)

diff --git a/helpauthoring/Addons.xcu b/helpauthoring/Addons.xcu
index 3894e58..4870209 100644
--- a/helpauthoring/Addons.xcu
+++ b/helpauthoring/Addons.xcu
@@ -26,7 +26,7 @@
 Help Authoring
 
 
-
com.sun.star.text.TextDocument,com.sun.star.sdb.OfficeDatabaseDocument,com.sun.star.script.BasicIDE
+
com.sun.star.text.TextDocument,com.sun.star.frame.StartModule
 
 
 
@@ -57,6 +57,9 @@
 
 Paragraph Styles
 
+
+com.sun.star.text.TextDocument
+
 
 
 
@@ -112,6 +115,9 @@
 
 Character Styles
 
+
+com.sun.star.text.TextDocument
+
 
 
 
@@ -153,6 +159,9 @@
 
 Insert Embed 
(embed) 
 
+
+com.sun.star.text.TextDocument
+
 
 
 
@@ -162,6 +171,9 @@
 
 Insert Link (link) 

 
+
+com.sun.star.text.TextDocument
+
 
 
 
@@ -171,6 +183,9 @@
 
 Open Embed or 
Link File 
 
+
+com.sun.star.text.TextDocument
+
 
 
 
@@ -196,6 +211,9 @@
 
 Insert Section 
(section) 
 
+
+com.sun.star.text.TextDocument
+
 
 
 
@@ -205,6 +223,9 @@
 
 Insert How to 
Get Section 
 
+
+com.sun.star.text.TextDocument
+
 
 
 
@@ -214,6 +235,9 @@
 
 Insert Related 
Topics Section 
 
+
+com.sun.star.text.TextDocument
+
 
 
 
@@ -223,6 +247,9 @@
 
 Edit IDs and Delete 
Sections 
 
+
+com.sun.star.text.TextDocument
+
 
 
 
@@ -232,6 +259,9 @@
 
 Insert Variable 
(variable/var) 
 
+
+com.sun.star.text.TextDocument
+
 
 
 
@@ -248,6 +278,9 @@
 
 Insert Help ID 
(bookmark branch=hid/...) 
 
+
+com.sun.star.text.TextDocument
+
 
 
 
@@ -257,6 +290,9 @@
 
 Insert Extended Tooltip 
(ahelp/avis/ahid) 
 
+
+com.sun.star.text.TextDocument
+
 
 
 
@@ -266,6 +302,9 @@
 
 Insert Comment 
(comment) 
 
+
+com.sun.star.text.TextDocument
+
 
 
 
@@ -275,11 +314,17 @@
 

[Libreoffice-bugs] [Bug 55620] FILEOPEN: LibreOffice hangs with 100% CPU when opening particular doc document

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55620

--- Comment #10 from Alexandr  ---
Created attachment 118851
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118851=edit
Valgrind log

Maybe Valgrind log can help. It was obtained from 

LibreOffice 5.1.0.0.alpha1+
Build ID: e98cf0c63d6c48ca7c1db87d7413d5c419690c76
TinderBox: Linux-rpm_deb-x86_64@70-TDF-dbg, Branch:master, Time:
2015-08-11_00:12:34
Locale: ru-RU (ru_RU.UTF-8)

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


[Libreoffice-bugs] [Bug 94197] Sidebar style list should take symbol fonts into account like the font selection dropdown

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94197

Maxim Monastirsky  changed:

   What|Removed |Added

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

--- Comment #4 from Maxim Monastirsky  ---


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

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


[Libreoffice-bugs] [Bug 51164] FILEOPEN: Incorrect svg fill rendering when a line is added after a closed shape

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51164

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de
 Blocks||88277
Summary|Incorrect svg fill  |FILEOPEN: Incorrect svg
   |rendering when a line is|fill rendering when a line
   |added after a closed shape  |is added after a closed
   ||shape

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


[Libreoffice-bugs] [Bug 88277] Meta: SVG fileOpen filter (Draw)

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88277

Regina Henschel  changed:

   What|Removed |Added

 Depends on||51164

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


[Libreoffice-bugs] [Bug 94348] Preview pane in Impress not updated in real-time

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94348

Adolfo Jayme  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INVALID

--- Comment #5 from Adolfo Jayme  ---
And you’re still not cooperating. Good luck getting people to help you with
your bitching.

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


[Libreoffice-bugs] [Bug 94365] New: Charts inserted with a data table dont have white chart area fill

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94365

Bug ID: 94365
   Summary: Charts inserted with a data table dont have white
chart area fill
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Chart
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com

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

Steps:
1) Open Impress
2) Change the slide background color
3) Insert a chart
4) Notice that the chart background is set to none, though it shows a white
background in chart edit mode
5) Exit chart edit mode and the chart background will be invisible

This is not the same behaviour that happens in Calc when inserting a chart with
a data range.

Version: 5.1.0.0.alpha1+
Build ID: cbf3fac0a5a1be34b2e1a58da959debd24ebc017
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2015-09-17_07:03:22
Locale: en-US (en_US.UTF-8)

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


[Libreoffice-bugs] [Bug 90090] Rearranging the UI of Draw

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90090

--- Comment #34 from Kurt  ---
Created attachment 118858
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118858=edit
1366 x 768 view of toolbar with hidden tools

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


[Libreoffice-ux-advise] [Bug 89360] OS and LO custom file dialogs should retain filetype selection

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89360

Yousuf (Jay) Philips  changed:

   What|Removed |Added

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

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


[Libreoffice-ux-advise] [Bug 94169] Open split button recent document list should show icons next to entries

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94169

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 Whiteboard||needsDevEval topicUI

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


[Libreoffice-bugs] [Bug 94169] Open split button recent document list should show icons next to entries

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94169

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 Whiteboard||needsDevEval topicUI

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


[Libreoffice-bugs] [Bug 94371] calc: graph: formatting font of legend moves legend to left hand side

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94371

--- Comment #3 from Elmar  ---
Created attachment 118866
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118866=edit
see file name

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


[Libreoffice-bugs] [Bug 94293] Writer crashes/exit each time I press space bar

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94293

Maxim Monastirsky  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #10 from Maxim Monastirsky  ---
Changing to NEEDINFO until the requested information is provided.

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


[Libreoffice-bugs] [Bug 94364] New: File crashes every time is it saved after checking "same header left/right"

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94364

Bug ID: 94364
   Summary: File crashes every time is it saved after checking
"same header left/right"
   Product: LibreOffice
   Version: 5.0.1.2 release
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mador...@shaw.ca

Created attachment 118852
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118852=edit
file that crashes whenever the Header properties are changed to "same content
left/right"

Whenever I click the option under Header to get the header to repeat on all
pages (same left/right), the file permits further editing, but crashes
immediately when clicking X to close the program. Then demands the file be
recovered, and when the file is recovered, the headers have switched back,
showing only on the first page and not on the other.

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


[Libreoffice-ux-advise] [Bug 94321] Add ability to zoom in Chart

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94321

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC|libreoffice-ux-advise@lists |
   |.freedesktop.org|
  Component|ux-advise   |Chart
 Ever confirmed|0   |1
 Whiteboard||needsDevEval topicUI

--- Comment #4 from Yousuf (Jay) Philips  ---
(In reply to Heiko Tietze from comment #3)
> So you don't want to zoom the chart but the whole spreadsheet meaning the
> existing zoom function should work in chart edit mode as well, right? That
> makes sense.

Yep. :D

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


[Libreoffice-bugs] [Bug 94347] characters "fh" merged into a ligature using font Calibri

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94347

--- Comment #3 from Adolfo Jayme  ---
I can’t reproduce what you indicate. I’ve tested in both Windows 10 and Ubuntu
15.10, using Calibri Regular version 6.11 and LibreOffice 5.0.2.

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


[Libreoffice-bugs] [Bug 94347] characters "fh" merged into a ligature using font Calibri

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94347

James  changed:

   What|Removed |Added

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

--- Comment #4 from James  ---
I'm using Scientific Linux 7.1.  I actually just quickly downloaded the 5.0.1
release and both this bug and the other bug I just reported are still there.

Thanks for your help, but I'm afraid I'm not going to be able to provide you
with the information that you need in order to debug and fix this bug.  So I'm
just going to close this bug as resolved and move on. Regards.

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


[Libreoffice-bugs] [Bug 94003] LO Calc AutoInput

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94003

--- Comment #8 from gmarco  ---
(In reply to Beluga from comment #6)
> So the thing that is annoying you is the fact that the autoinput is not
> case-sensitive, right?
Surely I am not annoying, I simply can deselect the function, but I think that
something is wrong.

> If we delete everything from column A we still get the same proposals in
> column B.
Logically, you have to try in a new ods folder and not in the same one after
deleting col.A

But look at the new attached ods: foil1 is similar to the previous, foils2-3
are new.
In foil1, beyond the anomaly on the inputing in col.B, view lines
8-11-19-20-21-23-24
In foils2-3 the anomaly in foil1 is not present.

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


[Libreoffice-bugs] [Bug 94131] FEATURE REQUEST - Easier Setting Default Templates

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94131

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 CC||philip...@hotmail.com

--- Comment #2 from Yousuf (Jay) Philips  ---
Created attachment 118854
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118854=edit
save template dialog

Yes it would be useful to have a checkbox in the dialog for entering in the
template name (File > Templates > Save As Templates) to be able to set that it
be the default template, rather than after adding it to the list of templates,
to reopen the template manager to set it to default.

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


[Libreoffice-ux-advise] [Bug 94131] FEATURE REQUEST - Easier Setting Default Templates

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94131

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 CC||philip...@hotmail.com

--- Comment #2 from Yousuf (Jay) Philips  ---
Created attachment 118854
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118854=edit
save template dialog

Yes it would be useful to have a checkbox in the dialog for entering in the
template name (File > Templates > Save As Templates) to be able to set that it
be the default template, rather than after adding it to the list of templates,
to reopen the template manager to set it to default.

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


[Libreoffice-commits] core.git: Branch 'feature/chained-text-boxes' - editeng/source svx/source

2015-09-19 Thread Thorsten Behrens
Rebased ref, commits from common ancestor:
commit a99fa0a3c9a4833f7b30d1b4eaa2ac7fc7246cf6
Author: Thorsten Behrens 
Date:   Sun Sep 20 01:42:12 2015 +0200

chained editeng: Convert fprintf to SAL_INFO

Change-Id: I8e0cfedd34d7e0d70a30147a3bbf0f1cd8e6d3cc

diff --git a/editeng/source/editeng/impedit3.cxx 
b/editeng/source/editeng/impedit3.cxx
index 70072a2..74eb16d 100644
--- a/editeng/source/editeng/impedit3.cxx
+++ b/editeng/source/editeng/impedit3.cxx
@@ -564,18 +564,13 @@ void ImpEditEngine::CheckAutoPageSize()
 
 void ImpEditEngine::CheckPageOverflow()
 {
-// FIXME(matteocam)
-/* fprintf( stderr, IsPageOverflow(aPaperSize, aPrevPaperSize)
-? "YES Overflow!\n"  : "NO Overflow!\n" ); */
-// setting overflow status
-
-fprintf(stderr, "[CONTROL_STATUS] AutoPageSize is %s",  ( 
aStatus.GetControlWord() & EEControlBits::AUTOPAGESIZE ) ? "ON\n" : "OFF\n" );
+SAL_INFO("editeng.chaining", "[CONTROL_STATUS] AutoPageSize is " << (( 
aStatus.GetControlWord() & EEControlBits::AUTOPAGESIZE ) ? "ON" : "OFF") );
 
 sal_uInt32 nBoxHeight = GetMaxAutoPaperSize().Height();
-fprintf(stderr, "[OVERFLOW-CHECK] Current MaxAutoPaperHeight is %d\n", 
nBoxHeight);
+SAL_INFO("editeng.chaining", "[OVERFLOW-CHECK] Current MaxAutoPaperHeight 
is " << nBoxHeight);
 
 sal_uInt32 nTxtHeight = CalcTextHeight(NULL);
-fprintf(stderr, "[OVERFLOW-CHECK] Current Text Height is %d\n", 
nTxtHeight);
+SAL_INFO("editeng.chaining", "[OVERFLOW-CHECK] Current Text Height is " << 
nTxtHeight);
 
 sal_uInt32 nParaCount = GetParaPortions().Count();
 sal_uInt32 nFirstLineCount = GetLineCount(0);
@@ -4636,7 +4631,7 @@ void 
ImpEditEngine::ImplUpdateOverflowingParaNum(sal_uInt32 nPaperHeight)
 if ( nY > nPaperHeight /*nCurTextHeight*/ ) // found first paragraph 
overflowing
 {
 mnOverflowingPara = nPara;
-fprintf(stderr, "[CHAINING] Setting first overflowing #Para#: 
%d\n", nPara);
+SAL_INFO("editeng.chaining", "[CHAINING] Setting first overflowing 
#Para#: " << nPara);
 ImplUpdateOverflowingLineNum( nPaperHeight, nPara, nY-nPH);
 return;
 }
@@ -4662,13 +4657,13 @@ void 
ImpEditEngine::ImplUpdateOverflowingLineNum(sal_uInt32 nPaperHeight,
 
 // Debugging output
 if (nLine == 0) {
-fprintf(stderr, "[CHAINING] First line has height %d\n", nLH);
+SAL_INFO("editeng.chaining", "[CHAINING] First line has height " 
<< nLH);
 }
 
 if ( nY > nPaperHeight ) // found first line overflowing
 {
 mnOverflowingLine = nLine;
-fprintf(stderr, "[CHAINING] Setting first overflowing -Line- to: 
%d\n", nLine);
+SAL_INFO("editeng.chaining", "[CHAINING] Setting first overflowing 
-Line- to: " << nLine);
 return;
 }
 }
diff --git a/editeng/source/outliner/outliner.cxx 
b/editeng/source/outliner/outliner.cxx
index 77bb66a..040bc6e 100644
--- a/editeng/source/outliner/outliner.cxx
+++ b/editeng/source/outliner/outliner.cxx
@@ -2094,17 +2094,16 @@ NonOverflowingText *Outliner::GetNonOverflowingText() 
const
 
 // Defensive check: oveflowing para index beyond actual # of paragraphs?
 if ( nCount > GetParagraphCount()-1) {
-fprintf(stderr,
-"[Overflowing] Ops, trying to retrieve para %d when max index 
is %d\n",
-nCount,
-GetParagraphCount()-1);
+SAL_INFO("editeng.chaining",
+ "[Overflowing] Ops, trying to retrieve para "
+ << nCount << " when max index is " << GetParagraphCount()-1 );
 return NULL;
 }
 
  if (nCount < 0)
  {
-fprintf(stderr,
-"[Overflowing] No Overflowing text but GetNonOverflowinText 
called?!\n");
+SAL_INFO("editeng.chaining",
+ "[Overflowing] No Overflowing text but GetNonOverflowinText 
called?!");
 return NULL;
  }
 
@@ -2202,10 +2201,10 @@ OverflowingText *Outliner::GetOverflowingText() const
 
 // Defensive check: oveflowing para index beyond actual # of paragraphs?
 if ( pEditEngine->GetOverflowingParaNum() > GetParagraphCount()-1) {
-fprintf(stderr,
-"[Overflowing] Ops, trying to retrieve para %d when max index 
is %d\n",
-pEditEngine->GetOverflowingParaNum(),
-GetParagraphCount()-1);
+SAL_INFO("editeng.chaining",
+ "[Overflowing] Ops, trying to retrieve para "
+ << pEditEngine->GetOverflowingParaNum() << " when max index 
is "
+ << GetParagraphCount()-1 );
 return NULL;
 }
 
diff --git a/editeng/source/outliner/overflowingtxt.cxx 
b/editeng/source/outliner/overflowingtxt.cxx
index 60120e5..0993e37 100644
--- a/editeng/source/outliner/overflowingtxt.cxx
+++ b/editeng/source/outliner/overflowingtxt.cxx
@@ -19,7 +19,6 @@
 
 

[Libreoffice-bugs] [Bug 94366] Double shadow added to object's with style that has shadow enabled

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94366

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Whiteboard||bibisectRequest

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


[Libreoffice-commits] core.git: Branch 'feature/chained-text-boxes' - 811 commits - accessibility/inc accessibility/source android/source avmedia/source basctl/inc basctl/source basebmp/source basegfx

2015-09-19 Thread Thorsten Behrens
Rebased ref, commits from common ancestor:
commit 98d911f7a692f52d2487aa6905e3a29975197e8a
Author: Thorsten Behrens 
Date:   Sun Sep 20 01:42:12 2015 +0200

chained editeng: Convert fprintf to SAL_INFO

Change-Id: I8e0cfedd34d7e0d70a30147a3bbf0f1cd8e6d3cc

diff --git a/editeng/source/editeng/impedit3.cxx 
b/editeng/source/editeng/impedit3.cxx
index 2298ecc..aef05f5 100644
--- a/editeng/source/editeng/impedit3.cxx
+++ b/editeng/source/editeng/impedit3.cxx
@@ -564,18 +564,13 @@ void ImpEditEngine::CheckAutoPageSize()
 
 void ImpEditEngine::CheckPageOverflow()
 {
-// FIXME(matteocam)
-/* fprintf( stderr, IsPageOverflow(aPaperSize, aPrevPaperSize)
-? "YES Overflow!\n"  : "NO Overflow!\n" ); */
-// setting overflow status
-
-fprintf(stderr, "[CONTROL_STATUS] AutoPageSize is %s",  ( 
aStatus.GetControlWord() & EEControlBits::AUTOPAGESIZE ) ? "ON\n" : "OFF\n" );
+SAL_INFO("editeng.chaining", "[CONTROL_STATUS] AutoPageSize is " << (( 
aStatus.GetControlWord() & EEControlBits::AUTOPAGESIZE ) ? "ON" : "OFF") );
 
 sal_uInt32 nBoxHeight = GetMaxAutoPaperSize().Height();
-fprintf(stderr, "[OVERFLOW-CHECK] Current MaxAutoPaperHeight is %d\n", 
nBoxHeight);
+SAL_INFO("editeng.chaining", "[OVERFLOW-CHECK] Current MaxAutoPaperHeight 
is " << nBoxHeight);
 
 sal_uInt32 nTxtHeight = CalcTextHeight(NULL);
-fprintf(stderr, "[OVERFLOW-CHECK] Current Text Height is %d\n", 
nTxtHeight);
+SAL_INFO("editeng.chaining", "[OVERFLOW-CHECK] Current Text Height is " << 
nTxtHeight);
 
 sal_uInt32 nParaCount = GetParaPortions().Count();
 sal_uInt32 nFirstLineCount = GetLineCount(0);
@@ -4638,7 +4633,7 @@ void 
ImpEditEngine::ImplUpdateOverflowingParaNum(sal_uInt32 nPaperHeight)
 if ( nY > nPaperHeight /*nCurTextHeight*/ ) // found first paragraph 
overflowing
 {
 mnOverflowingPara = nPara;
-fprintf(stderr, "[CHAINING] Setting first overflowing #Para#: 
%d\n", nPara);
+SAL_INFO("editeng.chaining", "[CHAINING] Setting first overflowing 
#Para#: " << nPara);
 ImplUpdateOverflowingLineNum( nPaperHeight, nPara, nY-nPH);
 return;
 }
@@ -4664,13 +4659,13 @@ void 
ImpEditEngine::ImplUpdateOverflowingLineNum(sal_uInt32 nPaperHeight,
 
 // Debugging output
 if (nLine == 0) {
-fprintf(stderr, "[CHAINING] First line has height %d\n", nLH);
+SAL_INFO("editeng.chaining", "[CHAINING] First line has height " 
<< nLH);
 }
 
 if ( nY > nPaperHeight ) // found first line overflowing
 {
 mnOverflowingLine = nLine;
-fprintf(stderr, "[CHAINING] Setting first overflowing -Line- to: 
%d\n", nLine);
+SAL_INFO("editeng.chaining", "[CHAINING] Setting first overflowing 
-Line- to: " << nLine);
 return;
 }
 }
diff --git a/editeng/source/outliner/outliner.cxx 
b/editeng/source/outliner/outliner.cxx
index f0c982f..1f077c2 100644
--- a/editeng/source/outliner/outliner.cxx
+++ b/editeng/source/outliner/outliner.cxx
@@ -2081,17 +2081,16 @@ NonOverflowingText *Outliner::GetNonOverflowingText() 
const
 
 // Defensive check: oveflowing para index beyond actual # of paragraphs?
 if ( nCount > GetParagraphCount()-1) {
-fprintf(stderr,
-"[Overflowing] Ops, trying to retrieve para %d when max index 
is %d\n",
-nCount,
-GetParagraphCount()-1);
+SAL_INFO("editeng.chaining",
+ "[Overflowing] Ops, trying to retrieve para "
+ << nCount << " when max index is " << GetParagraphCount()-1 );
 return NULL;
 }
 
  if (nCount < 0)
  {
-fprintf(stderr,
-"[Overflowing] No Overflowing text but GetNonOverflowinText 
called?!\n");
+SAL_INFO("editeng.chaining",
+ "[Overflowing] No Overflowing text but GetNonOverflowinText 
called?!");
 return NULL;
  }
 
@@ -2189,10 +2188,10 @@ OverflowingText *Outliner::GetOverflowingText() const
 
 // Defensive check: oveflowing para index beyond actual # of paragraphs?
 if ( pEditEngine->GetOverflowingParaNum() > GetParagraphCount()-1) {
-fprintf(stderr,
-"[Overflowing] Ops, trying to retrieve para %d when max index 
is %d\n",
-pEditEngine->GetOverflowingParaNum(),
-GetParagraphCount()-1);
+SAL_INFO("editeng.chaining",
+ "[Overflowing] Ops, trying to retrieve para "
+ << pEditEngine->GetOverflowingParaNum() << " when max index 
is "
+ << GetParagraphCount()-1 );
 return NULL;
 }
 
diff --git a/editeng/source/outliner/overflowingtxt.cxx 
b/editeng/source/outliner/overflowingtxt.cxx
index 60120e5..0993e37 100644
--- a/editeng/source/outliner/overflowingtxt.cxx
+++ b/editeng/source/outliner/overflowingtxt.cxx
@@ -19,7 +19,6 @@
 
 

[Libreoffice-bugs] [Bug 93968] Bullets character style uses opensymbol font so has square box preview

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93968

Maxim Monastirsky  changed:

   What|Removed |Added

 CC||yanp...@gmail.com

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

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


[Libreoffice-bugs] [Bug 94348] Preview pane in Impress not updated in real-time

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94348

--- Comment #4 from James  ---
This isn't actually my first foray in open source. I have been using linux for
almost two decades, and I am also the lead developer on an open source project.

My claim about the newest release of open source software being extremely buggy
is based on a lot of experience not rumor.

I wish this were not the case. I wish that open source projects routinely
maintained stable and current branches, backported bug fixes into stable, took
bug reports against stable seriously, and that distros trusted and closely
followed the stable branch as a result. But that isn't the world we live in.

Please just close this bug. I've gone through this dance before, and nothing
ever useful comes from it. It was a mistake to file a bug report in the first
place. Thanks.

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


[Libreoffice-bugs] [Bug 94358] Page Register doesn't save in documents

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94358

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #1 from Regina Henschel  ---
Use .odt file format to get all features of LibreOffice.

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


[Libreoffice-bugs] [Bug 94003] LO Calc AutoInput

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94003

--- Comment #7 from gmarco  ---
Created attachment 118853
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118853=edit
sample case bis

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


[Libreoffice-bugs] [Bug 94321] Add ability to zoom in Chart

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94321

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC|libreoffice-ux-advise@lists |
   |.freedesktop.org|
  Component|ux-advise   |Chart
 Ever confirmed|0   |1
 Whiteboard||needsDevEval topicUI

--- Comment #4 from Yousuf (Jay) Philips  ---
(In reply to Heiko Tietze from comment #3)
> So you don't want to zoom the chart but the whole spreadsheet meaning the
> existing zoom function should work in chart edit mode as well, right? That
> makes sense.

Yep. :D

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


[Libreoffice-bugs] [Bug 94371] calc: graph: formatting font of legend moves legend to left hand side

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94371

--- Comment #2 from Elmar  ---
Created attachment 118865
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118865=edit
see file name

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


[Libreoffice-bugs] [Bug 94371] calc: graph: formatting font of legend moves legend to left hand side

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94371

Elmar  changed:

   What|Removed |Added

 CC||rob...@iafrica.com

--- Comment #1 from Elmar  ---
Created attachment 118864
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118864=edit
see file name

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


[Libreoffice-commits] core.git: Branch 'distro/collabora/lov-5.0' - translations

2015-09-19 Thread Christian Lohmaier
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3f1b620758e4cde98efb723fdac4c56e6cb6e4dc
Author: Christian Lohmaier 
Date:   Thu Sep 17 14:16:14 2015 +0200

Updated core
Project: translations  4dab7ebff46a1fc46552a21cff65ae4984a31310

update translations for 5.0.2 rc2

and force-fix errors using pocheck

Change-Id: I75c2c6b364f384a88b94961160609ba4206bb63d

diff --git a/translations b/translations
index ee62796..4dab7eb 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit ee62796699c03b6d31184697010db569f6dae8de
+Subproject commit 4dab7ebff46a1fc46552a21cff65ae4984a31310
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 90090] Rearranging the UI of Draw

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90090

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 CC||kurt.fitz...@gmail.com

--- Comment #32 from Yousuf (Jay) Philips  ---
Hi Kurt,

(In reply to Kurt from comment #31)
> Have just installed version 5 which includes this change.  This change is a
> significant step back in usability since the toolbar, once docked, is not
> resizable nor does it have anything in it to allow scrolling.

The toolbar is docked by default, but if you prefer it to be how it used to be,
it is simple to dock it in its old position.

> The extra
> tools not shown are available only through the double-arrow "extra" button,
> but when accessed that way, you cannot select anything but the default use
> of a tool.  You can't, for example, access the different types of callouts
> in the callout tool.

What screen resolution are you viewing at as no tools are hidden at my 1280x768
resolution. Would be useful if you provide a screenshot so it is easy to see
what you see.

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


[Libreoffice-bugs] [Bug 94350] Crash when applying gradient background to chart

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94350

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #2 from m.a.riosv  ---
I can't reproduce with:
Win10x64
Version: 5.0.2.2 (x64) Build ID: 37b43f919e4de5eeaca9b9755ed688758a8251fe
Version: 5.0.3.0.0+ Build ID: 4ae70fd6c93087ce66c76d3102ad678bcf01dbf5-GL
  TinderBox: Win-x86@62-merge-TDF, Branch:libreoffice-5-0, Time:
2015-09-18_12:03:30
Version: 5.1.0.0.alpha1+ Build ID: ac226443522c55ab75cab8eed354b999052135a7
  TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2015-09-18_23:26:58

If with a clean reset it happens, then try if some option in
 Menu/Tools/Options/LibreOffice/View - Graphics output
has any effect on it.

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


[Libreoffice-ux-advise] [Bug 79803] Open file dialog should list files relevant to the open module

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79803

Yousuf (Jay) Philips  changed:

   What|Removed |Added

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

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


[Libreoffice-ux-advise] [Bug 94177] Additional filetype entries in the file open dialog

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94177

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=79
   ||803,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=89
   ||360
 Ever confirmed|0   |1
 Whiteboard||needsDevEval topicUI

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


[Libreoffice-bugs] [Bug 94091] Removing File > Printer Settings

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94091

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
  Component|UI  |ux-advise
 Ever confirmed|0   |1

--- Comment #8 from Yousuf (Jay) Philips  ---
Lets move to NEW to not disturb the QA team.

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


[Libreoffice-bugs] [Bug 94177] Additional filetype entries in the file open dialog

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94177

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=79
   ||803,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=89
   ||360
 Ever confirmed|0   |1
 Whiteboard||needsDevEval topicUI

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


[Libreoffice-bugs] [Bug 79803] Open file dialog should list files relevant to the open module

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79803

Yousuf (Jay) Philips  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 89360] OS and LO custom file dialogs should retain filetype selection

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89360

Yousuf (Jay) Philips  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 94368] New: DOCX has extra indent for numbering

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94368

Bug ID: 94368
   Summary: DOCX has extra indent for numbering
   Product: LibreOffice
   Version: 5.0.2.1 rc
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: akorni...@gmail.com

Created attachment 118859
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118859=edit
Document to play with

Hi,

1. I have a correct DOC file, everything is OK in both LO4 and LO5.
2. I export it to DOCX, using LO5.
3. Open that DOCX in LO5 and get extra indent for text (and some other problems
with tabulation below)
4. Open _the same_ DOCX in LO4 and do not have that extra indent.

See the attached screenshot and text file.

Thank you.

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


[Libreoffice-bugs] [Bug 94371] New: calc: graph: formatting font of legend moves legend to left hand side

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94371

Bug ID: 94371
   Summary: calc: graph: formatting font of legend moves legend to
left hand side
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rob...@iafrica.com

User-Agent:   Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:40.0)
Gecko/20100101 Firefox/40.0
Build Identifier: LibreOffice 5.0.1.2

If I change format of graph legend, the legend box moves to left hand side of
graph box.

Reproducible: Always

Steps to Reproduce:
1. click to edit graph
2. click to edit legend
3. change font and size
4. click outside to close
legend box moves



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


Reset User Profile?yes

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


[Libreoffice-qa] [ANN] LibreOffice 5.0.2 RC2 available

2015-09-19 Thread Christian Lohmaier
Dear Community,

The Document Foundation is pleased to announce the second release
candidate of LibreOffice 5.0.2. The upcoming 5.0.0 will be the second
bugfix release of our fresh 5.0 line. Please be aware that LibreOffice
5.0.2 RC2 has not been flagged as ready for production use yet,
however feel free to give it a try instead of 5.0.0.

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

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/

Windows builds are also provided in 64bit version.

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

  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 compared to 5.0.2 rc1 is
available from our wiki:

  http://wiki.documentfoundation.org/Releases/5.0.2/RC2

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

[ANN] LibreOffice 5.0.2 RC2 available

2015-09-19 Thread Christian Lohmaier
Dear Community,

The Document Foundation is pleased to announce the second release
candidate of LibreOffice 5.0.2. The upcoming 5.0.0 will be the second
bugfix release of our fresh 5.0 line. Please be aware that LibreOffice
5.0.2 RC2 has not been flagged as ready for production use yet,
however feel free to give it a try instead of 5.0.0.

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

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/

Windows builds are also provided in 64bit version.

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

  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 compared to 5.0.2 rc1 is
available from our wiki:

  http://wiki.documentfoundation.org/Releases/5.0.2/RC2

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


[Libreoffice-commits] core.git: bin/lo-all-static-libs external/Module_external.mk

2015-09-19 Thread Tor Lillqvist
 bin/lo-all-static-libs  |2 --
 external/Module_external.mk |2 +-
 2 files changed, 1 insertion(+), 3 deletions(-)

New commits:
commit a7b9d29dd6b166c134666f8a235afbc1f2bd0288
Author: Tor Lillqvist 
Date:   Sat Sep 19 21:06:14 2015 +0300

We don't want libxmlsec on iOS, I think

It would require NSS which I just decided to skip. If/when we patch it
to support native iOS (and OS X?) crypto APIs, re-consider. Or
something.

Now the TiledLibreOffice iOS demo app builds again.

Change-Id: I2816a49bbdbde5a8f9d3b9fcdfff420bdca05ff8

diff --git a/bin/lo-all-static-libs b/bin/lo-all-static-libs
index effa190..e6052c3 100755
--- a/bin/lo-all-static-libs
+++ b/bin/lo-all-static-libs
@@ -44,8 +44,6 @@ ANDROID)
 ;;
 IOS)
 oslibs="$WORKDIR/UnpackedTarball/icu/source/stubdata/*.a"
-oslibs="$oslibs $WORKDIR/UnpackedTarball/xmlsec/src/.libs/*.a"
-oslibs="$oslibs $WORKDIR/UnpackedTarball/xmlsec/src/nss/.libs/*.a"
 ;;
 *)
 oslibs=
diff --git a/external/Module_external.mk b/external/Module_external.mk
index 51900d5..a5dcade 100644
--- a/external/Module_external.mk
+++ b/external/Module_external.mk
@@ -19,7 +19,7 @@ endif
 
 $(eval $(call gb_Module_add_moduledirs,external,\
accessories \
-   libxmlsec \
+   $(if $(filter-out IOS,$(OS)),libxmlsec) \
$(call gb_Helper_optional,ABW,libabw) \
$(call gb_Helper_optional,APACHE_COMMONS,apache-commons) \
$(call gb_Helper_optional,APR,apr) \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


CppCheck Report Update

2015-09-19 Thread cppcheck.libreoff...@gmail.com

A new cppcheck report is available at : 
http://dev-builds.libreoffice.org/cppcheck_reports/master/


Note:
The script generating this report was run at :
2015-20-09_02:24:19 with user buildslave at host vm140 as 
/home/buildslave/source/dev-tools/cppcheck/cppcheck-report.sh -s 
/home/buildslave/source/libo-core -c /home/buildslave/source/cppcheck -w 
/home/buildslave/tmp/www

It can be found and improved here:

https://gerrit.libreoffice.org/gitweb?p=dev-tools.git;a=blob;f=cppcheck/cppcheck-report.sh


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


[Libreoffice-ux-advise] [Bug 89369] Unable to set default fill and line styles in Calc and Writer

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89369

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 CC|libreoffice-ux-advise@lists |momonas...@gmail.com,
   |.freedesktop.org|philip...@hotmail.com
  Component|ux-advise   |UI

--- Comment #11 from Yousuf (Jay) Philips  ---
(In reply to Yan Pashkovsky from comment #4)
> What I want - is to set default colors of drawing objects in Writer/Calc. I
> do not want to draw blue objects always

In order to not draw blue objects always, you would need to set the fill and
line colors before drawing a shape and in order to do that, you'd need to add
the fill and line color controls to the drawing toolbar, as the drawing object
properties toolbar is context sensitive.

This is the same way it works in Impress and Draw, as the drawing toolbar is
always visible and those two controls are in it. It might be useful to also add
those two controls into the drawing toolbar by default in Writer and Calc, as i
did with impress and draw, though it may seem strange that the drawing and
drawing object properties toolbars both have the same two coloring controls.

(In reply to V Stuart Foote from comment #5)
> Three aspects to this enhancement:
> 
> 1) It should be possible to add the same four default Object styles to the
> Calc and Writer Styles and Formatting content panel. Possibly as an addition
> to the Paragraph - Character - Frame - Page - List horizontal bar. Or if
> need be as a new content panel for Drawings and Graphics.

Styling of images/graphics in Writer is handled in frame styles, as images are
treated as frames in Writer.

> 2) It should be possible to make assignment of default color for Area color
> and Line color available either from the Tools -> Options -> Appearance
> panel, or from the Tools -> Options ->  Advanced: Expert Configuration
> dialog.

Yes that would be great, as the default colors are hardcoded. (bug 90721)

> 3) A more comprehensive set of predefined attributes for drawing/graphics
> objects could expand the limited set of four now provided.

Yes this was a definite thing that needed to be changed, as me, heiko,
matthias, and others at a design meeting went through them and laughed that
they were pretty much useless. Same thing happened with cell styles (90937).

(In reply to Yan Pashkovsky from comment #7)
> Addition to enchancement: 
> 4) Add line with arrow (LWA) on the end to Writer and Calc drawing panel.
> Very handy for drawing schemes.

Many of the drawing controls found in Impress/Draw arent available in Writer
and Calc, or else i would have already added them. (.uno:LineArrowEnd,
.uno:ArrowsToolbox, .uno:LineToolbox, .uno:ConnectorToolbox, .uno:Polygon [bug
90505])

> I guess the reason why LWA exists in Draw and Impress is styles of graphical
> objects. Writer and Calc remember only one type of each graphical object.

I doubt object styles would be the reason why. @Maxim: Any insights?

Would be useful to retain this bug specifically for shape styles in write/calc
and open up separate ones for other enhancements. I'll be opening the one about
a new set of default graphic styles in impress/draw.

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


[Libreoffice-bugs] [Bug 89369] Unable to set default fill and line styles in Calc and Writer

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89369

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 CC|libreoffice-ux-advise@lists |momonas...@gmail.com,
   |.freedesktop.org|philip...@hotmail.com
  Component|ux-advise   |UI

--- Comment #11 from Yousuf (Jay) Philips  ---
(In reply to Yan Pashkovsky from comment #4)
> What I want - is to set default colors of drawing objects in Writer/Calc. I
> do not want to draw blue objects always

In order to not draw blue objects always, you would need to set the fill and
line colors before drawing a shape and in order to do that, you'd need to add
the fill and line color controls to the drawing toolbar, as the drawing object
properties toolbar is context sensitive.

This is the same way it works in Impress and Draw, as the drawing toolbar is
always visible and those two controls are in it. It might be useful to also add
those two controls into the drawing toolbar by default in Writer and Calc, as i
did with impress and draw, though it may seem strange that the drawing and
drawing object properties toolbars both have the same two coloring controls.

(In reply to V Stuart Foote from comment #5)
> Three aspects to this enhancement:
> 
> 1) It should be possible to add the same four default Object styles to the
> Calc and Writer Styles and Formatting content panel. Possibly as an addition
> to the Paragraph - Character - Frame - Page - List horizontal bar. Or if
> need be as a new content panel for Drawings and Graphics.

Styling of images/graphics in Writer is handled in frame styles, as images are
treated as frames in Writer.

> 2) It should be possible to make assignment of default color for Area color
> and Line color available either from the Tools -> Options -> Appearance
> panel, or from the Tools -> Options ->  Advanced: Expert Configuration
> dialog.

Yes that would be great, as the default colors are hardcoded. (bug 90721)

> 3) A more comprehensive set of predefined attributes for drawing/graphics
> objects could expand the limited set of four now provided.

Yes this was a definite thing that needed to be changed, as me, heiko,
matthias, and others at a design meeting went through them and laughed that
they were pretty much useless. Same thing happened with cell styles (90937).

(In reply to Yan Pashkovsky from comment #7)
> Addition to enchancement: 
> 4) Add line with arrow (LWA) on the end to Writer and Calc drawing panel.
> Very handy for drawing schemes.

Many of the drawing controls found in Impress/Draw arent available in Writer
and Calc, or else i would have already added them. (.uno:LineArrowEnd,
.uno:ArrowsToolbox, .uno:LineToolbox, .uno:ConnectorToolbox, .uno:Polygon [bug
90505])

> I guess the reason why LWA exists in Draw and Impress is styles of graphical
> objects. Writer and Calc remember only one type of each graphical object.

I doubt object styles would be the reason why. @Maxim: Any insights?

Would be useful to retain this bug specifically for shape styles in write/calc
and open up separate ones for other enhancements. I'll be opening the one about
a new set of default graphic styles in impress/draw.

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


[Libreoffice-bugs] [Bug 94370] New: Very slow previewing templates

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94370

Bug ID: 94370
   Summary: Very slow previewing templates
   Product: LibreOffice
   Version: 5.0.1.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: topaz3...@seznam.cz

In last version of LibreOffice - 5.0.1 - you can see veeery slow previewing
templates, especially in Impress. It doesn't matter if you have 5 or 200
templates. Previewing is horrible slow. And I checked it on Windows 7 and
LinuxMint.

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


[Libreoffice-bugs] [Bug 90937] Default set of calc cell styles

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90937

Yousuf (Jay) Philips  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 94369] New: Default set of Impress graphic styles

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94369

Bug ID: 94369
   Summary: Default set of Impress graphic styles
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: libreoffice-ux-adv...@lists.freedesktop.org

Similar to proposing a new set of default cell styles for Calc (bug 90937), a
new set of default graphic styles are needed for Impress, which will also be
available in Draw.

The list of graphic styles can be broken down into what i would classify as
shape styles and textbox styles. Shape styles focus on line and area properties
but can also include text properties, while textbox style focus on text
properties, but can also include line and area properties.

Shape Styles (atleast how i see it :D)
---

== Line Styles ==

Dimension Line: Used by 'Dimension Line' and is a line style with a black line
with start and end arrows

Object without fill: Used by line objects like 'Line', 'Line Ends with Arrow',
and 'Line 45*' and is a line style with no fill and black line.

Object with arrow: Thick black line with start arrow

== Non-Line Styles ==

Object with no fill and no line: Quite useless as a shape style unless it is
meant to intentionally hide an shape from view

Object with shadow: blue fill, dark blue border, and shadow


Textbox Styles
---

== Text-Only ==

First line indent: 0.24", 18pt (inherited)
Heading: 24pt
Heading 1: 18pt bold
Heading 2: 14pt bold italics
Text: no fill, no line, 18pt (inherited)
Text body: no fill, no line, 16pt
Text body justified: no fill, no line, justified, 18pt (inherited)
Title: no fill, no line, 44pt

== Text and Shape ==

Title1: green fill, no line, 24pt, shadow
Title2: light orange fill, blue border, 36pt, centered, shadow

---

All the styles directly inheriting from Default, so it might be useful to have
some styles inheriting from others. But the main focus that i think that is
needed is to improve the shape styles with some good defaults.

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


[Libreoffice-ux-advise] [Bug 94369] New: Default set of Impress graphic styles

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94369

Bug ID: 94369
   Summary: Default set of Impress graphic styles
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-b...@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: libreoffice-ux-advise@lists.freedesktop.org

Similar to proposing a new set of default cell styles for Calc (bug 90937), a
new set of default graphic styles are needed for Impress, which will also be
available in Draw.

The list of graphic styles can be broken down into what i would classify as
shape styles and textbox styles. Shape styles focus on line and area properties
but can also include text properties, while textbox style focus on text
properties, but can also include line and area properties.

Shape Styles (atleast how i see it :D)
---

== Line Styles ==

Dimension Line: Used by 'Dimension Line' and is a line style with a black line
with start and end arrows

Object without fill: Used by line objects like 'Line', 'Line Ends with Arrow',
and 'Line 45*' and is a line style with no fill and black line.

Object with arrow: Thick black line with start arrow

== Non-Line Styles ==

Object with no fill and no line: Quite useless as a shape style unless it is
meant to intentionally hide an shape from view

Object with shadow: blue fill, dark blue border, and shadow


Textbox Styles
---

== Text-Only ==

First line indent: 0.24", 18pt (inherited)
Heading: 24pt
Heading 1: 18pt bold
Heading 2: 14pt bold italics
Text: no fill, no line, 18pt (inherited)
Text body: no fill, no line, 16pt
Text body justified: no fill, no line, justified, 18pt (inherited)
Title: no fill, no line, 44pt

== Text and Shape ==

Title1: green fill, no line, 24pt, shadow
Title2: light orange fill, blue border, 36pt, centered, shadow

---

All the styles directly inheriting from Default, so it might be useful to have
some styles inheriting from others. But the main focus that i think that is
needed is to improve the shape styles with some good defaults.

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


[Libreoffice-bugs] [Bug 89369] Unable to set default fill and line styles in Calc and Writer

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89369

Yousuf (Jay) Philips  changed:

   What|Removed |Added

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

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


[Libreoffice-ux-advise] [Bug 94369] Default set of Impress graphic styles

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94369

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=89
   ||369,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=90
   ||937
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 94369] Default set of Impress graphic styles

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94369

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=89
   ||369,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=90
   ||937
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 90090] Rearranging the UI of Draw

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90090

--- Comment #35 from Yousuf (Jay) Philips  ---
Created attachment 118863
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118863=edit
draw toolbar with no hidden tools

(In reply to Kurt from comment #33)
> I don't mind the new location.  Just the lack of ability to scroll or resize
> it, but I suppose that's not related to this change. I never had cause to
> try to resize that toolbar before, so I didn't realize it never had been
> possible to.  I thought that was also related to this change, but I see it's
> not so I apologize for putting here what is best discussed in a help forum.

Unfortunately toolbars dont have a scrolling or resizing mechanism, so there
isnt much that can be done about that.

> 1366x768
> 
> If you can display the entire drawing toolbar on that size of a screen there
> must be a trick to resizing the tools, which I'd also like to know.  There
> are 30+ available tools.

Looking at your screenshot, i see that you enabled the insert image button in
the drawing toolbar, which does cause additional tools to hide. The insert
image button is available in the standard toolbar, so it isnt necessary to have
it enabled there.

In the default state of the toolbar, the stars and 3d objects buttons are
hidden for me, but as i hide the zoom & pan button, as it isnt highly needed
for me, all the buttons show up just fine. If i had an auto-hide panel and LO
took up the full 768px height, i wouldnt need to hide the zoom & pan button for
all the buttons to appear.

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


[Libreoffice-bugs] [Bug 94371] calc: graph: formatting font of legend moves legend to left hand side

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94371

--- Comment #4 from Elmar  ---
I captured the Calc bug first, then I did an Impress bug - did not see that it
had attached the Impress examples to the Calc bug. Cannot see where to remove
the attachments.

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


[Libreoffice-bugs] [Bug 94348] Preview pane in Impress not updated in real-time

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94348

--- Comment #6 from James  ---
There is no reason for hostility, nothing I said was intended to be insulting. 

Thank you for your help, but I have already found a solution to my problem.

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


[Libreoffice-bugs] [Bug 94355] can't open report java.lang.IncompatibleClassChangeError

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94355

Hamdani  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 94355] can't open report java.lang.IncompatibleClassChangeError

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94355

--- Comment #8 from Hamdani  ---
Created attachment 118855
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118855=edit
This The odb file. The report created by Wizard. Database Type = HsqlEmbedded.

This The odb file. The report created by Wizard. Database Type = HsqlEmbedded.

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


[Libreoffice-commits] core.git: Branch 'feature/chained-text-boxes' - 15 commits - editeng/Library_editeng.mk editeng/source include/editeng include/svx sd/source svx/inc svx/Library_svxcore.mk svx/so

2015-09-19 Thread Thorsten Behrens
Rebased ref, commits from common ancestor:
commit 133498a53c9b639c29eb7c2f90dec6feb8dd476e
Author: Thorsten Behrens 
Date:   Sun Sep 20 01:42:12 2015 +0200

chained editeng: Convert fprintf to SAL_INFO

Change-Id: I8e0cfedd34d7e0d70a30147a3bbf0f1cd8e6d3cc

diff --git a/editeng/source/editeng/impedit3.cxx 
b/editeng/source/editeng/impedit3.cxx
index 70072a2..74eb16d 100644
--- a/editeng/source/editeng/impedit3.cxx
+++ b/editeng/source/editeng/impedit3.cxx
@@ -564,18 +564,13 @@ void ImpEditEngine::CheckAutoPageSize()
 
 void ImpEditEngine::CheckPageOverflow()
 {
-// FIXME(matteocam)
-/* fprintf( stderr, IsPageOverflow(aPaperSize, aPrevPaperSize)
-? "YES Overflow!\n"  : "NO Overflow!\n" ); */
-// setting overflow status
-
-fprintf(stderr, "[CONTROL_STATUS] AutoPageSize is %s",  ( 
aStatus.GetControlWord() & EEControlBits::AUTOPAGESIZE ) ? "ON\n" : "OFF\n" );
+SAL_INFO("editeng.chaining", "[CONTROL_STATUS] AutoPageSize is " << (( 
aStatus.GetControlWord() & EEControlBits::AUTOPAGESIZE ) ? "ON" : "OFF") );
 
 sal_uInt32 nBoxHeight = GetMaxAutoPaperSize().Height();
-fprintf(stderr, "[OVERFLOW-CHECK] Current MaxAutoPaperHeight is %d\n", 
nBoxHeight);
+SAL_INFO("editeng.chaining", "[OVERFLOW-CHECK] Current MaxAutoPaperHeight 
is " << nBoxHeight);
 
 sal_uInt32 nTxtHeight = CalcTextHeight(NULL);
-fprintf(stderr, "[OVERFLOW-CHECK] Current Text Height is %d\n", 
nTxtHeight);
+SAL_INFO("editeng.chaining", "[OVERFLOW-CHECK] Current Text Height is " << 
nTxtHeight);
 
 sal_uInt32 nParaCount = GetParaPortions().Count();
 sal_uInt32 nFirstLineCount = GetLineCount(0);
@@ -4636,7 +4631,7 @@ void 
ImpEditEngine::ImplUpdateOverflowingParaNum(sal_uInt32 nPaperHeight)
 if ( nY > nPaperHeight /*nCurTextHeight*/ ) // found first paragraph 
overflowing
 {
 mnOverflowingPara = nPara;
-fprintf(stderr, "[CHAINING] Setting first overflowing #Para#: 
%d\n", nPara);
+SAL_INFO("editeng.chaining", "[CHAINING] Setting first overflowing 
#Para#: " << nPara);
 ImplUpdateOverflowingLineNum( nPaperHeight, nPara, nY-nPH);
 return;
 }
@@ -4662,13 +4657,13 @@ void 
ImpEditEngine::ImplUpdateOverflowingLineNum(sal_uInt32 nPaperHeight,
 
 // Debugging output
 if (nLine == 0) {
-fprintf(stderr, "[CHAINING] First line has height %d\n", nLH);
+SAL_INFO("editeng.chaining", "[CHAINING] First line has height " 
<< nLH);
 }
 
 if ( nY > nPaperHeight ) // found first line overflowing
 {
 mnOverflowingLine = nLine;
-fprintf(stderr, "[CHAINING] Setting first overflowing -Line- to: 
%d\n", nLine);
+SAL_INFO("editeng.chaining", "[CHAINING] Setting first overflowing 
-Line- to: " << nLine);
 return;
 }
 }
diff --git a/editeng/source/outliner/outliner.cxx 
b/editeng/source/outliner/outliner.cxx
index 77bb66a..040bc6e 100644
--- a/editeng/source/outliner/outliner.cxx
+++ b/editeng/source/outliner/outliner.cxx
@@ -2094,17 +2094,16 @@ NonOverflowingText *Outliner::GetNonOverflowingText() 
const
 
 // Defensive check: oveflowing para index beyond actual # of paragraphs?
 if ( nCount > GetParagraphCount()-1) {
-fprintf(stderr,
-"[Overflowing] Ops, trying to retrieve para %d when max index 
is %d\n",
-nCount,
-GetParagraphCount()-1);
+SAL_INFO("editeng.chaining",
+ "[Overflowing] Ops, trying to retrieve para "
+ << nCount << " when max index is " << GetParagraphCount()-1 );
 return NULL;
 }
 
  if (nCount < 0)
  {
-fprintf(stderr,
-"[Overflowing] No Overflowing text but GetNonOverflowinText 
called?!\n");
+SAL_INFO("editeng.chaining",
+ "[Overflowing] No Overflowing text but GetNonOverflowinText 
called?!");
 return NULL;
  }
 
@@ -2202,10 +2201,10 @@ OverflowingText *Outliner::GetOverflowingText() const
 
 // Defensive check: oveflowing para index beyond actual # of paragraphs?
 if ( pEditEngine->GetOverflowingParaNum() > GetParagraphCount()-1) {
-fprintf(stderr,
-"[Overflowing] Ops, trying to retrieve para %d when max index 
is %d\n",
-pEditEngine->GetOverflowingParaNum(),
-GetParagraphCount()-1);
+SAL_INFO("editeng.chaining",
+ "[Overflowing] Ops, trying to retrieve para "
+ << pEditEngine->GetOverflowingParaNum() << " when max index 
is "
+ << GetParagraphCount()-1 );
 return NULL;
 }
 
diff --git a/editeng/source/outliner/overflowingtxt.cxx 
b/editeng/source/outliner/overflowingtxt.cxx
index bd0f59f..fb5abd0 100644
--- a/editeng/source/outliner/overflowingtxt.cxx
+++ b/editeng/source/outliner/overflowingtxt.cxx
@@ -158,11 +158,9 @@ bool 

[Libreoffice-bugs] [Bug 94366] Double shadow added to object's with style that has shadow enabled

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94366

Yousuf (Jay) Philips  changed:

   What|Removed |Added

   Keywords|regression  |
Version|5.0.0.5 release |Inherited From OOo
 Whiteboard|bibisectRequest |

--- Comment #1 from Yousuf (Jay) Philips  ---
Nope i was mistaken. It is inherited.

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


[Libreoffice-bugs] [Bug 94363] New: FORMATTING: Export and gallery re-import is spoiled using emf, wmf, svg formats

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94363

Bug ID: 94363
   Summary: FORMATTING: Export and gallery re-import is spoiled
using emf, wmf, svg formats
   Product: LibreOffice
   Version: 5.0.1.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tom...@freenet.de

Created attachment 118850
  --> https://bugs.documentfoundation.org/attachment.cgi?id=118850=edit
Test page including the original and all re-imported drawings

Version: 5.0.1.2
Build ID: 81898c9f5c0d43f3473ba111d7b351050be20261
Linux x86-64

A drawing is created on a "1cm/10spaces" grid and is exported into files using
emf, wmf, svg and svm formats. The resulting files are afterwards added to a
new gallery and placed from the gallery in the same page as the original
drawing. It turns out that the re-imported emf, wmf and svg drawings are no
longer on-grid but are slightly spoiled. Only the re-imported svm drawing
matches the original.

Please fix this issue to ensure a true export and re-import of emf, wmf and svg
drawings.

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


[Libreoffice-bugs] [Bug 92934] Web Wizard: Cannot Export Zip archive.

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92934

Julien Nabet  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW
   Assignee|serval2...@yahoo.fr |libreoffice-b...@lists.free
   ||desktop.org
 Whiteboard| target:5.1.0   |

--- Comment #4 from Julien Nabet  ---
Sorry, the patch was wrong.

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


[Libreoffice-bugs] [Bug 81234] [META] RTF filter issues

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81234

Alexandr  changed:

   What|Removed |Added

 Blocks|94043   |
 Depends on||94043

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


[Libreoffice-bugs] [Bug 94043] Column separators not export in RTF

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94043

Alexandr  changed:

   What|Removed |Added

 CC||alexpik...@gmail.com
 Blocks||81234
 Depends on|81234   |
 Whiteboard||filter:rtf

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


Re: [ANN] Bugzilla upgraded to 4.4.10

2015-09-19 Thread David Tardon
Hi,

On Sat, Sep 19, 2015 at 09:30:55AM -0700, julien2412 wrote:
> Hi,
> 
> I'm not sure and, perhaps it's not related, but it seems docx attachments
> have mimetype "application/zip" instead of
> "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
> (eg: https://bugs.documentfoundation.org/show_bug.cgi?id=94359). Even if
> confirmed, not a blocker of course ! :-)

That's nothing new. The attachment format auto-detection has never really
worked.

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


[Libreoffice-bugs] [Bug 94348] Preview pane in Impress not updated in real-time

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94348

Adolfo Jayme  changed:

   What|Removed |Added

Summary|preview in left sidebar is  |Preview pane in Impress not
   |broken  |updated in real-time

--- Comment #3 from Adolfo Jayme  ---
> The newest release is always hopelessly unstable, so distros ship outdated
> releases […]

Um, no. That is simply not true. What about you stop that fallacy?

We’re interested in helping you solve your problems, but if you’re to maintain
that attitude, then we can’t do much. *rolls eyes*

You were asked to test a newer release. Just do it! If you use Ubuntu, we offer
a set of PPAs you can use. We also have source downloads and RPM packages.
There’s no excuse.

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


[Libreoffice-bugs] [Bug 75573] VIEWING: Writer inserts an unwanted page break before a text frame in DOCX

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75573

Alexandr  changed:

   What|Removed |Added

 Whiteboard|BSA |BSA interoperability
   ||filter:docx

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


[Libreoffice-bugs] [Bug 90090] Rearranging the UI of Draw

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90090

--- Comment #31 from Kurt  ---
Have just installed version 5 which includes this change.  This change is a
significant step back in usability since the toolbar, once docked, is not
resizable nor does it have anything in it to allow scrolling.  The extra tools
not shown are available only through the double-arrow "extra" button, but when
accessed that way, you cannot select anything but the default use of a tool. 
You can't, for example, access the different types of callouts in the callout
tool.

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


[Libreoffice-bugs] [Bug 77070] Files that are Opened Read-only, can't be Saved Directly after a Recovery

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77070

tommy27  changed:

   What|Removed |Added

 CC||ba...@quipo.it
Summary|Other: Files that are   |Files that are Opened
   |Opened Read-only, can't be  |Read-only, can't be Saved
   |Saved Directly after a  |Directly after a Recovery
   |Recovery|

--- Comment #4 from tommy27  ---
what about 5.0.1.2?

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


[Libreoffice-bugs] [Bug 75348] Can't paste bars from chart

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75348

tommy27  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #4 from tommy27  ---
issue still present with LibO 5.1.0.0.alpha1+
Build ID: 88c51cd55d1a9b29e62269c53b3923770253ab07
TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2015-09-11_13:09:15
Locale: it-IT (it_IT)

let's set status to NEW for the moment waiting for expert devs opinion if this
is a LibO bug or a bad design of that website

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


[Libreoffice-bugs] [Bug 75348] Can't paste bars from chart on website

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75348

tommy27  changed:

   What|Removed |Added

Version|4.2.1.1 release |Inherited From OOo
Summary|Can't paste bars from chart |Can't paste bars from chart
   ||on website

--- Comment #5 from tommy27  ---
same behaviour with OOo 3.3.0 and AOO 4.1.0
so the bug is inherited from OOo

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


[Libreoffice-bugs] [Bug 89912] Files are opened on the background sometimes

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89912

tommy27  changed:

   What|Removed |Added

 CC||alan.rew@gmail.com

--- Comment #2 from tommy27  ---
*** Bug 94129 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 94129] libreoffice component window not in foreground when run by double-clicking file in windows explorer

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94129

tommy27  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||ba...@quipo.it
 Resolution|--- |DUPLICATE

--- Comment #3 from tommy27  ---


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

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


[Libreoffice-bugs] [Bug 91601] Opened document not getting focus

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91601

tommy27  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||ba...@quipo.it
 Resolution|--- |DUPLICATE

--- Comment #3 from tommy27  ---


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

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


[Libreoffice-bugs] [Bug 89912] Files are opened on the background sometimes

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89912

tommy27  changed:

   What|Removed |Added

 CC||miho...@miho.im

--- Comment #3 from tommy27  ---
*** Bug 91601 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 89912] Files are opened on the background sometimes

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89912

tommy27  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 94129] libreoffice component window not in foreground when run by double-clicking file in windows explorer

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94129

tommy27  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 48300] UI: Window doesn't take focus when opening an already open document

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=48300

tommy27  changed:

   What|Removed |Added

   See Also|https://bugs.documentfounda |https://bugs.documentfounda
   |tion.org/show_bug.cgi?id=91 |tion.org/show_bug.cgi?id=89
   |601 |912

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


[Libreoffice-bugs] [Bug 91601] Opened document not getting focus

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91601

tommy27  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 89912] Files are opened on the background sometimes

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89912

tommy27  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 81789] LibreOffice - unpredictable "Places" Dialog - WebDAV, remote connections

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81789

--- Comment #7 from Beluga  ---
Obiwan72: You should try with 5.0.1
You can get it for your Ubuntu from this ppa:
https://launchpad.net/~libreoffice/+archive/ubuntu/ppa

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


[Libreoffice-bugs] [Bug 82465] Permanent crashes in Writer with images

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82465

tommy27  changed:

   What|Removed |Added

Summary|Permanent crashes in writer |Permanent crashes in Writer
   |with images |with images

--- Comment #15 from tommy27  ---
@thorsten
please retest with 5.0.1.2 and give feedback

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


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

2015-09-19 Thread Tor Lillqvist
 external/libmwaw/UnpackedTarball_libmwaw.mk |4 
 external/libmwaw/c++11-narrowing.patch  |   11 +++
 2 files changed, 15 insertions(+)

New commits:
commit d24cdb9c4a5de2dd856e86884ce67aa6f1c28453
Author: Tor Lillqvist 
Date:   Sat Sep 19 09:09:29 2015 +0300

Fix error: case value evaluates to 2168791104, which cannot be narrowed ...

... to type 'long' [-Wc++11-narrowing]

Change-Id: If9d34297c08744671d2aedd6b3ef7ad3592fb431

diff --git a/external/libmwaw/UnpackedTarball_libmwaw.mk 
b/external/libmwaw/UnpackedTarball_libmwaw.mk
index 50aa54c..823fab2 100644
--- a/external/libmwaw/UnpackedTarball_libmwaw.mk
+++ b/external/libmwaw/UnpackedTarball_libmwaw.mk
@@ -35,4 +35,8 @@ $(eval $(call gb_UnpackedTarball_add_patches,libmwaw, \
 ))
 endif
 
+$(eval $(call gb_UnpackedTarball_add_patches,libmwaw, \
+external/libmwaw/c++11-narrowing.patch \
+))
+
 # vim: set noet sw=4 ts=4:
diff --git a/external/libmwaw/c++11-narrowing.patch 
b/external/libmwaw/c++11-narrowing.patch
new file mode 100644
index 000..8695d44
--- /dev/null
+++ b/external/libmwaw/c++11-narrowing.patch
@@ -0,0 +1,11 @@
+--- src/lib/RagTime5StructManager.cxx
 src/lib/RagTime5StructManager.cxx
+@@ -307,7 +307,7 @@
+ fSz-=4;
+   long debDataPos=input->tell();
+   long endDataPos=debDataPos+fSz;
+-  switch (type) {
++  switch ((unsigned long) type) {
+   case 0x360c0:
+   case 0x368c0:
+ if (fSz!=1) {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89912] Files are opened on the background sometimes

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89912

tommy27  changed:

   What|Removed |Added

   Keywords||regression
 CC||ba...@quipo.it

--- Comment #4 from tommy27  ---
Bug 91691 and 94129 describe the same issue...
however I see discordance about the first release the bug appeared...

Mikeyy - L10n in Bug 91691 said: "It's regression, working in 4.1.6, not
working in 4.3, I think I tested it with 4.2.7 and it wasn't working, so
regression is somewhere in 4.2 branch."

while Yan in the current report said the problem was not present in 4.3.x

however in Bug 94129 Alan Rew confirmed the bug persists in 5.0.1

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


[Libreoffice-bugs] [Bug 75471] New windows stay in background, don't get focus

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75471

tommy27  changed:

   What|Removed |Added

 CC||yanp...@gmail.com

--- Comment #23 from tommy27  ---
*** Bug 89912 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 89912] Files are opened on the background sometimes

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89912

tommy27  changed:

   What|Removed |Added

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

--- Comment #5 from tommy27  ---
just found another earlier report about this issue

according to Bug 75471 the first release affected by the bug is 4.2.1.1

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

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


[Libreoffice-bugs] [Bug 81789] LibreOffice - unpredictable "Places" Dialog - WebDAV, remote connections

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81789

--- Comment #6 from Obiwan72  ---
Hi tommy27

These are the current versions.
LibreOffrice: 4.2.8.2, build id: 420m0(Build:2)

Linux RVGHQWS1 3.13.0-63-generic #103-Ubuntu SMP Fri Aug 14 21:42:59 UTC 2015
x86_64 x86_64 x86_64 GNU/Linux

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


[Libreoffice-commits] core.git: drawinglayer/README drawinglayer/source helpcompiler/source winaccessibility/inc

2015-09-19 Thread Caolán McNamara
 drawinglayer/README |2 +-
 drawinglayer/source/processor2d/vclpixelprocessor2d.hxx |4 ++--
 helpcompiler/source/HelpIndexer.cxx |4 ++--
 helpcompiler/source/HelpLinker.cxx  |3 +--
 helpcompiler/source/HelpLinker_main.cxx |6 +++---
 winaccessibility/inc/AccObjectManagerAgent.hxx  |4 ++--
 6 files changed, 11 insertions(+), 12 deletions(-)

New commits:
commit f7ef1cbb83fdc6c43fa39fd50a9e12703e4fcf5f
Author: Caolán McNamara 
Date:   Fri Sep 18 15:37:00 2015 +0100

boost->std

Change-Id: I5079e03f70370ed83a1158b2e278f48642108f08
Reviewed-on: https://gerrit.libreoffice.org/18692
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/drawinglayer/README b/drawinglayer/README
index d950f29..b530ba6 100644
--- a/drawinglayer/README
+++ b/drawinglayer/README
@@ -19,7 +19,7 @@ A stripped down version with extended comments:
  VirtualDevice aVirtualDevice;
 
  // Create processor and draw primitives, to get it ready for rendering.
- boost::scoped_ptr 
pProcessor2D(
+ std::unique_ptr pProcessor2D(
  
drawinglayer::processor2d::createPixelProcessor2DFromOutputDevice(...));
 
  if (pProcessor2D)
diff --git a/drawinglayer/source/processor2d/vclpixelprocessor2d.hxx 
b/drawinglayer/source/processor2d/vclpixelprocessor2d.hxx
index 3a70dd8..6699934 100644
--- a/drawinglayer/source/processor2d/vclpixelprocessor2d.hxx
+++ b/drawinglayer/source/processor2d/vclpixelprocessor2d.hxx
@@ -25,7 +25,7 @@
 #include "vclprocessor2d.hxx"
 #include 
 
-#include 
+#include 
 
 
 // predefines
@@ -53,7 +53,7 @@ namespace drawinglayer
 {
 private:
 struct Impl;
-boost::scoped_ptr m_pImpl;
+std::unique_ptr m_pImpl;
 
 protected:
 /*  the local processor for BasePrinitive2D-Implementation based 
primitives,
diff --git a/helpcompiler/source/HelpIndexer.cxx 
b/helpcompiler/source/HelpIndexer.cxx
index 05bc830..63cf85a 100644
--- a/helpcompiler/source/HelpIndexer.cxx
+++ b/helpcompiler/source/HelpIndexer.cxx
@@ -14,8 +14,8 @@
 #include 
 #include 
 #include 
-#include 
 #include 
+#include 
 
 #include "LuceneHelper.hxx"
 
@@ -42,7 +42,7 @@ bool HelpIndexer::indexDocuments()
 bool bUseCJK = sLang == "ja" || sLang == "ko" || sLang == "zh";
 
 // Construct the analyzer appropriate for the given language
-boost::scoped_ptr analyzer;
+std::unique_ptr analyzer;
 if (bUseCJK)
 analyzer.reset(new 
lucene::analysis::LanguageBasedAnalyzer(L"cjk"));
 else
diff --git a/helpcompiler/source/HelpLinker.cxx 
b/helpcompiler/source/HelpLinker.cxx
index a977392..24653b4 100644
--- a/helpcompiler/source/HelpLinker.cxx
+++ b/helpcompiler/source/HelpLinker.cxx
@@ -37,7 +37,6 @@
 
 #include 
 #include 
-#include 
 
 IndexerPreProcessor::IndexerPreProcessor
 ( const std::string& aModuleName, const fs::path& fsIndexBaseDir,
@@ -945,7 +944,7 @@ bool compileExtensionHelp
 xmlSetStructuredErrorFunc( NULL, StructuredXMLErrorFunction );
 try
 {
-boost::scoped_ptr pHelpLinker(new HelpLinker());
+std::unique_ptr pHelpLinker(new HelpLinker());
 pHelpLinker->main( args, , , 
 );
 }
 catch( const HelpProcessingException& e )
diff --git a/helpcompiler/source/HelpLinker_main.cxx 
b/helpcompiler/source/HelpLinker_main.cxx
index e4e45fe..36826b4 100644
--- a/helpcompiler/source/HelpLinker_main.cxx
+++ b/helpcompiler/source/HelpLinker_main.cxx
@@ -19,9 +19,9 @@
 
 #include 
 #include 
-#include 
 #include 
-#include 
+#include 
+#include 
 
 SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) {
 std::vector args;
@@ -29,7 +29,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) {
 args.push_back(std::string(argv[i]));
 try
 {
-boost::scoped_ptr pHelpLinker(new HelpLinker());
+std::unique_ptr pHelpLinker(new HelpLinker());
 pHelpLinker->main( args );
 }
 catch( const HelpProcessingException& e )
diff --git a/winaccessibility/inc/AccObjectManagerAgent.hxx 
b/winaccessibility/inc/AccObjectManagerAgent.hxx
index 7e685b7..568d8e4 100644
--- a/winaccessibility/inc/AccObjectManagerAgent.hxx
+++ b/winaccessibility/inc/AccObjectManagerAgent.hxx
@@ -20,7 +20,7 @@
 #ifndef INCLUDED_WINACCESSIBILITY_INC_ACCOBJECTMANAGERAGENT_HXX
 #define INCLUDED_WINACCESSIBILITY_INC_ACCOBJECTMANAGERAGENT_HXX
 
-#include 
+#include 
 
 #include 
 
@@ -37,7 +37,7 @@ class AccObjectManagerAgent
 {
 private:
 
-boost::scoped_ptr pWinManager;
+std::unique_ptr pWinManager;
 
 public:
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 75471] New windows stay in background, don't get focus

2015-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75471

Beluga  changed:

   What|Removed |Added

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

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


  1   2   3   >