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

2015-10-18 Thread Tor Lillqvist
 sc/source/core/opencl/formulagroupcl.cxx |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit 476bef70f1d9fd58b29a1f6fb95e54567b031acf
Author: Tor Lillqvist 
Date:   Sun Oct 18 22:57:47 2015 +0300

tdf#94924: If we can't handle strings, don't try to then

Fixes the VLOOKUP problem reported in tdf#94540 by falling back to
non-OpenCL for such a case, where one of the columns passed to the
VLOOKUP contained strings. And since a while, we don't claim to handle
strings in VLOOKUP. Which is true.

Change-Id: I4140c86bf8166beb8201aa90c075d9f4432d9173

diff --git a/sc/source/core/opencl/formulagroupcl.cxx 
b/sc/source/core/opencl/formulagroupcl.cxx
index a7ce5f8..ab4fa02 100644
--- a/sc/source/core/opencl/formulagroupcl.cxx
+++ b/sc/source/core/opencl/formulagroupcl.cxx
@@ -2657,6 +2657,13 @@ 
DynamicKernelSoPArguments::DynamicKernelSoPArguments(const ScCalcConfig& config,
 new 
DynamicKernelMixedSlidingArgument(mCalcConfig,
 ts, ft->Children[i], mpCodeGen, 
j)));
 }
+else if 
(!AllStringsAreNull(pDVR->GetArrays()[j].mpStringArray, pDVR->GetArrayLength()) 
&&
+ !pCodeGen->takeString())
+{
+// Can't handle
+SAL_INFO("sc.opencl", "Strings but can't do 
that.");
+throw UnhandledToken(pChild, ("unhandled 
operand " + StackVarEnumToString(pChild->GetType()) + " for ocPush").c_str());
+}
 else
 {
 // Not sure I can figure out what case this 
exactly is;)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 94487] Pivot Table: Fields list doesn't update

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94487

raal  changed:

   What|Removed |Added

Version|4.4.2.2 release |4.3.0.0.alpha1

--- Comment #4 from raal  ---
Reeproducible with Version: 4.3.0.0.alpha1+
Build ID: c15927f20d4727c3b8de68497b6949e72f9e6e9e

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


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

2015-10-18 Thread Caolán McNamara
 sd/source/ui/slidesorter/view/SlideSorterView.cxx |4 ++--
 sd/source/ui/slidesorter/view/SlsFramePainter.hxx |2 +-
 sd/source/ui/slidesorter/view/SlsInsertAnimator.cxx   |2 +-
 sd/source/ui/slidesorter/view/SlsLayeredDevice.hxx|2 +-
 sd/source/ui/slidesorter/view/SlsResource.hxx |2 +-
 sd/source/ui/slidesorter/view/SlsViewCacheContext.hxx |2 +-
 sd/source/ui/tools/EventMultiplexer.cxx   |2 +-
 sd/source/ui/unoidl/UnoDocumentSettings.cxx   |2 +-
 sd/source/ui/unoidl/randomnode.cxx|2 +-
 sd/source/ui/unoidl/unocpres.hxx  |2 +-
 sd/source/ui/unoidl/unolayer.hxx  |2 +-
 sd/source/ui/unoidl/unomodel.cxx  |2 +-
 sd/source/ui/unoidl/unomodule.hxx |6 +++---
 sd/source/ui/unoidl/unopage.cxx   |2 +-
 sd/source/ui/unoidl/unopool.cxx   |4 ++--
 sd/source/ui/view/DocumentRenderer.cxx|2 +-
 sd/source/ui/view/ToolBarManager.cxx  |4 ++--
 sd/source/ui/view/ViewShellManager.cxx|6 +++---
 sd/source/ui/view/drviews1.cxx|2 +-
 sw/source/core/inc/frame.hxx  |2 +-
 20 files changed, 27 insertions(+), 27 deletions(-)

New commits:
commit e08b49fa663ea50c4e712618bc1059249b7d35ba
Author: Caolán McNamara 
Date:   Sun Oct 18 20:56:40 2015 +0100

cppcheck: noExplicitConstructor

Change-Id: I187273e39759b3a3ef45b047f8cc36829a7f0b10

diff --git a/sd/source/ui/slidesorter/view/SlideSorterView.cxx 
b/sd/source/ui/slidesorter/view/SlideSorterView.cxx
index 24e5697..f6f96e0 100644
--- a/sd/source/ui/slidesorter/view/SlideSorterView.cxx
+++ b/sd/source/ui/slidesorter/view/SlideSorterView.cxx
@@ -89,7 +89,7 @@ namespace {
 class Painter : public ILayerPainter
 {
 public:
-Painter (SlideSorterView& rView) : mrView(rView) {}
+explicit Painter (SlideSorterView& rView) : mrView(rView) {}
 virtual ~Painter() {}
 
 virtual void Paint (OutputDevice& rDevice, const Rectangle& 
rRepaintArea) override
@@ -109,7 +109,7 @@ class BackgroundPainter
   public ::boost::noncopyable
 {
 public:
-BackgroundPainter (const Color& rBackgroundColor) : 
maBackgroundColor(rBackgroundColor) {}
+explicit BackgroundPainter (const Color& rBackgroundColor) : 
maBackgroundColor(rBackgroundColor) {}
 virtual ~BackgroundPainter() {}
 
 virtual void Paint (OutputDevice& rDevice, const Rectangle& rRepaintArea) 
override
diff --git a/sd/source/ui/slidesorter/view/SlsFramePainter.hxx 
b/sd/source/ui/slidesorter/view/SlsFramePainter.hxx
index cc3a93c..614ec0a 100644
--- a/sd/source/ui/slidesorter/view/SlsFramePainter.hxx
+++ b/sd/source/ui/slidesorter/view/SlsFramePainter.hxx
@@ -27,7 +27,7 @@ namespace sd { namespace slidesorter { namespace view {
 class FramePainter
 {
 public:
-FramePainter (const BitmapEx& rBitmap);
+explicit FramePainter (const BitmapEx& rBitmap);
 ~FramePainter();
 
 /** Paint a border around the given box by using a set of bitmaps for
diff --git a/sd/source/ui/slidesorter/view/SlsInsertAnimator.cxx 
b/sd/source/ui/slidesorter/view/SlsInsertAnimator.cxx
index 98dd95b..c5d118635 100644
--- a/sd/source/ui/slidesorter/view/SlsInsertAnimator.cxx
+++ b/sd/source/ui/slidesorter/view/SlsInsertAnimator.cxx
@@ -115,7 +115,7 @@ Point Blend (const Point& rPointA, const Point& rPointB, 
const double nT)
 class InsertAnimator::Implementation : public AnimatorAccess
 {
 public:
-Implementation (SlideSorter& rSlideSorter);
+explicit Implementation (SlideSorter& rSlideSorter);
 virtual ~Implementation();
 
 void SetInsertPosition (
diff --git a/sd/source/ui/slidesorter/view/SlsLayeredDevice.hxx 
b/sd/source/ui/slidesorter/view/SlsLayeredDevice.hxx
index 989dadb..0a6ac66 100644
--- a/sd/source/ui/slidesorter/view/SlsLayeredDevice.hxx
+++ b/sd/source/ui/slidesorter/view/SlsLayeredDevice.hxx
@@ -43,7 +43,7 @@ class LayeredDevice
 
 {
 public:
-LayeredDevice (VclPtr pTargetWindow);
+explicit LayeredDevice (VclPtr pTargetWindow);
 ~LayeredDevice ();
 
 void Invalidate (
diff --git a/sd/source/ui/slidesorter/view/SlsResource.hxx 
b/sd/source/ui/slidesorter/view/SlsResource.hxx
index 6695c00..e1d6426 100644
--- a/sd/source/ui/slidesorter/view/SlsResource.hxx
+++ b/sd/source/ui/slidesorter/view/SlsResource.hxx
@@ -29,7 +29,7 @@ namespace sd { namespace slidesorter { namespace view {
 class LocalResource : public Resource
 {
 public:
-LocalResource (const sal_uInt16 nResourceId) : 
Resource(SdResId(nResourceId)){}
+explicit LocalResource (const sal_uInt16 nResourceId) : 
Resource(SdResId(nResourceId)){}
 ~LocalResource() { FreeResource(); }
 };
 
diff --git a/sd/source/ui/slidesorter/view/SlsViewCacheContext.hxx 
b/sd/source/ui/slidesorter/view/SlsViewCacheContext.hxx
index 

[Libreoffice-bugs] [Bug 95124] Language: Székely-magyar rovás (Szekler-Hungarian Rovas)

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95124

--- Comment #2 from Óvári  ---
Characters form part of the Unicode Standard, Version 8.0.0 released 17 June
2015.
http://www.unicode.org/versions/Unicode8.0.0/#Character_Additions

-- 
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 95159] Thai word wrapping of กลับ and การกระทำ

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95159

Brian Wilson  changed:

   What|Removed |Added

 CC||bount...@gmail.com

--- Comment #3 from Brian Wilson  ---
Created attachment 119724
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119724=edit
example text of the problem

Here is a sample document of nonsense words illustrating the problem. The words
are real Thai words, but they are randomly strung together.

-- 
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 89305] Formatting Enhacement: Cell Style 'Default' should be empty

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89305

Markus Mohrhard (retired)  changed:

   What|Removed |Added

 Resolution|WONTFIX |FIXED

--- Comment #3 from Markus Mohrhard (retired)  
---
To add to Joel's comment:

As OOXML has dxf (differential formatting) we now (I think since 5.0) implement
something like this through styles that don't inherit from any style.

Doing the same for ODF and internally is not trivial as our whole style system
is normally based on inheritance. I think the OOXML solution only works during
import but the UI support for it is horrible at best.

So the idea to have better support for something like differential styles might
be a good idea however the solution requested for this goal in this bug report
is an absolute no-go.

Deleting these information from the default cell style will just cause issues
for other cells, as it means that for some cells you have no formatting. I
think the better solution if you edit the file is to see if not inheriting any
style for the conditional format style might work.

-- 
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 93896] Non-ASCII characters in comments corrupt when RTF is reopened

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93896

tommy27  changed:

   What|Removed |Added

 CC||ba...@quipo.it

--- Comment #5 from tommy27  ---
has anyone tried to bibisect this latest 5.0.x regressions?

-- 
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 95104] VIEWING: Error display of overlapping text

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95104

tommy27  changed:

   What|Removed |Added

Summary|VIEWING: Error display of   |VIEWING: Error display of
   |text|overlapping text

-- 
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 95104] VIEWING: Error display of text

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95104

--- Comment #4 from tommy27  ---
Created attachment 119736
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119736=edit
tommy27's screenshot

see my screenshot where the file looks normal.

did you try resetting the user profile?
https://wiki.documentfoundation.org/UserProfile

-- 
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 95160] FILESAVE in XLS format fails with Read Error message

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95160

Pete  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
Version|4.4.5.2 release |3.3.0 release
 Ever confirmed|1   |0

--- Comment #3 from Pete  ---
(In reply to Joel Madero from comment #1)
> Hi Pete -
> 
> Wow this one is going to be nearly impossible to triage if it literally
> happens with a single type of computer.
> 
> That being said can you do a couple things for us and report back:
> 
> 1) Fresh profile (uninstalling does not purge your profile):
> https://wiki.documentfoundation.org/UserProfile
> 
> 
> Version filed is oldest version that shows the issue so I'm going to go
> ahead and change that per your comment.
> 
> Lastly,
> 
> Can you test with an older version of LibreOffice (perhaps 4.0):
> http://downloadarchive.documentfoundation.org/libreoffice/old/
> 
> There is a very good chance that this gets closed as NOTOURBUG but let's
> start with that. Mark as UNCONFIRMED after reporting back. Thanks!

Hi Joel,
Thanks for your prompt reply.  Here is my feedback.

I had not previously deleted my LO profile.  Now, instead of deleting it, I
renamed its containing directory "4" (in
C:/Windows/Users//AppData/Roaming/LibreOffice/).  When I restarted LO,
directory "4" was recreated.  The problem still occurred.

I then uninstalled LO; download & installed v4.0.0.1; and again renamed profile
directory "4".  The problem still occurred.

I then uninstalled LO; download & installed v3.3.0 (the earliest in the archive
folder whose URL you provided); and again renamed profile directory "4".  This
time profile directory "3" was created and the problem still occurred.  I have
amended the version in this ticket's metadata.

Also:
1. There are strong similarities between my problem and that of Bugzilla issue
122824 (closed as "resolved irreproducible" in Nov 2013).
2. In the next hour I will open a bug report for a LO Writer hang/loop on Save
As DOC.  Since this shares the same happens/does not happen/version details,
the two problems could be related.

The recently-attached screenshot is FYI.  I don't believe it contains any info
I have not already included in this ticket.

If there is anything I can do to create diagnostics for this, please let me
know.

-- 
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 94992] Caption of Figures disappear in ODM

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94992

--- Comment #2 from libreoff...@margull.de ---
Problem is, the document is confidential. I will try to construct a new, clean
one asap.

-- 
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 95163] New: FILESAVE: Save As .DOC format causes hang/loop

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95163

Bug ID: 95163
   Summary: FILESAVE: Save As .DOC format causes hang/loop
   Product: LibreOffice
   Version: 3.3.0 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bdzpete-...@yahoo.co.uk

Created attachment 119725
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119725=edit
Screenshot of file being saved as .DOC + Task Manager CPU display

When attempting to Save | Save As | Save Copy in Windows 97-2003's .DOC format
on my HP Stream notebook with either Windows 8 or Windows 10, LO Writer goes
into an interruptible loop.  This loop uses about 60% of a 2-processor CPU.

This error occurs on every attempted Save As DOC.

This happens only on my new "out of the box" HP Stream notebook, which the
retailer (UK's Currys/PCWorld) refuse to accept as faulty.  It also occurs
after LO uninstall+redownload+reinstall of LO v5.0.2.2; and with the current
version of Open Office; and with LibreOffice versions 4.4.5.2, 4.0.0.1 and
3.3.0.  With all of these LO versions, it happens regardless of whether my LO
profile exists prior to starting LO.  It happens even with a simple document
containing only 1 page with 1 word / 1 character.  

It does not happen with Save As .odt or .docx.  It does not happen on any other
PC or notebook I have (with Windows versions ranging from XP to 10).

While an obvious workaround would be to save in .docx format, for compatibility
with my old-technology peers, I would prefer to use .doc.

In one attached screenshot Task Manager output shows the contents of the 1 word
/ 1 character file + the jump in CPU on Save As DOC.  The other 2 screenshots
are the Windows Event Viewer log entry general & detail tabs for the manual
interruption of the loop.

Earlier this evening I opened Bugzilla ticket 95160 for a LO Calc Read-Error
message on Save As XLS.  Since this shares the same happens/does not
happen/version details, the two problems could be related.

If there is anything I can do to create diagnostics for this, please let me
know.

-- 
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 94171] Make navigation arrows in Calc visible only when they are needed and place them on the right

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94171

--- Comment #11 from tommy27  ---
good point Heiko.
this is another aspect in favour of customizable position of such buttons

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


[Libreoffice-commits] core.git: Branch 'feature/fixes11' - sc/source

2015-10-18 Thread Tor Lillqvist
 sc/source/core/opencl/formulagroupcl.cxx |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit b4c1ed38adf292ad6f24445860c74dd18e4c9a4e
Author: Tor Lillqvist 
Date:   Sun Oct 18 22:57:47 2015 +0300

tdf#94924: If we can't handle strings, don't try to then

Fixes the VLOOKUP problem reported in tdf#94540 by falling back to
non-OpenCL for such a case, where one of the columns passed to the
VLOOKUP contained strings. And since a while, we don't claim to handle
strings in VLOOKUP. Which is true.

Change-Id: I4140c86bf8166beb8201aa90c075d9f4432d9173

diff --git a/sc/source/core/opencl/formulagroupcl.cxx 
b/sc/source/core/opencl/formulagroupcl.cxx
index fc77718..5240416 100644
--- a/sc/source/core/opencl/formulagroupcl.cxx
+++ b/sc/source/core/opencl/formulagroupcl.cxx
@@ -2658,6 +2658,13 @@ 
DynamicKernelSoPArguments::DynamicKernelSoPArguments(const ScCalcConfig& config,
 new 
DynamicKernelMixedSlidingArgument(mCalcConfig,
 ts, ft->Children[i], mpCodeGen, 
j)));
 }
+else if 
(!AllStringsAreNull(pDVR->GetArrays()[j].mpStringArray, pDVR->GetArrayLength()) 
&&
+ !pCodeGen->takeString())
+{
+// Can't handle
+SAL_INFO("sc.opencl", "Strings but can't do 
that.");
+throw UnhandledToken(pChild, ("unhandled 
operand " + StackVarEnumToString(pChild->GetType()) + " for ocPush").c_str());
+}
 else
 {
 // Not sure I can figure out what case this 
exactly is;)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 82781] writer crashes in page preview when reducing number of pages due to hidden format

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82781

--- Comment #13 from Julien Nabet  ---
Created attachment 119721
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119721=edit
Several bts

It seems iterator is invalided because maPreviewPages is changed in
SwPagePreviewLayout::_CalcPreviewPages

I attached a tar.gz containing 3 bts:
- 2 when clicking "Preview" button
- 1 when clicking "Close preview" button

-- 
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 95162] New: Script: Székely-magyar rovás (Szekler-Hungarian Rovas)

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95162

Bug ID: 95162
   Summary: Script: Székely-magyar rovás (Szekler-Hungarian Rovas)
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Localization
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ovar...@gmail.com

Relates to bug 95124:

As the direction of the "Székely-magyar rovás (Szekler-Hungarian Rovas)" script
is right-to-left, top-to-bottom:
Please add support for :
Tools -> Options -> Language Settings -> 
Languages -> 
Complex text layout (CLT): Székely-magyar rovás

ISO 15924: Hung, 176
Direction: Right-to-left

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 95124] Language: Székely-magyar rovás (Szekler-Hungarian Rovas)

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95124

Óvári  changed:

   What|Removed |Added

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

-- 
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 95162] Script: Székely-magyar rovás (Szekler-Hungarian Rovas)

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95162

Óvári  changed:

   What|Removed |Added

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

-- 
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 95161] EDITING: Date field in embedded form displays unexpected value

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95161

--- Comment #1 from nos...@nlnet.org ---
Some more information. 

1) I have upgraded to LO 5.0.2.2. No difference

2) There is a logic to the value that is displayed when clicking the date field
in the subform. The date that is displayed in the date field in the subform
when the field is clicked for editing, is the value of the -previous- record in
the main form. 

Example:

Main form record 1: Client 1
Subform record 1: Product registration date 10-02-2015

Main form record 2: Client 2
Subform record 2: Product registration date 15-03-2015 (displayed correctly)

But: when the date field (in Subform record 2) is clicked, the value changes to
10-02-2015 (which is the registration date of the product of Client 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 95046] 5.0.2.1RC1 Spinning wheel on almost any operation on OSX 10.11

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95046

--- Comment #4 from mi...@filmsi.net ---
So, LO does not work on OSX 10.11?

-- 
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 95116] Writer will not let us save a document when using LibreOffice on our Mac Pro; works fine on Mac Mini.

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95116

--- Comment #2 from roy3lovessa...@gmail.com ---
Alex,
Thank you for taking time to look at my bug report. We LOVE  LibreOffice 5 and
really hope you will be able to fix this.

1. Please go back and re-read my entire original message and also the reply you
sent me. Especially the section marked "IMPORTANT" in ALL CAPS. You somehow
missed seeing MAJOR information in my message and you tested the wrong model of
Mac. After re-reading it, if you still don't understand then let me know. 

2. I always download my software from The Document Foundation website, and this
bug has persisted over at least the last two versions in LibreOffice 5.

3. I mentioned copying, pasting and SAVING as a way to definitely reproduce the
issue, HOWEVER, we haven't been able to SAVE much of anything with it
beachballing and having to be force quit. Forget copy+paste and start by trying
to save anything in Writer. But make sure it's running on a 2008 MAC PRO
running Yosemite...then you'll probably see it. As a side note, we'll probably
upgrade to El Capitan in a month or two after all the software companies have
time to adjust and fix any bugs. 

4. Would you please comment to let me know when you've seen my comment? 
I just wanted to make sure I left this in the right place. I would love to know
if I could simply reply to the emails I receive from Bugzilla, but I'm guessing
that I need to log in and leave my comments here.

MORE INFO YOU REQUESTED
After you re-read my original message, you probably won't need any of this, 
but in case you do...

YES we are using hotkeys to copy and paste. 

We are just copying webpage text from Firefoz or Google Chrome

NO we are not saving to a network mounted folder. Just saving to DOCUMENTS
locally.

-

Thanks,
Roy

-- 
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 95165] New: Support Left, Right, Top, and Bottom Offset for Textured Shapes

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95165

Bug ID: 95165
   Summary: Support Left, Right, Top, and Bottom Offset for
Textured Shapes
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lukebe...@hotmail.com

Created attachment 119730
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119730=edit
Example of Centered Images

When you use background bitmaps for shapes, you only have the option to control
the X and Y Offset. This allows you to position a image, but not fully scale
and position it. I propose we add a 2nd mode that allows "Left", "Right",
"Top", and "Bottom" Offsets.

This would give the user greater control. It would also give us better
interoperability with MSO.

-- 
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 95168] New: Background Color Removed from shapes with hatching

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95168

Bug ID: 95168
   Summary: Background Color Removed from shapes with hatching
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: filters and storage
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lukebe...@hotmail.com

Created attachment 119737
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119737=edit
Shape with Green Checkerboard fill

The OOXML importer ignores the background (secondary fill color) with hatching.
We support background fill colors.
Area -> Color -> Background Color
So ideally when  has a color2 attribute, we should use it. If that's
not possible, we should at least save it during round trip, instead of
stripping it out like we do now.

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


[Libreoffice-bugs] [Bug 95160] FILESAVE in XLS format fails with Read Error message

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95160

Pete  changed:

   What|Removed |Added

 Attachment #119722|Screenprint showing |Screenprint showing
description|"Read-Error" message on |"Read-Error" message on
   |Save As XLS |Save As XLS - LO v5.0.2.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 95165] Support Left, Right, Top, and Bottom Offset for Textured Shapes

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95165

--- Comment #1 from Luke  ---
Created attachment 119733
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119733=edit
File Opened in Impress vs PowerPoint

-- 
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 55168] Writer functionality request: add options for improving reading of text in Fullscreen Mode

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55168

--- Comment #5 from BrendaEM  ---
Three years have passed. I feel pretty bad.

-- 
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 95160] FILESAVE in XLS format fails with Read Error message

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95160

--- Comment #2 from Pete  ---
Created attachment 119722
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119722=edit
Screenprint showing "Read-Error" message on Save As XLS

-- 
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 95159] Thai word wrapping of กลับ and การกระทำ

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95159

Julien Nabet  changed:

   What|Removed |Added

 CC||samp...@osdev.co.th,
   ||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet  ---
Samphan: thought you might be interested in this one.

-- 
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 89861] Data labels in Calc graphs go wrong when displayed in % format

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89861

--- Comment #14 from Andy  ---
Created attachment 119723
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119723=edit
includes chart 3 and 4 with workaround

-- 
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 89861] Data labels in Calc graphs go wrong when displayed in % format

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89861

--- Comment #15 from Andy  ---
I have seen your new graph, and must thank you for all the effort you're
putting into this. Really.
Nonetheless, I think it is still not convincing. That's why:

- first of all, I have to stress that my MAIN problem lies with the single
group bar chart, i.e. the one where data in percentages produces a full row of
100%, 100%, on and on. This, to me is unquestionably inappropriate.

- in the multiple group bar charts case, to which you refer, things are less
clearcut. But your new solution is not OK yet to me, because you inverted the
role of the classifier (gender) and of the items (political opinions in the
example); now you have a 5-group bar chart with only two items that are the
sexes, and you have to infer the item to which each bar is associated by
looking at the colors in the legend, instead of having the items shown under
the X-axis. This is decidedly non-standard in graphical representation of
frequency data: THE standard is having items (categorical like in this example
or numeric - e.g. income or whatever) shown under the x-axis and the classifier
(gender) shown in the legend.

However I think we should close the debate, which is taking really too much of
our time: in fact, a workaround to get where I want does exist: you just have
to draw the chart based directly on the percentages after having them computed
in the sheet cells: in this way you get the same shapes in the chart, but you
can show data labels without turning them into percentages, since the data are
ALREADY %.
This is shown in my revision of the attachment, with chart 3 showing the single
group case, and chart 4 the double group case.

I still believe the behaviour of the program should be changed, but one cannot
pretend everything always goes according to his own wish, right?

-- 
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 95160] FILESAVE in XLS format fails with Read Error message

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95160

--- Comment #5 from Pete  ---
Created attachment 119728
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119728=edit
Screenprint showing "Read-Error" message on Save As XLS - LO v4.0.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 95046] 5.0.2.1RC1 Spinning wheel on almost any operation on OSX 10.11

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95046

Alex Thurgood  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTOURBUG

--- Comment #3 from Alex Thurgood  ---
(In reply to miles from comment #2)
> I think this is the cause, if I am correct.
> I get this error with both LO from TDF and from Vanilla LO (Apple Store).
> The reason is that whenever Java is needed:
> - Vanilla LO does not have Java enabled and the wheel starts rotating;
> - LO from TDF wants to run Java, but finds only Java 8 and it is not enough,
> it wants also Java 6;


The dependency on Java6 is known, and will remain so until Oracle can fix a bug
in the way it instantiates the Jvm in process.


> So, the solution would be - install Java 6 on OSX. But:
> I upgraded my OS X to El Capitan. Both Java installations disappeared. I
> reinstalled both or seemed to do so, but only Java 8 is displayed on the
> Java selection menu in LO Advanced Settings.
> 

That is normal, the Java8 installation masks the Java6 installation.

> Either El Capitan does not allow Java 6 to install or it does not install
> properly.
> 
> Why does opening a doc or docx need Java installed - I do not know.


LO for Osx comes with a bundled extension that requires java and this gets
activated when you open a doc or docx file.

-- 
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 95160] FILESAVE in XLS format fails with Read Error message

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95160

--- Comment #4 from Pete  ---
The possibly-related problem in LibreOffice Calc is reported in:
https://bugs.documentfoundation.org/show_bug.cgi?id=95163

-- 
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 94884] Unable to access "AutoCorrect Options..." menu item by access key (Alt+T, A, A, A)

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94884

--- Comment #4 from tommy27  ---
Created attachment 119734
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119734=edit
screenshot LibO 5.1.0.0 alpha

@beluga

I see accelerators in LibO 5.1.0.0.alpha1+
Build ID: 4b55c28940d741e53648115a9cfb58f2d6db38a5
TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2015-10-15_06:14:50
Locale: it-IT (it_IT)

see my screenshot

accelerators are present both for the AutoCorrect submeno ("e") and the
Autocorrect Options... item ("A")

anyway I've noticed that no accelerator effectively works in 5.1 alpha but this
has to be another issue

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


[Libreoffice-bugs] [Bug 95167] New: PRINTING: In Writer hyperlinks are printed with underlines

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95167

Bug ID: 95167
   Summary: PRINTING: In Writer hyperlinks are printed with
underlines
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kb1...@yahoo.com

Using the Writer editor, hyperlinks are shown as normal text. In the print
preview it is the same. However when printed the hyperlinks appear with
underlines. Not good when you're printing business cards :)

-- 
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 95046] 5.0.2.1RC1 Spinning wheel on almost any operation on OSX 10.11

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95046

--- Comment #2 from mi...@filmsi.net ---
I think this is the cause, if I am correct.
I get this error with both LO from TDF and from Vanilla LO (Apple Store).
The reason is that whenever Java is needed:
- Vanilla LO does not have Java enabled and the wheel starts rotating;
- LO from TDF wants to run Java, but finds only Java 8 and it is not enough, it
wants also Java 6;

So, the solution would be - install Java 6 on OSX. But:
I upgraded my OS X to El Capitan. Both Java installations disappeared. I
reinstalled both or seemed to do so, but only Java 8 is displayed on the Java
selection menu in LO Advanced Settings.

Either El Capitan does not allow Java 6 to install or it does not install
properly.

Why does opening a doc or docx need Java installed - I do not know.

-- 
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 95167] PRINTING: In Writer hyperlinks are printed with underlines

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95167

Ken  changed:

   What|Removed |Added

Version|unspecified |5.0.2.2 release

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


[Libreoffice-bugs] [Bug 95168] OOXML Background Color Removed from shapes with hatching

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95168

Luke  changed:

   What|Removed |Added

Summary|Background Color Removed|OOXML  Background Color
   |from shapes with hatching   |Removed from shapes with
   ||hatching

-- 
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 95168] Background Color Removed from OOXML shapes with hatching

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95168

Luke  changed:

   What|Removed |Added

Summary|OOXML  Background Color |Background Color Removed
   |Removed from shapes with|from OOXML shapes with
   |hatching|hatching

-- 
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 94208] Undo after Control-D doesn't fix COUNTA calculation

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94208

raal  changed:

   What|Removed |Added

Version|4.4.2.2 release |4.3.0.0.alpha1

--- Comment #4 from raal  ---
Reproducible with Version: 4.3.0.0.alpha1+
Build ID: c15927f20d4727c3b8de68497b6949e72f9e6e9e

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


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

2015-10-18 Thread Adolfo Jayme Barrientos
 source/text/shared/00/0406.xhp |2 +-
 source/text/shared/guide/accessibility.xhp |2 +-
 source/text/shared/guide/assistive.xhp |2 +-
 source/text/shared/optionen/01060100.xhp   |2 +-
 source/text/swriter/guide/fields.xhp   |6 +++---
 source/text/swriter/guide/smarttags.xhp|4 ++--
 6 files changed, 9 insertions(+), 9 deletions(-)

New commits:
commit fc9a304d9da18036d32b0578abaeb301de593949
Author: Adolfo Jayme Barrientos 
Date:   Sun Oct 18 10:20:01 2015 -0500

tdf#95155 Update help for renamed Options category

Change-Id: I3c2c26cecca5081360a765c1fc4b430dfab2164c

diff --git a/source/text/shared/00/0406.xhp 
b/source/text/shared/00/0406.xhp
index 4dd7eb7..ba19f0f 100644
--- a/source/text/shared/00/0406.xhp
+++ b/source/text/shared/00/0406.xhp
@@ -208,7 +208,7 @@
 
   Choose %PRODUCTNAME - 
PreferencesTools - 
Options - $[officename] - Accessibility
 
-  Choose %PRODUCTNAME - 
PreferencesTools - 
Options - $[officename] - Appearance
+  Choose %PRODUCTNAME - 
PreferencesTools - 
Options - $[officename] - Application 
Colors
 
 
diff --git a/source/text/shared/guide/accessibility.xhp 
b/source/text/shared/guide/accessibility.xhp
index 309667d..0f5871b 100644
--- a/source/text/shared/guide/accessibility.xhp
+++ b/source/text/shared/guide/accessibility.xhp
@@ -47,7 +47,7 @@
   
   
   %PRODUCTNAME - 
PreferencesTools - 
Options - %PRODUCTNAME - View
-  %PRODUCTNAME - 
PreferencesTools - 
Options - %PRODUCTNAME - Appearance
+  %PRODUCTNAME - 
PreferencesTools - 
Options - %PRODUCTNAME - Application Colors
   %PRODUCTNAME - 
PreferencesTools - 
Options - %PRODUCTNAME - Accessibility
   
   
diff --git a/source/text/shared/guide/assistive.xhp 
b/source/text/shared/guide/assistive.xhp
index cf213be..022d0c4 100644
--- a/source/text/shared/guide/assistive.xhp
+++ b/source/text/shared/guide/assistive.xhp
@@ -55,7 +55,7 @@
 
 
 %PRODUCTNAME - 
PreferencesTools - 
Options - $[officename] - View
-%PRODUCTNAME - 
PreferencesTools - 
Options - $[officename] - Appearance
+%PRODUCTNAME - 
PreferencesTools - 
Options - $[officename] - Application Colors
 %PRODUCTNAME - 
PreferencesTools - 
Options - $[officename] - Accessibility
 
 
diff --git a/source/text/shared/optionen/01060100.xhp 
b/source/text/shared/optionen/01060100.xhp
index 630e8f2..0e99330 100644
--- a/source/text/shared/optionen/01060100.xhp
+++ b/source/text/shared/optionen/01060100.xhp
@@ -70,7 +70,7 @@
   Specifies when grid lines will be displayed. Default is to 
display grid lines only on cells that do not have a background color. You can 
choose to also display grid lines on cells with background color, or to hide 
them. For printing, choose Format - Page - Sheet and 
mark the Grid check box.
 
 Color
-Specifies a color 
for the grid lines in the current document. To see the grid line color 
that was saved with the document, go to %PRODUCTNAME - 
PreferencesTools - 
Options - %PRODUCTNAME - Appearance, 
under Scheme find the entry Spreadsheet - Grid lines 
and set the color to "Automatic".
+Specifies a color 
for the grid lines in the current document. To see the grid line color 
that was saved with the document, go to %PRODUCTNAME - 
PreferencesTools - 
Options - %PRODUCTNAME - Application 
Colors, under Scheme find the entry Spreadsheet - 
Grid lines and set the color to "Automatic".
 
 Page breaks
diff --git a/source/text/swriter/guide/fields.xhp 
b/source/text/swriter/guide/fields.xhp
index 219777b..cfc7071 100644
--- a/source/text/swriter/guide/fields.xhp
+++ b/source/text/swriter/guide/fields.xhp
@@ -40,8 +40,8 @@
   Fields are used for data that changes in a document, such as the 
current date or the total number of pages in a document.
   Viewing Fields
   Fields consist of a field name and the field content. To switch the 
field display between the field name or the field content, choose View - Field 
Names.
-  To display or hide field highlighting in a document, choose 
View - Field Shadings. To permanently disable this feature, choose 
%PRODUCTNAME - 
PreferencesTools - 
Options - $[officename] - Appearance, and 
clear the check box in front of Field shadings.
-  To change the color of field shadings, choose %PRODUCTNAME - 
PreferencesTools - 
Options - $[officename] - 
Appearance, locate the Field 
shadings option, and then select a different color in the Color setting box.
+  To display or hide field highlighting in a document, choose 
View - Field Shadings. To permanently disable this feature, choose 
%PRODUCTNAME - 
PreferencesTools - 
Options - $[officename] - Application 
Colors, and clear the check box in front of Field 
shadings.
+  To change the color of field shadings, choose %PRODUCTNAME - 
PreferencesTools - 
Options - $[officename] - Application 
Colors, locate the Field 
shadings option, and then select a different color in the Color setting box.
   Field Properties
   Most field 

[Libreoffice-bugs] [Bug 95166] New: Impress corrupts PPTX containing Shapes with Picture Fill

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95166

Bug ID: 95166
   Summary: Impress corrupts PPTX containing Shapes with Picture
Fill
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lukebe...@hotmail.com

Created attachment 119731
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119731=edit
Error Message

Steps to reproduce:
1. In PowerPoint Insert Shape
2. Shape Fill -> Picture -> Insert
3. Save 
4. Open in Impress
5. Roundtrip file from 3

See attachment 119730 for a simple example.

-- 
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 95166] Impress corrupts PPTX containing Shapes with Picture Fill

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95166

--- Comment #1 from Luke  ---
Created attachment 119732
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119732=edit
Even Simpler Example

-- 
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 95165] Ability to Set Both Scale and Position of Bitmap in Filled Shapes

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95165

Luke  changed:

   What|Removed |Added

Summary|Support Left, Right, Top,   |Ability to Set Both Scale
   |and Bottom Offset for   |and Position of Bitmap in
   |Textured Shapes |Filled Shapes

-- 
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 95046] 5.0.2.1RC1 Spinning wheel on almost any operation on OSX 10.11

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95046

--- Comment #7 from mi...@filmsi.net ---
But I cannot install Java 6 when Java 8 is already present so - it does not
work on my OSX or any upgraded OSX to 10.11. Unless someone provides
instructions how to make Java 6 install and be seen by LO.
And that should all be included in the release notes and installation
instructions for LO.

-- 
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 95053] FORMATTING: Chart Y Axis Vertical Title Unreadable

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95053

--- Comment #5 from nospamforaxe...@yahoo.de ---
On my Ubuntu installation (vivid) of LO 5.0.2.2 I also see the Y-axis title
clearly and vertical, but not on my Windows 7 computer at work. Hmmm...

What do you suggest? Shall I re-install LO on the Windows-Computer?

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


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

2015-10-18 Thread Jan Holesovsky
 cui/source/options/connpoolconfig.cxx |4 +-
 cui/source/options/connpooloptions.cxx|4 +-
 cui/source/options/dbregister.cxx |2 -
 cui/source/options/dbregisterednamesconfig.cxx|2 -
 dbaccess/source/ui/dlg/ConnectionHelper.cxx   |2 -
 dbaccess/source/ui/dlg/ConnectionPage.cxx |8 ++--
 dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx |   22 +--
 dbaccess/source/ui/dlg/DbAdminImpl.cxx|   38 +--
 dbaccess/source/ui/dlg/TextConnectionHelper.cxx   |   14 +++
 dbaccess/source/ui/dlg/admincontrols.cxx  |   12 +++---
 dbaccess/source/ui/dlg/adminpages.cxx |4 +-
 dbaccess/source/ui/dlg/advancedsettings.cxx   |   12 +++---
 dbaccess/source/ui/dlg/detailpages.cxx|   42 +++---
 dbaccess/source/ui/dlg/generalpage.cxx|8 ++--
 dbaccess/source/ui/dlg/tablespage.cxx |4 +-
 dbaccess/source/ui/misc/UITools.cxx   |4 +-
 include/svl/itemset.hxx   |4 --
 sfx2/source/doc/objserv.cxx   |2 -
 sfx2/source/doc/objstor.cxx   |6 +--
 19 files changed, 95 insertions(+), 99 deletions(-)

New commits:
commit 2b5a48da5969b1ed37f4480d843714d434feb5d9
Author: Jan Holesovsky 
Date:   Mon Oct 19 07:18:39 2015 +0200

sfx items: Kill the SFX_ITEMSET_GET macro.

Change-Id: I110a4f25646eb3f0fa93673c84dc67cf64a3b7a0

diff --git a/cui/source/options/connpoolconfig.cxx 
b/cui/source/options/connpoolconfig.cxx
index fcc33c2..a1a76fd 100644
--- a/cui/source/options/connpoolconfig.cxx
+++ b/cui/source/options/connpoolconfig.cxx
@@ -150,7 +150,7 @@ namespace offapp
 bool bNeedCommit = false;
 
 // the global "enabled" flag
-SFX_ITEMSET_GET( _rSourceItems, pEnabled, SfxBoolItem, 
SID_SB_POOLING_ENABLED, true );
+const SfxBoolItem* pEnabled = 
_rSourceItems.GetItem(SID_SB_POOLING_ENABLED);
 if (pEnabled)
 {
 sal_Bool bEnabled = pEnabled->GetValue();
@@ -159,7 +159,7 @@ namespace offapp
 }
 
 // the settings for the single drivers
-SFX_ITEMSET_GET( _rSourceItems, pDriverSettings, 
DriverPoolingSettingsItem, SID_SB_DRIVER_TIMEOUTS, true );
+const DriverPoolingSettingsItem* pDriverSettings = 
_rSourceItems.GetItem(SID_SB_DRIVER_TIMEOUTS);
 if (pDriverSettings)
 {
 OConfigurationNode aDriverSettings = 
aConnectionPoolRoot.openNode(getDriverSettingsNodeName());
diff --git a/cui/source/options/connpooloptions.cxx 
b/cui/source/options/connpooloptions.cxx
index 04d1f32..6321f2a 100644
--- a/cui/source/options/connpooloptions.cxx
+++ b/cui/source/options/connpooloptions.cxx
@@ -345,14 +345,14 @@ namespace offapp
 void ConnectionPoolOptionsPage::implInitControls(const SfxItemSet& _rSet, 
bool /*_bFromReset*/)
 {
 // the enabled flag
-SFX_ITEMSET_GET( _rSet, pEnabled, SfxBoolItem, SID_SB_POOLING_ENABLED, 
true );
+const SfxBoolItem* pEnabled = 
_rSet.GetItem(SID_SB_POOLING_ENABLED);
 OSL_ENSURE(pEnabled, "ConnectionPoolOptionsPage::implInitControls: 
missing the Enabled item!");
 m_pEnablePooling->Check(pEnabled == nullptr || pEnabled->GetValue());
 
 m_pEnablePooling->SaveValue();
 
 // the settings for the single drivers
-SFX_ITEMSET_GET( _rSet, pDriverSettings, DriverPoolingSettingsItem, 
SID_SB_DRIVER_TIMEOUTS, true );
+const DriverPoolingSettingsItem* pDriverSettings = 
_rSet.GetItem(SID_SB_DRIVER_TIMEOUTS);
 if (pDriverSettings)
 m_pDriverList->Update(pDriverSettings->getSettings());
 else
diff --git a/cui/source/options/dbregister.cxx 
b/cui/source/options/dbregister.cxx
index d65a3d0..393601d 100644
--- a/cui/source/options/dbregister.cxx
+++ b/cui/source/options/dbregister.cxx
@@ -219,7 +219,7 @@ bool DbRegistrationOptionsPage::FillItemSet( SfxItemSet* 
rCoreSet )
 void DbRegistrationOptionsPage::Reset( const SfxItemSet* rSet )
 {
 // the settings for the single drivers
-SFX_ITEMSET_GET( *rSet, pRegistrations, DatabaseMapItem, 
SID_SB_DB_REGISTER, true );
+const DatabaseMapItem* pRegistrations = 
rSet->GetItem(SID_SB_DB_REGISTER);
 if ( !pRegistrations )
 return;
 
diff --git a/cui/source/options/dbregisterednamesconfig.cxx 
b/cui/source/options/dbregisterednamesconfig.cxx
index 7fe44a7..4de9bc1 100644
--- a/cui/source/options/dbregisterednamesconfig.cxx
+++ b/cui/source/options/dbregisterednamesconfig.cxx
@@ -73,7 +73,7 @@ namespace svx
 void DbRegisteredNamesConfig::SetOptions(const SfxItemSet& _rSourceItems)
 {
 // the settings for the single drivers
-SFX_ITEMSET_GET( _rSourceItems, pRegistrations, DatabaseMapItem, 
SID_SB_DB_REGISTER, true );
+const DatabaseMapItem* pRegistrations = 
_rSourceItems.GetItem(SID_SB_DB_REGISTER);
 if ( 

[Libreoffice-bugs] [Bug 95068] Crash in autocorrect options

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95068

--- Comment #4 from Jacek  ---
This problem I have in my old computer whith windows XP. LO 5.0.2.2 (x86)
crashed after I do steps 1-3. One thing. In old version in tab word completion
was switches for on/off for collect words, and collect proposition in polish
("włącz uzupełnianie wyrazów" i "zbierz propozycje"). If you see screenshot,
this things not exist in this tab.

-- 
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: OS checks with configuration time DLOPEN_NEEDS_LIBDL

2015-10-18 Thread Richard PALO
Le 30/09/15 16:38, Richard PALO a écrit :
> Le 22/09/15 18:51, Norbert Thiebaud a écrit :
>> On Tue, Sep 22, 2015 at 6:31 AM, Richard PALO  wrote:
>>> Since GUIBASE was replaced with the equivalent OS checks, there seems
>>> to be a bit of abandon in keeping multiple OSes up to snuff.
>>>
>>> in https://gerrit.libreoffice.org/#/c/18591/  I took our base in pkgsrc and
>>> given the biggest difference in unix systems is the need for -ldl or not 
>>> for dlopen,
>>>
>>> I added a configuration check for DLOPEN_NEEDS_LIBDL and updated a number 
>>> of the existing
>>> OS checks to check simultaneously for, among others, %BSD and SOLARIS in 
>>> addition to LINUX.
>>>
>>> It would be nice to get some review on this approach.
>>
>> Jenkins got us a first review. the patch break on windows because it seems 
>> that
>> AC_SEARCH_LIBS([dlopen],
>> trigger a search of gcc...
>>
>> is there any chance that is relevant for windows ? if not the 'if
>> test' that out of configure ofr cygwin case (and prolly for macosx
>> case as at bes it will work , but it can pick up accidentally some
>> crap if the mac has some extra stuff installed)
>>
>> that being said couldn't this be done without putting all that logic
>> in the 'client' makefile.
>>
>> and just have $(if $(DLOPEN_NEEDS_LIBDL), -ldl) logic in gbuild and
>> define a gb_LIBDL defined to -ldl or empty (most likely in
>> RepositoryExternal.mk or in platform/* not sure on top of my head
>> which is the cleanest.
>>
>> and then have for example
>>
>> $(eval $(call gb_Executable_add_libs,gengal,\
>> $(gb_LIBDL) \
>> -lpthread \
>>
>> (and yes that could be extended to the few place that do the same kind
>> of exercise with lpthread... and there is maybe an even better way but
>> one step at the time...)
>>
>>
>> also you may want to split the part of the patch that touch
>> Repositoty.mk as that seems somewhat orthogonal with the -ldl stuff
>>
>> Norbert
> 
> Well, personally I'm of the opinion that configure is the typical place for 
> this type
> of check, in order to leave more pertinent things in platform...
> 
> I added an `if test $_OS != "WINNT"` guard, I believe that should be ok.
> As far as -lpthread, I guess I agree...  I can add that to this now as well,
> or it could be a follow up patch.
> 
> gerrit updated, if it's possible to launch a jenkins run.
> 

I'd like to advance, one way or another on this topic.

I can add an addition guard to avoid MACOSX if need be but I doubt the use
of a non-configuration parameter buried in platform settings.

It would be a pity to leave things as they are as most BSD and SunOS currently 
need to 
seriously patch things in their ports.

-- 
Richard PALO

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


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

2015-10-18 Thread Justin Luth
 sw/qa/extras/ooxmlexport/data/tdf36117_verticalAdjustment.docx |binary
 sw/qa/extras/ooxmlexport/ooxmlexport7.cxx  |   27 
++
 sw/source/core/unocore/unomap.cxx  |1 
 sw/source/core/unocore/unostyle.cxx|   15 +
 sw/source/filter/ww8/docxattributeoutput.cxx   |   21 +++
 sw/source/filter/ww8/docxattributeoutput.hxx   |3 +
 writerfilter/source/dmapper/DomainMapper.cxx   |   25 +
 writerfilter/source/dmapper/PropertyIds.cxx|1 
 writerfilter/source/dmapper/PropertyIds.hxx|1 
 9 files changed, 94 insertions(+)

New commits:
commit 664197d95becd516c3dac25a50439078ba61e051
Author: Justin Luth 
Date:   Thu Sep 10 11:41:11 2015 +0300

tdf#36117 .docx preserve page vertical alignment after RT

Change-Id: I90174f7a98e9bd01f45ee668f127356ff3e0e4ed
Reviewed-on: https://gerrit.libreoffice.org/18481
Tested-by: Jenkins 
Reviewed-by: Justin Luth 

diff --git a/sw/qa/extras/ooxmlexport/data/tdf36117_verticalAdjustment.docx 
b/sw/qa/extras/ooxmlexport/data/tdf36117_verticalAdjustment.docx
new file mode 100644
index 000..70fdec7
Binary files /dev/null and 
b/sw/qa/extras/ooxmlexport/data/tdf36117_verticalAdjustment.docx differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport7.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport7.cxx
index f95f5d2..0b82bcf 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport7.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport7.cxx
@@ -23,6 +23,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 
@@ -1005,6 +1006,32 @@ DECLARE_OOXMLEXPORT_TEST(testExportAdjustmentValue, 
"tdf91429.docx")
 
assertXPath(pXmlDoc,"/w:document/w:body/w:p/w:r[1]/mc:AlternateContent/mc:Choice/w:drawing/wp:anchor/a:graphic/a:graphicData/wps:wsp/wps:spPr/a:prstGeom/a:avLst/a:gd",
 "fmla", "val 5");
 }
 
+DECLARE_OOXMLEXPORT_TEST(testTextVerticalAdjustment, 
"tdf36117_verticalAdjustment.docx")
+{
+//Preserve the page vertical alignment setting for .docx
+SwXTextDocument* pTextDoc = dynamic_cast(mxComponent.get());
+CPPUNIT_ASSERT(pTextDoc);
+SwDoc* pDoc = pTextDoc->GetDocShell()->GetDoc();
+CPPUNIT_ASSERT(pDoc);
+
+SwPageDesc  = pDoc->GetPageDesc( 0 );
+drawing::TextVerticalAdjust nVA = Desc.GetVerticalAdjustment();
+CPPUNIT_ASSERT_EQUAL( drawing::TextVerticalAdjust_CENTER, nVA );
+
+Desc = pDoc->GetPageDesc( 1 );
+nVA = Desc.GetVerticalAdjustment();
+CPPUNIT_ASSERT_EQUAL( drawing::TextVerticalAdjust_TOP, nVA );
+
+Desc = pDoc->GetPageDesc( 2 );
+nVA = Desc.GetVerticalAdjustment();
+CPPUNIT_ASSERT_EQUAL( drawing::TextVerticalAdjust_BOTTOM, nVA );
+
+Desc = pTextDoc->GetDocShell()->GetDoc()->GetPageDesc( 3 );
+nVA = Desc.GetVerticalAdjustment();
+CPPUNIT_ASSERT_EQUAL( drawing::TextVerticalAdjust_BLOCK, nVA );
+}
+
+
 DECLARE_OOXMLEXPORT_TEST(testTDF87348, "tdf87348_linkedTextboxes.docx")
 {
 int followCount=0;
diff --git a/sw/source/core/unocore/unomap.cxx 
b/sw/source/core/unocore/unomap.cxx
index 5d118c6..4f38b25 100644
--- a/sw/source/core/unocore/unomap.cxx
+++ b/sw/source/core/unocore/unomap.cxx
@@ -1033,6 +1033,7 @@ const SfxItemPropertyMapEntry* 
SwUnoPropertyMapProvider::GetPropertyMapEntries(s
 { OUString(UNO_NAME_SIZE), SID_ATTR_PAGE_SIZE,  
cppu::UnoType::get(), PROPERTY_NONE,   
MID_SIZE_SIZE|CONVERT_TWIPS},
 { OUString(UNO_NAME_WIDTH), SID_ATTR_PAGE_SIZE, 
cppu::UnoType::get()  , PROPERTY_NONE, 
MID_SIZE_WIDTH|CONVERT_TWIPS},
 { OUString(UNO_NAME_HEIGHT), SID_ATTR_PAGE_SIZE,
cppu::UnoType::get()  , PROPERTY_NONE, 
MID_SIZE_HEIGHT|CONVERT_TWIPS},
+{ OUString(UNO_NAME_TEXT_VERT_ADJUST), 
RES_TEXT_VERT_ADJUST, cppu::UnoType::get(), 
PROPERTY_NONE, 0 },
 { OUString(UNO_NAME_TEXT_COLUMNS), RES_COL,
cppu::UnoType::get(),PROPERTY_NONE, MID_COLUMNS},
 { OUString(UNO_NAME_TOP_MARGIN), RES_UL_SPACE,  
cppu::UnoType::get(), PROPERTY_NONE, MID_UP_MARGIN|CONVERT_TWIPS},
 { OUString(UNO_NAME_BOTTOM_MARGIN), RES_UL_SPACE,  
 cppu::UnoType::get(), PROPERTY_NONE, MID_LO_MARGIN|CONVERT_TWIPS},
diff --git a/sw/source/core/unocore/unostyle.cxx 
b/sw/source/core/unocore/unostyle.cxx
index 3f99c3c..d297a26 100644
--- a/sw/source/core/unocore/unostyle.cxx
+++ b/sw/source/core/unocore/unostyle.cxx
@@ -1994,6 +1994,21 @@ static void lcl_SetStyleProperty(const 
SfxItemPropertySimpleEntry& rEntry,
 bDone = true;
 break;
 }
+case RES_TEXT_VERT_ADJUST:
+{
+if( pDoc )
+{
+SwPageDesc* pPageDesc = pDoc->FindPageDesc( 
rBase.GetOldPageDesc().GetName() );
+  

Re: OS checks with configuration time DLOPEN_NEEDS_LIBDL

2015-10-18 Thread Norbert Thiebaud
On Sun, Oct 18, 2015 at 10:54 PM, Richard PALO  wrote:
>
> I'd like to advance, one way or another on this topic.

Sure, but the patch still need to not break Windows.

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


fatal error in git pull for the master

2015-10-18 Thread Jean-Baptiste Faure
Hi,

I get a fatal error when updating my local repository for the master.
The problem comes from the commit updated core / translations :

https://gerrit.libreoffice.org/gitweb?p=core.git;a=commitdiff;h=b26018b762b7d5659ffab98ffb05c7a74dc94910

The error message (translated in English from French) is:
fatal: the reference is not a tree :
ca20aa8ceb614b394803763754df27fb3b44c0de
Unable to extract 'ca20aa8ceb614b394803763754df27fb3b44c0de' in the path
of the submodule 'translations'.

Is the problem in my local repository or is there un problem with the
translations updating?

Best regards
JBF

-- 
Seuls des formats ouverts peuvent assurer la pérennité de vos documents.
Disclaimer: my Internet Provider being located in France, each of our
exchanges over Internet will be scanned by French spying services.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 94341] Total record number overwritten in record toolbar control on form

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94341

raal  changed:

   What|Removed |Added

   Keywords||bisected
 CC||qui...@gmail.com
 Whiteboard|bibisectRequest |bibisected

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

adc374975884cb8763bea04c39dffad212f42d49 is the first bad commit
commit adc374975884cb8763bea04c39dffad212f42d49
Author: Norbert Thiebaud 
Date:   Thu Jul 9 22:37:03 2015 -0700

source sha:4f5fe008a3d5f0b5ddfa656299306cff9d57d802

source sha:4f5fe008a3d5f0b5ddfa656299306cff9d57d802

authorTomaž Vajngerl 2015-05-22
08:51:44 (GMT)
committerTomaž Vajngerl 2015-05-23
09:55:39 (GMT)
commit4f5fe008a3d5f0b5ddfa656299306cff9d57d802 (patch)
use ApplySettings instead of ImplInitSettings is called

-- 
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 95046] 5.0.2.1RC1 Spinning wheel on almost any operation on OSX 10.11

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95046

Alex Thurgood  changed:

   What|Removed |Added

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

-- 
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 95046] 5.0.2.1RC1 Spinning wheel on almost any operation on OSX 10.11

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95046

--- Comment #6 from Alex Thurgood  ---
https://bugs.documentfoundation.org/show_bug.cgi?id=74877

-- 
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 95053] FORMATTING: Chart Y Axis Vertical Title Unreadable

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95053

--- Comment #6 from raal  ---
(In reply to nospamforaxel-1 from comment #5)
> On my Ubuntu installation (vivid) of LO 5.0.2.2 I also see the Y-axis title
> clearly and vertical, but not on my Windows 7 computer at work. Hmmm...
> 
> What do you suggest? Shall I re-install LO on the Windows-Computer?

 For the test, could you rename your LibreOffice directory profile (see
https://wiki.documentfoundation.org/UserProfile) and give it a new try?

-- 
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: fatal error in git pull for the master

2015-10-18 Thread Robinson Tryon
On Sun, Oct 18, 2015 at 10:59 PM, Jean-Baptiste Faure
 wrote:
> Hi,
>
> I get a fatal error when updating my local repository for the master.
> The problem comes from the commit updated core / translations :
>
> https://gerrit.libreoffice.org/gitweb?p=core.git;a=commitdiff;h=b26018b762b7d5659ffab98ffb05c7a74dc94910
>
> The error message (translated in English from French) is:
> fatal: the reference is not a tree :
> ca20aa8ceb614b394803763754df27fb3b44c0de
> Unable to extract 'ca20aa8ceb614b394803763754df27fb3b44c0de' in the path
> of the submodule 'translations'.
>
> Is the problem in my local repository or is there un problem with the
> translations updating?

Hiya,
There seemed to be some issues with pushing commits to gerrit earlier.
I'm still getting java.lang errors when I push, but ca20aa8c should be
there now (according to gerrit's web interface).

Best,
--R

-- 
Robinson Tryon
QA Engineer - The Document Foundation
LibreOffice Community Outreach Herald
qu...@libreoffice.org
802-379-9482 | IRC: colonelqubit on Freenode
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 94884] Unable to access "AutoCorrect Options..." menu item by access key (Alt+T, A, A, A)

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94884

Beluga  changed:

   What|Removed |Added

   Keywords|regression  |
 Whiteboard|bibisectRequest |

--- Comment #5 from Beluga  ---
Sorry, I must have been tired..
Now we can get to Autocorrect options by Alt-T, E, A.

I'll remove the bibisect request and regression keyword. It seems this can soon
be closed.

Win 7 Pro 64-bit Version: 5.1.0.0.alpha1+
Build ID: 186f32f63434e16ff5776251657f902d5808ed3d
TinderBox: Win-x86@39, Branch:master, Time: 2015-10-16_09:42:47
Locale: en-US (fi_FI)

-- 
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 95046] 5.0.2.1RC1 Spinning wheel on almost any operation on OSX 10.11

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95046

--- Comment #5 from Alex Thurgood  ---
Sure it does, read comment 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-commits] translations.git: Changes to 'refs/tags/libreoffice-5.1.0.0.alpha1'

2015-10-18 Thread Robinson Tryon
Tag 'libreoffice-5.1.0.0.alpha1' created by Robinson Tryon 
 at 2015-10-18 19:01 -0700

Tag libreoffice-5.1.0.0.alpha1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJWI95cAAoJEPQ0oe+v7q6jVtMQAItctB1T635YlBnj0ktpQqxm
+vEUO7sgJGvQGA/TXtS7fKUR1muIz45lHZo/vc1ES711///XQtyv4LtE5bt/RAgI
ZVRW5+ZXzMhPd14ITkx3/aQEswhJI3kIZDOU+pmP1hXRiOqNQBJha59oZw5oZP0s
3v5Ulj4llWMMO5hFFtXCtfQHISqlzK5ayaKvr++O2KcwtmuRA+9M7clRVb1SFEx+
S5ta9Ej2/hN0uYQcjwIGBv2qTkveyectv7WGv6I3Cj4C9bWwzpLYuqV5nbeQaVoP
SphP9hjChsp4TlYxMyRWgeIcQ/y0Vt2OdyWH4BhIlOIEov1A3K8RFr5i3CsvmOLq
6FAsD9C/KrAfzxA2UOBv+4fnY8VwZUAI8jzZoz+GVCyJcmV5G9OnpAAP86BtkZH2
iWKxvKTCeyk8Zo1otmbe6NW2zTrEoOWwVr0nQd/eHiF0h6wlhEPhjgUdUlbn3YMH
cfyjfPm1j23GfwLu1ew07QWsmkQDpCNdr76SOHejrJtXP4pxMwNvpB5KuLCEP5WL
4IJ2gXU08r1k/kkQ2tbQSnNxAGme3MZOuu7nu0W8cJY1TVWfYGbkJlKKkrNj3BO3
9JbeGe1KmzLqLXAomRY0JvC0azWOMfvePxf9gc5rl2AstPjjYUfWlNiIil+cmNO5
1AtKxSYE6bYYQUUBcqbV
=Tv7F
-END PGP SIGNATURE-

Changes since libreoffice-5-0-branch-point-5:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 2 commits - i18npool/source translations

2015-10-18 Thread Robinson Tryon
 i18npool/source/localedata/saxparser.cxx |2 +-
 translations |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 51df957e1a40d2f3511345c1600c05dd35f34b6b
Author: Robinson Tryon 
Date:   Sun Oct 18 12:57:18 2015 -0500

Updated core
Project: translations  b29df8cb3000f603cfedccd11de4ae5ad1373eed

Version 5.1.0.0.alpha1, tag libreoffice-5.1.0.0.alpha1

Change-Id: I8a0c7795be5dfb714c46110d4aa868876b443bab

diff --git a/translations b/translations
index ca20aa8..b29df8c 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit ca20aa8ceb614b394803763754df27fb3b44c0de
+Subproject commit b29df8cb3000f603cfedccd11de4ae5ad1373eed
commit 9922dc2724f8ea17de0d5e091410595bcb683a5d
Author: Takeshi Abe 
Date:   Fri Oct 16 16:01:04 2015 +0900

Fix typo

Change-Id: I88ffb084c9d0f6119543757dcd633dd1b30c760e

diff --git a/i18npool/source/localedata/saxparser.cxx 
b/i18npool/source/localedata/saxparser.cxx
index c842586..bde98f9 100644
--- a/i18npool/source/localedata/saxparser.cxx
+++ b/i18npool/source/localedata/saxparser.cxx
@@ -320,7 +320,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
 {
 try {
 if( argc < 4) {
-printf( "usage : %s   \n", argv[0] );
+printf( "usage : %s   \n", argv[0] );
 exit( 1 );
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: Changes to 'refs/tags/libreoffice-5.1.0.0.alpha1'

2015-10-18 Thread Robinson Tryon
Tag 'libreoffice-5.1.0.0.alpha1' created by Robinson Tryon 
 at 2015-10-18 19:00 -0700

Tag libreoffice-5.1.0.0.alpha1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIbBAABAgAGBQJWI95HAAoJEPQ0oe+v7q6jH4cP+I5m7t/pittXB7XC+gr6q9k5
6gEWQB18yTEpGx+3B2cGrm0BOufbZBcl7BxORy0z5zGZ5chUcshoa5V6SLX1t+0z
KgkZsKzz6dQplXZEMCuyfCXwUKKchGwGfQBtusiLOZkOEZBA1pO8jCoWbIGoZZR1
LMbSzhiEGcFVjzKhpagkoMvpwM5TJts70DmjTIFH8XmT8hMFj+RHuhDaCNfao87v
kbDOGp9xBvqawWyH3pJmBLOpnWxklaLPJ8AJjMGnr34D1jg+XgZQaGi35CyqYy+z
WElDpakhEciyBVVkSzoTB4HEghKxvD+6q/lc4+WZ33VaNgNM1WiBxswP6Ptk2Pnt
XrlJg23+G9CNYE1+Q5zPDrgVGOB5XpZYTKg9SWdpl0dU+yYl7VglDOJFKqGXmtII
g0owc/3dHTFxQfc9VvZE0W2TVZPaHZn0LGkaY/KW9j6pbRDnhYUbZEdWXVD5inC/
sCcpfUXgSyV1qUtvIVKdDjLuNtSiQocUNm7FBL4FgN/mYvMHRGiMhxUYPyPFOrIw
KiBKioqxXBYYM6cNamHrMIV6sobrWYyxlYudhZyxF1gdmZaDHzPshczRotahOXAb
KjulkMCcDBFmdvcH6If4WpBN8C7tWAxxD4XAV6LA388ZKPPDs9qnZivvy0PqJwKO
ilHDKuFv/gdyWofLvVI=
=l+vF
-END PGP SIGNATURE-

Changes since libreoffice-5-0-branch-point-74:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/libreoffice-5.1.0.0.alpha1'

2015-10-18 Thread Robinson Tryon
Tag 'libreoffice-5.1.0.0.alpha1' created by Robinson Tryon 
 at 2015-10-18 23:08 -0700

Tag libreoffice-5.1.0.0.alpha1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJWJBhrAAoJEPQ0oe+v7q6jYaQP/ijgoGbYBOLk10urADortqxC
vjyH8LCKGyNy1b+P290+Ugm6TerCSk0WZukuDLo52UOEesj7qK5zr1/uSt7fR72R
Tj9hRVSdNLiTVNcmmktZ5kj/dshXMqZ/CH/ejHfUAeDgrpNJlbuJvsX+s9Zi4+9L
zJEkN8Ru6cE7ZhJLLe8TmzzVUlPn4SZ+1o/8/DvVngjv0PH/GJqjrUdg4factX5q
RvRvHJ9hGAMgtk4dP6a9bYzTuNT93c4HD/UILLFH7rKVCKJaOywCjvg90TrEXQuO
bf3g7qUtUwVPtJ0P5vDTt0z0R471cfyLUK1qXLLX08vWz/ZqhRyS+djtrRmBrkbK
JfHZk532xs22QyXNrR6AD+GEYUHJAqcPL80UdHhvXsfHCbvz9jZCSwy/VnlQUI/E
ufckhDUoo7WezL8eeH+ozK6IU9PyiYBiEI3CMjxMLRfo5Hcnp6etrBwCqICJp4+U
EWzmJRDXi3PRcJFjSNeutLUD7Xd1CqyJ7ITRurvGabkfoS6MpKFtHhIjC7as5dCQ
KF8Nh7gVckPlliQoxdat31t4m4VjnIQKjqICtSZGAVrbaiRXt9FZuiwoqB0pbU9S
LbHlqGeQDW/24zQRwZ1nYxhn7HahajGnywaXlAHDBx4mp0iSye+v12pNdIOEyADr
kBAUL4pp17Hp6hVVdW6R
=bjHy
-END PGP SIGNATURE-

Changes since libreoffice-5-0-branch-point-13:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Changes to 'refs/tags/libreoffice-5.1.0.0.alpha1'

2015-10-18 Thread Robinson Tryon
Tag 'libreoffice-5.1.0.0.alpha1' created by Robinson Tryon 
 at 2015-10-18 19:01 -0700

Tag libreoffice-5.1.0.0.alpha1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJWI95cAAoJEPQ0oe+v7q6jaocP/2JWMGvOaz7Hm/0tymG1BUWc
XI+garlRcGDsY/hjGarpGYTxnB65YEjXbIuCURII9kZ0vQxIXVK5/ekE4jjAUIIk
0QPtca8M5rdEULbsoBkVSs/OU3fGqDgqVmaHGFNbN031RQsGKj5Edp8ZrnbU/wT2
icmzd6GMteeq3oJlLzIwbwcdl64GSxPabDarkuvUzogQiDv2p/k71X4ZbvHaU5xb
VKp5fgWaIkUCXIHY+z1hPINpqu7ccaqprooTwPIO0a/YA/B9KZptfRQrwON83jPS
nA+lzACe4S3lIk7Mv+ig6WD/i/ImpC9cpweMtN+Ek02EV7puOoAKUWyGer2V10oW
piO8rwMeUrxZzngChWZrIx/xeruvofYXV90Kx/MuFVSwvz1IIZpS8nIy7qlXxwob
C1AA8rYSmUbpNo2ijyLPbEtYuwbExU/wq7y7uwIV2FplaSxOJS6L24cX7sWAdlyQ
HnUXEcvhWMXkXblRrPqGaWuDLRWUY2jEaAJJMrMoqBbJ12YnB6Axo2LqL5j6Ru79
JsNo8LHLuiWwfnVRH4+vBgW9cPD9wCPrInhLkwdq8Ce+aE1mbNnvfhISTz30jMJs
GjLKB0M0zOhBTLY0BmU0jA1McvxwlmJEFW6xNo1of4qnGJKSMVczPIB6hWnONKrI
1XvVDwLF06hdBYgkk7Hk
=Q4vm
-END PGP SIGNATURE-

Changes since libreoffice-5-0-branch-point-7388:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 95116] Writer will not let us save a document when using LibreOffice on our Mac Pro; works fine on Mac Mini.

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95116

Alex Thurgood  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from Alex Thurgood  ---
(In reply to Roy from comment #2)
> Alex,
> Thank you for taking time to look at my bug report. We LOVE  LibreOffice 5
> and really hope you will be able to fix this.
> 


I merely triage thé bug reports on OSX, and am incapable of fixing them.

As I don't have a 2008 Mac Pro with Yosemite, it is unlikely that this report
will ever be confirmed.

-- 
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 95116] Writer will not let us save a document when using LibreOffice on our Mac Pro 2008, but works fine on Mac Mini 2010

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95116

Alex Thurgood  changed:

   What|Removed |Added

Summary|Writer will not let us save |Writer will not let us save
   |a document when using   |a document when using
   |LibreOffice on our Mac Pro; |LibreOffice on our Mac Pro
   |works fine on Mac Mini. |2008, but works fine on Mac
   ||Mini 2010

-- 
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 94992] Caption of Figures disappear in ODM

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94992

--- Comment #3 from Beluga  ---
This might make it quicker to construct:
https://wiki.documentfoundation.org/QA/Bugzilla/Sanitizing_Files_Before_Submission#Sanitize_file_text

-- 
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 95116] Writer will not let us save a document when using LibreOffice on our Mac Pro 2008, but works fine on Mac Mini 2010

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95116

--- Comment #4 from Alex Thurgood  ---
Roy,
I am assuming you have Java6 installed on both machines?

-- 
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 95161] New: EDITING: Date field in embedded form displays unexpected value

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95161

Bug ID: 95161
   Summary: EDITING: Date field in embedded form displays
unexpected value
   Product: LibreOffice
   Version: 5.0.0.5 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nos...@nlnet.org

I am using a custom Open/LibreOffice Base application with sub-forms or
embedded forms (don't know the proper terminology). The forms are linked to a
mysql database.

I have used this application for 10 years in various versions of OpenOffice
(until version 4.0) and LibreOffice (since version 4.3). 

The main from displays customer data while the embedded forms show the invoices
and products related to the customer.

Since upgrading from LO 4.3.x to 5.0.0.5 I have a new issue with date fields in
embedded forms. Please note that this has not been an issue with the
application in earlier versions of LO and OO. 

The fields display the proper dates until I click on the field for editing. At
that point, the displayed value changes to something unpredictable. At least I
have not been able to see a pattern, except that all fields in a column seem to
display the same value when editing. 

This is troublesome, as it makes it much harder to change a date by notching up
a month or a year as the original value is no longer visible when editing.

The issue does not change when I change from the native mysql connector to the
jdbc connector vice versa.

As of yet I have not found this issue in the bug database. Therefore I submit
this bug report. I have yet to write the procedure to reproduce this issue.
Just submitting as is right now, in the hope that someone else has encountered
the same issue.

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


[Libreoffice-bugs] [Bug 95163] FILESAVE: Save As .DOC format causes hang/loop

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95163

--- Comment #1 from Pete  ---
Created attachment 119726
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119726=edit
Screenshot of Windows Event Viewer general tab after manual ending of hang/loop

-- 
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 95163] FILESAVE: Save As .DOC format causes hang/loop

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95163

--- Comment #2 from Pete  ---
Created attachment 119727
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119727=edit
Screenshot of Windows Event Viewer details tab after manual ending of hang/loop

-- 
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 95164] New: Text in drop-down box garbled

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95164

Bug ID: 95164
   Summary: Text in drop-down box garbled
   Product: LibreOffice
   Version: 4.4.5.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: devn...@caryba.net

Created attachment 119729
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119729=edit
Image showing error in drop-down box (Linux, KDE)

The text in the drop-down box showing the font is garbled (see attached image).

When moving the cursor to a place with a different font in Writer, the new font
name is written over the previous font name in a way that both remain visible.

I disabled font aa and hardware acceleration and it did not fix the issue.

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


[Libreoffice-ux-advise] [Bug 94171] Make navigation arrows in Calc visible only when they are needed and place them on the right

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94171

--- Comment #11 from tommy27  ---
good point Heiko.
this is another aspect in favour of customizable position of such buttons

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


[Libreoffice-bugs] [Bug 95165] Support Left, Right, Top, and Bottom Offset for Textured Shapes

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95165

Luke  changed:

   What|Removed |Added

  Component|Impress |UI

-- 
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 95165] Support Left, Right, Top, and Bottom Offset for Textured Shapes

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95165

--- Comment #2 from Luke  ---
Created attachment 119735
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119735=edit
Sample Word Doc with a bitmap filled shape

I gave a presentation example, but this issue affects all file formats that
contain shapes. Here is an example of a Word doc that writer cannot import.

-- 
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 89861] Data labels in Calc graphs go wrong when displayed in % format

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89861

--- Comment #10 from Andy  ---
Hi Joel and thanks for your attention.
You're the master here, so I would not question your decision.
However, I must say that the attachment you offered show exactly what I find
dubious.
LEt's look at the first chart: for example, the first data for men has a count
of 20 out of the 300 males in total, while the same count for women is 12 out
of a total of 128. Suppose the counts on this line are for leftist opinions: so
the relevance of the left for men is 6,7% while it is 9,4% for women.
I re-attached the file completing the table and showing the percentages
expected in the graph in columns D and E, where instead we have the ratios
between man and women for each item.
At the same time, consider the case where the survey was made only on men,
represented by the new CHART 3: here the % are not usable at all, while I would
like to have 6,7%, 13,3% etc. instead of 100% 100%,

-- 
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 89861] Data labels in Calc graphs go wrong when displayed in % format

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89861

--- Comment #11 from Andy  ---
Created attachment 119719
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119719=edit
discussing the data in charts

-- 
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 89861] Data labels in Calc graphs go wrong when displayed in % format

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89861

--- Comment #12 from Joel Madero  ---
Hey Andy,

Let's try this one (new attachment) that I think does what you are requesting.
If it doesn't, please come into the QA channel and let's talk live :)

http://webchat.freenode.net/?channels=libreoffice-qa

-- 
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 89861] Data labels in Calc graphs go wrong when displayed in % format

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89861

--- Comment #13 from Joel Madero  ---
Created attachment 119720
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119720=edit
Another Good File

-- 
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 89305] Formatting Enhacement: Cell Style 'Default' should be empty

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89305

Joel Madero  changed:

   What|Removed |Added

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

--- Comment #2 from Joel Madero  ---
I've spoken with Markus who is one of the most experienced Calc programmers on
the project:

He has said that you describe a real issue but your proposed solution is
WONTFIX. That being said, he said that "I solve it in the ooxml import already
with styles that don't inherit from anything."

So I am closing this as WONTFIX because expert has said the proposed solution
will not be implemented. Try master install to see what you think (I have no
idea what he did with ooxml import but it seems like he thinks it resolves your
problem).

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 95155] UI: renaming Tools->Options->LibreOffice->Appearance to 'Application Colors'

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95155

Adolfo Jayme  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC|libreoffice-ux-advise@lists |
   |.freedesktop.org|
  Component|ux-advise   |UI
   Assignee|libreoffice-b...@lists.free |f...@libreoffice.org
   |desktop.org |
 Whiteboard|easyhack difficultybeginner |easyhack difficultybeginner
   |skillcpp topicui|skillcpp topicui
   ||target:5.1.0

--- Comment #4 from Adolfo Jayme  ---
@Stuart: that commit is intended for this bug. As of this writing it’s still
invisible in the freedesktop.org mirror, but you can see it here:
https://gerrit.libreoffice.org/gitweb?p=help.git;a=commitdiff;h=fc9a304d9da18036d32b0578abaeb301de593949

-- 
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 95155] UI: renaming Tools->Options->LibreOffice->Appearance to 'Application Colors'

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95155

Adolfo Jayme  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC|libreoffice-ux-advise@lists |
   |.freedesktop.org|
  Component|ux-advise   |UI
   Assignee|libreoffice-b...@lists.free |f...@libreoffice.org
   |desktop.org |
 Whiteboard|easyhack difficultybeginner |easyhack difficultybeginner
   |skillcpp topicui|skillcpp topicui
   ||target:5.1.0

--- Comment #4 from Adolfo Jayme  ---
@Stuart: that commit is intended for this bug. As of this writing it’s still
invisible in the freedesktop.org mirror, but you can see it here:
https://gerrit.libreoffice.org/gitweb?p=help.git;a=commitdiff;h=fc9a304d9da18036d32b0578abaeb301de593949

-- 
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 45789] automatic row height in reports

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

--- Comment #41 from kerem  ---
Hello, 

I am starting work on this bug. I want ask questions to you. Please can you
help me? 

First of all, I don't know where the start. Also will i work any code files? 

Thank you for your suggestion.

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

2015-10-18 Thread Lionel Elie Mamane
 svx/source/form/fmshell.cxx |   11 ---
 1 file changed, 4 insertions(+), 7 deletions(-)

New commits:
commit ddc2de207a55b56a9f706ce3ddfc8ddb48bdf2e8
Author: Lionel Elie Mamane 
Date:   Sun Oct 18 20:54:49 2015 +0200

reorganise code, no behaviour change intended

... at leat in normal circumstances.
assumed that the dialog can only return Yes/No/Cancel
if it doesn't, then behaviour change, be more conservative and save only on 
yes.

the order between rController->commitCurrentRecord( ) and
GetImpl()->didPrepareClose( true ) is changed, that's on purpose.
If commitCurrentRecord( ) throws, then don't do GetImpl()->didPrepareClose( 
true )

Change-Id: Ieb88c04a27e71b313e7f1386d48f370a1e94c6c2

diff --git a/svx/source/form/fmshell.cxx b/svx/source/form/fmshell.cxx
index 31d9e55..99bcb04 100644
--- a/svx/source/form/fmshell.cxx
+++ b/svx/source/form/fmshell.cxx
@@ -265,7 +265,7 @@ bool FmFormShell::PrepareClose(bool bUI)
 const svx::ControllerFeatures& rController = 
GetImpl()->getActiveControllerFeatures();
 if ( rController->commitCurrentControl() )
 {
-bool bModified = rController->isModifiedRow();
+const bool bModified = rController->isModifiedRow();
 
 if ( bModified && bUI )
 {
@@ -274,19 +274,16 @@ bool FmFormShell::PrepareClose(bool bUI)
 "svx/ui/savemodifieddialog.ui");
 switch (aQry->Execute())
 {
-case RET_NO:
-bModified = false;
-// fallthrough to next case
 case RET_YES:
+bResult = rController->commitCurrentRecord( );
+// fallthrough to next case
+case RET_NO:
 GetImpl()->didPrepareClose( true );
 break;
 
 case RET_CANCEL:
 return false;
 }
-
-if ( bModified )
-bResult = rController->commitCurrentRecord( );
 }
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 45789] automatic row height in reports

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

--- Comment #41 from kerem  ---
Hello, 

I am starting work on this bug. I want ask questions to you. Please can you
help me? 

First of all, I don't know where the start. Also will i work any code files? 

Thank you for your suggestion.

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


[Libreoffice-bugs] [Bug 45789] automatic row height in reports

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

--- Comment #42 from Lionel Elie Mamane  ---
(In reply to kerem from comment #41)
> Hello, 
> 
> I am starting work on this bug. I want ask questions to you. Please can you
> help me? 
> 
> First of all, I don't know where the start. Also will i work any code files? 
> 
> Thank you for your suggestion.

Please read particularly comments 22 to 26. Then come back to me with any
question or difficulty you have.

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


[Bug 45789] automatic row height in reports

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45789

--- Comment #42 from Lionel Elie Mamane  ---
(In reply to kerem from comment #41)
> Hello, 
> 
> I am starting work on this bug. I want ask questions to you. Please can you
> help me? 
> 
> First of all, I don't know where the start. Also will i work any code files? 
> 
> Thank you for your suggestion.

Please read particularly comments 22 to 26. Then come back to me with any
question or difficulty you have.

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


gerrit java error

2015-10-18 Thread Lionel Elie Mamane
the push succeeds but Gerrit shows a Java error...

$ git push origin HEAD:master
Counting objects: 6, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (6/6), done.
Writing objects: 100% (6/6), 811 bytes | 0 bytes/s, done.
Total 6 (delta 5), reused 0 (delta 0)
remote: Resolving deltas: 100% (5/5)
remote: Processing changes: refs: 1, done
remote: error: internal error while processing changes 
java.lang.NoSuchMethodError: org.eclipse.jgit.revwalk.RevWalk.release()V
To ssh://lmam...@gerrit.libreoffice.org:29418/core
   36303ee..ddc2de2  HEAD -> master
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 95046] 5.0.2.1RC1 Spinning wheel on almost any operation on OSX 10.11

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95046

Alex Thurgood  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1
   Severity|major   |normal

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

Version: 5.0.2.2
Build ID: 37b43f919e4de5eeaca9b9755ed688758a8251fe
Locale : fr-FR (fr.UTF-8)

OSX 10.11

Please try wotht he latest production release of LibreOffice.

Please also provide more details about your environment :

- LibreOffice from AppStore or LibreOffice from TDF ?
- Java version(s) ?
- assistive technologies (screen readers, VoiceOver, zoom, etc)?

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


[Libreoffice-bugs] [Bug 95159] Thai word wrapping of กลับ and การกระทำ

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95159

Alex Thurgood  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Alex Thurgood  ---
@Brian : coud you please provide a sample document where this problem is
apparent ?

-- 
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 95159] Thai word wrapping of กลับ and การกระทำ

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95159

Alex Thurgood  changed:

   What|Removed |Added

  Component|Linguistic  |Writer

-- 
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 95076] Document page not centered on OS X when in fullscreen mode

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95076

Alex Thurgood  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from Alex Thurgood  ---
Chris : look at the bottom of your screen near the zoom slider, you will see
that the page is indicated as double page display. What happens if you click on
the single page icon (leftmost), is the page then centered ?

-- 
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 95116] Writer will not let us save a document when using LibreOffice on our Mac Pro; works fine on Mac Mini.

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95116

Alex Thurgood  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Alex Thurgood  ---
Where does your LibreOffice version come from AppStore or TDF download ?

We need instructions on how to reproduce :
- where are you copying from ?
- what are you trying to copy / paste ?
- are you using any keyboard shortcuts, or the Edit menu for copy / paste ?
- are you saving to network mounted share ?

Testing on a Macmini 2010, copy pasting from Firefox to Writer, saving to local
hard disk,  I don't see this 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 95090] Corrupted file

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95090

Alex Thurgood  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from Alex Thurgood  ---
Where did dyou getLibreOffice from AppStore or TDF download ?

Did you install any language packs ?

Did you try and open LibreOffice via the context menu "Open" rather than
double-clicking in Finder ?

You reported this against 5.0.2.1, I can not reproduce with 5.0.2.2 OSX 10.11

-- 
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 94919] LibreOffice always crashes 1 to 2 times before actually starting in dual monitor setup

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94919

Alex Thurgood  changed:

   What|Removed |Added

Summary|LibreOffice always crashes  |LibreOffice always crashes
   |1 to 2 times before |1 to 2 times before
   |actually starting   |actually starting in dual
   ||monitor setup

-- 
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 93591] Writer unresponsive (15-20 sec) when creating new document after sleep when many documents are open simultaneously

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93591

Alex Thurgood  changed:

   What|Removed |Added

Summary|Writer unresponsive (15-20  |Writer unresponsive (15-20
   |sec) when creating new  |sec) when creating new
   |document after sleep|document after sleep when
   ||many documents are open
   ||simultaneously

-- 
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 94359] Won't permit saving in .odt format

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94359

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #7 from raal  ---
I can not confirm with LO 5.0.2.2 (x64) and Version: 5.1.0.0.alpha1+
Build ID: 2511a21841dd9dec735a53add8174e47d24deb88
TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2015-10-13_23:26:46; win7
I can save file as .odt.

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


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

2015-10-18 Thread Andras Timar
 sw/source/filter/ww8/ww8atr.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit a80c3a5c14399802d7bbd6fb9a1b57621a594445
Author: Andras Timar 
Date:   Sun Oct 18 20:32:00 2015 +0200

fix StyleRef to Heading styles when doc is opened in localized MS Word

We need to use { styleref 1 } instead of { styleref "Heading 1" } etc.
to avoid the localization issues. Heading style names are localized
in MS Word, and reference would point to a non-existent style.

Change-Id: Ib74d67d265cf98962dfc6f328f08a236a95fae98
Reviewed-on: https://gerrit.libreoffice.org/19441
Tested-by: Jenkins 
Reviewed-by: Andras Timar 

diff --git a/sw/source/filter/ww8/ww8atr.cxx b/sw/source/filter/ww8/ww8atr.cxx
index 54e35d0..a7b7f9f 100644
--- a/sw/source/filter/ww8/ww8atr.cxx
+++ b/sw/source/filter/ww8/ww8atr.cxx
@@ -2877,9 +2877,9 @@ void AttributeOutputBase::TextField( const SwFormatField& 
rField )
 SwChapterField aCopy(*static_cast(pField));
 aCopy.ChangeExpansion(*pTextNd, false);
 const OUString sStr = FieldString(ww::eSTYLEREF)
-+ " \"Heading "
++ " "
 + OUString::number(aCopy.GetLevel() + 1)
-+ "\"  \\* MERGEFORMAT ";
++ " \\* MERGEFORMAT ";
 GetExport().OutputField(pField, ww::eSTYLEREF, sStr);
 bWriteExpand = false;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 95113] FILESAVE AND PIVOTTABLE

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95113

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||r...@post.cz
 Ever confirmed|0   |1

--- Comment #1 from raal  ---
Hello,
Thank you for reporting the bug. Unfortunately without clear steps to reproduce
it, we cannot track down the origin of the problem. Please provide a clearer
set of step-by-step instructions on how to reproduce the 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 95149] Pictures & objects fail to print

2015-10-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95149

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||r...@post.cz
 Ever confirmed|0   |1

--- Comment #1 from raal  ---
I can not confirm with LO 5.0.2.2, win7, writer, printer lexmark. Please attach
test file and specify your OS and printer.

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