[Libreoffice-bugs] [Bug 133394] Document with transparent page style does not display correctly in web view

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133394

Dieter  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #8 from Dieter  ---
Simon, In can't confirm it with

Version: 7.0.0.0.beta1 (x64)
Build ID: 94f789cbb5b4a511c319542c7bdc31ff3b3c
CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL

To be certain the reported issue is not related to corruption in the user
profile, could you please reset your Libreoffice profile
(https://wiki.documentfoundation.org/UserProfile) and re-test?

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the issue is still present.

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


[Libreoffice-bugs] [Bug 129194] Impress pptx in presentation mode freezes after windows going into sleep mode

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129194

--- Comment #6 from Marctoo  ---
Not reproducible both on stable and master

Version: 7.0.0.0.alpha1 (x64)
Build ID: 6a03b2a54143a9bc0c6d4c7f1...
CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL: win; 
Locale: en-GB (en_GB); UI: en-US
Calc: threaded


Version: 6.4.3.2 (x64)
Build ID: 747b5d0ebf89f41c860ec2a39efd7cb15b54f2d8
CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: GL; VCL: win; 
Locale: en-GB (en_GB); UI-Language: en-GB
Calc: CL

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


[Libreoffice-bugs] [Bug 133418] EXPORT DOCX: Page style names not preserved & new styles added

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133418

--- Comment #3 from Justin L  ---
Microsoft formats don't have names for page styles.  And there is nothing like
a one-to-one mapping of features, so I don't expect that we could add in our
own meta-data to round-trip anything either.  Not possible AFAIK.

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


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

2020-05-31 Thread Mike Kaganski (via logerrit)
 vcl/source/treelist/transfer.cxx |4 
 1 file changed, 4 insertions(+)

New commits:
commit 54669d9fcc9d51c561108b512717698cff9320af
Author: Mike Kaganski 
AuthorDate: Sun May 31 17:24:15 2020 +0200
Commit: Mike Kaganski 
CommitDate: Mon Jun 1 07:38:59 2020 +0200

tdf#133527: the code may be called without solar mutex guard

... so make sure to get one before using releaser

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

diff --git a/vcl/source/treelist/transfer.cxx b/vcl/source/treelist/transfer.cxx
index 8ff088d05366..eefc22e8ba6c 100644
--- a/vcl/source/treelist/transfer.cxx
+++ b/vcl/source/treelist/transfer.cxx
@@ -1444,6 +1444,8 @@ Any TransferableDataHelper::GetAny( const DataFlavor& 
rFlavor, const OUString& r
 {
 // tdf#133365: only release solar mutex on Windows
 #ifdef _WIN32
+// tdf#133527: first, make sure that we actually hold 
the mutex
+SolarMutexGuard g;
 // Our own thread may handle the nested 
IDataObject::GetData call,
 // and try to acquire solar mutex
 SolarMutexReleaser r;
@@ -1464,6 +1466,8 @@ Any TransferableDataHelper::GetAny( const DataFlavor& 
rFlavor, const OUString& r
 {
 // tdf#133365: only release solar mutex on Windows
 #ifdef _WIN32
+// tdf#133527: first, make sure that we actually hold the mutex
+SolarMutexGuard g;
 // Our own thread may handle the nested IDataObject::GetData 
call,
 // and try to acquire solar mutex
 SolarMutexReleaser r;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 74702] Remove enum OutDevType from OutputDevice

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=74702

--- Comment #56 from Commit Notification 
 ---
Chris Sherlock committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/201651953740edd3e9eb0b4fcbdcd4bf1a79a2c1

tdf#74702 vcl: extract SetMetafileMapMode()

It will be available in 7.1.0.

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

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

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


[Libreoffice-bugs] [Bug 74702] Remove enum OutDevType from OutputDevice

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=74702

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:4.3.0 target:6.3.0   |target:4.3.0 target:6.3.0
   |target:6.4.0 target:6.5.0   |target:6.4.0 target:6.5.0
   |target:7.0.0|target:7.0.0 target:7.1.0

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


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

2020-05-31 Thread Chris Sherlock (via logerrit)
 include/vcl/outdev.hxx|1 +
 include/vcl/print.hxx |2 ++
 vcl/source/gdi/gdimtf.cxx |6 ++
 vcl/source/outdev/map.cxx |8 
 4 files changed, 13 insertions(+), 4 deletions(-)

New commits:
commit 201651953740edd3e9eb0b4fcbdcd4bf1a79a2c1
Author: Chris Sherlock 
AuthorDate: Sun May 24 00:11:42 2020 +1000
Commit: Tomaž Vajngerl 
CommitDate: Mon Jun 1 07:20:41 2020 +0200

tdf#74702 vcl: extract SetMetafileMapMode()

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

diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx
index 6813eccd51ee..e9822fc37049 100644
--- a/include/vcl/outdev.hxx
+++ b/include/vcl/outdev.hxx
@@ -1667,6 +1667,7 @@ public:
 voidSetMapMode();
 virtual voidSetMapMode( const MapMode& rNewMapMode );
 voidSetRelativeMapMode( const MapMode& rNewMapMode 
);
+virtual voidSetMetafileMapMode(const MapMode& rNewMapMode, 
bool bIsRecord);
 const MapMode&  GetMapMode() const { return maMapMode; }
 
 protected:
diff --git a/include/vcl/print.hxx b/include/vcl/print.hxx
index edc55728e5f0..2a27e4c2469f 100644
--- a/include/vcl/print.hxx
+++ b/include/vcl/print.hxx
@@ -271,6 +271,8 @@ public:
 virtual ~Printer() override;
 virtual voiddispose() override;
 
+virtual void SetMetafileMapMode(const MapMode& rNewMapMode, bool) override 
{ SetMapMode(rNewMapMode); }
+
 static const std::vector< OUString >&
 GetPrinterQueues();
 static const QueueInfo* GetQueueInfo( const OUString& rPrinterName, 
bool bStatusUpdate );
diff --git a/vcl/source/gdi/gdimtf.cxx b/vcl/source/gdi/gdimtf.cxx
index 46a145750609..6b99db3ab3ee 100644
--- a/vcl/source/gdi/gdimtf.cxx
+++ b/vcl/source/gdi/gdimtf.cxx
@@ -502,10 +502,8 @@ void GDIMetaFile::Play( OutputDevice* pOut, const Point& 
rPos,
 
 pOut->Push();
 
-if ( pMtf && pMtf->IsRecord() && ( pOut->GetOutDevType() != OUTDEV_PRINTER 
) )
-pOut->SetRelativeMapMode( aDrawMap );
-else
-pOut->SetMapMode( aDrawMap );
+bool bIsRecord = (pMtf && pMtf->IsRecord());
+pOut->SetMetafileMapMode(aDrawMap, bIsRecord);
 
 // #i23407# Set backwards-compatible text language and layout mode
 // This is necessary, since old metafiles don't even know of these
diff --git a/vcl/source/outdev/map.cxx b/vcl/source/outdev/map.cxx
index 92d9e63224e7..1ee5b7e93a32 100644
--- a/vcl/source/outdev/map.cxx
+++ b/vcl/source/outdev/map.cxx
@@ -770,6 +770,14 @@ void OutputDevice::SetMapMode( const MapMode& rNewMapMode )
 ImplInvalidateViewTransform();
 }
 
+void OutputDevice::SetMetafileMapMode(const MapMode& rNewMapMode, bool 
bIsRecord)
+{
+if (bIsRecord)
+SetRelativeMapMode(rNewMapMode);
+else
+SetMapMode(rNewMapMode);
+}
+
 void OutputDevice::ImplInitMapModeObjects() {}
 
 void OutputDevice::SetRelativeMapMode( const MapMode& rNewMapMode )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 133547] LibODev 7.0 Beta 1 regression in PDF insert wrt image break

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133547

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.1.0

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


[Libreoffice-bugs] [Bug 133547] LibODev 7.0 Beta 1 regression in PDF insert wrt image break

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133547

--- Comment #3 from Commit Notification 
 ---
Tomaž Vajngerl committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/573de30566e4477c8dc09abec08f1082d16c74bc

tdf#133547 Fix breaking of PDF graphic objects

It will be available in 7.1.0.

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

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

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


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

2020-05-31 Thread Tomaž Vajngerl (via logerrit)
 include/vcl/vectorgraphicdata.hxx |3 ++-
 svx/source/svdraw/svdedtv2.cxx|2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 573de30566e4477c8dc09abec08f1082d16c74bc
Author: Tomaž Vajngerl 
AuthorDate: Sun May 31 20:25:11 2020 +0200
Commit: Tomaž Vajngerl 
CommitDate: Mon Jun 1 07:16:44 2020 +0200

tdf#133547 Fix breaking of PDF graphic objects

ImpSdrPdfImport did not handle -1 as the page number correctly.
When the page number is -1 it means it was never explicitly set
and should be treated as page with index 0 most of the time. So
instead of allowing -1 as the page index, return it as 0 already
in Graphic (VectorGraphicData).

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

diff --git a/include/vcl/vectorgraphicdata.hxx 
b/include/vcl/vectorgraphicdata.hxx
index 62e7617cdb56..8fcee6e8 100644
--- a/include/vcl/vectorgraphicdata.hxx
+++ b/include/vcl/vectorgraphicdata.hxx
@@ -26,6 +26,7 @@
 #include 
 #include 
 #include 
+#include 
 
 namespace com::sun::star::graphic { class XPrimitive2D; }
 struct WmfExternal;
@@ -110,7 +111,7 @@ public:
 const BitmapEx& getReplacement() const;
 BitmapChecksum GetChecksum() const;
 
-sal_Int32 getPageIndex() const { return mnPageIndex; }
+sal_Int32 getPageIndex() const { return std::max(sal_Int32(0), 
mnPageIndex); }
 
 bool isPrimitiveSequenceCreated() const { return mbSequenceCreated; }
 };
diff --git a/svx/source/svdraw/svdedtv2.cxx b/svx/source/svdraw/svdedtv2.cxx
index 661dd0779e18..de8c521b3119 100644
--- a/svx/source/svdraw/svdedtv2.cxx
+++ b/svx/source/svdraw/svdedtv2.cxx
@@ -2104,7 +2104,7 @@ void SdrEditView::DoImportMarkedMtf(SvdProgressInfo 
*pProgrInfo)
 #if HAVE_FEATURE_PDFIUM
 aLogicRect = pGraf->GetLogicRect();
 ImpSdrPdfImport aFilter(*mpModel, pObj->GetLayer(), 
aLogicRect, aGraphic);
-if (pGraf->getEmbeddedPageNumber() < aFilter.GetPageCount())
+if (aGraphic.getPageNumber() < aFilter.GetPageCount())
 {
 nInsCnt = aFilter.DoImport(*pOL, nInsPos, 
aGraphic.getPageNumber(), pProgrInfo);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 60428] Duplex Printing - HP Officejet Pro 8600 Plus

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60428

himajin100...@gmail.com changed:

   What|Removed |Added

Crash report or|https://printerrepairdubai. |
crash signature|ae/ |
 Whiteboard|Samsung printer |needsDuplexPrinter
URL|https://printerrepairdubai. |
   |ae/service.php?catid=19 |
   |name=Samsung%20printer%20re |
   |pair|

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


[Libreoffice-bugs] [Bug 124016] [VIEWING] On LibreOffice Online, read only files should allow browsing and clicking links

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124016

--- Comment #8 from Aron Budea  ---
(In reply to Michael Meeks from comment #7)
> But check the problem is still there first =)
As far as I can see this is indeed working now:
- clicking on a linked text brings up the bubble with the URL, then clicking on
that opens the link,
- Ctrl-clicking on a linked text brings up the dialog where you can confirm if
you want to visit the link.

A few possible UX improvements could be:
- in deskop LO, hovering over the URL with Ctrl pressed changes the pointer to
a hand (in Writer, not in Calc, tho), this doesn't happen in online,
- in the Ctrl-click dialog, there's an option to edit the URL, this button
should be deactivated in read-only mode (the changes are discarded anyway).

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


[Libreoffice-bugs] [Bug 60428] Duplex Printing - HP Officejet Pro 8600 Plus

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60428

Aman Gupta  changed:

   What|Removed |Added

Crash report or||https://printerrepairdubai.
crash signature||ae/
 Whiteboard|needsDuplexPrinter  |Samsung printer
URL||https://printerrepairdubai.
   ||ae/service.php?catid=19
   ||name=Samsung%20printer%20re
   ||pair

--- Comment #45 from Aman Gupta  ---

I read blog excellent application all platform to run like android ios and web
great article It is very informative for us. Thanks for posting 
https://printerrepairdubai.ae/

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


[Libreoffice-bugs] [Bug 60428] Duplex Printing - HP Officejet Pro 8600 Plus

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60428

--- Comment #44 from Aman Gupta  ---

solutions can help diagnose problems as quickly as possible, which can reduce
the time and expense involved in getting the appliance back or reappearing
We fix all sorts of computer issues! From software to hardware we have the
solution!
https://printerrepairdubai.ae/

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


[Libreoffice-bugs] [Bug 133400] Not possible to paste into comments

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133400

--- Comment #6 from Aron Budea  ---
(In reply to Heiko Tietze from comment #0)
> Tested with LOOL at TDF (when I select the content of the about dialog and
> release the mouse button this dialog disappears- another bug to me).
Please see bug 130855 on this one.

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


[Libreoffice-bugs] [Bug 132125] Pasting text into comments does not work

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132125

Aron Budea  changed:

   What|Removed |Added

 CC||heiko.tietze@documentfounda
   ||tion.org

--- Comment #7 from Aron Budea  ---
*** Bug 133400 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 133400] Not possible to paste into comments

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133400

Aron Budea  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED
 CC||ba...@caesar.elte.hu

--- Comment #5 from Aron Budea  ---
Indeed. There's already a bug report on it, so let's close this as duplicate.

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

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


[Libreoffice-bugs] [Bug 133496] Missing icons in Toolbar

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133496

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu

--- Comment #1 from Aron Budea  ---
Do you see any errors pointing to missing image files in the browser console?
The icons should appear fine, I've noticed only very few times that they didn't
load at first, and in those cases closing and reopening the session solved the
issue.

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


[Libreoffice-bugs] [Bug 89474] Wrong display of number with many decimals depending the zoom

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89474

--- Comment #3 from WilliamSladen  ---
“Wrong display of numbers with many decimals depending on the zoom” titled
article contains much content for you. But students must visit
https://assignmentman.co.uk/ to complete their educational tasks easily. Thank
you for sharing this website with us. Such positive content should be published
and delivered to people. Keep doing more nice jobs.

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


[Libreoffice-bugs] [Bug 133106] Bold, Italic, and some icons on Menu bar is hard to see under dark mode.

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133106

--- Comment #1 from Kheng  ---
Created attachment 161481
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161481=edit
Screenshot of the icons that are hard to see in dark mode

I have made a screen shot of LibreOffice Calc under dark mode and highlighted
the icons that are less visible in dark mode. Thanks.

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


[Libreoffice-bugs] [Bug 133245] Collabora Office Android 9 opens file read only from Samsung My Files, R/W OK from Collabora file browser.

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133245

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Aron Budea  ---
Confirmed, thanks for reporting!

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


[Libreoffice-bugs] [Bug 133486] FILESAVE Save or Save as fails when cell format was changed earlier

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133486

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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


[Libreoffice-bugs] [Bug 133124] Calc Pivot Table Properties window not vertically scrollable

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133124

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 133117] Automatic spell-check with multiple input languages

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133117

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 133106] Bold, Italic, and some icons on Menu bar is hard to see under dark mode.

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133106

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 133132] Split launcher shortcuts for macOS, like in Linux

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133132

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 133125] FILEOPEN ODT: Opening file with 6 embedded font slow

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133125

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 133046] Adding a paragraph on pag 1 makes page wrap quite (wrap through)/ undo doesn't solve it

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133046

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 133123] Python module uno.py overrides import, resulting in failure of subsequent import cairosvg module

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133123

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 128487] Eng-US forces Libreoffice to use Letter paper size instead of A4

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128487

--- Comment #4 from QA Administrators  ---
Dear kbs.office02,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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


[Libreoffice-bugs] [Bug 128422] "Help" info for "Comparing Versions of a Document" is outdated?

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128422

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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


[Libreoffice-bugs] [Bug 108008] SPELL Check : False positive with %.

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108008

--- Comment #5 from QA Administrators  ---
Dear Pierre C,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 100905] Splitting Table Breaks Spacing, Fonts, etc.

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100905

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

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 128487] Eng-US forces Libreoffice to use Letter paper size instead of A4

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128487

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 128422] "Help" info for "Comparing Versions of a Document" is outdated?

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128422

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-commits] core.git: external/nss

2020-05-31 Thread Jan-Marek Glogowski (via logerrit)
 external/nss/nss-android.patch.1 |8 +---
 external/nss/nss-ios.patch   |4 ++--
 2 files changed, 7 insertions(+), 5 deletions(-)

New commits:
commit d585cad3e63c894aba33993ad970ca5452fdfcc0
Author: Jan-Marek Glogowski 
AuthorDate: Mon Jun 1 04:44:50 2020 +0200
Commit: Jan-Marek Glogowski 
CommitDate: Mon Jun 1 04:55:52 2020 +0200

NSS: update Android and iOS patches

They now apply again without any fuzz hunks.

Change-Id: I8200494b43b97ada66aeb4fa8f9737c3a720dbe2

diff --git a/external/nss/nss-android.patch.1 b/external/nss/nss-android.patch.1
index b77663c59eb3..7d3807f73589 100644
--- a/external/nss/nss-android.patch.1
+++ b/external/nss/nss-android.patch.1
@@ -62,15 +62,17 @@ diff -ur nss.org/nss/Makefile nss/nss/Makefile
$(MAKE) -C $(CORE_DEPTH)/../nspr/$(OBJDIR_NAME) install
 --- nss/nss/lib/ckfw/builtins/manifest.mn.orig 2019-11-26 15:18:22.185985193 
+0100
 +++ nss/nss/lib/ckfw/builtins/manifest.mn  2019-11-26 15:18:29.281982387 
+0100
-@@ -5,7 +5,7 @@
+@@ -5,9 +5,7 @@
  
  CORE_DEPTH = ../../..
  
--DIRS = testlib
+-DIRS = . testlib
+-
+-testlib: .
 +DIRS =
  
  MODULE = nss
- MAPFILE = $(OBJDIR)/nssckbi.def
+ 
 diff -ur nss/nss/coreconf/arch.mk nss/nss/coreconf/arch.mk
 --- nss/nss/coreconf/arch.mk   2019-11-01 10:29:44.933245745 +0100
 +++ nss/nss/coreconf/arch.mk   2019-11-01 10:32:04.347181076 +0100
diff --git a/external/nss/nss-ios.patch b/external/nss/nss-ios.patch
index 9d4af2c724e9..000d1685abf5 100644
--- a/external/nss/nss-ios.patch
+++ b/external/nss/nss-ios.patch
@@ -62,7 +62,7 @@
MKSHLIB += -exported_symbols_list $(MAPFILE)
 --- a/a/nss/coreconf/UNIX.mk
 +++ a/a/nss/coreconf/UNIX.mk
-@@ -21,10 +21,14 @@
+@@ -19,10 +19,14 @@
  
  ifdef BUILD_TREE
  NSINSTALL_DIR  = $(BUILD_TREE)/nss
@@ -76,7 +76,7 @@
 +endif
  endif
  
- MKDEPEND_DIR= $(CORE_DEPTH)/coreconf/mkdepend
+ 
 --- a/a/nspr/pr/include/md/_darwin.h
 +++ a/a/nspr/pr/include/md/_darwin.h
 @@ -26,6 +26,8 @@
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129010] LibreOffice Math missing in clipboard RTF

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129010

--- Comment #2 from Michael Warner  ---
I was able to reproduce this in:
7.1.0.0.alpha0+
7db6b280e9703ad8786b6019ec6ac9fd31d146e7
on Linux

Using these steps:
1. Create some text with an embedded Math formula
2. Select the text
3. Copy
4. Paste back into LibreOffice Writer
5. Observe the formula is present
6. Paste Special, Rich Text Formatting
7. Observe the formula is not present

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


GSoC'20 Community Bonding Report

2020-05-31 Thread ahmed El-Shreif
Hello,

here is my Community Bonding report:
https://ahmedelshreifgsoc20.blogspot.com/2020/05/gsoc-community-bonding-report.html

waiting for all your feedback.

Thanks in advance
Ahmed
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 133546] LibODev 7.0 Beta 1 regression in insertion of PDF image wrt image size

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133546

V Stuart Foote  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from V Stuart Foote  ---
Not seeing an issue here. When we insert any image, we normally want the image
to either fit within width in the frame/section we have selected active, or to
have it fit within width of page margins as set.

The pdfium based PDF insert follows this behavior--expanding to fit within
frame, or within page margin--keeping image proportion and resizing as needed
to fit width.

=> WFM

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


[Libreoffice-bugs] [Bug 133544] LO7A1 - Branding logo in About window - part of logo is chopped of, "Foundation" becomes "Foundati" (Regession to LO7A0)

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133544

Ming Hua  changed:

   What|Removed |Added

 CC||ming.v@qq.com
 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED

--- Comment #4 from Ming Hua  ---
I believe this is the same issue as bug 132871 and has been fixed in 7.0.0
beta1.

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

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


[Libreoffice-bugs] [Bug 127648] LO on Linux crashes when accessing opend/locked File on SAMBA network share

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127648

--- Comment #34 from chuck.pob...@gmail.com ---
Might this kernel bug be related?

bugzilla.kernel.org/show_bug.cgi?id=201893

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


[Libreoffice-bugs] [Bug 133570] New: Word Wrap Text in Shape doesn't work on Callouts

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133570

Bug ID: 133570
   Summary: Word Wrap Text in Shape doesn't work on Callouts
   Product: LibreOffice
   Version: 6.4.4.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kieth.h...@gmail.com

Description:
I am using Draw on LibreOffice Version: 6.4.4.2 Build ID:
3d775be2011f3886db32dfd395a6a6d1ca2630ff on Debian 10

I have enabled "Word Wrap Text in Shape" which works for all the shapes I have
tried to use so far except for Callouts.

Steps to Reproduce:
1. Create a callout in LibreOffice Draw
2. Enter Text into the callout.
3. Edit the style and enable "Word wrap text in shape"

Actual Results:
Text stays one one line.

Expected Results:
Text should wrap to multiple lines to stay inside the boarders of the shape.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
Output of glxinfo | grep OpenGL
OpenGL vendor string: X.Org
OpenGL renderer string: AMD HAWAII (DRM 2.50.0, 4.19.0-9-amd64, LLVM 7.0.1)
OpenGL core profile version string: 4.5 (Core Profile) Mesa 18.3.6
OpenGL core profile shading language version string: 4.50
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile
OpenGL core profile extensions:
OpenGL version string: 4.5 (Compatibility Profile) Mesa 18.3.6
OpenGL shading language version string: 4.50
OpenGL context flags: (none)
OpenGL profile mask: compatibility profile
OpenGL extensions:
OpenGL ES profile version string: OpenGL ES 3.2 Mesa 18.3.6
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.20
OpenGL ES profile extensions:

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


[Libreoffice-bugs] [Bug 131292] Native OSX file open/save dialog do not work anymore

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131292

--- Comment #5 from Rob  ---
(In reply to Vincent Boudry from comment #3)
> 
> *** This bug has been marked as a duplicate of bug 126638 ***

Please reopen.

The built in dialogs are so clumsy compared with the system ones that I moved
back to LO 6.3.6.2

Every time when there is an announcement of a new version, I install it, test
it, and uptil now moved back to LO 6.3.6.2

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


[Libreoffice-bugs] [Bug 131292] Native OSX file open/save dialog do not work anymore

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131292

Rob  changed:

   What|Removed |Added

 CC||r...@famjasper.nl

--- Comment #4 from Rob  ---
(In reply to Vincent Boudry from comment #2)
> I am using MacOS 10.15.3 (19D76).
> And yes, indeed that's related; sorry I missed it.

I fail to see the relation. This bug states that the save dialog doesn't even
open; That's something else then unable to paste.

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


[Libreoffice-bugs] [Bug 133562] LibreOffice Impress discards custom font style settings when saving to PPTX, EVERY TIME

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133562

Tianxing Yang  changed:

   What|Removed |Added

Summary|LibreOffice impress |LibreOffice Impress
   |discards custom font style  |discards custom font style
   |settings when saving to |settings when saving to
   |PPTX, EVERY TIME|PPTX, EVERY TIME

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


[Libreoffice-bugs] [Bug 133546] LibODev 7.0 Beta 1 regression in insertion of PDF image wrt image size

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133546

--- Comment #2 from sergio.calleg...@gmail.com ---
My mistake: inserted

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


[Libreoffice-bugs] [Bug 133546] LibODev 7.0 Beta 1 regression in insertion of PDF image wrt image size

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133546

sergio.calleg...@gmail.com changed:

   What|Removed |Added

Summary|LibODev 7.0 Beta 1  |LibODev 7.0 Beta 1
   |regression in PDF import|regression in insertion of
   |wrt image size  |PDF image wrt image size

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


[Libreoffice-bugs] [Bug 133562] LibreOffice impress discards custom font style settings when saving to PPTX, EVERY TIME

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133562

Mike  changed:

   What|Removed |Added

 CC||bugzilla@mkr.email

--- Comment #4 from Mike  ---
Can reproduce this. The styles also change the font to Liberation, if the OTP
is saved as a POTX (PPT Template).

Version: 7.1.0.0.alpha0+ (x64)
Build ID: 2047a5978ac8188e61da9cd3b2f40d86df5570bb
CPU threads: 4; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 108629] [META] Ruler bugs and enhancements

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108629

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||133569


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=133569
[Bug 133569] Writer comments ruler UI control problems
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 106179] [META] Writer comment bugs and enhancements

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106179

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||133569


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=133569
[Bug 133569] Writer comments ruler UI control problems
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 133569] Writer comments ruler UI control problems

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133569

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108629, 106179


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 133501] LO 7 writes invalid in ODF 1.3 strict

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133501

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108198


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108198
[Bug 108198] [META] ODF export is unsuitable or invalid XML
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108198] [META] ODF export is unsuitable or invalid XML

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108198

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||133501


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=133501
[Bug 133501] LO 7 writes invalid  in ODF 1.3 strict
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 133555] is not valid in ODF 1.2

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133555

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108198


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108198
[Bug 108198] [META] ODF export is unsuitable or invalid XML
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108198] [META] ODF export is unsuitable or invalid XML

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108198

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||133555


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=133555
[Bug 133555]  is not valid in ODF 1.2
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103341] [META] AutoCorrect and Word Completion bugs and enhancements

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103341
Bug 103341 depends on bug 128860, which changed state.

Bug 128860 Summary: Incorrect autocorrection of apostrophes in German text
https://bugs.documentfoundation.org/show_bug.cgi?id=128860

   What|Removed |Added

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

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


[Libreoffice-commits] core.git: editeng/source include/editeng sw/qa

2020-05-31 Thread László Németh (via logerrit)
 editeng/source/misc/svxacorr.cxx  |   74 +-
 include/editeng/svxacorr.hxx  |1 
 sw/qa/extras/uiwriter/data/tdf133524.fodt |   14 +
 sw/qa/extras/uiwriter/uiwriter.cxx|   49 +++
 4 files changed, 137 insertions(+), 1 deletion(-)

New commits:
commit 57f07b1d7378d218648667c5b1315cc8ad905875
Author: László Németh 
AuthorDate: Thu May 28 08:50:39 2020 +0200
Commit: László Németh 
CommitDate: Sun May 31 23:13:23 2020 +0200

tdf#133524 AutoCorrect: support double angle quotes

Add two methods to support double angle quotes,
as part of "Double quotes" replacement:

1. Correct ">>" and "<<" to » and « in several languages,
where double angle quotes are default or alternative
primary or second level quotation marks, but actual
LibreOffice locale settings don't contain double angle
quotes.

2. Correct " to double angle quotes, if the cursor
is there in a primary level quotation (i.e. there
is a preceding primary level opening quote, but not
other quotes). For example, it's possible to type
Hungarian or Romanian quotation marks in

„... »quote« ...”

pressing only Shift + 2 (") for them. (These languages,
where "Single quotes" replacement is used for apostrophe
and third level quotes instead of the standard second
level quotation marks.)

Change-Id: Icd1584a5a2b81422de693217d2d1f7f3058a74b1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95212
Tested-by: Jenkins
Tested-by: László Németh 
Reviewed-by: László Németh 

diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx
index ebc0ec810a60..24a5235e9c1a 100644
--- a/editeng/source/misc/svxacorr.cxx
+++ b/editeng/source/misc/svxacorr.cxx
@@ -259,6 +259,7 @@ bool SvxAutoCorrect::IsAutoCorrectChar( sal_Unicode cChar )
 cChar == '*'  || cChar == '_'  || cChar == '%' ||
 cChar == '.'  || cChar == ','  || cChar == ';' ||
 cChar == ':'  || cChar == '?' || cChar == '!' ||
+cChar == '<'  || cChar == '>' ||
 cChar == '/'  || cChar == '-';
 }
 
@@ -309,6 +310,12 @@ ACFlags SvxAutoCorrect::GetDefaultFlags()
 static constexpr sal_Unicode cEmDash = 0x2014;
 static constexpr sal_Unicode cEnDash = 0x2013;
 static constexpr sal_Unicode cApostrophe = 0x2019;
+static constexpr sal_Unicode cLeftDoubleAngleQuote = 0xAB;
+static constexpr sal_Unicode cRightDoubleAngleQuote = 0xBB;
+// stop characters for searching preceding quotes
+// (the first character is also the opening quote we are looking for)
+const sal_Unicode aStopDoubleAngleQuoteStart[] = { 0x201E, 0x201D, 0 }; // 
preceding ,,
+const sal_Unicode aStopDoubleAngleQuoteEnd[] = { cRightDoubleAngleQuote, 
cLeftDoubleAngleQuote, 0x201D, 0x201E, 0 }; // preceding >>
 
 SvxAutoCorrect::SvxAutoCorrect( const OUString& rShareAutocorrFile,
 const OUString& rUserAutocorrFile )
@@ -1194,7 +1201,16 @@ void SvxAutoCorrect::InsertQuote( SvxAutoCorrDoc& rDoc, 
sal_Int32 nInsPos,
 sal_Unicode cInsChar, bool bSttQuote,
 bool bIns, LanguageType eLang, ACQuotes 
eType ) const
 {
-sal_Unicode cRet = GetQuote( cInsChar, bSttQuote, eLang );
+sal_Unicode cRet;
+
+if ( eType == ACQuotes::DoubleAngleQuote )
+{
+cRet = ( '<' == cInsChar || ('\"' == cInsChar && !bSttQuote) )
+? cLeftDoubleAngleQuote
+: cRightDoubleAngleQuote;
+}
+else
+cRet = GetQuote( cInsChar, bSttQuote, eLang );
 
 OUString sChg( cInsChar );
 if( bIns )
@@ -1213,6 +1229,11 @@ void SvxAutoCorrect::InsertQuote( SvxAutoCorrDoc& rDoc, 
sal_Int32 nInsPos,
 ++nInsPos;
 }
 }
+else if( eType == ACQuotes::DoubleAngleQuote && cInsChar != '\"' )
+{
+rDoc.Delete( nInsPos-1, nInsPos);
+--nInsPos;
+}
 
 rDoc.Replace( nInsPos, sChg );
 
@@ -1242,6 +1263,26 @@ OUString SvxAutoCorrect::GetQuote( SvxAutoCorrDoc const 
& rDoc, sal_Int32 nInsPo
 return sRet;
 }
 
+// search preceding opening quote in the paragraph before the insert position
+static bool lcl_HasPrecedingChar( const OUString& rTxt, sal_Int32 nPos,
+const sal_Unicode sPrecedingChar, const sal_Unicode* 
aStopChars )
+{
+sal_Unicode cTmpChar;
+
+do {
+cTmpChar = rTxt[ --nPos ];
+if ( cTmpChar == sPrecedingChar )
+return true;
+
+for ( const sal_Unicode* pCh = aStopChars; *pCh; ++pCh )
+if ( cTmpChar == *pCh )
+return false;
+
+} while ( nPos > 0 );
+
+return false;
+}
+
 // WARNING: rText may become invalid, see comment below
 void SvxAutoCorrect::DoAutoCorrect( SvxAutoCorrDoc& rDoc, const OUString& rTxt,
 sal_Int32 nInsPos, sal_Unicode cChar,
@@ -1292,6 +1333,14 @@ void 

[Libreoffice-commits] core.git: editeng/source include/editeng sw/qa

2020-05-31 Thread László Németh (via logerrit)
 editeng/source/misc/svxacorr.cxx  |   22 ++
 include/editeng/svxacorr.hxx  |1 +
 sw/qa/extras/uiwriter/data/tdf128860.fodt |   14 ++
 sw/qa/extras/uiwriter/uiwriter.cxx|   27 +++
 4 files changed, 64 insertions(+)

New commits:
commit a0c90f1bccd9b5a349d3199746facab549f27dba
Author: László Németh 
AuthorDate: Fri May 29 16:46:44 2020 +0200
Commit: László Németh 
CommitDate: Sun May 31 23:13:59 2020 +0200

tdf#128860 AutoCorrect: fix apostrophe in Czech, German,

Icelandic, Slovak and Slovene at "Single quotes"
replacement outside of second level quotations.

For example:

‚quote' -> ‚quote‘

but now

apostrophe' -> apostrophe’

instead of the bad

apostrophe' -> apostrophe‘

Change-Id: Ie6d367639cb80ec9f11e4d824b87f537e5285182
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95213
Tested-by: Jenkins
Tested-by: László Németh 
Reviewed-by: László Németh 

diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx
index 24a5235e9c1a..b381b1726f45 100644
--- a/editeng/source/misc/svxacorr.cxx
+++ b/editeng/source/misc/svxacorr.cxx
@@ -316,6 +316,7 @@ static constexpr sal_Unicode cRightDoubleAngleQuote = 0xBB;
 // (the first character is also the opening quote we are looking for)
 const sal_Unicode aStopDoubleAngleQuoteStart[] = { 0x201E, 0x201D, 0 }; // 
preceding ,,
 const sal_Unicode aStopDoubleAngleQuoteEnd[] = { cRightDoubleAngleQuote, 
cLeftDoubleAngleQuote, 0x201D, 0x201E, 0 }; // preceding >>
+const sal_Unicode aStopSingleQuoteEnd[] = { 0x201A, 0x2018, 0x201C, 0x201E, 0 
};
 
 SvxAutoCorrect::SvxAutoCorrect( const OUString& rShareAutocorrFile,
 const OUString& rUserAutocorrFile )
@@ -1209,6 +1210,8 @@ void SvxAutoCorrect::InsertQuote( SvxAutoCorrDoc& rDoc, 
sal_Int32 nInsPos,
 ? cLeftDoubleAngleQuote
 : cRightDoubleAngleQuote;
 }
+else if ( eType == ACQuotes::UseApostrophe )
+cRet = cApostrophe;
 else
 cRet = GetQuote( cInsChar, bSttQuote, eLang );
 
@@ -1341,6 +1344,25 @@ void SvxAutoCorrect::DoAutoCorrect( SvxAutoCorrDoc& 
rDoc, const OUString& rTxt,
 {
 eType = ACQuotes::DoubleAngleQuote;
 }
+// tdf#128860 use apostrophe outside of second level 
quotation in Czech, German, Icelandic,
+// Slovak and Slovenian instead of the – in this case, bad 
– closing quotation mark U+2018.
+else if ( bSingle && nInsPos && !bSttQuote &&
+( primary(eLang) == primary(LANGUAGE_GERMAN) || 
eLang.anyOf (
+ LANGUAGE_CZECH,
+ LANGUAGE_ICELANDIC,
+ LANGUAGE_SLOVAK,
+ LANGUAGE_SLOVENIAN ) ) &&
+!lcl_HasPrecedingChar( rTxt, nInsPos, 
aStopSingleQuoteEnd[0],  aStopSingleQuoteEnd + 1 ) )
+{
+LocaleDataWrapper& rLcl = GetLocaleDataWrapper( eLang 
);
+CharClass& rCC = GetCharClass( eLang );
+if ( rLcl.getQuotationMarkStart() == 
OUStringChar(aStopSingleQuoteEnd[0]) &&
+ // use apostrophe only after letters, not after 
digits or punctuation
+ rCC.isLetter(rTxt, nInsPos-1) )
+{
+eType = ACQuotes::UseApostrophe;
+}
+}
 }
 
 if ( eType == ACQuotes::NONE && !bSingle &&
diff --git a/include/editeng/svxacorr.hxx b/include/editeng/svxacorr.hxx
index c9d9a866a949..697ac614f76d 100644
--- a/include/editeng/svxacorr.hxx
+++ b/include/editeng/svxacorr.hxx
@@ -86,6 +86,7 @@ enum class ACQuotes
 NonBreakingSpace,
 CapitalizeIAm,
 DoubleAngleQuote,
+UseApostrophe,
 };
 
 // TODO: handle code points > U+ and check users of this class
diff --git a/sw/qa/extras/uiwriter/data/tdf128860.fodt 
b/sw/qa/extras/uiwriter/data/tdf128860.fodt
new file mode 100644
index ..5e93b60f667b
--- /dev/null
+++ b/sw/qa/extras/uiwriter/data/tdf128860.fodt
@@ -0,0 +1,14 @@
+
+http://openoffice.org/2009/office; 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
+ 
+  
+  
+   
+  
+ 
+ 
+  
+   
+  
+ 
+
diff --git a/sw/qa/extras/uiwriter/uiwriter.cxx 
b/sw/qa/extras/uiwriter/uiwriter.cxx
index 9ba5cb946328..1cdc40cc43a6 100644
--- a/sw/qa/extras/uiwriter/uiwriter.cxx
+++ b/sw/qa/extras/uiwriter/uiwriter.cxx
@@ -369,6 +369,7 @@ public:
 void testTdf38394();
 void testTdf59666();
 void testTdf133524();
+void testTdf128860();
 void testInconsistentBookmark();
 

[Libreoffice-bugs] [Bug 103341] [META] AutoCorrect and Word Completion bugs and enhancements

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103341
Bug 103341 depends on bug 133524, which changed state.

Bug 133524 Summary: Add double angle quote («, ») autocorrection, where 
"Single/Double quotes AutoCorrect" locale settings don't support it
https://bugs.documentfoundation.org/show_bug.cgi?id=133524

   What|Removed |Added

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

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


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

2020-05-31 Thread László Németh (via logerrit)
 editeng/source/misc/svxacorr.cxx |   55 +--
 include/editeng/svxacorr.hxx |   10 ++-
 2 files changed, 33 insertions(+), 32 deletions(-)

New commits:
commit c87c7ddca46ae093a703ca673a204e4593402c38
Author: László Németh 
AuthorDate: Wed May 27 18:15:26 2020 +0200
Commit: László Németh 
CommitDate: Sun May 31 23:12:44 2020 +0200

AutoCorrect: clean-up InsertQuote

Change-Id: I577115805e5bcc29f6eb4d853aaa523495f30126
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95211
Tested-by: László Németh 
Reviewed-by: László Németh 

diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx
index 71f6efc2e33f..ebc0ec810a60 100644
--- a/editeng/source/misc/svxacorr.cxx
+++ b/editeng/source/misc/svxacorr.cxx
@@ -1192,9 +1192,8 @@ sal_Unicode SvxAutoCorrect::GetQuote( sal_Unicode 
cInsChar, bool bSttQuote,
 
 void SvxAutoCorrect::InsertQuote( SvxAutoCorrDoc& rDoc, sal_Int32 nInsPos,
 sal_Unicode cInsChar, bool bSttQuote,
-bool bIns, bool b_iApostrophe ) const
+bool bIns, LanguageType eLang, ACQuotes 
eType ) const
 {
-const LanguageType eLang = GetDocLanguage( rDoc, nInsPos );
 sal_Unicode cRet = GetQuote( cInsChar, bSttQuote, eLang );
 
 OUString sChg( cInsChar );
@@ -1205,36 +1204,21 @@ void SvxAutoCorrect::InsertQuote( SvxAutoCorrDoc& rDoc, 
sal_Int32 nInsPos,
 
 sChg = OUString(cRet);
 
-if( '\"' == cInsChar )
+if( eType == ACQuotes::NonBreakingSpace )
 {
-if (primary(eLang) == primary(LANGUAGE_FRENCH) && eLang != 
LANGUAGE_FRENCH_SWISS)
+OUString s( cNonBreakingSpace ); // UNICODE code for no break space
+if( rDoc.Insert( bSttQuote ? nInsPos+1 : nInsPos, s ))
 {
-OUString s( cNonBreakingSpace ); // UNICODE code for no break space
-if( rDoc.Insert( bSttQuote ? nInsPos+1 : nInsPos, s ))
-{
-if( !bSttQuote )
-++nInsPos;
-}
+if( !bSttQuote )
+++nInsPos;
 }
 }
 
 rDoc.Replace( nInsPos, sChg );
 
-// i' -> I' in English (last step for the undo)
-if( b_iApostrophe && eLang.anyOf(
-LANGUAGE_ENGLISH,
-LANGUAGE_ENGLISH_US,
-LANGUAGE_ENGLISH_UK,
-LANGUAGE_ENGLISH_AUS,
-LANGUAGE_ENGLISH_CAN,
-LANGUAGE_ENGLISH_NZ,
-LANGUAGE_ENGLISH_EIRE,
-LANGUAGE_ENGLISH_SAFRICA,
-LANGUAGE_ENGLISH_JAMAICA,
-LANGUAGE_ENGLISH_CARIBBEAN))
-{
+// i' -> I' in English (last step for the Undo)
+if( eType == ACQuotes::CapitalizeIAm )
 rDoc.Replace( nInsPos-1, "I" );
-}
 }
 
 OUString SvxAutoCorrect::GetQuote( SvxAutoCorrDoc const & rDoc, sal_Int32 
nInsPos,
@@ -1285,7 +1269,8 @@ void SvxAutoCorrect::DoAutoCorrect( SvxAutoCorrDoc& rDoc, 
const OUString& rTxt,
 {
 sal_Unicode cPrev;
 bool bSttQuote = !nInsPos;
-bool b_iApostrophe = false;
+ACQuotes eType = ACQuotes::NONE;
+const LanguageType eLang = GetDocLanguage( rDoc, nInsPos );
 if (!bSttQuote)
 {
 cPrev = rTxt[ nInsPos-1 ];
@@ -1295,17 +1280,25 @@ void SvxAutoCorrect::DoAutoCorrect( SvxAutoCorrDoc& 
rDoc, const OUString& rTxt,
 ( cEnDash == cPrev );
 // tdf#38394 use opening quotation mark << in French 
l'<>
 if ( !bSingle && !bSttQuote && cPrev == cApostrophe &&
+primary(eLang) == primary(LANGUAGE_FRENCH) &&
 (nInsPos == 2 || (nInsPos > 2 && IsWordDelim( rTxt[ 
nInsPos-3 ] ))) )
 {
-const LanguageType eLang = GetDocLanguage( rDoc, 
nInsPos );
-if ( primary(eLang) == primary(LANGUAGE_FRENCH) )
-bSttQuote = true;
+bSttQuote = true;
 }
 // tdf#108423 for capitalization of English i'm
-b_iApostrophe = bSingle && ( cPrev == 'i' ) &&
-(( nInsPos == 1 ) || IsWordDelim( rTxt[ nInsPos-2 ] ));
+else if ( bSingle && ( cPrev == 'i' ) &&
+primary(eLang) == primary(LANGUAGE_ENGLISH) &&
+( nInsPos == 1 || IsWordDelim( rTxt[ nInsPos-2 ] ) ) )
+{
+eType = ACQuotes::CapitalizeIAm;
+}
 }
-InsertQuote( rDoc, nInsPos, cChar, bSttQuote, bInsert, 
b_iApostrophe );
+
+if ( eType == ACQuotes::NONE && !bSingle &&
+( primary(eLang) == primary(LANGUAGE_FRENCH) && eLang != 
LANGUAGE_FRENCH_SWISS ) )
+eType = ACQuotes::NonBreakingSpace;
+
+

[Libreoffice-commits] core.git: extras/source i18npool/source

2020-05-31 Thread László Németh (via logerrit)
 extras/source/autocorr/lang/hu/DocumentList.xml |   27 
 i18npool/source/localedata/data/hu_HU.xml   |4 +--
 2 files changed, 2 insertions(+), 29 deletions(-)

New commits:
commit 3bfae06d78df8d79a3216115dccd8885a10bf0b2
Author: László Németh 
AuthorDate: Tue May 26 15:07:59 2020 +0200
Commit: László Németh 
CommitDate: Sun May 31 23:11:23 2020 +0200

tdf#115382 AutoCorrect: fix Hungarian apostrophe usage

Single Quotes AutoCorrect, i.e. pressing Ctrl + '
will insert typographic apostrophes (third level
Hungarian quoation marks) instead of » and «, like MSO does.

This reverts commit 0d0c13bfbdff85a18433aee6e94558689f0cb722
(tdf#115382 Hungarian autocorrect: help apostrophe usage), too.

See also commit b9910e87de4eea1cb3684bb7af8e58d681cbe809
(Resolves: tdf#116062 revert [fr-CH] to use previous
single quote characters)

Change-Id: I9ff5cb9a55699c253b6a57589186caa7caa170a8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95210
Tested-by: László Németh 
Reviewed-by: László Németh 

diff --git a/extras/source/autocorr/lang/hu/DocumentList.xml 
b/extras/source/autocorr/lang/hu/DocumentList.xml
index 63431b6fd45c..b677f75c0e3d 100644
--- a/extras/source/autocorr/lang/hu/DocumentList.xml
+++ b/extras/source/autocorr/lang/hu/DocumentList.xml
@@ -14,15 +14,6 @@
   
   
   
-  
-  
-  
-  
-  
-  
-  
-  
-  
   
   
   
@@ -37,8 +28,6 @@
   
   
   
-  
-  
   
   
   
@@ -89,10 +78,6 @@
   
   
   
-  
-  
-  
-  
   
   
   
@@ -230,12 +215,6 @@
   
   
   
-  
-  
-  
-  
-  
-  
   
   
   
@@ -375,8 +354,6 @@
   
   
   
-  
-  
   
   
   
@@ -506,8 +483,6 @@
   
   
   
-  
-  
   
   
   
@@ -540,8 +515,6 @@
   
   
   
-  
-  
   
   
   
diff --git a/i18npool/source/localedata/data/hu_HU.xml 
b/i18npool/source/localedata/data/hu_HU.xml
index fcab23dd3646..29b8068e23cd 100644
--- a/i18npool/source/localedata/data/hu_HU.xml
+++ b/i18npool/source/localedata/data/hu_HU.xml
@@ -42,8 +42,8 @@
   .
 
 
-  »
-  «
+  ’
+  ’
   „
   ”
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 133569] Writer comments ruler UI control problems

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133569

Jan-Marek Glogowski  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||heiko.tietze@documentfounda
   ||tion.org

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


[Libreoffice-bugs] [Bug 133569] New: Writer comments ruler UI control problems

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133569

Bug ID: 133569
   Summary: Writer comments ruler UI control problems
   Product: LibreOffice
   Version: 4.1 all versions
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: glo...@fbihome.de

Created attachment 161480
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161480=edit
Dummy document with a comment for easier test

Original I found that Writer's comments ruler UI control in some KDE theme
setting was highlighting on mouse over to use a black text on black background,
which made it unreadable.

While looking into the code and testing the UI element, I found further
problems with the design and implementation:

* swapping the arrow from left to right, as documented in the design wiki page,
moves the text, which I find highly irritating
* in RTL mode, the label is right-aligned, resulting in completely hidden text
and arrow, if the document space is small
* the arrow has a small, fixed size and padding, drawn with four consecutive
lines, so it doesn't scale in HiDPI mode

Eventually the comments column should switch to the left side of the document,
if the document itself is in RTL mode, as IMHO this follows the reading flow
easier. But since I don't have any experience working with RTL environments, I
didn't implement this. 

There is already a patch, which addresses all the mentioned problems:
https://gerrit.libreoffice.org/c/core/+/75421

Design wiki page:
https://wiki.documentfoundation.org/Design/Whiteboards/Comments_Ruler_Control
Implementation tracking: bug 38246

If some design people have additional comments, I'll try to address them,
otherwise merge the patch end of next week.

To reproduce:
1. Open the attached document
2. Change the comments visibility via the ruler UI element

You can test the HiDPI setting with qt5 / kf5 starting LO with
QT_SCALE_FACTOR=2.

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


[Libreoffice-bugs] [Bug 133418] EXPORT DOCX: Page style names not preserved & new styles added

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133418

Telesto  changed:

   What|Removed |Added

 CC||jl...@mail.com

--- Comment #2 from Telesto  ---
@Justin
Feel free to ignore, but seen the all to docx fixes recently and the styles
being quite heavy promoted by Libreoffice.

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


[Libreoffice-bugs] [Bug 133568] New: After Changing Default Load/Save File Type while Running Calc Reset or Change to Another File Type Failed to Update in Setting Properly

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133568

Bug ID: 133568
   Summary: After Changing Default Load/Save File Type while
Running Calc Reset or Change to Another File Type
Failed to Update in Setting Properly
   Product: LibreOffice
   Version: 6.3.6.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: distantlightn...@yahoo.com

Description:
After importing a Lotus 1-2-3 Spreadsheet file (.WK4) into Calc, which worked
just fine, I wanted to save it to a text file format for later processing. I
experimented with several save formats from the normal File "Save As" dialog
without issue. Since I wanted to automate the process to load and save a number
of files, I wanted the default save format to be the chosen one. I went to the
Tools-Options-Load/Save-General dialog page and changed "Always save as" to
several different formats experimentally, the last being .HTML. Then, when
selecting File Save or Save As it properly displayed the default option set to
.HTML and worked properly. But, if I went back to the options dialog and set it
back to the ODF Text Document format, or used Reset and Applied the setting,
even though it consistently displayed what you have selected in the Options
Dialog Box after applied and upon reopening this box, when opening File Save or
Save As .HTML is still displayed as default.

I should note, this is only reproduced if you import another .WK4 file. The
Save or Save As file will be correct if you open another spreadsheet file saved
in the .ODS. I did not think to try creating a new document. But, when
importing another .WK4 file, and the loaded file name is shown as *.WK4,
clicking Save or Save As defaults to .HTML even though it's set to the default
in the Options Dialog. 

I could find no way to fix this without deleting the user profile. I tried
reinstalling, etc. The system did not crash or behave abnormally otherwise.

I did not try changing it again after fixing as it was too much of a headache.
I can supply one or more .WK4 spreadsheet files of those are needed to work on
this and try to reproduce on your side. 

I am not sure if this is a problem with other file types. It's probably a low
priority issue. But, unless it is a fluke it is a problem. It seems strange to
me that the system seems to remember the old .HTML value only when opening
files of the .WK4 Type. I wouldn;t expect it to remember this in any case, and
if the default is changed it should apply no matter what type file was opened. 

Steps to Reproduce:
1.Import .WK4 file
2. Change Options - Always Save As to .HTML (Maybe try several others and test
first)
3. Save or Save As *.HTML
4. Change Options Always Save as to any other value and apply.
5. Save or Save As default will remain .HTML for files loaded as .WK4 only.
Note - problem occurs across program reloads, system restart and reinstall.
Only resetting the user profile fixes it. 

Actual Results:
Default Save/save As file type remained .HTML

Expected Results:
Should change to Default File format selected in Options.  


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Save or Save As should default to the default file format selected in Options.

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


[Libreoffice-bugs] [Bug 35939] ACCESSIBILITY: With LibreOffice Writer, the Windows7 Magnifier doesn't follow the insertion point

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35939

--- Comment #23 from BSC  ---
Windows10 didn't exist 9 years ago, when I posted the initial report...

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


[Libreoffice-bugs] [Bug 35939] ACCESSIBILITY: With LibreOffice Writer, the Windows7 Magnifier doesn't follow the insertion point

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35939

--- Comment #22 from Mike  ---
You're correct, it does not work with Win 10. I should have tested it before
with Win 10. Because the original report referred to Win 7 I only tested it
with my VM, which has Win 7.

But the magnifier following the text insert position DOES work in Win 7.
Really, no kidding! I attached a video I made with VBox.

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


[Libreoffice-bugs] [Bug 35939] ACCESSIBILITY: With LibreOffice Writer, the Windows7 Magnifier doesn't follow the insertion point

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35939

--- Comment #21 from Mike  ---
Created attachment 161479
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161479=edit
Magnifier follows text insertion point, but only in Win 7

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


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

2020-05-31 Thread Szabolcs Toth (via logerrit)
 sc/qa/unit/data/xlsx/testShapeRotationImport.xlsx |binary
 sc/qa/unit/subsequent_filters-test.cxx|   49 ++
 sc/source/filter/oox/drawingfragment.cxx  |   37 ++--
 3 files changed, 82 insertions(+), 4 deletions(-)

New commits:
commit d24e590cab4c948f19d4eaa00eaec81364c5b8ee
Author: Szabolcs Toth 
AuthorDate: Thu May 21 09:06:08 2020 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Sun May 31 22:34:55 2020 +0200

tdf#83593 XLSX DrawingML shape import: fix missing rotation

caused by broken import of xdr:twoCellAnchor.

Co-authored-by: Balázs Regényi

Change-Id: I3f382c3c9b2428e825a3e6d954c65356942f9158
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94611
Tested-by: László Németh 
Reviewed-by: László Németh 
(cherry picked from commit 130e6a3f4493b987a7d0b177cc84d65219b47d13)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95192
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/sc/qa/unit/data/xlsx/testShapeRotationImport.xlsx 
b/sc/qa/unit/data/xlsx/testShapeRotationImport.xlsx
new file mode 100644
index ..125a3ccaabd0
Binary files /dev/null and b/sc/qa/unit/data/xlsx/testShapeRotationImport.xlsx 
differ
diff --git a/sc/qa/unit/subsequent_filters-test.cxx 
b/sc/qa/unit/subsequent_filters-test.cxx
index e56ebd256eb1..3292058ed979 100644
--- a/sc/qa/unit/subsequent_filters-test.cxx
+++ b/sc/qa/unit/subsequent_filters-test.cxx
@@ -77,6 +77,7 @@
 
 #include "helper/qahelper.hxx"
 #include "helper/shared_test_impl.hxx"
+#include 
 
 namespace com::sun::star::frame { class XModel; }
 
@@ -257,6 +258,7 @@ public:
 void testAutoheight2Rows();
 void testXLSDefColWidth();
 void testPreviewMissingObjLink();
+void testShapeRotationImport();
 
 CPPUNIT_TEST_SUITE(ScFiltersTest);
 CPPUNIT_TEST(testBooleanFormatXLSX);
@@ -405,6 +407,7 @@ public:
 CPPUNIT_TEST(testAutoheight2Rows);
 CPPUNIT_TEST(testXLSDefColWidth);
 CPPUNIT_TEST(testPreviewMissingObjLink);
+CPPUNIT_TEST(testShapeRotationImport);
 
 CPPUNIT_TEST_SUITE_END();
 
@@ -4445,6 +4448,52 @@ void ScFiltersTest::testPreviewMissingObjLink()
 xDocSh->DoClose();
 }
 
+void ScFiltersTest::testShapeRotationImport()
+{
+// tdf#83593 Incorrectly calculated bounding rectangles caused shapes to 
appear as if there
+// were extra or missing rotations. Hence, we check the sizes of these 
rectangles.
+ScDocShellRef xDocSh = loadDoc("testShapeRotationImport.", FORMAT_XLSX);
+CPPUNIT_ASSERT_MESSAGE("Failed to load testShapeRotationImport.xlsx", 
xDocSh.is());
+uno::Reference< drawing::XDrawPagesSupplier > xDoc(xDocSh->GetModel(), 
uno::UNO_QUERY_THROW);
+uno::Reference< drawing::XDrawPage > 
xPage(xDoc->getDrawPages()->getByIndex(0), uno::UNO_QUERY_THROW);
+
+// The expected values are in the map below. Note that some of the angles 
are outside of the set which contains
+// the value of the wrong angles. This is to check the border cases and 
one value on both sides.
+std::map> aExpectedValues
+{
+{  4400, { { "x",  6832 }, { "y", 36893 }, { "width",  8898 }, { 
"height", 1163 } } },
+{  4500, { { "x",  4490 }, { "y", 36400 }, { "width",  8898 }, { 
"height", 1163 } } },
+{  4600, { { "x",  1673 }, { "y", 36270 }, { "width",  8862 }, { 
"height", 1144 } } },
+{ 13400, { { "x", 13762 }, { "y", 28403 }, { "width",  8863 }, { 
"height", 1194 } } },
+{ 13500, { { "x", 10817 }, { "y", 27951 }, { "width",  8863 }, { 
"height", 1170 } } },
+{ 13600, { { "x",  8449 }, { "y", 28336 }, { "width",  8897 }, { 
"height", 1164 } } },
+{ 22400, { { "x", 14948 }, { "y", 12978 }, { "width",  8898 }, { 
"height", 1164 } } },
+{ 22500, { { "x", 11765 }, { "y", 12834 }, { "width",  8898 }, { 
"height", 1164 } } },
+{ 22600, { { "x",  8253 }, { "y", 12919 }, { "width",  8863 }, { 
"height", 1171 } } },
+{ 31400, { { "x",  8099 }, { "y",  1160 }, { "width",  9815 }, { 
"height", 1171 } } },
+{ 31500, { { "x",  4427 }, { "y",  1274 }, { "width", 10238 }, { 
"height", 1171 } } },
+{ 31600, { { "x",  1964 }, { "y",  1878 }, { "width", 10307 }, { 
"height", 1164 } } },
+};
+
+for (sal_Int32 ind = 0; ind < 12; ++ind)
+{
+uno::Reference< drawing::XShape > xShape(xPage->getByIndex(ind), 
uno::UNO_QUERY_THROW);
+
+uno::Reference< beans::XPropertySet > xShapeProperties(xShape, 
uno::UNO_QUERY);
+uno::Any nRotProp = xShapeProperties->getPropertyValue("RotateAngle");
+sal_Int32 nRot = nRotProp.get();
+
+awt::Point aPosition = xShape->getPosition();
+awt::Size aSize = xShape->getSize();
+
+CPPUNIT_ASSERT(aExpectedValues.find(nRot) != aExpectedValues.end());
+CPPUNIT_ASSERT_EQUAL(aExpectedValues[nRot]["x"],  aPosition.X);
+CPPUNIT_ASSERT_EQUAL(aExpectedValues[nRot]["y"],  

[Libreoffice-bugs] [Bug 128960] Editing: Add a more direct way to clear character styles

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128960

--- Comment #28 from Adalbert Hanßen  ---
Created attachment 161478
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161478=edit
A sample file which can be used to experience strange things with different
combinations of formatting

This is a translation of the other file to English which I hopefully formatted
the same way.

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


[Libreoffice-bugs] [Bug 133530] Paste disabled in Calc with content on the clipboard

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133530

--- Comment #10 from Telesto  ---
Next update.. this is horrible bug ..

When copying A1 from example file multiple times with 7.1 -> paste disabled
often, even in 3.5.7.2. However copying multiple times from 4.4.7.2 and paste
3.5.7.2 appears to work fine

Paste showing disabled started somewhere in 6.2 as far I can tell (using
4.4.7.2 to copy)

Note 1: when I mean paste is disabled -> Right Click context menu shows
disabled.. the paste is working (CTRL+V).. Not sure if the 'right' content
would be pasted or some old history (as copy the same thing over and over)

Note 2:
1. Open example file in 7.1
2. Copy A1 5 times (CTRL+C)
3. Open Right Click paste menu in the other instance -> Working
4. Copy A1 5 times (CTRL+C)
5. Open Right Click paste menu in the other instance -> Working
6. Copy A1 5 times (CTRL+C)
7. Open Right Click paste menu in the other instance (not working). At least
for 6.2 origin/master & 4.4.7.2 as copy source)

It's possible that the problematic commit is affecting the clipboard as a whole
(copy & paste)

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


[Libreoffice-bugs] [Bug 128960] Editing: Add a more direct way to clear character styles

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128960

--- Comment #27 from Adalbert Hanßen  ---
Created attachment 161477
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161477=edit
A sample file which can be used to experience strange things with different
combinations of formatting

Now I had the time to make an English version of my sample of mixing direct
fomatting with using character styles. The behavior will surprise novice users
of LibreOffice and sometimes it gives hard to explain quirks.

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


[Libreoffice-bugs] [Bug 133547] LibODev 7.0 Beta 1 regression in PDF insert wrt image break

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133547

--- Comment #2 from Tomaz Vajngerl  ---
Should be fixed with https://gerrit.libreoffice.org/c/core/+/95227

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


[Libreoffice-bugs] [Bug 132963] Navigator's Row and Column controls don't redraw after Navigator's right border moving

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132963

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

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 132963] Navigator's Row and Column controls don't redraw after Navigator's right border moving

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132963

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

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|NEW |RESOLVED

--- Comment #12 from Roman Kuznetsov <79045_79...@mail.ru> ---
(In reply to Caolán McNamara from comment #11)
> I bet this is the same problem as bug #133498

possibly, now in

Version: 7.1.0.0.alpha0+
Build ID: 2047a5978ac8188e61da9cd3b2f40d86df5570bb
CPU threads: 4; OS: Mac OS X 10.15.4; UI render: default; VCL: osx
Locale: ru-RU (ru_RU.UTF-8); UI: en-US
Calc: threaded

from 31 May 2020 I see native macOS controls and it works fine

SO let's close it as resolved

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


[Libreoffice-bugs] [Bug 103030] [META] Navigator sidebar deck and floating window

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103030
Bug 103030 depends on bug 132963, which changed state.

Bug 132963 Summary: Navigator's Row and Column controls don't redraw after 
Navigator's right border moving
https://bugs.documentfoundation.org/show_bug.cgi?id=132963

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

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


[Libreoffice-commits] core.git: framework/inc framework/source svx/source

2020-05-31 Thread Jan-Marek Glogowski (via logerrit)
 framework/inc/services/desktop.hxx|   12 ---
 framework/source/services/desktop.cxx |   23 ---
 svx/source/form/fmscriptingenv.cxx|  106 --
 3 files changed, 141 deletions(-)

New commits:
commit a97e344ba06b92e5f1fc96062a5ad03fb732615e
Author: Jan-Marek Glogowski 
AuthorDate: Mon Feb 17 00:12:12 2020 +0100
Commit: Jan-Marek Glogowski 
CommitDate: Sun May 31 22:21:35 2020 +0200

Revert "tdf#88985 block app from exiting during macro execution"

This isn't needed anymore with the fixes for tdf#127205.

Reverts commit 68cf256f506d4601a2d2cf3ec2d56713afd491e6.

Change-Id: I1a7944632af8330f68d451d2c293143233039b34
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88837
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski 

diff --git a/framework/inc/services/desktop.hxx 
b/framework/inc/services/desktop.hxx
index 1f0f7911e98f..0cf9cb355fe4 100644
--- a/framework/inc/services/desktop.hxx
+++ b/framework/inc/services/desktop.hxx
@@ -418,18 +418,6 @@ class Desktop final : private cppu::BaseMutex,
   */
 css::uno::Reference< css::frame::XTerminateListener > m_xQuickLauncher;
 
-/** special terminate listener active when a macro is executing.
-  * Because basic runs Application::Yield internally the application 
may quit
-  * while running inside the internal basic event loop. So all the 
basic
-  * infrastructure may be deleted while the call is executing, leading 
to
-  * a variant of crashes. So this special terminate listener will
-  * veto the current quit attempt, stop basic execution, which will
-  * cause the inner event loop to quit, and on return to the outer 
normal
-  * application event loop then resend the quit attempt.
-  * So these implementation must be a special terminate listener too 
.-(
-  */
-css::uno::Reference< css::frame::XTerminateListener > 
m_xStarBasicQuitGuard;
-
 /** special terminate listener which loads images asynchronous for 
current open documents.
   * Because internally it uses blocking system APIs... it can't be 
guaranteed that
   * running jobs can be cancelled successfully if the corresponding 
document will be closed...
diff --git a/framework/source/services/desktop.cxx 
b/framework/source/services/desktop.cxx
index 260ddcb5dd43..28f5015203e3 100644
--- a/framework/source/services/desktop.cxx
+++ b/framework/source/services/desktop.cxx
@@ -161,7 +161,6 @@ Desktop::Desktop( const css::uno::Reference< 
css::uno::XComponentContext >& xCon
 ,   m_xDispatchRecorderSupplier(   
 )
 ,   m_xPipeTerminator   (  
 )
 ,   m_xQuickLauncher(  
 )
-,   m_xStarBasicQuitGuard   (  
 )
 ,   m_xSWThreadManager  (  
 )
 ,   m_xSfxTerminator(  
 )
 ,   m_xTitleNumberGenerator (  
 )
@@ -206,7 +205,6 @@ sal_Bool SAL_CALL Desktop::terminate()
 
 css::uno::Reference< css::frame::XTerminateListener > xPipeTerminator= 
m_xPipeTerminator;
 css::uno::Reference< css::frame::XTerminateListener > xQuickLauncher = 
m_xQuickLauncher;
-css::uno::Reference< css::frame::XTerminateListener > xStarBasicQuitGuard 
= m_xStarBasicQuitGuard;
 css::uno::Reference< css::frame::XTerminateListener > xSWThreadManager   = 
m_xSWThreadManager;
 css::uno::Reference< css::frame::XTerminateListener > xSfxTerminator = 
m_xSfxTerminator;
 
@@ -257,12 +255,6 @@ sal_Bool SAL_CALL Desktop::terminate()
 lCalledTerminationListener.push_back( xQuickLauncher );
 }
 
-if ( xStarBasicQuitGuard.is() )
-{
-xStarBasicQuitGuard->queryTermination( aEvent );
-lCalledTerminationListener.push_back( xStarBasicQuitGuard );
-}
-
 if ( xSWThreadManager.is() )
 {
 xSWThreadManager->queryTermination( aEvent );
@@ -308,9 +300,6 @@ sal_Bool SAL_CALL Desktop::terminate()
 if( bAskQuickStart && xQuickLauncher.is() )
 xQuickLauncher->notifyTermination( aEvent );
 
-if ( xStarBasicQuitGuard.is() )
-xStarBasicQuitGuard->notifyTermination( aEvent );
-
 if ( xSWThreadManager.is() )
 xSWThreadManager->notifyTermination( aEvent );
 
@@ -416,11 +405,6 @@ void SAL_CALL Desktop::addTerminateListener( const 
css::uno::Reference< css::fra
 m_xQuickLauncher = xListener;
 return;
 }
-if( sImplementationName == "com.sun.star.comp.svx.StarBasicQuitGuard" )
-{
-m_xStarBasicQuitGuard = xListener;
-return;
-}
   

[Libreoffice-bugs] [Bug 133567] New: LibreOffice Impress does not allow setting multiple animations at once

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133567

Bug ID: 133567
   Summary: LibreOffice Impress does not allow setting multiple
animations at once
   Product: LibreOffice
   Version: 6.4.3.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ytxmob...@outlook.com

Description:
LibreOffice Impress does not allow setting multiple animations at once. This
does not allow me to change the animation effects of multiple objects at once.
I have set it one by one, which is very time consuming and frustrating.

Steps to Reproduce:
1. Open a new presentation and add some random text.
2. Choose 2 or more objects and add animation to them.
3. Change the animation of these objects.

Actual Results:
The Effect, Direction, Duration, Delay entries are all grayed out and disabled.

Expected Results:
1. If the selected items have the same effect, direction, duration, or delay,
the corresponding value should be displayed accordingly. If they have different
values, the displayed value shall be undecided and allow editing.
2. When I change any one of these entries, the change shall propagate to the
selected objects at once, the same as in Microsoft PowerPoint.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.4.3.2
Build ID: 1:6.4.3-0ubuntu0.20.04.1
CPU threads: 4; OS: Linux 5.4; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 133567] LibreOffice Impress does not allow setting multiple animations at once

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133567

--- Comment #1 from Tianxing Yang  ---
Created attachment 161476
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161476=edit
Test case. Slide 2 is a screenshot of the problem.

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


[Libreoffice-bugs] [Bug 133548] Custom format for heading not shown in Navigator

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133548

BogdanB  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||buzea.bog...@libreoffice.or
   ||g
 Status|UNCONFIRMED |NEW

--- Comment #1 from BogdanB  ---
Confirm it.

After creating a style from "heading 1" style, the new style at Outline and
Numbering has the outline level is "text body", inspite of "Level 1" like in
"Heading 1".


Confirm on
Version: 6.4.3.2
Build ID: libreoffice-6.4.3.2-snap1
CPU threads: 4; OS: Linux 5.4; UI render: default; VCL: gtk3; 
Locale: ro-RO (ro_RO.UTF-8); UI-Language: en-US
Calc: threaded

Version: 7.0.0.0.beta1+
Build ID: 2891e91a513520d68ea2b8c59c14335861a15253
CPU threads: 4; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 128960] Editing: Add a more direct way to clear character styles

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128960

--- Comment #26 from Adalbert Hanßen  ---
Created attachment 161475
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161475=edit
the file which I wanted to attach to comment 23: some formatting oddities not
easy to explain

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


[Libreoffice-bugs] [Bug 128960] Editing: Add a more direct way to clear character styles

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128960

--- Comment #25 from Adalbert Hanßen  ---
(In reply to V Stuart Foote from Comment 24)

This is the attachment which I was talking about in Comment 23. Sorry that it
did not get through.

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


[Libreoffice-bugs] [Bug 133530] Paste disabled in Calc with content on the clipboard

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133530

--- Comment #9 from Telesto  ---
Hmmm this starts to look awfully like bug 133533

1. Open example file in 7.1
2. Copy A1 5 times (CTRL+C)
3. Open Right Click paste menu in the other instance -> Working
4. Copy A1 5 itmes (CTRL+C)
5. Open Right Click paste menu in the other instance -> Failing

Sometimes this is enough. sometimes you have to do it a little longer.. Pasting
other apps is working..

Also seen in 4.4.7.2

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


[Libreoffice-commits] core.git: Branch 'feature/drawinglayercore' - sd/source

2020-05-31 Thread Tomaž Vajngerl (via logerrit)
 sd/source/ui/view/Outliner.cxx |   16 +++-
 1 file changed, 11 insertions(+), 5 deletions(-)

New commits:
commit ade73e5aec10bd990e3f424f54f2b5bfa263694d
Author: Tomaž Vajngerl 
AuthorDate: Sun May 31 21:59:34 2020 +0200
Commit: Tomaž Vajngerl 
CommitDate: Sun May 31 21:59:34 2020 +0200

sd: allow to change the search string between searches

Before this was missing, so even with a different search string,
it still searched using the old string, which was a bug.

Change-Id: I1655cb421e216e30ae593aabd3ead3a2d5c06299

diff --git a/sd/source/ui/view/Outliner.cxx b/sd/source/ui/view/Outliner.cxx
index 4b0bc3fe3f0a..ccdce622a35a 100644
--- a/sd/source/ui/view/Outliner.cxx
+++ b/sd/source/ui/view/Outliner.cxx
@@ -838,13 +838,19 @@ bool 
SdOutliner::SearchAndReplaceOnce(std::vector* pSelecti
 
 if (mpImpl->mbCurrentIsVectorGraphic)
 {
+OUString const & rString = mpSearchItem->GetSearchString();
 bool bBackwards = mpSearchItem->GetBackward();
 
-bool bResult = false;
-if (bBackwards)
-bResult = mpImpl->mpVectorGraphicSearch->previous();
-else
-bResult = mpImpl->mpVectorGraphicSearch->next();
+SearchStartPosition eSearchStartPosition = bBackwards ? 
SearchStartPosition::End : SearchStartPosition::Begin;
+bool bResult = mpImpl->mpVectorGraphicSearch->search(rString, 
eSearchStartPosition);
+
+if (bResult)
+{
+if (bBackwards)
+bResult = mpImpl->mpVectorGraphicSearch->previous();
+else
+bResult = mpImpl->mpVectorGraphicSearch->next();
+}
 
 if (bResult)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'feature/drawinglayercore' - include/vcl vcl/qa vcl/source

2020-05-31 Thread Tomaž Vajngerl (via logerrit)
Rebased ref, commits from common ancestor:
commit f5f846460272653a9ea3d3b16300cb65c58d21d1
Author: Tomaž Vajngerl 
AuthorDate: Sun May 31 14:03:36 2020 +0200
Commit: Tomaž Vajngerl 
CommitDate: Sun May 31 21:58:31 2020 +0200

vcl: VectorGraphicSearch - support changing search string

Initial implementation only allowed to set the search string once.
This change allows to change the search string and still retain
the last position of a found string, so the search continues
from this positon forward or backwards. This mimicks how we search
through the GUI (which is the main use for this functionallity
anyway).

Change-Id: I8a7aee4b6b6525f483f105feaa1f83c4a0ad9594

diff --git a/include/vcl/VectorGraphicSearch.hxx 
b/include/vcl/VectorGraphicSearch.hxx
index 2dc8cca3b76a..c9faaa51f1c9 100644
--- a/include/vcl/VectorGraphicSearch.hxx
+++ b/include/vcl/VectorGraphicSearch.hxx
@@ -32,8 +32,7 @@ private:
 std::unique_ptr mpImplementation;
 Graphic maGraphic;
 
-bool searchPDF(std::shared_ptr const& rData, OUString 
const& rSearchString,
-   SearchStartPosition eStartPosition);
+bool searchPDF(std::shared_ptr const& rData);
 
 public:
 VectorGraphicSearch(Graphic const& rGraphic);
diff --git a/vcl/qa/cppunit/VectorGraphicSearchTest.cxx 
b/vcl/qa/cppunit/VectorGraphicSearchTest.cxx
index 5f65b4ba7e3d..8dbdcac0e2e1 100644
--- a/vcl/qa/cppunit/VectorGraphicSearchTest.cxx
+++ b/vcl/qa/cppunit/VectorGraphicSearchTest.cxx
@@ -27,10 +27,12 @@ class VectorGraphicSearchTest : public 
test::BootstrapFixtureBase
 
 void test();
 void testNextPrevious();
+void testSearchStringChange();
 
 CPPUNIT_TEST_SUITE(VectorGraphicSearchTest);
 CPPUNIT_TEST(test);
 CPPUNIT_TEST(testNextPrevious);
+CPPUNIT_TEST(testSearchStringChange);
 CPPUNIT_TEST_SUITE_END();
 };
 
@@ -160,6 +162,37 @@ void VectorGraphicSearchTest::testNextPrevious()
 }
 }
 
+void VectorGraphicSearchTest::testSearchStringChange()
+{
+OUString aURL = getFullUrl("Pangram.pdf");
+SvFileStream aStream(aURL, StreamMode::READ);
+GraphicFilter& rGraphicFilter = GraphicFilter::GetGraphicFilter();
+Graphic aGraphic = rGraphicFilter.ImportUnloadedGraphic(aStream);
+aGraphic.makeAvailable();
+
+VectorGraphicSearch aSearch(aGraphic);
+
+// Set search to "lazy"
+CPPUNIT_ASSERT_EQUAL(true, aSearch.search("lazy"));
+
+CPPUNIT_ASSERT_EQUAL(true, aSearch.next());
+CPPUNIT_ASSERT_EQUAL(34, aSearch.index());
+
+CPPUNIT_ASSERT_EQUAL(true, aSearch.next());
+CPPUNIT_ASSERT_EQUAL(817, aSearch.index());
+
+// Change search to "fox"
+CPPUNIT_ASSERT_EQUAL(true, aSearch.search("fox"));
+
+CPPUNIT_ASSERT_EQUAL(true, aSearch.next());
+CPPUNIT_ASSERT_EQUAL(822, aSearch.index());
+
+// Change search to "Quick"
+CPPUNIT_ASSERT_EQUAL(true, aSearch.search("Quick"));
+CPPUNIT_ASSERT_EQUAL(true, aSearch.previous());
+CPPUNIT_ASSERT_EQUAL(784, aSearch.index());
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(VectorGraphicSearchTest);
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/source/graphic/VectorGraphicSearch.cxx 
b/vcl/source/graphic/VectorGraphicSearch.cxx
index db17df2539ec..07e4b19afc08 100644
--- a/vcl/source/graphic/VectorGraphicSearch.cxx
+++ b/vcl/source/graphic/VectorGraphicSearch.cxx
@@ -56,18 +56,18 @@ private:
 
 public:
 sal_Int32 mnPageIndex;
+int mnCurrentIndex;
 OUString maSearchString;
 SearchStartPosition meStartPosition;
 
-SearchContext(FPDF_DOCUMENT pPdfDocument, sal_Int32 nPageIndex, OUString 
const& rSearchString,
-  SearchStartPosition eStartPosition)
+SearchContext(FPDF_DOCUMENT pPdfDocument, sal_Int32 nPageIndex)
 : mpPdfDocument(pPdfDocument)
 , mpPage(nullptr)
 , mpTextPage(nullptr)
 , mpSearchHandle(nullptr)
 , mnPageIndex(nPageIndex)
-, maSearchString(rSearchString)
-, meStartPosition(eStartPosition)
+, mnCurrentIndex(-1)
+, meStartPosition(SearchStartPosition::Begin)
 {
 }
 
@@ -96,13 +96,30 @@ public:
 return aSize;
 }
 
-bool initialize()
+bool initialize(OUString const& rSearchString, SearchStartPosition 
eStartPosition)
 {
 if (!mpPdfDocument)
 return false;
+
+if (rSearchString == maSearchString)
+return true;
+
+if (mpSearchHandle)
+FPDFText_FindClose(mpSearchHandle);
+
+if (mpTextPage)
+FPDFText_ClosePage(mpTextPage);
+
+if (mpPage)
+FPDF_ClosePage(mpPage);
+
+maSearchString = rSearchString;
+meStartPosition = eStartPosition;
+
 mpPage = FPDF_LoadPage(mpPdfDocument, mnPageIndex);
 if (!mpPage)
 return false;
+
 mpTextPage = FPDFText_LoadPage(mpPage);
 if (!mpTextPage)
 return false;
@@ -112,6 +129,9 @@ public:
 // Index where to 

[Libreoffice-commits] core.git: Branch 'feature/drawinglayercore' - 0 commits -

2020-05-31 Thread Tomaž Vajngerl (via logerrit)
Rebased ref, commits from common ancestor:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 133566] New: broken kerning with ubuntu 20.04

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133566

Bug ID: 133566
   Summary: broken kerning with ubuntu 20.04
   Product: LibreOffice
   Version: 6.4.3.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: had...@danisch.de

Created attachment 161474
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161474=edit
Example of one slide with vertical and one with horizontal displacement

Hi,

I have some impress presentations, that were working well with libreoffice
under Ubuntu 18.04 (with ubuntu package, with AppImage and with snap). 

After upgrading to Ubuntu 20.04 some (but not all) slides (see example file
attached) became unreadable because horizontal or vertical kerning /
positioning is broken and characters get printed too close and over it's left
or upper neighbor. 

The bug exists with
- original ubuntu packages (6.4.3)
- original libreoffice 6.4.1 AppImage (same appimage working well on 18.04, but
not on 20.04)


But it does not occur on the snap version 6.4.3.2. That is working well, but
has not access to all fonts installed on the system (maybe that's what on the
other hand prevents the problem). 


Although I do consider this rather as an Ubuntu problem, I think you should
know about it.

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


[Libreoffice-bugs] [Bug 130909] Tabbed interface: Add subscript in Calc Home Tab

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130909

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g

--- Comment #6 from BogdanB  ---
Created attachment 161473
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161473=edit
not resolved

Version: 7.0.0.0.beta1+
Build ID: 2891e91a513520d68ea2b8c59c14335861a15253
CPU threads: 4; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

This bug is not solved.

There is not superscript or subscript either.

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


[Libreoffice-ux-advise] [Bug 130909] Tabbed interface: Add subscript in Calc Home Tab

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130909

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g

--- Comment #6 from BogdanB  ---
Created attachment 161473
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161473=edit
not resolved

Version: 7.0.0.0.beta1+
Build ID: 2891e91a513520d68ea2b8c59c14335861a15253
CPU threads: 4; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

This bug is not solved.

There is not superscript or subscript either.

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


[Libreoffice-bugs] [Bug 130065] PDF export: need option to export without embedded font

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130065

Axel Schwank  changed:

   What|Removed |Added

 CC||a...@hiq2.com

--- Comment #12 from Axel Schwank  ---
I would like to have this option, too. Embedded fonts can make up a significant
portion of the file size of a PDF document. Moreover, fonts are embedded even
if they belong to the PDF standard fonts like Helvetica or Times New Roman.

The font embedding option from the document properties dialogue is not honoured
for PDF export.

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


[Libreoffice-bugs] [Bug 122652] [META] Memory problems in LibreOffice

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122652

Telesto  changed:

   What|Removed |Added

 Depends on||133565


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=133565
[Bug 133565] Memory of chart creating note freed after document close
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 133565] Memory of chart creating note freed after document close

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133565

Telesto  changed:

   What|Removed |Added

 Blocks||122652


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122652
[Bug 122652] [META] Memory problems in LibreOffice
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 133540] Add Resolve Comment Function to Other Modules Than Writer

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133540

Timur  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
   Severity|normal  |enhancement

--- Comment #1 from Timur  ---
I'll confirm as enhancement.

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


[Libreoffice-bugs] [Bug 133565] Memory of chart creating note freed after document close

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133565

--- Comment #1 from Telesto  ---
Created attachment 161472
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161472=edit
Example file

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


[Libreoffice-bugs] [Bug 133565] Memory of chart creating note freed after document close

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133565

--- Comment #2 from Telesto  ---
Also in 3.5.7.2 so I assume inherited

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


[Libreoffice-bugs] [Bug 133565] New: Memory of chart creating note freed after document close

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133565

Bug ID: 133565
   Summary: Memory of chart creating note freed after document
close
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Memory of chart creating note freed after document close

Steps to Reproduce:
1. Open the attached file
2. Select column D-E & Press Chart button, press finish
3. Select column F & G Press Chart button, press finish
4. Close the document -> Memory usage 

Actual Results:
Memory usage after close 355 MB with 7.1

Expected Results:
Somewhere around 150-175 MB


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.1.0.0.alpha0+ (x64)
Build ID: 83c4f86f22dc37269ac6a038fe7de053c42aad6e
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: en-US (nl_NL); UI: en-US
Calc: CL

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


[Libreoffice-bugs] [Bug 133561] No freehand drawing buttons in Draw 6.4.2.2

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133561

--- Comment #3 from V Stuart Foote  ---
Created attachment 161471
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161471=edit
Tools and Polygon mode selector -- icon is default 'Freeform Line'

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


[Libreoffice-bugs] [Bug 133561] No freehand drawing buttons in Draw 6.4.2.2

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133561

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
 Resolution|--- |INVALID
 Status|UNCONFIRMED |RESOLVED

--- Comment #2 from V Stuart Foote  ---
You were close ;-)  Draw tool mode is 'Freeform Line' from the 'Tools and
Polygon' selector.

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


[Libreoffice-bugs] [Bug 133560] bug in creation of new docx document

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133560

Telesto  changed:

   What|Removed |Added

Version|6.4.4.2 release |4.4.7.2 release

--- Comment #2 from Telesto  ---
Also in
Versie: 4.4.7.2 
Build ID: f3153a8b245191196a4b6b9abd1d0da16eead600
Locale: nl_NL

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


[Libreoffice-bugs] [Bug 133560] bug in creation of new docx document

2020-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133560

Telesto  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from Telesto  ---
Confirm for an empty document with font change
Version: 7.1.0.0.alpha0+ (x64)
Build ID: 83c4f86f22dc37269ac6a038fe7de053c42aad6e
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: en-US (nl_NL); UI: en-US
Calc: CL

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


  1   2   3   4   >