[Libreoffice-bugs] [Bug 86321] EDITING, FORMATTING: diagram didn't automatic update when change variable (steps in comment 28)

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

--- Comment #116 from matthewn...@yahoo.co.uk ---
Referring to new observation of cell value errors Comment 112 Comment 114 and
Comment 115 I suggest moving those reports to Bugs about autocalculate instead.

The Chart update is (in fact) working and shows calculation bugs.  Bug 125320
Bug 125052 or Bug 128329 expressed in new Calc 7 versions also.

With Windows + OpenCL allowed, Reset User Profile, Open attachment 114246,
delete H19:L19 then Undo: delete, there are errors in Sheet roX0_9 column DT
(cell=other cell not being calculated).

OpenCL creates .BIN files in LibreOffice or LibreOfficeDev >4>cache and
OpenCL updates registrymodifications.xcu with many new rows

At next Open attachment, the same procedure, delete H19:L19 then Undo: delete,
Sheet roX0_9 is now calculated correctly, yet now there are errors in Sheet
invoer (it's own column DT).  The Chart at invoer M62 is updating it's trend
line correctly, revealing incorrect calculation in the data range column DT.

The User Profile updates coincides with the autocalculation (A=B) interruption
and causes a new one on a different sheet (still opening the same file without
editing the file, without saving the file).  Maybe more than just a
coincidence.

This gives an impression of "sporadic fail".   Because this is now
reproduceable (with VLB's file) and with a User Profile reset manipulation and
with OpenCL on/off reproduce and with Hard recalculate evidence. . . . . 

I suggest moving the report at comments 112, 114 and 115 to Bug 125320.
User (pseudo b) and Telesto were waiting for a "reproduceable sporadic" demo.
It may not be the only one but I think it's best written there.

Would Buovjaga or Xisco agree or guide me please?
Would VLB please consider permission that I copy his test file to Bug 125320?
I intend to use it there and probably make a small screenshot video (asked for
by Telesto, QA).

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


[Libreoffice-bugs] [Bug 142210] New: Manage Names dialogue box error in help

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

Bug ID: 142210
   Summary: Manage Names dialogue box error in help
   Product: LibreOffice
   Version: 7.1.3.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: how...@giakonda.org.uk

Description:
The help guide for Calc named ranges suggest typing the details into the Manage
Names dialogue box then clicking Add. In fact Add has to be clicked before you
can add the details

Steps to Reproduce:
1.Name Box
2.Manage Names
3.Can't edit details until Add has been clicked

Actual Results:
Guide says enter details and click Add
Actually you have to click add and then enter the details

Expected Results:
Every thing is fine, it's just the order of doing things that needs attention


Reproducible: Always


User Profile Reset: No



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

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


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

2021-05-10 Thread Samuel Mehrbrodt (via logerrit)
 sc/source/core/data/column3.cxx  |8 ++--
 sc/source/core/data/table3.cxx   |   20 ++--
 sc/source/ui/cctrl/checklistmenu.cxx |2 --
 sc/source/ui/inc/checklistmenu.hxx   |   12 ++--
 sc/source/ui/view/gridwin.cxx|   27 +--
 5 files changed, 43 insertions(+), 26 deletions(-)

New commits:
commit 69b376d21dfe43482f67ece137421a7487f0cbae
Author: Samuel Mehrbrodt 
AuthorDate: Mon May 10 16:55:53 2021 +0200
Commit: Samuel Mehrbrodt 
CommitDate: Tue May 11 07:36:33 2021 +0200

tdf#76258 Various fixes for color filter

Change-Id: Ifb4114597efcb7a957d2e42867d1bdc8abfe7730
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115340
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 

diff --git a/sc/source/core/data/column3.cxx b/sc/source/core/data/column3.cxx
index 5fd4a5965586..eef630c6f297 100644
--- a/sc/source/core/data/column3.cxx
+++ b/sc/source/core/data/column3.cxx
@@ -2432,12 +2432,12 @@ class FilterEntriesHandler
 
 const SvxBrushItem* pBrush = rColumn.GetDoc().GetAttr(aPos, 
ATTR_BACKGROUND);
 Color backgroundColor = pBrush->GetColor();
+mrFilterEntries.addTextColor(textColor);
+mrFilterEntries.addBackgroundColor(backgroundColor);
 
 if (rCell.hasString())
 {
 mrFilterEntries.push_back(ScTypedStrData(aStr));
-mrFilterEntries.addTextColor(textColor);
-mrFilterEntries.addBackgroundColor(backgroundColor);
 return;
 }
 
@@ -2460,8 +2460,6 @@ class FilterEntriesHandler
 if (!aErr.isEmpty())
 {
 mrFilterEntries.push_back(ScTypedStrData(aErr));
-mrFilterEntries.addTextColor(textColor);
-mrFilterEntries.addBackgroundColor(backgroundColor);
 return;
 }
 }
@@ -2499,8 +2497,6 @@ class FilterEntriesHandler
 to avoid duplicates in the filter lists with setting the mbIsFormatted 
*/
 bool bFormFiltVal = mrColumn.HasFiltering() && nFormat;
 mrFilterEntries.push_back(ScTypedStrData(aStr, fVal, 
ScTypedStrData::Value, bDate, bFormFiltVal));
-mrFilterEntries.addTextColor(textColor);
-mrFilterEntries.addBackgroundColor(backgroundColor);
 }
 
 public:
diff --git a/sc/source/core/data/table3.cxx b/sc/source/core/data/table3.cxx
index dcc76104280b..54c0850931ee 100644
--- a/sc/source/core/data/table3.cxx
+++ b/sc/source/core/data/table3.cxx
@@ -2817,31 +2817,31 @@ bool ScTable::ValidQuery(
 {
 for (const auto& rItem : rItems)
 {
-if (aEval.isQueryByValue(rItem, nCol, nRow, aCell))
+if (rItem.meType == ScQueryEntry::ByTextColor)
 {
-std::pair aThisRes =
-aEval.compareByValue(aCell, nCol, nRow, rEntry, rItem, 
pContext);
+std::pair aThisRes
+= aEval.compareByTextColor(nCol, nRow, nTab, rItem);
 aRes.first |= aThisRes.first;
 aRes.second |= aThisRes.second;
 }
-else if (aEval.isQueryByString(rEntry, rItem, nCol, nRow, 
aCell))
+else if (rItem.meType == ScQueryEntry::ByBackgroundColor)
 {
 std::pair aThisRes =
-aEval.compareByString(aCell, nRow, rEntry, rItem, 
pContext);
+aEval.compareByBackgroundColor(nCol, nRow, nTab, 
rItem);
 aRes.first |= aThisRes.first;
 aRes.second |= aThisRes.second;
 }
-if (rItem.meType == ScQueryEntry::ByTextColor)
+else if (aEval.isQueryByValue(rItem, nCol, nRow, aCell))
 {
-std::pair aThisRes
-= aEval.compareByTextColor(nCol, nRow, nTab, rItem);
+std::pair aThisRes =
+aEval.compareByValue(aCell, nCol, nRow, rEntry, rItem, 
pContext);
 aRes.first |= aThisRes.first;
 aRes.second |= aThisRes.second;
 }
-if (rItem.meType == ScQueryEntry::ByBackgroundColor)
+else if (aEval.isQueryByString(rEntry, rItem, nCol, nRow, 
aCell))
 {
 std::pair aThisRes =
-aEval.compareByBackgroundColor(nCol, nRow, nTab, 
rItem);
+aEval.compareByString(aCell, nRow, rEntry, rItem, 
pContext);
 aRes.first |= aThisRes.first;
 aRes.second |= aThisRes.second;
 }
diff --git a/sc/source/ui/cctrl/checklistmenu.cxx 
b/sc/source/ui/cctrl/checklistmenu.cxx
index a7ae8ddbd960..1e8cb5662d82 100644
--- a/sc/source/ui/cctrl/checklistmenu.cxx
+++ 

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-2021' - filter/source

2021-05-10 Thread Mike Kaganski (via logerrit)
 filter/source/textfilterdetect/filterdetect.cxx |   18 +++---
 1 file changed, 15 insertions(+), 3 deletions(-)

New commits:
commit db759800abb62a9abda39c16d6f529d1a76207b6
Author: Mike Kaganski 
AuthorDate: Mon May 3 17:04:04 2021 +0200
Commit: Mike Kaganski 
CommitDate: Tue May 11 07:18:15 2021 +0200

tdf#123476: also use filter by extension when its service is the same

... as passed explicitly in the media descriptor, for 0-byte files.
This makes proper handling for such files when passing module name
in command line, like --writer for DOCX.

Change-Id: If8fd51e65dcf8a67b2653026f5fc1d5c964074af
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114924
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 
(cherry picked from commit dff586735b6618d9b011823594a33287d8f7f223)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114925
Reviewed-by: Caolán McNamara 
(cherry picked from commit a8e84a2d6e634c03d62e17bcc1b617238dcc9eb1)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115278
Tested-by: Jenkins CollaboraOffice 

diff --git a/filter/source/textfilterdetect/filterdetect.cxx 
b/filter/source/textfilterdetect/filterdetect.cxx
index 09efe5e595e0..19696ec9fa17 100644
--- a/filter/source/textfilterdetect/filterdetect.cxx
+++ b/filter/source/textfilterdetect/filterdetect.cxx
@@ -135,7 +135,7 @@ bool IsHTMLStream( const uno::Reference& 
xInStream )
  * writes the type name to rType, the filter name to rMediaDesc.
  */
 bool HandleEmptyFileUrlByExtension(MediaDescriptor& rMediaDesc, const 
OUString& rExt,
-   OUString& rType)
+   OUString& rType, OUString& rService)
 {
 OUString aURL = 
rMediaDesc.getUnpackedValueOrDefault(MediaDescriptor::PROP_URL(), OUString());
 if (!tools::isEmptyFileUrl(aURL))
@@ -156,6 +156,7 @@ bool HandleEmptyFileUrlByExtension(MediaDescriptor& 
rMediaDesc, const OUString&
 
 rMediaDesc[MediaDescriptor::PROP_FILTERNAME()] <<= 
pFilter->GetFilterName();
 rType = pFilter->GetTypeName();
+rService = pFilter->GetServiceName();
 return true;
 }
 }
@@ -216,14 +217,25 @@ OUString SAL_CALL 
PlainTextFilterDetect::detect(uno::Sequencehttps://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: cui/inc cui/source include/sfx2 officecfg/registry sfx2/sdi sfx2/source sw/inc sw/sdi sw/source

2021-05-10 Thread Jim Raykowski (via logerrit)
 cui/inc/strings.hrc  |
1 
 cui/source/customize/cfgutil.cxx |   
39 -
 cui/source/inc/cfgutil.hxx   |
3 
 include/sfx2/sfxsids.hrc |
2 
 include/sfx2/sidebar/Context.hxx |
4 
 include/sfx2/sidebar/ResourceManager.hxx |
4 
 officecfg/registry/data/org/openoffice/Office/Accelerators.xcu   |   
78 +-
 officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu|
5 
 officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu |   
20 ++
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu |   
23 ++
 officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu |   
14 -
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu  |   
10 -
 sfx2/sdi/frmslots.sdi|
4 
 sfx2/sdi/sfx.sdi |   
18 ++
 sfx2/source/view/viewfrm.cxx |   
13 +
 sw/inc/cmdid.h   |
2 
 sw/sdi/_viewsh.sdi   |
4 
 sw/sdi/swriter.sdi   |   
15 -
 sw/source/uibase/uiview/view2.cxx|
8 -
 19 files changed, 214 insertions(+), 53 deletions(-)

New commits:
commit a80eefb7413245f81692c443b06f7d3a6a92f28c
Author: Jim Raykowski 
AuthorDate: Thu Oct 1 22:29:35 2020 -0800
Commit: Jim Raykowski 
CommitDate: Tue May 11 06:53:36 2021 +0200

tdf#84502 CuiConfigGroupListBox Macros,Styles like category for Sidebar

Decks

Change-Id: I4d41952547c98ba66c40c1aa1e9776cdf31304c9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100455
Tested-by: Jenkins
Reviewed-by: Jim Raykowski 

diff --git a/cui/inc/strings.hrc b/cui/inc/strings.hrc
index 1ba91c27c747..9ee8d66b2e89 100644
--- a/cui/inc/strings.hrc
+++ b/cui/inc/strings.hrc
@@ -114,6 +114,7 @@
 #define RID_SVXSTR_HANJANC_("RID_SVXSTR_HANJA", 
"Hanja")
 #define RID_SVXSTR_BASICMACROS  
NC_("RID_SVXSTR_BASICMACROS", "BASIC Macros")
 #define RID_SVXSTR_GROUP_STYLES 
NC_("RID_SVXSTR_GROUP_STYLES", "Styles")
+#define RID_SVXSTR_GROUP_SIDEBARDECKS   
NC_("RID_SVXSTR_GROUP_SIDEBARDECKS", "Sidebar Decks")
 
 #define RID_SVXSTR_EVENT_STARTAPP   
NC_("RID_SVXSTR_EVENT_STARTAPP", "Start Application")
 #define RID_SVXSTR_EVENT_CLOSEAPP   
NC_("RID_SVXSTR_EVENT_CLOSEAPP", "Close Application")
diff --git a/cui/source/customize/cfgutil.cxx b/cui/source/customize/cfgutil.cxx
index 5ac0eda55edb..685af57c83b7 100644
--- a/cui/source/customize/cfgutil.cxx
+++ b/cui/source/customize/cfgutil.cxx
@@ -55,6 +55,9 @@
 #include 
 #include 
 
+#include 
+#include 
+
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::script;
@@ -346,6 +349,7 @@ struct SvxConfigGroupBoxResource_Impl
 OUString m_sMacros;
 OUString m_sDlgMacros;
 OUString m_aStrGroupStyles;
+OUString m_aStrGroupSidebarDecks;
 
 SvxConfigGroupBoxResource_Impl();
 };
@@ -355,7 +359,8 @@ 
SvxConfigGroupBoxResource_Impl::SvxConfigGroupBoxResource_Impl() :
 m_sProdMacros(CuiResId(RID_SVXSTR_PRODMACROS)),
 m_sMacros(CuiResId(RID_SVXSTR_BASICMACROS)),
 m_sDlgMacros(CuiResId(RID_SVXSTR_PRODMACROS)),
-m_aStrGroupStyles(CuiResId(RID_SVXSTR_GROUP_STYLES))
+m_aStrGroupStyles(CuiResId(RID_SVXSTR_GROUP_STYLES)),
+m_aStrGroupSidebarDecks(CuiResId(RID_SVXSTR_GROUP_SIDEBARDECKS))
 {
 }
 
@@ -676,13 +681,18 @@ void CuiConfigGroupListBox::Init(const 
css::uno::Reference< css::uno::XComponent
 }
 }
 
-// add styles
+// add styles and sidebar decks
 if ( bEventMode )
 {
 aArr.push_back( std::make_unique( 
SfxCfgKind::GROUP_STYLES, 0, nullptr ) ); // TODO last parameter should contain 
user data
 OUString sStyle(xImp->m_aStrGroupStyles);
 OUString 
sId(OUString::number(reinterpret_cast(aArr.back().get(;
 m_xTreeView->insert(nullptr, -1, , , nullptr, nullptr, 
true, nullptr);
+
+aArr.push_back( 
std::make_unique(SfxCfgKind::GROUP_SIDEBARDECKS, 0));
+OUString sSidebarDecks(xImp->m_aStrGroupSidebarDecks);
+sId = OUString::number(reinterpret_cast(aArr.back().get()));
+m_xTreeView->insert(nullptr, -1, , , nullptr, 
nullptr, false, nullptr);
 }
 
 m_xTreeView->thaw();
@@ -933,6 +943,31 @@ void CuiConfigGroupListBox::GroupSelected()
 break;
 }
 
+case SfxCfgKind::GROUP_SIDEBARDECKS:
+

[Libreoffice-bugs] [Bug 141934] UI Some new line style presets previews are not rendered in the style selector dropdown

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

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Status|RESOLVED|VERIFIED

--- Comment #3 from BogdanB  ---
It's ok now. It has preview.

Verified in Version: 7.2.0.0.alpha0+ / LibreOffice Community
Build ID: d4f116d9576453f5974eb63db37a33c59ac53bc9
CPU threads: 4; OS: Linux 5.8; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.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 137115] Sidebar: quicker access through simple short-cut

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

--- Comment #6 from S.Zosgornik  ---
It was a suggestion to prefer the sidebar with F5 as it became more important
over the last years.

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


[Libreoffice-bugs] [Bug 141933] FILEOPEN DOCX Line styles not recognized in Line Style dropdowns

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

BogdanB  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED
 CC||buzea.bog...@libreoffice.or
   ||g

--- Comment #4 from BogdanB  ---
It's ok now in Version: 7.2.0.0.alpha0+ / LibreOffice Community
Build ID: d4f116d9576453f5974eb63db37a33c59ac53bc9
CPU threads: 4; OS: Linux 5.8; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.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 135090] Locale not set properly?

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

--- Comment #9 from BogdanB  ---
Version: 7.2.0.0.alpha0+ / LibreOffice Community
Build ID: 1a99b4e44190e182d56a04678850d62635d74c65
CPU threads: 4; OS: Linux 5.8; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

I am using Ubuntu 20.04.

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


[Libreoffice-bugs] [Bug 142209] FILE SAVE:CALC: EXCEL compatibility issue for xlsx files containing checkboxes

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

--- Comment #1 from qve00...@nifty.ne.jp ---
Created attachment 171860
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171860=edit
Checkbox not linked to cell

Please save the attached file in xlsx format.
The second checkbox disappears.

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


[Libreoffice-bugs] [Bug 142209] New: FILE SAVE:CALC: EXCEL compatibility issue for xlsx files containing checkboxes

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

Bug ID: 142209
   Summary: FILE SAVE:CALC: EXCEL compatibility issue for xlsx
files containing checkboxes
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: qve00...@nifty.ne.jp

Description:
Description:
When creating a checkbox (Form Control) in LibreOffice, if you save it in xlsx
and open it in Microsoft EXCEL, Checkboxes are lost.

It has been fixed by Bug 106181, but there are still cases where it cannot be
dealt with. 
Checkboxes that are not linked to cells are lost when saved in xlsx format.


Steps to Reproduce:
1.Open by CALC and create some checkboxes
2.Do not link checkboxes to cells. 
3.Save as xlsx
4.Open it in Microsoft EXCEL. Checkboxes are lost.


Actual Results:
Checkboxes that are not linked to cells are lost when saved in xlsx format.

Expected Results:
When I open an xls file in Excel, Checkbox is displayed. 


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.2.0.0.alpha0+ (x86) / LibreOffice Community
Build ID: 9df3aa7ea72d61462e430643f2a80906dce4e15b
CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: ja-JP (ja_JP); 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 135090] Locale not set properly?

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

--- Comment #8 from Seán Ó Séaghdha  ---
(In reply to BogdanB from comment #4)
> It seems like you tested something other than the conditions where this
> happened.
> 
> When you have a Linux install set to Irish and you install LibreOffice it
> should use the right settings.
> 
> --> Of course I don't have a Linux install to irish, I just tested this bug
> to irish
> 
> Just choosing the settings manually inside the program proves nothing. What
> locale is your system? Was it using A4 before then? (i.e. was it a European
> install anyway?)
> 
> --> my computer locale is Romanian. My LibreOffice locale settings were
> English - US and I had Letter format before the change. After the change it
> moves from Letter to A4, like for Irish.
> 
> The point is what is happening when LibreOffice is installed in a new system.
> --> after I install a new LibreOffice version I go to Help - Restart in Safe
> Mode - Restart - Factory Settings and I have everything like a new
> installation.

“Like a new installation” may not actually be the *same* as a new installation
and you didn’t say what OS and what version you were using.

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


[Libreoffice-bugs] [Bug 135090] Locale not set properly?

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

--- Comment #7 from Seán Ó Séaghdha  ---
(In reply to Xisco Faulí from comment #5)
> Thank you for reporting the bug.
> it seems you're using an old version of LibreOffice.
> Could you please try to reproduce it with the latest version of LibreOffice
> from https://www.libreoffice.org/download/libreoffice-fresh/ ?
> I have set the bug's status to 'NEEDINFO'. Please change it back to
> 'UNCONFIRMED' if the bug is still present in the latest version.

I have no time to a) do a fresh install of Manjaro and b) a fresh install of
the latest LibreOffice.

Bug reporting is not product support. I have obviously already changed my
settings to the correct ones. The point of reporting a bug is to make you aware
that your software was not working correctly in some context, not to fix my
problem or make the reporter do extensive triage.

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


[Libreoffice-bugs] [Bug 142207] future request:Non-moveable and non-resizable shapes(Improved compatibility with EXCEL)

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

--- Comment #2 from Mike Kaganski  ---
(In reply to qve00761 from comment #1)

Opening attachment 171859 in Excel 2016, I can freely move and resize both
shapes.

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


[Libreoffice-bugs] [Bug 139707] Calc loses spreadsheet rows when creating .xlsx file from .CSV file containing CR (ascii=13) character. Creating plain .xls file works properly.

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

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 141918] Option for scaling image in Calc/Impress/Draw

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

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 141909] Calc: Switching to Read only leaves the lock files in place

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

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 141901] Sarabun font got clipped under main line in view port but okey when print.

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

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 141898] Different line and fill in the same object.

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

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 141897] Can't change individual color of text for each draw box

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

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 142107] LO 7.1.2.2 Writer table, "Repeat heading" does not work

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

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 141870] Fractional formatting: Sequence of preferred denominators (Base 2 mainly); also Writer TextFields

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

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 142107] LO 7.1.2.2 Writer table, "Repeat heading" does not work

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

--- Comment #18 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 137383] Delete single word doesn't update display

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

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 137395] ABC

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

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 137395] ABC

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

--- Comment #2 from QA Administrators  ---
Dear Amina Zahid,

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 137383] Delete single word doesn't update display

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

--- Comment #3 from QA Administrators  ---
Dear ScootrKDEbug Richards,

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 137380] Libreoffice Writer failed to show an image previously inserted and showed only a text box. Trying to delete the text box crashed Writer.

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

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 136630] Can't open help page about Insert -> Legend on Chart

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

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 137380] Libreoffice Writer failed to show an image previously inserted and showed only a text box. Trying to delete the text box crashed Writer.

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

--- Comment #3 from QA Administrators  ---
Dear Alan Cummings,

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 136630] Can't open help page about Insert -> Legend on Chart

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

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

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 134056] Text to Columns malfunction

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

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 134056] Text to Columns malfunction

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

--- Comment #9 from QA Administrators  ---
Dear Gordon Dudley Bossley,

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 133639] Incorrect conversion of powerpoint doc to text view

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

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 133639] Incorrect conversion of powerpoint doc to text view

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

--- Comment #4 from QA Administrators  ---
Dear Syeda.Azim,

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 80430] [META] Documentation gap for new features

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

Bug 113242 Summary: Help for PDF Option PDF Form "Submit Format" missing
https://bugs.documentfoundation.org/show_bug.cgi?id=113242

   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 138120] Image linking. libreOffice lose tif picture

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

--- Comment #6 from QA Administrators  ---
Dear msk.thkoenig,

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 137323] Writer hung while selecting Paste mode

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

--- Comment #3 from QA Administrators  ---
Dear Luke Kendall,

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 137264] Large files gradually become slow and slower and sometimes can't be read by excel

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

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

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 137262] Printing the headline on following pages isn't possible

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

--- Comment #3 from QA Administrators  ---
Dear Heinz Meissner,

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 137146] Cross references to numbered paragraph includes period

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

--- Comment #3 from QA Administrators  ---
Dear Marco Caspers,

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 137131] I have problems to read the description of the animation part in impress

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

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

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 137115] Sidebar: quicker access through simple short-cut

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

--- Comment #5 from QA Administrators  ---
Dear Sascha Z,

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 137070] Evolution LDAP address source requires a filter, filtering not possible

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

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

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 136817] Navigator: Chapter and section demotion works less efficiently in new version

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

--- Comment #21 from QA Administrators  ---
Dear Ben,

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 136688] Sidebar Gallery opens far to wide (and hard to resize)

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

--- Comment #6 from QA Administrators  ---
Dear Telesto,

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 136527] Resizing textboxes in LibreOffice Impress is terribly slow.

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

--- Comment #7 from QA Administrators  ---
Dear Petkra Eraus,

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 135356] Unwanted change in filesystem ownership when saving documents

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

--- Comment #5 from QA Administrators  ---
Dear pgl,

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 135281] EDITING: Calc crashed after pasting data (CTRL+V) into PyCharm previously copied (CTRL+C) from a Calc sheet

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

--- Comment #5 from QA Administrators  ---
Dear conrad_heimbold,

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 135090] Locale not set properly?

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

--- Comment #6 from QA Administrators  ---
Dear Seán Ó Séaghdha,

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 134211] Incorrect function name in the document of PV

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

--- Comment #4 from QA Administrators  ---
Dear Hong Xu,

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 134184] Substantial change in text flow across pages after moving image (anchoring to character of images)

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

--- Comment #5 from QA Administrators  ---
Dear Telesto,

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 128711] Infinite Loop if I use replaceAll for Hyperlinked words in Impress

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

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

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 125204] Not using the theme based icons for .UI of Customize dialogs on Windows builds

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

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

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 121460] VIEWING ODT Position relative to something moves the frame

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

--- Comment #6 from QA Administrators  ---
Dear NISZ LibreOffice Team,

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 142208] New: Bucle infinito inesperado dentro de IF...THEN...END IF al ejecutar el procedimiento mediante cualquier Suceso

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

Bug ID: 142208
   Summary: Bucle infinito inesperado dentro de IF...THEN...END IF
al ejecutar el procedimiento mediante cualquier Suceso
   Product: LibreOffice
   Version: 7.1.2.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ramon6...@gmail.com

Description:
If CDbl(dvFinFecha) < CDbl(Now()) then  
msgbox "La fecha no puede ser mayor que hoy"
ofForm.Controls("FinFecha").Value = "" - Elimina el
valor introducido 
 en el control,
erróneamente por el usuario, seguidamente
 provoca un
bucle infinito y no sigue corriendo el código

Exit Sub --- Debería salir
del procedimiento IF...THEN, pero no 
 responde Exit
Sub.

   ElseIf dvFinFecha <= svMimFechaLicenciaConductor then
msgbox "La fecha no puede ser menor que fecha alta conductor"

'ofForm.Controls("FinFecha").Value = "" Elimina el
valor introducido en el control, erroneamente 
por el usuario,
seguidamente
provoca un
bucle infinito y no sigue corriendo elcodigo.

Exit Sub -- Debería salir
del procedimiento IF...THEN, pero no 
responde el
Exit Sub.
End if
Exit Sub
End Sub

Steps to Reproduce:
1.Crear un bucle If...then según detallo anteriormente.
2.
3.

Actual Results:
Para reproducir el problema ejecutar la instrucción o bucle IF...THEN que
detallo anteriormente en el cuadro "Descripción"

Expected Results:
Se origina un bucle infinito.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
Exit Sub impera sobre cualquier acción, instrucción o comando, Exit Sub tenia
que detener la ejecución del codigo.

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


[Libreoffice-bugs] [Bug 82982] FORMATTING: No available method for hidden text in a text box

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

--- Comment #2 from Deyeddz Zetyery  ---
No available method for hidden text in a text box, So tell what should we do
now in this condition? If you are doing the best then it's mean everything
which you show is better and perfect at most of the
https://www.dissertation-service.org/dissertation-help/ time where we just not
see the hidden text simply.

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


[Libreoffice-bugs] [Bug 142207] future request:Non-moveable and non-resizable shapes(Improved compatibility with EXCEL)

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

--- Comment #1 from qve00...@nifty.ne.jp ---
Created attachment 171859
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171859=edit
non-moveable and non-resizable shape

Sample of the non-moveable and non-resizable shape(xls)

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


[Libreoffice-bugs] [Bug 142207] New: future request:Non-moveable and non-resizable shapes(Improved compatibility with EXCEL)

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

Bug ID: 142207
   Summary: future request:Non-moveable and non-resizable
shapes(Improved compatibility with EXCEL)
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: qve00...@nifty.ne.jp

Description:
Feature Request

Problem
The xls or xlsx files created in Excel may have non-moveable and non-resizable
shapes.

When I read these files,
attribute information of the shapes that are non-moveable and non-resizable  is
lost. 

In some cases, the original xls or xlsx file is corrected and returned to the
creator of the original Excel file.
In that case, I want to make as few changes to the original document as
possible.
However, due to compatibility issues with EXCEL, unintended changes are made. 

Steps to Reproduce:
1) Loads xls or xlsx files containing non-moveable and non-resizable shapes by
CALC.
2) Save as xls or xlsx by CALC.
3) Attribute information of the shapes that are non-moveable and non-resizable 
is lost. 


Actual Results:
Attribute information that is non-moveable and non-resizable is invalid in
CALC.




Expected Results:
In CALC,an interface is provided for the shape to specify information that is
non-moveable and non-resizable. 
Shapes that are non-moveable and non-resizable behave like EXCEL.

Attribute information of shapes that are non-moveable and non-resizable can be
read from xls or xlsx files by CALC.
Attribute information of shapes that are non-moveable and non-resizable can be
written to xls or xlsx files  by CALC.




Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.2.0.0.alpha0+ (x86) / LibreOffice Community
Build ID: 9df3aa7ea72d61462e430643f2a80906dce4e15b
CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: ja-JP (ja_JP); 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 142206] [EMF] WidenPath support

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

--- Comment #2 from Valek Filippov  ---
Created attachment 171858
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171858=edit
Screenshot of the sample EMF file opened in MS Paint

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


[Libreoffice-bugs] [Bug 142206] [EMF] WidenPath support

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

--- Comment #1 from Valek Filippov  ---
Created attachment 171857
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171857=edit
EMF sample with Path/Arc/WidenPath/StrokeAndFillPath

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


[Libreoffice-bugs] [Bug 103859] [META] EMF/WMF (Enhanced/Windows Metafile) bugs and enhancements

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

Valek Filippov  changed:

   What|Removed |Added

 Depends on||142206


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 142206] [EMF] WidenPath support

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

Valek Filippov  changed:

   What|Removed |Added

 Blocks||103859


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103859
[Bug 103859] [META] EMF/WMF (Enhanced/Windows Metafile) bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142206] New: [EMF] WidenPath support

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

Bug ID: 142206
   Summary: [EMF] WidenPath support
   Product: LibreOffice
   Version: 7.0.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: graphics stack
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: f...@df.ru

Description:
LO seems to ignore WidenPath MR

Steps to Reproduce:
Open attached EMF sample

Actual Results:
LO shows thick black arc.

Expected Results:
The arc should have orange fill and thin black stroke.


Reproducible: Always


User Profile Reset: No



Additional Info:
MS Paint seems to have some glitch in the 'widening' algorithm implementation
that creates few cuts on the 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 142204] [EMF] SetArcDirection support

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

--- Comment #8 from Valek Filippov  ---
Created attachment 171856
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171856=edit
Screenshot of the sample EMF file (Pie) opened in MS Paint

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


[Libreoffice-bugs] [Bug 142205] future request:Non-printable shapes(Improved compatibility with EXCEL)

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

--- Comment #1 from qve00...@nifty.ne.jp ---
Created attachment 171855
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171855=edit
NonPrintableShape

Sample of non-printable shape(xls)

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


[Libreoffice-bugs] [Bug 142204] [EMF] SetArcDirection support

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

--- Comment #7 from Valek Filippov  ---
Created attachment 171854
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171854=edit
EMF sample of Pie with ArcDirection set to 2 (CW)

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


[Libreoffice-bugs] [Bug 142205] New: future request:Non-printable shapes(Improved compatibility with EXCEL)

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

Bug ID: 142205
   Summary: future request:Non-printable shapes(Improved
compatibility with EXCEL)
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: qve00...@nifty.ne.jp

Description:
Feature Request

The xls and xlsx files created in Excel may have non-printable shapes or
non-printable text boxes.
For example, there are notes and supplementary information in non-printable
text boxes.

L.O does not have a function to exclude them from printing. 
Attribute information that is non-printable is lost. 

So I must delete them before printing.

In some cases, the original xls or xlsx file is corrected and returned to the
creator of the original Excel file.
In that case, I want to make as few changes to the original document as
possible.
However, due to compatibility issues with EXCEL, unintended changes are made. 


Steps to Reproduce:
1.Load xls and xlsx files containing non-printable shapes by CALC.
2.Print.
3.Non-printable shapes will also be printed. 


Actual Results:
Attribute information that is non-printable is invalid in CALC 


Expected Results:
In CALC, an interface is provided for the shape to specify information that is
non-printable. 
Shapes that are non-printable are not printed. 

Attribute information of shapes that are non-printable can be read from xls or
xlsx files by CALC.
Attribute information of shapes that are non-printable can be written to xls or
xlsx files  by CALC.



Reproducible: Always


User Profile Reset: No



Additional Info:
LibreOffice 7.2.0.0alpha0+(x86)

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


[Libreoffice-bugs] [Bug 142204] [EMF] SetArcDirection support

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

--- Comment #6 from Valek Filippov  ---
Created attachment 171853
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171853=edit
Screenshot of the sample EMF file (Chord) opened in MS Paint

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


[Libreoffice-bugs] [Bug 142204] [EMF] SetArcDirection support

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

--- Comment #5 from Valek Filippov  ---
Created attachment 171852
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171852=edit
EMF sample of Chord with ArcDirection set to 2 (CW)

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


[Libreoffice-bugs] [Bug 142204] [EMF] SetArcDirection support

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

--- Comment #4 from Valek Filippov  ---
Created attachment 171851
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171851=edit
Screenshot of the sample EMF file (Move/Arc/Line) opened in MS Paint

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


[Libreoffice-bugs] [Bug 142204] [EMF] SetArcDirection support

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

--- Comment #3 from Valek Filippov  ---
Created attachment 171850
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171850=edit
EMF sample with MoveToEx/Arc/LineTo and ArcDirection set to 2 (CW)

Sample with Arc (instead of ArcTo)

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


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

2021-05-10 Thread Tomaž Vajngerl (via logerrit)
 vcl/source/window/dialog.cxx |8 
 1 file changed, 8 deletions(-)

New commits:
commit b137ff671f25a605334083c0f87ada84eaa0fcf2
Author: Tomaž Vajngerl 
AuthorDate: Mon May 10 15:01:19 2021 +0900
Commit: Tomaž Vajngerl 
CommitDate: Tue May 11 02:21:15 2021 +0200

vcl: Don't just return OK when executing a dialog in Android

This was probably "ifdef-ed" out for Android because of some old
assumptions and isn't true anymore today. This has prevented that
the dialog for macro execution shows up on Android when the
document is loading.

Change-Id: I662d2deb1520f9a3b421dac05f858488aef825fc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115307
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/vcl/source/window/dialog.cxx b/vcl/source/window/dialog.cxx
index a8bd2d5dc37e..882d6c0e985b 100644
--- a/vcl/source/window/dialog.cxx
+++ b/vcl/source/window/dialog.cxx
@@ -1036,10 +1036,6 @@ void Dialog::ImplEndExecuteModal()
 
 short Dialog::Execute()
 {
-// Once the Android app is based on same idea as the iOS one currently
-// being developed, no conditional should be needed here. Until then,
-// play it safe.
-#if HAVE_FEATURE_DESKTOP || defined IOS
 VclPtr xWindow = this;
 
 mbInSyncExecute = true;
@@ -1070,10 +1066,6 @@ short Dialog::Execute()
 mpDialogImpl->mnResult = -1;
 
 return static_cast(nRet);
-
-#else
-return RET_OK;
-#endif
 }
 
 // virtual
___
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-10 Thread Tomaž Vajngerl (via logerrit)
 desktop/source/lib/lokinteractionhandler.cxx |   29 ---
 desktop/source/lib/lokinteractionhandler.hxx |1 
 2 files changed, 19 insertions(+), 11 deletions(-)

New commits:
commit 7aacb991f4777e9bcb5bf70a9259887d8dc6d8da
Author: Tomaž Vajngerl 
AuthorDate: Mon May 10 14:59:29 2021 +0900
Commit: Tomaž Vajngerl 
CommitDate: Tue May 11 02:20:09 2021 +0200

lok: move handleMacroConfirmationRequest to its own method

Just refactor to make it similar to other requests.

Change-Id: I1a76d3d4ecc02b0a223ab8e44b11047455280142
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115306
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/desktop/source/lib/lokinteractionhandler.cxx 
b/desktop/source/lib/lokinteractionhandler.cxx
index 7561bb968dd4..eb7d120a5e3e 100644
--- a/desktop/source/lib/lokinteractionhandler.cxx
+++ b/desktop/source/lib/lokinteractionhandler.cxx
@@ -333,6 +333,23 @@ bool LOKInteractionHandler::handlePasswordRequest(const 
uno::Sequence& xRequest)
+{
+uno::Any const request(xRequest->getRequest());
+
+task::DocumentMacroConfirmationRequest aConfirmRequest;
+if (request >>= aConfirmRequest)
+{
+auto 
xInteraction(task::InteractionHandler::createWithParent(comphelper::getProcessComponentContext(),
 nullptr));
+
+if (xInteraction.is())
+xInteraction->handleInteractionRequest(xRequest);
+
+return true;
+}
+return false;
+}
+
 sal_Bool SAL_CALL LOKInteractionHandler::handleInteractionRequest(
 const uno::Reference& xRequest)
 {
@@ -348,18 +365,8 @@ sal_Bool SAL_CALL 
LOKInteractionHandler::handleInteractionRequest(
 if (handlePasswordRequest(rContinuations, request))
 return true;
 
-task::DocumentMacroConfirmationRequest aConfirmRequest;
-if (request >>= aConfirmRequest)
-{
-uno::Reference< task::XInteractionHandler2 > xInteraction(
-task::InteractionHandler::createWithParent(
-::comphelper::getProcessComponentContext(), nullptr));
-
-if (xInteraction.is())
-xInteraction->handleInteractionRequest(xRequest);
-
+if (handleMacroConfirmationRequest(xRequest))
 return true;
-}
 
 // TODO: perform more interactions 'for real' like the above
 selectApproved(rContinuations);
diff --git a/desktop/source/lib/lokinteractionhandler.hxx 
b/desktop/source/lib/lokinteractionhandler.hxx
index 92bc2ffbac8e..9c15f85f4bc8 100644
--- a/desktop/source/lib/lokinteractionhandler.hxx
+++ b/desktop/source/lib/lokinteractionhandler.hxx
@@ -74,6 +74,7 @@ private:
 bool handleIOException(const 
css::uno::Sequence> 
, const css::uno::Any& rRequest);
 bool handleNetworkException(const 
css::uno::Sequence> 
, const css::uno::Any& rRequest);
 bool handlePasswordRequest(const 
css::uno::Sequence> 
, const css::uno::Any& rRequest);
+static bool handleMacroConfirmationRequest(const 
css::uno::Reference& xRequest);
 
 public:
 void SetPassword(char const* pPassword);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 142204] [EMF] SetArcDirection support

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

--- Comment #2 from Valek Filippov  ---
Created attachment 171849
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171849=edit
Screenshot of the sample EMF file opened in MS Paint

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


[Libreoffice-bugs] [Bug 142204] [EMF] SetArcDirection support

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

--- Comment #1 from Valek Filippov  ---
Created attachment 171848
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171848=edit
EMF sample with MoveToEx/ArcTo/LineTo and ArcDirection set to 2 (CW)

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


[Libreoffice-bugs] [Bug 103859] [META] EMF/WMF (Enhanced/Windows Metafile) bugs and enhancements

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

Valek Filippov  changed:

   What|Removed |Added

 Depends on||142204


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 142204] [EMF] SetArcDirection support

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

Valek Filippov  changed:

   What|Removed |Added

 Blocks||103859


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103859
[Bug 103859] [META] EMF/WMF (Enhanced/Windows Metafile) bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142204] New: [EMF] SetArcDirection support

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

Bug ID: 142204
   Summary: [EMF] SetArcDirection support
   Product: LibreOffice
   Version: 7.0.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: graphics stack
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: f...@df.ru

Description:
LO seems to ignore SetArcDirection MR

Steps to Reproduce:
Open attached EMF sample

Actual Results:
LO draws an arc going from the left top corner counterclockwise.

Expected Results:
The arc should be drawn clockwise.


Reproducible: Always


User Profile Reset: No



Additional Info:
EMF spec says that this MR affects the direction in which Arc, ArcTo, Chord,
Ellipse, Pie, Rectangle and RoundRect records draw.

For Ellipse, Rectangle and RoundRect this is probably only important in the
context of PolygonFillMode.

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


[Libreoffice-bugs] [Bug 56696] No option to make recent documents list show items for just the currently active LibO module

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

--- Comment #41 from Nikunj Bhatt  ---
It's strange, this enhancement request hasn't been solved yet, after 8+ years!

I have LibreOfice 7.0.5.2. The home screen of LibreOffice (called "Start
Center"?) seems fine.

***Let's just talk about Recent Documents.***

The Recent Documents doesn't seems satisfying to me. I read various
suggestions. My suggestion is to show only spreadsheet files in Calc's Recent
Documents list, and show only document files in Writer's Recent Documents list.

Here one may argue that people love to have option to open all kinds of
recently opened files from single point - Recent Documents - from all/any
LibreOffice module. Then, to let users' choose, an option should be provided in
LibreOffice settings if they want to view all types of files in all modules or
only files of only the particular module they are in.

For the users supporting my suggestion (and optionally with an option in
LibreOffice Settings - as mentioned above) - if a user is presently using
Writer and he wants to open recent spreadsheet then he can create a new
spreadsheet and open the recent spreadsheet from it's Recent Documents list.
Only one step is increased, but seems more convenient.

(One more optional suggestion is to rename the "Recent Documents" to "Recent
Files" for obvious reason - not all files are documents.)

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


[Libreoffice-bugs] [Bug 142035] [EMF] SetWorldTransform ignored for ExtTextOut

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

Valek Filippov  changed:

   What|Removed |Added

 Attachment #171843|Screenshot of text rotated  |Screenshot of text rotated
description|by Escapement, Xfrom and|by Escapement, XForm and
   |Escapement+XForm|Escapement+XForm

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


[Libreoffice-bugs] [Bug 142035] [EMF] SetWorldTransform ignored for ExtTextOut

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

Valek Filippov  changed:

   What|Removed |Added

 Attachment #171843|Screenshot of text rotated  |Screenshot of text rotated
description|by Orientation, Xfrom and   |by Escapement, Xfrom and
   |Escapement+XForm|Escapement+XForm

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


[Libreoffice-bugs] [Bug 142035] [EMF] SetWorldTransform ignored for ExtTextOut

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

Valek Filippov  changed:

   What|Removed |Added

 Attachment #171843|Screenshot of text rotated  |Screenshot of text rotated
description|by Orientation, Xfrom and   |by Orientation, Xfrom and
   |Orientation+XForm   |Escapement+XForm

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


[Libreoffice-bugs] [Bug 142035] [EMF] SetWorldTransform ignored for ExtTextOut

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

Valek Filippov  changed:

   What|Removed |Added

 Attachment #171842|EMF sample with text|EMF sample with text
description|rotated 15 degrees by   |rotated 15 degrees by
   |'Orientation' value in  |'Escapement' value in
   |ExtCreateFontIndirectW and  |ExtCreateFontIndirectW and
   |30 degress by XForm |30 degress by XForm

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


[Libreoffice-bugs] [Bug 142035] [EMF] SetWorldTransform ignored for ExtTextOut

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

Valek Filippov  changed:

   What|Removed |Added

 Attachment #171841|EMF sample with text|EMF sample with text
description|rotated 15 degrees by   |rotated 15 degrees by
   |'Orientation' value in  |'Escapement' value in
   |ExtCreateFontIndirectW  |ExtCreateFontIndirectW

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


[Libreoffice-bugs] [Bug 142203] [EMF] CreateDibPatternBrushPT support

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

--- Comment #4 from Valek Filippov  ---
Created attachment 171847
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171847=edit
Screenshot of EMF and WMF samples opened in MS Paint

EMF is colored one on the 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-bugs] [Bug 142203] [EMF] CreateDibPatternBrushPT support

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

Valek Filippov  changed:

   What|Removed |Added

 Attachment #171845|0   |1
is obsolete||

--- Comment #3 from Valek Filippov  ---
Created attachment 171846
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171846=edit
WMF sample with pattern brush

Corrected sample

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


[Libreoffice-bugs] [Bug 142203] [EMF] CreateDibPatternBrushPT support

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

--- Comment #2 from Valek Filippov  ---
Created attachment 171845
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171845=edit
WMF sample with pattern brush

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


[Libreoffice-bugs] [Bug 142203] [EMF] CreateDibPatternBrushPT support

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

--- Comment #1 from Valek Filippov  ---
Created attachment 171844
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171844=edit
EMF sample with pattern brush

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


[Libreoffice-bugs] [Bug 103859] [META] EMF/WMF (Enhanced/Windows Metafile) bugs and enhancements

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

Valek Filippov  changed:

   What|Removed |Added

 Depends on||142203


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 142203] [EMF] CreateDibPatternBrushPT support

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

Valek Filippov  changed:

   What|Removed |Added

 Blocks||103859


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103859
[Bug 103859] [META] EMF/WMF (Enhanced/Windows Metafile) bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142203] New: [EMF] CreateDibPatternBrushPT support

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

Bug ID: 142203
   Summary: [EMF] CreateDibPatternBrushPT support
   Product: LibreOffice
   Version: 7.0.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: graphics stack
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: f...@df.ru

Description:
LO doesn't seem to support CreateDibPatternBrushPT EMR in EMFs nor
DIBCreatePatternBrush in WMF.

Steps to Reproduce:
Open attached EMF sample.

Actual Results:
The shape is filled with white.

Expected Results:
The shape should be filled with pattern.


Reproducible: Always


User Profile Reset: No



Additional Info:
There is a superset sample attached to 55058.
This one is opened to simplify testing and tracking.
Pattern for EMF was borrowed from David Mathog samples.

-- 
You are receiving this mail because:
You 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: desktop/source

2021-05-10 Thread Tomaž Vajngerl (via logerrit)
 desktop/source/lib/init.cxx |4 
 1 file changed, 4 insertions(+)

New commits:
commit d7f734db2c078ced3ce08ad58cd816a79abe3bcf
Author: Tomaž Vajngerl 
AuthorDate: Mon May 10 14:55:49 2021 +0900
Commit: Tomaž Vajngerl 
CommitDate: Tue May 11 01:16:39 2021 +0200

lok: enable macros by default for Android

This enables macros execution for Android, so the user will be
asked to execute macros (assuming the security level is set to 1,
which is the default) if the document contains any macros to
execute.

Change-Id: I34dbd123c5b4ea7386096fd3a21766da3479be6c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115305
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index a8c0f078c6a7..2ca561285d93 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -2282,9 +2282,13 @@ static LibreOfficeKitDocument* 
lo_documentLoadWithOptions(LibreOfficeKit* pThis,
 }
 SvtSecurityOptions().SetMacroSecurityLevel(nMacroSecurityLevel);
 
+#if defined(ANDROID) && HAVE_FEATURE_ANDROID_LOK
+sal_Int16 nMacroExecMode = document::MacroExecMode::USE_CONFIG;
+#else
 const OUString aEnableMacrosExecution = extractParameter(aOptions, 
u"EnableMacrosExecution");
 sal_Int16 nMacroExecMode = aEnableMacrosExecution == "true" ? 
document::MacroExecMode::USE_CONFIG :
 document::MacroExecMode::NEVER_EXECUTE;
+#endif
 aFilterOptions[2].Name = "MacroExecutionMode";
 aFilterOptions[2].Value <<= nMacroExecMode;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-05-10 Thread Tomaž Vajngerl (via logerrit)
 drawinglayer/source/drawinglayeruno/xprimitive2drenderer.cxx |2 +-
 drawinglayer/source/primitive2d/patternfillprimitive2d.cxx   |2 +-
 drawinglayer/source/tools/converters.cxx |2 +-
 include/drawinglayer/converters.hxx  |   10 --
 4 files changed, 7 insertions(+), 9 deletions(-)

New commits:
commit 1bcad85a5d48cc38ced5883de364f2c66ada273e
Author: Tomaž Vajngerl 
AuthorDate: Mon May 3 23:21:18 2021 +0900
Commit: Tomaž Vajngerl 
CommitDate: Tue May 11 01:16:23 2021 +0200

drawinglayer: move converter.hxx to public include

Change-Id: I71a15c532ba161d69585bd47631b3a8e2f6ddd66
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115304
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/drawinglayer/source/drawinglayeruno/xprimitive2drenderer.cxx 
b/drawinglayer/source/drawinglayeruno/xprimitive2drenderer.cxx
index 66b29591df7e..2f750e73af65 100644
--- a/drawinglayer/source/drawinglayeruno/xprimitive2drenderer.cxx
+++ b/drawinglayer/source/drawinglayeruno/xprimitive2drenderer.cxx
@@ -33,7 +33,7 @@
 #include 
 #include 
 
-#include 
+#include 
 
 using namespace ::com::sun::star;
 
diff --git a/drawinglayer/source/primitive2d/patternfillprimitive2d.cxx 
b/drawinglayer/source/primitive2d/patternfillprimitive2d.cxx
index ec1f9621452a..0e5b1a218690 100644
--- a/drawinglayer/source/primitive2d/patternfillprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/patternfillprimitive2d.cxx
@@ -28,7 +28,7 @@
 #include 
 #include 
 
-#include 
+#include 
 
 using namespace com::sun::star;
 
diff --git a/drawinglayer/source/tools/converters.cxx 
b/drawinglayer/source/tools/converters.cxx
index 6a963748161f..d8fe291bf803 100644
--- a/drawinglayer/source/tools/converters.cxx
+++ b/drawinglayer/source/tools/converters.cxx
@@ -25,7 +25,7 @@
 #include 
 #include 
 
-#include 
+#include 
 
 #ifdef DBG_UTIL
 #include 
diff --git a/drawinglayer/inc/converters.hxx 
b/include/drawinglayer/converters.hxx
similarity index 79%
rename from drawinglayer/inc/converters.hxx
rename to include/drawinglayer/converters.hxx
index 5e4e8a49bdb5..64d0e2ce7d4e 100644
--- a/drawinglayer/inc/converters.hxx
+++ b/include/drawinglayer/converters.hxx
@@ -24,12 +24,10 @@
 
 namespace drawinglayer
 {
-BitmapEx convertToBitmapEx(
-const drawinglayer::primitive2d::Primitive2DContainer& rSeq,
-const geometry::ViewInformation2D& rViewInformation2D,
-sal_uInt32 nDiscreteWidth,
-sal_uInt32 nDiscreteHeight,
-sal_uInt32 nMaxSquarePixels);
+BitmapEx DRAWINGLAYER_DLLPUBLIC
+convertToBitmapEx(const drawinglayer::primitive2d::Primitive2DContainer& rSeq,
+  const geometry::ViewInformation2D& rViewInformation2D, 
sal_uInt32 nDiscreteWidth,
+  sal_uInt32 nDiscreteHeight, sal_uInt32 nMaxSquarePixels);
 
 } // end of namespace drawinglayer
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 142035] [EMF] SetWorldTransform ignored for ExtTextOut

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

--- Comment #7 from Valek Filippov  ---
Created attachment 171843
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171843=edit
Screenshot of text rotated by Orientation, Xfrom and Orientation+XForm

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


[Libreoffice-bugs] [Bug 142035] [EMF] SetWorldTransform ignored for ExtTextOut

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

--- Comment #6 from Valek Filippov  ---
Created attachment 171842
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171842=edit
EMF sample with text rotated 15 degrees by 'Orientation' value in
ExtCreateFontIndirectW and 30 degress by XForm

As per Bartosz request

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


[Libreoffice-bugs] [Bug 142035] [EMF] SetWorldTransform ignored for ExtTextOut

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

--- Comment #5 from Valek Filippov  ---
Created attachment 171841
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171841=edit
EMF sample with text rotated 15 degrees by 'Orientation' value in
ExtCreateFontIndirectW

As per Bartosz request

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


[Libreoffice-bugs] [Bug 140737] Writer: Can not close the program window

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

--- Comment #6 from Makrea  ---
(In reply to Xisco Faulí from comment #5)
> Hello Knecker,
> Thank you for reporting the bug. To be certain the reported issue is not
> related to corruption in the user profile, could you please reset your
> Libreoffice profile ( https://wiki.documentfoundation.org/UserProfile ) and
> re-test?
> 
> I have set the bug's status to 'NEEDINFO'. Please change it back to
> 'UNCONFIRMED' if the issue is still present

I purpose closing this bug.
Zero feedback has been given to any of the comments. 
What you asked for, I asked more than a month ago. 

I welcome you to visit the bug:
https://bugs.documentfoundation.org/show_bug.cgi?id=141097

This knecker bug (unconfirmed but I suspect), my bug, kabilo bug, and a
duplicate of my bug all seems to be the same issue regarding opening LO through
API enforcing a vetoexception on close. 

I will be more than happy to provide any info you need on 141097 bug thread. 

Best regards.

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


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

2021-05-10 Thread Xisco Fauli (via logerrit)
 sc/qa/unit/ucalc.cxx |   20 
 sc/qa/unit/ucalc.hxx |2 ++
 2 files changed, 22 insertions(+)

New commits:
commit 2d7db1f688fc3b7e7ce9276776a40d6d8db8d536
Author: Xisco Fauli 
AuthorDate: Mon May 10 23:18:30 2021 +0200
Commit: Xisco Fauli 
CommitDate: Tue May 11 00:40:17 2021 +0200

tdf#134490: sc_ucalc: Add unittest

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

diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx
index f03c8fe073d8..2774772365b1 100644
--- a/sc/qa/unit/ucalc.cxx
+++ b/sc/qa/unit/ucalc.cxx
@@ -488,6 +488,26 @@ void Test::testTdf90698()
 m_pDoc->DeleteTab(0);
 }
 
+void Test::testTdf134490()
+{
+CPPUNIT_ASSERT(m_pDoc->InsertTab (0, "Test"));
+
+m_pDoc->SetString(ScAddress(0,0,0), "--1");
+m_pDoc->SetString(ScAddress(0,1,0), "---1");
+m_pDoc->SetString(ScAddress(0,2,0), "+-1");
+m_pDoc->SetString(ScAddress(0,3,0), "+--1");
+
+// Without the fix in place, this test would have failed with
+// - Expected: --1
+// - Actual  : -1
+CPPUNIT_ASSERT_EQUAL(OUString("--1"), m_pDoc->GetString(ScAddress(0,0,0)));
+CPPUNIT_ASSERT_EQUAL(OUString("---1"), 
m_pDoc->GetString(ScAddress(0,1,0)));
+CPPUNIT_ASSERT_EQUAL(OUString("+-1"), m_pDoc->GetString(ScAddress(0,2,0)));
+CPPUNIT_ASSERT_EQUAL(OUString("+--1"), 
m_pDoc->GetString(ScAddress(0,3,0)));
+
+m_pDoc->DeleteTab(0);
+}
+
 void Test::testTdf135249()
 {
 CPPUNIT_ASSERT(m_pDoc->InsertTab (0, "Test"));
diff --git a/sc/qa/unit/ucalc.hxx b/sc/qa/unit/ucalc.hxx
index fe9d6f09c1cd..5a0b1e2c5b5b 100644
--- a/sc/qa/unit/ucalc.hxx
+++ b/sc/qa/unit/ucalc.hxx
@@ -127,6 +127,7 @@ public:
 void testInput();
 void testColumnIterator();
 void testTdf90698();
+void testTdf134490();
 void testTdf135249();
 void testDocStatistics();
 void testRowForHeight();
@@ -642,6 +643,7 @@ public:
 CPPUNIT_TEST(testInput);
 CPPUNIT_TEST(testColumnIterator);
 CPPUNIT_TEST(testTdf90698);
+CPPUNIT_TEST(testTdf134490);
 CPPUNIT_TEST(testTdf135249);
 CPPUNIT_TEST(testDocStatistics);
 CPPUNIT_TEST(testRowForHeight);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 142061] Calc UI: Display anomalies when resizing columns (macOS)

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

--- Comment #7 from tym...@gmail.com ---
I posted the duplicate report 142197
I installed LO 7.1.2.2 two days ago, with version 6.xxx I had no problem of
that kind.

My config: Macbook Pro Retina late 2012, OS X 10.14.6 Mojave, dark appearance.

For tracking of the bug: it shows either blank or the area left and down of the
originating pixel where you place your cursor, enlarged by 400% right & down to
the bottom menu strip, tinted pinkish grey with lessened contrast.

See screenshot above, checked in PS respectively Affinity Photo

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


  1   2   3   4   5   >