[Libreoffice-bugs] [Bug 141644] FILEOPEN XLSX Text in shape rotated to 270 degrees appears horizontal

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141644

Szabolcs Toth  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |szabolcs...@gmail.com
   |desktop.org |

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


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

2021-05-18 Thread Michael Weghorn (via logerrit)
 android/source/src/java/org/libreoffice/LibreOfficeMainActivity.java |9 
-
 1 file changed, 8 insertions(+), 1 deletion(-)

New commits:
commit 128f67e0efa02294205a1abe1be874557ecdcecd
Author: Michael Weghorn 
AuthorDate: Tue May 18 14:27:51 2021 +0200
Commit: Michael Weghorn 
CommitDate: Wed May 19 07:42:57 2021 +0200

tdf#142348 android: Avoid extra refresh after loading doc

commit 1bc42472200c32c9a0a10dd1c3cd6c6a8a5d47d2
Date:   Fri Apr 9 13:59:43 2021 +0200

tdf#95517 android: Rework app/doc lifecycle handling

changed activity lifecycle for Android Viewer's
'LibreOfficeMainActivity'. It moved sending an event to
trigger loading of the document from the 'onStart' to the
'onCreate' method and added sending a more lightweight refresh
event the 'onStart' method instead.

However, since a refresh is already done when loading the
document, there's no need to do another refresh when the 'onStart'
method is called right after the 'onCreate' method.
Therefore, set a flag in the 'onCreate' method and use that
to skip sending the extra refresh event for that case. This
not only avoids doing unnecessary work but also avoids that
the two could get into each others way, resulting in Calc
documents sometimes not being rendered on initial load.

Change-Id: I5c47e1b5f7a42a49fb903891aa84585b36994a4b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115750
Tested-by: Jenkins
Reviewed-by: Michael Weghorn 

diff --git 
a/android/source/src/java/org/libreoffice/LibreOfficeMainActivity.java 
b/android/source/src/java/org/libreoffice/LibreOfficeMainActivity.java
index 9d8828811ade..3927cc744eb4 100644
--- a/android/source/src/java/org/libreoffice/LibreOfficeMainActivity.java
+++ b/android/source/src/java/org/libreoffice/LibreOfficeMainActivity.java
@@ -100,6 +100,7 @@ public class LibreOfficeMainActivity extends 
AppCompatActivity implements Settin
 private LOKitTileProvider mTileProvider;
 private String mPassword;
 private boolean mPasswordProtected;
+private boolean mbSkipNextRefresh;
 public boolean pendingInsertGraphic; // boolean indicating a pending 
insert graphic action, used in LOKitTileProvider.postLoad()
 
 public GeckoLayerClient getLayerClient() {
@@ -213,6 +214,9 @@ public class LibreOfficeMainActivity extends 
AppCompatActivity implements Settin
 Log.e(LOGTAG, "No document specified. This should never happen.");
 return;
 }
+// the loadDocument/loadNewDocument event already triggers a refresh 
as well,
+// so there's no need to do another refresh in 'onStart'
+mbSkipNextRefresh = true;
 
 mDrawerLayout = findViewById(R.id.drawer_layout);
 
@@ -466,7 +470,10 @@ public class LibreOfficeMainActivity extends 
AppCompatActivity implements Settin
 protected void onStart() {
 Log.i(LOGTAG, "onStart..");
 super.onStart();
-LOKitShell.sendEvent(new LOEvent(LOEvent.REFRESH));
+if (!mbSkipNextRefresh) {
+LOKitShell.sendEvent(new LOEvent(LOEvent.REFRESH));
+}
+mbSkipNextRefresh = false;
 }
 
 @Override
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-05-18 Thread Michael Weghorn (via logerrit)
 desktop/source/lib/init.cxx |4 
 1 file changed, 4 deletions(-)

New commits:
commit e96f72184ecdb589bbed6b3b30c7be3bfd726edc
Author: Michael Weghorn 
AuthorDate: Mon May 17 14:31:51 2021 +0200
Commit: Michael Weghorn 
CommitDate: Wed May 19 07:42:37 2021 +0200

tdf#142348 Use transparent background for Android Viewer, too

After

commit e0094d6fe58eaa9a79b546149cf67db521cd1230
Date:   Mon Apr 26 10:43:11 2021 +0900

lok: add rendering and input for form controls in Calc

instead of properly rendering Calc documents, Android Viewer was
only showing a blank area instead of the actual doc content.
(In case of a Calc doc containing form controls, they were
visible on top of an otherwise white background.)

Using a transparent background by default in Android Viewer
as well, just as is done for all other scenarios already,
makes this work as expected again
(except for another issue introduced with

commit 1bc42472200c32c9a0a10dd1c3cd6c6a8a5d47d2
Date:   Fri Apr 9 13:59:43 2021 +0200

tdf#95517 android: Rework app/doc lifecycle handling

that will be handled in a separate commit).

The comment already mentioned that it was unclear why
that should not work for Android Viewer and I did not see
any apparent problem when testing a bit, so just drop the
special handling for Android Viewer here.

Change-Id: I3005c5517ce1198af99b27af541fe59eaa896da2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115749
Tested-by: Jenkins
Reviewed-by: Michael Weghorn 

diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index 2ca561285d93..8df015866484 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -3176,12 +3176,8 @@ static void doc_paintTile(LibreOfficeKitDocument* pThis,
 #else
 ScopedVclPtrInstance< VirtualDevice > pDevice(DeviceFormat::DEFAULT);
 
-#if !defined(ANDROID) || HAVE_FEATURE_ANDROID_LOK
-// Don't set the transparent background in the 'old' (JNI-based) Android
-// app - no idea why it needs avoiding this.
 // Set background to transparent by default.
 pDevice->SetBackground(Wallpaper(COL_TRANSPARENT));
-#endif
 
 pDevice->SetOutputSizePixelScaleOffsetAndBuffer(
 Size(nCanvasWidth, nCanvasHeight), Fraction(1.0), Point(),
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 142307] Upgrade SSE2 sum to AVX512 sum with Neumaier (precise fp-sum)

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142307

Roland Kurmann  changed:

   What|Removed |Added

Summary|Upgrade SSE2 sum to AVX512  |Upgrade SSE2 sum to AVX512
   |sum with Neumaier (precise  |sum with Neumaier (precise
   |fp-sum) | was: Upgrade SSE2 |fp-sum)
   |sum to AVX512 sum with  |
   |Neumanier   |

-- 
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 112613] EXPORT: HTML: Export fails with more than 785 numbered paragraphs

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112613

--- Comment #5 from stragu  ---
Reproducible in 7.2 alpha0+

Version: 7.2.0.0.alpha0+ / LibreOffice Community
Build ID: 6b09276d157abada74e1a4989700139167207778
CPU threads: 8; OS: Linux 4.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2021-05-14_04:32:30
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 108799] [META] HTML export bugs and enhancements

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108799

stragu  changed:

   What|Removed |Added

 Depends on||142356


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=142356
[Bug 142356] [accessibility] Save as HTML includes caption inside image
-- 
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 142356] [accessibility] Save as HTML includes caption inside image

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142356

stragu  changed:

   What|Removed |Added

 Blocks||108799
 CC||stephane.guil...@member.fsf
   ||.org
   Keywords||accessibility


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108799
[Bug 108799] [META] HTML export bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: compilerplugins/clang

2021-05-18 Thread Stephan Bergmann (via logerrit)
 compilerplugins/clang/noexcept.cxx |   41 ++---
 1 file changed, 21 insertions(+), 20 deletions(-)

New commits:
commit 92511657969ff93abd31a1368082d3c4dc42d479
Author: Stephan Bergmann 
AuthorDate: Tue May 18 14:47:42 2021 +0200
Commit: Stephan Bergmann 
CommitDate: Wed May 19 07:27:59 2021 +0200

Adapt loplugin:noexcept to system macro BEGIN_COM_MAP (clang-cl)

...to silence warnings like

> In file included from 
C:/lo-clang/core/extensions/source/activex/SOComWindowPeer.cxx:27:
> C:/lo-clang/core/extensions/source/activex/SOComWindowPeer.h(57,1): 
error: Replace legacy dynamic 'throw ()' exception specification with 
'noexcept' [loplugin:noexcept]
> BEGIN_COM_MAP(SOComWindowPeer)
> ^~
> 
C:/PROGRA~2/MIB055~1/2019/COMMUN~1/VC/Tools/MSVC/1428~1.299/atlmfc/include\atlcom.h(2204,130):
 note: expanded from macro 'BEGIN_COM_MAP'
> static HRESULT WINAPI _Cache(_In_ void* pv, _In_ REFIID iid, 
_COM_Outptr_result_maybenull_ void** ppvObject, _In_ DWORD_PTR dw) throw()\
>   
  ^~~

Change-Id: Iee2619e000963a419b757235d86d7f87944ed46a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115748
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/compilerplugins/clang/noexcept.cxx 
b/compilerplugins/clang/noexcept.cxx
index ae0bfdf95207..de956839e827 100644
--- a/compilerplugins/clang/noexcept.cxx
+++ b/compilerplugins/clang/noexcept.cxx
@@ -41,33 +41,34 @@ public:
 return true;
 }
 auto const r = tloc.getExceptionSpecRange();
-auto const repl = isInUnoIncludeFile(r.getBegin()) ? "SAL_NOEXCEPT" : 
"noexcept";
-if (rewriter != nullptr)
+auto r2 = r;
+auto l1 = r.getBegin();
+while (compiler.getSourceManager().isMacroArgExpansion(l1))
+{
+l1 = compiler.getSourceManager().getImmediateMacroCallerLoc(l1);
+}
+if (compiler.getSourceManager().isMacroBodyExpansion(l1))
 {
-auto r2 = r;
-auto l1 = r.getBegin();
-while (compiler.getSourceManager().isMacroArgExpansion(l1))
+auto l2 = r.getEnd();
+while (compiler.getSourceManager().isMacroArgExpansion(l2))
 {
-l1 = 
compiler.getSourceManager().getImmediateMacroCallerLoc(l1);
+l2 = 
compiler.getSourceManager().getImmediateMacroCallerLoc(l2);
 }
-if (compiler.getSourceManager().isMacroBodyExpansion(l1))
+if (compiler.getSourceManager().isMacroBodyExpansion(l2))
 {
-auto l2 = r.getEnd();
-while (compiler.getSourceManager().isMacroArgExpansion(l2))
+//TODO: check l1, l2 are in same macro body expansion
+auto const spl = 
compiler.getSourceManager().getSpellingLoc(l1);
+if (ignoreLocation(spl))
 {
-l2 = 
compiler.getSourceManager().getImmediateMacroCallerLoc(l2);
-}
-if (compiler.getSourceManager().isMacroBodyExpansion(l2))
-{
-//TODO: check l1, l2 are in same macro body expansion
-r2 = { compiler.getSourceManager().getSpellingLoc(l1),
-   compiler.getSourceManager().getSpellingLoc(l2) };
+return true;
 }
+r2 = { spl, compiler.getSourceManager().getSpellingLoc(l2) };
 }
-if (replaceText(r2, repl))
-{
-return true;
-}
+}
+auto const repl = isInUnoIncludeFile(r.getBegin()) ? "SAL_NOEXCEPT" : 
"noexcept";
+if (rewriter != nullptr && replaceText(r2, repl))
+{
+return true;
 }
 report(DiagnosticsEngine::Warning,
"Replace legacy dynamic 'throw ()' exception specification with 
'%0'", r.getBegin())
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-05-18 Thread Stephan Bergmann (via logerrit)
 include/sal/log.hxx |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 95e26d3dce4f5a3b2d010d5ca47b4e450905a100
Author: Stephan Bergmann 
AuthorDate: Tue May 18 12:58:34 2021 +0200
Commit: Stephan Bergmann 
CommitDate: Wed May 19 07:27:32 2021 +0200

tdf#142326: Adapt to "libstdc++: Implement LWG 1203 for rvalue iostreams"

...for libstdc++ 11.2, similar to 1f36f21d91c429190ae314dadeec409f35f4
"Adapt to "libstdc++: Implement LWG 1203 for rvalue iostreams" for 
libstdc++ 12.
The libstdc++ change referenced there has been backported to the 
releases/gcc-11
branch past the releases/gcc-11.1.0 tag (i.e., only towards libstdc++ 11.2) 
as


"libstdc++: Implement LWG 1203 for rvalue iostreams".

According to
,

,
and , the right __GLIBCXX__ 
value for
libstdc++ 11.1 should be 20210427, but at least
libstdc++-devel-11.1.1-1.fc34.x86_64 defines it as 20210428 while not 
including
the above "libstdc++: Implement LWG 1203 for rvalue iostreams" commit, so 
use
that value here.

Change-Id: I4e2c6d6ad8156a83f5c4bc861e4a118271928a20
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115738
Reviewed-by: Stephan Bergmann 
Tested-by: Jenkins

diff --git a/include/sal/log.hxx b/include/sal/log.hxx
index f92f36e2ff33..c64ea5079c81 100644
--- a/include/sal/log.hxx
+++ b/include/sal/log.hxx
@@ -192,7 +192,9 @@ inline char const * unwrapStream(SAL_UNUSED_PARAMETER 
StreamIgnore const &) {
 
 @since LibreOffice 3.5
 */
-#if defined _LIBCPP_VERSION || (defined _GLIBCXX_RELEASE && _GLIBCXX_RELEASE 
>= 12) \
+#if defined _LIBCPP_VERSION \
+|| (defined _GLIBCXX_RELEASE \
+&& (_GLIBCXX_RELEASE >= 12 || (_GLIBCXX_RELEASE == 11 && __GLIBCXX__ > 
20210428))) \
 || (defined _MSC_VER && _MSC_VER >= 1915)
 #define SAL_STREAM(stream) \
 (::std::ostringstream() << stream).str()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-05-18 Thread Stephan Bergmann (via logerrit)
 embeddedobj/qa/cppunit/msole.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 4bc32d5a1b236c12d8133782314fe61c6c037cdb
Author: Stephan Bergmann 
AuthorDate: Tue May 18 14:45:15 2021 +0200
Commit: Stephan Bergmann 
CommitDate: Wed May 19 07:27:09 2021 +0200

loplugin:external (clang-cl)

Change-Id: I0bd38acd8c562f4478831f278e7cfda54268849d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115747
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/embeddedobj/qa/cppunit/msole.cxx b/embeddedobj/qa/cppunit/msole.cxx
index 6cd768ead146..85be389384fa 100644
--- a/embeddedobj/qa/cppunit/msole.cxx
+++ b/embeddedobj/qa/cppunit/msole.cxx
@@ -66,6 +66,8 @@ void Test::registerNamespaces(xmlXPathContextPtr& 
pXmlXpathCtx)
 XmlTestTools::registerODFNamespaces(pXmlXpathCtx);
 }
 
+namespace
+{
 class OdtExportThread : public osl::Thread
 {
 uno::Reference mxComponent;
@@ -91,6 +93,7 @@ void OdtExportThread::run()
 };
 xStorable->storeToURL(maURL, aStoreProperties);
 }
+}
 
 CPPUNIT_TEST_FIXTURE(Test, testSaveOnThread)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-05-18 Thread Stephan Bergmann (via logerrit)
 vcl/win/gdi/salfont.cxx |8 
 1 file changed, 8 deletions(-)

New commits:
commit 674e4b01b0d95dc4fe364ee483693557a71ae9ef
Author: Stephan Bergmann 
AuthorDate: Tue May 18 14:41:28 2021 +0200
Commit: Stephan Bergmann 
CommitDate: Wed May 19 07:25:31 2021 +0200

-Werror,-Wunused-function (clang-cl)

...since 5686c1aca40beb9514d40c86b4a3780a8a1334ba "vcl: use 
DWriteTextRenderer
for vertical writing."

Change-Id: Ia215fb10f9b39fc41f16b6568ce9f461f78f1df4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115745
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/vcl/win/gdi/salfont.cxx b/vcl/win/gdi/salfont.cxx
index 473f743d3cee..2830d6048590 100644
--- a/vcl/win/gdi/salfont.cxx
+++ b/vcl/win/gdi/salfont.cxx
@@ -760,14 +760,6 @@ void WinSalGraphics::SetTextColor( Color nColor )
 ::SetTextColor( getHDC(), aCol );
 }
 
-static int CALLBACK SalEnumQueryFontProcExW( const LOGFONTW*,
-  const TEXTMETRICW*,
-  DWORD, LPARAM lParam )
-{
-*reinterpret_cast(lParam) = true;
-return 0;
-}
-
 void ImplGetLogFontFromFontSelect( const FontSelectPattern& rFont,
const PhysicalFontFace* pFontFace,
LOGFONTW& rLogFont )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 142356] [accessibility] Save as HTML includes caption inside image

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142356

--- Comment #4 from stragu  ---
Created attachment 172160
  --> https://bugs.documentfoundation.org/attachment.cgi?id=172160=edit
image with caption saved alongside HTML file

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


[Libreoffice-bugs] [Bug 142356] [accessibility] Save as HTML includes caption inside image

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142356

--- Comment #3 from stragu  ---
Created attachment 172159
  --> https://bugs.documentfoundation.org/attachment.cgi?id=172159=edit
example document saved as HTML

-- 
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 142285] "Scroll Here" on scrollbar can't be performed (neither with shift+click nor right+click on it)

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142285

--- Comment #3 from Jim Raykowski  ---
In ScrollBar::MouseButtonDown it is determined if primary button "warps the
slider" or the middle button. For me, the primary (left) button does the
"Scroll Here" using gtk3. For x11/win and qt5 it's the middle button.

-- 
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 142356] [accessibility] Save as HTML includes caption inside image

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142356

--- Comment #2 from stragu  ---
Created attachment 172158
  --> https://bugs.documentfoundation.org/attachment.cgi?id=172158=edit
ODT document with image and caption

Forgot to attach the problematic document.

Open, save as HTML, see gif file created along with HTML document.

Confirmed with 7.0.4.2, 7.1.3 and 7.2 alpha0+

-- 
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 142053] FILESAVE DOCX Chart data table export skips data series automatic name

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142053

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 142077] Absturz in: std::shared_ptr::operator=(std::shared_ptr const &)

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142077

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 141781] Freeze when attempting to insert an image using a hyperlink instead of a file

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141781

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 142084] Order inversion of accented letters when typed in table cells

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142084

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 142088] FILEOPEN lost latest version, needs to revert!

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142088

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 142072] Color name tooltips in Wayland are incorrectly placed in Draw

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142072

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 142222] Base crashes when trying to edit records

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=14

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 142070] Elements are hard to read when using dark GTK theme in Tabbed UI on Linux

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142070

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 133092] [META] Crash bugs

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092
Bug 133092 depends on bug 133378, which changed state.

Bug 133378 Summary: Crash if Print Preview is closed with User Interface 
“Groupedbar Compact”
https://bugs.documentfoundation.org/show_bug.cgi?id=133378

   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 133378] Crash if Print Preview is closed with User Interface “Groupedbar Compact”

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133378

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 142222] Base crashes when trying to edit records

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=14

--- 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 133378] Crash if Print Preview is closed with User Interface “Groupedbar Compact”

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133378

--- Comment #6 from QA Administrators  ---
Dear Harald Koester,

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 133868] Crash in: sclo.dll on running a basic macro to update 17 worksheets in calc

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133868

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 133868] Crash in: sclo.dll on running a basic macro to update 17 worksheets in calc

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133868

--- Comment #3 from QA Administrators  ---
Dear subprobate,

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 138318] Text boxes moved and cannot be resized or moved back to their original places

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138318

--- Comment #2 from QA Administrators  ---
Dear Paul,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
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 137983] Bug: footnote reference

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137983

--- Comment #2 from QA Administrators  ---
Dear Harry,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
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 137739] A ODS document does not print correctly

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137739

--- Comment #3 from QA Administrators  ---
Dear jfgoulet,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
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 128196] filenames containing '#' get truncated when saving to GVFS smb:// paths (Samba share), effectively causing silent data loss

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128196

--- Comment #3 from QA Administrators  ---
Dear pernegger,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
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 62624] Make the insertion of spacer text conditional on the existence of the associated item in a Bibliography Index/Table item

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62624

--- Comment #11 from QA Administrators  ---
Dear John Talbut,

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
https://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 124437] FORMATTING breaks after inserting graphic in linked frames

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124437

--- Comment #2 from QA Administrators  ---
Dear Eliot Glaser,

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
https://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 117591] Dragging slide from slide pane to taskbar and back locks up Impress

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117591

--- Comment #5 from QA Administrators  ---
Dear Aron Budea,

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
https://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 117087] FILEOPEN: Word OOXML equation layout missing newline on filter import

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117087

--- Comment #9 from QA Administrators  ---
Dear Lapo Luchini,

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
https://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 140727] text format toolbar highlight color selector button causes scroll

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140727

Harshita Nag  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 140727] text format toolbar highlight color selector button causes scroll

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140727

Harshita Nag  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Harshita Nag  ---
CONFIRMED on Ubuntu 18.04 LTS and LibreOffice 7.0.2.2

Version: 7.0.2.2
Build ID: 8349ace3c3162073abd90d81fd06dcfb6b36b994
CPU threads: 8; OS: Linux 5.3; UI render: default; VCL: gtk3
Locale: en-IN (en_IN); UI: 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 139768] The "no fill" checkbox in Highlight Color dialog does not show its actual status

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139768

--- Comment #6 from Harshita Nag  ---
Doesn't happen in 7.1.2.2 

Version: 7.1.2.2 / LibreOffice Community
Build ID: 8a45595d069ef5570103caea1b71cc9d82b2aae4
CPU threads: 8; OS: Linux 5.3; UI render: default; VCL: gtk3
Locale: en-IN (en_IN); UI: 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 139768] The "no fill" checkbox in Highlight Color dialog does not show its actual status

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139768

--- Comment #5 from Harshita Nag  ---
CONFIRMED on Ubuntu 18.04 LTS and LibreOffice 7.1.2.2

Version: 7.1.2.2 / LibreOffice Community
Build ID: 8a45595d069ef5570103caea1b71cc9d82b2aae4
CPU threads: 8; OS: Linux 5.3; UI render: default; VCL: gtk3
Locale: en-IN (en_IN); UI: 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 139768] The "no fill" checkbox in Highlight Color dialog does not show its actual status

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139768

--- Comment #4 from Harshita Nag  ---
CONFIRMED on Ubuntu 18.04 LTS and LibreOffice 7.0.5.2

Version: 7.0.5.2
Build ID: 64390860c6cd0aca4beafafcfd84613dd9dfb63a
CPU threads: 8; OS: Linux 5.3; UI render: default; VCL: gtk3
Locale: en-IN (en_IN); UI: 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 139768] The "no fill" checkbox in Highlight Color dialog does not show its actual status

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139768

--- Comment #3 from Harshita Nag  ---
CONFIRMED on Ubuntu 18.04 LTS and LibreOffice 6.4.7.2

Version: 6.4.7.2
Build ID: 639b8ac485750d5696d7590a72ef1b496725cfb5
CPU threads: 8; OS: Linux 5.3; UI render: default; VCL: gtk3; 
Locale: en-IN (en_IN); 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 139768] The "no fill" checkbox in Highlight Color dialog does not show its actual status

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139768

Harshita Nag  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 139768] The "no fill" checkbox in Highlight Color dialog does not show its actual status

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139768

Harshita Nag  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from Harshita Nag  ---
CONFIRMED on Ubuntu 18.04 LTS and LibreOffice 6.0.0.3


Version: 6.0.0.3
Build ID: 64a0f66915f38c6217de274f0aa8e15618924765
CPU threads: 8; OS: Linux 5.3; UI render: default; VCL: gtk2; 
Locale: en-IN (en_IN); Calc: group

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


[Libreoffice-bugs] [Bug 142354] Highlight top and bottom should ignore font dimensions when for space(-like) characters

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142354

--- Comment #3 from Harshita Nag  ---
CONFIRMED on Ubuntu 18.04 LTS and LibreOffice 6.0.0.3 (exactly reproduced)

Version: 6.0.0.3
Build ID: 64a0f66915f38c6217de274f0aa8e15618924765
CPU threads: 8; OS: Linux 5.3; UI render: default; VCL: gtk2; 
Locale: en-IN (en_IN); Calc: group

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


[Libreoffice-bugs] [Bug 142364] Crash when closing document after canceling chart wizard (Writer)

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142364

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 142354] Highlight top and bottom should ignore font dimensions when for space(-like) characters

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142354

--- Comment #2 from Harshita Nag  ---
Version: 5.1.6.2
Build ID: 07ac168c60a517dba0f0d7bc7540f5afa45f0909
CPU Threads: 8; OS Version: Linux 5.3; UI Render: default; 
Locale: en-IN (en_IN); Calc: group

In this, there are very slight extensions(on spaces) downwards.

-- 
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 142364] New: Crash when closing document after canceling chart wizard (Writer)

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142364

Bug ID: 142364
   Summary: Crash when closing document after canceling chart
wizard (Writer)
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: bibisected, bisected, haveBacktrace, regression
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@caesar.elte.hu
CC: caol...@redhat.com

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

In an empty Writer document:
- add a table,
- with the caret in the table, click the chart icon in the toolbar to add a
chart, this opens the chart wizard,
- cancel the wizard, and close the document (no need to save it).

=> Crash.

Observed using LO Version: 7.2.0.0.alpha1+
(c781776f3c79bbe3175b1452d26c79ebb931a500) / Ubuntu.
No crash in LO 7.1.0.3.
=> regression

Bibisected to the following commit using repo bibisect-linux-64-7.2. Adding CC:
to Caolán McNamara.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=1653bb9bffaa84a40b7d81a8277e887ea28df4e4
author  Caolán McNamara 2021-03-04 17:22:14
+
committer   Caolán McNamara 2021-03-11 17:42:22
+0100

remove intermediate containers in sidebars

-- 
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 142354] Highlight top and bottom should ignore font dimensions when for space(-like) characters

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142354

Harshita Nag  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 142354] Highlight top and bottom should ignore font dimensions when for space(-like) characters

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142354

--- Comment #1 from Harshita Nag  ---
CONFIRMED on Ubuntu 18.04 LTS and LibreOffice 7.1.2.2

Version: 7.1.2.2 / LibreOffice Community
Build ID: 8a45595d069ef5570103caea1b71cc9d82b2aae4
CPU threads: 8; OS: Linux 5.3; UI render: default; VCL: gtk3
Locale: en-IN (en_IN); UI: 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 142356] [accessibility] Save as HTML includes caption inside image

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142356

--- Comment #1 from Harshita Nag  ---
Can't reproduce this. 
Version: 7.0.4.2
Build ID: dcf040e67528d9187c66b2379df5ea4407429775
CPU threads: 8; OS: Linux 5.3; UI render: default; VCL: gtk3
Locale: en-IN (en_IN); UI: 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 142308] Wrong line wrapping of many PDF documents in Draw

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142308

--- Comment #6 from yury.dubin...@gmail.com ---
If text runs not being justified or wrapping to match the source PDF
representation is not a bug, then I see several public misconceptions here. 
- In many sources,  including libreofficehelp
(https://www.libreofficehelp.com/modify-edit-pdf-free-libreoffice-draw/),  is
mentioned as the first tool for fast PDF modification, especially on Linux. 
-  All Ubuntu versions since at least 2015 include Draw in the list of
recommended applications for opening PDFs.
Draw then needs to inform users that the PDF representation in Draw may not be
accurate.
GIMP and ImageMagic only render PDF to image and do it very accurately. Perhaps
Draw should give options: render to image with the guarantied layout, or render
to appropriate Draw objects.

-- 
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 142362] FILESAVE DOCX polygon with contour wrap is missing wrap polygon

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142362

Harshita Nag  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 OS|Windows (All)   |All
 Status|UNCONFIRMED |NEW

--- Comment #1 from Harshita Nag  ---
CONFIRMED on Ubuntu 18.04 LTS and LibreOffice 7.2.0.0.alpha0+


Version: 7.2.0.0.alpha0+ / LibreOffice Community
Build ID: 27911b0455d8dcc08a0702372492a6ce00250cb7
CPU threads: 8; OS: Linux 5.3; UI render: default; VCL: gtk3
Locale: en-IN (en_IN); UI: en-US
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2021-04-12_15:34:11
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 142363] (spam)

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142363

Ming Hua  changed:

   What|Removed |Added

Summary|Sexy Bangalore Escorts  |(spam)
Version|3.3.0 release   |unspecified

-- 
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 142363] Sexy Bangalore Escorts

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142363

Ming Hua  changed:

   What|Removed |Added

  Component|BASIC   |deletionRequest

-- 
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 142363] Sexy Bangalore Escorts

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142363

m.a.riosv  changed:

   What|Removed |Added

URL|http://www.bangaloreescort. |
   |com |

-- 
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 142363] Sexy Bangalore Escorts

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142363

m.a.riosv  changed:

   What|Removed |Added

 Resolution|--- |INVALID
 CC||miguelangelrv@libreoffice.o
   ||rg
 Status|UNCONFIRMED |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 141729] document content not displayed / instead showing grey overlay / blank region in writer and calc (macOS 11 aka 10.16 using 2.9 GHz Quad-Core Intel Core i7)

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141729

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #36 from Aron Budea  ---
(In reply to John Gerrish from comment #35)
> I installed "LibreOfficeDev_7.1.4.0.0_MacOS_x86-64.dmg" which was dated last
> night (2021-May-18 05:58 in my TZ).  
...
> Now Writer does NOT exhibit the problem.
Great, let's assume this bug is fixed. To be on the safe side, the first RC of
7.1.4 will be built, and should be available early next week, it might be worth
double-checking with that.

They'll be at the prerelease section of the download page:
https://www.libreoffice.org/download/download/
Or here:
https://dev-builds.libreoffice.org/pre-releases/

> Calc, behaves the same.  The early attempts at changing row or column size
As I wrote, please follow bug 142061 on this.

Based on the feedback, closing this bug report as WORKSFORME, if anyone else
still sees visual issues that isn't bug 142061 or another already reported bug,
please create a fresh report.

-- 
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 142363] Sexy Bangalore Escorts

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142363

Sexy Bangalore Escorts  changed:

   What|Removed |Added

URL||http://www.bangaloreescort.
   ||com

-- 
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 142305] FILEOPEN DOCX wrap is tight in LibreOffice but not in Word

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142305

--- Comment #6 from Regina Henschel  ---
(In reply to Timur from comment #5)
> Can you please comment on regression thing/commit. What was the change? ALG
> doesn't follow regressions, which is a pitty because explanation would be
> useful, even if he or any other dev who causes a regression wouldn't fix it.

I cannot identify something in the commits, which looks related to the problem
here. A comment would really be helpful.

I see the change in rendering not only for import from docx, but also for
odt-format. Might it be, that the change was intended for odt?

-- 
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 142363] New: Sexy Bangalore Escorts

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142363

Bug ID: 142363
   Summary: Sexy Bangalore Escorts
   Product: LibreOffice
   Version: 3.3.0 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: codellafemaleesco...@gmail.com

Description:
Sujata Roy not like other independent Sexy Bangalore Escorts who neglect the
responsibilities, etiquettes and professional aspects to serve gentlemen. I
offer companionship that gives you your money's worth. You don't waste your
money


Actual Results:
Sexy Bangalore Escorts

Expected Results:
Sexy Bangalore Escorts


Reproducible: Always


User Profile Reset: No



Additional Info:
https://www.bangaloreescorts.co

-- 
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 138764] Libre Office Writer highlighted text in light green transformed to standard yellow when the document is reopened

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138764

--- Comment #6 from m.a.riosv  ---
Retested works fine for me with:
Version: 7.1.3.2 (x64) / LibreOffice Community
Build ID: 47f78053abe362b9384784d31a6e56f8511eb1c1
CPU threads: 4; OS: Windows 10.0 Build 21382; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL

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


[Libreoffice-bugs] [Bug 142362] New: FILESAVE DOCX polygon with contour wrap is missing wrap polygon

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142362

Bug ID: 142362
   Summary: FILESAVE DOCX polygon with contour wrap is missing
wrap polygon
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

Created attachment 172156
  --> https://bugs.documentfoundation.org/attachment.cgi?id=172156=edit
Document to reproduce the error

Open attached document and save it in docx-format. Open the saved file, you can
use LibreOffice or Word. Notice the contour is missing.

Open the saved file in editor and look at the v:shape element. It is missing
the wrapcoords attribute.

BTW, I wonder, why it is not saved with mc:AlternateContent. I have expected a
w:drawing > w:wrapTight > wp:wrapPolygon and a:custGeom in the a:graphic part
in addition to a fallback with v:shape.

-- 
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 52586] Mail Merge doesn't seem to respect a standard data sources filter - steps in Comment 4 (workaround: use filter in address list)

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=52586

Timur  changed:

   What|Removed |Added

Version|7.0.3.1 release |3.5.0 release

-- 
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 125202] Fileopen: Lines from MSO xlsx are misplaced in Calc because merged cell font and spacing are wrong

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125202

Timur  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 142305] FILEOPEN DOCX wrap is tight in LibreOffice but not in Word

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142305

--- Comment #5 from Timur  ---
Hi Regina. I'm aware of Doc/X difference, I just have a habit of keeping them
both in a bug, not to be overlooked, until we see what's gonna happen. I say
it's always easy to open a new one, once one is resolved and sanple and
explanation are there. 

Can you please comment on regression thing/commit. What was the change? ALG
doesn't follow regressions, which is a pitty because explanation would be
useful, even if he or any other dev who causes a regression wouldn't fix it.

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


[Libreoffice-bugs] [Bug 76021] FORMATTING: Libre Office Writer: save As HTML results in interlaced and tags

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76021

--- Comment #21 from Tyco72  ---
(In reply to stragu from comment #20)
Yes you are right, and the bug affects actually also LO 6.x. I didn't update my
description. 
Now I am sticking still with LO 6.4 : For me it doesn't worth the effort to
update LO until this bug is not fixed. It is a nightmare to use LO to work
correctly with HTML texts.

This bug hasn't been even assigned to someone. Do you have any news about a fix
for this? Is it possible to change the severity at least to 'major'?

-- 
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 142258] UI: Cross-reference field names in navigator have a rather impossible naming to work with

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142258

--- Comment #4 from Jim Raykowski  ---
Please see effort to improve the Navigator Fields display here:
https://bugs.documentfoundation.org/show_bug.cgi?id=137741#c16

-- 
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 138764] Libre Office Writer highlighted text in light green transformed to standard yellow when the document is reopened

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138764

Timur  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #5 from Timur  ---
Please explain in regard to previous comment and bugs.

-- 
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 142361] FILESAVE DOCX shadow of rotated shape has wrong direction in Word

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142361

--- Comment #1 from Regina Henschel  ---
Created attachment 172155
  --> https://bugs.documentfoundation.org/attachment.cgi?id=172155=edit
Screenshot compare left LO vs right MSO

The screenshot shows LibreOffice on the left side and MS Office on the right
side.

-- 
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 142361] New: FILESAVE DOCX shadow of rotated shape has wrong direction in Word

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142361

Bug ID: 142361
   Summary: FILESAVE DOCX shadow of rotated shape has wrong
direction in Word
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

Created attachment 172154
  --> https://bugs.documentfoundation.org/attachment.cgi?id=172154=edit
File to reproduce wrong shadow direction

Open attached document and save it in docx-format.
Open the saved document in Word.
Error: In the original document the shadow goes bottom-right from the shape, in
Word it goes bottom-left.

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


[Libreoffice-commits] core.git: Branch 'feature/wasm' - config_host.mk.in i18npool/source sal/textenc solenv/bin solenv/gbuild

2021-05-18 Thread Armin Le Grand (Allotropia) (via logerrit)
 config_host.mk.in |1 +
 i18npool/source/breakiterator/breakiteratorImpl.cxx   |4 
 i18npool/source/collator/collator_unicode.cxx |4 
 i18npool/source/registerservices/registerservices.cxx |4 
 sal/textenc/tables.cxx|4 
 solenv/bin/native-code.py |4 
 solenv/gbuild/gbuild.mk   |1 +
 7 files changed, 22 insertions(+)

New commits:
commit 10963e79ac7d4b4e622ad2c12e041252d66b07c5
Author: Armin Le Grand (Allotropia) 
AuthorDate: Tue May 18 21:46:11 2021 +0200
Commit: Armin Le Grand (Allotropia) 
CommitDate: Tue May 18 21:46:11 2021 +0200

Wasm optional reduce created locales

Change-Id: I00fdea6af81aff0d03d2f7106c99d9a745151588

diff --git a/config_host.mk.in b/config_host.mk.in
index 0312597f6757..59acfac79a55 100644
--- a/config_host.mk.in
+++ b/config_host.mk.in
@@ -213,6 +213,7 @@ export ENABLE_WASM_STRIP_DBACCESS=@ENABLE_WASM_STRIP@
 export ENABLE_WASM_STRIP_ACCESSIBILITY=@ENABLE_WASM_STRIP@
 export ENABLE_WASM_STRIP_UCPHELP=@ENABLE_WASM_STRIP@
 export ENABLE_WASM_STRIP_EPUB=@ENABLE_WASM_STRIP@
+export ENABLE_WASM_STRIP_LOCALES=@ENABLE_WASM_STRIP@
 export ENABLE_WERROR=@ENABLE_WERROR@
 export ENDIANNESS=@ENDIANNESS@
 export EPM=@EPM@
diff --git a/i18npool/source/breakiterator/breakiteratorImpl.cxx 
b/i18npool/source/breakiterator/breakiteratorImpl.cxx
index a449be4d17fe..075f6fb023fe 100644
--- a/i18npool/source/breakiterator/breakiteratorImpl.cxx
+++ b/i18npool/source/breakiterator/breakiteratorImpl.cxx
@@ -33,6 +33,10 @@ using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::i18n;
 using namespace ::com::sun::star::lang;
 
+#ifdef ENABLE_WASM_STRIP_LOCALES
+#define WITH_LOCALE_ALL 0
+#endif
+
 namespace i18npool {
 
 BreakIteratorImpl::BreakIteratorImpl( const Reference < XComponentContext >& 
rxContext ) : m_xContext( rxContext )
diff --git a/i18npool/source/collator/collator_unicode.cxx 
b/i18npool/source/collator/collator_unicode.cxx
index 8c8255a18229..4cefd5c37fbf 100644
--- a/i18npool/source/collator/collator_unicode.cxx
+++ b/i18npool/source/collator/collator_unicode.cxx
@@ -36,6 +36,10 @@ using namespace ::com::sun::star::i18n;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::uno;
 
+#ifdef ENABLE_WASM_STRIP_LOCALES
+#define WITH_LOCALE_ALL 0
+#endif
+
 namespace i18npool {
 
 constexpr OUStringLiteral implementationName = 
u"com.sun.star.i18n.Collator_Unicode";
diff --git a/i18npool/source/registerservices/registerservices.cxx 
b/i18npool/source/registerservices/registerservices.cxx
index 878fc3c3de50..d6ace3624c69 100644
--- a/i18npool/source/registerservices/registerservices.cxx
+++ b/i18npool/source/registerservices/registerservices.cxx
@@ -60,6 +60,10 @@ using namespace ::com::sun::star;
 using namespace ::com::sun::star::i18n;
 using namespace i18npool;
 
+#ifdef ENABLE_WASM_STRIP_LOCALES
+#define WITH_LOCALE_ALL 0
+#endif
+
 #define IMPL_CREATEINSTANCE( ImplName ) \
 static uno::Reference< uno::XInterface >   \
 ImplName##_CreateInstance(   \
diff --git a/sal/textenc/tables.cxx b/sal/textenc/tables.cxx
index 075f1d56f902..11db1dbf5eed 100644
--- a/sal/textenc/tables.cxx
+++ b/sal/textenc/tables.cxx
@@ -27,6 +27,10 @@
 #include 
 #include 
 
+#ifdef ENABLE_WASM_STRIP_LOCALES
+#define WITH_LOCALE_ALL 0
+#endif
+
 #define NOTABUNI_START 0xFF
 #define NOTABUNI_END 0x00
 
diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py
index e8ef67571c7a..47354e4361cb 100755
--- a/solenv/bin/native-code.py
+++ b/solenv/bin/native-code.py
@@ -999,6 +999,10 @@ print ("""/*
 #include 
 #include 
 
+#ifdef ENABLE_WASM_STRIP_LOCALES
+#define WITH_LOCALE_ALL 0
+#endif
+
 """)
 if not options.pure_c:
 print ("""extern "C" {""")
diff --git a/solenv/gbuild/gbuild.mk b/solenv/gbuild/gbuild.mk
index beccae4cbbf5..c2aae611630c 100644
--- a/solenv/gbuild/gbuild.mk
+++ b/solenv/gbuild/gbuild.mk
@@ -234,6 +234,7 @@ gb_GLOBALDEFS += -DENABLE_WASM_STRIP_DBACCESS
 gb_GLOBALDEFS += -DENABLE_WASM_STRIP_ACCESSIBILITY
 gb_GLOBALDEFS += -DENABLE_WASM_STRIP_UCPHELP
 gb_GLOBALDEFS += -DENABLE_WASM_STRIP_EPUB
+gb_GLOBALDEFS += -DENABLE_WASM_STRIP_LOCALES
 endif
 
 ifeq ($(gb_ENABLE_DBGUTIL),$(true))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: compilerplugins/clang drawinglayer/qa sc/source sfx2/inc sw/inc sw/source xmlscript/qa

2021-05-18 Thread Noel Grandin (via logerrit)
 compilerplugins/clang/unusedfields.cxx  |   54 
 drawinglayer/qa/unit/vclmetafileprocessor2d.cxx |   15 --
 sc/source/core/data/table2.cxx  |4 -
 sfx2/inc/commandpopup/CommandPopup.hxx  |1 
 sfx2/inc/sidebar/TitleBar.hxx   |1 
 sw/inc/calc.hxx |1 
 sw/inc/tox.hxx  |8 +--
 sw/source/core/crsr/crstrvl.cxx |2 
 xmlscript/qa/cppunit/test.cxx   |   10 
 9 files changed, 51 insertions(+), 45 deletions(-)

New commits:
commit 3d36ff1a1d94bcdb6facf12eec00a532b6640880
Author: Noel Grandin 
AuthorDate: Tue May 18 16:00:09 2021 +0200
Commit: Noel Grandin 
CommitDate: Tue May 18 21:42:10 2021 +0200

loplugin:unusedfields

Change-Id: Ib574403a7f7f8b11c6263c9c19ec6b65c8374ddd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115753
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/compilerplugins/clang/unusedfields.cxx 
b/compilerplugins/clang/unusedfields.cxx
index 7a8df9939d02..0c2bdbc77410 100644
--- a/compilerplugins/clang/unusedfields.cxx
+++ b/compilerplugins/clang/unusedfields.cxx
@@ -165,6 +165,8 @@ public:
 
 private:
 MyFieldInfo niceName(const FieldDecl*);
+bool ignoreLocation(SourceLocation loc);
+bool checkIgnoreLocation(SourceLocation loc);
 void checkTouchedFromOutside(const FieldDecl* fieldDecl, const Expr* 
memberExpr);
 void checkIfReadFrom(const FieldDecl* fieldDecl, const Expr* memberExpr);
 void checkIfWrittenTo(const FieldDecl* fieldDecl, const Expr* memberExpr);
@@ -281,10 +283,46 @@ MyFieldInfo UnusedFields::niceName(const FieldDecl* 
fieldDecl)
 return aInfo;
 }
 
+/**
+ * Our need to see everything conflicts with the PCH code in 
pluginhandler::ignoreLocation,
+ * so we have to do this ourselves.
+ */
+bool UnusedFields::ignoreLocation(SourceLocation loc)
+{
+static std::unordered_map checkedMap;
+auto it = checkedMap.find(loc);
+if (it != checkedMap.end())
+return it->second;
+bool ignore = checkIgnoreLocation(loc);
+checkedMap.emplace(loc, ignore);
+return ignore;
+}
+
+bool UnusedFields::checkIgnoreLocation(SourceLocation loc)
+{
+// simplified form of the code in PluginHandler::checkIgnoreLocation
+SourceLocation expansionLoc = compiler.getSourceManager().getExpansionLoc( 
loc );
+if( compiler.getSourceManager().isInSystemHeader( expansionLoc ))
+return true;
+PresumedLoc presumedLoc = compiler.getSourceManager().getPresumedLoc( 
expansionLoc );
+if( presumedLoc.isInvalid())
+return true;
+const char* bufferName = presumedLoc.getFilename();
+if (bufferName == NULL
+|| loplugin::hasPathnamePrefix(bufferName, SRCDIR "/external/")
+|| loplugin::hasPathnamePrefix(bufferName, WORKDIR "/"))
+return true;
+if( loplugin::hasPathnamePrefix(bufferName, BUILDDIR "/")
+|| loplugin::hasPathnamePrefix(bufferName, SRCDIR "/") )
+return false; // ok
+return true;
+}
+
+
 bool UnusedFields::VisitFieldDecl( const FieldDecl* fieldDecl )
 {
 fieldDecl = fieldDecl->getCanonicalDecl();
-if (ignoreLocation( fieldDecl )) {
+if (ignoreLocation( compat::getBeginLoc(fieldDecl) )) {
 return true;
 }
 // ignore stuff that forms part of the stable URE interface
@@ -392,7 +430,7 @@ bool startswith(const std::string& rStr, const char* 
pSubStr)
 bool UnusedFields::TraverseCXXConstructorDecl(CXXConstructorDecl* 
cxxConstructorDecl)
 {
 auto copy = insideMoveOrCopyOrCloneDeclParent;
-if (!ignoreLocation(cxxConstructorDecl) && 
cxxConstructorDecl->isThisDeclarationADefinition())
+if (!ignoreLocation(compat::getBeginLoc(cxxConstructorDecl)) && 
cxxConstructorDecl->isThisDeclarationADefinition())
 {
 if (cxxConstructorDecl->isCopyOrMoveConstructor())
 insideMoveOrCopyOrCloneDeclParent = 
cxxConstructorDecl->getParent();
@@ -406,7 +444,7 @@ bool UnusedFields::TraverseCXXMethodDecl(CXXMethodDecl* 
cxxMethodDecl)
 {
 auto copy1 = insideMoveOrCopyOrCloneDeclParent;
 auto copy2 = insideFunctionDecl;
-if (!ignoreLocation(cxxMethodDecl) && 
cxxMethodDecl->isThisDeclarationADefinition())
+if (!ignoreLocation(compat::getBeginLoc(cxxMethodDecl)) && 
cxxMethodDecl->isThisDeclarationADefinition())
 {
 if (cxxMethodDecl->isCopyAssignmentOperator()
 || cxxMethodDecl->isMoveAssignmentOperator()
@@ -433,7 +471,7 @@ bool UnusedFields::TraverseFunctionDecl(FunctionDecl* 
functionDecl)
 auto copy1 = insideStreamOutputOperator;
 auto copy2 = insideFunctionDecl;
 auto copy3 = insideMoveOrCopyOrCloneDeclParent;
-if (functionDecl->getLocation().isValid() && !ignoreLocation(functionDecl) 
&& functionDecl->isThisDeclarationADefinition())
+if (functionDecl->getLocation().isValid() && 
!ignoreLocation(compat::getBeginLoc(functionDecl)) && 

[Libreoffice-bugs] [Bug 142360] functions are no longer available in the base (database tool) component

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142360

--- Comment #9 from Michael Chudobiak  ---
Huh. I guess it is a Fedora problem. Deleting .config/libreoffice didn't help.

-- 
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 142360] functions are no longer available in the base (database tool) component

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142360

--- Comment #8 from Robert Großkopf  ---
Have tested it also with the package of my distribution OpenSUSE 15.2 (LO
7.1.3.2). All functions will be shown there also.

-- 
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 118883] Copying shapes between Draw/Writer not working (LibO 6.2)

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118883

--- Comment #10 from Commit Notification 
 ---
Xisco Fauli committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/67b5e875c65c5ed72a170a03d33992edd3802c75

tdf#118883: sw: Add UItest

It will be available in 7.2.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: sw/qa

2021-05-18 Thread Xisco Fauli (via logerrit)
 sw/qa/uitest/writer_tests6/tdf118883.py |   40 
 1 file changed, 40 insertions(+)

New commits:
commit 67b5e875c65c5ed72a170a03d33992edd3802c75
Author: Xisco Fauli 
AuthorDate: Tue May 18 16:56:33 2021 +0200
Commit: Xisco Fauli 
CommitDate: Tue May 18 21:16:11 2021 +0200

tdf#118883: sw: Add UItest

Change-Id: I38e7c1a0accf569a70d1d3bc5e04042538afadff
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115756
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/sw/qa/uitest/writer_tests6/tdf118883.py 
b/sw/qa/uitest/writer_tests6/tdf118883.py
new file mode 100644
index ..300412344fb0
--- /dev/null
+++ b/sw/qa/uitest/writer_tests6/tdf118883.py
@@ -0,0 +1,40 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+from uitest.framework import UITestCase
+from libreoffice.uno.propertyvalue import mkPropertyValues
+
+class Tdf118883(UITestCase):
+
+   def test_tdf118883(self):
+self.ui_test.create_doc_in_start_center("writer")
+
+# Insert shape with Ctrl key
+xArgs = mkPropertyValues({"KeyModifier": 8192})
+
self.xUITest.executeCommandWithParameters(".uno:BasicShapes.rectangle", xArgs)
+
+writer_document = self.ui_test.get_component()
+self.assertEqual(1, writer_document.DrawPage.getCount())
+
+self.xUITest.executeCommand(".uno:Copy")
+
+self.ui_test.execute_dialog_through_command(".uno:CloseDoc")
+xDialog = self.xUITest.getTopFocusWindow()
+xDiscardBtn = xDialog.getChild("discard")
+self.ui_test.close_dialog_through_button(xDiscardBtn)
+
+calc_doc = self.ui_test.create_doc_in_start_center("calc")
+
+self.xUITest.executeCommand(".uno:Paste")
+
+calc_document = self.ui_test.get_component()
+
+# Without the fix in place, this test would have failed wiht
+# AssertionError: 1 != 0
+self.assertEqual(1, calc_document.DrawPages[0].getCount())
+
+self.ui_test.close_doc()
+# vim: set shiftwidth=4 softtabstop=4 expandtab:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 118883] Copying shapes between Draw/Writer not working (LibO 6.2)

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118883

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.2.0|target:6.2.0 target:7.2.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 142360] functions are no longer available in the base (database tool) component

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142360

Michael Chudobiak  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 142360] functions are no longer available in the base (database tool) component

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142360

--- Comment #7 from Michael Chudobiak  ---
Also reported at https://bugzilla.redhat.com/show_bug.cgi?id=1961805

-- 
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 142222] Base crashes when trying to edit records

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=14

--- Comment #4 from Cecil Carpenter  ---
I should have mentioned that I did receive 2 messages while running LO Base
7.1.3.  The were as follows:

(soffice:30900): Gtk-CRITICAL **: 14:22:21.658: gtk_tree_model_iter_nth_child:
assertion 'n >= 0' failed

(soffice:30900): Gtk-CRITICAL **: 14:22:21.659: gtk_list_store_remove:
assertion 'iter_is_valid (iter, list_store)' failed

These errors, while listed did not cause the program to crash.  I have not
tried to reseasrch these messages as yet.

-- 
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 142360] functions are no longer available in the base (database tool) component

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142360

--- Comment #6 from Michael Chudobiak  ---
Well, it wouldn't be a big surprise if it was a distro packaging issue. (This
is seen across multiple desktops and users.)

Personally, I have:

[mjc@daisy ~]$ rpm -qa | grep libreoffice | sort
libreoffice-base-7.1.3.2-1.fc34.x86_64
libreoffice-calc-7.1.3.2-1.fc34.x86_64
libreoffice-core-7.1.3.2-1.fc34.x86_64
libreoffice-data-7.1.3.2-1.fc34.noarch
libreoffice-draw-7.1.3.2-1.fc34.x86_64
libreoffice-emailmerge-7.1.3.2-1.fc34.x86_64
libreoffice-filters-7.1.3.2-1.fc34.x86_64
libreoffice-graphicfilter-7.1.3.2-1.fc34.x86_64
libreoffice-gtk3-7.1.3.2-1.fc34.x86_64
libreoffice-help-en-7.1.3.2-1.fc34.x86_64
libreoffice-impress-7.1.3.2-1.fc34.x86_64
libreoffice-langpack-en-7.1.3.2-1.fc34.x86_64
libreoffice-math-7.1.3.2-1.fc34.x86_64
libreoffice-ogltrans-7.1.3.2-1.fc34.x86_64
libreoffice-opensymbol-fonts-7.1.3.2-1.fc34.noarch
libreoffice-pdfimport-7.1.3.2-1.fc34.x86_64
libreoffice-pyuno-7.1.3.2-1.fc34.x86_64
libreoffice-ure-7.1.3.2-1.fc34.x86_64
libreoffice-ure-common-7.1.3.2-1.fc34.noarch
libreoffice-writer-7.1.3.2-1.fc34.x86_64
libreoffice-x11-7.1.3.2-1.fc34.x86_64
libreoffice-xsltfilter-7.1.3.2-1.fc34.x86_64

-- 
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 142360] functions are no longer available in the base (database tool) component

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142360

Robert Großkopf  changed:

   What|Removed |Added

 CC||rob...@familiegrosskopf.de
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #5 from Robert Großkopf  ---
No problem to see all the functions here with LO 7.1.3.2 on OpenSUSE 15.2 64bit
rpm Linux.
I'm using the original packages of LO. Which packages did you install?

-- 
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 128015] Hightlight color "watercan" ends unexpectedly

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128015

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks||142355


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=142355
[Bug 142355] [META] Text highlighting issues
-- 
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 142355] [META] Text highlighting issues

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142355

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||128015


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=128015
[Bug 128015] Hightlight color "watercan" ends unexpectedly
-- 
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 128015] Hightlight color "watercan" ends unexpectedly

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128015

Eyal Rozenberg  changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|UNCONFIRMED |RESOLVED

--- Comment #5 from Eyal Rozenberg  ---
> Actual: The watercan stops working after a few selections (usually one or
> two)

I think it stops once you single-click without dragging in one spot. If you
click-and-drag, you can go on doing that for as long as you like.

Marking as INVALID, but - Samuel - feel free to reopen if you feel this is
inappropriate behavior.

-- 
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 142355] [META] Text highlighting issues

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142355

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||138345


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138345
[Bug 138345] FILESAVE MS formats: Must not save char background as highlight in
char styles. Only MS WORD problem
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: emfio/qa tools/source

2021-05-18 Thread Bartosz Kosiorek (via logerrit)
 emfio/qa/cppunit/emf/EmfImportTest.cxx |   15 
++
 emfio/qa/cppunit/emf/data/TestArcInsideWronglyDefinedRectangle.emf |binary
 tools/source/generic/poly.cxx  |9 
--
 3 files changed, 21 insertions(+), 3 deletions(-)

New commits:
commit 39369c6e67dffe04acc4abb678c1a94526237fd8
Author: Bartosz Kosiorek 
AuthorDate: Tue May 18 17:36:21 2021 +0200
Commit: Bartosz Kosiorek 
CommitDate: Tue May 18 20:42:27 2021 +0200

tdf#55007 tdf#142263 tdf#142268 EMF Properly display ARC and CHORD

With previous implementation the ARC, ARCTO and CHORD were
not displayed if the corners of rectangle was switched.

With this patch the shapes are always displayed correctly.

Change-Id: Ie8ac7af812298c0b96c3b5af417117784f128ce1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115757
Tested-by: Jenkins
Reviewed-by: Bartosz Kosiorek 

diff --git a/emfio/qa/cppunit/emf/EmfImportTest.cxx 
b/emfio/qa/cppunit/emf/EmfImportTest.cxx
index fceb43b30215..64c7effa1baa 100644
--- a/emfio/qa/cppunit/emf/EmfImportTest.cxx
+++ b/emfio/qa/cppunit/emf/EmfImportTest.cxx
@@ -53,6 +53,7 @@ class Test : public test::BootstrapFixture, public 
XmlTestTools, public unotest:
 void TestTextMapMode();
 void TestEnglishMapMode();
 void TestRectangleWithModifyWorldTransform();
+void TestArcInsideWronglyDefinedRectangle();
 void TestChordWithModifyWorldTransform();
 void TestEllipseWithSelectClipPath();
 void TestEllipseXformIntersectClipRect();
@@ -81,6 +82,7 @@ public:
 CPPUNIT_TEST(TestTextMapMode);
 CPPUNIT_TEST(TestEnglishMapMode);
 CPPUNIT_TEST(TestRectangleWithModifyWorldTransform);
+CPPUNIT_TEST(TestArcInsideWronglyDefinedRectangle);
 CPPUNIT_TEST(TestChordWithModifyWorldTransform);
 CPPUNIT_TEST(TestEllipseWithSelectClipPath);
 CPPUNIT_TEST(TestEllipseXformIntersectClipRect);
@@ -360,6 +362,19 @@ void Test::TestChordWithModifyWorldTransform()
 assertXPathContent(pDocument, 
"/primitive2D/metafile/transform/polygonstroke/polygon", "590,448 436,541 
382,598 361,643 385,710 430,731 654,725 919,628");
 }
 
+void Test::TestArcInsideWronglyDefinedRectangle()
+{
+// tdf#142268 EMF import test with records: ARC
+Primitive2DSequence aSequence = 
parseEmf(u"/emfio/qa/cppunit/emf/data/TestArcInsideWronglyDefinedRectangle.emf");
+CPPUNIT_ASSERT_EQUAL(1, static_cast(aSequence.getLength()));
+drawinglayer::Primitive2dXmlDump dumper;
+xmlDocUniquePtr pDocument = 
dumper.dumpAndParse(comphelper::sequenceToContainer(aSequence));
+CPPUNIT_ASSERT (pDocument);
+
+assertXPath(pDocument, "/primitive2D/metafile/transform/polygonhairline", 
"color", "#00");
+assertXPathContent(pDocument, 
"/primitive2D/metafile/transform/polygonhairline/polygon", "1630,1460 1800,1530 
1850,1540 1980,1540 2030,1530 2170,1470 2220,1440 2330,1330 2380,1240 2420,1140 
2430,1060 2430,950 2420,930 2410,870 2410,850 2380,770 2290,640 2120,520 
2090,510 2070,510 2040,500 2020,490 1970,480 1860,480 1760,500 1670,540 
1600,580 1520,660 1510,680 1480,720 1460,740 1450,760");
+}
+
 void Test::TestEllipseWithSelectClipPath()
 {
 // EMF import test with records: RECTANGLE, BEGINPATH, ENDPATH, ELLIPSE
diff --git a/emfio/qa/cppunit/emf/data/TestArcInsideWronglyDefinedRectangle.emf 
b/emfio/qa/cppunit/emf/data/TestArcInsideWronglyDefinedRectangle.emf
new file mode 100644
index ..3a785fba6cac
Binary files /dev/null and 
b/emfio/qa/cppunit/emf/data/TestArcInsideWronglyDefinedRectangle.emf differ
diff --git a/tools/source/generic/poly.cxx b/tools/source/generic/poly.cxx
index 292247478aac..88a534660894 100644
--- a/tools/source/generic/poly.cxx
+++ b/tools/source/generic/poly.cxx
@@ -230,11 +230,14 @@ ImplPolygon::ImplPolygon( const tools::Rectangle& rBound, 
const Point& rStart, c
 const auto nWidth = rBound.GetWidth();
 const auto nHeight = rBound.GetHeight();
 
-if( ( nWidth > 1 ) && ( nHeight > 1 ) )
+if( ( nWidth != 0 ) && ( nHeight != 0 ) )
 {
 const Point aCenter( rBound.Center() );
-const auto nRadX = o3tl::saturating_sub(aCenter.X(), rBound.Left());
-const auto nRadY = o3tl::saturating_sub(aCenter.Y(), rBound.Top());
+// tdf#142268 Get Top Left corner of rectangle (the rectangle is not 
always correctly created)
+const auto aBoundLeft = rBound.Left() < aCenter.X() ? rBound.Left() : 
rBound.Right();
+const auto aBoundTop = rBound.Top() < aCenter.Y() ? rBound.Top() : 
rBound.Bottom();
+const auto nRadX = o3tl::saturating_sub(aCenter.X(), aBoundLeft);
+const auto nRadY = o3tl::saturating_sub(aCenter.Y(), aBoundTop);
 sal_uInt16  nPoints;
 
 tools::Long nRadXY;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 142355] [META] Text highlighting issues

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142355

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||138764


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138764
[Bug 138764] Libre Office Writer highlighted text in light green transformed to
standard yellow when the document is reopened
-- 
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 138764] Libre Office Writer highlighted text in light green transformed to standard yellow when the document is reopened

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138764

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks||142355


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=142355
[Bug 142355] [META] Text highlighting issues
-- 
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 142222] Base crashes when trying to edit records

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=14

--- Comment #3 from Cecil Carpenter  ---
I installed Libreoffice 7.1.3, and the problem is no longer present.  I can
replace my distro LO (6.4.7.2)  with LO 7.1.3, but the bug still remains in
6.4.7.2 which is the current version for Ubuntu 20.04.  Shouldn't this problem
be fixed in 6.4.7.2?  If there is a way I can provide more information through
logs or tracing, I will be happy to do that  Just let me know.  Thanks.

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


RE: Infra call on Tue, May 18 at 16:30 UTC

2021-05-18 Thread Jonathan Aquilina
Hi Guilhem,

Can you provide me with an update as to the firewall side of things has 
something been started with nftables? I am asking as I will not be able attend 
to todays meeting due to some personal medical issues that I am dealing with.

Regards,
Jonathan


-Original Message-
From: LibreOffice  On Behalf Of 
Guilhem Moulin
Sent: 17 May 2021 00:59
To: webs...@global.libreoffice.org; proje...@global.libreoffice.org; 
libreoffice@lists.freedesktop.org
Cc: hostmas...@documentfoundation.org
Subject: Infra call on Tue, May 18 at 16:30 UTC

Hi there,

The next infra call will take place at `date -d "Tue, 18 May 2021 16:30 UTC"`
(18:30 Berlin time).

We'll meet at https://jitsi.documentfoundation.org/infra and write the minutes 
to https://pad.documentfoundation.org/p/infra .  Agenda TBA.

See you there!
Cheers,
--
Guilhem.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 142296] Hyperlinks set on a graphic are not exported in PDF documents

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142296

--- Comment #4 from psidiumcode  ---
I could reproduce it in attachment 172105 and in a new document. 

Version: 7.0.5.2
Build ID: 64390860c6cd0aca4beafafcfd84613dd9dfb63a
CPU threads: 12; OS: Mac OS X 10.15.7; UI render: default; VCL: osx
Locale: en-GB (en_GB.UTF-8); UI: en-US
Calc: threaded

Version: 7.2.0.0.alpha1+ / LibreOffice Community
Build ID: b1c0734ffe0f395757b6e0cea7830d820231afeb
CPU threads: 12; OS: Mac OS X 10.15.7; UI render: default; VCL: osx
Locale: en-GB (en_GB.UTF-8); UI: 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 142296] Hyperlinks set on a graphic are not exported in PDF documents

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142296

psidiumcode  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #3 from psidiumcode  ---
I could reproduce it in attachment 172105 and in a new document. 

Version: 7.0.5.2
Build ID: 64390860c6cd0aca4beafafcfd84613dd9dfb63a
CPU threads: 12; OS: Mac OS X 10.15.7; UI render: default; VCL: osx
Locale: en-GB (en_GB.UTF-8); UI: en-US
Calc: threaded

Version: 7.2.0.0.alpha1+ / LibreOffice Community
Build ID: b1c0734ffe0f395757b6e0cea7830d820231afeb
CPU threads: 12; OS: Mac OS X 10.15.7; UI render: default; VCL: osx
Locale: en-GB (en_GB.UTF-8); UI: 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-commits] core.git: editeng/source vcl/source

2021-05-18 Thread Noel Grandin (via logerrit)
 editeng/source/editeng/impedit.cxx |2 +-
 vcl/source/window/brdwin.cxx   |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 8cf56338a96c77f4712130cc775d57410bd9b623
Author: Noel Grandin 
AuthorDate: Tue May 18 18:13:04 2021 +0200
Commit: Noel Grandin 
CommitDate: Tue May 18 20:23:41 2021 +0200

fix some casts

after
commit 9090dc1f3b27195f5defd35586ac79357992be21
Date:   Mon Jan 18 18:27:19 2021 +0200
split OutputDevice from Window

Change-Id: I2622c9814ec18c98364a7eb18084759f17c80f14
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115762
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/editeng/source/editeng/impedit.cxx 
b/editeng/source/editeng/impedit.cxx
index 8e99f56156bc..bf7ac05e868e 100644
--- a/editeng/source/editeng/impedit.cxx
+++ b/editeng/source/editeng/impedit.cxx
@@ -701,7 +701,7 @@ void ImpEditView::ImplDrawHighlightRect( OutputDevice& 
rTarget, const Point& rDo
 }
 else
 {
-vcl::Window* pWindow = dynamic_cast();
+vcl::Window* pWindow = rTarget.GetOwnerWindow();
 
 if (pWindow)
 {
diff --git a/vcl/source/window/brdwin.cxx b/vcl/source/window/brdwin.cxx
index e343a7bd4ae1..3fd3503dab80 100644
--- a/vcl/source/window/brdwin.cxx
+++ b/vcl/source/window/brdwin.cxx
@@ -80,7 +80,7 @@ static void ImplDrawBrdWinSymbolButton( vcl::RenderContext* 
pDev,
 nState &= ~DrawButtonFlags::Highlight;
 
 tools::Rectangle aTempRect;
-vcl::Window *pWin = dynamic_cast< vcl::Window* >(pDev);
+vcl::Window *pWin = pDev->GetOwnerWindow();
 if( pWin )
 {
 if( bMouseOver )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 142360] functions are no longer available in the base (database tool) component

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142360

--- Comment #4 from Michael Chudobiak  ---
Created attachment 172147
  --> https://bugs.documentfoundation.org/attachment.cgi?id=172147=edit
GOOD - fc33 calc function wizard. Works fine.

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


[Libreoffice-bugs] [Bug 141942] Paste special dialog buttons too small and similar

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141942
Bug 141942 depends on bug 142337, which changed state.

Bug 142337 Summary: 'gen' backend Button height doesn't take vertically aligned 
text into account
https://bugs.documentfoundation.org/show_bug.cgi?id=142337

   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 142360] functions are no longer available in the base (database tool) component

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142360

--- Comment #3 from Michael Chudobiak  ---
Created attachment 172146
  --> https://bugs.documentfoundation.org/attachment.cgi?id=172146=edit
GOOD - fc34 calc function wizard. Works fine.

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


[Libreoffice-ux-advise] [Bug 141942] Paste special dialog buttons too small and similar

2021-05-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141942
Bug 141942 depends on bug 142337, which changed state.

Bug 142337 Summary: 'gen' backend Button height doesn't take vertically aligned 
text into account
https://bugs.documentfoundation.org/show_bug.cgi?id=142337

   What|Removed |Added

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

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


  1   2   3   4   >