[Libreoffice-commits] core.git: 2 commits - slideshow/source smoketest/smoketest.cxx

2021-10-30 Thread Mike Kaganski (via logerrit)
 slideshow/source/engine/shapes/gdimtftools.cxx|   40 +-
 slideshow/source/engine/shapes/viewmediashape.cxx |   10 ++-
 slideshow/source/engine/slide/targetpropertiescreator.cxx |3 -
 smoketest/smoketest.cxx   |   19 +++---
 4 files changed, 35 insertions(+), 37 deletions(-)

New commits:
commit d07c4fe7681d90f20c4c0dafefc3439e8265e734
Author: Mike Kaganski 
AuthorDate: Fri Oct 29 10:06:09 2021 +0300
Commit: Mike Kaganski 
CommitDate: Sun Oct 31 06:57:21 2021 +0100

Prepare for removal of non-const operator[] from Sequence in smoketest

Change-Id: Ica192dfb16716b4fb38d59eee0a39c6dd411b6a0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124390
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/smoketest/smoketest.cxx b/smoketest/smoketest.cxx
index a60f58167f66..80a29036f19b 100644
--- a/smoketest/smoketest.cxx
+++ b/smoketest/smoketest.cxx
@@ -140,15 +140,16 @@ void Test::test() {
 CPPUNIT_ASSERT(
 test::getTestArgument(
 u"smoketest.doc", ));
-css::uno::Sequence< css::beans::PropertyValue > args(2);
-args[0].Name = "MacroExecutionMode";
-args[0].Handle = -1;
-args[0].Value <<=  css::document::MacroExecMode::ALWAYS_EXECUTE_NO_WARN;
-args[0].State = css::beans::PropertyState_DIRECT_VALUE;
-args[1].Name = "ReadOnly";
-args[1].Handle = -1;
-args[1].Value <<= true;
-args[1].State = css::beans::PropertyState_DIRECT_VALUE;
+css::uno::Sequence< css::beans::PropertyValue > args{
+{ /* Name   */ "MacroExecutionMode",
+  /* Handle */ -1,
+  /* Value  */ 
css::uno::Any(css::document::MacroExecMode::ALWAYS_EXECUTE_NO_WARN),
+  /* State  */ css::beans::PropertyState_DIRECT_VALUE },
+{ /* Name   */ "ReadOnly",
+  /* Handle */ -1,
+  /* Value  */ css::uno::Any(true),
+  /* State  */ css::beans::PropertyState_DIRECT_VALUE }
+};
 css::util::URL url;
 url.Complete = 
"vnd.sun.star.script:Standard.Global.StartTestWithDefaultOptions?"
 "language=Basic=document";
commit df16e70378cdc80b3e4c1327704a2781a4c57992
Author: Mike Kaganski 
AuthorDate: Fri Oct 29 10:05:16 2021 +0300
Commit: Mike Kaganski 
CommitDate: Sun Oct 31 06:57:10 2021 +0100

Prepare for removal of non-const operator[] from Sequence in slideshow

Change-Id: Ic3d4835a6153ce3451e5ddf7a74310ea2b70da2c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124389
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/slideshow/source/engine/shapes/gdimtftools.cxx 
b/slideshow/source/engine/shapes/gdimtftools.cxx
index 0f8644cd3da8..6a803f757711 100644
--- a/slideshow/source/engine/shapes/gdimtftools.cxx
+++ b/slideshow/source/engine/shapes/gdimtftools.cxx
@@ -29,6 +29,7 @@
 #include 
 
 #include 
+#include 
 
 #include 
 #include 
@@ -174,29 +175,22 @@ GDIMetaFileSharedPtr getMetaFile( const uno::Reference< 
lang::XComponent >&
 uno::Reference< drawing::XGraphicExportFilter > xExporter =
 drawing::GraphicExportFilter::create(rxContext);
 
-uno::Sequence< beans::PropertyValue > aProps(3);
-aProps[0].Name = "FilterName";
-aProps[0].Value <<= OUString("SVM");
-
-aProps[1].Name = "GraphicRenderer";
-aProps[1].Value <<= uno::Reference< graphic::XGraphicRenderer >(xRenderer);
-
-uno::Sequence< beans::PropertyValue > aFilterData(4);
-aFilterData[0].Name = "ScrollText";
-aFilterData[0].Value <<= ((mtfLoadFlags & MTF_LOAD_SCROLL_TEXT_MTF) != 0);
-
-aFilterData[1].Name = "ExportOnlyBackground";
-aFilterData[1].Value <<= ((mtfLoadFlags & MTF_LOAD_BACKGROUND_ONLY) != 0);
-
-aFilterData[2].Name = "Version";
-aFilterData[2].Value <<= static_cast( SOFFICE_FILEFORMAT_50 );
-
-aFilterData[3].Name = "CurrentPage";
-aFilterData[3].Value <<= uno::Reference< uno::XInterface >( 
xContainingPage,
-
uno::UNO_QUERY_THROW );
-
-aProps[2].Name = "FilterData";
-aProps[2].Value <<= aFilterData;
+uno::Sequence< beans::PropertyValue > aFilterData{
+comphelper::makePropertyValue("ScrollText",
+  ((mtfLoadFlags & 
MTF_LOAD_SCROLL_TEXT_MTF) != 0)),
+comphelper::makePropertyValue("ExportOnlyBackground",
+  ((mtfLoadFlags & 
MTF_LOAD_BACKGROUND_ONLY) != 0)),
+comphelper::makePropertyValue("Version", static_cast( 
SOFFICE_FILEFORMAT_50 )),
+comphelper::makePropertyValue(
+"CurrentPage", uno::Reference< uno::XInterface >( xContainingPage,
+  
uno::UNO_QUERY_THROW ))
+};
+
+uno::Sequence< beans::PropertyValue > aProps{
+comphelper::makePropertyValue("FilterName", OUString("SVM")),
+comphelper::makePropertyValue("GraphicRenderer", uno::Reference< 

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

2021-10-30 Thread Mike Kaganski (via logerrit)
 sdext/source/minimizer/configurationaccess.cxx |   49 +++--
 sdext/source/minimizer/impoptimizer.cxx|   62 ---
 sdext/source/minimizer/optimizationstats.cxx   |   13 +-
 sdext/source/minimizer/optimizerdialog.cxx |   15 +-
 sdext/source/minimizer/optimizerdialogcontrols.cxx |   20 ++-
 sdext/source/pdfimport/filterdet.cxx   |   27 +++--
 sdext/source/pdfimport/misc/pwdinteract.cxx|4 
 sdext/source/pdfimport/odf/odfemitter.cxx  |3 
 sdext/source/pdfimport/pdfiadaptor.cxx |8 -
 sdext/source/pdfimport/wrapper/wrapper.cxx |   15 +-
 sdext/source/presenter/PresenterAccessibility.cxx  |3 
 sdext/source/presenter/PresenterCanvasHelper.cxx   |9 -
 sdext/source/presenter/PresenterGeometryHelper.cxx |3 
 sdext/source/presenter/PresenterPaneFactory.cxx|   15 +-
 sdext/source/presenter/PresenterSlideShowView.cxx  |4 
 sdext/source/presenter/PresenterWindowManager.cxx  |9 -
 sfx2/source/appl/appopen.cxx   |5 
 sfx2/source/appl/appserv.cxx   |6 -
 sfx2/source/appl/newhelp.cxx   |7 -
 sfx2/source/appl/shutdownicon.cxx  |   33 +++---
 sfx2/source/appl/shutdowniconaqua.mm   |   18 +--
 sfx2/source/control/charwin.cxx|   10 -
 sfx2/source/control/dispatch.cxx   |9 -
 sfx2/source/control/recentdocsview.cxx |4 
 sfx2/source/control/recentdocsviewitem.cxx |   12 --
 sfx2/source/control/request.cxx|2 
 sfx2/source/control/thumbnailview.cxx  |4 
 sfx2/source/control/unoctitm.cxx   |   28 ++---
 sfx2/source/dialog/backingwindow.cxx   |   28 ++---
 sfx2/source/dialog/dinfdlg.cxx |   50 +
 sfx2/source/dialog/filedlghelper.cxx   |   23 ++--
 sfx2/source/dialog/filtergrouping.cxx  |   10 +
 sfx2/source/dialog/mailmodel.cxx   |   53 +
 sfx2/source/dialog/templdlg.cxx|6 -
 sfx2/source/doc/SfxDocumentMetaData.cxx|   44 +++-
 sfx2/source/doc/docfac.cxx |   18 +--
 sfx2/source/doc/docfile.cxx|   81 ---
 sfx2/source/doc/doctempl.cxx   |5 
 sfx2/source/doc/doctemplates.cxx   |   30 +
 sfx2/source/doc/exoticfileloadexception.cxx|5 
 sfx2/source/doc/exoticfileloadexception.hxx|2 
 sfx2/source/doc/graphhelp.cxx  |   15 +-
 sfx2/source/doc/guisaveas.cxx  |7 -
 sfx2/source/doc/iframe.cxx |   10 -
 sfx2/source/doc/objmisc.cxx|9 -
 sfx2/source/doc/objstor.cxx|   68 +++-
 sfx2/source/doc/printhelper.cxx|   51 +
 sfx2/source/doc/sfxbasemodel.cxx   |  112 +++--
 sfx2/source/doc/templatedlg.cxx|   36 ++
 sfx2/source/doc/zoomitem.cxx   |   17 +--
 sfx2/source/inet/inettbc.cxx   |   11 +-
 sfx2/source/notify/globalevents.cxx|3 
 sfx2/source/sidebar/ResourceManager.cxx|3 
 sfx2/source/sidebar/UnoDecks.cxx   |   12 --
 sfx2/source/sidebar/UnoPanels.cxx  |   12 --
 sfx2/source/view/ipclient.cxx  |7 -
 sfx2/source/view/lokcharthelper.cxx|   10 +
 sfx2/source/view/viewprn.cxx   |   27 ++---
 sfx2/source/view/viewsh.cxx|7 -
 59 files changed, 574 insertions(+), 595 deletions(-)

New commits:
commit 8b9e502480812f61a1c8d37c465aaf93763fe156
Author: Mike Kaganski 
AuthorDate: Fri Oct 29 10:02:46 2021 +0300
Commit: Mike Kaganski 
CommitDate: Sun Oct 31 06:56:57 2021 +0100

Prepare for removal of non-const operator[] from Sequence in sdext

Change-Id: I1992d1ffbbc80efe9749ebd254971a0a92a10019
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124386
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/sdext/source/minimizer/configurationaccess.cxx 
b/sdext/source/minimizer/configurationaccess.cxx
index 0ed089e341a2..3479918c2dc9 100644
--- a/sdext/source/minimizer/configurationaccess.cxx
+++ b/sdext/source/minimizer/configurationaccess.cxx
@@ -25,6 +25,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -427,38 +428,24 @@ sal_Int32 ConfigurationAccess::GetConfigProperty( const 
PPPOptimizerTokenEnum eP
 
 Sequence< PropertyValue > ConfigurationAccess::GetConfigurationSequence()
 {
-Sequence< PropertyValue > aRet( 15 );
 OptimizerSettings& rSettings( maSettings.front() );
-aRet[ 0 ].Name  = "JPEGCompression";
-aRet[ 0 ].Value <<= rSettings.mbJPEGCompression;
-aRet[ 1 ].Name  = 

[Libreoffice-bugs] [Bug 137924] [KF5] UI not scaled correctly on HIDPI Wayland/KDE screens

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

Buovjaga  changed:

   What|Removed |Added

Version|unspecified |7.0.2.2 release

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145432] New: the temp variable is used for twice consecutively

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

Bug ID: 145432
   Summary: the temp  variable is used for twice  consecutively
   Product: cppunit
   Version: 1.13
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: siddee...@gmail.com
CC: markus.mohrh...@googlemail.com

The variable is used twice consecutively on 
the left side of an assignment and therefore is assigned a value twice.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145431] New: for loop is infinite because I is equal to zero and this loop cannot be terminate

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

Bug ID: 145431
   Summary: for loop is infinite because I is equal to zero and
this loop cannot be terminate
   Product: cppunit
   Version: 1.13
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: siddee...@gmail.com
CC: markus.mohrh...@googlemail.com

test id :
1b
test description   
check the uses of for loop 
result archive :
for loop is infinite because I is equal to zero and this loop cannot be
terminate

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145430] New: for loop is infinite because I is equal to zero and this loop cannot be terminate

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

Bug ID: 145430
   Summary: for loop is infinite because I is equal to zero and
this loop cannot be terminate
   Product: cppunit
   Version: 1.13
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: siddee...@gmail.com
CC: markus.mohrh...@googlemail.com

test id :
1b
test descripotin   
check the uses of for loop 
result achive :
for loop is infinite because I is equal to zero and this loop cannot be
terminate

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144853] Sentence case not undone when cycling case

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

Michael Warner  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |michael.warner.ut+libreoffi
   |desktop.org |c...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145174] Attempt to dlopen() a missing libgcc3_java.so + searching for an .so by dlopen()'s

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145172] URL not recognised when "autocorrection > detect url" is ON (both modes) and autocorrection is on

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145170] Anomalous Behaviour Concerning Mixing Ctrl+F5 Keyboard Shortcut and Hide/Show Panel Button

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145393] Calc becomes unresponsive after a search, turning off "show this dialog" and doing a second search

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

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] [Bug 145393] Calc becomes unresponsive after a search, turning off "show this dialog" and doing a second search

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

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 140903] EDITING: Conditional formatting is lost after deleting rows referenced in a chart

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

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] [Bug 140903] EDITING: Conditional formatting is lost after deleting rows referenced in a chart

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

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

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] [Bug 142042] When auto filter is used, the output result is abnormal

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

--- Comment #2 from QA Administrators  ---
Dear 胡剑锋,

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] [Bug 141984] LibreOffice Writer crashed when trying to input Special Character 'Paragraph' symbol from tool bar widget.

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

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

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] [Bug 140960] LibreOffice is crashing on exit and in daily use

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

--- Comment #12 from QA Administrators  ---
Dear Mack Wang,

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] [Bug 97327] Calc Compare Document (Spreadsheet Compare) doesn't works well when comparing documents with different number of Sheets.

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

--- Comment #7 from QA Administrators  ---
Dear Francisco José Cañizares Santofimia,

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://web.libera.chat/?settings=#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] [Bug 60616] Chapter info doesn't support more than one appearance in an Alphabetical index entry and only the last chapter

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

--- Comment #19 from QA Administrators  ---
Dear Gláucio de Araujo,

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://web.libera.chat/?settings=#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] [Bug 58244] Impossible to display non numeric values (labels) in bubble charts axis (for categorized data)

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

--- Comment #12 from QA Administrators  ---
Dear Antonello,

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://web.libera.chat/?settings=#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] [Bug 123187] FILESAVE XLSX, Accepting changes or rejecting them get lost after roundtrip in xlsx.

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

--- Comment #5 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://web.libera.chat/?settings=#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] [Bug 123186] FILEOPEN XLSX Accepting or rejecting changes in Excel don't transfer to Calc correctly

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

--- Comment #5 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://web.libera.chat/?settings=#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] [Bug 123183] FILEOPEN XLSX Moved cells are not tracked

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

--- Comment #5 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://web.libera.chat/?settings=#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] [Bug 123185] FILEOPEN XLSX Automatic line insert gets highlighted in Calc

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

--- Comment #5 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://web.libera.chat/?settings=#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] [Bug 112587] Slideshow Animation Timings Ignored on Slower PC

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

--- Comment #16 from QA Administrators  ---
Dear Luke,

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://web.libera.chat/?settings=#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] [Bug 118842] Pasting text from webpage then cancelling, lines are not reset to default size

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

--- Comment #9 from QA Administrators  ---
Dear Julien ROPE,

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://web.libera.chat/?settings=#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] [Bug 145363] KDE Plasma: Enters loop when editing bullet style

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

--- Comment #5 from Jan-Marek Glogowski  ---
So Qt doesn't like two modal dialogs with the same parent. IMHO that generally
does make sense. LO-internally, the "paragraph style" and the "list style" edit
dialogs are modal and parented on the Writer window.

That probably also explains, why I can switch between both dialogs in gtk3 and
gen (x11), but just change the "list style" one with the STR. At least both
don't totally break like Qt.

Eventually the correct fix would be to somehow tell the dispatcher to select
the correct parent for the modal dialog. Maybe LO should auto-reparent modal
dialogs.

There is now https://gerrit.libreoffice.org/c/core/+/124500.

This re-parents new modal dialogs on top of the Qt modal stack. I'm not sure
this is the wanted behavior, but I don't think anything else wrt to modal
dialogs is implementable with Qt.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145429] New: loops are not closed

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

Bug ID: 145429
   Summary: loops are not closed
   Product: cppunit
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sp19-bse-...@cuiatk.edu.pk
CC: markus.mohrh...@googlemail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145428] New: i is not defined

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

Bug ID: 145428
   Summary: i is not defined
   Product: cppunit
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sp19-bse-...@cuiatk.edu.pk
CC: markus.mohrh...@googlemail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145427] New: variable is not equal to 0

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

Bug ID: 145427
   Summary: variable is not equal to 0
   Product: cppunit
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sp19-bse-...@cuiatk.edu.pk
CC: markus.mohrh...@googlemail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145426] New: x is not declared in loop

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

Bug ID: 145426
   Summary: x is not declared in loop
   Product: cppunit
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sp19-bse-...@cuiatk.edu.pk
CC: markus.mohrh...@googlemail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145425] New: For loop is not working

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

Bug ID: 145425
   Summary: For loop is not working
   Product: cppunit
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sp19-bse-...@cuiatk.edu.pk
CC: markus.mohrh...@googlemail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145388] Libre Calc - insert Row above does not carry function completely

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

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu,
   ||er...@redhat.com
   Hardware|x86-64 (AMD64)  |All
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG
 OS|Windows (All)   |All

--- Comment #2 from Aron Budea  ---
(In reply to BrianB from comment #0)
> Steps to Reproduce:
> 1.Create relative formula in several rows (sum cell:cell +othercell)
> 2.slect a middle row and rt click Insert row above
> 3.drag above row cell down to copy formula
I don't understand why the 3rd step is here, it isn't mentioned in the
description, and as I understand it's the "fixing" method, isn't it?

My understanding of the phenomenon is that Calc keeps the references to the
existing cells. Ie. if you add a new 5th row, E4 didn't change, so the
reference to it stays the same, while B5:D5 moved down a row, so they have to
change in the formula. If they referenced a cell in row 5, they'd change as
well.

This is different from when using fill down, when you're extending a formula to
previously uncovered ranges.

Therefore I'm closing this as NOTABUG, Eike, please correct me if there's a
flaw in the above reasoning.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145363] KDE Plasma: Enters loop when editing bullet style

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

Jan-Marek Glogowski  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #4 from Jan-Marek Glogowski  ---
Yet an other Qt modal handling problem; how I love them :-(

Really time to re-visit the parent handling code and fix it to build a real
QWidget hierarchy, which doesn't crash LO at some point ... somehow. 

This deadlocks the whole Plasma session for me. Kudos for finding the
workaround "... that can only be exited by clicking really fast on a button in
the List Style window or by killing the process from another terminal."

FWIW LO is idle at this point. AFAIK it's really Qt modal handling breaking
with LO's non-hierachy of Qt widgets.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144113] "Optimizing could fail with beziers!"

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

--- Comment #4 from Jim Avera  ---
I attached a backtrace with symbols (from my own build from git).

It's tricky to get -- a hang occurs if gdb is running in a window in the same X
session (I had to run gdb with XAUTHORITY and DISPLAY set from a vt to get it).

#0  0x7fffeeeba010 in tools::Polygon::Optimize(PolyOptimizeFlags)@plt () at
/home/jima/src/libreoffice/instdir/program/libvcllo.so
#1  0x7fffefa7e212 in vcl::test::(anonymous
namespace)::drawPolygonOffset(OutputDevice&, tools::Rectangle const&, int, int)
(rDevice=..., rRect=..., nOffset=2, nFix=0)
at /home/jima/src/libreoffice/vcl/backendtest/outputdevice/polygon.cxx:30
#2  0x7fffefa7e323 in
vcl::test::OutputDeviceTestPolygon::setupRectangle(bool) (this=0x7fffd340,
bEnableAA=false) at
/home/jima/src/libreoffice/vcl/backendtest/outputdevice/polygon.cxx:44
#3  0x7fffefa87999 in GraphicsRenderTests::testDrawRectWithPolygon()
(this=0x7fffd660) at
/home/jima/src/libreoffice/vcl/backendtest/GraphicsRenderTests.cxx:119
#4  0x7fffefab3394 in GraphicsRenderTests::runALLTests()
(this=0x7fffd660) at
/home/jima/src/libreoffice/vcl/backendtest/GraphicsRenderTests.cxx:2023
#5  0x7fffefab3f09 in GraphicsRenderTests::run(bool) (this=0x7fffd660,
storeResultBitmap=false) at
/home/jima/src/libreoffice/vcl/backendtest/GraphicsRenderTests.cxx:2167
#6  0x77c46282 in desktop::(anonymous
namespace)::runGraphicsRenderTests() () at
/home/jima/src/libreoffice/desktop/source/app/app.cxx:349
#7  0x77c4b157 in desktop::Desktop::Main() (this=0x7fffdbd0) at
/home/jima/src/libreoffice/desktop/source/app/app.cxx:1565
#8  0x7fffef876c35 in ImplSVMain() () at
/home/jima/src/libreoffice/vcl/source/app/svmain.cxx:199
#9  0x7fffef876d62 in SVMain() () at
/home/jima/src/libreoffice/vcl/source/app/svmain.cxx:231
#10 0x77cb0f67 in soffice_main() () at
/home/jima/src/libreoffice/desktop/source/app/sofficemain.cxx:98
#11 0x49ed in sal_main () at
/home/jima/src/libreoffice/desktop/source/app/main.c:49
#12 0x49cf in main (argc=2, argv=0x7fffdf48) at
/home/jima/src/libreoffice/desktop/source/app/main.c:47

-- 
You are receiving this mail because:
You are the assignee for the bug.

Re: new installer

2021-10-30 Thread Tor Lillqvist
I think your friends should use the LibreOffice as packaged by their
distro then.

--tml


new installer

2021-10-30 Thread Victor Beg
Hello,

i have many friends who are nebies at Libre Office. There are many time
confuse when they want install the new Libre Office. They have to use
the terminal what is improper for a earlier windows user. So i wrote  a
piece of code to build an grafic user installer for Linux Mint and
Ubuntu. Please check this nice installer. is for free and can be built
in a Libre Office pack.

Victor Beg



installer.sh
Description: application/shellscript
Mittels "install.sh" haben sie unter Linux zugang zu eine Grafische Instalation 
oberfläche (Zenity).
Unter Mint Cinnamon beim doppelclick auf datei werden Sie gefragt obsie es in 
terminal öffnen wollen oder als Anwendung.
Wählen Sie terminal, "run in terminal".
Untere andere Ubuntu derivate kann es vorkommen dass, das Datei nicht lauffähig 
ist bevor es nicht ausführbar gemacht wird.
Dazu klicken sie mit rechte Maus taste auf Datei "install.sh" und wählen Sie 
aus den kontext- "Eigenschaften".
Oben in der mitte sehen sie der reiter "Berechtigungen". Drauf klicken und ganz 
unten setzen sie das hacken für "ausführbar machen".
Jetzt sollte das Program ganz normal starten mittels doppelklick (falls 
eingestellt).
Sollte das unerwartete passieren und noch immer nicht funkionieren,bleibt nur 
mehr übrig-recthe Maus taste klick  auf Datei, kopieren, terminal öffnen 
,einfügen, Enter.
With "install.sh" you have access to a graphical installation interface 
(Zenity) under Linux.
Under Mint Cinnamon double-click on file and you will be asked whether you want 
to open it in terminal or as application.
Choose terminal, "run in terminal".
With other Ubuntu derivatives, it can happen that the file will not run before 
it is made executable.
To do this, right-click on the "install.sh" file and select "Properties" from 
the context.
At the top in the middle you can see the "Permisions" tab. Click on it and at 
the very bottom set the checkmark for "make executable".
Now the program should start normally with a double click (if set).
Should something unexpected happen and still not work, the only thing left to 
do is right-click on file, copy, open terminal, paste, enter.


[Libreoffice-bugs] [Bug 137924] [KF5] UI not scaled correctly on HIDPI Wayland/KDE screens

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

albertogomezma...@gmail.com changed:

   What|Removed |Added

Version|7.0.2.2 release |unspecified
 CC||albertogomezma...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 137924] [KF5] UI not scaled correctly on HIDPI Wayland/KDE screens

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

--- Comment #9 from albertogomezma...@gmail.com ---
I'm affected too with Manjaro. Wayland session in plasma. Unusable

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2021-10-30 Thread Mike Kaganski (via logerrit)
 shell/source/cmdmail/cmdmailmsg.cxx   |   15 ---
 shell/source/cmdmail/cmdmailsuppl.cxx |3 +--
 2 files changed, 9 insertions(+), 9 deletions(-)

New commits:
commit c6af59b234e8eb8182dc7f686290524feafd6ed6
Author: Mike Kaganski 
AuthorDate: Fri Oct 29 10:04:32 2021 +0300
Commit: Mike Kaganski 
CommitDate: Sat Oct 30 23:18:51 2021 +0200

Prepare for removal of non-const operator[] from Sequence in shell

Change-Id: Ie7792d0aa3f404d9177a1eb6f75569577fc3d6a9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124388
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/shell/source/cmdmail/cmdmailmsg.cxx 
b/shell/source/cmdmail/cmdmailmsg.cxx
index 2a6a5f843af2..bb8c8bc05559 100644
--- a/shell/source/cmdmail/cmdmailmsg.cxx
+++ b/shell/source/cmdmail/cmdmailmsg.cxx
@@ -145,27 +145,28 @@ Sequence< OUString > SAL_CALL 
CmdMailMsg::getElementNames(  )
 
 sal_Int32 nItems = 0;
 Sequence< OUString > aRet( 7 );
+auto pRet = aRet.getArray();
 
 if( !m_aBody.isEmpty() )
-aRet[nItems++] = "body";
+pRet[nItems++] = "body";
 
 if( !m_aOriginator.isEmpty() )
-aRet[nItems++] = "from";
+pRet[nItems++] = "from";
 
 if( !m_aRecipient.isEmpty() )
-aRet[nItems++] = "to";
+pRet[nItems++] = "to";
 
 if( m_CcRecipients.hasElements() )
-aRet[nItems++] = "cc";
+pRet[nItems++] = "cc";
 
 if( m_BccRecipients.hasElements() )
-aRet[nItems++] = "bcc";
+pRet[nItems++] = "bcc";
 
 if( !m_aSubject.isEmpty() )
-aRet[nItems++] = "subject";
+pRet[nItems++] = "subject";
 
 if( m_Attachments.hasElements() )
-aRet[nItems++] = "attachment";
+pRet[nItems++] = "attachment";
 
 aRet.realloc( nItems );
 return aRet;
diff --git a/shell/source/cmdmail/cmdmailsuppl.cxx 
b/shell/source/cmdmail/cmdmailsuppl.cxx
index c65372f5430e..00b6517c4648 100644
--- a/shell/source/cmdmail/cmdmailsuppl.cxx
+++ b/shell/source/cmdmail/cmdmailsuppl.cxx
@@ -147,8 +147,7 @@ void SAL_CALL CmdMailSuppl::sendSimpleMailMessage( const 
Reference< XSimpleMailM
 aProperty.Name = "nodepath";
 aProperty.Value <<= 
OUString("org.openoffice.Office.Common/ExternalMailer");
 
-Sequence< Any > aArgumentList( 1 );
-aArgumentList[0] <<= aProperty;
+Sequence< Any > aArgumentList{ Any(aProperty) };
 
 Reference< XNameAccess > xNameAccess(
 m_xConfigurationProvider->createInstanceWithArguments(


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

2021-10-30 Thread Mike Kaganski (via logerrit)
 sd/qa/unit/import-tests.cxx   |   64 ++---
 sd/qa/unit/tiledrendering/tiledrendering.cxx  |5 
 sd/source/core/CustomAnimationEffect.cxx  |   15 -
 sd/source/core/EffectMigration.cxx|9 
 sd/source/filter/grf/sdgrffilter.cxx  |5 
 sd/source/filter/html/HtmlOptionsDialog.cxx   |2 
 sd/source/filter/html/buttonset.cxx   |6 
 sd/source/filter/html/htmlex.cxx  |   37 +--
 sd/source/filter/ppt/pptinanimations.cxx  |   52 ++--
 sd/source/filter/xml/sdxmlwrp.cxx |3 
 sd/source/ui/animations/CustomAnimationDialog.cxx |5 
 sd/source/ui/animations/CustomAnimationPane.cxx   |9 
 sd/source/ui/controller/slidelayoutcontroller.cxx |5 
 sd/source/ui/dlg/diactrl.cxx  |9 
 sd/source/ui/dlg/gluectrl.cxx |7 
 sd/source/ui/framework/configuration/ConfigurationUpdater.cxx |3 
 sd/source/ui/framework/configuration/ResourceId.cxx   |5 
 sd/source/ui/framework/factories/FullScreenPane.cxx   |   16 -
 sd/source/ui/framework/factories/ViewShellWrapper.cxx |3 
 sd/source/ui/framework/module/ModuleController.cxx|6 
 sd/source/ui/presenter/PresenterHelper.cxx|   13 -
 sd/source/ui/remotecontrol/ImagePreparer.cxx  |   33 +-
 sd/source/ui/slideshow/SlideShowRestarter.cxx |7 
 sd/source/ui/slideshow/slideshow.cxx  |   24 --
 sd/source/ui/slideshow/slideshowimpl.cxx  |   18 -
 sd/source/ui/unoidl/SdUnoSlideView.cxx|3 
 sd/source/ui/unoidl/UnoDocumentSettings.cxx   |8 
 sd/source/ui/unoidl/unomodel.cxx  |  119 --
 sd/source/ui/unoidl/unoobj.cxx|2 
 sd/source/ui/view/DocumentRenderer.cxx|   73 ++
 sd/source/ui/view/ViewTabBar.cxx  |   10 
 sd/source/ui/view/drviews5.cxx|5 
 sd/source/ui/view/drviewse.cxx|   11 
 sd/source/ui/view/sdview4.cxx |7 
 sd/source/ui/view/viewshe2.cxx|5 
 35 files changed, 276 insertions(+), 328 deletions(-)

New commits:
commit 94f34c57be79187c7108eea845e1303ddc6319e5
Author: Mike Kaganski 
AuthorDate: Fri Oct 29 10:02:01 2021 +0300
Commit: Mike Kaganski 
CommitDate: Sat Oct 30 23:13:41 2021 +0200

Prepare for removal of non-const operator[] from Sequence in sd

Change-Id: I82dc012188f846161beeb54901c2f5d298e5c3b7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124385
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/sd/qa/unit/import-tests.cxx b/sd/qa/unit/import-tests.cxx
index 561f5b71abc5..e1b71fd788cf 100644
--- a/sd/qa/unit/import-tests.cxx
+++ b/sd/qa/unit/import-tests.cxx
@@ -91,6 +91,7 @@
 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -1741,22 +1742,19 @@ void SdImportTest::testTdf113163()
 uno::Reference < uno::XComponentContext > xContext = 
::comphelper::getProcessComponentContext();
 uno::Reference< drawing::XGraphicExportFilter > xGraphicExporter = 
drawing::GraphicExportFilter::create(xContext);
 
-uno::Sequence< beans::PropertyValue > aFilterData(2);
-aFilterData[0].Name = "PixelWidth";
-aFilterData[0].Value <<= sal_Int32(100);
-aFilterData[1].Name = "PixelHeight";
-aFilterData[1].Value <<= sal_Int32(100);
+uno::Sequence< beans::PropertyValue > aFilterData{
+comphelper::makePropertyValue("PixelWidth", sal_Int32(100)),
+comphelper::makePropertyValue("PixelHeight", sal_Int32(100))
+};
 
 utl::TempFile aTempFile;
 aTempFile.EnableKillingFile();
 
-uno::Sequence< beans::PropertyValue > aDescriptor(3);
-aDescriptor[0].Name = "URL";
-aDescriptor[0].Value <<= aTempFile.GetURL();
-aDescriptor[1].Name = "FilterName";
-aDescriptor[1].Value <<= OUString("PNG");
-aDescriptor[2].Name = "FilterData";
-aDescriptor[2].Value <<= aFilterData;
+uno::Sequence< beans::PropertyValue > aDescriptor{
+comphelper::makePropertyValue("URL", aTempFile.GetURL()),
+comphelper::makePropertyValue("FilterName", OUString("PNG")),
+comphelper::makePropertyValue("FilterData", aFilterData)
+};
 
 uno::Reference< lang::XComponent > xPage(getPage(0, xDocShRef), 
uno::UNO_QUERY);
 xGraphicExporter->setSourceDocument(xPage);
@@ -1794,22 +1792,19 @@ void SdImportTest::testTdf93124()
 uno::Reference < uno::XComponentContext > xContext = 
::comphelper::getProcessComponentContext();
 uno::Reference< 

[Libreoffice-bugs] [Bug 144598] Crash in: SkRect::round()

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||winlinu...@gmail.com

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145406] Libreoffice 7.1 fails to start/load in Windows 10

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

V Stuart Foote  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|NEEDINFO|RESOLVED

--- Comment #4 from V Stuart Foote  ---
Great, setting as duplicate

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145408] Crash in: SwTextNode::CutImpl(SwTextNode * const, SwIndex const &, SwIndex const &, long, bool)

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

Julien Nabet  changed:

   What|Removed |Added

   Hardware|All |x86-64 (AMD64)
Version|7.1.5.2 release |7.2.2.2 release
 OS|All |Windows (All)

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 140700] calc crash at exit in ScSelectionTransferObj::~ScSelectionTransferObj (steps in comment 18)

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

Caolán McNamara  changed:

   What|Removed |Added

   See Also||https://bugzilla.redhat.com
   ||/show_bug.cgi?id=2018693

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145406] Libreoffice 7.1 fails to start/load in Windows 10

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

--- Comment #3 from Alan Cummings  ---
Excellent Stuart - the issue is resolved.  I have reposted the link to help
others.  I greatly appreciate your prompt response.  
Many thanks
Alan

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145369] lines and spaces occasionally inserted -- (doesn't happen in Writer 7)

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

--- Comment #4 from peter josvai  ---
PS:

I've never heard of that...
now I know what it is for...
I don't think I like it :)

again, thanks!!

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145369] lines and spaces occasionally inserted -- (doesn't happen in Writer 7)

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

--- Comment #3 from peter josvai  ---
(In reply to Michael Warner from comment #2)
> It sounds like you are in Direct Cursor Mode. Look at the bottom of the Edit
> menu and see if that is checked.

YES!

thank you!!!
I've already "installed" writer v7... on all my machines (as appimages)

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2021-10-30 Thread Caolán McNamara (via logerrit)
 cui/source/dialogs/scriptdlg.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 2afbef0037f022a59ed1198f1f84e454d070df92
Author: Caolán McNamara 
AuthorDate: Fri Oct 29 12:39:22 2021 +0100
Commit: Caolán McNamara 
CommitDate: Sat Oct 30 22:40:43 2021 +0200

Related: tdf#145377 call select handler if restoring previously selected 
script

Change-Id: Ibab3e920e6830c86bb6bfba070f14ca8a153c25f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124429
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/cui/source/dialogs/scriptdlg.cxx b/cui/source/dialogs/scriptdlg.cxx
index 4ae05a0c48e6..3bc7a52b40ab 100644
--- a/cui/source/dialogs/scriptdlg.cxx
+++ b/cui/source/dialogs/scriptdlg.cxx
@@ -1080,7 +1080,10 @@ void SvxScriptOrgDialog::RestorePreviousSelection()
 }
 
 if (xEntry)
+{
 m_xScriptsBox->set_cursor(*xEntry);
+ScriptSelectHdl(*m_xScriptsBox);
+}
 }
 
 namespace {


[Libreoffice-bugs] [Bug 123370] [META] "Expression is faulty" regressions

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

Mike Kaganski  changed:

   What|Removed |Added

 Depends on|145384  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=145384
[Bug 145384] Lowercase cell references not tolerated in formulas for Writer
table cells
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145384] Lowercase cell references not tolerated in formulas for Writer table cells

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

Mike Kaganski  changed:

   What|Removed |Added

 Blocks|123370  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=123370
[Bug 123370] [META] "Expression is faulty" regressions
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145393] Calc becomes unresponsive after a search, turning off "show this dialog" and doing a second search

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

--- Comment #3 from Frank  ---
Request from maintainer:

Could you please install LibreOffice 7.1.6 from an official site
https://libreoffice.org/download and try repeat your problem?

My reply:

I run Linux Mint 20.2 and rely on PPA's to update software. The current version
of Calc in Mint is 6.4.7.2! Quite old. The Mint Software Installer also
suggests 6.4.7. for LibreOffice.

Looks like this is a case of 'PPA too slow' and I'll take it up with Mint.

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2021-10-30 Thread Mike Kaganski (via logerrit)
 canvas/source/directx/dx_textlayout_drawhelper.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b9f098c5a2223417af89d69fd8c0548570fd3a9d
Author: Mike Kaganski 
AuthorDate: Sat Oct 30 22:03:44 2021 +0300
Commit: Mike Kaganski 
CommitDate: Sat Oct 30 22:26:06 2021 +0200

Another tools::Long->sal_Int32 in the DX array

A leftover from commit bc413e15fae3672f580894a3cd7b077d533d8e6c

Change-Id: Ibacdf71f608657a4488c84b88ef54fb52d3e8439
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124496
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/canvas/source/directx/dx_textlayout_drawhelper.cxx 
b/canvas/source/directx/dx_textlayout_drawhelper.cxx
index 6b5a389f77ae..e7623219c798 100644
--- a/canvas/source/directx/dx_textlayout_drawhelper.cxx
+++ b/canvas/source/directx/dx_textlayout_drawhelper.cxx
@@ -206,14 +206,14 @@ namespace dxcanvas
 {
 // create the DXArray
 const sal_Int32 nLen( rLogicalAdvancements.getLength() );
-std::unique_ptr<::tools::Long[]> pDXArray( new 
::tools::Long[nLen] );
+std::unique_ptr pDXArray( 
std::make_unique(nLen) );
 for( sal_Int32 i=0; iDrawTextArray( aEmptyPoint,
   aText,
-  o3tl::span( 
pDXArray.get(), nLen ),
+  o3tl::span( pDXArray.get(), nLen 
),
   rText.StartPosition,
   rText.Length,
   bIsRTL ? SalLayoutFlags::BiDiRtl 
: SalLayoutFlags::NONE);


[Libreoffice-ux-advise] [Bug 145387] Capitalization missing for a few commands

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

--- Comment #4 from phv  ---
(In reply to Adolfo Jayme from comment #3)
> In our style of Title Capitalization, we do not capitalize the second
> element of hyphenated terms. The rest should; please provide a patch.

First, thank you for your answer.
This removes some elements but adds others:

Drop-Down Form Field
➔
Drop-down Form Field

Form-Base Filters
➔
Form-base Filters

Sorry, I'm not qualified-enough to write a patch and I have concern about
adding more bugs by doing so. Moreover, I didn't have a look at the labels in
the other LibreOffice softwares. Still, I'm at the disposal of whoever would
like a more extensive list, which of course should be checked by the proper
service before being submitted.

My report followed the reading of a similar remark in bug #145109.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 145387] Capitalization missing for a few commands

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

--- Comment #4 from phv  ---
(In reply to Adolfo Jayme from comment #3)
> In our style of Title Capitalization, we do not capitalize the second
> element of hyphenated terms. The rest should; please provide a patch.

First, thank you for your answer.
This removes some elements but adds others:

Drop-Down Form Field
➔
Drop-down Form Field

Form-Base Filters
➔
Form-base Filters

Sorry, I'm not qualified-enough to write a patch and I have concern about
adding more bugs by doing so. Moreover, I didn't have a look at the labels in
the other LibreOffice softwares. Still, I'm at the disposal of whoever would
like a more extensive list, which of course should be checked by the proper
service before being submitted.

My report followed the reading of a similar remark in bug #145109.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145424] New: Defining variable but not using it

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

Bug ID: 145424
   Summary: Defining variable but not using it
   Product: cppunit
   Version: 1.12
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fa18-bse-...@cuiatk.edu.pk
CC: markus.mohrh...@googlemail.com

Test id: 5

Test description :
checking definition of variable 

Result :

Variable Y is defined but not used

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145419] The writing cursor disappears

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

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145420] The writing cursor disappears

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

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---


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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145423] New: Destroying already killed data

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

Bug ID: 145423
   Summary: Destroying already killed data
   Product: cppunit
   Version: 1.12
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fa18-bse-...@cuiatk.edu.pk
CC: markus.mohrh...@googlemail.com

Test id: 4

Test description :
checking definition of variable 

Result :

Destroying already killed data

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145422] New: Destroying already killed data

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

Bug ID: 145422
   Summary: Destroying already killed data
   Product: cppunit
   Version: 1.12
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fa18-bse-...@cuiatk.edu.pk
CC: markus.mohrh...@googlemail.com

Test id: 3

Test description :
checking definition of variable 

Result :

Destroying already killed data

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145421] New: Redefinition of variable x

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

Bug ID: 145421
   Summary: Redefinition of variable x
   Product: cppunit
   Version: 1.12
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fa18-bse-...@cuiatk.edu.pk
CC: markus.mohrh...@googlemail.com

Test id: 3

Test description :
checking definition of variable 

Result :

Variable X is redefined

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2021-10-30 Thread Mike Kaganski (via logerrit)
 scripting/source/basprov/basmethnode.cxx|   20 ++
 scripting/source/dlgprov/dlgevtatt.cxx  |2 -
 scripting/source/dlgprov/dlgprov.cxx|   16 +--
 scripting/source/protocolhandler/scripthandler.cxx  |6 ++--
 scripting/source/provider/ActiveMSPList.cxx |7 ++---
 scripting/source/provider/BrowseNodeFactoryImpl.cxx |   12 +---
 scripting/source/provider/MasterScriptProvider.cxx  |   12 +---
 scripting/source/provider/ProviderCache.cxx |5 ++-
 scripting/source/vbaevents/eventhelper.cxx  |   28 +---
 9 files changed, 49 insertions(+), 59 deletions(-)

New commits:
commit 22ba855d1a2317361c6ad8b631ae1bd707887435
Author: Mike Kaganski 
AuthorDate: Fri Oct 29 10:00:35 2021 +0300
Commit: Mike Kaganski 
CommitDate: Sat Oct 30 22:04:01 2021 +0200

Prepare for removal of non-const operator[] from Sequence in scripting

Change-Id: Ia85fe6de38674c7982b0f983a798a4d99ec1fb70
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124384
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/scripting/source/basprov/basmethnode.cxx 
b/scripting/source/basprov/basmethnode.cxx
index 688b4ef2140f..fca2cafe8d72 100644
--- a/scripting/source/basprov/basmethnode.cxx
+++ b/scripting/source/basprov/basmethnode.cxx
@@ -23,6 +23,8 @@
 #include 
 #include 
 #include 
+
+#include 
 #include 
 #include 
 #include 
@@ -237,17 +239,13 @@ namespace basprov
 {
 Reference< frame::XDispatchHelper > xHelper( 
frame::DispatchHelper::create( m_xContext ) );
 
-Sequence < PropertyValue > aArgs(7);
-aArgs[0].Name = "Document";
-aArgs[0].Value <<= sDocURL;
-aArgs[1].Name = "LibName";
-aArgs[1].Value <<= sLibName;
-aArgs[2].Name = "Name";
-aArgs[2].Value <<= sModName;
-aArgs[3].Name = "Type";
-aArgs[3].Value <<= OUString("Module");
-aArgs[4].Name = "Line";
-aArgs[4].Value <<= static_cast< sal_uInt32 >( nLine1 );
+Sequence < PropertyValue > aArgs{
+comphelper::makePropertyValue("Document", sDocURL),
+comphelper::makePropertyValue("LibName", sLibName),
+comphelper::makePropertyValue("Name", sModName),
+comphelper::makePropertyValue("Type", OUString("Module")),
+comphelper::makePropertyValue("Line", static_cast< 
sal_uInt32 >( nLine1 ))
+};
 xHelper->executeDispatch( xProv, ".uno:BasicIDEAppear", 
OUString(), 0, aArgs );
 }
 }
diff --git a/scripting/source/dlgprov/dlgevtatt.cxx 
b/scripting/source/dlgprov/dlgevtatt.cxx
index 43b5851c225a..704518e07aef 100644
--- a/scripting/source/dlgprov/dlgevtatt.cxx
+++ b/scripting/source/dlgprov/dlgevtatt.cxx
@@ -113,7 +113,7 @@ namespace dlgprov
 Sequence< Any > args(1);
 if ( xSMgr.is() )
 {
-args[0] <<= xModel;
+args.getArray()[0] <<= xModel;
 mxListener.set( xSMgr->createInstanceWithArgumentsAndContext( 
"ooo.vba.EventListener", args, m_xContext ), UNO_QUERY );
 }
 if ( !rxControl.is() )
diff --git a/scripting/source/dlgprov/dlgprov.cxx 
b/scripting/source/dlgprov/dlgprov.cxx
index d52660904471..5a4e5c7eb124 100644
--- a/scripting/source/dlgprov/dlgprov.cxx
+++ b/scripting/source/dlgprov/dlgprov.cxx
@@ -71,15 +71,15 @@ namespace dlgprov
 OUString aDlgLocation = aInetObj.GetMainURL( 
INetURLObject::DecodeMechanism::NONE );
 css::lang::Locale aLocale = 
Application::GetSettings().GetUILanguageTag().getLocale();
 
-Sequence aArgs( 6 );
-aArgs[0] <<= aDlgLocation;
-aArgs[1] <<= true; // bReadOnly
-aArgs[2] <<= aLocale;
-aArgs[3] <<= aDlgName;
-aArgs[4] <<= OUString();
-
 Reference< task::XInteractionHandler > xDummyHandler;
-aArgs[5] <<= xDummyHandler;
+
+Sequence aArgs{ Any(aDlgLocation),
+ Any(true), // bReadOnly
+ Any(aLocale),
+ Any(aDlgName),
+ Any(OUString()),
+ Any(xDummyHandler) };
+
 Reference< XMultiComponentFactory > xSMgr_( 
i_xContext->getServiceManager(), UNO_SET_THROW );
 // TODO: Ctor
 Reference< resource::XStringResourceManager > xStringResourceManager( 
xSMgr_->createInstanceWithContext
diff --git a/scripting/source/protocolhandler/scripthandler.cxx 
b/scripting/source/protocolhandler/scripthandler.cxx
index db9d746c81be..0ef2fdad21db 100644
--- a/scripting/source/protocolhandler/scripthandler.cxx
+++ b/scripting/source/protocolhandler/scripthandler.cxx
@@ -176,8 +176,8 @@ void SAL_CALL 
ScriptProtocolHandler::dispatchWithNotification(
 

[Libreoffice-bugs] [Bug 145420] New: The writing cursor disappears

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

Bug ID: 145420
   Summary: The writing cursor disappears
   Product: LibreOffice
   Version: 7.2.2.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: u.fu...@yahoo.de

Description:
Version: 7.2.2.2 / LibreOffice Community
Build ID: 20 (Build: 2)
CPU threads: 2; OS: Linux 5.4; UI render: default; VCL: kf5 (cairo + xcb)
Locale: de-DE (de_DE.UTF-8); UI: de-DE
Ubuntu package version: 1: 7.2.2 ~ rc2-0ubuntu0.20.04.1 ~ lo1
Calc: threaded

The writing cursor disappears
Create text document. Write a short text and create a table. Write text in a
field in the table. Highlight part of this text and change the font and / or
size. The writing cursor can no longer be placed in the document and you can no
longer write. Neither inside the table nor outside it. Briefly minimizing the
program window eliminates the problem. This is an extremely annoying bug when
you have to make extensive changes of this kind to the document.

Steps to Reproduce:
1.Briefly minimizing the program window eliminates the problem.
2.
3.

Actual Results:
Writing possible.

Expected Results:
Writing possible


Reproducible: Always


User Profile Reset: No



Additional Info:
no information

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145416] Object animation - Emphasis - Spin: When rotated, the graphic object "grows thin" and completely disappears

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

--- Comment #1 from Mike Kaganski  ---
No repro using Version: 7.2.2.2 (x64) / LibreOffice Community
Build ID: 02b2acce88a210515b4a5bb2e46cbfb63fe97d56
CPU threads: 12; OS: Windows 10.0 Build 19043; UI render: default; VCL: win
Locale: ru-RU (ru_RU); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145419] New: The writing cursor disappears

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

Bug ID: 145419
   Summary: The writing cursor disappears
   Product: LibreOffice
   Version: 7.2.2.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: u.fu...@yahoo.de

Description:
Version: 7.2.2.2 / LibreOffice Community
Build ID: 20 (Build: 2)
CPU threads: 2; OS: Linux 5.4; UI render: default; VCL: kf5 (cairo + xcb)
Locale: de-DE (de_DE.UTF-8); UI: de-DE
Ubuntu package version: 1: 7.2.2 ~ rc2-0ubuntu0.20.04.1 ~ lo1
Calc: threaded

The writing cursor disappears
Create text document. Write a short text and create a table. Write text in a
field in the table. Highlight part of this text and change the font and / or
size. The writing cursor can no longer be placed in the document and you can no
longer write. Neither inside the table nor outside it. Briefly minimizing the
program window eliminates the problem. This is an extremely annoying bug when
you have to make extensive changes of this kind to the document.

Steps to Reproduce:
1.Briefly minimizing the program window eliminates the problem.
2.
3.

Actual Results:
Writing possible.

Expected Results:
Writing possible


Reproducible: Always


User Profile Reset: No



Additional Info:
no information

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145418] New: Data is killed without defining it

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

Bug ID: 145418
   Summary: Data is killed without defining it
   Product: cppunit
   Version: 1.12
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fa18-bse-...@cuiatk.edu.pk
CC: markus.mohrh...@googlemail.com

Test id: 2

Test description :
checking definition of variable 

Result :

Variable X is killed without definition

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2021-10-30 Thread Mike Kaganski (via logerrit)
 sc/qa/extras/macros-test.cxx |9 
 sc/qa/extras/sccellrangeobj.cxx  |5 
 sc/qa/extras/scindexenumeration_tableconditionalentryenumeration.cxx |   20 -
 sc/qa/extras/scmodelobj.cxx  |6 
 sc/qa/extras/scpdfexport.cxx |   29 +-
 sc/qa/extras/scsubtotaldescriptorbase.cxx|6 
 sc/qa/extras/scsubtotalfieldobj.cxx  |6 
 sc/qa/extras/sctableconditionalentryobj.cxx  |   20 -
 sc/qa/extras/sctableconditionalformat.cxx|   19 -
 sc/qa/unit/bugfix-test.cxx   |   13 -
 sc/qa/unit/chart2dataprovider.cxx|   21 -
 sc/qa/unit/copy_paste_test.cxx   |5 
 sc/qa/unit/jumbosheets-test.cxx  |5 
 sc/qa/unit/scshapetest.cxx   |5 
 sc/qa/unit/subsequent_export_test2.cxx   |9 
 sc/qa/unit/tiledrendering/tiledrendering.cxx |   36 +--
 sc/qa/unit/uicalc/uicalc.cxx |5 
 sc/source/core/data/documen3.cxx |3 
 sc/source/core/data/documen5.cxx |   30 +-
 sc/source/core/data/dpfilteredcache.cxx  |9 
 sc/source/core/data/dpobject.cxx |9 
 sc/source/core/data/dpoutput.cxx |8 
 sc/source/core/data/dptabsrc.cxx |7 
 sc/source/core/data/table5.cxx   |   14 -
 sc/source/core/data/validat.cxx  |   22 --
 sc/source/core/tool/charthelper.cxx  |7 
 sc/source/core/tool/formulaparserpool.cxx|3 
 sc/source/core/tool/interpr4.cxx |5 
 sc/source/filter/excel/xichart.cxx   |7 
 sc/source/filter/excel/xiescher.cxx  |   10 
 sc/source/filter/excel/xltoolbar.cxx |6 
 sc/source/filter/excel/xltracer.cxx  |5 
 sc/source/filter/ftools/fapihelper.cxx   |5 
 sc/source/filter/inc/xltracer.hxx|2 
 sc/source/filter/oox/autofilterbuffer.cxx|   20 +
 sc/source/filter/oox/drawingfragment.cxx |9 
 sc/source/filter/oox/viewsettings.cxx|7 
 sc/source/filter/oox/workbooksettings.cxx|   18 -
 sc/source/filter/xml/XMLCodeNameProvider.cxx |   10 
 sc/source/filter/xml/xmldrani.cxx|2 
 sc/source/filter/xml/xmldrani.hxx|2 
 sc/source/filter/xml/xmlexprt.cxx|   13 -
 sc/source/filter/xml/xmlimprt.cxx|6 
 sc/source/filter/xml/xmlsorti.cxx|   39 +--
 sc/source/ui/Accessibility/AccessibleCsvControl.cxx  |   24 +-
 sc/source/ui/Accessibility/AccessibleDocument.cxx|6 
 sc/source/ui/Accessibility/AccessiblePreviewTable.cxx|2 
 sc/source/ui/cctrl/tbzoomsliderctrl.cxx  |   10 
 sc/source/ui/docshell/docsh.cxx  |   26 +-
 sc/source/ui/docshell/docsh4.cxx |   15 -
 sc/source/ui/drawfunc/fuins2.cxx |   27 +-
 sc/source/ui/miscdlgs/optsolver.cxx  |5 
 sc/source/ui/miscdlgs/solveroptions.cxx  |3 
 sc/source/ui/miscdlgs/solverutil.cxx |7 
 sc/source/ui/unoobj/PivotTableDataSequence.cxx   |   11 -
 sc/source/ui/unoobj/cellvaluebinding.cxx |   17 -
 sc/source/ui/unoobj/chartuno.cxx |   27 +-
 sc/source/ui/unoobj/condformatuno.cxx|   19 -
 sc/source/ui/unoobj/dapiuno.cxx  |3 
 sc/source/ui/unoobj/datauno.cxx  |   14 -
 sc/source/ui/unoobj/docuno.cxx   |   55 
++---
 sc/source/ui/unoobj/eventuno.cxx |3 
 sc/source/ui/unoobj/linkuno.cxx  |9 
 sc/source/ui/unoobj/servuno.cxx 

[Libreoffice-commits] core.git: 2 commits - opencl/source sccomp/qa sccomp/source

2021-10-30 Thread Mike Kaganski (via logerrit)
 opencl/source/openclconfig.cxx |4 
 sccomp/qa/unit/SwarmSolverTest.cxx |  157 ++---
 sccomp/qa/unit/solver.cxx  |9 +
 sccomp/source/solver/LpsolveSolver.cxx |4 
 4 files changed, 80 insertions(+), 94 deletions(-)

New commits:
commit 9a668129259eeba1a05745b7cd820fccf3043f45
Author: Mike Kaganski 
AuthorDate: Fri Oct 29 09:53:10 2021 +0300
Commit: Mike Kaganski 
CommitDate: Sat Oct 30 21:55:44 2021 +0200

Prepare for removal of non-const operator[] from Sequence in opencl

Change-Id: Id58484eb9b955948a8edb48000b86cec3b721060
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124377
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/opencl/source/openclconfig.cxx b/opencl/source/openclconfig.cxx
index 5467fc5e83c9..9c4452c153d3 100644
--- a/opencl/source/openclconfig.cxx
+++ b/opencl/source/openclconfig.cxx
@@ -55,11 +55,11 @@ namespace {
 css::uno::Sequence SetOfImplMatcherToStringSequence(const 
OpenCLConfig::ImplMatcherSet& rSet)
 {
 css::uno::Sequence result(rSet.size());
-
+auto resultRange = asNonConstRange(result);
 size_t n(0);
 for (const auto& rItem : rSet)
 {
-result[n++] =
+resultRange[n++] =
 rItem.maOS.replaceAll("%", "%25").replaceAll("/", 
"%2F").replaceAll(";", "%3B") + "/" +
 rItem.maOSVersion.replaceAll("%", "%25").replaceAll("/", 
"%2F").replaceAll(";", "%3B") + "/" +
 rItem.maPlatformVendor.replaceAll("%", "%25").replaceAll("/", 
"%2F").replaceAll(";", "%3B") + "/" +
commit 881ea76399a76599e17688f335f4f164d4d29413
Author: Mike Kaganski 
AuthorDate: Fri Oct 29 09:59:24 2021 +0300
Commit: Mike Kaganski 
CommitDate: Sat Oct 30 21:55:34 2021 +0200

Prepare for removal of non-const operator[] from Sequence in sccomp

Change-Id: Ic55d553c85dd0abb92b6b7f223a437c8c2ca0700
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124383
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/sccomp/qa/unit/SwarmSolverTest.cxx 
b/sccomp/qa/unit/SwarmSolverTest.cxx
index 78cfccaaa376..030822b9cdb4 100644
--- a/sccomp/qa/unit/SwarmSolverTest.cxx
+++ b/sccomp/qa/unit/SwarmSolverTest.cxx
@@ -127,14 +127,14 @@ void SwarmSolverTest::testVariableBounded()
 uno::Sequence aVariables{ { 0, 1, 0 } };
 
 // constraints
-uno::Sequence aConstraints(2);
-aConstraints[0].Left = table::CellAddress(0, 1, 0);
-aConstraints[0].Operator = sheet::SolverConstraintOperator_LESS_EQUAL;
-aConstraints[0].Right <<= 100.0;
-
-aConstraints[1].Left = table::CellAddress(0, 1, 0);
-aConstraints[1].Operator = sheet::SolverConstraintOperator_GREATER_EQUAL;
-aConstraints[1].Right <<= -100.0;
+uno::Sequence aConstraints{
+{ /* [0] Left */ table::CellAddress(0, 1, 0),
+  /* Operator */ sheet::SolverConstraintOperator_LESS_EQUAL,
+  /* Right*/ uno::Any(100.0) },
+{ /* [1] Left */ table::CellAddress(0, 1, 0),
+  /* Operator */ sheet::SolverConstraintOperator_GREATER_EQUAL,
+  /* Right*/ uno::Any(-100.0) }
+};
 
 // initialize solver
 xSolver->setDocument(xDocument);
@@ -178,18 +178,17 @@ void SwarmSolverTest::testVariableConstrained()
 uno::Sequence aVariables{ { 0, 1, 0 } };
 
 // constraints
-uno::Sequence aConstraints(3);
-aConstraints[0].Left = table::CellAddress(0, 1, 0);
-aConstraints[0].Operator = sheet::SolverConstraintOperator_GREATER_EQUAL;
-aConstraints[0].Right <<= -5.0;
-
-aConstraints[1].Left = table::CellAddress(0, 1, 0);
-aConstraints[1].Operator = sheet::SolverConstraintOperator_LESS_EQUAL;
-aConstraints[1].Right <<= 0.0;
-
-aConstraints[2].Left = table::CellAddress(0, 1, 1);
-aConstraints[2].Operator = sheet::SolverConstraintOperator_GREATER_EQUAL;
-aConstraints[2].Right <<= 10.0;
+uno::Sequence aConstraints{
+{ /* [0] Left */ table::CellAddress(0, 1, 0),
+  /* Operator */ sheet::SolverConstraintOperator_GREATER_EQUAL,
+  /* Right*/ uno::Any(-5.0) },
+{ /* [1] Left */ table::CellAddress(0, 1, 0),
+  /* Operator */ sheet::SolverConstraintOperator_LESS_EQUAL,
+  /* Right*/ uno::Any(0.0) },
+{ /* [2] Left */ table::CellAddress(0, 1, 1),
+  /* Operator */ sheet::SolverConstraintOperator_GREATER_EQUAL,
+  /* Right*/ uno::Any(10.0) }
+};
 
 // initialize solver
 xSolver->setDocument(xDocument);
@@ -233,23 +232,20 @@ void SwarmSolverTest::testTwoVariables()
 uno::Sequence aVariables{ { 0, 1, 2 }, { 0, 1, 3 } };
 
 // constraints
-uno::Sequence aConstraints(4);
-
-aConstraints[0].Left = table::CellAddress(0, 1, 2);
-aConstraints[0].Operator = sheet::SolverConstraintOperator_GREATER_EQUAL;
-aConstraints[0].Right <<= -100.0;
-
-aConstraints[1].Left = table::CellAddress(0, 

[Libreoffice-ux-advise] [Bug 145387] Capitalization missing for a few commands

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

Adolfo Jayme  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #3 from Adolfo Jayme  ---
In our style of Title Capitalization, we do not capitalize the second element
of hyphenated terms. The rest should; please provide a patch.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 145387] Capitalization missing for a few commands

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

Adolfo Jayme  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #3 from Adolfo Jayme  ---
In our style of Title Capitalization, we do not capitalize the second element
of hyphenated terms. The rest should; please provide a patch.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145415] variable x is not used

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

--- Comment #1 from phv  ---
Okay, this is obviously spam. See all the reports that have been open in the
last 24 hours:
#145360
#145494
#145395
#145400
#145402
#145403
#145410
#145411
#145412
#145413
#145417


Can an admin block these users?

markus.mohrhard
sadiaubab1982
sp19-bse-0.21

Thank you!

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145417] New: variable x is used without definition

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

Bug ID: 145417
   Summary: variable x is used without definition
   Product: cppunit
   Version: 1.12
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fa18-bse-...@cuiatk.edu.pk
CC: markus.mohrh...@googlemail.com

Test id: 1

Test description :
checking definition of variable 

Result :

Variable X is used without definition

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145416] New: Object animation - Emphasis - Spin: When rotated, the graphic object "grows thin" and completely disappears

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

Bug ID: 145416
   Summary: Object animation - Emphasis - Spin: When rotated, the
graphic object "grows thin" and completely disappears
   Product: LibreOffice
   Version: 7.1.2.2 release
  Hardware: x86-64 (AMD64)
OS: FreeBSD
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jxxxbx...@yandex.ru

Created attachment 176029
  --> https://bugs.documentfoundation.org/attachment.cgi?id=176029=edit
An example of wrong work

At the end of the effect:

Vector object (SVG, Draw):
0 < Angle of rotation < 90: Lines become thinner
Angle of rotation = 90: The object disappears completely 

Graphic object (PNG):
Angle of rotation = 90: The object disappears completely 

Steps to Reproduce:
Details are in the attachment




Version: 7.1.2.2 / LibreOffice Community
Build ID: 10(Build:2)
CPU threads: 2; OS: FreeBSD 12.2; UI render: default; VCL: qt5+cairo
Locale: ru-RU (ru_RU.UTF-8); UI: ru-RU
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145412] variable valid is note used

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

JUNAID IQBAL  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|INVALID |---
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2021-10-30 Thread Mike Kaganski (via logerrit)
 sax/qa/cppunit/xmlimport.cxx |   13 +
 1 file changed, 5 insertions(+), 8 deletions(-)

New commits:
commit 83f50dee5b4add87cf30903aeb0e44e0d4f04682
Author: Mike Kaganski 
AuthorDate: Fri Oct 29 09:56:46 2021 +0300
Commit: Mike Kaganski 
CommitDate: Sat Oct 30 21:12:29 2021 +0200

Prepare for removal of non-const operator[] from Sequence in sax

Change-Id: I9df7229f55347bd4477626595cab459065cc4bb8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124381
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/sax/qa/cppunit/xmlimport.cxx b/sax/qa/cppunit/xmlimport.cxx
index cb34ff1f5eb2..fcf839609cac 100644
--- a/sax/qa/cppunit/xmlimport.cxx
+++ b/sax/qa/cppunit/xmlimport.cxx
@@ -358,17 +358,16 @@ void XMLImportTest::setUp()
 xTokenHandler.set( new DummyTokenHandler );
 uno::Reference const xInit(m_xLegacyFastParser,
 uno::UNO_QUERY_THROW);
-uno::Sequence args(1);
-args[0] <<= xTokenHandler;
-xInit->initialize( args );
+xInit->initialize({ uno::Any(xTokenHandler) });
 
 sal_Int32 nNamespaceCount = 
SAL_N_ELEMENTS(DummyTokenHandler::namespaceURIs);
 uno::Sequence namespaceArgs( nNamespaceCount + 1 );
-namespaceArgs[0] <<= OUString( "registerNamespaces" );
+auto p_namespaceArgs = namespaceArgs.getArray();
+p_namespaceArgs[0] <<= OUString( "registerNamespaces" );
 for (sal_Int32 i = 1; i <= nNamespaceCount; i++ )
 {
 css::beans::Pair rPair( 
OUString(DummyTokenHandler::namespaceURIs[i - 1]), i << 16 );
-namespaceArgs[i] <<= rPair;
+p_namespaceArgs[i] <<= rPair;
 }
 xInit->initialize( namespaceArgs );
 
@@ -406,9 +405,7 @@ void XMLImportTest::testMissingNamespaceDeclaration()
 
 uno::Reference const xInit(m_xLegacyFastParser,
 uno::UNO_QUERY_THROW);
-uno::Sequence args(1);
-args[0] <<= OUString("IgnoreMissingNSDecl");
-xInit->initialize( args );
+xInit->initialize({ uno::Any(OUString("IgnoreMissingNSDecl")) });
 
 for (sal_uInt16 i = 0; i < SAL_N_ELEMENTS( fileNames ); i++)
 {


[Libreoffice-bugs] [Bug 145406] Libreoffice 7.1 fails to start/load in Windows 10

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

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #2 from V Stuart Foote  ---
Or, the 7.1.7 release has the issue patched.

https://downloadarchive.documentfoundation.org/libreoffice/old/7.1.7.2/win/x86_64/LibreOffice_7.1.7.2_Win_x64.msi.mirrorlist

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145404] Crash in: ScDBData::UpdateReference(ScDocument const *, UpdateRefMode, short, long, short, short, long, short, short, long, short)

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

--- Comment #2 from Michael Warner  ---
Repro in:
Version: 7.2.2.2 (x64) / LibreOffice Community
Build ID: 02b2acce88a210515b4a5bb2e46cbfb63fe97d56
CPU threads: 6; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2021-10-30 Thread Mike Kaganski (via logerrit)
 reportdesign/source/core/api/ReportDefinition.cxx   |   20 ++---
 reportdesign/source/core/api/ReportEngineJFree.cxx  |   43 ---
 reportdesign/source/filter/xml/xmlControlProperty.cxx   |2 
 reportdesign/source/filter/xml/xmlExportDocumentHandler.cxx |2 
 reportdesign/source/filter/xml/xmlfilter.cxx|   12 +--
 reportdesign/source/ui/dlg/CondFormat.cxx   |   16 +---
 reportdesign/source/ui/dlg/DateTime.cxx |   25 +++---
 reportdesign/source/ui/dlg/GroupsSorting.cxx|   45 +---
 reportdesign/source/ui/dlg/Navigator.cxx|7 -
 reportdesign/source/ui/inspection/GeometryHandler.cxx   |3 
 reportdesign/source/ui/misc/RptUndo.cxx |   23 ++
 reportdesign/source/ui/misc/UITools.cxx |5 -
 reportdesign/source/ui/report/DesignView.cxx|   12 +--
 reportdesign/source/ui/report/ReportController.cxx  |   14 +--
 reportdesign/source/ui/report/ReportSection.cxx |   15 ++--
 15 files changed, 111 insertions(+), 133 deletions(-)

New commits:
commit c5196e281f51b2894aa903469ba8c15a6723eb4c
Author: Mike Kaganski 
AuthorDate: Fri Oct 29 09:55:58 2021 +0300
Commit: Mike Kaganski 
CommitDate: Sat Oct 30 20:55:43 2021 +0200

Prepare for removal of non-const operator[] from Sequence in reportdesign

Change-Id: I7631aeb90bf224ba7a00025df6e3fa444b216a42
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124380
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/reportdesign/source/core/api/ReportDefinition.cxx 
b/reportdesign/source/core/api/ReportDefinition.cxx
index 6e8c0950b72e..36babe9b72a0 100644
--- a/reportdesign/source/core/api/ReportDefinition.cxx
+++ b/reportdesign/source/core/api/ReportDefinition.cxx
@@ -208,7 +208,7 @@ static void lcl_extractAndStartStatusIndicator( const 
utl::MediaDescriptor& _rDe
 
 sal_Int32 nLength = _rCallArgs.getLength();
 _rCallArgs.realloc( nLength + 1 );
-_rCallArgs[ nLength ] <<= _rxStatusIndicator;
+_rCallArgs.getArray()[ nLength ] <<= _rxStatusIndicator;
 }
 }
 catch (const uno::Exception&)
@@ -706,7 +706,7 @@ uno::Sequence< OUString > SAL_CALL 
OReportDefinition::getSupportedServiceNames(
 {
 sal_Int32 nLen = aSupported.getLength();
 aSupported.realloc( nLen + 1 );
-aSupported[ nLen ] = SERVICE_REPORTDEFINITION;
+aSupported.getArray()[ nLen ] = SERVICE_REPORTDEFINITION;
 }
 
 // outta here
@@ -1246,7 +1246,7 @@ void OReportDefinition::impl_loadFromStorage_nolck_throw( 
const uno::Reference<
 beans::PropertyValue aPropVal;
 aPropVal.Name = "Storage";
 aPropVal.Value <<= _xStorageToLoadFrom;
-aDelegatorArguments[nPos] <<= aPropVal;
+aDelegatorArguments.getArray()[nPos] <<= aPropVal;
 
 rptui::OXUndoEnvironment& rEnv = m_pImpl->m_pReportModel->GetUndoEnv();
 rptui::OXUndoEnvironment::OUndoEnvLock aLock(rEnv);
@@ -1328,8 +1328,9 @@ void SAL_CALL OReportDefinition::storeToStorage( const 
uno::Reference< embed::XS
 
 
 sal_Int32 nArgsLen = aDelegatorArguments.getLength();
-aDelegatorArguments.realloc(nArgsLen+1);
-aDelegatorArguments[nArgsLen++] <<= xInfoSet;
+aDelegatorArguments.realloc(nArgsLen+3);
+auto pDelegatorArguments = aDelegatorArguments.getArray();
+pDelegatorArguments[nArgsLen++] <<= xInfoSet;
 
 uno::Reference< document::XEmbeddedObjectResolver > xObjectResolver;
 uno::Reference xGraphicStorageHandler;
@@ -1338,9 +1339,8 @@ void SAL_CALL OReportDefinition::storeToStorage( const 
uno::Reference< embed::XS
 xGraphicHelper.clear();
 xObjectResolver = SvXMLEmbeddedObjectHelper::Create( 
_xStorageToSaveTo,*this, SvXMLEmbeddedObjectHelperMode::Write ).get();
 
-aDelegatorArguments.realloc(nArgsLen+2);
-aDelegatorArguments[nArgsLen++] <<= xGraphicStorageHandler;
-aDelegatorArguments[nArgsLen++] <<= xObjectResolver;
+pDelegatorArguments[nArgsLen++] <<= xGraphicStorageHandler;
+pDelegatorArguments[nArgsLen++] <<= xObjectResolver;
 
 uno::Reference 
xCom(static_cast(this),uno::UNO_QUERY);
 // Try to write to settings.xml, meta.xml, and styles.xml; only really 
care about success of
@@ -1607,9 +1607,7 @@ void SAL_CALL OReportDefinition::load( const 
uno::Sequence< beans::PropertyValue
 const size_t nLastOpenMode = SAL_N_ELEMENTS( nOpenModes ) - 1;
 for ( size_t i=nFirstOpenMode; i <= nLastOpenMode; ++i )
 {
-uno::Sequence< uno::Any > aStorageCreationArgs(2);
-aStorageCreationArgs[0] = aStorageSource;
-aStorageCreationArgs[1] <<= nOpenModes[i];
+uno::Sequence< uno::Any > aStorageCreationArgs{ aStorageSource, 
uno::Any(nOpenModes[i]) };
 
 try
 {
diff --git a/reportdesign/source/core/api/ReportEngineJFree.cxx 
b/reportdesign/source/core/api/ReportEngineJFree.cxx
index 

[Libreoffice-bugs] [Bug 145415] New: variable x is not used

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

Bug ID: 145415
   Summary: variable x is not used
   Product: cppunit
   Version: 1.12
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fa18-bse-...@cuiatk.edu.pk
CC: markus.mohrh...@googlemail.com

juhgiugiugy

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145412] variable valid is note used

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

Michael Warner  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145336] Crash on setting table borders in LibreOffice Writer

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

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

   What|Removed |Added

 CC||79045_79...@mail.ru

--- Comment #2 from Roman Kuznetsov <79045_79...@mail.ru> ---
no repro in

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: e06ba31a037ea3ff192c9a00db6152179eb298a6
CPU threads: 4; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Raster; VCL: win
Locale: ru-RU (ru_RU); UI: en-US
Calc: CL

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145358] Dynamic QR / Barcode creation using spreadsheet cell reference

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

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

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 145358] Dynamic QR / Barcode creation using spreadsheet cell reference

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

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

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-commits] core.git: helpcontent2

2021-10-30 Thread Adolfo Jayme Barrientos (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7ddf23d19439b9aa569ae35bbac41079203b9f84
Author: Adolfo Jayme Barrientos 
AuthorDate: Sat Oct 30 13:50:10 2021 -0500
Commit: Gerrit Code Review 
CommitDate: Sat Oct 30 20:50:10 2021 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to 081aa4f6de2c2f6388267883e68966b9da02981f
  - BASIC syntax error

Change-Id: I6ed5bb2541ce6ad6e2bc4f877a093ea5f9cb7aa5

  - Since Windows 8, “Run” isn’t a clickable Start option

Change-Id: I1e02547fbe6042e47c028062ea43375cb3ebd0a4

diff --git a/helpcontent2 b/helpcontent2
index 3445df8b3761..081aa4f6de2c 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 3445df8b3761cc8dafd0f5a275696ad54dc9bbec
+Subproject commit 081aa4f6de2c2f6388267883e68966b9da02981f


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

2021-10-30 Thread Adolfo Jayme Barrientos (via logerrit)
 source/text/sbasic/shared/0304.xhp|2 +-
 source/text/shared/guide/start_parameters.xhp |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 081aa4f6de2c2f6388267883e68966b9da02981f
Author: Adolfo Jayme Barrientos 
AuthorDate: Sat Oct 30 13:50:01 2021 -0500
Commit: Adolfo Jayme Barrientos 
CommitDate: Sat Oct 30 13:50:01 2021 -0500

BASIC syntax error

Change-Id: I6ed5bb2541ce6ad6e2bc4f877a093ea5f9cb7aa5

diff --git a/source/text/sbasic/shared/0304.xhp 
b/source/text/sbasic/shared/0304.xhp
index 7971edc18..33dbd5af5 100644
--- a/source/text/sbasic/shared/0304.xhp
+++ b/source/text/sbasic/shared/0304.xhp
@@ -203,7 +203,7 @@
 Set oDoc = ThisComponent
 Print oDoc.Title
 oDoc = Nothing
-Print oDoc ‘ Error
+Print oDoc ' Error
 End Sub
 
 
commit 52b37a0450f918a2e4c7ecf8461ee33d4e355e7c
Author: Adolfo Jayme Barrientos 
AuthorDate: Sun Oct 24 15:44:44 2021 -0500
Commit: Adolfo Jayme Barrientos 
CommitDate: Sat Oct 30 13:22:38 2021 -0500

Since Windows 8, “Run” isn’t a clickable Start option

Change-Id: I1e02547fbe6042e47c028062ea43375cb3ebd0a4

diff --git a/source/text/shared/guide/start_parameters.xhp 
b/source/text/shared/guide/start_parameters.xhp
index cae93e1d1..4cc41b8c1 100644
--- a/source/text/shared/guide/start_parameters.xhp
+++ b/source/text/shared/guide/start_parameters.xhp
@@ -39,7 +39,7 @@
 
 
 
-Select Run from the Windows Start 
menu.
+Search for Run in the Windows Start 
menu.
 
 
 Type the following text in the Open text field 
and click OK. 


[Libreoffice-bugs] [Bug 145414] New: Paste Special Feature Suggestions

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

Bug ID: 145414
   Summary: Paste Special Feature Suggestions
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: libreb...@osxtra.dev

Add "Paste Only Formats" to Tools/Customize so it could be made a keyboard
shortcut, or used to alter the default "Paste Special" context menu.  Adding
"Formats" as a  top-level choice for the context menu would also be good.  It's
a fairly routine operation.

Add "Paste Column Widths" to the main "Paste Special" menu, and also add "Paste
Only Column Widths" to Tools/Customize along with "Paste Only Formats".

As a feature new to Calc, "Paste Column Widths" would be especially handy, even
if it was only added to "Paste Special" and not to Tools/Customize.  It has
long been part of another spreadsheet app, and makes the tedious job of syncing
the look of multiple sheets much easier.

("Paste Row Heights" would also be very handy, but that feature does not even
exist in the other app.)

Alternatively, instead of adding "Paste Column Widths" and/or "Paste Row
Heights", make "Paste Formats" aware of the width and height of the copied
cell(s).

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

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

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

   What|Removed |Added

 Depends on||145363


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=145363
[Bug 145363] KDE Plasma: Enters loop when editing bullet style
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145394] var x is not defined

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

Michael Warner  changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|NEW |RESOLVED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145363] KDE Plasma: Enters loop when editing bullet style

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

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

   What|Removed |Added

 CC||79045_79...@mail.ru
 Blocks||102495


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102495
[Bug 102495] [META] KDE VCL backend bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145395] variable help assigned the value but it not be used

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

Michael Warner  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Michael Warner  ---
Please better describe your issue.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145367] Writer table functions: MIN(SUM(), 333) is damaged on edit

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

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

   What|Removed |Added

Summary|MIN(SUM(),333) is|Writer table functions:
   |damaged on edit |MIN(SUM(),333) is
   ||damaged on edit
 CC||79045_79...@mail.ru

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145401] Variables are not used

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

--- Comment #6 from Michael Warner  ---
What does any of this have to do with LibreOffice?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145413] New: Number of turns is not decreases with attempts

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

Bug ID: 145413
   Summary: Number of turns is not decreases with attempts
   Product: cppunit
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sp19-bse-...@cuiatk.edu.pk
CC: markus.mohrh...@googlemail.com

test id: 05

test description: check number of turns.

Result achieved:

 As we have 10 number of turns in guessing the word so in every attempt number
of turns will decreases but in actual program its not decreasing because the it
did not minus one on every attempt.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145401] Variables are not used

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

--- Comment #5 from Michael Warner  ---
*** Bug 145399 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145399] var is not defined

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

Michael Warner  changed:

   What|Removed |Added

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

--- Comment #1 from Michael Warner  ---


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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145400] Variables are not used.

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

Michael Warner  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145400] Variables are not used.

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

Michael Warner  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145412] New: variable valid is note used

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

Bug ID: 145412
   Summary: variable valid is note used
   Product: cppunit
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sp19-bse-...@cuiatk.edu.pk
CC: markus.mohrh...@googlemail.com

test id: 04

test description: check the usage of variable name valid.

Result achieved:

in start of program variable name valid is assigned by different alpha bates
from "A to Z" but in main program there is no usage of valid variable in the
program or any statement.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 40917] UI: scrolling only by full row height

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||fabian.pasc...@perfact.de

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 40917] UI: scrolling only by full row height

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||fabian.pasc...@perfact.de

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

  1   2   3   >