[Libreoffice-bugs] [Bug 97228] Split up include files in include/ vcl where possible into separate public and internal parts

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97228

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:5.4.0|target:5.4.0 target:6.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 97228] Split up include files in include/ vcl where possible into separate public and internal parts

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97228

--- Comment #6 from Commit Notification 
 ---
Shubham Verma committed a patch related to this issue.
It has been pushed to "master":

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

tdf#97228 Moved struct FltCallDialogParameter

It will be available in 6.1.0.

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

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

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


Re: Image cropping depends on screen resolution

2018-02-26 Thread Alexander Thurgood
Le 26/02/2018 à 22:48, Thorsten Behrens a écrit :

> Sounds like a bug to me, please file (with sample document) at
> bugs.documentfoundation.org
> 

Sounds like :

https://bugs.documentfoundation.org/show_bug.cgi?id=112538


Alex


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


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

2018-02-26 Thread Shubham Verma
 include/vcl/fltcall.hxx |   15 ---
 svtools/inc/FltCallDialogParameter.hxx  |   49 
 svtools/source/filter/SvFilterOptionsDialog.cxx |2 
 svtools/source/filter/exportdialog.hxx  |2 
 4 files changed, 51 insertions(+), 17 deletions(-)

New commits:
commit 63a342ec65f702bfe27de0f0343f75198e6103dc
Author: Shubham Verma 
Date:   Sat Feb 24 01:30:09 2018 +0530

tdf#97228 Moved struct FltCallDialogParameter

Moved struct FltCallDialogParameter to svtools/inc as this struct is
used only in the files located there . A separate header file is made
named FltCallDialogParameter.hxx which has this struct and appropriate
modification are done to the inclusion of header files in each file.

Change-Id: I60326b58fcbbb9c34abdb7c3de48667268b5d5e5
Reviewed-on: https://gerrit.libreoffice.org/50265
Tested-by: Jenkins 
Reviewed-by: Tor Lillqvist 

diff --git a/include/vcl/fltcall.hxx b/include/vcl/fltcall.hxx
index 1aba65e43aae..6d0b3d223f30 100644
--- a/include/vcl/fltcall.hxx
+++ b/include/vcl/fltcall.hxx
@@ -30,21 +30,6 @@ class SvStream;
 class Graphic;
 namespace vcl { class Window; }
 
-struct FltCallDialogParameter
-{
-
-VclPtr pWindow;
-FieldUnit   eFieldUnit;
-OUStringaFilterExt;
-
-// In and Out PropertySequence for all filter dialogs
-css::uno::Sequence< css::beans::PropertyValue > aFilterData;
-
-FltCallDialogParameter( vcl::Window* pW, FieldUnit eFiUni ) :
-pWindow ( pW ),
-eFieldUnit  ( eFiUni ) {};
-};
-
 typedef bool (*PFilterCall)(SvStream & rStream, Graphic & rGraphic,
 FilterConfigItem* pConfigItem);
 // Of this type are both export-filter and import-filter functions
diff --git a/svtools/inc/FltCallDialogParameter.hxx 
b/svtools/inc/FltCallDialogParameter.hxx
new file mode 100644
index ..d3310a078cbb
--- /dev/null
+++ b/svtools/inc/FltCallDialogParameter.hxx
@@ -0,0 +1,49 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * 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 .
+ */
+
+#ifndef INCLUDED_SVTOOLS_INC_FTLCALLDIALOGPARAMETER_HXX
+#define INCLUDED_SVTOOLS_INC_FTLCALLDIALOGPARAMETER_HXX
+#include 
+#include 
+#include 
+#include 
+#include 
+
+class FilterConfigItem;
+class SvStream;
+class Graphic;
+namespace vcl
+{
+class Window;
+}
+
+struct FltCallDialogParameter
+{
+VclPtr pWindow;
+FieldUnit eFieldUnit;
+OUString aFilterExt;
+
+// In and Out PropertySequence for all filter dialogs
+css::uno::Sequence aFilterData;
+
+FltCallDialogParameter(vcl::Window* pW, FieldUnit eFiUni)
+: pWindow(pW)
+, eFieldUnit(eFiUni){};
+};
+#endif
diff --git a/svtools/source/filter/SvFilterOptionsDialog.cxx 
b/svtools/source/filter/SvFilterOptionsDialog.cxx
index d132af8d0734..43a466b1b947 100644
--- a/svtools/source/filter/SvFilterOptionsDialog.cxx
+++ b/svtools/source/filter/SvFilterOptionsDialog.cxx
@@ -25,7 +25,7 @@
 #include 
 #include 
 #include 
-#include 
+#include 
 #include 
 #include "exportdialog.hxx"
 #include 
diff --git a/svtools/source/filter/exportdialog.hxx 
b/svtools/source/filter/exportdialog.hxx
index a6fb96e77e2a..ad41a4d8b125 100644
--- a/svtools/source/filter/exportdialog.hxx
+++ b/svtools/source/filter/exportdialog.hxx
@@ -21,7 +21,7 @@
 #ifndef INCLUDED_SVTOOLS_SOURCE_FILTER_EXPORTDIALOG_HXX
 #define INCLUDED_SVTOOLS_SOURCE_FILTER_EXPORTDIALOG_HXX
 
-#include 
+#include 
 #include 
 #include 
 #include 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Acceptable outcomes of SwarmSolverTest::testUnconstrained

2018-02-26 Thread Stephan Bergmann
SwarmSolverTest::testUnconstrained in sccomp/qa/unit/SwarmSolverTest.cxx 
has already been weakened in the past, 
 
"Ridiculously large delta for SwarmSolverTest::testUnconstrained for 
now" and 
 
"Weaken SwarmSolverTest::testUnconstrained even further for now".  The 
first one has the following in its commit message: "suggestion by Tomaž 
Vajngerl was: 'Let's adapt the delta for now. Generally anything close 
to 3 should be acceptable as the algorithm greatly depends on random 
values.'"


Now  failed with


/home/tdf/lode/jenkins/workspace/lo_ubsan/sccomp/qa/unit/SwarmSolverTest.cxx:106:(anonymous
 namespace)::SwarmSolverTest::testUnconstrained
double equality assertion failed
- Expected: 3
- Actual  : 94.6605927051114
- Delta   : 0.9


Is that also an acceptable outcome, or does it indicate a bug somewhere 
that would need to be fixed?  What good is a test whose success 
criterion is the result of ad-hoc guesswork, instead of being determined 
precisely up-front when the test was written?


Can that test please be fixed properly, so that it would be actually useful?
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 115125] UI: Insert table with dialog Insert Table creates table border, also if " Border" is unchecked

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115125

--- Comment #10 from Yousuf Philips (jay) (retired)  ---
This issue will be fixed with Furkan's patch.

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

-- 
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 114552] Keep aspect ratio of images when resizing cells

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114552

--- Comment #7 from Samuel Mehrbrodt (CIB)  ---
(In reply to Samuel Mehrbrodt (CIB) from comment #5)
> Hi Regina, saw your comment just now.
> Will read the docs and see if I can implement it the same way as gnumeric
> does.
> Is there any definition in ODF when the table:end-cell-address is to be used?

So I found out that table:end-cell-address etc was always written before. I now
changed the patch to write it only when "resize with cell" is selected. So it's
now the same as in Gnumeric (Tested that Gnumeric recognizes our three options
correctly).

-- 
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 114552] Keep aspect ratio of images when resizing cells

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114552

Samuel Mehrbrodt (CIB)  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |s.mehrbr...@gmail.com
   |desktop.org |

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


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

2018-02-26 Thread Samuel Mehrbrodt
 svx/source/dialog/rubydialog.cxx |3 ---
 1 file changed, 3 deletions(-)

New commits:
commit c13f401798c2d9ffb89835378e39bb424220685a
Author: Samuel Mehrbrodt 
Date:   Mon Feb 26 15:02:24 2018 +0100

Styles dialog no longer gives any status

So always enable the button to activate the styles sidebar.

Found by UBSAN:
test_asian_phonetic_guide (asianPhoneticGuide.asianPhoneticGuide) ... 
/svx/source/dialog/rubydialog.cxx:322:68: runtime error: downcast of address 
0x602000635e30 which does not point to an object of type 'SfxBoolItem'
0x602000635e30: note: object is of type 'SfxVoidItem'

Change-Id: I6ff20c76b4a45189d78707cd258ed2aff80c50a5
Reviewed-on: https://gerrit.libreoffice.org/50367
Reviewed-by: Stephan Bergmann 
Tested-by: Jenkins 
Reviewed-by: Samuel Mehrbrodt 

diff --git a/svx/source/dialog/rubydialog.cxx b/svx/source/dialog/rubydialog.cxx
index 6527d8fdb6f2..0a9ce357a91d 100644
--- a/svx/source/dialog/rubydialog.cxx
+++ b/svx/source/dialog/rubydialog.cxx
@@ -318,9 +318,6 @@ void SvxRubyDialog::Activate()
 {
 SfxModelessDialog::Activate();
 std::unique_ptr pState;
-SfxItemStateeState = pBindings->QueryState( SID_STYLE_DESIGNER, pState 
);
-bool bEnable = (eState < SfxItemState::DEFAULT) || !pState || 
!static_cast(pState.get())->GetValue();
-m_pStylistPB->Enable(bEnable);
 //get selection from current view frame
 SfxViewFrame* pCurFrm = SfxViewFrame::Current();
 Reference< XController > xCtrl = pCurFrm->GetFrame().GetController();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 116043] Searching in the customize dialog makes the icons go away

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116043

Muhammet Kara  changed:

   What|Removed |Added

 CC||muhammet.k...@pardus.org.tr

--- Comment #3 from Muhammet Kara  ---
(In reply to Jim Raykowski from comment #2)
> I unknowingly did the patch to add the icons to this when it was already
> assigned. Hope I didn't barge in again with this fix.
> 
> https://gerrit.libreoffice.org/#/c/50407/
> 
> If anyone would like code pointers to solve these types of bugs I am happy
> to point if I can.

It would be best if you assign the bug to yourself before submitting a patch.

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


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

2018-02-26 Thread Chris Sherlock
 vcl/qa/cppunit/BitmapTest.cxx |   56 ++
 1 file changed, 56 insertions(+)

New commits:
commit 5fffb11947397181af0105e3fd4e6775c2e45f67
Author: Chris Sherlock 
Date:   Mon Feb 26 06:58:26 2018 +1100

vcl: test BitmapPalette greys

Change-Id: Ief511d75e5a9b1e9230036c453edcb8b0a039221
Reviewed-on: https://gerrit.libreoffice.org/50328
Tested-by: Jenkins 
Reviewed-by: Tomaž Vajngerl 

diff --git a/vcl/qa/cppunit/BitmapTest.cxx b/vcl/qa/cppunit/BitmapTest.cxx
index cfb527e0d2e3..12a03e5aa524 100644
--- a/vcl/qa/cppunit/BitmapTest.cxx
+++ b/vcl/qa/cppunit/BitmapTest.cxx
@@ -38,6 +38,7 @@ class BitmapTest : public CppUnit::TestFixture
 void testConvert();
 void testScale();
 void testCRC();
+void testGreyPalette();
 
 CPPUNIT_TEST_SUITE(BitmapTest);
 CPPUNIT_TEST(testCreation);
@@ -46,6 +47,7 @@ class BitmapTest : public CppUnit::TestFixture
 CPPUNIT_TEST(testConvert);
 CPPUNIT_TEST(testScale);
 CPPUNIT_TEST(testCRC);
+CPPUNIT_TEST(testGreyPalette);
 CPPUNIT_TEST_SUITE_END();
 };
 
@@ -394,6 +396,60 @@ void BitmapTest::testCRC()
 checkAndInsert(aCRCs, aChecker, "inverted checkerboard");
 }
 
+void BitmapTest::testGreyPalette()
+{
+{
+BitmapPalette aPalette = Bitmap::GetGreyPalette(2);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Wrong number of palette entries", 
static_cast(2),
+ aPalette.GetEntryCount());
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 1 wrong", BitmapColor(0, 0, 0), 
aPalette[0]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 2 wrong", BitmapColor(255, 255, 
255), aPalette[1]);
+}
+
+{
+BitmapPalette aPalette = Bitmap::GetGreyPalette(4);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Wrong number of palette entries", 
static_cast(4),
+ aPalette.GetEntryCount());
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 1 wrong", BitmapColor(0, 0, 0), 
aPalette[0]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 2 wrong", BitmapColor(85, 85, 85), 
aPalette[1]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 3 wrong", BitmapColor(170, 170, 
170), aPalette[2]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 4 wrong", BitmapColor(255, 255, 
255), aPalette[3]);
+}
+
+{
+BitmapPalette aPalette = Bitmap::GetGreyPalette(16);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Wrong number of palette entries", 
static_cast(16),
+ aPalette.GetEntryCount());
+// this is a *reall* specific number of greys, incremented in units of 
17 so may
+// as well test them all...
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 1 wrong", BitmapColor(0, 0, 0), 
aPalette[0]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 2 wrong", BitmapColor(17, 17, 17), 
aPalette[1]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 3 wrong", BitmapColor(34, 34, 34), 
aPalette[2]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 4 wrong", BitmapColor(51, 51, 51), 
aPalette[3]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 5 wrong", BitmapColor(68, 68, 68), 
aPalette[4]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 6 wrong", BitmapColor(85, 85, 85), 
aPalette[5]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 7 wrong", BitmapColor(102, 102, 
102), aPalette[6]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 8 wrong", BitmapColor(119, 119, 
119), aPalette[7]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 9 wrong", BitmapColor(136, 136, 
136), aPalette[8]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 10 wrong", BitmapColor(153, 153, 
153), aPalette[9]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 11 wrong", BitmapColor(170, 170, 
170), aPalette[10]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 12 wrong", BitmapColor(187, 187, 
187), aPalette[11]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 13 wrong", BitmapColor(204, 204, 
204), aPalette[12]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 14 wrong", BitmapColor(221, 221, 
221), aPalette[13]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 15 wrong", BitmapColor(238, 238, 
238), aPalette[14]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 16 wrong", BitmapColor(255, 255, 
255), aPalette[15]);
+}
+
+{
+BitmapPalette aPalette = Bitmap::GetGreyPalette(256);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Wrong number of palette entries",
+ static_cast(256), 
aPalette.GetEntryCount());
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 1 wrong", BitmapColor(0, 0, 0), 
aPalette[0]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 127 wrong", BitmapColor(127, 127, 
127), aPalette[127]);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Entry 255 wrong", BitmapColor(255, 255, 
255), aPalette[255]);
+}
+}
+
 } // namespace
 
 CPPUNIT_TEST_SUITE_REGISTRATION(BitmapTest);
___
Libreoffice-commits mailing list

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

2018-02-26 Thread Andrea Gelmini
 cui/source/options/optinet2.cxx |1 -
 sfx2/source/view/viewfrm.cxx|1 -
 2 files changed, 2 deletions(-)

New commits:
commit 9fd05af612532bb6ae6c5fee33b28f7178728069
Author: Andrea Gelmini 
Date:   Mon Feb 26 23:02:14 2018 +0100

Remove duplicated includes

Change-Id: I8caee48fa9a08d6ee8c5c084468634dcd2a5fbf6
Reviewed-on: https://gerrit.libreoffice.org/50383
Reviewed-by: Julien Nabet 
Tested-by: Julien Nabet 

diff --git a/cui/source/options/optinet2.cxx b/cui/source/options/optinet2.cxx
index 19de5d14b8ad..99ddbae652e8 100644
--- a/cui/source/options/optinet2.cxx
+++ b/cui/source/options/optinet2.cxx
@@ -39,7 +39,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
diff --git a/sfx2/source/view/viewfrm.cxx b/sfx2/source/view/viewfrm.cxx
index c72f6a47a4a1..b640f5f4aff9 100644
--- a/sfx2/source/view/viewfrm.cxx
+++ b/sfx2/source/view/viewfrm.cxx
@@ -135,7 +135,6 @@ using ::com::sun::star::container::XIndexContainer;
 #include 
 #include "impviewframe.hxx"
 #include 
-#include 
 
 #define SfxViewFrame
 #include 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-02-26 Thread Julien Nabet
 canvas/source/cairo/cairo_textlayout.cxx |   22 --
 canvas/source/vcl/textlayout.cxx |   22 +++---
 2 files changed, 15 insertions(+), 29 deletions(-)

New commits:
commit 10b6529a2abe78aeb650c5e027cdbad4c2a72219
Author: Julien Nabet 
Date:   Mon Feb 26 19:53:16 2018 +0100

Use for-range loops (canvas)

Change-Id: I6a3b0b7bd6d4d3f432877e9fab0aadc041a4e8e9
Reviewed-on: https://gerrit.libreoffice.org/50389
Reviewed-by: Noel Grandin 
Tested-by: Jenkins 
Reviewed-by: Julien Nabet 

diff --git a/canvas/source/cairo/cairo_textlayout.cxx 
b/canvas/source/cairo/cairo_textlayout.cxx
index 2e4e08cfd8c1..c5fd7f615a8a 100644
--- a/canvas/source/cairo/cairo_textlayout.cxx
+++ b/canvas/source/cairo/cairo_textlayout.cxx
@@ -326,14 +326,12 @@ namespace cairocanvas
 //Pull all the fonts we need to render the text
 typedef std::pair FontLevel;
 std::vector aFontData;
-SystemGlyphDataVector::const_iterator 
aGlyphIter=aSysLayoutData.rGlyphData.begin();
-const SystemGlyphDataVector::const_iterator 
aGlyphEnd=aSysLayoutData.rGlyphData.end();
-for( ; aGlyphIter != aGlyphEnd; ++aGlyphIter )
+for (auto const& glyph : aSysLayoutData.rGlyphData)
 {
-if( aFontData.empty() || aGlyphIter->fallbacklevel != 
aFontData.back().second )
+if( aFontData.empty() || glyph.fallbacklevel != 
aFontData.back().second )
 {
-
aFontData.emplace_back(rOutDev.GetSysFontData(aGlyphIter->fallbacklevel),
-  aGlyphIter->fallbacklevel);
+
aFontData.emplace_back(rOutDev.GetSysFontData(glyph.fallbacklevel),
+  glyph.fallbacklevel);
 if( !isCairoRenderable(aFontData.back().first) )
 {
 bCairoRenderable = false;
@@ -377,21 +375,17 @@ namespace cairocanvas
  **/
 
 // Loop through the fonts used and render the matching glyphs for each
-std::vector::const_iterator aFontDataIter = 
aFontData.begin();
-const std::vector::const_iterator aFontDataEnd = 
aFontData.end();
-for( ; aFontDataIter != aFontDataEnd; ++aFontDataIter )
+for (auto const& elemFontData : aFontData)
 {
-const SystemFontData  = aFontDataIter->first;
+const SystemFontData  = elemFontData.first;
 
 // setup glyphs
 std::vector cairo_glyphs;
 cairo_glyphs.reserve( 256 );
 
-aGlyphIter=aSysLayoutData.rGlyphData.begin();
-for( ; aGlyphIter != aGlyphEnd; ++aGlyphIter )
+for (auto const& systemGlyph : aSysLayoutData.rGlyphData)
 {
-SystemGlyphData systemGlyph = *aGlyphIter;
-if( systemGlyph.fallbacklevel != aFontDataIter->second )
+if( systemGlyph.fallbacklevel != elemFontData.second )
 continue;
 
 cairo_glyph_t aGlyph;
diff --git a/canvas/source/vcl/textlayout.cxx b/canvas/source/vcl/textlayout.cxx
index df6e69407d4d..1a659f463ab7 100644
--- a/canvas/source/vcl/textlayout.cxx
+++ b/canvas/source/vcl/textlayout.cxx
@@ -132,15 +132,11 @@ namespace vclcanvas
 {
 aOutlineSequence.reserve(aOutlines.size());
 sal_Int32 nIndex (0);
-for (::basegfx::B2DPolyPolygonVector::const_iterator
- iOutline(aOutlines.begin()),
- iEnd(aOutlines.end());
- iOutline!=iEnd;
- ++iOutline)
+for (auto const& outline : aOutlines)
 {
 aOutlineSequence[nIndex++] = 
::basegfx::unotools::xPolyPolygonFromB2DPolyPolygon(
 mxDevice,
-*iOutline);
+outline);
 }
 }
 
@@ -182,17 +178,13 @@ namespace vclcanvas
 {
 aBoundingBoxes.realloc(aMetricVector.size());
 sal_Int32 nIndex (0);
-for (MetricVector::const_iterator
- iMetric(aMetricVector.begin()),
- iEnd(aMetricVector.end());
- iMetric!=iEnd;
- ++iMetric)
+for (auto const& metric : aMetricVector)
 {
 aBoundingBoxes[nIndex++] = geometry::RealRectangle2D(
-iMetric->getX(),
-iMetric->getY(),
-iMetric->getX() + iMetric->getWidth(),
-iMetric->getY() + iMetric->getHeight());
+metric.getX(),
+metric.getY(),
+metric.getX() + metric.getWidth(),
+metric.getY() + metric.getHeight());
 }
 }
 return aBoundingBoxes;

[Libreoffice-bugs] [Bug 103238] [META] Customize dialog bugs and enhancements

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103238
Bug 103238 depends on bug 116044, which changed state.

Bug 116044 Summary: The Description field in the customize dialog is always 
empty and disabled
https://bugs.documentfoundation.org/show_bug.cgi?id=116044

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |NOTABUG

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


[Libreoffice-bugs] [Bug 116051] New: Hidden column causing right border to disappear

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116051

Bug ID: 116051
   Summary: Hidden column causing right border to disappear
   Product: LibreOffice
   Version: 6.0.1.1 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lo.sever...@spamgourmet.com

Description:
When cells with borders are bounded on the right by a hidden column, calc makes
the rightmost border lines disappear.


Steps to Reproduce:
1. New spreadsheet, place 9 of any character (a) in a 3x3 matrix.
2. Mark all characters and add full borders.

Note that the rightmost border of column C is visible.

3. Hide column C, hide Row 3

Note that the rightmost border of column B is no longer visible. The bottom
border of row 2 is still visible.

4. Print Preview

The rightmost border is not visible in the print preview. The bottom border is
visible.


Actual Results:  
The rightmost border is made invisible by a hidden column to the right.

Expected Results:
The rightmost boarder should stay visible whether the column to the right is
hidden or visible.


Reproducible: Always


User Profile Reset: No



Additional Info:
Switching to libreoffice-still-5.4.5-1 solves the problem.


User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:58.0) Gecko/20100101
Firefox/58.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 88961] Table line styles are not visible

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88961

--- Comment #8 from Tamás Zolnai  ---
(In reply to Heiko Tietze from comment #7)
> Looks to me as the line color is just white and you don't see the
> alternatives. Should be fixed anyway.

Yeap, I see the same. The default border color is white in Impress / Draw
(while in Writer it is balck). If you change the color the lines are rendered.
However it still wierd that we don't see anything in that popup. Might be good
to have an UX opinion here.
I see the same issue for Writer tables, if I change the border color to white.

-- 
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 116044] The Description field in the customize dialog is always empty and disabled

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116044

Muhammet Kara  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |muhammet.k...@pardus.org.tr
   |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 115511] Description field in customize dialog cannot get focus

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115511

Muhammet Kara  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |muhammet.k...@pardus.org.tr
   |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 103238] [META] Customize dialog bugs and enhancements

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103238
Bug 103238 depends on bug 116044, which changed state.

Bug 116044 Summary: The Description field in the customize dialog is always 
empty and disabled
https://bugs.documentfoundation.org/show_bug.cgi?id=116044

   What|Removed |Added

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

-- 
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 116044] The Description field in the customize dialog is always empty and disabled

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116044

Muhammet Kara  changed:

   What|Removed |Added

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

--- Comment #3 from Muhammet Kara  ---
(In reply to Thomas Lendo from comment #2)
> 
> *** This bug has been marked as a duplicate of bug 112237 ***

This is not duplicate of bug 112237. The other bug is about already added
commands.

-- 
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 116043] Searching in the customize dialog makes the icons go away

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116043

--- Comment #2 from Jim Raykowski  ---
I unknowingly did the patch to add the icons to this when it was already
assigned. Hope I didn't barge in again with this fix.

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

If anyone would like code pointers to solve these types of bugs I am happy to
point if I can.

-- 
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 115511] Description field in customize dialog cannot get focus

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115511

Muhammet Kara  changed:

   What|Removed |Added

 CC||muhammet.k...@pardus.org.tr
   ||, tietze.he...@gmail.com

--- Comment #3 from Muhammet Kara  ---
The behavior of the description field was by-choice IIRC. Can't remember the
reason though. Maybe Heiko can shed some light on this.

You need to build "--with-help" to see the descriptions.

-- 
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 116039] Resizing Report navigator dialog repaints new area in black

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116039

--- Comment #10 from Howard Johnson  ---
5.2.7.2 works
5.3.7.2 works (last release in 5.3 series)

5.4.0.0.alpha1  fails (first release in 5.4 series)
5.4.0.1 fails
5.4.1.1 fails
5.4.4.2 fails

-- 
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 116050] New: In multimonitor set up calc only works in primary display

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116050

Bug ID: 116050
   Summary: In multimonitor set up calc only works in primary
display
   Product: LibreOffice
   Version: 6.0.1.1 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: c...@thamer.net

Description:
When calc is moved to secondary displays the window is either all white or
unresponsive to user input. Moving window back to primary display resolves the
issue

Steps to Reproduce:
1. Open Calc
2. Move Calc to secondary display
3.

Actual Results:  
Window doesn't respond to input.

Expected Results:
Window responds to input


Reproducible: Always


User Profile Reset: No



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

Version: 6.0.1.1 (x64)
Build ID: 60bfb1526849283ce2491346ed2aa51c465abfe6
CPU threads: 4; OS: Windows 10.0; UI render: GL; 
Locale: en-US (en_US); Calc: group


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko/20100101
Firefox/58.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 35287] feature request: smooth scroll

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35287

guy solomon  changed:

   What|Removed |Added

  Component|Writer  |Calc
Version|3.3.1 release   |6.0.1.1 release

--- Comment #18 from guy solomon  ---
I'm a hardcore user of MS Excel, but migrating to linux world.  I am trying out
LO Calc and to my dismay, I can find NO decent scrolling options, especially on
my laptop.

For me this is MAJOR.  Not a minor "enhancement."  I will not use Calc, or at
least not very much simply because I can NOT navigate easily in spreadsheet
material.

Maybe I'm missing something?  Perhaps there is a plugin somewhere?  Numlockx
does not do the trick so far.

Without smooth scroll/ arrow key navigation, the usability of Calc is GREATLY
diminished for me.  And I'll wager for any serious user.  

It might be a minor feature to some, but for me it's a deal-breaker.  Got to
have decent navigation.  No if's, and's etc.

Let me know if there's something I'm missing here, please.  Thank you.

gs

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


[Libreoffice-qa] Newbie question: old version of Java for LO 3.3 regression testing?

2018-02-26 Thread Ted Lee

Hi,

This is very definitely a newbie question.  I think I've found a bug, 
possibly two, in both 5.4.5 and 6.0.1.1.  Up to this point I've been 
using NeoOffice and decided to switch over to LibreOffice, so I have no 
experience with previous versions. Anyway, I know I owe it to the 
community to see if the bug is present in the legacy code from OO.  So I 
have downloaded LibreOffice 3.3 but it doesn't seem to like the JRE on 
my system (which seems to be OK for 5.4.5 and 6.0.1.1).  Soo... how 
do I find a MacOS version of JRE that should work with LO 3.3?  Yes, 
Java does seem to be needed for the feature that exhibits the bug(s).


Yes, I've searched the LibreOffice QA pages and not found the answer.

Running High Sierra, MacOS 10.13.3

--
Ted Lee

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

[Libreoffice-bugs] [Bug 106201] Centered text in inserted SVG is not centered

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106201

--- Comment #6 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
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 73063] FILESAVE: LibreOffice Calc does not remember locale settings when saving as .xls or .xlsx

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73063

--- Comment #6 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
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 64461] SVG image text with "flowed text frame" will be imported as a black box

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64461

--- Comment #7 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
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 50564] PDF: can't select text in LO alert ( specifically PDF export problem)

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50564

--- Comment #6 from skierpage  ---
Still a bug in LibreOffice Version: 6.0.1.1 (x64)
Build ID: 60bfb1526849283ce2491346ed2aa51c465abfe6
CPU threads: 4; OS: Windows 10.0; UI render: default; 
Locale: en-US (en_US); Calc: group

-- 
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 114722] lack of focus; object element with dangling parent

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114722

--- Comment #5 from Terrence Enger  ---
The warning in the terminal persists.  I conclude that the message is
not related to the lack of initial focus.

-- 
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 114722] lack of focus; object element with dangling parent

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114722

Terrence Enger  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

-- 
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 114722] lack of focus; object element with dangling parent

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114722

Terrence Enger  changed:

   What|Removed |Added

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

--- Comment #4 from Terrence Enger  ---
Thank you for the reminder, Xisco.

Working in the daily Linux dbgutil bibisect repository, I see the
problem fixed in the range:

   commitdates-h
     --  
no caret   f0604aba  2018-02-16  6a3f9de5  
yes caret  24baac23  2018-02-17  05986e7f  

I presume that the daily bug is not (at least, not any longer)
afflicted.  I am setting bug status VERIFIED WORKSFORME.

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


[Libreoffice-bugs] [Bug 115970] Smaller default size for Western/CTL fonts as locale value

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115970

--- Comment #8 from Junichi Matsukawa  ---
Created attachment 140172
  --> https://bugs.documentfoundation.org/attachment.cgi?id=140172=edit
Western,Asia,CTL text font size

Hi.

Recently, we often use 11 or 12 point font in business in Japan.
we often use Asian(CJK) fonts mixed with Western fonts.
Rather, I think it would be better to unify them in a 12 point font.

Because it is understood by painting characters with a frame line and
background color, but unity is lost.

-- 
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 116034] Libre Office calc convert from decimal to fraction not correct.

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116034

--- Comment #7 from Rickie  ---
Downloaded and opened your attachment 140171 and nothing has changed on my end,
still the same.  Getting a 1(one) in certain cells.  Maybe something is wrong
with my installation.  On both laptops though?  Having the same results on both
computers.  Even if I start up a new file and put in decimals and format as
fractions, still getting a 1(one) on both computers.  I'm currently running
Ubuntu Mate 17.10 on both.  Maybe I'll try and run Ubuntu Mate from a USB live
thumb drive which has an ubuntu mate iso file on it and see what happens.  I'll
try it tomorrow and let you know how it turns out. :)

Have a wonderful Evening:

rjs1943

-- 
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 116034] Libre Office calc convert from decimal to fraction not correct.

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116034

--- Comment #6 from Jacques Guilleron  ---
Created attachment 140171
  --> https://bugs.documentfoundation.org/attachment.cgi?id=140171=edit
The change i was proposing

Sorry for the inprecision.

-- 
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 116049] New: reference-mark-* tags stripped out in clipboard html

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116049

Bug ID: 116049
   Summary: reference-mark-* tags stripped out in clipboard html
   Product: LibreOffice
   Version: 6.0.1.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: johannesw...@gmail.com

when copying text from LibreOffice Writer, fields such as page number or dates
are marked by means of fields that hold metadata. However, reference-mark-*
tags are stripped out. These tags hold valuable information, used for example
by citation managers like Zotero. It would be helpful if the attributes of
these tags were preserved in the HTML output.

-- 
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 102187] [META] Options dialog bugs and enhancements

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102187

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||115994


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=115994
[Bug 115994] Grey area instead of settings for "Tools - Options - Language
Settings -English sentence checking" and " "Tools - Options - Internet -
MediaWiki" on master
-- 
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 115315] Editing: Cursor not in focus with new Calc/Writer document

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115315

--- Comment #31 from landi  ---
I've tested in Writer and Calc, and it seems to be working. I created new
documents using the File menu, and using command-N, and using the Start Center.
It worked with all methods on multiple documents.

-- 
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 116048] Apostrophes are converted to custom single quotes

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116048

Frédéric Buclin  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 39312] Writer improvement: Reorder buttons in “Paragraph Style” dialog for better usability

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39312

Thomas Lendo  changed:

   What|Removed |Added

 CC||thomas.le...@gmail.com,
   ||tietze.he...@gmail.com,
   ||vstuart.fo...@utsa.edu

--- Comment #9 from Thomas Lendo  ---
As all other dialogs in LibO also have these buttons on the right side, I
wouldn't move [Reset] and [Standard] to the left side in the paragraph style
dialog -- or it must be moved in all other style dialogs and other dialogs as
well.

Today, HIG is default as it's implemented now [1].

Instead, the button arrangement should respect OS principles as much as
possible.

I also like the idea of Adolfo to put both buttons into a dropdown button as
shown in [2]. And both names are not self-explanatory, maybe the wording should
be changed. But all this blows up this report.

[1] https://wiki.documentfoundation.org/Design/PropertyDialog
[2] https://bugs.documentfoundation.org/attachment.cgi?id=139478=edit

-- 
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 116048] New: Apostrophes are converted to custom single quotes

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116048

Bug ID: 116048
   Summary: Apostrophes are converted to custom single quotes
   Product: LibreOffice
   Version: 6.0.2.1 rc
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Keywords: regression
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lpso...@netscape.net

Created attachment 140170
  --> https://bugs.documentfoundation.org/attachment.cgi?id=140170=edit
screenshot 6.0.1 vs 6.0.2 RC1

In french, we use a lot of apostrophes, such as in:

  j'aime l'été  (I love summer)

This was working fine till LibreOffice 6.0.1. But this is broken in 6.0.2 RC1.
The same text becomes:

  j>aime l>été

See the attached screenshot for comparison.

-- 
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 116037] FILEOPEN: Text import does no longer work

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116037

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTOURBUG

--- Comment #4 from Aron Budea  ---
this is an Ubuntu-specific issue, I could reproduce it with bundled LO 5.4.5.1
/ Ubuntu 17.10, but not with TDF's LO 6.0.1.1 or 5.4.5.1 (ie. the file can be
opened/inserted without problem there).

Please see how to report bugs specific to Ubuntu's LibreOffice here:
https://wiki.ubuntu.com/LibreOfficeBugWrangling

If you open/find a bug report downstream, please add it to the See Also field
here. Thanks!

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


[Libreoffice-bugs] [Bug 115465] Writer Table: Table Contents ignores default style settings

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115465

--- Comment #5 from Walter Nicholls  ---
This may be a separate problem, but I can't mitigate this by editing the table
style and setting the font I want. Nowhere in my menus ,right click etc, can I
find any way to change what the default style is.  Or any other style. I can
create a new table style, but can't edit that.

I tried completely resetting my user profile, in case there was some menu
customisation problem.  No joy.

I may have got around it by deleting the table style "Default Style" - it
remains to be seen.  But once a table style is applied to a table, that is it. 
"None" does not appear in the list.

What happened to the table editing dialog in
https://design.blog.documentfoundation.org/2015/12/13/style-your-tables/

Regardless of this, I would have though that any attributes of an applied
paragraph style would override that of an underlying table style. Although IMHO
there should be no mention of paragraph/character attributes in the table style
anyway.

Downgrading to LO 5.4 was a disaster for me, I'm back to 6.0. So now I am livid
especially since I often include tabular data in writer documents that are
customer-facing and the corporate style should be enforced.

-- 
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 115723] Writer 5.4.4.2 no longer recognizes TTF fonts installed locally on system

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115723

--- Comment #8 from Aron Budea  ---
Same with TDF's LO 5.4.5.1, btw.
It might be worth looking around the LO packages installed/missing, maybe an
important package isn't set as dependency.

Also, if you open/find a bug report downstream, please add it to the See Also
field here. Thanks!

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


[Libreoffice-bugs] [Bug 95953] Size of text not preserved and Liberation changed to Arial through save and open as pptx

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95953

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #8 from Aron Budea  ---
The changing of fonts is intentional for interoperability, a system with MS
Office likely won't have Liberation fonts installed.

-- 
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 115723] Writer 5.4.4.2 no longer recognizes TTF fonts installed locally on system

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115723

Aron Budea  changed:

   What|Removed |Added

   Keywords|bibisectRequest, regression |
 Status|NEW |RESOLVED
 Resolution|--- |NOTOURBUG

--- Comment #7 from Aron Budea  ---
Mike is on point, this is an Ubuntu-specific issue, I could reproduce it with
bundled LO 5.4.5.1 / Ubuntu 17.10, but not with TDF's LO 6.0.1.1 or 5.4.4.2 (or
with any bibisect repositories).

Please see how to report bugs specific to Ubuntu's LibreOffice here:
https://wiki.ubuntu.com/LibreOfficeBugWrangling

-- 
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 116005] Undo of paste does not undo all changes

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116005

--- Comment #2 from Luke Kendall  ---
Sure, here it is:

Version: 6.0.1.1
Build ID: 60bfb1526849283ce2491346ed2aa51c465abfe6
CPU threads: 4; OS: Linux 4.4; UI render: default; VCL: gtk2; 
Locale: en-GB (en_AU.UTF-8); Calc: group

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


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

2018-02-26 Thread Andrea Gelmini
 source/text/swriter/01/04090300.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e99b572b78c43358f910219ee89a13a87d8e7bba
Author: Andrea Gelmini 
Date:   Mon Feb 26 16:26:28 2018 +0100

Fix typo

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

diff --git a/source/text/swriter/01/04090300.xhp 
b/source/text/swriter/01/04090300.xhp
index 4936a6f10..cfcd746b9 100644
--- a/source/text/swriter/01/04090300.xhp
+++ b/source/text/swriter/01/04090300.xhp
@@ -33,7 +33,7 @@
 Choose Fields of the context menu of the 
selected field.
 
 Type pane
-Shows the type of the selected field. The middle and left pane 
of the dialog contents depends on the field type. For a complete decription of 
the fields see Fields page.
+Shows the type of the selected field. The middle and left pane 
of the dialog contents depends on the field type. For a complete description of 
the fields see Fields page.
 Edit
 When visible, opens a dialog to edit the contents of the 
field. The dialog depends on the type of the field.
 Arrow buttons
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2018-02-26 Thread Andrea Gelmini
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 96d551636e9179eb6874a5156b191ef3bff0a10c
Author: Andrea Gelmini 
Date:   Mon Feb 26 16:26:28 2018 +0100

Updated core
Project: help  e99b572b78c43358f910219ee89a13a87d8e7bba

Fix typo

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

diff --git a/helpcontent2 b/helpcontent2
index acc847de97f5..e99b572b78c4 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit acc847de97f5bbaefe27500d630ae8180215f09e
+Subproject commit e99b572b78c43358f910219ee89a13a87d8e7bba
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-02-26 Thread Andrea Gelmini
 source/text/swriter/guide/fields.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit acc847de97f5bbaefe27500d630ae8180215f09e
Author: Andrea Gelmini 
Date:   Mon Feb 26 16:29:02 2018 +0100

Fix typo

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

diff --git a/source/text/swriter/guide/fields.xhp 
b/source/text/swriter/guide/fields.xhp
index 3b65fd701..7fa9482a5 100644
--- a/source/text/swriter/guide/fields.xhp
+++ b/source/text/swriter/guide/fields.xhp
@@ -59,7 +59,7 @@
Placeholder
 
 
-   Opens a dialog to insert the corresponding object for which 
the placeholder was set, except for text placeholders, where text is inseted 
directly.
+   Opens a dialog to insert the corresponding object for which 
the placeholder was set, except for text placeholders, where text is inserted 
directly.
 
  
  
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2018-02-26 Thread Andrea Gelmini
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2544da0bc0dc72fe6883c96869225b1592bf99fc
Author: Andrea Gelmini 
Date:   Mon Feb 26 16:29:02 2018 +0100

Updated core
Project: help  acc847de97f5bbaefe27500d630ae8180215f09e

Fix typo

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

diff --git a/helpcontent2 b/helpcontent2
index 73f04500d86e..acc847de97f5 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 73f04500d86e8daca46347aa25fd916e708f77a6
+Subproject commit acc847de97f5bbaefe27500d630ae8180215f09e
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 116047] LO 6.0.1.1 (x64) calc windows, autofilter freezes

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116047

--- Comment #1 from rimi...@yahoo.com ---
Created attachment 140169
  --> https://bugs.documentfoundation.org/attachment.cgi?id=140169=edit
sample calc file that exhibits the problem

I downloaded and ran the openGL checker, but I'm not sure what the report
means. I am attaching it here:

Renderer: GDI Generic
Vendor: Microsoft Corporation
Memory: 256 MB
Version: 1.1.0
Shading language version: N/A


Max texture size: 1024 x 1024
Max texture coordinates: 0
Max vertex texture image units: 0
Max texture image units: 0
Max geometry texture units: 0
Max anisotropic filtering value: 0
Max number of light sources: 8
Max viewport size: 16384 x 16384
Max uniform vertex components: 0
Max uniform fragment components: 0
Max geometry uniform components: 0
Max varying vectors: 0
Max samples: 0
Max draw buffers: 0


GL Extensions: 3
\i0 

GL_WIN_swap_hint
GL_EXT_paletted_texture
GL_EXT_bgra

Core features
v1.1 (100 % - 7/7)
v1.2 (12 % - 1/8)
v1.3 (0 % - 0/9)
v1.4 (0 % - 0/15)
v1.5 (0 % - 0/3)
v2.0 (0 % - 0/10)
v2.1 (0 % - 0/3)
v3.0 (0 % - 0/23)
v3.1 (0 % - 0/8)
v3.2 (0 % - 0/10)
v3.3 (0 % - 0/10)
v4.0 (0 % - 0/14)
v4.1 (0 % - 0/7)
v4.2 (0 % - 0/13)
v4.3 (0 % - 0/23)
v4.4 (0 % - 0/10)
v4.5 (0 % - 0/11)
v4.6 (0 % - 0/11)
vARB 2015 (0 % - 0/12)
OpenGL driver version check (Current: 0, Latest known: ):
 Latest version of display drivers found 
 According the database, you are running the latest display drivers for your
video card.
 No multitexturing support 
 This may cause performance loss in some applications.
 No secondary color support 
 Some applications may not render polygon highlights correctly.
 No S3TC compression support 
 This may cause performance loss in some applications.
 No texture edge clamp support 
 This feature adds clamping control to edge texel filtering. Some programs may
not render textures correctly (black line on borders.)
 No vertex program support 
 This feature enables vertex programming (equivalent to DX8 Vertex Shader.)
Some current or future OpenGL programs may require this feature.
 No fragment program support 
 This feature enables per pixel programming (equivalent to DX9 Pixel Shader.)
Some current or future OpenGL programs may require this feature.
 No OpenGL Shading Language support 
 This may break compatibility for applications using per pixel shading.
 No Frame buffer object support 
 This may break compatibility for applications using render to texture
functions.
 Few texture units found 
 This may slow down some applications using fragment programs or extensive
texture mapping.
Extension verification: 
 GL_EXT_color_subtable  was not found, but has the entry point 
glColorSubTableEXT

-- 
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 116047] New: LO 6.0.1.1 (x64) calc windows, autofilter freezes

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116047

Bug ID: 116047
   Summary: LO 6.0.1.1 (x64) calc windows, autofilter freezes
   Product: LibreOffice
   Version: 6.0.1.1 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rimi...@yahoo.com

Description:
Autofilter function on a field with a lot of text in it not working. Dialog box
appears, but I cannot type in the filter text box. It just shows blanks and
mouse pointer changes to hourglass.

Autofilter on a field where there isn't too much text works fine.

It worked without problem before upgrade to this version. Spreadsheet has cca
13000 rows. I created sample spreadsheet with 1 field and lots of different
values in it, which i am attaching and which is exhibiting this behavior.

Steps to Reproduce:
1.Open attached spreadsheet.
2.Click on the Autofilter arrow
3.Type anything in the text box that appears

Actual Results:  
Blank spaces appear in the text box instead of typed letters. Mouse pointer
changes to hourglass.

Expected Results:
I should see filtered results that I could use to narrow my filter.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Version: 6.0.1.1 (x64)
Build ID: 60bfb1526849283ce2491346ed2aa51c465abfe6
CPU threads: 2; OS: Windows 10.0; UI render: default; 
Locale: en-US (en_US); Calc: group


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36

-- 
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 115374] No PGP keys to encrypt a document listed

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115374

--- Comment #12 from Thorsten Behrens (CIB)  ---
The above should fix Hans' problem - test builds here:
https://dev-builds.libreoffice.org/daily/libreoffice-6-0/Win-x86_64@42/

-- 
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 116044] The Description field in the customize dialog is always empty and disabled

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116044

Thomas Lendo  changed:

   What|Removed |Added

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

--- Comment #2 from Thomas Lendo  ---


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

-- 
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 103238] [META] Customize dialog bugs and enhancements

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103238
Bug 103238 depends on bug 116044, which changed state.

Bug 116044 Summary: The Description field in the customize dialog is always 
empty and disabled
https://bugs.documentfoundation.org/show_bug.cgi?id=116044

   What|Removed |Added

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

-- 
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 112237] Cannot get description of used commands in new customize dialog

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112237

Thomas Lendo  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #4 from Thomas Lendo  ---
*** Bug 116044 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 115236] relative links & file:// URI scheme fail when exporting to HTML and SVG from LibreOffice Impress Versions : 5.1 & 5.3

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115236

UbunLibOffImp  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 116043] Searching in the customize dialog makes the icons go away

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116043

Thomas Lendo  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||thomas.le...@gmail.com
 Ever confirmed|0   |1

--- Comment #1 from Thomas Lendo  ---
Right, the icons in the left function list vanish.

This doesn't occur on Windows as there are no icons shown in this list.

-- 
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 115236] relative links & file:// URI scheme fail when exporting to HTML and SVG from LibreOffice Impress Versions : 5.1 & 5.3

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115236

--- Comment #2 from UbunLibOffImp  ---
Created attachment 140168
  --> https://bugs.documentfoundation.org/attachment.cgi?id=140168=edit
Confirmed that in 6.0.1.1 LO makes a mess of hyperlinks when a *.ODP is
exported to *.SVG.

See attached *.ODP created using AppImage Fresh 6.0.1.1

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


[Libreoffice-bugs] [Bug 116044] The Description field in the customize dialog is always empty and disabled

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116044

Thomas Lendo  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||thomas.le...@gmail.com
Version|6.1.0.0.alpha0+ Master  |6.0.0.0.beta1
 Ever confirmed|0   |1
 OS|Linux (All) |All

--- Comment #1 from Thomas Lendo  ---
Reproduced with Version: 6.1.0.0.alpha0+
Build ID: e1771058ebc4efc58515ffa60250843274990bac
CPU threads: 4; OS: Linux 4.13; UI render: default; VCL: gtk3; 
Locale: de-DE (de_DE.UTF-8); Calc: group

and Version: 6.1.0.0.alpha0+
Build-ID: 0a46237093c1750ee69ddb6a365098dc1d06b758
CPU-Threads: 4; BS: Linux 4.13; UI-Render: Standard; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2018-02-21_21:56:55
Gebietsschema: de-DE (de_DE.UTF-8); Calc: group

and Version: 6.0.1.1 (x64)
BS: Windows 10.0, UI-Render: Standard

I noticed this some months ago but I thought it's still in progress.

-- 
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 103859] [META] EMF/WMF (Enhanced/Windows Metafile) bugs and enhancements

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103859
Bug 103859 depends on bug 114076, which changed state.

Bug 114076 Summary: FILEOPEN: artifacts on Images ( white lines )
https://bugs.documentfoundation.org/show_bug.cgi?id=114076

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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


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

2018-02-26 Thread Armin Le Grand
 sw/source/core/doc/notxtfrm.cxx |   28 +++-
 1 file changed, 27 insertions(+), 1 deletion(-)

New commits:
commit c1230cede19ae3633e51c7ca780cb34d9dbaa20f
Author: Armin Le Grand 
Date:   Mon Feb 26 15:13:06 2018 +0100

tdf#114076: Expand ClipRange to next PixelBound

Do this by going to basegfx::B2DRange, adding a
single pixel size and using floor/ceil to go to
full integer (as needed for pixels). Also need
to go back to basegfx::B2DPolyPolygon for the
creation of the needed MaskPrimitive2D.
The general problem is that Writer is scrolling
using blitting the unchanged parts, this forces
this part of the scroll to pixel coordinate steps,
while the ViewTransformation for paint nowadays has
a sub-pixel precision. This results in an offset
up to one pixel in radius. To solve this for now,
we need to expand to the next outer pixel bound.
Hopefully in the future we will someday be able to
stay on the full available precision, but this
will need a change in the repaint/scroll paradigm.

Change-Id: Idb4a596bc298d1b80aab6f36ad4204afe94d54f7
Reviewed-on: https://gerrit.libreoffice.org/50369
Tested-by: Jenkins 
Reviewed-by: Armin Le Grand 

diff --git a/sw/source/core/doc/notxtfrm.cxx b/sw/source/core/doc/notxtfrm.cxx
index 65d6be161ed4..4aae97a40690 100644
--- a/sw/source/core/doc/notxtfrm.cxx
+++ b/sw/source/core/doc/notxtfrm.cxx
@@ -79,6 +79,7 @@
 #include 
 #include 
 #include 
+#include 
 
 using namespace com::sun::star;
 
@@ -1022,8 +1023,33 @@ void paintGraphicUsingPrimitivesHelper(
 
 if(0 != aClip.count())
 {
+// tdf#114076: Expand ClipRange to next PixelBound
+// Do this by going to basegfx::B2DRange, adding a
+// single pixel size and using floor/ceil to go to
+// full integer (as needed for pixels). Also need
+// to go back to basegfx::B2DPolyPolygon for the
+// creation of the needed MaskPrimitive2D.
+// The general problem is that Writer is scrolling
+// using blitting the unchanged parts, this forces
+// this part of the scroll to pixel coordinate steps,
+// while the ViewTransformation for paint nowadays has
+// a sub-pixel precision. This results in an offset
+// up to one pixel in radius. To solve this for now,
+// we need to expand to the next outer pixel bound.
+// Hopefully in the future we will someday be able to
+// stay on the full available precision, but this
+// will need a change in the repaint/scroll paradigm.
+const basegfx::B2DRange aClipRange(aClip.getB2DRange());
+const basegfx::B2DVector 
aSinglePixelXY(rOutputDevice.GetInverseViewTransformation() * 
basegfx::B2DVector(1.0, 1.0));
+const basegfx::B2DRange aExpandedClipRange(
+floor(aClipRange.getMinX() - aSinglePixelXY.getX()),
+floor(aClipRange.getMinY() - aSinglePixelXY.getY()),
+ceil(aClipRange.getMaxX() + aSinglePixelXY.getX()),
+ceil(aClipRange.getMaxY() + aSinglePixelXY.getY()));
+
 aContent[0] = new drawinglayer::primitive2d::MaskPrimitive2D(
-aClip,
+basegfx::B2DPolyPolygon(
+
basegfx::utils::createPolygonFromRect(aExpandedClipRange)),
 aContent);
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 116034] Libre Office calc convert from decimal to fraction not correct.

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116034

--- Comment #5 from m.a.riosv  ---
For me redo the cell format works fine.

Version: 6.0.2.1 (x64)
Build ID: f7f06a8f319e4b62f9bc5095aa112a65d2f3ac89
CPU threads: 4; OS: Windows 10.0; UI render: GL; 
Locale: es-ES (es_ES); Calc: CL

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


Re: Image cropping depends on screen resolution

2018-02-26 Thread Thorsten Behrens
Robert Averbeck wrote:
> The root cause is that the dpi value of the current monitor is
> applied to all images instead of reading the dpi value from the
> image meta data.
>
Sounds like a bug to me, please file (with sample document) at
bugs.documentfoundation.org

Thanks a lot,

-- Thorsten


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


[Libreoffice-bugs] [Bug 116034] Libre Office calc convert from decimal to fraction not correct.

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116034

Rickie  changed:

   What|Removed |Added

 CC||rjs1...@live.com

--- Comment #4 from Rickie  ---
Created attachment 140167
  --> https://bugs.documentfoundation.org/attachment.cgi?id=140167=edit
Here is an updated ver of fi,e in question

Updated version of ODS fractions ile in question..

-- 
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 115507] Style names become invisible if the default style used white color

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115507

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #4 from m.a.riosv  ---
There is an option to show or not the fonts preview, with it disable all style
are visible.

So I don't think it's a bug, nothing special to manage the styles is needed.

-- 
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 115507] Style names become invisible if the default style used white color

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115507

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #4 from m.a.riosv  ---
There is an option to show or not the fonts preview, with it disable all style
are visible.

So I don't think it's a bug, nothing special to manage the styles is needed.

-- 
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 116034] Libre Office calc convert from decimal to fraction not correct.

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116034

Rickie  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from Rickie  ---
I tried using the side bar like you said but instead of getting 5/64 in B5 I
got 1/9. Going back to two decimal places in B5 rendered a 1(one) again.  Also
tried reformatting to # ??/?? with out the quotes I had, it did not change the
output. I also tried using Libre Office calc in Linux Mint 18.3 from a live USB
stick and was able to get the correct answers.  There were only two options to
choose from in fractions format menu and both worked.  One answer was 3/4 the
other was 3/ 4. in cell E16 converting 0.75 to a fraction.  The 4 moved over
one space to the right.

Thanks 
rjs1943

-- 
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: cui/source dbaccess/source include/vcl sd/source svtools/source sw/source uui/source vcl/source

2018-02-26 Thread Caolán McNamara
 cui/source/customize/cfg.cxx  |4 ++--
 cui/source/tabpages/tplnedef.cxx  |2 +-
 dbaccess/source/ui/dlg/sqlmessage.cxx |2 +-
 include/vcl/msgbox.hxx|6 +++---
 sd/source/filter/html/htmlex.cxx  |1 -
 svtools/source/graphic/provider.cxx   |2 +-
 sw/source/ui/dialog/swmessdialog.cxx  |2 +-
 uui/source/secmacrowarnings.cxx   |2 +-
 vcl/source/window/layout.cxx  |2 +-
 vcl/source/window/msgbox.cxx  |8 
 10 files changed, 15 insertions(+), 16 deletions(-)

New commits:
commit cc92324bed7f039e91d07d241f958ad773582c48
Author: Caolán McNamara 
Date:   Mon Feb 26 13:11:03 2018 +

split out GetStandardWarningBoxImage

Change-Id: I2c8315c7223adac2d7e0e2aa403db0f865bdc48e
Reviewed-on: https://gerrit.libreoffice.org/50377
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/cui/source/customize/cfg.cxx b/cui/source/customize/cfg.cxx
index 7d5ce9d4da6b..f26bbd6ff085 100644
--- a/cui/source/customize/cfg.cxx
+++ b/cui/source/customize/cfg.cxx
@@ -3426,7 +3426,7 @@ SvxIconReplacementDialog::SvxIconReplacementDialog(
 MessBox( pWindow, MessBoxStyle::DefaultYes, 0, CuiResId( 
RID_SVXSTR_REPLACE_ICON_CONFIRM ),  CuiResId( RID_SVXSTR_REPLACE_ICON_WARNING ) 
)
 
 {
-SetImage( WarningBox::GetStandardImage() );
+SetImage( GetStandardWarningBoxImage() );
 SetMessText( ReplaceIconName( aMessage ) );
 RemoveButton( 1 );
 AddButton( StandardButtonType::Yes, 2);
@@ -3439,7 +3439,7 @@ SvxIconReplacementDialog::SvxIconReplacementDialog(
 vcl::Window *pWindow, const OUString& aMessage )
 : MessBox( pWindow, MessBoxStyle::YesNoCancel, 0, CuiResId( 
RID_SVXSTR_REPLACE_ICON_CONFIRM ),  CuiResId( RID_SVXSTR_REPLACE_ICON_WARNING ) 
)
 {
-SetImage( WarningBox::GetStandardImage() );
+SetImage( GetStandardWarningBoxImage() );
 SetMessText( ReplaceIconName( aMessage ));
 }
 
diff --git a/cui/source/tabpages/tplnedef.cxx b/cui/source/tabpages/tplnedef.cxx
index 4c2ba2cd428e..ae5981659394 100644
--- a/cui/source/tabpages/tplnedef.cxx
+++ b/cui/source/tabpages/tplnedef.cxx
@@ -239,7 +239,7 @@ void SvxLineDefTabPage::CheckChanges_Impl()
 m_pLbType2->IsValueChangedFromSaved() ||
 m_pMtrDistance->IsValueChangedFromSaved() )
 {
-Image aWarningBoxImage = WarningBox::GetStandardImage();
+Image aWarningBoxImage = GetStandardWarningBoxImage();
 ScopedVclPtrInstance aMessDlg( GetParentDialog(),
   SvxResId( 
RID_SVXSTR_LINESTYLE ),
   
CuiResId(RID_SVXSTR_ASK_CHANGE_LINESTYLE),
diff --git a/dbaccess/source/ui/dlg/sqlmessage.cxx 
b/dbaccess/source/ui/dlg/sqlmessage.cxx
index 5981fcb33ebe..e7f8811da03e 100644
--- a/dbaccess/source/ui/dlg/sqlmessage.cxx
+++ b/dbaccess/source/ui/dlg/sqlmessage.cxx
@@ -625,7 +625,7 @@ void OSQLMessageBox::Construct( MessBoxStyle _nStyle, 
MessageType _eImage )
 m_aInfoImage->SetImage(GetStandardInfoBoxImage());
 break;
 case Warning:
-m_aInfoImage->SetImage(WarningBox::GetStandardImage());
+m_aInfoImage->SetImage(GetStandardWarningBoxImage());
 break;
 case Error:
 m_aInfoImage->SetImage(GetStandardErrorBoxImage());
diff --git a/include/vcl/msgbox.hxx b/include/vcl/msgbox.hxx
index 16fa979015b7..39b63d3e8a23 100644
--- a/include/vcl/msgbox.hxx
+++ b/include/vcl/msgbox.hxx
@@ -91,11 +91,11 @@ public:
 const OUString& rMessage );
 WarningBox( vcl::Window* pParent, MessBoxStyle nStyle, 
WinBits n,
 const OUString& rMessage );
-
-static Image const & GetStandardImage();
-static OUString GetStandardText();
 };
 
+VCL_DLLPUBLIC Image const & GetStandardWarningBoxImage();
+VCL_DLLPUBLIC OUString GetStandardWarningBoxText();
+
 VCL_DLLPUBLIC Image const & GetStandardErrorBoxImage();
 VCL_DLLPUBLIC OUString GetStandardErrorBoxText();
 
diff --git a/sd/source/filter/html/htmlex.cxx b/sd/source/filter/html/htmlex.cxx
index ffd17fd09389..55cfc04e9266 100644
--- a/sd/source/filter/html/htmlex.cxx
+++ b/sd/source/filter/html/htmlex.cxx
@@ -3098,7 +3098,6 @@ bool HtmlExport::checkForExistingFiles()
 OUString aMsg(SdResId(STR_OVERWRITE_WARNING));
 aMsg = aMsg.replaceFirst( "%FILENAME", aSystemPath );
 ScopedVclPtrInstance< WarningBox > aWarning( nullptr, 
MessBoxStyle::YesNo | MessBoxStyle::DefaultYes, aMsg );
-aWarning->SetImage( WarningBox::GetStandardImage() );
 bFound = ( RET_NO == aWarning->Execute() );
 }
 }
diff --git a/svtools/source/graphic/provider.cxx 
b/svtools/source/graphic/provider.cxx
index 2afef15a646f..9e8c8b636d2b 100644
--- a/svtools/source/graphic/provider.cxx
+++ 

[Libreoffice-commits] core.git: include/vcl sc/inc sc/source sc/uiconfig sc/UIConfig_scalc.mk vcl/inc vcl/source

2018-02-26 Thread Caolán McNamara
 include/vcl/msgbox.hxx  |9 ---
 sc/UIConfig_scalc.mk|2 
 sc/inc/globstr.hrc  |1 
 sc/inc/helpids.h|4 -
 sc/inc/strings.hrc  |1 
 sc/source/ui/docshell/docsh.cxx |   28 ---
 sc/source/ui/docshell/impex.cxx |5 +-
 sc/source/ui/inc/warnbox.hxx|   14 -
 sc/source/ui/miscdlgs/warnbox.cxx   |   34 +
 sc/source/ui/view/viewfun3.cxx  |   15 +++---
 sc/uiconfig/scalc/ui/checkwarningdialog.ui  |   49 +++
 sc/uiconfig/scalc/ui/sharedwarningdialog.ui |   48 +++
 vcl/inc/strings.hrc |2 
 vcl/source/window/msgbox.cxx|   69 
 14 files changed, 167 insertions(+), 114 deletions(-)

New commits:
commit 28488c94d697f169baaf4c67bf2c71287b503c43
Author: Caolán McNamara 
Date:   Sun Feb 25 17:26:42 2018 +

convert corner case warningboxes with checkboxes

Change-Id: Ic8b58b792236a733b6687148eac5c06bbf734acf
Reviewed-on: https://gerrit.libreoffice.org/50325
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/include/vcl/msgbox.hxx b/include/vcl/msgbox.hxx
index 5df7a5f81437..16fa979015b7 100644
--- a/include/vcl/msgbox.hxx
+++ b/include/vcl/msgbox.hxx
@@ -57,13 +57,10 @@ class VCL_DLLPUBLIC MessBox : public ButtonDialog
 VclPtr mpFixedImage;
 Image  maImage;
 bool   mbHelpBtn;
-bool   mbCheck;
 MessBoxStyle   mnMessBoxStyle;
 
 protected:
 OUString   maMessText;
-VclPtr   mpCheckBox;
-OUString   maCheckBoxText;
 
 SAL_DLLPRIVATE void ImplInitButtons();
 SAL_DLLPRIVATE void ImplPosControls();
@@ -81,10 +78,6 @@ public:
 
 voidSetImage( const Image& rImage ) { maImage = rImage; }
 
-voidSetCheckBoxText( const OUString& rText ) { 
maCheckBoxText = rText;}
-voidSetCheckBoxState( bool bCheck );
-boolGetCheckBoxState() const;
-
 virtual SizeGetOptimalSize() const override;
 };
 
@@ -99,8 +92,6 @@ public:
 WarningBox( vcl::Window* pParent, MessBoxStyle nStyle, 
WinBits n,
 const OUString& rMessage );
 
-voidSetDefaultCheckBoxText();
-
 static Image const & GetStandardImage();
 static OUString GetStandardText();
 };
diff --git a/sc/UIConfig_scalc.mk b/sc/UIConfig_scalc.mk
index 78a0674eab40..bfbf46305226 100644
--- a/sc/UIConfig_scalc.mk
+++ b/sc/UIConfig_scalc.mk
@@ -92,6 +92,7 @@ $(eval $(call gb_UIConfig_add_uifiles,modules/scalc,\
sc/uiconfig/scalc/ui/cellprotectionpage \
sc/uiconfig/scalc/ui/changesourcedialog \
sc/uiconfig/scalc/ui/chardialog \
+   sc/uiconfig/scalc/ui/checkwarningdialog \
sc/uiconfig/scalc/ui/chisquaretestdialog \
sc/uiconfig/scalc/ui/colorrowdialog \
sc/uiconfig/scalc/ui/colwidthdialog \
@@ -200,6 +201,7 @@ $(eval $(call gb_UIConfig_add_uifiles,modules/scalc,\
sc/uiconfig/scalc/ui/sharedocumentdlg \
sc/uiconfig/scalc/ui/sharedfooterdialog \
sc/uiconfig/scalc/ui/sharedheaderdialog \
+   sc/uiconfig/scalc/ui/sharedwarningdialog \
sc/uiconfig/scalc/ui/showchangesdialog \
sc/uiconfig/scalc/ui/showdetaildialog \
sc/uiconfig/scalc/ui/showsheetdialog \
diff --git a/sc/inc/globstr.hrc b/sc/inc/globstr.hrc
index cf29d865364f..89f3150fa8d0 100644
--- a/sc/inc/globstr.hrc
+++ b/sc/inc/globstr.hrc
@@ -392,7 +392,6 @@
 #define STR_DOC_WILLNOTBESAVED  NC_("STR_DOC_WILLNOTBESAVED", 
"Already resolved merge conflicts will be lost and your changes to the shared 
spreadsheet will not be saved.\n\nDo you want to continue?")
 #define STR_DOC_DISABLESHARED   NC_("STR_DOC_DISABLESHARED", 
"Disabling shared mode of a spreadsheet hinders all other users of the shared 
spreadsheet to merge back their work.\n\nDo you want to continue?")
 #define STR_DOC_NOLONGERSHARED  NC_("STR_DOC_NOLONGERSHARED", 
"This spreadsheet is no longer in shared mode.\n\nSave your spreadsheet to a 
separate file and merge your changes to the shared spreadsheet manually.")
-#define STR_SHARED_DOC_WARNING  NC_("STR_SHARED_DOC_WARNING", 
"The spreadsheet is in shared mode. This allows multiple users to access and 
edit the spreadsheet at the same time.\n\nChanges to formatting attributes like 
fonts, colors, and number formats will not be saved and some functionalities 
like editing charts and drawing objects are not available in shared mode. Turn 
off shared mode to get exclusive access needed for those changes and 

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

2018-02-26 Thread Eike Rathke
 comphelper/source/misc/docpasswordhelper.cxx |   20 +++---
 include/comphelper/docpasswordhelper.hxx |   54 ++-
 2 files changed, 67 insertions(+), 7 deletions(-)

New commits:
commit 94fa259e769b44f2c2ea7f1667b28f2c07489668
Author: Eike Rathke 
Date:   Mon Feb 26 22:02:50 2018 +0100

Introduce DocPasswordHelper::GetOoxHashAsVector() with salt value vector

In preparation to use this in AgileEngine.

Change-Id: I45fb6ba24b759a72af0c7afa22eae75f1ae728ce

diff --git a/comphelper/source/misc/docpasswordhelper.cxx 
b/comphelper/source/misc/docpasswordhelper.cxx
index 8a35c33ca92d..3f470520fbf5 100644
--- a/comphelper/source/misc/docpasswordhelper.cxx
+++ b/comphelper/source/misc/docpasswordhelper.cxx
@@ -259,9 +259,9 @@ Sequence< sal_Int8 > DocPasswordHelper::GetXLHashAsSequence(
 }
 
 
-css::uno::Sequence DocPasswordHelper::GetOoxHashAsSequence(
+std::vector DocPasswordHelper::GetOoxHashAsVector(
 const rtl::OUString& rPassword,
-const rtl::OUString& rSaltValue,
+const std::vector& rSaltValue,
 sal_uInt32 nSpinCount,
 comphelper::Hash::IterCount eIterCount,
 const rtl::OUString& rAlgorithmName)
@@ -276,8 +276,19 @@ css::uno::Sequence 
DocPasswordHelper::GetOoxHashAsSequence(
 else if (rAlgorithmName == "MD5")
 eType = comphelper::HashType::MD5;
 else
-return css::uno::Sequence();
+return std::vector();
+
+return comphelper::Hash::calculateHash( rPassword, rSaltValue, nSpinCount, 
eIterCount, eType);
+}
+
 
+css::uno::Sequence DocPasswordHelper::GetOoxHashAsSequence(
+const rtl::OUString& rPassword,
+const rtl::OUString& rSaltValue,
+sal_uInt32 nSpinCount,
+comphelper::Hash::IterCount eIterCount,
+const rtl::OUString& rAlgorithmName)
+{
 std::vector aSaltVec;
 if (!rSaltValue.isEmpty())
 {
@@ -286,8 +297,7 @@ css::uno::Sequence 
DocPasswordHelper::GetOoxHashAsSequence(
 aSaltVec = comphelper::sequenceToContainer( aSaltSeq);
 }
 
-std::vector hash( comphelper::Hash::calculateHash( 
rPassword, aSaltVec, nSpinCount,
-eIterCount, eType));
+std::vector hash( GetOoxHashAsVector( rPassword, aSaltVec, 
nSpinCount, eIterCount, rAlgorithmName));
 
 return comphelper::containerToSequence( hash);
 }
diff --git a/include/comphelper/docpasswordhelper.hxx 
b/include/comphelper/docpasswordhelper.hxx
index e37a6c71de22..62c856c40c9a 100644
--- a/include/comphelper/docpasswordhelper.hxx
+++ b/include/comphelper/docpasswordhelper.hxx
@@ -183,7 +183,10 @@ public:
 
 /** Convenience function to calculate a salted hash with iterations as
 specified in https://msdn.microsoft.com/en-us/library/dd920692 for the
-OOXML sheetProtection and fileSharing elements.
+OOXML sheetProtection and fileSharing elements, or
+https://msdn.microsoft.com/en-us/library/dd924776 and
+https://msdn.microsoft.com/en-us/library/dd925430 for Standard and
+Agile Encryption.
 
 @param  rPassword
 UTF-16 encoded string without leading BOM character
@@ -225,7 +228,10 @@ public:
 
 /** Convenience function to calculate a salted hash with iterations as
 specified in https://msdn.microsoft.com/en-us/library/dd920692 for the
-OOXML sheetProtection and fileSharing elements.
+OOXML sheetProtection and fileSharing elements, or
+https://msdn.microsoft.com/en-us/library/dd924776 and
+https://msdn.microsoft.com/en-us/library/dd925430 for Standard and
+Agile Encryption.
 
 @param  rPassword
 UTF-16 encoded string without leading BOM character
@@ -266,6 +272,50 @@ public:
 const rtl::OUString& rAlgorithmName);
 
 
+/** Convenience function to calculate a salted hash with iterations as
+specified in https://msdn.microsoft.com/en-us/library/dd920692 for the
+OOXML sheetProtection and fileSharing elements, or
+https://msdn.microsoft.com/en-us/library/dd924776 and
+https://msdn.microsoft.com/en-us/library/dd925430 for Standard and
+Agile Encryption.
+
+@param  rPassword
+UTF-16 encoded string without leading BOM character
+
+@param  rSaltValue
+A raw salt that will be prepended to password data.
+
+@param  nSpinCount
+If >0 the number of repeated iterations.
+
+@param  eIterCount
+If Hash::IterCount::APPEND, append iteration count as per
+https://msdn.microsoft.com/en-us/library/dd920692
+If Hash::IterCount::PREPEND, prepend iteration count as per
+https://msdn.microsoft.com/en-us/library/dd924776 and
+https://msdn.microsoft.com/en-us/library/dd925430
+If Hash::IterCount::NONE, do not add the iteration count to 
hash
+iterations.

Image cropping depends on screen resolution

2018-02-26 Thread Robert Averbeck
I believe I found a fundamental design flaw in Libreoffice Impress 5.4.5.1. 
Cropped images get distorted when changing the screen resolution. The root 
cause is that the dpi value of the current monitor is applied to all images 
instead of reading the dpi value from the image meta data. Since the odp file 
format uses length units (e.g. cm) when defining image cropping, the crop 
values of all images need to be changed when changing the monitor resolution. 
In any case a tool for converting odp files is required.

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


[Libreoffice-bugs] [Bug 116045] LibreOffice UI crash with black color and strange menu

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116045

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet  ---
It makes me think to OpenGL problem.

Could you give a try to https://wiki.documentfoundation.org/QA/FirstSteps ?

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


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

2018-02-26 Thread Caolán McNamara
 sw/source/filter/xml/xmltbli.cxx |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

New commits:
commit 3c0189c7f04b9b457ed5621fef68fcb1843df891
Author: Caolán McNamara 
Date:   Mon Feb 26 14:45:45 2018 +

ofz#6571 Integer-overflow

Change-Id: If4a0b9532c69a1b3746fab8c727f245cd2e8a131
Reviewed-on: https://gerrit.libreoffice.org/50375
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/sw/source/filter/xml/xmltbli.cxx b/sw/source/filter/xml/xmltbli.cxx
index 27ef0cb043e7..c82d15e75919 100644
--- a/sw/source/filter/xml/xmltbli.cxx
+++ b/sw/source/filter/xml/xmltbli.cxx
@@ -24,6 +24,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -2415,7 +2416,10 @@ void SwXMLTableContext::MakeTable_( SwTableBox *pBox )
 {
 if (nMinAbsColWidth == 0)
 throw o3tl::divide_by_zero();
-sal_Int32 nRelCol = ( colIter->width * nMinRelColWidth) / 
nMinAbsColWidth;
+sal_Int32 nVal;
+if (o3tl::checked_multiply(colIter->width, 
nMinRelColWidth, nVal))
+throw std::overflow_error("overflow in multiply");
+sal_Int32 nRelCol = nVal / nMinAbsColWidth;
 colIter->width = nRelCol;
 colIter->isRelative = true;
 nRelWidth += nRelCol;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 116046] disappear spaces in writer documents when open it in MS word

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116046

--- Comment #1 from Stanislav  ---
Created attachment 140166
  --> https://bugs.documentfoundation.org/attachment.cgi?id=140166=edit
spaces in program code in tables

-- 
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 116046] New: disappear spaces in writer documents when open it in MS word

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116046

Bug ID: 116046
   Summary: disappear spaces in writer documents when open it in
MS word
   Product: LibreOffice
   Version: 5.3.5.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sts...@bk.ru

Description:
I make writer document in .docx format. I use tables and some strings of python
code in it. When I open this document in MS word 2007 all spaces in table was  
disappear.

Steps to Reproduce:
1. make writer document
2. Add table and add some strings of python code in table
3. Save it in .docx format
4. open in MS word 2007

Actual Results:  
no spaces in program code in tables

Expected Results:
spaces in program code in tables


Reproducible: Always


User Profile Reset: Yes



Additional Info:


User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101
Firefox/52.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 115511] Description field in customize dialog cannot get focus

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115511

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #2 from V Stuart Foote  ---
Unable to navigate with keyboard only into this .UI element of the GUI.

(In reply to Buovjaga from comment #1)
> For some reason, the Description field is always empty and inactive for me
> in a master build. I should file a report for that.
> 

The "off-line" built-in help must be built and installed for this field to
populate.

But on longer descriptions, e.g. "Anchor as Character", the widget does get a
scroll bar control, but as Regina notes use of the mouse is required. With out
gaining focus screen readers will not expose the 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 115866] ErrCode() Warning strings not translated and "Warning" word missing

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115866

--- Comment #12 from Laurent BP  ---
(In reply to Caolán McNamara from comment #8)
> https://gerrit.libreoffice.org/#/c/50329/ should address the missing
> 'Warning'/'Error' piece

Yes, I confirm it fixes the missing first word missing.

-- 
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 116045] LibreOffice UI crash with black color and strange menu

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116045

lanternd1...@gmail.com changed:

   What|Removed |Added

 CC||lanternd1...@gmail.com

--- Comment #1 from lanternd1...@gmail.com ---
Created attachment 140165
  --> https://bugs.documentfoundation.org/attachment.cgi?id=140165=edit
crashed UI with black background

-- 
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 116045] New: LibreOffice UI crash with black color and strange menu

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116045

Bug ID: 116045
   Summary: LibreOffice UI crash with black color and strange menu
   Product: LibreOffice
   Version: 5.4.5.1 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lanternd1...@gmail.com

Description:
All components of LibreOffice has this strange UI. The menu is full of text
without a button for each tab. The opened window is strange. Don't know how to
reproduce. Just happened to see it today. Neither reboot the system nor
reinstall LibreOffice solve this issue.

Steps to Reproduce:
No idea how to reproduce. I opened it and it was like that. 

Actual Results:  
Crashed UI, but the software functions well.

Expected Results:
Normal UI.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Restart in Safe Mode didn't resolve.

It would be better if I could upload a picture of it.


User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like
Gecko) Chrome/64.0.3282.186 Safari/537.36

-- 
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 101700] Character style with white font and colored highlight displays with no background in sidebar

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101700

Buovjaga  changed:

   What|Removed |Added

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

-- 
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 115507] Style names become invisible if the default style used white color

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115507

Buovjaga  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||todven...@suomi24.fi
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||1700

--- Comment #3 from Buovjaga  ---
Well, let's check with the design team for good measure.
I do confirm the problem.

-- 
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 115507] Style names become invisible if the default style used white color

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115507

Buovjaga  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||todven...@suomi24.fi
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||1700

--- Comment #3 from Buovjaga  ---
Well, let's check with the design team for good measure.
I do confirm the problem.

-- 
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 79546] OSX - no video playback in slideshow fullscreen display mode on OSX

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79546

--- Comment #58 from Tor Lillqvist  ---
Isn't the mention of "fullscreen" in the bug title a bit redundant? That is
when videos inserted into slideshows play, when viewing the slide show, and
that is always full-screen, isn't 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-bugs] [Bug 79546] OSX - no video playback in slideshow fullscreen display mode on OSX

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79546

--- Comment #57 from Tor Lillqvist  ---
Alex, re: comment #50, in a curent Keynote (7.3.1), I can't insert a .webm
file. At least not the one attached to 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-ux-advise] [Bug 85850] [UI] [Side Bar] make shortcut available to open/ close the side bar

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85850

Harald Koester  changed:

   What|Removed |Added

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

--- Comment #4 from Harald Koester  ---
(In reply to Heiko Tietze from comment #2)
> The question is rather if we want this function to be that prominent. Many
> features are primarily accessed via sidebar now, and hiding it makes not
> much sense anymore. So my take on this is to either just collapse the
> sidebar or rather to not have this shortcut.

I'm not sure if features will be accessed primarily accessed via sidebar in
future. I personally often display two apps side by side on my screen e.g.
browser and Writer. In this case the sidebar is disturbing because I can't
display the full width of the document. Therefor I typically use the sidebar
only for styles and afterwards I close the sidebar again. Hence I think it is
worth to have a default shortcut in order to open and close the sidebar fast
and simple with the keyboard. I personally assigned the F4 key to this function
but other F keys are also suitable.

-- 
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 85850] [UI] [Side Bar] make shortcut available to open/ close the side bar

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85850

Harald Koester  changed:

   What|Removed |Added

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

--- Comment #4 from Harald Koester  ---
(In reply to Heiko Tietze from comment #2)
> The question is rather if we want this function to be that prominent. Many
> features are primarily accessed via sidebar now, and hiding it makes not
> much sense anymore. So my take on this is to either just collapse the
> sidebar or rather to not have this shortcut.

I'm not sure if features will be accessed primarily accessed via sidebar in
future. I personally often display two apps side by side on my screen e.g.
browser and Writer. In this case the sidebar is disturbing because I can't
display the full width of the document. Therefor I typically use the sidebar
only for styles and afterwards I close the sidebar again. Hence I think it is
worth to have a default shortcut in order to open and close the sidebar fast
and simple with the keyboard. I personally assigned the F4 key to this function
but other F keys are also suitable.

-- 
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 116029] [UI] Help button should be on the left of dialog (iii)

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116029

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsUXEval |easyHack, skillDesign
 Status|UNCONFIRMED |ASSIGNED
 CC||tietze.he...@gmail.com
   Assignee|libreoffice-b...@lists.free |tietze.he...@gmail.com
   |desktop.org |
 Ever confirmed|0   |1

--- Comment #1 from Heiko Tietze  ---
Absolutely, and the paging control has no label (with buddy relation for a11y).
So it has to be "[Help] <---Space---> Field 1 of 2: [Back][Next]
[Edit][Ok][Cancel]" (with Ok, Cancel sequence depending on the OS). Paging
controls should be centered vertically. 

Btw, no idea how to show Edit.

-- 
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: canvas/source include/vcl vcl/qa vcl/source

2018-02-26 Thread Chris Sherlock
 canvas/source/vcl/canvashelper.cxx |2 
 canvas/source/vcl/spritehelper.cxx |2 
 include/vcl/bitmap.hxx |3 -
 vcl/qa/cppunit/BitmapTest.cxx  |2 
 vcl/source/gdi/bitmap.cxx  |   75 -
 vcl/source/gdi/bitmap3.cxx |   82 +
 vcl/source/gdi/bitmapex.cxx|6 +-
 vcl/source/outdev/bitmap.cxx   |2 
 8 files changed, 84 insertions(+), 90 deletions(-)

New commits:
commit 7ab5e5c8902de8cc7429d863b4ab6e40ad4b3bbc
Author: Chris Sherlock 
Date:   Sun Feb 25 22:16:39 2018 +1100

vcl: Bitmap::MakeMono() -> Bitmap::MakeMonochrome()

Change-Id: I6b5259d56e8fe5855f8a1125bb87a3dea8e5f425
Reviewed-on: https://gerrit.libreoffice.org/50301
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/canvas/source/vcl/canvashelper.cxx 
b/canvas/source/vcl/canvashelper.cxx
index 761a2fdc22b1..1576419716e6 100644
--- a/canvas/source/vcl/canvashelper.cxx
+++ b/canvas/source/vcl/canvashelper.cxx
@@ -742,7 +742,7 @@ namespace vclcanvas
 if( aBmpEx.IsAlpha() )
 {
 Bitmap aMask( aBmpEx.GetAlpha().GetBitmap() );
-aMask.MakeMono( 253 );
+aMask.MakeMonochrome(253);
 aBmpEx = BitmapEx( aBmpEx.GetBitmap(), aMask );
 }
 else if( aBmpEx.IsTransparent() )
diff --git a/canvas/source/vcl/spritehelper.cxx 
b/canvas/source/vcl/spritehelper.cxx
index 1b7d3c3cde72..366d0a5b9829 100644
--- a/canvas/source/vcl/spritehelper.cxx
+++ b/canvas/source/vcl/spritehelper.cxx
@@ -153,7 +153,7 @@ namespace vclcanvas
 {
 OSL_FAIL("CanvasCustomSprite::redraw(): Mask bitmap is 
not "
"monochrome (performance!)");
-aMask.MakeMono(255);
+aMask.MakeMonochrome(255);
 }
 #endif
 
diff --git a/include/vcl/bitmap.hxx b/include/vcl/bitmap.hxx
index d4f290e35793..cc105600094d 100644
--- a/include/vcl/bitmap.hxx
+++ b/include/vcl/bitmap.hxx
@@ -263,7 +263,7 @@ public:
 
 public:
 
-voidMakeMono( sal_uInt8 cThreshold );
+boolMakeMonochrome(sal_uInt8 cThreshold);
 
 
 /** Convert bitmap format
@@ -669,7 +669,6 @@ public:
 int const * pPixels,
 const int* pCount );
 
-SAL_DLLPRIVATE bool ImplMakeMono( sal_uInt8 cThreshold );
 SAL_DLLPRIVATE bool ImplMakeGreyscales( sal_uInt16 nGreyscales );
 SAL_DLLPRIVATE bool ImplConvertUp( sal_uInt16 nBitCount, Color const * 
pExtColor = nullptr );
 SAL_DLLPRIVATE bool ImplConvertDown( sal_uInt16 nBitCount, Color const 
* pExtColor = nullptr );
diff --git a/vcl/qa/cppunit/BitmapTest.cxx b/vcl/qa/cppunit/BitmapTest.cxx
index 357df0905f5c..cfb527e0d2e3 100644
--- a/vcl/qa/cppunit/BitmapTest.cxx
+++ b/vcl/qa/cppunit/BitmapTest.cxx
@@ -197,7 +197,7 @@ void BitmapTest::testMonochrome()
 aBmpAccess.SetPixel(3, 2, BitmapColor(Color(COL_YELLOW)));
 aBmpAccess.SetPixel(3, 3, BitmapColor(Color(COL_WHITE)));
 
-aBmp.MakeMono(63);
+aBmp.MakeMonochrome(63);
 BitmapReadAccess aBmpReadAccess(aBmp);
 
 CPPUNIT_ASSERT_EQUAL_MESSAGE("Black pixel wrong monochrome value",
diff --git a/vcl/source/gdi/bitmap.cxx b/vcl/source/gdi/bitmap.cxx
index 27088cc5465c..c9619a2fb40b 100644
--- a/vcl/source/gdi/bitmap.cxx
+++ b/vcl/source/gdi/bitmap.cxx
@@ -1913,9 +1913,80 @@ bool Bitmap::Blend( const AlphaMask& rAlpha, const 
Color& rBackgroundColor )
 return bRet;
 }
 
-void Bitmap::MakeMono( sal_uInt8 cThreshold )
+bool Bitmap::MakeMonochrome(sal_uInt8 cThreshold)
 {
-ImplMakeMono( cThreshold );
+ScopedReadAccess pReadAcc(*this);
+bool bRet = false;
+
+if( pReadAcc )
+{
+Bitmap aNewBmp( GetSizePixel(), 1 );
+ScopedWriteAccess pWriteAcc(aNewBmp);
+
+if( pWriteAcc )
+{
+const BitmapColor aBlack( pWriteAcc->GetBestMatchingColor( Color( 
COL_BLACK ) ) );
+const BitmapColor aWhite( pWriteAcc->GetBestMatchingColor( Color( 
COL_WHITE ) ) );
+const long nWidth = pWriteAcc->Width();
+const long nHeight = pWriteAcc->Height();
+
+if( pReadAcc->HasPalette() )
+{
+for( long nY = 0; nY < nHeight; nY++ )
+{
+Scanline pScanline = pWriteAcc->GetScanline(nY);
+Scanline pScanlineRead = pReadAcc->GetScanline(nY);
+for( long nX = 0; nX < nWidth; nX++ )
+{
+const sal_uInt8 cIndex = pReadAcc->GetIndexFromData( 
pScanlineRead, nX );
+if( pReadAcc->GetPaletteColor( cIndex ).GetLuminance() 
>=

[Libreoffice-ux-advise] [Bug 115513] Chart: Checkbox for zero values to be handled like missing values in plot options

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115513

Buovjaga  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 115513] Chart: Checkbox for zero values to be handled like missing values in plot options

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115513

Buovjaga  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.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: sfx2/source uui/inc uui/source

2018-02-26 Thread Mike Kaganski
 sfx2/source/doc/docfile.cxx   |   51 ++
 uui/inc/strings.hrc   |1 
 uui/source/iahndl-locking.cxx |5 ++--
 uui/source/trylater.cxx   |   29 ++-
 uui/source/trylater.hxx   |2 -
 5 files changed, 64 insertions(+), 24 deletions(-)

New commits:
commit a30f8c4daaab5bfc850c18b2b0bce3fdb2281a1f
Author: Mike Kaganski 
Date:   Wed Feb 21 00:45:04 2018 +0300

tdf#115742: allow ignoring stale lockfile on save

This change reuses TryLaterQueryBox, but only uses the new option to
ignore the lock and save. Other options ("Try Again" and "Save As")
are not used, because this functionality is not implemented currently
(TODO/LATER).

Change-Id: Idf825be23cf97d2b338c0cf5d532f8460843bf48
Reviewed-on: https://gerrit.libreoffice.org/50371
Tested-by: Jenkins 
Reviewed-by: Mike Kaganski 

diff --git a/sfx2/source/doc/docfile.cxx b/sfx2/source/doc/docfile.cxx
index 466372c28bb2..9635f872b210 100644
--- a/sfx2/source/doc/docfile.cxx
+++ b/sfx2/source/doc/docfile.cxx
@@ -29,6 +29,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -65,6 +66,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -840,7 +842,7 @@ SfxMedium::ShowLockResult 
SfxMedium::ShowLockedDocumentDialog( const LockFileEnt
 // show the interaction regarding the document opening
 uno::Reference< task::XInteractionHandler > xHandler = 
GetInteractionHandler();
 
-if ( ::svt::DocumentLockFile::IsInteractionAllowed() && xHandler.is() && ( 
bIsLoading || bOwnLock ) )
+if ( ::svt::DocumentLockFile::IsInteractionAllowed() && xHandler.is() && ( 
bIsLoading || !bHandleSysLocked || bOwnLock ) )
 {
 OUString aDocumentURL = GetURLObject().GetLastName();
 OUString aInfo;
@@ -855,27 +857,32 @@ SfxMedium::ShowLockResult 
SfxMedium::ShowLockedDocumentDialog( const LockFileEnt
 xInteractionRequestImpl = new ::ucbhelper::InteractionRequest( 
uno::makeAny(
 document::OwnLockOnDocumentRequest( OUString(), 
uno::Reference< uno::XInterface >(), aDocumentURL, aInfo, !bIsLoading ) ) );
 }
-else /*logically therefore bIsLoading is set */
+else
 {
+// Use a fourth continuation in case there's no filesystem lock:
+// "Ignore lock file and open/replace the document"
+if (!bHandleSysLocked)
+nContinuations = 4;
+
 if ( !aData[LockFileComponent::OOOUSERNAME].isEmpty() )
 aInfo = aData[LockFileComponent::OOOUSERNAME];
 else
 aInfo = aData[LockFileComponent::SYSUSERNAME];
 
 if ( !aInfo.isEmpty() && 
!aData[LockFileComponent::EDITTIME].isEmpty() )
+aInfo += " ( " + aData[LockFileComponent::EDITTIME] + " )";
+
+if (!bIsLoading) // so, !bHandleSysLocked
 {
-aInfo +=  " ( " ;
-aInfo += aData[LockFileComponent::EDITTIME];
-aInfo += " )";
+xInteractionRequestImpl = new 
::ucbhelper::InteractionRequest(uno::makeAny(
+document::LockedOnSavingRequest(OUString(), 
uno::Reference< uno::XInterface >(), aDocumentURL, aInfo)));
+// Currently, only the last "Retry" continuation (meaning 
ignore the lock and try overwriting) can be returned.
+}
+else /*logically therefore bIsLoading is set */
+{
+xInteractionRequestImpl = new ::ucbhelper::InteractionRequest( 
uno::makeAny(
+document::LockedDocumentRequest( OUString(), 
uno::Reference< uno::XInterface >(), aDocumentURL, aInfo ) ) );
 }
-
-xInteractionRequestImpl = new ::ucbhelper::InteractionRequest( 
uno::makeAny(
-document::LockedDocumentRequest( OUString(), uno::Reference< 
uno::XInterface >(), aDocumentURL, aInfo ) ) );
-
-// Use a fourth continuation in case there's no filesystem lock:
-// "Ignore lock file and open the document"
-if (!bHandleSysLocked)
-nContinuations = 4;
 }
 
 uno::Sequence< uno::Reference< task::XInteractionContinuation > > 
aContinuations(nContinuations);
@@ -885,7 +892,7 @@ SfxMedium::ShowLockResult 
SfxMedium::ShowLockedDocumentDialog( const LockFileEnt
 if (nContinuations > 3)
 {
 // We use InteractionRetry to reflect that user wants to
-// ignore the (stale?) alien lock file and open the document
+// ignore the (stale?) alien lock file and open/overwrite the 
document
 aContinuations[3] = new 
::ucbhelper::InteractionRetry(xInteractionRequestImpl.get());
 }
 xInteractionRequestImpl->setContinuations( aContinuations );
@@ -1216,6 +1223,22 @@ 

[Libreoffice-bugs] [Bug 103238] [META] Customize dialog bugs and enhancements

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103238

Buovjaga  changed:

   What|Removed |Added

 Depends on||116044


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116044
[Bug 116044] The Description field in the customize dialog is always empty and
disabled
-- 
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 116044] New: The Description field in the customize dialog is always empty and disabled

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116044

Bug ID: 116044
   Summary: The Description field in the customize dialog is
always empty and disabled
   Product: LibreOffice
   Version: 6.1.0.0.alpha0+ Master
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Keywords: bibisectRequest, regression
  Severity: minor
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: todven...@suomi24.fi
Blocks: 103238

See the commands in Menus, Toolbars or Context menus. In 6.0, the Description
field used to have stuff, but now it's always empty.

I tried in safe mode to be sure.

Arch Linux 64-bit
Version: 6.1.0.0.alpha0+
Build ID: 40c33132cfa6582dfccf17e787f10dd4dbd0819d
CPU threads: 8; OS: Linux 4.15; UI render: default; VCL: kde4; 
Locale: fi-FI (fi_FI.UTF-8); Calc: group
Built on February 24th 2018

Arch Linux 64-bit
Version: 6.0.1.1
Build ID: 6.0.1-1
CPU threads: 8; OS: Linux 4.15; UI render: default; VCL: kde4; 
Locale: fi-FI (fi_FI.UTF-8); Calc: group


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103238
[Bug 103238] [META] Customize dialog bugs and enhancements
-- 
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 116043] New: Searching in the customize dialog makes the icons go away

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116043

Bug ID: 116043
   Summary: Searching in the customize dialog makes the icons go
away
   Product: LibreOffice
   Version: 6.1.0.0.alpha0+ Master
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: todven...@suomi24.fi
CC: rayk...@gmail.com
Blocks: 103238

After you type something in the search box of Menus, Toolbars or Context menus,
the icons next to the commands disappear.

Arch Linux 64-bit
Version: 6.1.0.0.alpha0+
Build ID: 40c33132cfa6582dfccf17e787f10dd4dbd0819d
CPU threads: 8; OS: Linux 4.15; UI render: default; VCL: kde4; 
Locale: fi-FI (fi_FI.UTF-8); Calc: group
Built on February 24th 2018


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103238
[Bug 103238] [META] Customize dialog bugs and enhancements
-- 
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 103238] [META] Customize dialog bugs and enhancements

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103238

Buovjaga  changed:

   What|Removed |Added

 Depends on||116043


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116043
[Bug 116043] Searching in the customize dialog makes the icons go away
-- 
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 115893] LO Base Report Builder Does Not Display CLOB (memo field) Data

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115893

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 CC||rob...@familiegrosskopf.de

--- Comment #8 from rob...@familiegrosskopf.de ---
Have tested with internal HSQLDB and LONGVARCHAR (Memo-fields) - works here:
Version: 6.0.2.1
Build-ID: f7f06a8f319e4b62f9bc5095aa112a65d2f3ac89
CPU-Threads: 4; BS: Linux 4.4; UI-Render: Standard; VCL: kde4; 
Gebietsschema: de-DE (de_DE.UTF-8); Calc: group

Don't know why using a field with many characters in a report, because there is
no possibility to fill more than one page with the content of a field. So you
will get a red arrow, which shows the whole content couldn't be shown.

-- 
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 116039] Resizing Report navigator dialog repaints new area in black

2018-02-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116039

--- Comment #9 from Howard Johnson  ---
(In reply to robert from comment #7)
> I have seen such a thing not with LO-Base, but sometimes with php-forms,
> while opening listboxes in Firefox. Same system as mine, but with a newer
> kernel and a slower CPU.

Not seeing this in Firefox or elsewhere.  

Closed all other programs while testing this and it still fails.

-- Testing on "Intel Core2 Duo P8800 @2.66Ghz x 2" w/ fast SSD and 7.8 GiB RAM.
 Dual displays (2nd one on hdmi.)  [Unhooked 2nd display, but still fails.]


Deduction:  If the other dialogs on the report editor screen work correctly
(and for that matter all others in LO that I've used), and only this one single
dialog fails, then I'm guessing it has something wrong with it, and not the
entire system.

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


  1   2   3   4   5   >