[Libreoffice-bugs] [Bug 83532] EDITING: Right (after) indent of paragraph does not work in lists

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83532

--- Comment #16 from Fabien Cara  ---
I confirm that the bug is still present on version 6.2.4.2

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

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - oox/source sd/qa

2019-06-14 Thread Grzegorz Araminowicz (via logerrit)
 oox/source/drawingml/diagram/diagramlayoutatoms.cxx |   22 +++--
 sd/qa/unit/data/pptx/smartart-bullet-list.pptx  |binary
 sd/qa/unit/import-tests-smartart.cxx|   32 +++-
 3 files changed, 43 insertions(+), 11 deletions(-)

New commits:
commit c3e0d46062c6b37dfa74b6b388767c61912145f4
Author: Grzegorz Araminowicz 
AuthorDate: Tue Jun 4 13:51:40 2019 +0200
Commit: Andras Timar 
CommitDate: Sat Jun 15 07:36:33 2019 +0200

SmartArt: bullet list improvements

by default start bullet list at second level
use stBulletLvl parameter to change this behaviour

Change-Id: I5084e7bf1902fdca83bea6d57a8c1f37dd2e65be
Reviewed-on: https://gerrit.libreoffice.org/73440
Tested-by: Jenkins
Reviewed-by: Miklos Vajna 
Reviewed-on: https://gerrit.libreoffice.org/74086
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 

diff --git a/oox/source/drawingml/diagram/diagramlayoutatoms.cxx 
b/oox/source/drawingml/diagram/diagramlayoutatoms.cxx
index d7d6fda1e1e0..a4b80548e3dd 100644
--- a/oox/source/drawingml/diagram/diagramlayoutatoms.cxx
+++ b/oox/source/drawingml/diagram/diagramlayoutatoms.cxx
@@ -1196,27 +1196,30 @@ void AlgAtom::layoutShape( const ShapePtr& rShape,
 nBaseLevel = aParagraph->getProperties().getLevel();
 }
 
+// Start bullets at:
+// 1 - top level
+// 2 - with children (default)
+int nStartBulletsAtLevel = 2;
 ParamMap::const_iterator aBulletLvl = maMap.find(XML_stBulletLvl);
-int nStartBulletsAtLevel = 0;
 if (aBulletLvl != maMap.end())
-{
-nBaseLevel -= aBulletLvl->second;
 nStartBulletsAtLevel = aBulletLvl->second;
-}
+nStartBulletsAtLevel--;
 
+bool isBulletList = false;
 for (auto & aParagraph : pTextBody->getParagraphs())
 {
-sal_Int32 nLevel = aParagraph->getProperties().getLevel();
-aParagraph->getProperties().setLevel(nLevel - nBaseLevel);
-if (nStartBulletsAtLevel > 0 && nLevel >= nStartBulletsAtLevel)
+sal_Int32 nLevel = aParagraph->getProperties().getLevel() - 
nBaseLevel;
+aParagraph->getProperties().setLevel(nLevel);
+if (nLevel >= nStartBulletsAtLevel)
 {
 // It is not possible to change the bullet style for text.
-sal_Int32 nLeftMargin = 285750 * (nLevel - 
nStartBulletsAtLevel) / EMU_PER_HMM;
+sal_Int32 nLeftMargin = 285750 * (nLevel - 
nStartBulletsAtLevel + 1) / EMU_PER_HMM;
 aParagraph->getProperties().getParaLeftMargin() = 
nLeftMargin;
 aParagraph->getProperties().getFirstLineIndentation() = 
-285750 / EMU_PER_HMM;
 OUString aBulletChar = OUString::fromUtf8(u8"•");
 
aParagraph->getProperties().getBulletList().setBulletChar(aBulletChar);
 
aParagraph->getProperties().getBulletList().setSuffixNone();
+isBulletList = true;
 }
 }
 
@@ -1229,8 +1232,7 @@ void AlgAtom::layoutShape( const ShapePtr& rShape,
 for (auto & aParagraph : pTextBody->getParagraphs())
 aParagraph->getProperties().setParaAdjust(aAlignment);
 }
-else if (std::all_of(pTextBody->getParagraphs().begin(), 
pTextBody->getParagraphs().end(),
-[](const std::shared_ptr& aParagraph) { return 
aParagraph->getProperties().getLevel() == 0; }))
+else if (!isBulletList)
 {
 // if not list use default alignment - centered
 for (auto & aParagraph : pTextBody->getParagraphs())
diff --git a/sd/qa/unit/data/pptx/smartart-bullet-list.pptx 
b/sd/qa/unit/data/pptx/smartart-bullet-list.pptx
new file mode 100644
index ..d95bdb769140
Binary files /dev/null and b/sd/qa/unit/data/pptx/smartart-bullet-list.pptx 
differ
diff --git a/sd/qa/unit/import-tests-smartart.cxx 
b/sd/qa/unit/import-tests-smartart.cxx
index 5a0cd7679ea1..930006fd3931 100644
--- a/sd/qa/unit/import-tests-smartart.cxx
+++ b/sd/qa/unit/import-tests-smartart.cxx
@@ -75,6 +75,7 @@ public:
 void testBackgroundDrawingmlFallback();
 void testFontSize();
 void testVerticalBlockList();
+void testBulletList();
 
 CPPUNIT_TEST_SUITE(SdImportTestSmartArt);
 
@@ -112,6 +113,7 @@ public:
 CPPUNIT_TEST(testBackgroundDrawingmlFallback);
 CPPUNIT_TEST(testFontSize);
 CPPUNIT_TEST(testVerticalBlockList);
+CPPUNIT_TEST(testBulletList);
 
 CPPUNIT_TEST_SUITE_END();
 };
@@ -534,7 +536,7 @@ void SdImportTestSmartArt::testAccentProcess()
 
 uno::Reference 
xRules(xPara->getPropertyValue("NumberingRules"),
uno::UNO_QUERY);
-

[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - sd/source

2019-06-14 Thread Gülşah Köse (via logerrit)
 sd/source/ui/dlg/BulletAndPositionDlg.cxx |   13 +
 1 file changed, 1 insertion(+), 12 deletions(-)

New commits:
commit 2ab93756963727b8dde43b405e2daee3e1bf9deb
Author: Gülşah Köse 
AuthorDate: Mon Jun 10 10:23:40 2019 +0300
Commit: Andras Timar 
CommitDate: Sat Jun 15 07:33:02 2019 +0200

tdf#125774 Remove double call SvTreeListBox::Select for non-gtk backends

Change-Id: Ic8238d91f1cddb8fe627fafb0587751de308f6ac
Reviewed-on: https://gerrit.libreoffice.org/73747
Tested-by: Jenkins
Reviewed-by: Gülşah Köse 
(cherry picked from commit 8c0e209ddb40f4fd5419dd2190a40d1670c16a3d)
Reviewed-on: https://gerrit.libreoffice.org/74084
Reviewed-by: Andras Timar 

diff --git a/sd/source/ui/dlg/BulletAndPositionDlg.cxx 
b/sd/source/ui/dlg/BulletAndPositionDlg.cxx
index a9fc0adcd9b8..2905170627a4 100644
--- a/sd/source/ui/dlg/BulletAndPositionDlg.cxx
+++ b/sd/source/ui/dlg/BulletAndPositionDlg.cxx
@@ -747,19 +747,8 @@ IMPL_LINK(SvxBulletAndPositionDlg, LevelHdl_Impl, 
weld::TreeView&, rBox, void)
 rBox.unselect(pActNum->GetLevelCount());
 }
 else
-{
 nActNumLvl = nSaveNumLvl;
-sal_uInt16 nMask = 1;
-for (sal_uInt16 i = 0; i < pActNum->GetLevelCount(); i++)
-{
-if (nActNumLvl & nMask)
-{
-rBox.select(i);
-break;
-}
-nMask <<= 1;
-}
-}
+
 InitControls();
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 125774] Double selecting of level in list in new dialog B in Impress

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125774

--- Comment #4 from Commit Notification 
 ---
Gülşah Köse committed a patch related to this issue.
It has been pushed to "libreoffice-6-3":

https://git.libreoffice.org/core/+/2ab93756963727b8dde43b405e2daee3e1bf9deb%5E%21

tdf#125774 Remove double call SvTreeListBox::Select for non-gtk backends

It will be available in 6.3.0.1.

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

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

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

[Libreoffice-bugs] [Bug 125774] Double selecting of level in list in new dialog B in Impress

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125774

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.4.0|target:6.4.0 target:6.3.0.1

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

[Libreoffice-commits] core.git: include/tools

2019-06-14 Thread Noel Grandin (via logerrit)
 include/tools/diagnose_ex.h |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c872abf8e7066001be9805883a6f2c6528287aec
Author: Noel Grandin 
AuthorDate: Fri Jun 14 14:23:19 2019 +0200
Commit: Julien Nabet 
CommitDate: Sat Jun 15 07:22:31 2019 +0200

fix copy/paste mistake in TOOLS_INFO_EXCEPTION

Change-Id: I209efe41639eeff215b876cb1da5c9a8252f4b55
Reviewed-on: https://gerrit.libreoffice.org/74042
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/include/tools/diagnose_ex.h b/include/tools/diagnose_ex.h
index d37b7e99b368..a70a4e0ab60f 100644
--- a/include/tools/diagnose_ex.h
+++ b/include/tools/diagnose_ex.h
@@ -160,7 +160,7 @@ TOOLS_DLLPUBLIC OString exceptionToString(css::uno::Any 
const & caughtEx);
 #define TOOLS_INFO_EXCEPTION(area, stream) \
 do { \
 css::uno::Any tools_warn_exception( cppu::getCaughtException() ); \
-SAL_WARN(area, stream << " " << 
exceptionToString(tools_warn_exception)); \
+SAL_INFO(area, stream << " " << 
exceptionToString(tools_warn_exception)); \
 } while (false)
 
 #endif
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-06-14 Thread Andrea Gelmini (via logerrit)
 vcl/qt5/Qt5Clipboard.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5a00e1e518d2e65fe7ac066a1dd2e42972ccfd82
Author: Andrea Gelmini 
AuthorDate: Fri Jun 14 06:32:16 2019 +
Commit: Julien Nabet 
CommitDate: Sat Jun 15 07:21:17 2019 +0200

Fix typo

Change-Id: I16f502fd3365f8db330c4228e44924c03ef227c1
Reviewed-on: https://gerrit.libreoffice.org/74077
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/vcl/qt5/Qt5Clipboard.cxx b/vcl/qt5/Qt5Clipboard.cxx
index 8db5dd2ce97c..4b948ae3be17 100644
--- a/vcl/qt5/Qt5Clipboard.cxx
+++ b/vcl/qt5/Qt5Clipboard.cxx
@@ -31,7 +31,7 @@ Qt5Clipboard::Qt5Clipboard(const OUString& aModeString, const 
QClipboard::Mode a
 , m_aClipboardMode(aMode)
 {
 assert(isSupported(m_aClipboardMode));
-// DirectConnection guarantess the changed slot runs in the same thread as 
the QClipboard
+// DirectConnection guarantees the changed slot runs in the same thread as 
the QClipboard
 connect(QApplication::clipboard(), ::changed, this, 
::handleChanged,
 Qt::DirectConnection);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-06-14 Thread Andrea Gelmini (via logerrit)
 vcl/qt5/Qt5Instance.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d733d1da69bc0986172d84dc4afc61a642450391
Author: Andrea Gelmini 
AuthorDate: Fri Jun 14 06:30:52 2019 +
Commit: Julien Nabet 
CommitDate: Sat Jun 15 07:19:34 2019 +0200

Fix typo

Change-Id: I55458141b212c0c2ed4b67d773a5cee6ff10cc18
Reviewed-on: https://gerrit.libreoffice.org/74078
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/vcl/qt5/Qt5Instance.cxx b/vcl/qt5/Qt5Instance.cxx
index ae5de33b3cd5..a81daddfb246 100644
--- a/vcl/qt5/Qt5Instance.cxx
+++ b/vcl/qt5/Qt5Instance.cxx
@@ -438,7 +438,7 @@ Qt5Instance::CreateClipboard(const 
css::uno::Sequence& arguments)
 }
 
 // This could also use RunInMain, but SolarMutexGuard is enough
-// since at this point we're not accessing the clipbord, just get the
+// since at this point we're not accessing the clipboard, just get the
 // accessor to the clipboard.
 SolarMutexGuard aGuard;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: 2 commits - dtrans/source vcl/qt5

2019-06-14 Thread Andrea Gelmini (via logerrit)
 dtrans/source/win32/clipb/WinClipbImpl.cxx |2 +-
 vcl/qt5/Qt5Instance.cxx|2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 3cb3b9c415f695db1740c57c99945ea73902ba36
Author: Andrea Gelmini 
AuthorDate: Fri Jun 14 06:34:09 2019 +
Commit: Julien Nabet 
CommitDate: Sat Jun 15 07:20:38 2019 +0200

Fix typo

Change-Id: Ic0b38891daf699f232a7dbc1378e30c53289d067
Reviewed-on: https://gerrit.libreoffice.org/74076
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/vcl/qt5/Qt5Instance.cxx b/vcl/qt5/Qt5Instance.cxx
index a81daddfb246..df6b90363524 100644
--- a/vcl/qt5/Qt5Instance.cxx
+++ b/vcl/qt5/Qt5Instance.cxx
@@ -514,7 +514,7 @@ void* Qt5Instance::CreateGStreamerSink(const 
SystemChildWindow* pWindow)
 SAL_WARN("vcl.qt5", "Couldn't initialize qwidget5videosink."
 " Video playback might not work as expected."
 " Please install Qt5 packages for QtGStreamer.");
-// with no videosink explicitly set, GStreamer will open it's own 
(misplaced) window(s) to display video
+// with no videosink explicitly set, GStreamer will open its own 
(misplaced) window(s) to display video
 }
 
 return pVideosink;
commit 3df16d2ed4ef9ed4acdc1e062a7c60c8cfb121bb
Author: Andrea Gelmini 
AuthorDate: Fri Jun 14 06:30:31 2019 +
Commit: Julien Nabet 
CommitDate: Sat Jun 15 07:20:01 2019 +0200

Fix typo

Change-Id: I0ce4ed9eec22de1f96a42b4b907a753478ca9805
Reviewed-on: https://gerrit.libreoffice.org/74079
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/dtrans/source/win32/clipb/WinClipbImpl.cxx 
b/dtrans/source/win32/clipb/WinClipbImpl.cxx
index 7ba04d13c4d8..003a266f84bc 100644
--- a/dtrans/source/win32/clipb/WinClipbImpl.cxx
+++ b/dtrans/source/win32/clipb/WinClipbImpl.cxx
@@ -147,7 +147,7 @@ void CWinClipbImpl::flushClipboard( )
 // FlushClipboard had to be synchron in order to prevent shutdown until all
 // clipboard-formats are rendered.
 // The request is needed to prevent flushing if we are not clipboard owner 
(it is
-// not known what happens if we flush but aren't clipoard owner).
+// not known what happens if we flush but aren't clipboard owner).
 // It may be possible to move the request to the clipboard STA thread by 
saving the
 // DataObject and call OleIsCurrentClipboard before flushing.
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Re: Request for review: Convert Fontwork to TextWarp on export

2019-06-14 Thread Kaganski Mike
On 15.06.2019 10:04, Regina Henschel wrote:
> My patch would implement the export from "Fontwork" to "TextWarp" 
> without character fill and outline. My question is, whether you agree, 
> that such step is useful? Even if character fill and outline will not be 
> implemented soon?

I suppose that this is a great improvement. Having this landed, it would 
be easier for others to develop further steps based on this.

-- 
Best regards,
Mike Kaganski
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice

[Libreoffice-bugs] [Bug 124642] remove formular toolbar from writer -> view -> toolbars

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124642

Heiko Tietze  changed:

   What|Removed |Added

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

-- 
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 85811] [META] Main menu bar bugs and enhancements

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85811
Bug 85811 depends on bug 124642, which changed state.

Bug 124642 Summary: remove formular toolbar from writer -> view -> toolbars
https://bugs.documentfoundation.org/show_bug.cgi?id=124642

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 108660] [META] Formula bar (input line) bugs and enhancements

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108660
Bug 108660 depends on bug 124642, which changed state.

Bug 124642 Summary: remove formular toolbar from writer -> view -> toolbars
https://bugs.documentfoundation.org/show_bug.cgi?id=124642

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 103239] [META] Toolbars bugs and enhancements

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103239
Bug 103239 depends on bug 88287, which changed state.

Bug 88287 Summary: UI: Rename "Lines" toolbar and removing "Arrows" toolbar 
from View > Toolbars
https://bugs.documentfoundation.org/show_bug.cgi?id=88287

   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-bugs] [Bug 124956] [META] Icon theme language support

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124956

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on|89884   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=89884
[Bug 89884] Icons for bold, italics and underline should not be tied to the
English UI keyboard shortcuts (Elementary)
-- 
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 117497] [META] Colibre icons

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117497

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||89884


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=89884
[Bug 89884] Icons for bold, italics and underline should not be tied to the
English UI keyboard shortcuts (Elementary)
-- 
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 120946] [META] Karasa Jaga icons

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120946

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||89884


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=89884
[Bug 89884] Icons for bold, italics and underline should not be tied to the
English UI keyboard shortcuts (Elementary)
-- 
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 120949] [META] Elementary icons

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120949

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||89884


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=89884
[Bug 89884] Icons for bold, italics and underline should not be tied to the
English UI keyboard shortcuts (Elementary)
-- 
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 89884] Icons for bold, italics and underline should not be tied to the English UI keyboard shortcuts (Elementary)

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89884

Rizal Muttaqin  changed:

   What|Removed |Added

 Blocks|124956  |107139, 120946, 120949,
   ||117497, 75256


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=75256
[Bug 75256] [META] Sifr icons
https://bugs.documentfoundation.org/show_bug.cgi?id=107139
[Bug 107139] [META] Breeze icons
https://bugs.documentfoundation.org/show_bug.cgi?id=117497
[Bug 117497] [META] Colibre icons
https://bugs.documentfoundation.org/show_bug.cgi?id=120946
[Bug 120946] [META] Karasa Jaga icons
https://bugs.documentfoundation.org/show_bug.cgi?id=120949
[Bug 120949] [META] Elementary icons
https://bugs.documentfoundation.org/show_bug.cgi?id=124956
[Bug 124956] [META] Icon theme language support
-- 
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 107139] [META] Breeze icons

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107139

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||89884


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=89884
[Bug 89884] Icons for bold, italics and underline should not be tied to the
English UI keyboard shortcuts (Elementary)
-- 
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 103459] [META] Sidebar UI and UX bugs and enhancements

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103459
Bug 103459 depends on bug 123818, which changed state.

Bug 123818 Summary: Writer: German Translation in the Styles Sidebar wrong or 
confusing
https://bugs.documentfoundation.org/show_bug.cgi?id=123818

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 123818] Writer: German Translation in the Styles Sidebar wrong or confusing

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123818

Kü  changed:

   What|Removed |Added

 Whiteboard||target: 6.1.6 target: 6.2.4
   ||target: 6.3.0
 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #7 from Kü  ---
This Issue has been fixed 2 months ago.

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

[Libreoffice-bugs] [Bug 125933] New: Text inside a text box does not align, when using the alignment commands.

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125933

Bug ID: 125933
   Summary: Text inside a text box does not align, when using the
alignment commands.
   Product: LibreOffice
   Version: 6.2.4.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: waruna...@gmail.com

Description:
I created a text box in Libreoffice impress and typed some content inside. and
then I tried to use the text alignment in the toolbox, and they did not work. I
tried the short keys ctrl+R and ctrl +e too. 

I did some googling over the issue, what I found was related to openoffice,
which said I have to change the anchoring settings, so I  did  select the text
box > Right click > text... (context menu) and selected the text anchoring to
center. (screenshot attached). Then the text was centered,but again I could not
use the toolbar buttons to align it left, right or justify. 


Also I checked the styles by right clicking > click styles > text tab (graphic
styles:default dialog box), and there I saw full width is enabled in the
anchoring options. 

Another thing is that this is not applicable for layout-generated text boxes,
only applicable for the drawn text boxes using the text box tool.



Steps to Reproduce:
1.create a text box and type something inside.
2.select the textbox, and try to align the text to center, using the toolbar
buttons.
3.right click on textbox > go to text.. > (dialog box) set text anchoring to
center. Then the text will be centered.
4. try step 2 again, to align the text to left or right, using the toolbar
buttons, or short keys ( Ctrl + L or Ctrl + R) and they do not work



Actual Results:
eventhough the toolbar buttons will indicate the text is aligned, it does not
happen. 

Expected Results:
The text should align to the directed sides, when clicking on the toolbar
buttons (center, left or right)


Reproducible: Always


User Profile Reset: Yes



Additional Info:
when we select the text box and click any of the alignment buttons, the text
inside the box should be aligned accordingly. 

When we select the text box > rigt click > click text... > and change the
anchor to full width (click on check box), then all the alignment buttons work
successfully after that. But I checked the general settings for that, which is
found when right click > styles > text tab (graphic styles:default dialog box),
and the full width option is enabled by default.

Another thing is that this is not applicable for layout-generated text boxes,
only applicable for the drawn text boxes using the text box tool.

-- 
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 125919] Rendering's artifact in Autofilter drop-down widget

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125919

--- Comment #6 from Aron Budea  ---
(In reply to Miklos Vajna from comment #4)
> I think it would make sense to bisect this one, it's not obvious to me what
> is the problem here.
> 
> Could you state a version where this was good?
I reverted the commits in bug 125814, bug 125791 and bug 101086, and tested
after each, and the bug only disappeared with the revert of bug 101086's fix.
Reverted commits in order:

https://git.libreoffice.org/core/+/7aaa7212f2f37606b34d44a039398f05c02d5660%5E%21
https://git.libreoffice.org/core/+/47dbbe214641b9a28871d0c82f71b2afb9c5943c%5E%21
https://git.libreoffice.org/core/+/4dadbff74eff5f8ad00df99c659f8a2b914e09a1%5E%21

6.4 Win bibisect builds should be ready in a few days, the result can be
double-checked then.

-- 
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 84575] COLOR PICKER: Custom color dialog not functioning correctly when color is white or black

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84575

--- Comment #5 from MrZoolook  ---
Bug still present on Version: 6.2.4.2 (x64) running on Windows. Oddly enough, I
hadn't noticed it before.

-- 
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 125606] Slide list "names" get in a way so one can't click on the slides

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125606

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 125599] Installing most recent version ended up removing the program and reported an error that installation couldn't complete this is under Windows 7 professional 64k

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125599

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 125710] LibreOffice 6.2.4.2-2 crashes when setting Macro security

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125710

--- Comment #7 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

-- 
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 125710] LibreOffice 6.2.4.2-2 crashes when setting Macro security

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125710

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

-- 
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 125176] Long comment should be collapsed

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125176

QA Administrators  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 115066] Too large font size with Japanese language pack

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115066

--- Comment #11 from QA Administrators  ---
Dear Hideki Yamane,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
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 125809] Regression: LibO 6.2.x|6.3.0beta1 draw with KDE5 vcl: wrong visual feedback when dragging objects in the gallery

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125809

--- Comment #8 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

-- 
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 119183] Japanese fonts have huge space above and selecting such text scrolls the page up.

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119183

--- Comment #4 from QA Administrators  ---
Dear typingcat,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
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 113195] [META] Japanese language-specific CJK issues

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113195
Bug 113195 depends on bug 115066, which changed state.

Bug 115066 Summary: Too large font size with Japanese language pack
https://bugs.documentfoundation.org/show_bug.cgi?id=115066

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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

[Libreoffice-bugs] [Bug 120461] Changing font size on a slide is really slow

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120461

--- Comment #8 from QA Administrators  ---
Dear Arnaud Versini,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
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 120461] Changing font size on a slide is really slow

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120461

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

-- 
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 113195] [META] Japanese language-specific CJK issues

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113195
Bug 113195 depends on bug 119183, which changed state.

Bug 119183 Summary: Japanese fonts have huge space above and selecting such 
text scrolls the page up.
https://bugs.documentfoundation.org/show_bug.cgi?id=119183

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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

[Libreoffice-bugs] [Bug 115066] Too large font size with Japanese language pack

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115066

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

-- 
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 125809] Regression: LibO 6.2.x|6.3.0beta1 draw with KDE5 vcl: wrong visual feedback when dragging objects in the gallery

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125809

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

-- 
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 125176] Long comment should be collapsed

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125176

--- Comment #5 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

-- 
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 119183] Japanese fonts have huge space above and selecting such text scrolls the page up.

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119183

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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

[Libreoffice-bugs] [Bug 113653] Link external data does not work after updating

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113653

--- Comment #9 from QA Administrators  ---
Dear jdt37b,

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 99769] export to SVG drops some text

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99769

--- Comment #9 from QA Administrators  ---
Dear richard-oss,

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 106558] Images in header are not displayed correctly

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106558

--- Comment #7 from QA Administrators  ---
Dear Matus Valo,

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 116792] Crash loadComponentFromURL close

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116792

--- Comment #6 from QA Administrators  ---
Dear matti.jaatinen,

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 113885] Crash in: _ZNSt5dequeImSaImEE16_M_push_back_auxIJRKmEEEvDpOT_

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113885

--- Comment #9 from QA Administrators  ---
Dear opensuse.lietuviu.kalba,

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 113524] Crash linking text modules between writer docs and formatting templates; already had to re-install libreoffice

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113524

--- Comment #10 from QA Administrators  ---
Dear Cornelia,

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 76567] Compatibility problem with an Excel file with scrollbar

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76567

--- Comment #11 from QA Administrators  ---
Dear flo_gain,

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 85651] Writer crashes when a MailMerge instance is created in C#

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85651

--- Comment #8 from QA Administrators  ---
Dear APS,

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 112167] Crash in: _CxxThrowException

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112167

--- Comment #6 from QA Administrators  ---
Dear Michael Meeks,

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 116679] All modules crash in Format > Character, or opening Print dialog (Crash in: RC96E100.DLL driver) with RICOH RPCS Printer selected for use (comment 14 for workaround)

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116679

--- Comment #19 from QA Administrators  ---
Dear Leo,

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 83532] EDITING: Right (after) indent of paragraph does not work in lists

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83532

--- Comment #15 from QA Administrators  ---
Dear Fabien Cara,

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 105134] Google Doc export to openxml Word docx displays incorrect spacing between image and text box object in Writer and inserts blank pages

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105134

--- Comment #13 from QA Administrators  ---
Dear Les,

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 82293] Cancelling input method pre-editing and then undoing breaks the input method and/or crashes

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82293

--- Comment #8 from QA Administrators  ---
Dear Matthew Francis,

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 109299] Empty cells are not copied to external application

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109299

--- Comment #7 from QA Administrators  ---
Dear Larsen,

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 99672] Replace All with format in search and empty replace text does not replace.

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99672

--- Comment #4 from QA Administrators  ---
Dear Piet van Oostrum,

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 91219] FILESAVE: Crash when anchoring a shape with a textbox to a frame that is anchored to that shape

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91219

--- Comment #4 from QA Administrators  ---
Dear Gordo,

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 99619] Base crash when undo redo

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99619

--- Comment #7 from QA Administrators  ---
Dear tadanet3,

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 106722] Crash in: ne_addr_resolve - using system credentials on a webdav share (Kerberos protocol)

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106722

--- Comment #4 from QA Administrators  ---
Dear michel.guillot,

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 125921] All LO apps use the WM_CLASS value of "soffice.bin", so different apps get grouped, and it's impossible to pin more than one to the Plasma Task Manager

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125921

--- Comment #7 from Nate Graham  ---
\o/

Thanks so much for the super quick resolution on this!!!

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

[Libreoffice-bugs] [Bug 102495] [META] KDE VCL backend bugs and enhancements

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102495
Bug 102495 depends on bug 125921, which changed state.

Bug 125921 Summary: All LO apps use the WM_CLASS value of "soffice.bin", so 
different apps get grouped, and it's impossible to pin more than one to the 
Plasma Task Manager
https://bugs.documentfoundation.org/show_bug.cgi?id=125921

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 125921] All LO apps use the WM_CLASS value of "soffice.bin", so different apps get grouped, and it's impossible to pin more than one to the Plasma Task Manager

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125921

Jan-Marek Glogowski  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 125921] All LO apps use the WM_CLASS value of "soffice.bin", so different apps get grouped, and it's impossible to pin more than one to the Plasma Task Manager

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125921

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.4.0

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

[Libreoffice-commits] core.git: configure.ac vcl/qt5

2019-06-14 Thread Jan-Marek Glogowski (via logerrit)
 configure.ac |4 +++-
 vcl/qt5/Qt5Frame.cxx |   26 --
 2 files changed, 27 insertions(+), 3 deletions(-)

New commits:
commit 77a3c443d35c7d966217f02ea9189cb1819c7828
Author: Jan-Marek Glogowski 
AuthorDate: Fri Jun 14 00:46:32 2019 +
Commit: Jan-Marek Glogowski 
CommitDate: Sat Jun 15 02:37:28 2019 +0200

tdf#125921 Qt5 set WM_CLASS for top level windows

Uses the same naming then the gtk3 backend, i.e. "libreoffice"
for the instance name and different class names for the module
windows, like "libreoffice-writer".

These names are referenced in the desktop files a StartupWMClass
and for example used to pin an app to the task bar.

Change-Id: Ic9b8890536f6413ab59d2e0da866e2280ab3181a
Reviewed-on: https://gerrit.libreoffice.org/74014
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski 

diff --git a/configure.ac b/configure.ac
index 42d4b8f5f7ea..dbced920a118 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11145,7 +11145,9 @@ then
 QT5_LIBS="-L$qt5_libdir -lQt5Core -lQt5Gui -lQt5Widgets -lQt5Network"
 
 if test "$USING_X11" = TRUE; then
-QT5_LIBS="$QT5_LIBS -lQt5X11Extras"
+PKG_CHECK_MODULES(QT5_XCB,[xcb],,[AC_MSG_ERROR([XCB not found, which 
is needed for correct app grouping in X11.])])
+QT5_CFLAGS="$QT5_CFLAGS $QT5_XCB_CFLAGS"
+QT5_LIBS="$QT5_LIBS $QT5_XCB_LIBS -lQt5X11Extras"
 QT5_USING_X11=1
 AC_DEFINE(QT5_USING_X11)
 fi
diff --git a/vcl/qt5/Qt5Frame.cxx b/vcl/qt5/Qt5Frame.cxx
index 3951dbced768..49d68a1cd2f9 100644
--- a/vcl/qt5/Qt5Frame.cxx
+++ b/vcl/qt5/Qt5Frame.cxx
@@ -27,6 +27,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -47,6 +48,7 @@
 
 #if QT5_USING_X11
 #include 
+#include 
 #endif
 
 #include 
@@ -1126,9 +1128,29 @@ void Qt5Frame::SetScreenNumber(unsigned int nScreen)
 }
 }
 
-void Qt5Frame::SetApplicationID(const OUString&)
+void Qt5Frame::SetApplicationID(const OUString& rWMClass)
 {
-// So the hope is that QGuiApplication deals with this properly..
+#if QT5_USING_X11
+if (QGuiApplication::platformName() != "xcb" || !m_pTopLevel)
+return;
+
+OString aResClass = OUStringToOString(rWMClass, RTL_TEXTENCODING_ASCII_US);
+const char* pResClass
+= !aResClass.isEmpty() ? aResClass.getStr() : 
SalGenericSystem::getFrameClassName();
+OString aResName = SalGenericSystem::getFrameResName();
+
+// the WM_CLASS data consists of two concated cstrings, including the 
terminating '\0' chars
+const uint32_t data_len = aResName.getLength() + 1 + strlen(pResClass) + 1;
+char* data = new char[data_len];
+memcpy(data, aResName.getStr(), aResName.getLength() + 1);
+memcpy(data + aResName.getLength() + 1, pResClass, strlen(pResClass) + 1);
+
+xcb_change_property(QX11Info::connection(), XCB_PROP_MODE_REPLACE, 
m_pTopLevel->winId(),
+XCB_ATOM_WM_CLASS, XCB_ATOM_STRING, 8, data_len, data);
+delete[] data;
+#else
+(void)rWMClass;
+#endif
 }
 
 // Drag'n'drop foo
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 125921] All LO apps use the WM_CLASS value of "soffice.bin", so different apps get grouped, and it's impossible to pin more than one to the Plasma Task Manager

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125921

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

https://git.libreoffice.org/core/+/77a3c443d35c7d966217f02ea9189cb1819c7828%5E%21

tdf#125921 Qt5 set WM_CLASS for top level windows

It will be available in 6.4.0.

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

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

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

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

2019-06-14 Thread Samuel Mehrbrodt (via logerrit)
 sd/source/ui/func/fudraw.cxx |  222 ---
 sd/source/ui/func/fusel.cxx  |  306 ---
 sd/source/ui/inc/fudraw.hxx  |1 
 sd/source/ui/inc/fusel.hxx   |2 
 4 files changed, 8 insertions(+), 523 deletions(-)

New commits:
commit 41a1a91b6ec08d78449a199ec300ff73c85dd148
Author: Samuel Mehrbrodt 
AuthorDate: Fri Jun 7 08:48:32 2019 +0200
Commit: Thorsten Behrens 
CommitDate: Sat Jun 15 02:16:59 2019 +0200

tdf#125748 Only execute frame interactions in presentation mode

Executing interactions while in edit mode makes editing very hard
since you can only hardly select the frame without executing the 
interaction.

Change-Id: I102dac0ff840a914bd6e21ddb047b2df5e278c6f
Reviewed-on: https://gerrit.libreoffice.org/73640
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 

diff --git a/sd/source/ui/func/fudraw.cxx b/sd/source/ui/func/fudraw.cxx
index 45a5629609bd..a1aabd63cd2c 100644
--- a/sd/source/ui/func/fudraw.cxx
+++ b/sd/source/ui/func/fudraw.cxx
@@ -504,8 +504,6 @@ void FuDraw::ForcePointer(const MouseEvent* pMEvt)
 }
 else if (!mpView->IsAction())
 {
-SdrObject* pObj = nullptr;
-SdrPageView* pPV = nullptr;
 SdrViewEvent aVEvt;
 SdrHitKind eHit = SdrHitKind::NONE;
 SdrDragMode eDragMode = mpView->GetDragMode();
@@ -530,16 +528,7 @@ void FuDraw::ForcePointer(const MouseEvent* pMEvt)
 }
 }
 
-if (eHit == SdrHitKind::NONE)
-{
-// found nothing -> look after at the masterpage
-pObj = mpView->PickObj(aPnt, mpView->getHitTolLog(), pPV, 
SdrSearchOptions::ALSOONMASTER);
-}
-else if (eHit == SdrHitKind::UnmarkedObject)
-{
-pObj = aVEvt.pObj;
-}
-else if (eHit == SdrHitKind::TextEditObj && dynamic_cast< const 
FuSelection *>( this ) !=  nullptr)
+if (eHit == SdrHitKind::TextEditObj && dynamic_cast< const 
FuSelection *>( this ) !=  nullptr)
 {
 sal_uInt16 nSdrObjKind = aVEvt.pObj->GetObjIdentifier();
 
@@ -548,25 +537,10 @@ void FuDraw::ForcePointer(const MouseEvent* pMEvt)
  nSdrObjKind != OBJ_OUTLINETEXT &&
  aVEvt.pObj->IsEmptyPresObj() )
 {
-pObj = nullptr;
 bDefPointer = false;
 mpWindow->SetPointer(PointerStyle::Arrow);
 }
 }
-
-if (pObj && pMEvt && !pMEvt->IsMod2() && dynamic_cast< const   
FuSelection *>( this ) !=  nullptr)
-{
-// test for animation or ImageMap
-bDefPointer = !SetPointer(pObj, aPnt);
-
-if (bDefPointer && (dynamic_cast< const SdrObjGroup *>( pObj ) 
!= nullptr || dynamic_cast< const E3dScene* >(pObj) !=  nullptr))
-{
-// take a glance into the group
-pObj = mpView->PickObj(aPnt, mpView->getHitTolLog(), pPV, 
SdrSearchOptions::ALSOONMASTER | SdrSearchOptions::DEEP);
-if (pObj)
-bDefPointer = !SetPointer(pObj, aPnt);
-}
-}
 }
 }
 
@@ -578,94 +552,6 @@ void FuDraw::ForcePointer(const MouseEvent* pMEvt)
 }
 
 /**
- * Set cursor for animation or imagemap
- */
-bool FuDraw::SetPointer(SdrObject* pObj, const Point& rPos)
-{
-bool bSet = false;
-
-bool bAnimationInfo = dynamic_cast< const GraphicDocShell *>( mpDocSh ) == 
 nullptr &&
-  SdDrawDocument::GetAnimationInfo(pObj);
-
-bool bImageMapInfo = false;
-
-if (!bAnimationInfo)
-bImageMapInfo = SdDrawDocument::GetIMapInfo(pObj) != nullptr;
-
-if (bAnimationInfo || bImageMapInfo)
-{
-const SdrLayerIDSet* pVisiLayer = 
>GetSdrPageView()->GetVisibleLayers();
-sal_uInt16 nHitLog(sal_uInt16 
(mpWindow->PixelToLogic(Size(HITPIX,0)).Width()));
-long  n2HitLog(nHitLog * 2);
-Point aHitPosR(rPos);
-Point aHitPosL(rPos);
-Point aHitPosT(rPos);
-Point aHitPosB(rPos);
-
-aHitPosR.AdjustX(n2HitLog );
-aHitPosL.AdjustX( -n2HitLog );
-aHitPosT.AdjustY(n2HitLog );
-aHitPosB.AdjustY( -n2HitLog );
-
-if ( !pObj->IsClosedObj() ||
-( SdrObjectPrimitiveHit(*pObj, aHitPosR, nHitLog, 
*mpView->GetSdrPageView(), pVisiLayer, false) &&
-  SdrObjectPrimitiveHit(*pObj, aHitPosL, nHitLog, 
*mpView->GetSdrPageView(), pVisiLayer, false) &&
-  SdrObjectPrimitiveHit(*pObj, aHitPosT, nHitLog, 
*mpView->GetSdrPageView(), pVisiLayer, false) &&
-  SdrObjectPrimitiveHit(*pObj, aHitPosB, nHitLog, 
*mpView->GetSdrPageView(), pVisiLayer, false)))
-{
-/**
-* hit 

[Libreoffice-ux-advise] [Bug 125748] Interaction on frame should only be executed in presentation mode

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125748

--- Comment #9 from Commit Notification 
 ---
Samuel Mehrbrodt committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/41a1a91b6ec08d78449a199ec300ff73c85dd148%5E%21

tdf#125748 Only execute frame interactions in presentation mode

It will be available in 6.4.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://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 on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise

[Libreoffice-ux-advise] [Bug 125748] Interaction on frame should only be executed in presentation mode

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125748

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.4.0

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

Request for review: Convert Fontwork to TextWarp on export

2019-06-14 Thread Regina Henschel

Hi all,

Please have a look at https://gerrit.libreoffice.org/#/c/74057/
tdf#51195, tdf#100348 Convert Fontwork to TextWarp on export

"Fontwork" of LibreOffice and "TextWarp" of MS Office have fundamental 
differences although they look similar. I have collected some at 
https://wiki.documentfoundation.org/Development/Remarks_on_Fontwork_and_TextWarp


Szymon Kłos implemented the import from PowerPoint last year. He has 
mapped the "TextWarp"-objects to our implementation of "Fontwork", which 
we use for binary import/export and ODF.


My patch would implement the export from "Fontwork" to "TextWarp" 
without character fill and outline. My question is, whether you agree, 
that such step is useful? Even if character fill and outline will not be 
implemented soon?


What is missing in this area:
* Conversion between fill/stroke of Fontwork shapes and fill/outline of 
characters in TextWarp shapes (That is likely what users want.)

* Import of TextWarp from docx
* Stretch of text block instead (or in addition) to stretch per 
paragraph, or at least switch to ScaleX=false

* Radial adjustment for curved types
* Style for single text portions
* Treating of legacy Fontwork shapes in import/export with DrawingML

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

[Libreoffice-bugs] [Bug 125290] Character spacing problem at projection.

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125290

--- Comment #6 from V Stuart Foote  ---
Thanks for posting the test document.

Unfortunately I can not reproduce the issue on Windows 10 Home 64-bit en-US
(1809) with Intel HD Graphics 620 (driver 25.20.100.6519) and 
Version: 6.2.4.2 (x64)
Build ID: 2412653d852ce75f65fbfa83fb7e7b669a126d64
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

With OpenGL rendering, or default rendering (CPU or HA).

nor with build of current master/6.4.0
Version: 6.4.0.0.alpha0+ (x64)
Build ID: 5e6af47dc87a55fea595c952ea3e59c93d0620db
CPU threads: 4; OS: Windows 10.0; UI render: GL; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-06-13_02:23:01
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

The Times New Roman text is rendered cleanly during slide show. Adjusting the
Text box text's Character property to expand from -2.0 to 0.0 and to 1.0
renders cleanly in slide show at each setting tested in all modes.

So, NEEDINFO still to Egon. What build of Windows and with what graphics card
and driver are you having this font rendering issue (as clipped in common 0
attachment 151413 )?

-- 
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 125646] calc undo doesn't separate auto-corrupt and user changes

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125646

--- Comment #13 from Anthony Youngman  ---

> Besides, what is the actual problem if an email address or URL is recognized
> as such? Since 6.2 the cell display doesn't result anymore in the shaded
> field display, only the inline edit does.

Besides, what is the actual problem? I've just stumbled across an email to the
list of mine, dated 8th Feb. It shows pretty graphically how, by not doing what
the user expects, you can REALLY fuck things up. What's the saying? "To err is
human, to really foul things up requires a computer".

Try the following sequence of events ...

1) Enter an url into a cell.
2) Tab to the next cell, causing calc to autoformat the url. (This next cell
contains important information ... :-)
3) Spot a mistake in the url, so click on the cell intending to edit the url
4) Start editing the url, and realise that clicking on the url DID NOT select
the cell, so you've just trashed your important information ...

OOPS !!!

UI papercuts are serious problems because they result in corrupted user
documents. Just what *experienced* users in particular don't need. Ask any UI
specialist what experienced users hate with a vengeance, and one of those
things will be "inconsistent behaviour". Here we've just completely fucked
about with what any normal user will expect.

-- 
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 123623] LO Calc, Insert -> Hyperlink -> Icons and text looks bad

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123623

--- Comment #14 from ace_dent  ---
Likely due to issues with scaling / high DPI, etc.

-- 
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 125805] "Insert Hyperlink" dialogue box does not scale correctly on high DPI.

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125805

--- Comment #2 from ace_dent  ---
Possible duplicate of Bug 123623 - LO Calc, Insert -> Hyperlink -> Icons and
text looks bad ...

-- 
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 125930] Word wrapped text from a Calc cell renders when printed or converted to a pdf with text overlapping

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125930

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #2 from m.a.riosv  ---
Please can you test with a newer version of LibreOffice, no issue with:
Version: 6.2.4.2 (x64)
Build ID: 2412653d852ce75f65fbfa83fb7e7b669a126d64
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
Locale: es-ES (es_ES); UI-Language: en-US Calc:

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

[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - sc/source

2019-06-14 Thread Eike Rathke (via logerrit)
 sc/source/core/data/global.cxx |9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

New commits:
commit e2f7211e9ef70ef9696175e9447edc3e779b3cc6
Author: Eike Rathke 
AuthorDate: Fri Jun 14 21:53:18 2019 +0200
Commit: Eike Rathke 
CommitDate: Fri Jun 14 23:54:46 2019 +0200

Resolves: tdf#124251 do not treat internal "URI" as real path URI

Change-Id: I754704b0a979e8449b7ec799cbda58b14ab17098
Reviewed-on: https://gerrit.libreoffice.org/74067
Reviewed-by: Eike Rathke 
Tested-by: Jenkins
(cherry picked from commit ca08ec9292410c28713fd2d92920a7af09883e97)
Reviewed-on: https://gerrit.libreoffice.org/74069

diff --git a/sc/source/core/data/global.cxx b/sc/source/core/data/global.cxx
index f0a3715f36b0..33e4ffb13eef 100644
--- a/sc/source/core/data/global.cxx
+++ b/sc/source/core/data/global.cxx
@@ -812,7 +812,14 @@ void ScGlobal::OpenURL(const OUString& rURL, const 
OUString& rTarget)
 }
 
 // Don't fiddle with fragments pointing into current document.
-if (!aUrlName.startsWith("#"))
+// Also don't mess around with a vnd.sun.star.script or service or other
+// internal "URI".
+if (!aUrlName.startsWith("#")
+&& !aUrlName.startsWithIgnoreAsciiCase("vnd.sun.star.script:")
+&& !aUrlName.startsWithIgnoreAsciiCase("macro:")
+&& !aUrlName.startsWithIgnoreAsciiCase("slot:")
+&& !aUrlName.startsWithIgnoreAsciiCase("service:")
+&& !aUrlName.startsWithIgnoreAsciiCase(".uno:"))
 {
 // Any relative reference would fail with "not an absolute URL"
 // error, try to construct an absolute URI with the path relative
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 117732] Firebird: Migration: Time values are being changed during migration process (data type TIME and DATETIME)

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117732

--- Comment #29 from Alan Wheeler  ---
I had big problems with migrating dates in my BASE database until I deduced
that all dates that had been entered with a value that would have been in UK
Daylight Saving Time were out by 1 day after migration.

I got around this by creating and populating a table with three fields :-
Key field YEAR (as INTEGER) with values from 1916 to 2019
START_DATE (as DATE) containing the date of the start of DST for the year.
END_DATE (as DATE) containing the date of the end of DST for the year.

(Note that this table was complicated by the fact that the UK kept DST all year
during part of WW2 and from 1968 to 1970, so some end dates were 31st December
and some start dates were 1st January).

Then I wrote a macro to adjust all such dates in the remaining database tables
by 1 day in the opposite direction to the direction changed by the migration.

This worked perfectly, and I have now successfully migrated to Firebird, which
is definitely much faster than HSQLDB with JAVA.

I suspect that many users would have the skills to do something similar, but
most users wouldn't, so a method of automatically performing this adjustment
needs to be developed and incorporated into the migration.

-- 
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 107659] [META] Macro bugs and enhancements

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107659
Bug 107659 depends on bug 124251, which changed state.

Bug 124251 Summary: Basic script error after update from LO 6.1.X to LO 6.2.X, 
when "URI" to open from a hyperlink is vnd.sun.star.script:...
https://bugs.documentfoundation.org/show_bug.cgi?id=124251

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

2019-06-14 Thread Eike Rathke (via logerrit)
 sc/source/core/data/global.cxx |9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

New commits:
commit ca08ec9292410c28713fd2d92920a7af09883e97
Author: Eike Rathke 
AuthorDate: Fri Jun 14 21:53:18 2019 +0200
Commit: Eike Rathke 
CommitDate: Fri Jun 14 23:06:34 2019 +0200

Resolves: tdf#124251 do not treat internal "URI" as real path URI

Change-Id: I754704b0a979e8449b7ec799cbda58b14ab17098
Reviewed-on: https://gerrit.libreoffice.org/74067
Reviewed-by: Eike Rathke 
Tested-by: Jenkins

diff --git a/sc/source/core/data/global.cxx b/sc/source/core/data/global.cxx
index f0a3715f36b0..33e4ffb13eef 100644
--- a/sc/source/core/data/global.cxx
+++ b/sc/source/core/data/global.cxx
@@ -812,7 +812,14 @@ void ScGlobal::OpenURL(const OUString& rURL, const 
OUString& rTarget)
 }
 
 // Don't fiddle with fragments pointing into current document.
-if (!aUrlName.startsWith("#"))
+// Also don't mess around with a vnd.sun.star.script or service or other
+// internal "URI".
+if (!aUrlName.startsWith("#")
+&& !aUrlName.startsWithIgnoreAsciiCase("vnd.sun.star.script:")
+&& !aUrlName.startsWithIgnoreAsciiCase("macro:")
+&& !aUrlName.startsWithIgnoreAsciiCase("slot:")
+&& !aUrlName.startsWithIgnoreAsciiCase("service:")
+&& !aUrlName.startsWithIgnoreAsciiCase(".uno:"))
 {
 // Any relative reference would fail with "not an absolute URL"
 // error, try to construct an absolute URI with the path relative
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 125929] after loading files in "csv-text-format" into the calc-application, formatting of date fields doesn't work correctly, because of quot-mark chars

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125929

Eike Rathke  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

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

[Libreoffice-bugs] [Bug 125929] after loading files in "csv-text-format" into the calc-application, formatting of date fields doesn't work correctly, because of quot-mark chars

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125929

Eike Rathke  changed:

   What|Removed |Added

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

--- Comment #3 from Eike Rathke  ---
Not a bug. The dates were imported as text content, not as numeric date
content, thus changing the number format has no effect. In the import dialog
either activate Detect special numbers ("Erweiterte Zahlenerkennung"), or
explicitly set the column type to Date (DMY).

The ' apostrophe (single quote) in the Input Line preceding the content
indicates that content could be interpreted as numeric if the cell content
wasn't of type text.

See also
https://wiki.documentfoundation.org/Faq/Calc/How_to_convert_number_text_to_numeric_data

-- 
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 125774] Double selecting of level in list in new dialog B in Impress

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125774

Gülşah Köse  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 103364] [META] Bullet and numbering dialog bugs and enhancements

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103364
Bug 103364 depends on bug 125774, which changed state.

Bug 125774 Summary: Double selecting of level in list in new dialog B in 
Impress
https://bugs.documentfoundation.org/show_bug.cgi?id=125774

   What|Removed |Added

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

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

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

2019-06-14 Thread Roman Kuznetsov (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/CalcWindowState.xcu|7 
+--
 officecfg/registry/data/org/openoffice/Office/UI/DrawWindowState.xcu|7 
+--
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu|2 
+-
 officecfg/registry/data/org/openoffice/Office/UI/ImpressWindowState.xcu |4 
++--
 officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu  |7 
+--
 5 files changed, 18 insertions(+), 9 deletions(-)

New commits:
commit 1dac2184c5e904887fe56c632fcd048fb0b698e9
Author: Roman Kuznetsov 
AuthorDate: Sat Mar 16 10:33:29 2019 +0100
Commit: Roman Kuznetsov 
CommitDate: Fri Jun 14 23:02:29 2019 +0200

tdf#88287 Change toolbars attributes in Draw

The tooltip for .uno:LineToolbox changed to 'Curves and Polygons'
The toolbar title of linesbar.xml changed to 'Curves and Polygons'
The Arrows toolbar (arrowsbar.xml) removed from View > Toolbars
The toolbar title of arrowsbar.xml changed to 'Lines and Arrows'

Change-Id: Ic97c7a11f071a4f424a341e297423dba2ddc345a
Reviewed-on: https://gerrit.libreoffice.org/69335
Reviewed-by: Roman Kuznetsov 
Tested-by: Roman Kuznetsov 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/CalcWindowState.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/CalcWindowState.xcu
index 7dd89f6989ec..7644f820ffb9 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/CalcWindowState.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/CalcWindowState.xcu
@@ -129,7 +129,7 @@
   false
 
 
-  Lines
+  Curves and Polygons
 
 
   false
@@ -713,11 +713,14 @@
   false
 
 
-  Arrows
+  Lines and Arrows
 
 
   false
 
+
+  true
+
   
   
 
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/DrawWindowState.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/DrawWindowState.xcu
index a964507437a2..b1f0b0f292e1 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/DrawWindowState.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/DrawWindowState.xcu
@@ -315,7 +315,10 @@
   false
 
 
-  Arrows
+  Lines and Arrows
+
+
+  true
 
   
   
@@ -575,7 +578,7 @@
   false
 
 
-  Lines
+  Curves and Polygons
 
 
   false
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index da7027430cbe..840c17d5404f 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -4760,7 +4760,7 @@
   
   
 
-  Curve
+  Curves and Polygons
 
 
   1
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/ImpressWindowState.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/ImpressWindowState.xcu
index ac91bd27af7b..b9d1d1545298 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/ImpressWindowState.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/ImpressWindowState.xcu
@@ -226,7 +226,7 @@
   false
 
 
-  Arrows
+  Lines and Arrows
 
 
   true
@@ -512,7 +512,7 @@
   false
 
 
-  Lines
+  Curves and Polygons
 
 
   false
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu
index 7cceb8669a38..f5d7bdf862d3 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu
@@ -198,7 +198,7 @@
   false
 
 
-  Lines
+  Curves and Polygons
 
 
   false
@@ -212,11 +212,14 @@
   false
 
 
-  Arrows
+  Lines and Arrows
 
 
   false
 
+
+  true
+
   
   
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 125774] Double selecting of level in list in new dialog B in Impress

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125774

--- Comment #3 from Commit Notification 
 ---
Gülşah Köse committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/8c0e209ddb40f4fd5419dd2190a40d1670c16a3d%5E%21

tdf#125774 Remove double call SvTreeListBox::Select for non-gtk backends

It will be available in 6.4.0.

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

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

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

[Libreoffice-bugs] [Bug 125774] Double selecting of level in list in new dialog B in Impress

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125774

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.4.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 125929] after loading files in "csv-text-format" into the calc-application, formatting of date fields doesn't work correctly, because of quot-mark chars

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125929

Eike Rathke  changed:

   What|Removed |Added

 Attachment #152202|application/vnd.ms-excel|text/csv
  mime type||

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

2019-06-14 Thread Gülşah Köse (via logerrit)
 sd/source/ui/dlg/BulletAndPositionDlg.cxx |   13 +
 1 file changed, 1 insertion(+), 12 deletions(-)

New commits:
commit 8c0e209ddb40f4fd5419dd2190a40d1670c16a3d
Author: Gülşah Köse 
AuthorDate: Mon Jun 10 10:23:40 2019 +0300
Commit: Gülşah Köse 
CommitDate: Fri Jun 14 22:51:40 2019 +0200

tdf#125774 Remove double call SvTreeListBox::Select for non-gtk backends

Change-Id: Ic8238d91f1cddb8fe627fafb0587751de308f6ac
Reviewed-on: https://gerrit.libreoffice.org/73747
Tested-by: Jenkins
Reviewed-by: Gülşah Köse 

diff --git a/sd/source/ui/dlg/BulletAndPositionDlg.cxx 
b/sd/source/ui/dlg/BulletAndPositionDlg.cxx
index bbf5c6687bd8..5b2994e06f91 100644
--- a/sd/source/ui/dlg/BulletAndPositionDlg.cxx
+++ b/sd/source/ui/dlg/BulletAndPositionDlg.cxx
@@ -727,19 +727,8 @@ IMPL_LINK(SvxBulletAndPositionDlg, LevelHdl_Impl, 
weld::TreeView&, rBox, void)
 rBox.unselect(pActNum->GetLevelCount());
 }
 else
-{
 nActNumLvl = nSaveNumLvl;
-sal_uInt16 nMask = 1;
-for (sal_uInt16 i = 0; i < pActNum->GetLevelCount(); i++)
-{
-if (nActNumLvl & nMask)
-{
-rBox.select(i);
-break;
-}
-nMask <<= 1;
-}
-}
+
 InitControls();
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 125932] New: RFE: print with unsaved cells

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125932

Bug ID: 125932
   Summary: RFE: print with unsaved cells
   Product: LibreOffice
   Version: 6.2.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: toddandma...@zoho.com

Request for Enhancement:

LibreOffice-6.2.4-Linux_x86-64_rpm.tar.gz

If you add something to a cell and don't press enter or click off the cell to
save the cell, then you print, print will not pick up what is in the unsaved
cell.  

This is an "inconvenience to the user".  I have twice now tried to figure out
what the missing entry was in front of the bank teller on my deport slips.  NOT
FUN!

What I would see is something that would either

1) force a save if the print button was pressed (as does the "save" button), or

2) not allow you to print, as does Excel 2007.  A "save your cell first" note
would cut down on the confusion with this method, or

3) something cleaver that the programmer likes better.

Many thanks,
-T

-- 
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 125895] Calc: print does not print unsaved cell

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125895

--- Comment #5 from Todd  ---
Okay, I was looking at this the wrong way.   This is an "inconvenience to the
user", not a mistake in the code.  So I do concur, not a bug

I will reopen as a request for enhancement.  The "Excel 2007" method you would
work.

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

2019-06-14 Thread Stephan Bergmann (via logerrit)
 chart2/source/tools/PolynomialRegressionCurveCalculator.cxx |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 3a53860fd0d345c288659a32b7438d6eebd921e0
Author: Stephan Bergmann 
AuthorDate: Fri Jun 14 17:38:31 2019 +0200
Commit: Stephan Bergmann 
CommitDate: Fri Jun 14 22:02:35 2019 +0200

Avoid -fsanitize=float-divide-by-zero

...as happens with `--convert-to pdf xls/rhbz499466-2.xls` with
xls/rhbz499466-2.xls as obtained by bin/get-bugzilla-attachments-by-mimetype
(i.e., the attachment at
):

> chart2/source/tools/PolynomialRegressionCurveCalculator.cxx:73:14: 
runtime error: division by zero
>  #0 in 
chart::PolynomialRegressionCurveCalculator::recalculateRegression(com::sun::star::uno::Sequence
 const&, com::sun::star::uno::Sequence const&) at 
chart2/source/tools/PolynomialRegressionCurveCalculator.cxx:73:14
>  #1 in 
chart::VSeriesPlotter::createRegressionCurvesShapes(chart::VDataSeries const&, 
com::sun::star::uno::Reference const&, 
com::sun::star::uno::Reference const&, bool) 
at chart2/source/view/charttypes/VSeriesPlotter.cxx:1341:22
>  #2 in chart::AreaChart::impl_createSeriesShapes() at 
chart2/source/view/charttypes/AreaChart.cxx:539:17
>  #3 in chart::AreaChart::createShapes() at 
chart2/source/view/charttypes/AreaChart.cxx:965:5
>  #4 in 
chart::ChartView::impl_createDiagramAndContent(chart::CreateShapeParam2D 
const&, com::sun::star::awt::Size const&) at 
chart2/source/view/main/ChartView.cxx:1608:25
>  #5 in chart::ChartView::createShapes2D(com::sun::star::awt::Size const&) 
at chart2/source/view/main/ChartView.cxx:3037:41
[...]

Change-Id: I1ef70aa90256a5fcc84151d869d8ffc6acfbbb0e
Reviewed-on: https://gerrit.libreoffice.org/74055
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/chart2/source/tools/PolynomialRegressionCurveCalculator.cxx 
b/chart2/source/tools/PolynomialRegressionCurveCalculator.cxx
index 050343c1dcc6..530d0d4a16a5 100644
--- a/chart2/source/tools/PolynomialRegressionCurveCalculator.cxx
+++ b/chart2/source/tools/PolynomialRegressionCurveCalculator.cxx
@@ -70,7 +70,10 @@ void SAL_CALL 
PolynomialRegressionCurveCalculator::recalculateRegression(
 yVector[i] = yValue;
 yAverage += yValue;
 }
-yAverage /= aNoValues;
+if (aNoValues != 0)
+{
+yAverage /= aNoValues;
+}
 
 for(sal_Int32 j = 0; j < aNoPowers; j++)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 125931] Add Sidebar to Math with format options and with Greek and special symbols

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125931

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

   Keywords||needsUXEval
 Blocks||103461
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=96
   ||543
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103461
[Bug 103461] [META] Elements pane/dock/window/sidebar in Math
-- 
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 103461] [META] Elements pane/dock/window/sidebar in Math

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103461

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||125931


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=125931
[Bug 125931] Add Sidebar to Math with format options and with Greek and special
symbols
-- 
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 96543] Add side panel to Math

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96543

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

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

-- 
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 125931] Add Sidebar to Math with format options and with Greek and special symbols

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125931

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

   Keywords||needsUXEval
 Blocks||103461
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=96
   ||543
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103461
[Bug 103461] [META] Elements pane/dock/window/sidebar in Math
-- 
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 98976] [EDITING] Page Up / Page Down do not work in Outline View

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98976

--- Comment #6 from Cor Nouws  ---
similar in Version: 6.3.0.0.alpha1+
Build ID: 77ae0abe21f672cf4b7d2e069f1d40d20edc49a7
CPU threads: 4; OS: Linux 5.0; UI render: default; VCL: gtk3; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2019-05-31_15:33:33
Locale: nl-NL (nl_NL.UTF-8); UI-Language: en-US
Calc: threaded

-- 
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 125931] Add Sidebar to Math with format options and with Greek and special symbols

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125931

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
Created attachment 152206
  --> https://bugs.documentfoundation.org/attachment.cgi?id=152206=edit
Sidebar in the Math

-- 
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 125931] New: Add Sidebar to Math with format options and with Greek and special symbols

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125931

Bug ID: 125931
   Summary: Add Sidebar to Math with format options and with Greek
and special symbols
   Product: LibreOffice
   Version: 6.4.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 79045_79...@mail.ru

Description:
Add Sidebar to Math with format options and with Greek and special symbols

Steps to Reproduce:
-

Actual Results:
We don't have Sidebar in Math

Expected Results:
We have Sidebar in Math


Reproducible: Always


User Profile Reset: No



Additional Info:
-

-- 
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 125290] Character spacing problem at projection.

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125290

egon.huba...@citromail.hu changed:

   What|Removed |Added

 OS|All |Windows (All)

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

[Libreoffice-bugs] [Bug 125290] Character spacing problem at projection.

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125290

--- Comment #5 from egon.huba...@citromail.hu ---
(In reply to egon.hubaors from comment #4)
> Köszönöm, hogy foglalkozol a problémával.
> Tényleg csak windowson fordul elő.

Thank you for dealing with the problem.
It really only happens on windows.

-- 
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 125290] Character spacing problem at projection.

2019-06-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125290

--- Comment #4 from egon.huba...@citromail.hu ---
Köszönöm, hogy foglalkozol a problémával.
Tényleg csak windowson fordul elő.

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