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

2016-05-19 Thread slideon
 sw/qa/python/check_change_color.py |   81 +
 1 file changed, 73 insertions(+), 8 deletions(-)

New commits:
commit 7b704dfbdb23540ff6366fa60c73474bbda9dc26
Author: slideon 
Date:   Thu May 19 18:52:06 2016 -0400

Add test for checking the color of characters and paragraphs

check_change_color.py only checked for page-related colors previously.

Change-Id: I3b188db34c1f43ed6ed977f792615bb6646fbcce
Reviewed-on: https://gerrit.libreoffice.org/25183
Tested-by: Jenkins 
Reviewed-by: jan iversen 

diff --git a/sw/qa/python/check_change_color.py 
b/sw/qa/python/check_change_color.py
index a835bc2..d8562bc 100644
--- a/sw/qa/python/check_change_color.py
+++ b/sw/qa/python/check_change_color.py
@@ -1,6 +1,25 @@
+'''
+  This file is part of the LibreOffice project.
+
+  This Source Code Form is subject to the terms of the Mozilla Public
+  License, v. 2.0. If a copy of the MPL was not distributed with this
+  file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+  This file incorporates work covered by the following license notice:
+
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements. See the NOTICE file distributed
+with this work for additional information regarding copyright
+ownership. The ASF licenses this file to you under the Apache
+License, Version 2.0 (the "License"); you may not use this file
+except in compliance with the License. You may obtain a copy of
+the License at http://www.apache.org/licenses/LICENSE-2.0 .
+'''
+
 import unittest
 from org.libreoffice.unotest import UnoInProcess
-
+from com.sun.star.text.ControlCharacter import PARAGRAPH_BREAK
+from com.sun.star.awt.FontUnderline import SINGLE
 
 class CheckChangeColor(unittest.TestCase):
 
@@ -9,6 +28,9 @@ class CheckChangeColor(unittest.TestCase):
 cls._uno = UnoInProcess()
 cls._uno.setUp()
 cls._xEmptyDoc = cls._uno.openEmptyWriterDoc()
+cls.RED = 0xFF
+cls.BLUE = 0xFF
+cls.GREEN = 0x008000
 
 @classmethod
 def tearDownClass(cls):
@@ -18,19 +40,62 @@ class CheckChangeColor(unittest.TestCase):
 xDoc = CheckChangeColor._uno.openEmptyWriterDoc()
 xPageStyles = xDoc.StyleFamilies["PageStyles"]
 xPageStyle = xPageStyles["Standard"]
+
 self.assertEqual(xPageStyle.BackColor, -1)
 self.assertEqual(xPageStyle.IsLandscape, False)
 
-xPageStyle.setPropertyValue("BackColor", 0x00FF)
-xPageStyle.setPropertyValue("IsLandscape", True)
-self.assertEqual(xPageStyle.BackColor, 0x00FF)
+xPageStyle.BackColor = self.RED
+xPageStyle.IsLandscape = True
+self.assertEqual(xPageStyle.BackColor, self.RED)
 self.assertEqual(xPageStyle.IsLandscape, True)
 
-xPageStyle.setPropertyValue("GridColor", 0x00FF)
-self.assertEqual(xPageStyle.GridColor, 0x00FF)
+xPageStyle.GridColor = self.GREEN
+self.assertEqual(xPageStyle.GridColor, self.GREEN)
+
+xPageStyle.FootnoteLineColor = self.BLUE
+self.assertEqual(xPageStyle.FootnoteLineColor, self.BLUE)
+
+xDoc.dispose()
+
+def test_change_text_color(self):
+xDoc = CheckChangeColor._uno.openEmptyWriterDoc()
+cursor = xDoc.Text.createTextCursor()
+
+cursor.CharColor = self.RED
+self.assertEqual(cursor.CharColor, self.RED)
+
+cursor.CharBackColor = self.BLUE
+self.assertEqual(cursor.CharBackColor, self.BLUE)
+
+self.assertEqual(cursor.CharUnderlineHasColor, False)
+cursor.CharUnderlineHasColor = True
+cursor.CharUnderline = SINGLE
+cursor.CharUnderlineColor = self.GREEN
+self.assertEqual(cursor.CharUnderlineColor, self.GREEN)
+self.assertEqual(cursor.CharUnderline, SINGLE)
+self.assertEqual(cursor.CharUnderlineHasColor, True)
+
+xDoc.Text.insertString(cursor, "One foo to rule them all", 0)
+
+self.assertEqual(xDoc.getText().createTextCursor().CharColor, self.RED)
+self.assertEqual(xDoc.getText().createTextCursor().CharBackColor, 
self.BLUE)
+self.assertEqual(xDoc.getText().createTextCursor().CharUnderlineColor, 
self.GREEN)
+
+xDoc.dispose()
+
+def test_change_paragraph_color(self):
+xDoc = CheckChangeColor._uno.openEmptyWriterDoc()
+cursor = xDoc.Text.createTextCursor()
+
+cursor.ParaBackColor = self.RED
+self.assertEqual(cursor.ParaBackColor, self.RED)
+
+xDoc.Text.insertControlCharacter(cursor, PARAGRAPH_BREAK, False)
+xDoc.Text.insertString(cursor, "One foo to find them all", 0)
+
+self.assertEqual(xDoc.getText().createTextCursor().ParaBackColor, 
self.RED)
 
-xPageStyle.setPropertyValue("FootnoteLineColor", 0x00FF)
-

[Libreoffice-bugs] [Bug 99847] "ENTER" from last page-row of a 3-column table -> cursor halfway down next page

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

--- Comment #6 from Buovjaga  ---
(In reply to scott092707 from comment #5)
> >This seems like a somewhat brittle way to layout, though,
> >so you might look into some alternative.
> Suggestion(s)?

Maybe this book will give you ideas: http://designingwithlibreoffice.com/
It is free to download, if you want.

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


[Libreoffice-bugs] [Bug 60666] VIEWING: Calc doesn't show cell color background when dark theme is use in the desktop

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

--- Comment #9 from Buovjaga  ---
(In reply to Adolfo Jayme from comment #8)
> (In reply to Buovjaga from comment #7)
> > This feature of adapting to dark themes has been removed.
> 
> ???

Yes, the automatic adaptation was removed. Right now I can't find the report
where the decision was made.

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


[Libreoffice-bugs] [Bug 99927] My Office hangs and does not respond after change font

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

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||ba...@caesar.elte.hu
 Ever confirmed|0   |1
 Whiteboard|noRepro:5.2.0.0.alpha1+:Win |noRepro:5.2.0.0.alpha1+:Win
   |dows10  |dows10
   ||confirmed:5.1.3.2:Ubuntu

--- Comment #3 from Aron Budea  ---
Reproduced something similar in Ubuntu 15.10, LO 5.1.3.2 (64-bit, UI Render:
doesn't matter). Though for me it's a visual problem, there's no hang.

I opened the document, and selected either the text in step 3), or just the
first two lines of text in the doc (so they're different fonts and size), and
changed the font.

Observation:
Certain visual elements disappear: menu texts, some dialog texts (on Close for
example), text selection colors. Font name changes to something irrelevant, and
then isn't updated, font size list is empty.
It's not a hang, the program is responsive, though working on the document is
difficult because of the missing visuals.


Dear reporter, can you check if you still get a hang with LO 5.1.3, or the same
symptoms as I got?
If you don't want to overwrite your existing install, here are instructions on
installing multiple versions in parallel:
https://wiki.documentfoundation.org/Installing_in_parallel/Linux

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


[Libreoffice-bugs] [Bug 99847] "ENTER" from last page-row of a 3-column table -> cursor halfway down next page

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

--- Comment #5 from scott092...@aol.com ---
@Buovjaga

>Repro.
I guess this means you were able to Repro.duce the bug...


>This seems like a somewhat brittle way to layout, though,
>so you might look into some alternative.
Suggestion(s)?

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


[Libreoffice-bugs] [Bug 42935] Ease to open spelling options while editing a document with no misspelled words.

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

--- Comment #10 from Kumāra  ---
(In reply to Kumāra from comment #9)
> I believe FIXED is a more suitable status, though it's better to also
> indicate into to that.

Oops... I;m not sure what happened. I mean indicate the bug fix to that.

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


[Libreoffice-bugs] [Bug 50415] Shortcut names are not localized on Linux

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

   Keywords||regression
 CC||jbfa...@libreoffice.org

--- Comment #41 from Jean-Baptiste Faure  ---
Added regression keyword from description.

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


[Libreoffice-bugs] [Bug 99954] [wishlist] Port to Ubuntu Touch

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

Adolfo Jayme  changed:

   What|Removed |Added

   Priority|medium  |lowest
 Status|UNCONFIRMED |NEW
  Component|Base|LibreOffice
 Ever confirmed|0   |1
   Severity|normal  |enhancement

--- Comment #1 from Adolfo Jayme  ---
Developing a brand new mobile UI is not an effort that our volunteer developers
are likely to undertake, but let’s not rule it out.

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


[Libreoffice-commits] core.git: Branch 'feature/fixes21' - 2 commits - vcl/inc vcl/opengl

2016-05-19 Thread Tomaž Vajngerl
 vcl/inc/openglgdiimpl.hxx |5 
 vcl/opengl/gdiimpl.cxx|  303 +-
 2 files changed, 36 insertions(+), 272 deletions(-)

New commits:
commit 04c6d41f0f20b23a368f5cc79385a3f8ce8b3627
Author: Tomaž Vajngerl 
Date:   Thu May 19 21:35:28 2016 +0900

opengl: use line shader for all line drawing not just polylines

Change-Id: I9c2d5c5ca4761867a0a38cb3bc3c4973454ee992

diff --git a/vcl/inc/openglgdiimpl.hxx b/vcl/inc/openglgdiimpl.hxx
index 284a233..da0fe69 100644
--- a/vcl/inc/openglgdiimpl.hxx
+++ b/vcl/inc/openglgdiimpl.hxx
@@ -114,16 +114,12 @@ public:
 bool UseSolid( SalColor nColor, sal_uInt8 nTransparency );
 bool UseSolid( SalColor nColor, double fTransparency );
 bool UseSolid( SalColor nColor );
-bool UseSolidAA( SalColor nColor, double fTransparency );
-bool UseSolidAA( SalColor nColor );
 bool UseLine(SalColor nColor, double fTransparency, GLfloat fLineWidth, 
bool bUseAA);
 bool UseInvert50();
 bool UseInvert(SalInvert nFlags);
 
 void DrawPoint( long nX, long nY );
 void DrawLine( double nX1, double nY1, double nX2, double nY2 );
-void DrawLineAA( double nX1, double nY1, double nX2, double nY2 );
-void DrawEdgeAA( double nX1, double nY1, double nX2, double nY2 );
 void DrawConvexPolygon( sal_uInt32 nPoints, const SalPoint* pPtAry, bool 
blockAA = false );
 void DrawConvexPolygon( const tools::Polygon& rPolygon, bool blockAA = 
false );
 void DrawTrapezoid( const basegfx::B2DTrapezoid& trapezoid, bool blockAA = 
false );
diff --git a/vcl/opengl/gdiimpl.cxx b/vcl/opengl/gdiimpl.cxx
index d5e6b71..48871d5 100644
--- a/vcl/opengl/gdiimpl.cxx
+++ b/vcl/opengl/gdiimpl.cxx
@@ -581,25 +581,6 @@ bool OpenGLSalGraphicsImpl::UseSolid( SalColor nColor )
 return UseSolid( nColor, 0.0f );
 }
 
-// Like UseSolid(), but sets up for AA drawing, which uses gradients to create 
the AA.
-bool OpenGLSalGraphicsImpl::UseSolidAA( SalColor nColor, double fTransparency )
-{
-if( nColor == SALCOLOR_NONE )
-return false;
-if( !mrParent.getAntiAliasB2DDraw())
-return UseSolid( nColor );
-if( !UseProgram( "textureVertexShader", "linearGradientFragmentShader" ) )
-return false;
-mpProgram->SetColorf( "start_color", nColor, fTransparency );
-mpProgram->SetColorf( "end_color", nColor, 1.0f );
-return true;
-}
-
-bool OpenGLSalGraphicsImpl::UseSolidAA( SalColor nColor )
-{
-return UseSolidAA( nColor, 0.0 );
-}
-
 bool OpenGLSalGraphicsImpl::UseInvert( SalInvert nFlags )
 {
 OpenGLZone aZone;
@@ -715,7 +696,7 @@ void OpenGLSalGraphicsImpl::DrawLineCap(float x1, float y1, 
float x2, float y2,
 addVertexPair(aVertices, aExtrusionVectors, p1, normal, 1.0f);
 }
 
-ApplyProgramMatrices(0.0f);
+ApplyProgramMatrices(0.5f);
 mpProgram->SetExtrusionVectors(aExtrusionVectors.data());
 mpProgram->DrawArrays(GL_TRIANGLE_STRIP, aVertices);
 
@@ -727,9 +708,6 @@ void OpenGLSalGraphicsImpl::DrawLineSegment(float x1, float 
y1, float x2, float
 glm::vec2 p1(x1, y1);
 glm::vec2 p2(x2, y2);
 
-if (p1.x == p2.x && p1.y == p2.y)
-return;
-
 std::vector aPoints;
 std::vector aExtrusionVectors;
 
@@ -741,7 +719,7 @@ void OpenGLSalGraphicsImpl::DrawLineSegment(float x1, float 
y1, float x2, float
 addVertexPair(aPoints, aExtrusionVectors, p1, normal, 1.0f);
 addVertexPair(aPoints, aExtrusionVectors, p2, normal, 1.0f);
 
-ApplyProgramMatrices(0.0f);
+ApplyProgramMatrices(0.5f);
 mpProgram->SetExtrusionVectors(aExtrusionVectors.data());
 mpProgram->DrawArrays(GL_TRIANGLE_STRIP, aPoints);
 
@@ -935,7 +913,7 @@ void OpenGLSalGraphicsImpl::DrawPolyLine(const 
basegfx::B2DPolygon& rPolygon, fl
 addVertexPair(aVertices, aExtrusionVectors, p1, normal, 1.0f);
 }
 
-ApplyProgramMatrices(0.0f);
+ApplyProgramMatrices(0.5f);
 mpProgram->SetExtrusionVectors(aExtrusionVectors.data());
 mpProgram->DrawArrays(GL_TRIANGLE_STRIP, aVertices);
 
@@ -964,170 +942,6 @@ bool OpenGLSalGraphicsImpl::UseLine(SalColor nColor, 
double fTransparency, GLflo
 return true;
 }
 
-void OpenGLSalGraphicsImpl::DrawLineAA( double nX1, double nY1, double nX2, 
double nY2 )
-{
-OpenGLZone aZone;
-
-if( !mrParent.getAntiAliasB2DDraw())
-return DrawLine( nX1, nY1, nX2, nY2 );
-
-if( nX1 == nX2 || nY1 == nY2 )
-{   // Horizontal/vertical, no need for AA, both points have normal color.
-
-// Still set up for the trivial "gradients", because presumably 
UseSolidAA() has been called.
-GLfloat aTexCoord[4] = { 0, 1, 1, 1 };
-mpProgram->SetTextureCoord( aTexCoord );
-DrawLine(nX1, nY1, nX2, nY2);
-
-return;
-}
-ImplDrawLineAA( nX1, nY1, nX2, nY2 );
-}
-
-void OpenGLSalGraphicsImpl::ImplDrawLineAA( double nX1, double nY1, double 
nX2, double nY2, bool edge )
-{
-// Draw the line 

[Libreoffice-bugs] [Bug 42935] Ease to open spelling options while editing a document with no misspelled words.

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

Kumāra  changed:

   What|Removed |Added

 Resolution|WORKSFORME  |FIXED

--- Comment #9 from Kumāra  ---
I believe FIXED is a more suitable status, though it's better to also indicate
into to that.

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


[Libreoffice-bugs] [Bug 96755] Conversion of time fields from Excel fails

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

Adolfo Jayme  changed:

   What|Removed |Added

   Keywords||filter:xlsx

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


[Libreoffice-bugs] [Bug 96755] Conversion of time fields from Excel fails

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

Adolfo Jayme  changed:

   What|Removed |Added

  Component|General |Calc
Product|Document Liberation Project |LibreOffice

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


[Libreoffice-bugs] [Bug 54409] AutoCorrect not correcting word next to smart/curved quote-mark (single or double)

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

Adolfo Jayme  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 92658] AutoCorrect does not replace end quote with smart quote when it is preceded by a field

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

Adolfo Jayme  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 99960] Wrong numbering of chapters in XHTML export

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

--- Comment #3 from Victor Porton  ---
Created attachment 125183
  --> https://bugs.documentfoundation.org/attachment.cgi?id=125183=edit
a XHTML file with a wrong chapter reference number

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


[Libreoffice-bugs] [Bug 99960] Wrong numbering of chapters in XHTML export

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

--- Comment #2 from Victor Porton  ---
Created attachment 125182
  --> https://bugs.documentfoundation.org/attachment.cgi?id=125182=edit
a wrong chapter reference when exporting XHTML

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


[Libreoffice-bugs] [Bug 99960] New: Wrong numbering of chapters in XHTML export

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

Bug ID: 99960
   Summary: Wrong numbering of chapters in XHTML export
   Product: LibreOffice
   Version: 5.1.3.2 rc
  Hardware: x86 (IA32)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: filters and storage
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: por...@narod.ru

Created attachment 125180
  --> https://bugs.documentfoundation.org/attachment.cgi?id=125180=edit
A file producing a wrong XHTML export

When exporting the attached .odt file to XHTML format, the produced HTML file
has wrong (different than the original .odt file) numeration of chapters.

In a real-world workflow this caused also an internal link to a chapter display
a wrong chapter number in the link. (I don't send an example with a link,
because if you fix the error described in the previous paragraph of this bug
report, the problem with wrong internal links will be fixed as well.)

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


[Libreoffice-bugs] [Bug 99960] Wrong numbering of chapters in XHTML export

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

--- Comment #1 from Victor Porton  ---
Created attachment 125181
  --> https://bugs.documentfoundation.org/attachment.cgi?id=125181=edit
A wrong HTML file

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


[Libreoffice-bugs] [Bug 33173] Tabbed UI (Writer): Division/section-per-tab (similar to Lotus WordPro)

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

Adolfo Jayme  changed:

   What|Removed |Added

   See Also||https://bz.apache.org/ooo/s
   ||how_bug.cgi?id=20701,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=37
   ||134

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


[Libreoffice-bugs] [Bug 37134] Tabbed UI: Document-per-tab (similar to Firefox, Opera, gedit)

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

Adolfo Jayme  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 98710] Crash with "show preview of fonts" enabled for combobox list with new DirectWrite rendering

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

--- Comment #29 from V Stuart Foote  ---
Created attachment 125179
  --> https://bugs.documentfoundation.org/attachment.cgi?id=125179=edit
with MS Symbol font installed -- hang with OpenGL enabled generating glyph
previews in Special Character dialog

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


[Libreoffice-bugs] [Bug 98710] Crash with "show preview of fonts" enabled for combobox list with new DirectWrite rendering

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

--- Comment #28 from V Stuart Foote  ---
Created attachment 125178
  --> https://bugs.documentfoundation.org/attachment.cgi?id=125178=edit
with MS Symbol font installed -- hang with OpenGL enabled generating font
preview in Character Style dialog

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


[Libreoffice-bugs] [Bug 98710] Crash with "show preview of fonts" enabled for combobox list with new DirectWrite rendering

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

--- Comment #27 from V Stuart Foote  ---
OK, so still with us--but I have more controlled STR!

Also, it turns out issue is not with 'Symbola' fontface as in comment 4, and is
even more of a corner case.

Instead it is an issue with 'MS Symbol' a limited 188 glyph TTF/PS Type1 font
with Private Use Area symbol encoding. Installed with older Office builds for
use with the Equation editor. It is not Unicode compliant, and about half the
glyphs in the font have no assigned mapping.

The problem seems to come when I try to generate a font preview of the 'MS
Symbol' font with OpenGL rendering enabled (so using DirectWrite).  With
default rendering, there are no issues with the font previews of 'Symbol'.

Unfortunately "Symbol" is located before "Symbola" on the font listings. And
that threw me while scrolling up or down in the Font list with previews
enabled, as "Symbol" rolls into view on the list LibreOffice barfs--I
incorrectly blamed "Symbola" because that was the last to show.

As reported OpenGL rendering glitch affects the Font list combobox from the
Style & Formatting toolbar when Tools -> Options -> View: Font lists "Show
preview of fonts" is enabled.

Two other places in the GUI that hang:
1) it affects Character Style dialog, which also has a font preview frame
displayed and has to render the font.

2) it also affects the Special Character dialog.

=-STR-=
Since generating font preview with OpenGL rendering (and DirectWrite) causes
SEH Exception in each area of the GUI, we don't need struggle to catch it while
scrolling up or down in the font list with preview activated as originally in
the summary.

Instead:
With MS Symbol present on a Windows system and OpenGL rendering enabled.

1. Open Writer
2. position edit cursor onto document canvas
3. context menu selection of the Character style dialog
4. in the font column, scroll to where "Symbol" font is visible in list
5. select font above or below "Symbol", note the name preview will render
6. select "Symbol" font, preview remains empty
7. SEH exception and close of LibreOffice

Get a similar result with the Special Character dialog with OpenGL rendering
enabled and selecting Symbol.  Fonts either side fill the grid cells--MS Symbol
hangs with SEH exception.

Other PUA Symbol mapped typefaces do not seem to cause problems--I checked Opus
Std and Opus Special. Both are fine, so something about the encoding of the 'MS
Symbol' symbol fontface does not do well with DirectWrite.

Posting two stacktraces with symbols (TB39) from Windows 10 Pro 64-bit en-US
with Version: 5.2.0.0.alpha1+
Build ID: c70a5937e3a2057886c01bc78ac5a6b42e8c702d
CPU Threads: 8; OS Version: Windows 6.19; UI Render: GL; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-05-19_09:17:48
Locale: en-US (en_US)

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


[Libreoffice-bugs] [Bug 99941] Writer crashes when inactive in the background

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

--- Comment #1 from Aron Budea  ---
I'm sorry to hear about your negative experience with LibreOffice so far.
Just to verify, are you using the most recent, 5.1.3 release? (says version
5.1.3.2 in the About dialog)

Still in the About dialog, what does it say for "UI Render:", default or GL? If
it's GL, please try with this unchecked: Tools -> Options... -> LibreOffice ->
View -> Use OpenGL for all rendering (on restart)

If the error is still occurring, it'd be very helpful if you could provide a
backtrace. This guide describes how to get one:
https://wiki.documentfoundation.org/How_to_get_a_backtrace_with_WinDbg

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


[Libreoffice-commits] core.git: Branch 'feature/fixes21' -

2016-05-19 Thread László Németh
 0 files changed

New commits:
commit f8b13f140ee85ccac087fda6c1f09992e4b7c67c
Author: László Németh 
Date:   Fri May 20 03:28:16 2016 +0200

empty commit (determ. sched.)

Change-Id: I828b98d748da616d137ff85a9a56d567a2f8e37a
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 99944] Table control for editing columns is missing.

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

Aron Budea  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 73349] EDITING - Embedded Firebird - Fieldtype BLOB allows to select MOV but fails to display in form and causes heavy performance hit

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

Adolfo Jayme  changed:

   What|Removed |Added

   Keywords||perf

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


[Libreoffice-bugs] [Bug 72955] EDITING: Allow editing bibliography entries from the bibliography index

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

Adolfo Jayme  changed:

   What|Removed |Added

   Severity|normal  |enhancement

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


[Libreoffice-bugs] [Bug 99943] Impress Remote does not work on Qt environments

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

Megver83  changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
 Ever confirmed|0   |1

--- Comment #2 from Megver83  ---
Ok, I´ve been trying and now I realized that this happens on any environment
(at least in the case of Linux). How to fix it? if it does not connect, close
and open the presentation again and again until it work (the only solution i´ve
discover up to now)

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


[Libreoffice-bugs] [Bug 95022] Calc no longer calculates formulas

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

Aron Budea  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTABUG

--- Comment #2 from Aron Budea  ---
Since there was no reply for months, I'm closing this assuming the issue was
resolved by changing the setting.

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


[Libreoffice-bugs] [Bug 99958] Formula display formula text instead of result

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

Eike Rathke  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

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


[Libreoffice-bugs] [Bug 99958] Formula display formula text instead of result

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

Eike Rathke  changed:

   What|Removed |Added

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

--- Comment #1 from Eike Rathke  ---


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

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


[Libreoffice-bugs] [Bug 99957] Formula display formula text instead of result

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

--- Comment #2 from Eike Rathke  ---
*** Bug 99958 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 99957] Formula display formula text instead of result

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

Eike Rathke  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

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


[Libreoffice-bugs] [Bug 99957] Formula display formula text instead of result

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

Eike Rathke  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

--- Comment #1 from Eike Rathke  ---
See your options, menu Tools -> Options -> LibreOffice Calc -> View under
Display the option Formulas should be unchecked, likely it is checked for you.

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


[Libreoffice-bugs] [Bug 99959] New: personalized circular at printout character double

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

Bug ID: 99959
   Summary: personalized circular at printout character double
   Product: LibreOffice
   Version: 5.0.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: he...@eppens.de

Created attachment 125177
  --> https://bugs.documentfoundation.org/attachment.cgi?id=125177=edit
personalized circular with the problem

Hallo,
if I prepare a  personalized circular I sometimes copy from another document
text -usually text only. 
Printing the document no problem rise. But if I print as  personalized circular
the document suddenly has character doubling at some lines.
The example hast ist at side 1 "An diesem Tag wird auch der „Pokal der Könige“
ausgeschossen"
and the times at side 2

greetings
Heiko Eppens

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


[Libreoffice-bugs] [Bug 68274] provide better update mechanism -- Mozilla ARchive (mar) based incrementals

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

--- Comment #31 from Sierk Bornemann  ---
(In reply to steve -_- from comment #28)
> The sparkle framework is OS X only.

Sparkle OS X: Sparkle
https://sparkle-project.org/
https://github.com/sparkle-project/Sparkle

Sparkle Windows: WinSparkle
https://winsparkle.org/
https://github.com/vslavik/winsparkle

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


[Libreoffice-bugs] [Bug 68274] provide better update mechanism -- Mozilla ARchive (mar) based incrementals

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

--- Comment #30 from V Stuart Foote  ---
@Steve, looks like it went cross platform from comment 5 onward...

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


[Libreoffice-bugs] [Bug 99958] New: Formula display formula text instead of result

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

Bug ID: 99958
   Summary: Formula display formula text instead of result
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: pmarino1...@gmail.com

inserting a formula calc display formula text instead of the result. this makes
Calc unusable on Linux.

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


[Libreoffice-bugs] [Bug 99957] New: Formula display formula text instead of result

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

Bug ID: 99957
   Summary: Formula display formula text instead of result
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: pmarino1...@gmail.com

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

inserting a formula calc display formula text instead of the result. this makes
Calc unusable on Linux.

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


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

2016-05-19 Thread Olivier Hallot
 officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit debbf41208d1fabf7ede667fcafee285d7f22e14
Author: Olivier Hallot 
Date:   Mon May 16 12:57:13 2016 -0300

tdf#99850 Menu entry for Select Sheets...

(Signed off in l10n list)

Change-Id: I045677d79894791b8add3b79eddac73e3a526d4e
Reviewed-on: https://gerrit.libreoffice.org/25035
Reviewed-by: Katarina Behrens 
Tested-by: Katarina Behrens 
(cherry picked from commit 6e96587601e7f73869d09ac2e3296b606b290721)
Reviewed-on: https://gerrit.libreoffice.org/25181
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
index fb15369..ee3bd99 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
@@ -168,7 +168,7 @@
   
   
 
-  ~Go to Sheet...
+  ~Select Sheets...
 
   
   
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 73824] "deliberates" is flagged by English (UK) spell-checker

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

--- Comment #18 from Aron Budea  ---
(In reply to Kumāra from comment #17)
> OK. That sounds better. Then shouldn't a bug report be created saying "LO
> English dictionaries need updating" and suggest Marco Pinto's dictionary?

You're right, and in fact there is one, bug 97393.

> Btw, seems wrong to mark this as NOTOURBUG. Perhaps with the new bug report
> we can mark this is MOVED.

NOTOURBUG means it's not in LibreOffice itself. While dictionaries come bundled
with LO, they're maintained independently by others, which is logical since
dictionaries can be, and are used in different products.

What the LO team can do is choose between different available dictionaries (if
there are more, or any), and update the bundled one when the maintainer issues
updates.

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


[Libreoffice-bugs] [Bug 99850] [UI] The term Sheet >Go to Sheet is not a good one

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

Adolfo Jayme  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC|libreoffice-ux-advise@lists |
   |.freedesktop.org|
  Component|ux-advise   |UI
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |olivier.hallot@documentfoun
   |desktop.org |dation.org
 Whiteboard||target:5.2.0 target:5.1.4

--- Comment #2 from Adolfo Jayme  ---
https://cgit.freedesktop.org/libreoffice/core/commit/?id=6e96587601e7f73869d09ac2e3296b606b290721

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


[Libreoffice-ux-advise] [Bug 99850] [UI] The term Sheet >Go to Sheet is not a good one

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

Adolfo Jayme  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC|libreoffice-ux-advise@lists |
   |.freedesktop.org|
  Component|ux-advise   |UI
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |olivier.hallot@documentfoun
   |desktop.org |dation.org
 Whiteboard||target:5.2.0 target:5.1.4

--- Comment #2 from Adolfo Jayme  ---
https://cgit.freedesktop.org/libreoffice/core/commit/?id=6e96587601e7f73869d09ac2e3296b606b290721

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


[Libreoffice-bugs] [Bug 99856] EDITING: make data-validity-list and when file save as XLSX give error in excel

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

--- Comment #7 from Markus Mohrhard  ---
(In reply to Eike Rathke from comment #6)
> @moggi: apparently Excel doesn't like something we save to the
>  element, idea?

@Eike: do you have a file? Normally it shows up as a validation error.

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


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

2016-05-19 Thread Eike Rathke
 sc/source/core/tool/token.cxx |   53 +-
 1 file changed, 47 insertions(+), 6 deletions(-)

New commits:
commit 6821ad076c276b997c44520fd700817566a718c5
Author: Eike Rathke 
Date:   Thu May 19 23:49:08 2016 +0200

Resolves: tdf#83746 wrapAddress() didn't do what it was supposed to do

i.e. subtracted nMaxRow from MAXROW that is set for entire column
references, resulting in row 983040=1048576-65536, instead of doing a
modulo operation.

Also, entire column/row references are now untouched so they still
reference the entire column/row.

Note that in Excel BIFF8 an absolute addressing of row 1 and 65536 means
entire column, so B$1:B$65536 saved and reloaded results in B:B, which
may be unexpected.

Change-Id: Iae65d47ba937b9ade95e4ea1be98012b80e1c9db

diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx
index a9894c0..e20104b 100644
--- a/sc/source/core/tool/token.cxx
+++ b/sc/source/core/tool/token.cxx
@@ -4969,9 +4969,40 @@ namespace {
 void wrapAddress( ScAddress& rPos, SCCOL nMaxCol, SCROW nMaxRow )
 {
 if (rPos.Col() > nMaxCol)
-rPos.SetCol(rPos.Col() - nMaxCol - 1);
+rPos.SetCol((rPos.Col() % (nMaxCol+1)));
 if (rPos.Row() > nMaxRow)
-rPos.SetRow(rPos.Row() - nMaxRow - 1);
+rPos.SetRow((rPos.Row() % (nMaxRow+1)));
+}
+
+template void wrapRange( T& n1, T& n2, T nMax )
+{
+if (n2 > nMax)
+{
+if (n1 == 0)
+n2 = nMax;  // Truncate to full range instead of wrapping to a 
weird range.
+else
+n2 = n2 % (nMax+1);
+}
+if (n1 > nMax)
+n1 = n1 % (nMax+1);
+}
+
+void wrapColRange( ScRange& rRange, SCCOL nMaxCol )
+{
+SCCOL nCol1 = rRange.aStart.Col();
+SCCOL nCol2 = rRange.aEnd.Col();
+wrapRange( nCol1, nCol2, nMaxCol);
+rRange.aStart.SetCol( nCol1);
+rRange.aEnd.SetCol( nCol2);
+}
+
+void wrapRowRange( ScRange& rRange, SCROW nMaxRow )
+{
+SCROW nRow1 = rRange.aStart.Row();
+SCROW nRow2 = rRange.aEnd.Row();
+wrapRange( nRow1, nRow2, nMaxRow);
+rRange.aStart.SetRow( nRow1);
+rRange.aEnd.SetRow( nRow2);
 }
 
 }
@@ -4998,8 +5029,17 @@ void ScTokenArray::WrapReference( const ScAddress& rPos, 
SCCOL nMaxCol, SCROW nM
 formula::FormulaToken* pToken = *p;
 ScComplexRefData& rRef = *pToken->GetDoubleRef();
 ScRange aAbs = rRef.toAbs(rPos);
-wrapAddress(aAbs.aStart, nMaxCol, nMaxRow);
-wrapAddress(aAbs.aEnd, nMaxCol, nMaxRow);
+// Entire columns/rows are sticky.
+if (!rRef.IsEntireCol() && !rRef.IsEntireRow())
+{
+wrapColRange( aAbs, nMaxCol);
+wrapRowRange( aAbs, nMaxRow);
+}
+else if (rRef.IsEntireCol() && !rRef.IsEntireRow())
+wrapColRange( aAbs, nMaxCol);
+else if (!rRef.IsEntireCol() && rRef.IsEntireRow())
+wrapRowRange( aAbs, nMaxRow);
+// else nothing if both, column and row, are entire.
 aAbs.PutInOrder();
 rRef.SetRange(aAbs, rPos);
 }
@@ -5032,8 +5072,9 @@ bool ScTokenArray::NeedsWrapReference( const ScAddress& 
rPos, SCCOL nMaxCol, SCR
 formula::FormulaToken* pToken = *p;
 ScComplexRefData& rRef = *pToken->GetDoubleRef();
 ScRange aAbs = rRef.toAbs(rPos);
-if (aAbs.aStart.Col() > nMaxCol || aAbs.aStart.Row() > nMaxRow 
||
-aAbs.aEnd.Col() > nMaxCol || aAbs.aEnd.Row() > nMaxRow)
+// Entire columns/rows are sticky.
+if ((!rRef.IsEntireCol() && (aAbs.aStart.Row() > nMaxRow 
|| aAbs.aEnd.Row() > nMaxRow)) ||
+(!rRef.IsEntireRow() && (aAbs.aStart.Col() > nMaxCol 
|| aAbs.aEnd.Col() > nMaxCol)))
 return true;
 }
 break;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 99869] FILESAVE: Line height no longer exported correctly to MS Office

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

--- Comment #8 from Thorsten Wagner  ---
OS is OS X 10.11.5. Do you checked with Excel 97 - 2003 file format (.xls)?
Issue does not exist with Excel 2007 - 2013 XML file format (.xlsx), but there
are other issues causing the need of Excel 97 - 2003 file format.

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


[Libreoffice-bugs] [Bug 99917] EDITING: save file as XSLX with wrong conditional formatting give error in excel

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

m.a.riosv  changed:

   What|Removed |Added

 CC||daniel.re...@gmx.de

--- Comment #3 from m.a.riosv  ---
*** Bug 99947 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 99947] XLSX export of conditional formatting broken

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

m.a.riosv  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||miguelangelrv@libreoffice.o
   ||rg
 Resolution|--- |DUPLICATE

--- Comment #2 from m.a.riosv  ---
Seems a duplicate of https://bugs.documentfoundation.org/show_bug.cgi?id=99917

Please if you are not agree reopen it.

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

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


[Libreoffice-bugs] [Bug 99868] FILESAVE: Visibility of gridlines not considered for MS Office file formats

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

--- Comment #8 from Thorsten Wagner  ---
I suggest resolving it to "NEW", because current solution is a workaround only.

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


[Libreoffice-bugs] [Bug 99949] Estamos utilizando o linux mint com o libreoffice 5, e estamos com problemas com a formula de Indice/Corresp

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

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||miguelangelrv@libreoffice.o
   ||rg
 Resolution|--- |NOTABUG

--- Comment #1 from m.a.riosv  ---
Hi @Rafael, remember this bug report system only use English as language.

You can ask for help in http://nabble.documentfoundation.org/User-f2317346.html

in any there are several hidden formulas like:
P22: =INDEX(Quadro.D:D;MATCH(Ponto.$O$20;Quadro.$B:$B;0))

they are seaching for MATCH in 'Quadro.$B:$B', 'B' it's not the right column
for search, searchin in 'Quadro.$C:$C' seems to works fine.

Resolved as not a bug, please if you are not agree reopen it.

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


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

2016-05-19 Thread Zdeněk Crhonek
 sc/CppunitTest_sc_functions_test.mk  |1 
 sc/qa/unit/data/functions/fods/daverage.fods | 1543 +++
 2 files changed, 1544 insertions(+)

New commits:
commit 195ad648cf284384e82fa727442fa98b6e86e792
Author: Zdeněk Crhonek 
Date:   Thu May 19 20:24:51 2016 +0200

add daverage test case

Change-Id: Ifec16ce8281c3f9d426784a8c3becdbc432831aa

diff --git a/sc/qa/unit/data/functions/fods/daverage.fods 
b/sc/qa/unit/data/functions/fods/daverage.fods
new file mode 100644
index 000..9c37f97
--- /dev/null
+++ b/sc/qa/unit/data/functions/fods/daverage.fods
@@ -0,0 +1,1543 @@
+
+
+http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:scr
 ipt="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:form
 x="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
+ 
2016-05-17T13:18:24.22300P0D1LibreOffice/5.1.1.3$Windows_x86
 
LibreOffice_project/89f508ef3ecebd2cfb8e1def0f0ba9a803b88a6d
+ 
+  
+   0
+   0
+   31628
+   27629
+   
+
+ view1
+ 
+  
+   2
+   8
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   100
+   60
+   true
+  
+  
+   3
+   7
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   100
+   60
+   true
+  
+ 
+ Sheet2
+ 1168
+ 0
+ 100
+ 60
+ false
+ true
+ true
+ true
+ 12632256
+ true
+ true
+ true
+ true
+ false
+ false
+ false
+ 1270
+ 1270
+ 1
+ 1
+ true
+
+   
+  
+  
+   true
+   true
+   true
+   true
+   12632256
+   true
+   false
+   true
+   3
+   true
+   false
+   false
+   1270
+   1270
+   1
+   1
+   true
+   true
+   true
+   PDF-XChange 4.0
+   +AX+/1BERi1YQ2hhbmdlIDQuMAAAUERGLVhDaGFuZ2UgNC4wAAAWAAEAGgUEAAhSAAAEdAAAM1ROVwYAUABEAEYALQBYAEMAaABhAG4AZwBlACAANAAuADEEAATcADgEEwwBAAEACQCaCzQIZAABLAECAAEALAEAQQA0GDQIAACaCwAAAERDWFAEAQA0CAAAmgssAQAAZAEAAABDAHUAcgByAGUAbgB0
 

[Libreoffice-bugs] [Bug 99956] Formula using a named range divided by another named range faile with an Err522.

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

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||miguelangelrv@libreoffice.o
   ||rg
 Ever confirmed|0   |1

--- Comment #1 from m.a.riosv  ---
Could be easy to test if you attach a sample file with the issue.

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


[Libreoffice-bugs] [Bug 99953] Misaligned Color in printout when inserting calc table in writer document

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

--- Comment #3 from Theodore Matula Jr.  ---
When you say misaligned, are you referring to the white space between the
cell's color and the right cell border?

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


[Libreoffice-bugs] [Bug 62799] Word count counts dashes as words

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

Adolfo Jayme  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 61396] FILEOPEN: [Template Manager]Possibility to edit a template that is not in the repository, is lacking

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

Cor Nouws  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 95402] TEMPLATE MANAGER: Improve Save as Template workflow

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

Cor Nouws  changed:

   What|Removed |Added

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

--- Comment #17 from Cor Nouws  ---
(In reply to Heiko Tietze from comment #16)
> (In reply to Yousuf (Jay) Philips from comment #15)
> > ...
> > 3) new folder [button] - option to add a new folder
> > 4) file name [textbox]
> > 5) ok and cancel buttons
> 
> Sounds like reinventing the wheel. Our own file dialog has all controls,
> however it lacks on many common features (95082, 95084, 95085, 95086). In
> respect to templates the places need to provide access to the right folders,
> of course.

see also bug 61396
and somewhere is (was?) a discussion on indeed simple improvements in the
current file dialog. E.g. Shift+Open to open a template for editing..
There must be some organized discussion/place where I can find an overview?

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


[Libreoffice-bugs] [Bug 68274] provide better update mechanism -- Mozilla ARchive (mar) based incrementals

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

--- Comment #29 from steve -_-  ---
ups. sorry, OP not me, but I am sure I filed a dupe a long time ago ;)

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


[Libreoffice-bugs] [Bug 68274] provide better update mechanism -- Mozilla ARchive (mar) based incrementals

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

--- Comment #28 from steve -_-  ---
Stuart: this bug was OS X only, since the OP (me) suggested to use Sparkle to
deal with updates. The sparkle framework is OS X only.

If TDF / LO core devs decide to instead work on the mozilla update mechanism
that is fine and then of course it is OS agnostic (iirc).

Sparkle: https://github.com/sparkle-project/Sparkle

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


[Libreoffice-bugs] [Bug 99956] New: Formula using a named range divided by another named range faile with an Err522.

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

Bug ID: 99956
   Summary: Formula using a named range divided by another named
range faile with an Err522.
   Product: LibreOffice
   Version: 5.1.2.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: howar...@earthlink.net

I created a spreadsheet consisting of a several named ranges that calculates
the percent of completion using the formula:

 = 1 - Home_Page_Issues / Home_Pages_Rows

However, instead of a result, the cell shows Err:522.

Home_Page_Issues is a named range for a cell that calculates the number of
issues using the formula:

 = Home_Page_Rows - Home_Page_Non_Issues


Home_Page_Rows is a named range for a cell that determines the number of rows
in the range using the formula:

 = ROWS( Home_Page_Items )


Home_Page_Non_Issues is a named range for a cell that contains the formula:

 = COUNTBLANK( Home_Page_Items ) + COUNTIF( Home_Page_Items, "Yes" )

Home_Page_Items is a named range for the cells $B$3:$B102.

The Err:522 problem seems to be either that the percent complete calculation
contains too many nested ranges or the division of one named range by another
named range doesn't work, because if I change the formula as follows, it works
properly:

 = 1 - B104 / Home_Pages_Rows

Where B014 is a cell that calculates the number of issues, and its formula
still contains the two named ranges shown above for the Home_Page_Issues:

 = Home_Page_Rows - Home_Page_Non_Issues

I know that the Home_Page_Issues named range is correct because if I use it in
another cell's format to show the named range's value, it shows the correct
value:

 = Home_Page_Issues

And if I use that cell's address in the numerator of the percent of completion
the result shows properly.

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


[Libreoffice-bugs] [Bug 60885] FILESAVE: File button and relevant Help not same

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

Adolfo Jayme  changed:

   What|Removed |Added

  Component|Writer  |Documentation

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


[Libreoffice-ux-advise] [Bug 99704] Auto spellchecking button not visible by default

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

V Stuart Foote  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |WONTFIX

--- Comment #5 from V Stuart Foote  ---
To quote Jay from comment 3 "we cant have every single function visible by
default in the toolbars" modal setting of spellcheck makes it a pretty obvious
Wontfix. Someone motivated enough to need to turn it on and off will locate the
provided toolbar customization.

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


[Libreoffice-bugs] [Bug 99704] Auto spellchecking button not visible by default

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

V Stuart Foote  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |WONTFIX

--- Comment #5 from V Stuart Foote  ---
To quote Jay from comment 3 "we cant have every single function visible by
default in the toolbars" modal setting of spellcheck makes it a pretty obvious
Wontfix. Someone motivated enough to need to turn it on and off will locate the
provided toolbar customization.

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


[Libreoffice-bugs] [Bug 60666] VIEWING: Calc doesn't show cell color background when dark theme is use in the desktop

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

--- Comment #8 from Adolfo Jayme  ---
(In reply to Buovjaga from comment #7)
> This feature of adapting to dark themes has been removed.

???

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


[Libreoffice-bugs] [Bug 95402] TEMPLATE MANAGER: Improve Save as Template workflow

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

--- Comment #16 from Heiko Tietze  ---
(In reply to Yousuf (Jay) Philips from comment #15)
> ...
> 3) new folder [button] - option to add a new folder
> 4) file name [textbox]
> 5) ok and cancel buttons

Sounds like reinventing the wheel. Our own file dialog has all controls,
however it lacks on many common features (95082, 95084, 95085, 95086). In
respect to templates the places need to provide access to the right folders, of
course.

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


[Libreoffice-bugs] [Bug 59559] LibreOffice overload CPU when enabled auto spell-checking

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

Adolfo Jayme  changed:

   What|Removed |Added

 Resolution|INVALID |INSUFFICIENTDATA

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


[Libreoffice-ux-advise] [Bug 99704] Auto spellchecking button not visible by default

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

--- Comment #4 from Heiko Tietze  ---
(In reply to Yousuf (Jay) Philips from comment #3)
> @ux-advise: anyone else have a take on this?

+1 for keeping the toolbar clean

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


[Libreoffice-bugs] [Bug 99704] Auto spellchecking button not visible by default

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

--- Comment #4 from Heiko Tietze  ---
(In reply to Yousuf (Jay) Philips from comment #3)
> @ux-advise: anyone else have a take on this?

+1 for keeping the toolbar clean

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


[Libreoffice-bugs] [Bug 32700] UI: Make Track Changes Color "by author" adjustable

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

Adolfo Jayme  changed:

   What|Removed |Added

  Component|LibreOffice |UI
Version|3.3.0 RC2   |Inherited From OOo

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


[Libreoffice-bugs] [Bug 99955] Macro to open form on document opens form, but invisibly.

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

Basil  changed:

   What|Removed |Added

   Hardware|x86 (IA32)  |x86-64 (AMD64)

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


[Libreoffice-bugs] [Bug 99955] New: Macro to open form on document opens form, but invisibly.

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

Bug ID: 99955
   Summary: Macro to open form on document opens form, but
invisibly.
   Product: LibreOffice
   Version: 5.1.2.2 release
  Hardware: x86 (IA32)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: basil...@gmail.com

This is the macro I use to open the form:

Sub oDoc_1( )
Dim ObjTypeWhat
Dim ObjName As String
ObjTypeWhat = com.sun.star.sdb.application.DatabaseObject.FORM
ObjName = "My.Home.Form" 'The name of the form you want to open at Base
start-up, this needs to exist.
If ThisDatabaseDocument.FormDocuments.hasbyname(ObjName) Then 'Check the form
exists
ThisDataBaseDocument.CurrentController.Connect() 'If the form exists connect to
the database
ThisDatabaseDocument.CurrentController.loadComponent(ObjTypeWhat, ObjName,
FALSE) 'Open the form
Else
MsgBox "This is embarrassing, sorry, can't find the requested form to
open!"+chr(10)+"Form Name = " & ObjName + chr(10)+"Check the details." , 48,
"DS4A SBM encountered a problem!"
End if
End Sub

It works properly on Linux, but on OSX, the form opens, but displays invisibly.
 It sometimes flashes visible on closing LO, which isn't useful.

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


[Libreoffice-bugs] [Bug 95339] userdefined 'Format-Code' doesn't work as expected ...

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

Laurent BP  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |jumbo4...@yahoo.fr
   |desktop.org |

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


[Libreoffice-bugs] [Bug 68274] provide better update mechanism -- Mozilla ARchive (mar) based incrementals

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

V Stuart Foote  changed:

   What|Removed |Added

   Priority|high|medium
   Hardware|Other   |All
Version|3.3 all versions|Inherited From OOo
   See Also|https://bugs.freedesktop.or |
   |g/show_bug.cgi?id=32848 |
Summary|provide better update   |provide better update
   |mechanism   |mechanism -- Mozilla
   ||ARchive (mar) based
   ||incrementals

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


[Libreoffice-bugs] [Bug 53550] : Make mailmerge steps more accessible

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

--- Comment #3 from Adolfo Jayme  ---
In LibreOffice 5.2 we reworked mail merge and reduced the amount of steps
needed. You might want to download a daily build [1], play with it, and report
back.

[1]: http://dev-builds.libreoffice.org/daily/

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


[Libreoffice-bugs] [Bug 32484] Allow anchor settings in frame styles

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

Adolfo Jayme  changed:

   What|Removed |Added

 Whiteboard|VOTE|

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


[Libreoffice-bugs] [Bug 68274] provide better update mechanism

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

V Stuart Foote  changed:

   What|Removed |Added

 Blocks|69042   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=69042
[Bug 69042] Add a "Release Notes/What's New" window to be shown upon first run
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 69042] Add a "Release Notes/What's New" window to be shown upon first run

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
 Depends on|68274   |

--- Comment #8 from V Stuart Foote  ---
removing the bug 68274 linkage, don't see much between this issue and achieving
incremental updates.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=68274
[Bug 68274] provide better update mechanism
-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 69042] Add a "Release Notes/What's New" window to be shown upon first run

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
 Depends on|68274   |

--- Comment #8 from V Stuart Foote  ---
removing the bug 68274 linkage, don't see much between this issue and achieving
incremental updates.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=68274
[Bug 68274] provide better update mechanism
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54242] META: Incremental update support (small partial diff updates)

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
Summary|Incremental update support  |META: Incremental update
   |(small partial diff |support (small partial diff
   |updates)|updates)

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


[Libreoffice-bugs] [Bug 57978] UI: Insert / Edit Index Entry: No Aggregation of 1st Key

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

Adolfo Jayme  changed:

   What|Removed |Added

   Keywords||regression

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


[Libreoffice-bugs] [Bug 42082] [META] Make LibreOffice shine and glow on OS X

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

V Stuart Foote  changed:

   What|Removed |Added

 Depends on|68274   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=68274
[Bug 68274] provide better update mechanism
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 68274] provide better update mechanism

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

V Stuart Foote  changed:

   What|Removed |Added

 Blocks|42082   |
 Whiteboard|BSA target:5.1.0|

--- Comment #27 from V Stuart Foote  ---
clearing the Whiteboard target entry, that was Nathan Yee's preliminary work
setting up Mozilla's Mozilla ARchive, or "mar", incremental binary
updating--still lots to be done.

Clearly has moved beyond an OS X only issue. And not clear why this would not
simply be closed duplicate of bug 54242 -- or better close that to this.

=-ref-=
status here
https://wiki.documentfoundation.org/Development/Online_Update
https://wiki.mozilla.org/Software_Update

https://gerrit.libreoffice.org/#/c/17053/


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=42082
[Bug 42082] [META] Make LibreOffice shine and glow on OS X
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 99946] Date control shows misaligned day abbreviations

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

--- Comment #6 from Julien Nabet  ---
Could you attach an example file?
I use Form controls on Writer, Date field and didn't see this.

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


[Libreoffice-bugs] [Bug 68274] provide better update mechanism

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
Summary|provide better update   |provide better update
   |mechanism (was: Use Sparkle |mechanism
   |update with Stable / Beta / |
   |Nightly channels to keep|
   |users on the latest |
   |releases on OS X)   |
 OS|Mac OS X (All)  |All

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


[Libreoffice-bugs] [Bug 90862] French: apply same non-breaking space auto-correction as " to « and »

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

Adolfo Jayme  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 57981] French : spaces before exclamation/question marks in brackets deleted

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

Adolfo Jayme  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 68274] provide better update mechanism (was: Use Sparkle update with Stable / Beta / Nightly channels to keep users on the latest releases on OS X)

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||j.bin...@cepisoft.net

--- Comment #26 from V Stuart Foote  ---
*** Bug 99951 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 99951] Mise à jour

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

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---


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

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


[Libreoffice-bugs] [Bug 42935] Ease to open spelling options while editing a document with no misspelled words.

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

Adolfo Jayme  changed:

   What|Removed |Added

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

--- Comment #8 from Adolfo Jayme  ---
WORKSFORME in LibreOffice 5.1. If I open the Spelling dialog with no misspelled
words, after the “Spellcheck complete” message I can click around the spelling
options since the dialog is no longer closed automatically.

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


[Libreoffice-bugs] [Bug 46479] UI - FILESAVE WIN file dialog name field empty on Windows XP

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

Adolfo Jayme  changed:

   What|Removed |Added

Summary|UI - FILESAVE WIN file  |UI - FILESAVE WIN file
   |dialog name pane empty on   |dialog name field empty on
   |Windows XP  |Windows XP

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


[Libreoffice-bugs] [Bug 98686] Impress images disappear spontaneously (again!!)

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

Pierre C  changed:

   What|Removed |Added

 CC||pierre.choffar...@free.fr

--- Comment #12 from Pierre C  ---
Yes, same problem with LO 5.0.6.3

May images disappears on my last odp file. 

It was my first day working with LO 5.0.x branch

-> I Go Back to 4.4.6

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


[Libreoffice-bugs] [Bug 99954] New: [wishlist] Port to Ubuntu Touch

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

Bug ID: 99954
   Summary: [wishlist] Port to Ubuntu Touch
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ktatar...@gmail.com

Hello,

It's my first bug/wishlist, I hope it's in good place.
Is there possibility to get Libreoffice software in Ubuntu Touch? I know that
there is one working, but it's not full solution (it using some xmir session to
'simulate' desktop).
100% solution is to get native port of that office suite created in harmony
with Ubuntu Touch APIs and GUI (i.e. adjusted to fit screen size - to get it
working in phones/tablet mode and on external screen).

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


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

2016-05-19 Thread Tor Lillqvist
 xmlsecurity/source/dialogs/certificatechooser.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3009c97aa31bad369a9de14e7d0352dff0d7bd79
Author: Tor Lillqvist 
Date:   Thu May 19 21:55:23 2016 +0300

loplugin:stringconstant

Change-Id: I30520ef862d5c925d1f5c236fb37aa719005bb49

diff --git a/xmlsecurity/source/dialogs/certificatechooser.cxx 
b/xmlsecurity/source/dialogs/certificatechooser.cxx
index 6b25344..70fe823 100644
--- a/xmlsecurity/source/dialogs/certificatechooser.cxx
+++ b/xmlsecurity/source/dialogs/certificatechooser.cxx
@@ -148,7 +148,7 @@ OUString CertificateChooser::UsageInClearText(int bits)
 {
 if (!result.isEmpty())
 result += ", ";
-result += OUString("0x") + OUString::number(bits, 16);
+result += "0x" + OUString::number(bits, 16);
 }
 
 return result;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 83746] FILEOPEN: When opening an .xls with a 1-1M VLOOKUP range, the range is truncated to 1-983040

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

Eike Rathke  changed:

   What|Removed |Added

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

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


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

2016-05-19 Thread Bjoern Michaelsen
 sw/inc/swtable.hxx  |   15 ++-
 sw/source/core/doc/tblcpy.cxx   |4 ++--
 sw/source/core/doc/tblrwcl.cxx  |   28 ++--
 sw/source/core/fields/cellfml.cxx   |2 +-
 sw/source/core/frmedt/tblsel.cxx|   11 ---
 sw/source/core/table/swnewtable.cxx |2 +-
 sw/source/core/table/swtable.cxx|8 +++-
 sw/source/filter/ww8/wrtw8nds.cxx   |2 +-
 sw/source/filter/ww8/ww8atr.cxx |2 +-
 sw/source/ui/vba/vbatablehelper.cxx |5 +
 10 files changed, 34 insertions(+), 45 deletions(-)

New commits:
commit a4ae9b147d0a83b811836757e9634a884260cee8
Author: Bjoern Michaelsen 
Date:   Thu May 19 16:15:53 2016 +0200

tdf#75757: remove inheritance on vector (SwTableBoxes)

- move SwTableBoxes::GetPos(..) up to SwTableLine::GetBoxPos(..)
- SwTableBoxes is empty over plain vector then, make it an alias

Change-Id: I72420d4fe1042a713d3e82f3df66f18ccbfca3f6
Reviewed-on: https://gerrit.libreoffice.org/25166
Reviewed-by: Björn Michaelsen 
Tested-by: Björn Michaelsen 

diff --git a/sw/inc/swtable.hxx b/sw/inc/swtable.hxx
index 37d488c..16c8fd4 100644
--- a/sw/inc/swtable.hxx
+++ b/sw/inc/swtable.hxx
@@ -75,15 +75,7 @@ public:
 }
 };
 
-class SwTableBoxes : public std::vector {
-public:
-// return USHRT_MAX if not found, else index of position
-sal_uInt16 GetPos(const SwTableBox* pBox) const
-{
-const_iterator it = std::find(begin(), end(), pBox);
-return it == end() ? USHRT_MAX : it - begin();
-}
-};
+using SwTableBoxes = std::vector;
 
 // Save content-bearing box-pointers additionally in a sorted array
 // (for calculation in table).
@@ -355,6 +347,11 @@ public:
 
   SwTableBoxes () { return m_aBoxes; }
 const SwTableBoxes () const { return m_aBoxes; }
+sal_uInt16 GetBoxPos(const SwTableBox* pBox) const
+{
+SwTableBoxes::const_iterator it = std::find(m_aBoxes.begin(), 
m_aBoxes.end(), pBox);
+return it == m_aBoxes.end() ? USHRT_MAX : it - m_aBoxes.begin();
+}
 
   SwTableBox *GetUpper() { return m_pUpper; }
 const SwTableBox *GetUpper() const { return m_pUpper; }
diff --git a/sw/source/core/doc/tblcpy.cxx b/sw/source/core/doc/tblcpy.cxx
index 41e44f1..5bb7565 100644
--- a/sw/source/core/doc/tblcpy.cxx
+++ b/sw/source/core/doc/tblcpy.cxx
@@ -857,7 +857,7 @@ bool SwTable::InsTable( const SwTable& rCpyTable, const 
SwSelBoxes& rSelBoxes,
 SwTableLine* pLastLn = GetTabLines().back();
 
 SwTableBox* pSttBox = pFLine->GetBoxes()[0]->GetBox();
-const SwTableBoxes::size_type nSttBox = 
pFLine->GetLine()->GetTabBoxes().GetPos( pSttBox );
+const SwTableBoxes::size_type nSttBox = 
pFLine->GetLine()->GetBoxPos( pSttBox );
 for( SwTableLines::size_type n = 
rCpyTable.GetTabLines().size() - nNewLns;
 n < rCpyTable.GetTabLines().size(); ++n )
 {
@@ -901,7 +901,7 @@ bool SwTable::InsTable( const SwTable& rCpyTable, const 
SwSelBoxes& rSelBoxes,
 pFLine = aFndBox.GetLines()[ nLn % nFndCnt ].get();
 SwTableLine* pLine = pFLine->GetLine();
 SwTableBox* pSttBox = pFLine->GetBoxes()[0]->GetBox();
-const SwTableBoxes::size_type nSttBox = 
pLine->GetTabBoxes().GetPos( pSttBox );
+const SwTableBoxes::size_type nSttBox = pLine->GetBoxPos( pSttBox 
);
 if( nLn >= nFndCnt )
 {
 // We have more rows in the ClipBoard than we have selected
diff --git a/sw/source/core/doc/tblrwcl.cxx b/sw/source/core/doc/tblrwcl.cxx
index 566457e..c719389 100644
--- a/sw/source/core/doc/tblrwcl.cxx
+++ b/sw/source/core/doc/tblrwcl.cxx
@@ -468,7 +468,7 @@ static void lcl_InsCol( FndLine_* pFndLn, CpyPara& 
rCpyPara, sal_uInt16 nCpyCnt,
 rCpyPara.pInsLine = pFndLn->GetLine();
 SwTableBox* pBox = pFndLn->GetBoxes()[ bBehind ?
 pFndLn->GetBoxes().size()-1 : 0 ]->GetBox();
-rCpyPara.nInsPos = pFndLn->GetLine()->GetTabBoxes().GetPos( pBox );
+rCpyPara.nInsPos = pFndLn->GetLine()->GetBoxPos( pBox );
 if( bBehind )
 ++rCpyPara.nInsPos;
 
@@ -702,7 +702,7 @@ void DeleteBox_( SwTable& rTable, SwTableBox* pBox, SwUndo* 
pUndo,
 pBox->GetFrameFormat()->GetFrameSize().GetWidth() : 0;
 SwTableLine* pLine = pBox->GetUpper();
 SwTableBoxes& rTableBoxes = pLine->GetTabBoxes();
-sal_uInt16 nDelPos = rTableBoxes.GetPos( pBox );
+sal_uInt16 nDelPos = pLine->GetBoxPos( pBox );
 SwTableBox* pUpperBox = pBox->GetUpper()->GetUpper();
 
 // Special treatment for the border:
@@ -912,7 +912,7 @@ lcl_SaveUpperLowerBorder( SwTable& rTable, const 
SwTableBox& rBox,
 const SwTableLine* pLine = 

[Libreoffice-bugs] [Bug 92580] Crash: when creating a table via wizard, go back then forth in a step

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

Julien Nabet  changed:

   What|Removed |Added

 Status|VERIFIED|CLOSED

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


[Libreoffice-bugs] [Bug 92580] Crash: when creating a table via wizard, go back then forth in a step

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

Julien Nabet  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #38 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated yesterday + enable-dbgutil, I
don't reproduce this.
Thank you! :-)

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


[Libreoffice-bugs] [Bug 99944] Table control for editing columns is missing.

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

--- Comment #3 from kareninau...@gmail.com ---
I'm using Libreoffice Database. If I arrange the content of the main form (or a
subform) as a Data Sheet, the Field Selection Dialogue box of the Data Sheet
doesn't come up. I also can't edit the Data Sheet (table), such as delete a
column or change the width. The rest of the elements of the form seem to work
just fine.

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


[Libreoffice-commits] core.git: Branch 'feature/fixes21' - vcl/inc vcl/opengl

2016-05-19 Thread László Németh
 vcl/inc/openglgdiimpl.hxx |5 
 vcl/opengl/gdiimpl.cxx|  304 --
 2 files changed, 272 insertions(+), 37 deletions(-)

New commits:
commit 05ac44e7e6c16bfb093c19630da67ac42ae913bf
Author: László Németh 
Date:   Thu May 19 20:12:41 2016 +0200

default subset, calculate all, format change

Also revert "opengl: use line shader for all line drawing not just 
polylines"

This reverts commit 860f19365264aaf192dd6e2464efa02123a2cd91.
and 808a4cdc7e19823b15123f8037173a7dd43e5727

Change-Id: Ifed8f1a4f5b4880a5fb24e2db8708f7d14b0b869

diff --git a/vcl/inc/openglgdiimpl.hxx b/vcl/inc/openglgdiimpl.hxx
index da0fe69..6dfa73c 100644
--- a/vcl/inc/openglgdiimpl.hxx
+++ b/vcl/inc/openglgdiimpl.hxx
@@ -114,12 +114,17 @@ public:
 bool UseSolid( SalColor nColor, sal_uInt8 nTransparency );
 bool UseSolid( SalColor nColor, double fTransparency );
 bool UseSolid( SalColor nColor );
+bool UseSolidAA( SalColor nColor, double fTransparency );
+bool UseSolidAA( SalColor nColor );
 bool UseLine(SalColor nColor, double fTransparency, GLfloat fLineWidth, 
bool bUseAA);
 bool UseInvert50();
 bool UseInvert(SalInvert nFlags);
 
 void DrawPoint( long nX, long nY );
 void DrawLine( double nX1, double nY1, double nX2, double nY2 );
+void DrawLineAA( double nX1, double nY1, double nX2, double nY2 );
+void DrawLinesAA( sal_uInt32 nPoints, const SalPoint* pPtAry, bool bClose 
);
+void DrawEdgeAA( double nX1, double nY1, double nX2, double nY2 );
 void DrawConvexPolygon( sal_uInt32 nPoints, const SalPoint* pPtAry, bool 
blockAA = false );
 void DrawConvexPolygon( const tools::Polygon& rPolygon, bool blockAA = 
false );
 void DrawTrapezoid( const basegfx::B2DTrapezoid& trapezoid, bool blockAA = 
false );
diff --git a/vcl/opengl/gdiimpl.cxx b/vcl/opengl/gdiimpl.cxx
index 42a62fc..2beb5fe 100644
--- a/vcl/opengl/gdiimpl.cxx
+++ b/vcl/opengl/gdiimpl.cxx
@@ -581,6 +581,25 @@ bool OpenGLSalGraphicsImpl::UseSolid( SalColor nColor )
 return UseSolid( nColor, 0.0f );
 }
 
+// Like UseSolid(), but sets up for AA drawing, which uses gradients to create 
the AA.
+bool OpenGLSalGraphicsImpl::UseSolidAA( SalColor nColor, double fTransparency )
+{
+if( nColor == SALCOLOR_NONE )
+return false;
+if( !mrParent.getAntiAliasB2DDraw())
+return UseSolid( nColor );
+if( !UseProgram( "textureVertexShader", "linearGradientFragmentShader" ) )
+return false;
+mpProgram->SetColorf( "start_color", nColor, fTransparency );
+mpProgram->SetColorf( "end_color", nColor, 1.0f );
+return true;
+}
+
+bool OpenGLSalGraphicsImpl::UseSolidAA( SalColor nColor )
+{
+return UseSolidAA( nColor, 0.0 );
+}
+
 bool OpenGLSalGraphicsImpl::UseInvert( SalInvert nFlags )
 {
 OpenGLZone aZone;
@@ -696,7 +715,7 @@ void OpenGLSalGraphicsImpl::DrawLineCap(float x1, float y1, 
float x2, float y2,
 addVertexPair(aVertices, aExtrusionVectors, p1, normal, 1.0f);
 }
 
-ApplyProgramMatrices(0.5f);
+ApplyProgramMatrices(0.0f);
 mpProgram->SetExtrusionVectors(aExtrusionVectors.data());
 mpProgram->DrawArrays(GL_TRIANGLE_STRIP, aVertices);
 
@@ -708,6 +727,9 @@ void OpenGLSalGraphicsImpl::DrawLineSegment(float x1, float 
y1, float x2, float
 glm::vec2 p1(x1, y1);
 glm::vec2 p2(x2, y2);
 
+if (p1.x == p2.x && p1.y == p2.y)
+return;
+
 std::vector aPoints;
 std::vector aExtrusionVectors;
 
@@ -719,7 +741,7 @@ void OpenGLSalGraphicsImpl::DrawLineSegment(float x1, float 
y1, float x2, float
 addVertexPair(aPoints, aExtrusionVectors, p1, normal, 1.0f);
 addVertexPair(aPoints, aExtrusionVectors, p2, normal, 1.0f);
 
-ApplyProgramMatrices(0.5f);
+ApplyProgramMatrices(0.0f);
 mpProgram->SetExtrusionVectors(aExtrusionVectors.data());
 mpProgram->DrawArrays(GL_TRIANGLE_STRIP, aPoints);
 
@@ -913,7 +935,7 @@ void OpenGLSalGraphicsImpl::DrawPolyLine(const 
basegfx::B2DPolygon& rPolygon, fl
 addVertexPair(aVertices, aExtrusionVectors, p1, normal, 1.0f);
 }
 
-ApplyProgramMatrices(0.5f);
+ApplyProgramMatrices(0.0f);
 mpProgram->SetExtrusionVectors(aExtrusionVectors.data());
 mpProgram->DrawArrays(GL_TRIANGLE_STRIP, aVertices);
 
@@ -942,6 +964,179 @@ bool OpenGLSalGraphicsImpl::UseLine(SalColor nColor, 
double fTransparency, GLflo
 return true;
 }
 
+void OpenGLSalGraphicsImpl::DrawLineAA( double nX1, double nY1, double nX2, 
double nY2 )
+{
+OpenGLZone aZone;
+
+if( !mrParent.getAntiAliasB2DDraw())
+return DrawLine( nX1, nY1, nX2, nY2 );
+
+if( nX1 == nX2 || nY1 == nY2 )
+{   // Horizontal/vertical, no need for AA, both points have normal color.
+
+// Still set up for the trivial "gradients", because presumably 
UseSolidAA() has been called.
+GLfloat aTexCoord[4] = { 0, 1, 1, 1 };
+

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

2016-05-19 Thread Tor Lillqvist
 sfx2/source/view/classificationcontroller.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit ad1a9797d15f7d9a78d9948963d57a91dc6c0935
Author: Tor Lillqvist 
Date:   Thu May 19 21:14:16 2016 +0300

Revert "loplugin:staticmethods"

Accidentally pushed.

This reverts commit c2aa62f4430cdaa1ddcca555359e787c77d14f16.

diff --git a/sfx2/source/view/classificationcontroller.cxx 
b/sfx2/source/view/classificationcontroller.cxx
index 2b93dfb..6ac651c 100644
--- a/sfx2/source/view/classificationcontroller.cxx
+++ b/sfx2/source/view/classificationcontroller.cxx
@@ -58,7 +58,7 @@ class ClassificationCategoriesController : public 
ClassificationCategoriesContro
 rtl::Reference m_xListener;
 ClassificationPropertyListener m_aPropertyListener;
 
-DECL_STATIC_LINK_TYPED(SelectHdl, ListBox&, void);
+DECL_LINK_TYPED(SelectHdl, ListBox&, void);
 
 public:
 explicit ClassificationCategoriesController(const 
uno::Reference& rContext);
@@ -164,7 +164,7 @@ uno::Reference 
ClassificationCategoriesController::createItemWindo
 return 
uno::Reference(VCLUnoHelper::GetInterface(m_pClassification));
 }
 
-IMPL_STATIC_LINK_TYPED(ClassificationCategoriesController, SelectHdl, 
ListBox&, rCategory, void)
+IMPL_LINK_TYPED(ClassificationCategoriesController, SelectHdl, ListBox&, 
rCategory, void)
 {
 OUString aEntry = rCategory.GetSelectEntry();
 uno::Sequence 
aPropertyValues(comphelper::InitPropertySequence(
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


  1   2   3   >