[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.4' - desktop/source sd/uiconfig

2021-11-14 Thread Nnamani Ezinne (via logerrit)
 desktop/source/lib/init.cxx   |3 +
 sd/uiconfig/simpress/ui/notebookbar.ui|   38 +++---
 sd/uiconfig/simpress/ui/notebookbar_compact.ui|   26 -
 sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui |   12 ++--
 sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui|   20 +++
 sd/uiconfig/simpress/ui/notebookbar_single.ui |8 +-
 6 files changed, 55 insertions(+), 52 deletions(-)

New commits:
commit 9bdf99aef988592f09cf0f8b6171501253cb6ef8
Author: Nnamani Ezinne 
AuthorDate: Mon Nov 8 21:13:59 2021 +0100
Commit: Andras Timar 
CommitDate: Mon Nov 15 08:53:55 2021 +0100

Impress- Correct commands mentioning Page instead of Slide

Replaced UNO commands that have similar implementation but their labels 
bear Page instead of Slide

Change-Id: I5fb24493478b0a8fdd4e324066d8112497fc9eb1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124888
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Andras Timar 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125049

diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index 9edc10d013e4..2e1bc71f626a 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -2843,6 +2843,9 @@ static void doc_iniUnoCommands ()
 OUString(".uno:InsertPage"),
 OUString(".uno:DeletePage"),
 OUString(".uno:DuplicatePage"),
+OUString(".uno:InsertSlide"),
+OUString(".uno:DeleteSlide"),
+OUString(".uno:DuplicateSlide"),
 OUString(".uno:Cut"),
 OUString(".uno:Copy"),
 OUString(".uno:Paste"),
diff --git a/sd/uiconfig/simpress/ui/notebookbar.ui 
b/sd/uiconfig/simpress/ui/notebookbar.ui
index c8f258613db7..0f84fee9b661 100644
--- a/sd/uiconfig/simpress/ui/notebookbar.ui
+++ b/sd/uiconfig/simpress/ui/notebookbar.ui
@@ -1168,7 +1168,7 @@
   
 True
 False
-.uno:ImportFromFile
+.uno:ImportSlideFromFile
   
 
 
@@ -1242,14 +1242,14 @@
   
 True
 False
-.uno:InsertPageField
+.uno:InsertSlideField
   
 
 
   
 True
 False
-.uno:InsertPagesField
+.uno:InsertSlidesField
   
 
 
@@ -3431,7 +3431,7 @@
   
 True
 False
-.uno:InsertPage
+.uno:InsertSlide
   
   
 False
@@ -3456,7 +3456,7 @@
 True
 False
 center
-.uno:DuplicatePage
+.uno:DuplicateSlide
   
   
 False
@@ -3468,7 +3468,7 @@
 True
 False
 center
-.uno:DeletePage
+.uno:DeleteSlide
   
   
 False
@@ -4971,7 +4971,7 @@
   
 True
 False
-.uno:InsertPage
+.uno:InsertSlide
   
   
 False
@@ -5014,7 +5014,7 @@
   
 True
 False
-.uno:DuplicatePage
+.uno:DuplicateSlide
   
   
 False
@@ -5038,7 +5038,7 @@
   
 True
 False
-.uno:ImportFromFile
+.uno:ImportSlideFromFile
   
   
 False
@@ -6152,7 +6152,7 @@
   
 True
 False
-.uno:InsertPage
+.uno:InsertSlide
   
   
 False
@@ -6246,7 +6246,7 @@
   
 True
 False
- 

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.4' - framework/source svtools/source

2021-11-14 Thread Szymon Kłos (via logerrit)
 framework/source/uielement/generictoolbarcontroller.cxx |8 -
 svtools/source/uno/toolboxcontroller.cxx|   25 
 2 files changed, 32 insertions(+), 1 deletion(-)

New commits:
commit 5533bf8642cf753d3176b6a4c027473b2f4b197a
Author: Szymon Kłos 
AuthorDate: Wed Nov 10 11:33:03 2021 +0100
Commit: Andras Timar 
CommitDate: Mon Nov 15 08:53:38 2021 +0100

Handle UNO command aliases in ToolBoxes

This allows to use ".uno:InsertSlide" which is an alias for
".uno:InsertPage"
in the notebookbar.

Change-Id: Ia52488b65e308a62b686e77b38cba3675deece73
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124952
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Andras Timar 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125048
Tested-by: Andras Timar 

diff --git a/framework/source/uielement/generictoolbarcontroller.cxx 
b/framework/source/uielement/generictoolbarcontroller.cxx
index a657efd3cc88..aa35a1511b48 100644
--- a/framework/source/uielement/generictoolbarcontroller.cxx
+++ b/framework/source/uielement/generictoolbarcontroller.cxx
@@ -32,6 +32,7 @@
 #include 
 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -151,7 +152,12 @@ void SAL_CALL GenericToolbarController::execute( sal_Int16 
KeyModifier )
 aArgs[0].Name  = "KeyModifier";
 aArgs[0].Value <<= KeyModifier;
 
-aTargetURL.Complete = aCommandURL;
+// handle also command aliases
+auto aProperties = 
vcl::CommandInfoProvider::GetCommandProperties(m_aCommandURL,
+vcl::CommandInfoProvider::GetModuleIdentifier(m_xFrame));
+OUString sRealCommand = 
vcl::CommandInfoProvider::GetRealCommandForCommand(aProperties);
+
+aTargetURL.Complete = sRealCommand.isEmpty() ? aCommandURL : 
sRealCommand;
 if ( m_xUrlTransformer.is() )
 m_xUrlTransformer->parseStrict( aTargetURL );
 
diff --git a/svtools/source/uno/toolboxcontroller.cxx 
b/svtools/source/uno/toolboxcontroller.cxx
index 8bd9d94f2366..5193979f36d2 100644
--- a/svtools/source/uno/toolboxcontroller.cxx
+++ b/svtools/source/uno/toolboxcontroller.cxx
@@ -26,6 +26,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -501,6 +502,30 @@ void ToolboxController::bindListener()
 catch ( Exception& )
 {
 }
+
+// it may be a command alias
+if (!xDispatch.is())
+{
+try
+{
+auto aProperties = 
vcl::CommandInfoProvider::GetCommandProperties(listener.first,
+
vcl::CommandInfoProvider::GetModuleIdentifier(m_xFrame));
+OUString sRealCommand = 
vcl::CommandInfoProvider::GetRealCommandForCommand(aProperties);
+
+if (!sRealCommand.isEmpty())
+{
+aTargetURL.Complete = sRealCommand;
+if ( m_xUrlTransformer.is() )
+m_xUrlTransformer->parseStrict( aTargetURL );
+
+xDispatch = xDispatchProvider->queryDispatch( 
aTargetURL, OUString(), 0 );
+}
+}
+catch ( Exception& )
+{
+}
+}
+
 listener.second = xDispatch;
 
 Listener aListener( aTargetURL, xDispatch );


[Libreoffice-bugs] [Bug 124904] 'Reference' to headings does not have strike-through when modified with 'track changes' shown

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

Dieter  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #9 from Dieter  ---
VERIFIED with

Version: 7.3.0.0.alpha1+ (x64) / LibreOffice Community
Build ID: 7b8f630db30ee0066a9f4b6e540368d2fcad7fa8
CPU threads: 4; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL

Lásló, thank you for fixing it!

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

[Libreoffice-ux-advise] [Bug 139031] Some dropdowns in the PDF export dialog should be aligned better (kf5)

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

--- Comment #16 from Michael Weghorn  ---
(In reply to medmedin2014 from comment #13)
> Created attachment 176223 [details]
> Bad tab titles alignement
> 
> (In reply to Michael Weghorn from comment #10)
> 
> > I quickly tried with a master build, all tabs look centered there (with the
> > Breeze style at least and I'd say it's the same in the screenshot). To me,
> > it just looks like "User Interface" and "Digital Signature" are the longest
> > texts, and everything is fine so far. When you click on those tabs, the same
> > "margin" can be seen on the left and right tab for that tab itself.
> 
> See attached image for more info.

Thanks. I still think that the two tabs mentioned are "centred" as the others
are, it's just that all tabs are not "perfectly" centred. Looking at the image,
the left and right margins of the "General" tab are also not exactly the same
size, the right-hand one is a few pixels wider, and I think that's the same
that's happening  for the "User Interface" and "Digital Signature" tabs, but
it's more visible there. To me, this doesn't look like a problem in that
specific dialog.
I think there was already a similar discussion about that in another ticket in
the past.
Currently, the qt5/kf5 VCL plugin doesn't use native Qt widgets, which would
probably be the best way forward in the long run, s. tdf#130857 .

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

[Libreoffice-bugs] [Bug 145323] [BASE] [REPORTBUILDER] [REGRESSION] [7.2.x] Moving a field to a different section corrupts the field

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

Noel Grandin  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 145323] [BASE] [REPORTBUILDER] [REGRESSION] [7.2.x] Moving a field to a different section corrupts the field

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

--- Comment #11 from Commit Notification 
 ---
Noel Grandin committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/92857b181a715de08bd4264f4dc4161367d2b3c7

tdf#145323 reportbuilder Moving a field corrupts the field

It will be available in 7.3.0.

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

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

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

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

2021-11-14 Thread Noel Grandin (via logerrit)
 reportdesign/source/core/sdr/RptObject.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 92857b181a715de08bd4264f4dc4161367d2b3c7
Author: Noel Grandin 
AuthorDate: Sun Nov 14 16:30:39 2021 +0200
Commit: Noel Grandin 
CommitDate: Mon Nov 15 08:35:08 2021 +0100

tdf#145323 reportbuilder Moving a field corrupts the field

regression from
commit 09cb778b6eb7d3a5b9029965a1320b49c90e7295
clean up SdrObject cloning

Change-Id: I7f234dee1dca704195eeebba874c80e73c7abe91
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125196
Tested-by: Noel Grandin 
Reviewed-by: Noel Grandin 

diff --git a/reportdesign/source/core/sdr/RptObject.cxx 
b/reportdesign/source/core/sdr/RptObject.cxx
index 284fc4c9c5ae..b4bc3b4fb28c 100644
--- a/reportdesign/source/core/sdr/RptObject.cxx
+++ b/reportdesign/source/core/sdr/RptObject.cxx
@@ -587,7 +587,7 @@ OUnoObject::OUnoObject(
 
 OUnoObject::OUnoObject(
 SdrModel& rSdrModel, OUnoObject const & rSource)
-:   SdrUnoObj(rSdrModel, rSource.getUnoControlModelTypeName())
+:   SdrUnoObj(rSdrModel, rSource)
 ,OObjectBase(rSource.getServiceName())
 ,m_nObjectType(rSource.m_nObjectType)
 // tdf#119067


[Libreoffice-bugs] [Bug 145323] [BASE] [REPORTBUILDER] [REGRESSION] [7.2.x] Moving a field to a different section corrupts the field

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.3.0

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

[Libreoffice-bugs] [Bug 145691] New: Selection is discarded when 'replace all' is executed

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

Bug ID: 145691
   Summary: Selection is discarded when 'replace all' is executed
   Product: LibreOffice
   Version: 7.2.2.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sarp...@aol.com

To reproduce:
1. Select a range of cells
2. Do Search/Replace All
The selection has been replaced by a selection of only the cells the replace
was executed in. To execute multiple Search/Replace All on a block of cells,
the block must repeatedly be selected.

As far as I can tell, none of the settings in the search/replace box affect
this. Whether cells are actually replaced affects it.

It appears be be related to, but not the same as bug 81442. IMHO, a
search-replace of cells should not change either the selection or settings in a
dialog. These settings are user data, and shouldn't be arbitrarily changed any
more than the data in cells is. Were that simply disallowed, the software
couldn't do it incorrectly.

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

[Libreoffice-commits] core.git: odk/examples

2021-11-14 Thread Hossein (via logerrit)
 odk/examples/cpp/counter/counter.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit b56abc20eb198057d65ff40575a53cf1e29cf086
Author: Hossein 
AuthorDate: Sat Oct 9 22:29:58 2021 +0200
Commit: Mike Kaganski 
CommitDate: Mon Nov 15 08:24:42 2021 +0100

Clean C++ SDK example "counter"

* Use  instead of 

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

diff --git a/odk/examples/cpp/counter/counter.cxx 
b/odk/examples/cpp/counter/counter.cxx
index c45546889285..667c04a7057e 100644
--- a/odk/examples/cpp/counter/counter.cxx
+++ b/odk/examples/cpp/counter/counter.cxx
@@ -40,7 +40,7 @@
  * simple example component implementing a counter
  */
 
-#include 
+#include 
 #include 
 #include 
 #include 
@@ -77,9 +77,9 @@ class MyCounterImpl
 public:
 MyCounterImpl( const Reference< XMultiServiceFactory > & xServiceManager )
 : m_xServiceManager( xServiceManager ), m_nRefCount( 0 )
-{ printf( "< MyCounterImpl ctor called >\n" ); }
+{ std::cout << "< MyCounterImpl ctor called >" << std::endl; }
 ~MyCounterImpl()
-{ printf( "< MyCounterImpl dtor called >\n" ); }
+{ std::cout << "< MyCounterImpl dtor called >" << std::endl; }
 
 // XInterface implementation
 virtual void SAL_CALL acquire() throw ()


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

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

Dieter  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INSUFFICIENTDATA

--- Comment #5 from Dieter  ---
(In reply to csongor from comment #3)
> Otherwise, feel free to close this bug with a works-for-me.

O.K., let's close it then. Feel free to change it back to UNCONFIRMED, if it
happens again and you can add some steps.

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

[Libreoffice-bugs] [Bug 145474] There is a compatibility issue with office (docx)

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

Dieter  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|
 CC||dgp-m...@gmx.de
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Dieter  ---
Thank you for reporting the bug. Screenshot makes it visible. But please attach
a sample document so somebody is able to reproduce the bug. Thank you.
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested document is provided.
(Please note that the attachment will be public, remove any sensitive
information before attaching it)

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

[Libreoffice-bugs] [Bug 145461] + Sign not Visible in Styles Deck Hierarchical View when a Style is Highlighted

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

Dieter  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||dgp-m...@gmx.de
 Whiteboard| QA:needsComment|
 Status|UNCONFIRMED |NEEDINFO

--- Comment #2 from Dieter  ---
I can't confirm it with

Version: 7.3.0.0.alpha1+ (x64) / LibreOffice Community
Build ID: 742b8befecbcfc0cfab87cfcd87c83b7d8ef32ab
CPU threads: 4; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL

and also not with

Version: 7.2.3.1 (x64) / LibreOffice Community
Build ID: 1d5dee817bde88d78dbcc0d00f88492568e131d5
CPU threads: 4; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: de-DE
Calc: CL

Could you please try to reproduce it with the latest version of LibreOffice
from https://www.libreoffice.org/download/libreoffice-fresh/ ? I have set the
bug's status to 'NEEDINFO'. Please change it back to 'UNCONFIRMED' if the bug
is still present in the latest version. Change to RESOLVED WORKSFORME, if the
problem went away.

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

[Libreoffice-bugs] [Bug 145673] UI: comment box doesn't expand while typing (scrollbar instead)

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

Rainer Bielefeld Retired  changed:

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #5 from Rainer Bielefeld Retired  
---
Created attachment 176255
  --> https://bugs.documentfoundation.org/attachment.cgi?id=176255=edit
Sample document demonstrates behavior

My observation with newly created WRITER document amd Installation of
Version:7.2.1.2 (x64); Build ID: 87b77fad49947c1441b67c559c339af8f3517e22; CPU
threads: 12; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win;
Locale: de-DE (de_DE); UI: de-DE; Calc: threaded  |  my default User Profile:

When I type text Comment Box will expand if there is room enough.
As soon as it is going to touch Comment Box below the box will not go on to
expand, but vertical scroll bar appears.

I think that is a useful and probably the intended behavior.

For your own tests simply type some nonsense strings into comment boxes. Always
when room for expansion is spent Comment Box will no longer expand, but
vertical scroll bar appears.

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

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

2021-11-14 Thread Hossein (via logerrit)
 emfio/source/reader/mtftools.cxx |2 +-
 filter/source/graphicfilter/icgm/actimpr.cxx |2 +-
 filter/source/graphicfilter/icgm/bitmap.cxx  |4 ++--
 filter/source/graphicfilter/icgm/class4.cxx  |   18 +-
 4 files changed, 13 insertions(+), 13 deletions(-)

New commits:
commit 52ad81c74887e5c4d9a8c0a3cc8a11e3785cb72c
Author: Hossein 
AuthorDate: Tue Nov 9 13:25:37 2021 +0100
Commit: Mike Kaganski 
CommitDate: Mon Nov 15 07:56:51 2021 +0100

Use basegfx::rad2deg() instead of *57.29577951308

* Replaced multiplying by magic number 57.29577951308 with
basegfx::rad2deg() which is equal to 180.0/M_PI
* Instances of this could be found using:

   git grep 57.29577951308 *.cxx *.hxx

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

diff --git a/emfio/source/reader/mtftools.cxx b/emfio/source/reader/mtftools.cxx
index 204a598d4550..8e38e4e5b286 100644
--- a/emfio/source/reader/mtftools.cxx
+++ b/emfio/source/reader/mtftools.cxx
@@ -1733,7 +1733,7 @@ namespace emfio
 double fY = aP2.Y();
 if ( fX )
 {
-double fOrientation = acos( fX / sqrt( fX * fX + fY * fY ) ) * 
57.29577951308;
+double fOrientation = basegfx::rad2deg( acos( fX / sqrt( fX * 
fX + fY * fY ) ) );
 if ( fY > 0 )
 fOrientation = 360 - fOrientation;
 fOrientation += 90;
diff --git a/filter/source/graphicfilter/icgm/actimpr.cxx 
b/filter/source/graphicfilter/icgm/actimpr.cxx
index 664616b41f2e..bb17a380c3b2 100644
--- a/filter/source/graphicfilter/icgm/actimpr.cxx
+++ b/filter/source/graphicfilter/icgm/actimpr.cxx
@@ -792,7 +792,7 @@ void CGMImpressOutAct::DrawText(awt::Point const & 
rTextPos, awt::Size const & r
 double nX = mpCGM->pElement->nCharacterOrientation[ 2 ];
 double nY = mpCGM->pElement->nCharacterOrientation[ 3 ];
 double fSqrt = sqrt(nX * nX + nY * nY);
-double nOrientation = fSqrt != 0.0 ? (acos(nX / fSqrt) * 57.29577951308) : 
0.0;
+double nOrientation = fSqrt != 0.0 ? basegfx::rad2deg(acos(nX / fSqrt)) : 
0.0;
 if ( nY < 0 )
 nOrientation = 360 - nOrientation;
 
diff --git a/filter/source/graphicfilter/icgm/bitmap.cxx 
b/filter/source/graphicfilter/icgm/bitmap.cxx
index 10eeb99b433a..897d2d57e753 100644
--- a/filter/source/graphicfilter/icgm/bitmap.cxx
+++ b/filter/source/graphicfilter/icgm/bitmap.cxx
@@ -227,7 +227,7 @@ void CGMBitmap::ImplGetBitmap( CGMBitmapDescriptor& rDesc )
 nY = rDesc.mnR.Y - rDesc.mnP.Y;
 
 double fSqrt = sqrt(nX * nX + nY * nY);
-rDesc.mnOrientation = fSqrt != 0.0 ? (acos(nX / fSqrt) * 
57.29577951308) : 0.0;
+rDesc.mnOrientation = fSqrt != 0.0 ? basegfx::rad2deg(acos(nX / 
fSqrt)) : 0.0;
 if ( nY > 0 )
 rDesc.mnOrientation = 360 - rDesc.mnOrientation;
 
@@ -241,7 +241,7 @@ void CGMBitmap::ImplGetBitmap( CGMBitmapDescriptor& rDesc )
 nY = -( fSin * nX - fCos * nY );
 
 fSqrt = sqrt(nX * nX + nY * nY);
-fAngle = fSqrt != 0.0 ? (acos(nX / fSqrt) * 57.29577951308) : 0.0;
+fAngle = fSqrt != 0.0 ? basegfx::rad2deg(acos(nX / fSqrt)) : 0.0;
 if ( nY > 0 )
 fAngle = 360 - fAngle;
 
diff --git a/filter/source/graphicfilter/icgm/class4.cxx 
b/filter/source/graphicfilter/icgm/class4.cxx
index 91bda04906ac..edf34970a27f 100644
--- a/filter/source/graphicfilter/icgm/class4.cxx
+++ b/filter/source/graphicfilter/icgm/class4.cxx
@@ -37,7 +37,7 @@ double CGM::ImplGetOrientation( FloatPoint const & rCenter, 
FloatPoint const & r
 double nY = rPoint.Y - rCenter.Y;
 
 double fSqrt = sqrt(nX * nX + nY * nY);
-double fOrientation = fSqrt != 0.0 ? (acos(nX / fSqrt) * 57.29577951308) : 
0.0;
+double fOrientation = fSqrt != 0.0 ? basegfx::rad2deg(acos(nX / fSqrt)) : 
0.0;
 if (nY > 0)
 fOrientation = 360 - fOrientation;
 
@@ -549,9 +549,9 @@ void CGM::ImplDoClass4()
 if (!bUseless)
 {
 const double fStartSqrt = sqrt(vector[0] * vector[ 0 ] + 
vector[1] * vector[1]);
-fStartAngle = fStartSqrt != 0.0 ? (acos(vector[0] / 
fStartSqrt) * 57.29577951308) : 0.0;
+fStartAngle = fStartSqrt != 0.0 ? 
basegfx::rad2deg(acos(vector[0] / fStartSqrt)) : 0.0;
 const double fEndSqrt = sqrt(vector[2] * vector[ 2 ] + 
vector[3] * vector[3]);
-fEndAngle = fEndSqrt != 0.0 ? (acos(vector[ 2 ] / 
fEndSqrt) * 57.29577951308) : 0.0;
+fEndAngle = fEndSqrt != 0.0 ? 
basegfx::rad2deg(acos(vector[ 2 ] / fEndSqrt)) : 0.0;
 
 if ( vector[ 1 ] > 0 )
 fStartAngle = 360 - fStartAngle;
@@ -627,9 +627,9 @@ void CGM::ImplDoClass4()
 if (!bUseless)
 {

[Libreoffice-bugs] [Bug 145690] New: One view for "Properties", Formatvorlagen, Galery, Navigator, Page, Vorlagenkontrolle

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

Bug ID: 145690
   Summary: One view for "Properties", Formatvorlagen, Galery,
Navigator, Page, Vorlagenkontrolle
   Product: LibreOffice
   Version: 7.2.2.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: guenter.alzin...@t-online.de

When I'm selecting a different view on the "Formatvorlagen" panel, the previous
view is overwritten. 
I've to use F5 (Navigator) and F11 (Formatvorlagen) to have both views open at
the same time.

Yes, you're right, F5 and F11 creates two own views, but I've to look for it.

Best Regards
Guenter Alzinger

PS: I like libreoffice

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

[Libreoffice-commits] core.git: odk/examples

2021-11-14 Thread Hossein (via logerrit)
 odk/examples/cpp/Convertor/Convertor.cxx |   12 +---
 odk/examples/cpp/Convertor/Makefile  |   13 +++--
 2 files changed, 4 insertions(+), 21 deletions(-)

New commits:
commit 7a0d3ed55c5b6ebda129d66574d78168ca29135b
Author: Hossein 
AuthorDate: Sun Nov 14 01:13:08 2021 +0200
Commit: Mike Kaganski 
CommitDate: Mon Nov 15 07:35:39 2021 +0100

Fixing the license statement for the Convertor C++ example

Fixing the license statement for the 'Convertor.cxx' and 'Makefile'
according to the '/TEMPLATE.SOURCECODE.HEADER'

This example was added in 83b529d88388c7c8e0563242a030063bd95c4bed

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

diff --git a/odk/examples/cpp/Convertor/Convertor.cxx 
b/odk/examples/cpp/Convertor/Convertor.cxx
index 7297c0eaeec5..765a28317409 100644
--- a/odk/examples/cpp/Convertor/Convertor.cxx
+++ b/odk/examples/cpp/Convertor/Convertor.cxx
@@ -1,20 +1,10 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; 
fill-column: 100 -*- */
 /*
  * This file is part of the LibreOffice project.
  *
  * This Source Code Form is subject to the terms of the Mozilla Public
  * License, v. 2.0. If a copy of the MPL was not distributed with this
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
 #include 
diff --git a/odk/examples/cpp/Convertor/Makefile 
b/odk/examples/cpp/Convertor/Makefile
index 33d86ae6b844..32bec8f7deba 100644
--- a/odk/examples/cpp/Convertor/Makefile
+++ b/odk/examples/cpp/Convertor/Makefile
@@ -1,3 +1,4 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t; fill-column: 
100 -*-
 #
 # This file is part of the LibreOffice project.
 #
@@ -5,16 +6,6 @@
 # License, v. 2.0. If a copy of the MPL was not distributed with this
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 #
-# This file incorporates work covered by the following license notice:
-#
-#   Licensed to the Apache Software Foundation (ASF) under one or more
-#   contributor license agreements. See the NOTICE file distributed
-#   with this work for additional information regarding copyright
-#   ownership. The ASF licenses this file to you under the Apache
-#   License, Version 2.0 (the "License"); you may not use this file
-#   except in compliance with the License. You may obtain a copy of
-#   the License at http://www.apache.org/licenses/LICENSE-2.0 .
-#
 
 # Builds the C++ Convertor example of the SDK.
 
@@ -88,3 +79,5 @@ clean :
-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_GEN))
-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_OBJ))
-$(DEL) $(subst \\,\,$(subst /,$(PS),$(OUT_BIN)/Convertor*))
+
+# vim: set noet sw=4 ts=4:


[Libreoffice-bugs] [Bug 145689] Page style reverts to default when inserting a nested table

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

Mike Kaganski  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 67282] EDITING Page style is reset when automatic hyphenation is applied to a paragraph in a table, when the table is at the top of the page/document

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

Mike Kaganski  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 145667] checkboxes in autocorrect options dialogue are not properly aligned (kf5 only?)

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

l...@royal.net changed:

   What|Removed |Added

 CC||l...@royal.net

--- Comment #4 from l...@royal.net ---
Actually on windows these checkboxes also don't look quite right - M column is
aligned to the right while T column - to the left, it is just not as extreme as
in KDE, and they are completely visible.

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

[Libreoffice-bugs] [Bug 145198] Bash like autocompletion for Calc's autoinput

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

--- Comment #2 from Felicia Medina <532h2...@smuggroup.com> ---
The Calc's autoinput function is great, but it can be a little frustrating to
get it to do what you want. This post will teach you how to use the shell and
its autocompletion https://bestwritingsclues.com/reviews/papernow-review/
features, so that you can make your life easier with autoinput!

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

[Libreoffice-bugs] [Bug 118776] FILEOPEN Text set to no fill in PPTX is black in Impress

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

Justin L  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |jl...@mail.com
   |desktop.org |
 CC||jl...@mail.com

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

[Libreoffice-bugs] [Bug 137438] LibreOffice Impress doesn't display text when it's text transparency is 100% in MS Office.

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

Justin L  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 Blocks||118776
   Assignee|libreoffice-b...@lists.free |jl...@mail.com
   |desktop.org |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118776
[Bug 118776] FILEOPEN Text set to no fill in PPTX is black in Impress
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 118776] FILEOPEN Text set to no fill in PPTX is black in Impress

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

Justin L  changed:

   What|Removed |Added

 Depends on||137438


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=137438
[Bug 137438] LibreOffice Impress doesn't display text when it's text
transparency is 100% in MS Office.
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144036] New icon needed for the UNO Object Inspector

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

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

https://git.libreoffice.org/core/commit/6f3f033f91a2debe064d4cd127e9f31cf2518db1

KJ: tdf#144036 add UNO Object Inspector

It will be available in 7.3.0.

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

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

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

[Libreoffice-commits] core.git: icon-themes/karasa_jaga icon-themes/karasa_jaga_svg

2021-11-14 Thread Rizal Muttaqin (via logerrit)
 icon-themes/karasa_jaga/cmd/32/developmenttoolsdockingwindow.png |binary
 icon-themes/karasa_jaga/cmd/lc_developmenttoolsdockingwindow.png |binary
 icon-themes/karasa_jaga/cmd/sc_developmenttoolsdockingwindow.png |binary
 icon-themes/karasa_jaga_svg/cmd/32/developmenttoolsdockingwindow.svg |1 +
 icon-themes/karasa_jaga_svg/cmd/lc_developmenttoolsdockingwindow.svg |1 +
 icon-themes/karasa_jaga_svg/cmd/sc_developmenttoolsdockingwindow.svg |1 +
 6 files changed, 3 insertions(+)

New commits:
commit 6f3f033f91a2debe064d4cd127e9f31cf2518db1
Author: Rizal Muttaqin 
AuthorDate: Mon Nov 15 04:46:39 2021 +0700
Commit: Rizal Muttaqin 
CommitDate: Mon Nov 15 05:13:47 2021 +0100

KJ: tdf#144036 add UNO Object Inspector

Change-Id: I8465b3c2d13210d01f3742cd8bcc40b5692528ad
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125210
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 

diff --git a/icon-themes/karasa_jaga/cmd/32/developmenttoolsdockingwindow.png 
b/icon-themes/karasa_jaga/cmd/32/developmenttoolsdockingwindow.png
new file mode 100644
index ..dcabf219c104
Binary files /dev/null and 
b/icon-themes/karasa_jaga/cmd/32/developmenttoolsdockingwindow.png differ
diff --git a/icon-themes/karasa_jaga/cmd/lc_developmenttoolsdockingwindow.png 
b/icon-themes/karasa_jaga/cmd/lc_developmenttoolsdockingwindow.png
new file mode 100644
index ..cd7446965bf5
Binary files /dev/null and 
b/icon-themes/karasa_jaga/cmd/lc_developmenttoolsdockingwindow.png differ
diff --git a/icon-themes/karasa_jaga/cmd/sc_developmenttoolsdockingwindow.png 
b/icon-themes/karasa_jaga/cmd/sc_developmenttoolsdockingwindow.png
new file mode 100644
index ..06e76bb604b3
Binary files /dev/null and 
b/icon-themes/karasa_jaga/cmd/sc_developmenttoolsdockingwindow.png differ
diff --git 
a/icon-themes/karasa_jaga_svg/cmd/32/developmenttoolsdockingwindow.svg 
b/icon-themes/karasa_jaga_svg/cmd/32/developmenttoolsdockingwindow.svg
new file mode 100644
index ..7492e9981b2a
--- /dev/null
+++ b/icon-themes/karasa_jaga_svg/cmd/32/developmenttoolsdockingwindow.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;><
 feGaussianBlur stdDeviation=".5212367"/>
\ No newline at end of file
diff --git 
a/icon-themes/karasa_jaga_svg/cmd/lc_developmenttoolsdockingwindow.svg 
b/icon-themes/karasa_jaga_svg/cmd/lc_developmenttoolsdockingwindow.svg
new file mode 100644
index ..bc3fe0c93c6f
--- /dev/null
+++ b/icon-themes/karasa_jaga_svg/cmd/lc_developmenttoolsdockingwindow.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;><
 feGaussianBlur stdDeviation=".5212367"/>
\ No newline at end of file
diff --git 
a/icon-themes/karasa_jaga_svg/cmd/sc_developmenttoolsdockingwindow.svg 
b/icon-themes/karasa_jaga_svg/cmd/sc_developmenttoolsdockingwindow.svg
new file mode 100644
index ..692b8d63de42
--- /dev/null
+++ b/icon-themes/karasa_jaga_svg/cmd/sc_developmenttoolsdockingwindow.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file


[Libreoffice-bugs] [Bug 145398] Content overview in LO Help is wrong

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

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 145349] SLIDESHOW animation in wrong order

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

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 139546] Calc Sort Dialogue Options: Language Sort Options are not visible when you use your default language

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

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 145480] Find & Replace -> Footnotes/Endnotes

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

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 145478] Libreoffice 7.2.2.2_1, FreeBSD 13.0, from ports, fails to start on dual-head host with XINERAMA missing

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

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 145476] FILEOPEN LibreCalc is running an embedded macro while loading the file

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

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 145474] There is a compatibility issue with office (docx)

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

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 145461] + Sign not Visible in Styles Deck Hierarchical View when a Style is Highlighted

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

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 145450] Update function sometimes returns % as Message

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

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 145408] Crash in: SwTextNode::CutImpl(SwTextNode * const, SwIndex const &, SwIndex const &, long, bool)

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

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 145408] Crash in: SwTextNode::CutImpl(SwTextNode * const, SwIndex const &, SwIndex const &, long, bool)

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

--- 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 141464] Write: Crash on data entry

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

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 141464] Write: Crash on data entry

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

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

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 60296] XHTML Export describes product as OpenOffice.org

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

--- Comment #10 from QA Administrators  ---
Dear Robinson Tryon (qubit),

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 142058] It is an accessibility bug due to which Screen reading software is not able to report document elements such as headings, tables, list etc in Libre Office Writer and ca

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

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

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 141687] The problem of displaying data in the Form

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

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

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

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

--- Comment #7 from QA Administrators  ---
Dear Immanuel H,

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 99847] "ENTER" from last page-row of a 3-column table -> cursor halfway down next page

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

--- Comment #25 from QA Administrators  ---
Dear scott092707,

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 93795] "Restart Numbering" is not shown as change when recording changes

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

--- Comment #7 from QA Administrators  ---
Dear Ulrich Windl,

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 88846] FORMATTING hyperlink character style transferred to a new line with enter

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

--- Comment #10 from QA Administrators  ---
Dear Milan Bouchet-Valat,

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 128338] UI: Irregular icons for 'First Record/Previous Record/Next Record/Last Record' in Data Sources

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

--- Comment #2 from QA Administrators  ---
Dear Rizal Muttaqin,

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 120549] Pale Color Design Letterhead in Writer

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

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

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 114255] Keystrokes sent in wrong order under high cpu load

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

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

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 108009] Can't save new file to WebDAV server via Save Remote

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

--- Comment #10 from QA Administrators  ---
Dear Vitaliy Lotorev,

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 107727] FILESAVE RTF: border-less text frame gets a border line

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

--- Comment #7 from QA Administrators  ---
Dear Christian Nieber,

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 93352] RTL: Horizontal scrolling for right-to-left Sheet moves in opposite direction

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

Aron Budea  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected
   Hardware|Other   |All
 CC||ba...@caesar.elte.hu
 Status|REOPENED|NEW

--- Comment #17 from Aron Budea  ---
I'm not seeing the wrongly positioned scrollbar, but I'm seeing different
scrolldirection: I checked using Shift- in an RTL sheet, if
rolling the wheel upwards scrolled left, I considered it good, if it scrolled
right, I considered it bad. Bibisected to the following range using repo
bibisect-43all, with 'gen' VCL plugin (SAL_USE_VCLPLUGIN=gen ./soffice).

https://cgit.freedesktop.org/libreoffice/core/log/?qt=range=b0da54bec69f4931af0adbc15d230d3f4eea7b08..bec62421a45da89d2812bdff30fbbab73291cf91

The following commit, fixing bug 44657 seems suspicious.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=bfa21ce5fa08f2c634ccb6162914be55aef9f3c2
author  Jan Holesovsky   2012-10-19 01:21:22 +0200
committer   Jan Holesovsky   2012-10-19 14:51:23 +0200

fdo#44657 Remove hack that "simulates" a mirrored horizontal scrollbar.

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

[Libreoffice-bugs] [Bug 145689] Page style reverts to default when inserting a nested table

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

--- Comment #1 from Peter  ---
After some additional testing, it looks like it only happens if the nested
table is created in the upper left cell of the original table.  The page style
does not change if the nested table is created in any other cell.

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

[Libreoffice-bugs] [Bug 145689] New: Page style reverts to default when inserting a nested table

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

Bug ID: 145689
   Summary: Page style reverts to default when inserting a nested
table
   Product: LibreOffice
   Version: 7.1.6.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: blackhole...@clockwork-orrery.com

Steps to reproduce:

1. Create a new Writer document
2. Using "New Style from Selection", create a new page style named "Pink Page".
3. Modify "Pink Page": Area -> Color -> set a pink background.  This will make
the page style stand out.
4. Change the current page to the "Pink Page" page style.  The page turns pink.
5. Add a table to the document.  The page remains pink.
6. Click in a table cell and insert a new nested table.  The page turns white,
because the page reverted to the default page style.  It should have remained
pink.

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

Infra call on Tue, Nov 16 at 17:30 UTC

2021-11-14 Thread Guilhem Moulin
Hi there,

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

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

See you there!
Cheers,
-- 
Guilhem.


signature.asc
Description: PGP signature


[Libreoffice-bugs] [Bug 108734] [META] Character dialog bugs and enhancements

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

Adolfo Jayme  changed:

   What|Removed |Added

 Depends on|110003  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=110003
[Bug 110003] Lower-case ß is capitalized as SS instead of ẞ
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 107838] [META] Character-level bugs and enhancements

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

Adolfo Jayme  changed:

   What|Removed |Added

 Depends on||110003


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=110003
[Bug 110003] Lower-case ß is capitalized as SS instead of ẞ
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 71732] [META] Bugs related to text rendering, typography and font features in LO

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

Adolfo Jayme  changed:

   What|Removed |Added

 Depends on|110003  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=110003
[Bug 110003] Lower-case ß is capitalized as SS instead of ẞ
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145688] Contenu de fichier texte décalé

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

--- Comment #2 from jaubert4  ---
Created attachment 176254
  --> https://bugs.documentfoundation.org/attachment.cgi?id=176254=edit
Version odt

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

[Libreoffice-bugs] [Bug 145688] Contenu de fichier texte décalé

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

--- Comment #1 from jaubert4  ---
Created attachment 176253
  --> https://bugs.documentfoundation.org/attachment.cgi?id=176253=edit
Version odt

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

[Libreoffice-commits] core.git: Branch 'libreoffice-7-2' - dbaccess/source

2021-11-14 Thread Caolán McNamara (via logerrit)
 dbaccess/source/ui/control/sqledit.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bc00beb99b62c8350e86f76d19367198ab979ea9
Author: Caolán McNamara 
AuthorDate: Fri Nov 12 12:23:05 2021 +
Commit: Adolfo Jayme Barrientos 
CommitDate: Sun Nov 14 23:18:40 2021 +0100

insert special character in sql view in dbaccess using an arbitrary font

The font to use in the editengine is set with the fallback list notation
"Font1;Font2;Font3" and while SvxCharacterMap::SetCharFont explicitly has...

{
// first get the underlying info in order to get font names
// like "Times New Roman;Times" resolved
vcl::Font aTmp(m_xVirDev->GetFontMetric(rFont));
}

which is supposed to resolve to what the physical font is, it appears
that since the ancient merge of:

commit 2f382d6c2579a25c68dbd121af7f1f5dc7ec9852
Date:   Thu Mar 27 16:59:30 2003 +

MWS_SRX644: migrate branch mws_srx644 -> HEAD

a change was included of:

-// Fontdaten ermitteln und setzen
-aMetric.SetName( pMetric->maName );
+// set aMetric with info from font
+aMetric.SetName( maFont.GetName() );

which means that font names like "Times:Times New Roman" appear in the
FontMetric for the font and not the font name of the physical font that
the metric describes.

That doesn't look right to me, but rather than get bogged down in
changing that and the undoubtedly infinite chain of knock on problems
that will trigger just start with a simple font name here not the
fallback list.

The font is "Liberation Mono;etc;etc" so the first one is certain to be
available.

Change-Id: I58809be8edb515d9823867c7a0bce5931dccbd27
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124981
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/dbaccess/source/ui/control/sqledit.cxx 
b/dbaccess/source/ui/control/sqledit.cxx
index c379ad5fcc32..92af2e8bd03b 100644
--- a/dbaccess/source/ui/control/sqledit.cxx
+++ b/dbaccess/source/ui/control/sqledit.cxx
@@ -89,7 +89,7 @@ void SQLEditView::SetItemPoolFont(SfxItemPool* pItemPool)
 OUString 
sFontName(officecfg::Office::Common::Font::SourceViewFont::FontName::get().value_or(OUString()));
 if (sFontName.isEmpty())
 {
-vcl::Font 
aTmpFont(OutputDevice::GetDefaultFont(DefaultFontType::FIXED, 
Application::GetSettings().GetUILanguageTag().getLanguageType(), 
GetDefaultFontFlags::NONE));
+vcl::Font 
aTmpFont(OutputDevice::GetDefaultFont(DefaultFontType::FIXED, 
Application::GetSettings().GetUILanguageTag().getLanguageType(), 
GetDefaultFontFlags::OnlyOne));
 sFontName = aTmpFont.GetFamilyName();
 }
 


[Libreoffice-bugs] [Bug 145688] New: Contenu de fichier texte décalé

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

Bug ID: 145688
   Summary: Contenu de fichier texte décalé
   Product: LibreOffice
   Version: 7.2.0.4 release
  Hardware: All
OS: other
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jaube...@gmail.com

Created attachment 176252
  --> https://bugs.documentfoundation.org/attachment.cgi?id=176252=edit
fichier TP micro onde pdf et odt

Bonsoir,

J'ai un problème concernant des fichiers réalisés sous une version LibreOffice
antérieure 6.3.1.2
Actuellement quand je les ouvre avec ma version 7.2.0.4 sur mon nouveau PC
Il y a des fichiers dont le contenu est tout décalé...
Heureusement que j'ai toujours mon ancienne version sur un autre PC qui me
l'ouvre correctement, je l'ai enregistré en PDF.

Je vous transmet le fichier en pdf ou tout est ok
et le fichier odt ou tout devient décalé.

Merci de votre aide.
Cordialement,
Jacques

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

[Libreoffice-bugs] [Bug 144036] New icon needed for the UNO Object Inspector

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

--- Comment #8 from Commit Notification 
 ---
Rizal Muttaqin committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/abe18bae182fd43d16a6371d2df061565dadcd8a

elementary: tdf#144036 add UNO Object Inspector

It will be available in 7.3.0.

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

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

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

[Libreoffice-commits] core.git: icon-themes/elementary icon-themes/elementary_svg

2021-11-14 Thread Rizal Muttaqin (via logerrit)
 icon-themes/elementary/cmd/32/developmenttoolsdockingwindow.png |binary
 icon-themes/elementary/cmd/lc_developmenttoolsdockingwindow.png |binary
 icon-themes/elementary/cmd/sc_developmenttoolsdockingwindow.png |binary
 icon-themes/elementary_svg/cmd/32/developmenttoolsdockingwindow.svg |1 +
 icon-themes/elementary_svg/cmd/lc_developmenttoolsdockingwindow.svg |1 +
 icon-themes/elementary_svg/cmd/sc_developmenttoolsdockingwindow.svg |1 +
 6 files changed, 3 insertions(+)

New commits:
commit abe18bae182fd43d16a6371d2df061565dadcd8a
Author: Rizal Muttaqin 
AuthorDate: Mon Nov 15 00:05:04 2021 +0700
Commit: Rizal Muttaqin 
CommitDate: Sun Nov 14 22:30:24 2021 +0100

elementary: tdf#144036 add UNO Object Inspector

Change-Id: I944e666905de6d6ca51c8439ca40a687ed8c3e80
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125205
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Rizal Muttaqin 

diff --git a/icon-themes/elementary/cmd/32/developmenttoolsdockingwindow.png 
b/icon-themes/elementary/cmd/32/developmenttoolsdockingwindow.png
new file mode 100644
index ..6118645da49c
Binary files /dev/null and 
b/icon-themes/elementary/cmd/32/developmenttoolsdockingwindow.png differ
diff --git a/icon-themes/elementary/cmd/lc_developmenttoolsdockingwindow.png 
b/icon-themes/elementary/cmd/lc_developmenttoolsdockingwindow.png
new file mode 100644
index ..2ee3ac3ce1e7
Binary files /dev/null and 
b/icon-themes/elementary/cmd/lc_developmenttoolsdockingwindow.png differ
diff --git a/icon-themes/elementary/cmd/sc_developmenttoolsdockingwindow.png 
b/icon-themes/elementary/cmd/sc_developmenttoolsdockingwindow.png
new file mode 100644
index ..72ca2ffb7215
Binary files /dev/null and 
b/icon-themes/elementary/cmd/sc_developmenttoolsdockingwindow.png differ
diff --git 
a/icon-themes/elementary_svg/cmd/32/developmenttoolsdockingwindow.svg 
b/icon-themes/elementary_svg/cmd/32/developmenttoolsdockingwindow.svg
new file mode 100644
index ..0b1876167057
--- /dev/null
+++ b/icon-themes/elementary_svg/cmd/32/developmenttoolsdockingwindow.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
diff --git 
a/icon-themes/elementary_svg/cmd/lc_developmenttoolsdockingwindow.svg 
b/icon-themes/elementary_svg/cmd/lc_developmenttoolsdockingwindow.svg
new file mode 100644
index ..9a5d630c4377
--- /dev/null
+++ b/icon-themes/elementary_svg/cmd/lc_developmenttoolsdockingwindow.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
diff --git 
a/icon-themes/elementary_svg/cmd/sc_developmenttoolsdockingwindow.svg 
b/icon-themes/elementary_svg/cmd/sc_developmenttoolsdockingwindow.svg
new file mode 100644
index ..90707e740603
--- /dev/null
+++ b/icon-themes/elementary_svg/cmd/sc_developmenttoolsdockingwindow.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file


[Libreoffice-bugs] [Bug 102062] [META] Notebookbar: bugs and enhancements

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

Ezinne  changed:

   What|Removed |Added

 Depends on||145547


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=145547
[Bug 145547] [GTK3] can't right-click tabbed UI styles preview
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145547] [GTK3] can't right-click tabbed UI styles preview

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

Ezinne  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||nnamani.ezi...@collabora.co
   ||m
 Blocks||102062

--- Comment #2 from Ezinne  ---
Reproducible in:

Version: 7.3.0.0.alpha0+ / LibreOffice Community
Build ID: 86d11097cd4a2ae4a6b4e6b35e28a6075376d67a
CPU threads: 8; OS: Linux 5.11; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 134293] Inconsistent double-click AutoFill behavior

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

--- Comment #13 from Dmitry T.  ---
(In reply to Joshua Coppersmith from comment #11)
Thanks for trying to convey my point (as i'm, surely, not doing it well enough
myself, due to not being native English speaker), but, to be honest, it feels
that your explanation is not entirely correct or on point.

> Expected behavior would be that a HIDDEN blank cell does not count when
> stopping double-click expansion.

As i mentioned earlier, is it really an expected behavior? Should LO have it's
own (consistent) behavior, or do the same thing Excel does? When i reported
this issue, i didn't consider Excel at all, and based "expected" (by me, that
is) behavior on drag-down fill, but now i think that the way it works in Excel
actually makes more sense. I mean, consider how formulas work - if you copy a
formula that references a row above into a cell right below the hidden row, it
will reference a hidden row above, not the visible row. I think, AutoFill
should act the same.

> However, since a hidden blank cell WILL
> stop double-click expansion, this makes it look like double-click expansion
> is "stopping short" or just not working at all.

That is correct, but i should mention, that empty cell will stop double-click
expansion before ALL hidden rows, not just the hidden blank cell. SO, if, among
10 hidden rows, there are 9 cells with data, and 10th cell is blank, no hidden
cell will be replaced.

> This behavior could be completely disregarded as just the nature of
> double-click expansion, 

It cannot be disregarded yet, as there still exists inconsistent behavior: 
1. If all hidden cells are NOT blank and cells below hidden rows ARE blank,
double-click expansion will suddenly start filling blank cells until it hits a
non-blank cell or the bottom of the sheet (and latter could be performance
heavy), while ignoring neighboring columns.
2. If there is only a single hidden row with a NON-BLANK cell AutoFill does
nothing instead, which makes no sense at all.

> except that when expanding multiple columns at once
> all columns stop short if any column has a blank hidden cell in the
> expansion path.

Now, behavior for multiple columns is also a point of concern (good call), but,
again, i think it should be first agreed on whether LO should have it's own
behavior, or mirror Excel's one. In Excel (and in LO without hidden cells)
behavior is that all cells are filled down as long as all cells are the same
(all blank or non-blank).

Considering all that, summary you gave is kinda moot.

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

[Libreoffice-ux-advise] [Bug 134293] Inconsistent double-click AutoFill behavior

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

--- Comment #13 from Dmitry T.  ---
(In reply to Joshua Coppersmith from comment #11)
Thanks for trying to convey my point (as i'm, surely, not doing it well enough
myself, due to not being native English speaker), but, to be honest, it feels
that your explanation is not entirely correct or on point.

> Expected behavior would be that a HIDDEN blank cell does not count when
> stopping double-click expansion.

As i mentioned earlier, is it really an expected behavior? Should LO have it's
own (consistent) behavior, or do the same thing Excel does? When i reported
this issue, i didn't consider Excel at all, and based "expected" (by me, that
is) behavior on drag-down fill, but now i think that the way it works in Excel
actually makes more sense. I mean, consider how formulas work - if you copy a
formula that references a row above into a cell right below the hidden row, it
will reference a hidden row above, not the visible row. I think, AutoFill
should act the same.

> However, since a hidden blank cell WILL
> stop double-click expansion, this makes it look like double-click expansion
> is "stopping short" or just not working at all.

That is correct, but i should mention, that empty cell will stop double-click
expansion before ALL hidden rows, not just the hidden blank cell. SO, if, among
10 hidden rows, there are 9 cells with data, and 10th cell is blank, no hidden
cell will be replaced.

> This behavior could be completely disregarded as just the nature of
> double-click expansion, 

It cannot be disregarded yet, as there still exists inconsistent behavior: 
1. If all hidden cells are NOT blank and cells below hidden rows ARE blank,
double-click expansion will suddenly start filling blank cells until it hits a
non-blank cell or the bottom of the sheet (and latter could be performance
heavy), while ignoring neighboring columns.
2. If there is only a single hidden row with a NON-BLANK cell AutoFill does
nothing instead, which makes no sense at all.

> except that when expanding multiple columns at once
> all columns stop short if any column has a blank hidden cell in the
> expansion path.

Now, behavior for multiple columns is also a point of concern (good call), but,
again, i think it should be first agreed on whether LO should have it's own
behavior, or mirror Excel's one. In Excel (and in LO without hidden cells)
behavior is that all cells are filled down as long as all cells are the same
(all blank or non-blank).

Considering all that, summary you gave is kinda moot.

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

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

2021-11-14 Thread Noel Grandin (via logerrit)
 sal/rtl/alloc_fini.cxx |   29 ++---
 sal/rtl/bootstrap.cxx  |   10 ++
 2 files changed, 24 insertions(+), 15 deletions(-)

New commits:
commit 864cbd8b2216c043db42351beac3538b4d51adcd
Author: Noel Grandin 
AuthorDate: Sun Nov 14 16:37:41 2021 +0200
Commit: Noel Grandin 
CommitDate: Sun Nov 14 21:05:11 2021 +0100

rtl::Static->thread-safe static in sal

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

diff --git a/sal/rtl/alloc_fini.cxx b/sal/rtl/alloc_fini.cxx
index 3745e900c86d..ba798452dedf 100644
--- a/sal/rtl/alloc_fini.cxx
+++ b/sal/rtl/alloc_fini.cxx
@@ -17,8 +17,6 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#include 
-
 #include 
 
 namespace
@@ -34,13 +32,16 @@ namespace
 rtl_cache_fini();
 }
 };
-class theCacheSingleton
-: public rtl::Static{};
+rtlCacheSingleton& theCacheSingleton()
+{
+static rtlCacheSingleton SINGLETON;
+return SINGLETON;
+}
 }
 
 void ensureCacheSingleton()
 {
-theCacheSingleton::get();
+theCacheSingleton();
 }
 
 namespace
@@ -56,13 +57,16 @@ namespace
 rtl_arena_fini();
 }
 };
-class theArenaSingleton
-: public rtl::Static{};
+rtlArenaSingleton& theArenaSingleton()
+{
+static rtlArenaSingleton SINGLETON;
+return SINGLETON;
+}
 }
 
 void ensureArenaSingleton()
 {
-theArenaSingleton::get();
+theArenaSingleton();
 }
 
 namespace
@@ -78,13 +82,16 @@ namespace
 rtl_locale_fini();
 }
 };
-class theLocaleSingleton
-: public rtl::Static{};
+rtlLocaleSingleton& theLocaleSingleton()
+{
+static rtlLocaleSingleton SINGLETON;
+return SINGLETON;
+}
 }
 
 void ensureLocaleSingleton()
 {
-theLocaleSingleton::get();
+theLocaleSingleton();
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sal/rtl/bootstrap.cxx b/sal/rtl/bootstrap.cxx
index 9feadf874e54..e651a8436363 100644
--- a/sal/rtl/bootstrap.cxx
+++ b/sal/rtl/bootstrap.cxx
@@ -33,7 +33,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -407,8 +406,11 @@ struct FundamentalIniData
 FundamentalIniData& operator=(const FundamentalIniData&) = delete;
 };
 
-struct FundamentalIni: public rtl::Static< FundamentalIniData, FundamentalIni >
-{};
+FundamentalIniData& FundamentalIni()
+{
+static FundamentalIniData SINGLETON;
+return SINGLETON;
+}
 
 }
 
@@ -511,7 +513,7 @@ bool Bootstrap_Impl::getValue(
 
 if (mode == LOOKUP_MODE_NORMAL)
 {
-FundamentalIniData const & d = FundamentalIni::get();
+FundamentalIniData const & d = FundamentalIni();
 Bootstrap_Impl const * b = static_cast(d.ini);
 if (b != nullptr && b != this && b->getDirectValue(key, value, mode, 
requestStack))
 return true;


[Libreoffice-bugs] [Bug 139546] Calc Sort Dialogue Options: Language Sort Options are not visible when you use your default language

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

Gerhard Weydt  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #2 from Gerhard Weydt  ---
I can confirm the behaviour in
Version: 7.2.1.2 (x64) / LibreOffice Community
Build ID: 87b77fad49947c1441b67c559c339af8f3517e22
CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: de-DE
Calc: threaded

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

[Libreoffice-bugs] [Bug 145663] Not possible to turn light off in '3D View' dialog of a 3D chart

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

Caolán McNamara  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |

--- Comment #4 from Caolán McNamara  ---
seems that the index of the light to set to the model is wrong

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

[Libreoffice-commits] core.git: Branch 'libreoffice-7-2' - sc/source

2021-11-14 Thread Caolán McNamara (via logerrit)
 sc/source/ui/cctrl/checklistmenu.cxx |4 +++-
 sc/source/ui/inc/checklistmenu.hxx   |3 ++-
 sc/source/ui/view/gridwin.cxx|8 ++--
 sc/source/ui/view/gridwin2.cxx   |6 --
 4 files changed, 15 insertions(+), 6 deletions(-)

New commits:
commit ecb15ba80cd85e40da5d2d48a394d4cbc9a43bba
Author: Caolán McNamara 
AuthorDate: Fri Nov 12 15:39:49 2021 +
Commit: Adolfo Jayme Barrientos 
CommitDate: Sun Nov 14 20:40:48 2021 +0100

Resolves: tdf#145645 pivot table popups don't dismiss when item activated

Change-Id: I5a68a08600b7792d924ec77694a60651df5d9c83
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124983
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/sc/source/ui/cctrl/checklistmenu.cxx 
b/sc/source/ui/cctrl/checklistmenu.cxx
index 95ab21cb74ae..9be4712ce2e0 100644
--- a/sc/source/ui/cctrl/checklistmenu.cxx
+++ b/sc/source/ui/cctrl/checklistmenu.cxx
@@ -197,7 +197,9 @@ void ScCheckListMenuControl::executeMenuItem(size_t nPos)
 // no action is defined.
 return;
 
-maMenuItems[nPos].mxAction->execute();
+const bool bClosePopup = maMenuItems[nPos].mxAction->execute();
+if (bClosePopup)
+terminateAllPopupMenus();
 }
 
 void ScCheckListMenuControl::setSelectedMenuItem(size_t nPos, bool 
bSubMenuTimer)
diff --git a/sc/source/ui/inc/checklistmenu.hxx 
b/sc/source/ui/inc/checklistmenu.hxx
index 7ebb95fb0caf..5bddd4490ae8 100644
--- a/sc/source/ui/inc/checklistmenu.hxx
+++ b/sc/source/ui/inc/checklistmenu.hxx
@@ -63,7 +63,8 @@ public:
 {
 public:
 virtual ~Action() {}
-virtual void execute() = 0;
+// return true to dismiss the popup
+virtual bool execute() = 0;
 };
 
 struct ResultEntry
diff --git a/sc/source/ui/view/gridwin.cxx b/sc/source/ui/view/gridwin.cxx
index c5382ef2747b..e9f963dcaa06 100644
--- a/sc/source/ui/view/gridwin.cxx
+++ b/sc/source/ui/view/gridwin.cxx
@@ -509,9 +509,12 @@ class AutoFilterAction : public 
ScCheckListMenuControl::Action
 public:
 AutoFilterAction(ScGridWindow* p, ScGridWindow::AutoFilterMode eMode) :
 mpWindow(p), meMode(eMode) {}
-virtual void execute() override
+virtual bool execute() override
 {
 mpWindow->UpdateAutoFilterFromMenu(meMode);
+// RefreshAutoFilterButton manually closes the popup so return
+// false to not attempt a second close
+return false;
 }
 };
 
@@ -522,9 +525,10 @@ class AutoFilterPopupEndAction : public 
ScCheckListMenuControl::Action
 public:
 AutoFilterPopupEndAction(ScGridWindow* p, const ScAddress& rPos) :
 mpWindow(p), maPos(rPos) {}
-virtual void execute() override
+virtual bool execute() override
 {
 mpWindow->RefreshAutoFilterButton(maPos);
+return false; // this is called after the popup has been closed
 }
 };
 
diff --git a/sc/source/ui/view/gridwin2.cxx b/sc/source/ui/view/gridwin2.cxx
index bf1b7597b185..ffe76e677349 100644
--- a/sc/source/ui/view/gridwin2.cxx
+++ b/sc/source/ui/view/gridwin2.cxx
@@ -383,9 +383,10 @@ public:
 explicit DPFieldPopupOKAction(ScGridWindow* p) :
 mpGridWindow(p) {}
 
-virtual void execute() override
+virtual bool execute() override
 {
 mpGridWindow->UpdateDPFromFieldPopupMenu();
+return true;
 }
 private:
 VclPtr mpGridWindow;
@@ -405,7 +406,7 @@ public:
 , mpViewShell(pViewShell)
 {}
 
-virtual void execute() override
+virtual bool execute() override
 {
 switch (meType)
 {
@@ -421,6 +422,7 @@ public:
 default:
 ;
 }
+return true;
 }
 
 private:


[Libreoffice-bugs] [Bug 145687] Unhandled exception in utl::UCBContentHelper::IsYounger

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

Christopher Yeleighton  changed:

   What|Removed |Added

URL||https://raw.githubuserconte
   ||nt.com/EWSoftware/VSSpellCh
   ||ecker/master/Source/VSSpell
   ||Checker2017And2019/License.
   ||rtf
   Hardware|All |x86-64 (AMD64)
 OS|All |Linux (All)

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

[Libreoffice-bugs] [Bug 145687] New: Unhandled exception in utl::UCBContentHelper::IsYounger

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

Bug ID: 145687
   Summary: Unhandled exception in
utl::UCBContentHelper::IsYounger
   Product: LibreOffice
   Version: 7.2.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: giecr...@stegny.2a.pl

I told Writer to open the document License.rtf [1] and pressed the button [
Edit Document! ].


#7  0x7fc9237a94fd in __cxxabiv1::__cxa_rethrow ()
at ../../../../libstdc++-v3/libsupc++/eh_throw.cc:133
#8  0x7fc92741b77e in utl::UCBContentHelper::IsYounger (younger=...,
older=...)
at
/usr/src/debug/libreoffice-7.2.2.2-2.1.x86_64/unotools/source/ucbhelper/ucbhelper.cxx:280
#9  0x7fc92823ccd6 in SfxViewFrame::ExecReload_Impl (this=0xbf0, rReq=...)
at
/usr/src/debug/libreoffice-7.2.2.2-2.1.x86_64/sfx2/source/view/viewfrm.cxx:436

275 > convert(
276 content(older).getPropertyValue(
277 "DateModified").
278 get());
279 } catch (css::uno::RuntimeException const &) {
280 throw;

What is the point of catching an exception in order to immediately re-throw it?

___
[1] https://raw.githubusercontent.com/EWSoftware/VSSpellChecker/master/Source/VSSpellChecker2017And2019/License.rtf
>

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

[Libreoffice-bugs] [Bug 145613] Insert OLE Object as link not possible

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

--- Comment #3 from Jürgen Mähnß  ---
Using LO portable (x86) 7.0.6.2 works nice. LO portable (x86) 7.2.2.2 crashes
as described above

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

[Libreoffice-bugs] [Bug 128895] Hidden Columns but keep reappearing! Unlike Rows which will stay hidden (steps: comment 19)

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

--- Comment #26 from user.for...@gmail.com ---
I'm using 7.2.2.2 x86 portable version on Windows 10. I have a spreadsheet with
360 rows, columns A-P in use, Q-AMJ are hidden, or are supposed to be but they
don't stay that way. This is what I'm seeing happen:

Hide columns -> save -> exit Calc -> open ods -> columns still hidden.

Open ods -> columns still hidden, but Calc forgot my last view (should be @ row
316 but view was at row 1) -> exit Calc. Repeated 5 times for consistency.

Open ods -> change data in a cell -> exit Calc with X icon and save changes
with dialog that pops up about unsaved changes -> open ods -> columns not
hidden anymore.

Seems like some condition in the load or save function is ignoring the hidden
flag for the columns.

Please let me know if I can help further.

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

[Libreoffice-bugs] [Bug 145686] New: Page Layout Format Headline and Footline not stored

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

Bug ID: 145686
   Summary: Page Layout Format Headline and Footline not stored
   Product: LibreOffice
   Version: 7.2.2.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: juergen.maeh...@uni-ulm.de

Description:
When I change a page layout both footline and headline are switched off after
file save and close.

Steps to Reproduce:
1. Create a File
2. Choose a page layout 
3. Change orientation or something else in page layout
4. Save and close
5. Reopen: Headline and Footline are switched off.
6. Switch Headline/Footline on: Previous content is preserved
7. Open file in old version of LO: Headline/Footline off, content not preserved

Actual Results:
After Change of page layout headline and footline are off

Expected Results:
No change in headline/footline status after change in layout


Reproducible: Always


User Profile Reset: No



Additional Info:
Using LO 7.0.6.2 (portable, x86) works fine instead.

It seems, that more than one function of calc is destroyed. See my bug 145613

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

[Libreoffice-bugs] [Bug 103437] [META] Animation deck/tab of the sidebar

2021-11-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103437
Bug 103437 depends on bug 145655, which changed state.

Bug 145655 Summary: Add animation button only has the "Add" label
https://bugs.documentfoundation.org/show_bug.cgi?id=145655

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 103182] [META] GTK3-specific bugs

2021-11-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103182
Bug 103182 depends on bug 145655, which changed state.

Bug 145655 Summary: Add animation button only has the "Add" label
https://bugs.documentfoundation.org/show_bug.cgi?id=145655

   What|Removed |Added

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

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

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

2021-11-14 Thread Caolán McNamara (via logerrit)
 sd/uiconfig/simpress/ui/customanimationspanel.ui |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit c77a881ee3d9846376f9544c15acbba083cda3be
Author: Caolán McNamara 
AuthorDate: Sat Nov 13 21:37:19 2021 +
Commit: Caolán McNamara 
CommitDate: Sun Nov 14 20:12:04 2021 +0100

tdf#145655 toggle on always-show-icon for animation panel 'add' button

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

diff --git a/sd/uiconfig/simpress/ui/customanimationspanel.ui 
b/sd/uiconfig/simpress/ui/customanimationspanel.ui
index 35cc0d49ecb7..848b40da9661 100644
--- a/sd/uiconfig/simpress/ui/customanimationspanel.ui
+++ b/sd/uiconfig/simpress/ui/customanimationspanel.ui
@@ -240,6 +240,7 @@
 Add Effect
 image_add
 True
+True
 
   
 Adds another animation 
effect for the selected object on the slide.
@@ -259,6 +260,8 @@
 True
 Remove 
Effect
 image_remove
+True
+True
 
   
 Removes the selected 
animation effects from the animation list.
@@ -278,6 +281,8 @@
 True
 Move Up
 image_up
+True
+True
 
   
 Click one of the buttons 
to move the selected animation effect up or down in the list.
@@ -297,6 +302,8 @@
 True
 Move Down
 image_down
+True
+True
 
   
 Click one of the buttons 
to move the selected animation effect up or down in the list.


Re: How to get started with open source contribution.

2021-11-14 Thread Ilmari Lauhakangas

On 14.11.2021 14.36, Harjot Singh wrote:
I am Harjot Singh , a computer science undergrad. I am completely new to 
open source contributions but I am familiar with C++ , Java and Data 
Structures and Algorithms concepts. I would love to contribute to your 
organization but could you please tell me how to get started?


I have invited you to an interview.

Ilmari


[Libreoffice-bugs] [Bug 139546] Calc Sort Dialogue Options: Language Sort Options are not visible when you use your default language

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

--- Comment #1 from Jürgen Kirsten  ---
If the language is changed in the sort options, this setting is saved with the
document. If a new document is created, the default setting is used again.
The programme should not care whether the setting is standard or not.

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

[Libreoffice-bugs] [Bug 145685] New: Formula cut when printing a big ODF file through LibreOffice Math

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

Bug ID: 145685
   Summary: Formula cut when printing a big ODF file through
LibreOffice Math
   Product: LibreOffice
   Version: 7.2.2.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rafbod...@gmail.com

Description:
When printing a ODF file using LibreOffice Math, the rendered formula get
cropped.

This bug is actually a big downside and prevents me to use LibreOffice Math for
my homeworks or class.

Steps to Reproduce:
1. Open a "big" ODF file
2. Print or preview it

Actual Results:
When printing a ODF file using LibreOffice Math, the rendered formula get
cropped.

Expected Results:
Math should distribute big files on multiple pages instead of cutting it.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.2.2.2 (x64) / LibreOffice Community
Build ID: 02b2acce88a210515b4a5bb2e46cbfb63fe97d56
CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Vulkan; VCL: win
Locale: fr-FR (fr_FR); UI: fr-FR
Calc: threaded

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

[Libreoffice-bugs] [Bug 144862] Wiggling letter with window size of 1920 pixel width (72dpi) and zoom 140% (RSID?)

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

--- Comment #12 from Telesto  ---
(In reply to Rafael Lima from comment #11)
> I can reproduce this using a 1920 x 1080 display and zoom at 140% when the
> sidebar is off.
> 
> With the sidebar on the issue does not happen. 

For me on Windows with 7.3
Sidebar expanded (decks visible) -> No movement
Sidebar collapsed -> Wiggle
Sidebar off -> wiggle

If you put a bullet (bulleted list) before the 'sentence' it doesn't wiggle.
However if you copy the full sentence (incl. .) and past it again.. wiggle will
start again at the end when adding a .

However looking GTK3 it wiggles always (in depend of sidebar) at 140% zoom and
135 DPI 

On my Macbook Air 11 inch inch 1366x768 screen at 135 it's dancing by on every
key stroke. 

The comment box is free of wiggling madness| it doesn't appear to happen in a
Textbox either.

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

[Libreoffice-bugs] [Bug 144033] Libreoffice (Calc) rendering very slow on GTK3 with Nvidia proprietary drivers

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

--- Comment #15 from George James  ---
See again 145631: (https://bugs.documentfoundation.org/show_bug.cgi?id=145631)
this 6.4 build also has no lag, with or without Open CL

Version: 6.4.7.2
Build ID: 639b8ac485750d5696d7590a72ef1b496725cfb5
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3; 
Locale: en-CA (en_CA.UTF-8); UI-Language: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 145631] Calc 7.2.2.2 slows on all operations 2 sec lag after update

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

--- Comment #6 from George James  ---
Before opening the Bug
I had checked for OpenGL
and found OpenCL
was not set

Did set it to be used
and it was not a fix.

NOW I looked and
Open CL was checked to be used.

I unchecked it
and tested
and
the Lag is still there in the problem Build 
ID 1eb16ced50a80b7125fabf09652dbb09393766d2

So It's NOT Open CL
caused/fixed

Interestingly
The link that used to bring up LO 6.4 Writer (where I could open a spreadsheet
in 6.4) did once open that Ubuntu build of LO 7.2.2.2
but again now opens 6.4! 
Open Cl was off
I turned it on.
No lag with or without:

Build details for another version that has no lag:
Version: 6.4.7.2
Build ID: 639b8ac485750d5696d7590a72ef1b496725cfb5
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3; 
Locale: en-CA (en_CA.UTF-8); UI-Language: en-US
Calc: threaded

over my head, but probably not for someone else.

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

[Libreoffice-bugs] [Bug 145656] libreoffice-7.2.2.2 build fails on aarch64 with undefined reference to non-virtual thunk to cppu

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

Aron Budea  changed:

   What|Removed |Added

 Blocks||126862


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=126862
[Bug 126862] [META] Issues with unusual builds / unit tests
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 126862] [META] Issues with unusual builds / unit tests

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

Aron Budea  changed:

   What|Removed |Added

 Depends on||145656, 142442


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=142442
[Bug 142442] Build failure with gcc-11
https://bugs.documentfoundation.org/show_bug.cgi?id=145656
[Bug 145656] libreoffice-7.2.2.2 build fails on aarch64 with undefined
reference to non-virtual thunk to cppu
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 142442] Build failure with gcc-11

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

Aron Budea  changed:

   What|Removed |Added

 Blocks||126862


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=126862
[Bug 126862] [META] Issues with unusual builds / unit tests
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: configure.ac

2021-11-14 Thread Luboš Luňák (via logerrit)
 configure.ac |   18 +++---
 1 file changed, 11 insertions(+), 7 deletions(-)

New commits:
commit 63bb32dff8a5cd469a6e86fa7eb9119d4c40dcfa
Author: Luboš Luňák 
AuthorDate: Sun Nov 14 15:50:18 2021 +0100
Commit: Luboš Luňák 
CommitDate: Sun Nov 14 18:41:35 2021 +0100

clang-cl requires -Xclang for -fpch-* options

Change-Id: I96fb0ffaf66476a605966df3f2bde3756ae67ec8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125198
Tested-by: Jenkins
Reviewed-by: Luboš Luňák 

diff --git a/configure.ac b/configure.ac
index 2f1764ac09cc..f0a4b641edab 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5949,14 +5949,18 @@ AC_SUBST(BUILDING_PCH_WITH_OBJ)
 
 PCH_CODEGEN=
 PCH_NO_CODEGEN=
+fpch_prefix=
+if test "$COM" = MSC; then
+fpch_prefix="-Xclang "
+fi
 if test -n "$BUILDING_PCH_WITH_OBJ"; then
-AC_MSG_CHECKING([whether $CC supports -fpch-codegen])
+AC_MSG_CHECKING([whether $CC supports ${fpch_prefix}-fpch-codegen])
 save_CFLAGS=$CFLAGS
-CFLAGS="$CFLAGS -Werror -fpch-codegen"
+CFLAGS="$CFLAGS -Werror ${fpch_prefix}-fpch-codegen"
 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[ return 0; ]])],
 [
-PCH_CODEGEN="-fpch-codegen"
-PCH_NO_CODEGEN="-fno-pch-codegen"
+PCH_CODEGEN="${fpch_prefix}-fpch-codegen"
+PCH_NO_CODEGEN="${fpch_prefix}-fno-pch-codegen"
 ],[])
 CFLAGS=$save_CFLAGS
 if test -n "$PCH_CODEGEN"; then
@@ -5969,10 +5973,10 @@ AC_SUBST(PCH_CODEGEN)
 AC_SUBST(PCH_NO_CODEGEN)
 PCH_DEBUGINFO=
 if test -n "$BUILDING_PCH_WITH_OBJ"; then
-AC_MSG_CHECKING([whether $CC supports -fpch-debuginfo])
+AC_MSG_CHECKING([whether $CC supports ${fpch_prefix}-fpch-debuginfo])
 save_CFLAGS=$CFLAGS
-CFLAGS="$CFLAGS -Werror -fpch-debuginfo"
-AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[ return 0; ]])],[ 
PCH_DEBUGINFO="-fpch-debuginfo" ],[])
+CFLAGS="$CFLAGS -Werror ${fpch_prefix}-fpch-debuginfo"
+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[ return 0; ]])],[ 
PCH_DEBUGINFO="${fpch_prefix}-fpch-debuginfo" ],[])
 CFLAGS=$save_CFLAGS
 if test -n "$PCH_DEBUGINFO"; then
 AC_MSG_RESULT(yes)


[Libreoffice-bugs] [Bug 144612] Calc is slow/lag when typing/inputing values in a cell in 7.2

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

Timur  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 144205] Calc: Delete Column and further Insert and Delete never instant but considerably slower from LO 7.2 (12 seconds)

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

Timur  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 145684] UI: Image deck is below 'effect' and shadow in draw

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

Telesto  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 145684] UI: Image deck is below 'effect' and shadow in draw

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

Telesto  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-bugs] [Bug 145684] New: UI: Image deck is below 'effect' and shadow in draw

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

Bug ID: 145684
   Summary: UI: Image deck is below 'effect' and shadow in draw
   Product: LibreOffice
   Version: 7.3.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
UI: Image deck is below 'effect' and shadow in draw

Steps to Reproduce:
1. Open Draw
2. Insert a raster image
3. Look at the sidebar with image selected

Actual Results:
Effect & shadow above image deck

Expected Results:
Image deck above 'Effect' and 'shadow deck'. In my 'model' you go from
'general' settings to 'special effects'

For shape I would be Area -> Line -> Effect -> Shadow. Not Area -> Effect ->
Shadow -> Line. 


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.3.0.0.alpha1+ (x64) / LibreOffice Community
Build ID: 73334560b2dd2d60ac58d2cc2b1a5295490b03e1
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL

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

[Libreoffice-bugs] [Bug 145680] Cannot choose another item in a form updated by macro.

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

Jean-Michel COSTE  changed:

   What|Removed |Added

 Attachment #176251|Descriptioon of then|Description of then problem
description|problem and list of Linux   |and list of Linux versions
   |versions affected   |affected

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

[Libreoffice-bugs] [Bug 145683] New: LibreOffice Writer + Save As dialog box File filter + Linux

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

Bug ID: 145683
   Summary: LibreOffice Writer + Save As dialog box File filter +
Linux
   Product: LibreOffice
   Version: 7.2.0.4 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: vmel...@yahoo.com

Description:
I am running Kubuntu 20.04 + Libre Office 7.2.0.4 that I installed myself on
Kubuntu.

If I click on File -> Open, I get the Open File dialog box.
The filter field is editable.
This is not standard.
It should be a non editable COMBOBOX.

Same issue with
File -> Save As


Steps to Reproduce:
1.File -> Open


Actual Results:
The filter field is editable.
This is not standard.
It should be a non editable COMBOBOX.

Expected Results:
The filter field is editable.
This is not standard.
It should be a non editable COMBOBOX.


Reproducible: Always


User Profile Reset: No



Additional Info:
No other information.

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

[Libreoffice-bugs] [Bug 145682] UI: Maybe rename "Area" deck to "Area fill" and effect deck to 'glow and soft edge effect'

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

Telesto  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 145682] UI: Maybe rename "Area" deck to "Area fill" and effect deck to 'glow and soft edge effect'

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

Telesto  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-bugs] [Bug 145682] New: UI: Maybe rename "Area" deck to "Area fill" and effect deck to 'glow and soft edge effect'

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

Bug ID: 145682
   Summary: UI: Maybe rename "Area" deck to "Area fill" and effect
deck to 'glow and soft edge effect'
   Product: LibreOffice
   Version: 7.3.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
UI: Maybe rename "Area" deck to "Area fill" and effect deck to 'glow and soft
edge effect' 

Steps to Reproduce:
1. Open Draw
2. Draw a textbox (and type something into it)
3. Click outer border -> And look at sidebar -> Note area
4. Or insert a image in draw

Actual Results:
"Area'; 'Effect' deck

Expected Results:
"Area" is collapsed. And the description kind of minimalistic. Same holds true
with 'effect'. If effect deck is collapsed it unclear what it contains. I would
also include 'Shadow' as an effect. If effect is called glow and soft edge
effect is clear what it contains 

I struggle a little with "Line" too

Note: yes this is the area of details and somewhere around personal
preferences.
And well dialog is matching with the deck in multiple cases..   
And we there are of course the translation issues (and spacing required)


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.3.0.0.alpha1+ (x64) / LibreOffice Community
Build ID: 73334560b2dd2d60ac58d2cc2b1a5295490b03e1
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL

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

  1   2   3   >