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

2019-05-28 Thread Noel Grandin (via logerrit)
 sw/source/core/doc/docbm.cxx |   13 -
 1 file changed, 8 insertions(+), 5 deletions(-)

New commits:
commit a65918c5b6aaff0206c461e46b798efb95dc42c6
Author: Noel Grandin 
AuthorDate: Tue May 28 22:10:38 2019 +0200
Commit: Noel Grandin 
CommitDate: Wed May 29 07:51:38 2019 +0200

tdf#125372 writer, file with lots of hints very slow to open, part4

Takes load time from 4m to 3m

Use equal_range to give us a start and an end, so we avoid the operator<
cost while scanning

Change-Id: Ie57d460237cddaacecdc6032136f614e02d13760
Reviewed-on: https://gerrit.libreoffice.org/73124
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/sw/source/core/doc/docbm.cxx b/sw/source/core/doc/docbm.cxx
index 8f0dc5b90749..283585c7aa2c 100644
--- a/sw/source/core/doc/docbm.cxx
+++ b/sw/source/core/doc/docbm.cxx
@@ -161,6 +161,11 @@ namespace
 
 struct CompareIMarkStartsBefore
 {
+bool operator()(SwPosition const& rPos,
+std::shared_ptr const& pMark)
+{
+return rPos < pMark->GetMarkStart();
+}
 bool operator()(std::shared_ptr const& pMark,
 SwPosition const& rPos)
 {
@@ -1039,15 +1044,13 @@ namespace sw { namespace mark
 " - Mark is not in my doc.");
 // finds the last Mark that is starting before pMark
 // (pMarkLow < pMark)
-auto it = lower_bound(
+auto [it, endIt] = equal_range(
 m_vAllMarks.begin(),
 m_vAllMarks.end(),
 pMark->GetMarkStart(),
 CompareIMarkStartsBefore());
-for ( ; it != m_vAllMarks.end(); ++it)
-if (pMark->GetMarkStart() < (*it)->GetMarkStart())
-break;
-else if (it->get() == pMark)
+for ( ; it != endIt; ++it)
+if (it->get() == pMark)
 {
 deleteMark(it);
 break;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 125372] FILEOPEN: LibreOffice freeze opening document

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125372

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

https://git.libreoffice.org/core/+/a65918c5b6aaff0206c461e46b798efb95dc42c6%5E%21

tdf#125372 writer, file with lots of hints very slow to open, part4

It will be available in 6.3.0.

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

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

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

[Libreoffice-bugs] [Bug 125568] Select text over multiple lines is not visiblty recognizable

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125568

--- Comment #1 from Nicolas Christener  ---
Created attachment 151752
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151752=edit
Printscreen showing the issues

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

[Libreoffice-bugs] [Bug 125568] New: Select text over multiple lines is not visiblty recognizable

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125568

Bug ID: 125568
   Summary: Select text over multiple lines is not visiblty
recognizable
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: iOS
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: iOS
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cont...@0x17.ch

Description:
Selecting text that spawns over multiple lines (e.g. in a bullet list) is
possible with the iOS app, however the text selection is not visibly
recognizable. Usually the user sees a "blue marked" selection. This is not the
case in a presentation in the iOS app.

Steps to Reproduce:
1. Create/open a presentation with the iOS app
2. Create a slide with a bullet list with e.g. four entries
3. Select text that spawns over 2~3 entries of that list

Actual Results:
The selection should visibly recognizable.

Expected Results:
The selection is not visibly recognizable.


Reproducible: Always


User Profile Reset: No



Additional Info:

-- 
You are receiving this mail because:
You 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 125567] New: Missing dialog: Spellcheck...

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125567

Bug ID: 125567
   Summary: Missing dialog: Spellcheck...
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: iOS
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: iOS
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cont...@0x17.ch

Description:
The iOS app has a dialog to check the spelling of text. However this dialog is
not available in the calc and impress part of the app.

In the writer part it can be found using:
Extras > Spelling... (Extras > Rechtschreibung... in German)

Steps to Reproduce:
1. Create/open a presentation or calc file in the iOS app
2. Add some text
3. Try to check the spelling using the "spelling" dialog

Actual Results:
There is no menu entry to open the spelling dialog.

Expected Results:
The spelling dialog should be accessible through the same menu entry as in the
writer part.


Reproducible: Always


User Profile Reset: No



Additional Info:

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

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

2019-05-28 Thread andreas kainz (via logerrit)
 sc/uiconfig/scalc/ui/notebookbar.ui| 1632 +++--
 sd/uiconfig/sdraw/ui/notebookbar.ui| 1000 +++-
 sd/uiconfig/simpress/ui/notebookbar.ui | 1155 ---
 sw/uiconfig/swriter/ui/notebookbar.ui  |   85 -
 4 files changed, 2385 insertions(+), 1487 deletions(-)

New commits:
commit 51fd99367b517b9a7630f5c089d5fa22a7252472
Author: andreas kainz 
AuthorDate: Wed May 29 01:01:19 2019 +0200
Commit: andreas_kainz 
CommitDate: Wed May 29 07:13:34 2019 +0200

NB tabbed layout update in all apps

Change-Id: Ic291a6f9907e2449093469ae8a899093dc296e26
Reviewed-on: https://gerrit.libreoffice.org/73127
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/sc/uiconfig/scalc/ui/notebookbar.ui 
b/sc/uiconfig/scalc/ui/notebookbar.ui
index 9ddbd5e79f33..9dde161a3c72 100644
--- a/sc/uiconfig/scalc/ui/notebookbar.ui
+++ b/sc/uiconfig/scalc/ui/notebookbar.ui
@@ -1981,7 +1981,7 @@
   
 
   
-  
+  
 True
 False
 cmd/sc_recentfilelist.png
@@ -2166,9 +2166,8 @@
 
   
 True
-True
+False
 center
-5
 True
 both
 False
@@ -2191,20 +2190,33 @@
 0
   
 
+  
+  
+False
+True
+0
+  
+
+
+  
+True
+False
+center
+True
 
-  
+  
 True
 False
 center
 vertical
 
-  
+  
 True
-True
+False
 both-horiz
 False
 
-  
+  
 True
 False
 .uno:NewDoc
@@ -2223,13 +2235,13 @@
   
 
 
-  
+  
 True
-True
+False
 both-horiz
 False
 
-  
+  
 True
 False
 .uno:SaveAsTemplate
@@ -2254,8 +2266,24 @@
 1
   
 
+
+  
+
+  
+  
+False
+True
+1
+  
+
+
+  
+True
+False
+center
+True
 
-  
+  
 True
 False
 5
@@ -2266,26 +2294,13 @@
 False
 True
 5
-2
+0
   
 
-  
-  
-False
-True
-0
-  
-
-
-  
-True
-False
-center
-True
 
   
 True
-True
+False
 center
 True
 both
@@ -2307,23 +2322,36 @@
   
 False
 True
-0
+   

[Libreoffice-bugs] [Bug 125566] New: Not possible to move element down/up in the layer stack

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125566

Bug ID: 125566
   Summary: Not possible to move element down/up in the layer
stack
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: iOS
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: iOS
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cont...@0x17.ch

Description:
It's not possible to move up/down an element in the layer stack using the iOS
app.

Steps to Reproduce:
1. Open/create a presentation with the iOS app
2. Add two elements, e.g. two rectangles - a red and a green one
3. Make the green rectangle overlap the red one and vice versa

Actual Results:
There is no option to move up/down an element in the layer stack.

Expected Results:
There should be an option to move up/down an element in the layer stack.


Reproducible: Always


User Profile Reset: No



Additional Info:

-- 
You are receiving this mail because:
You 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 88006] Libreoffice calc uses all memory until operating system freezes, when using external references to websites

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88006

--- Comment #32 from KSN  ---
I have about 45 user files that are consolidated into a single workbook, using
Links to External Files.  Data for one range (about 3000 lines) is pulled in
from the user files into separate sheets.

It is not possible to update all the links at the same time or even "update
links" when opening the file.

Once 4-5 links are updated, the memory usage goes up by around 2-3 GB.  This
memory is not released after the update is completed.  Thus it is not possible
to complete the full update process.  Saving the file also does not release
memory.

OS: Linux Mint 19.1
Libreoffice Version: 6.0.7.3
Build ID: 1:6.0.7-0ubuntu0.18.04.5
CPU threads: 2; OS: Linux 4.15; UI render: default; VCL: gtk3; 

I had to revise my consolidation file due to the non-resolution of this bug: 

[Bug 117563] LibreOffice Calc: Links to External Files - Linked Ranges are
saved incorrectly - Update Links overwrites data and removes links

Would appreciate any help that I can get.

Thanks
KSN

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

2019-05-28 Thread Andrea Gelmini (via logerrit)
 extensions/source/propctrlr/composeduiupdate.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2bcab893b28c7e028d0bf2435ea51bebb907c023
Author: Andrea Gelmini 
AuthorDate: Tue May 28 16:20:46 2019 +
Commit: Julien Nabet 
CommitDate: Wed May 29 07:06:43 2019 +0200

Fix typo

Change-Id: Ib79782671d890100318a92bb4718e190d735e579
Reviewed-on: https://gerrit.libreoffice.org/73128
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/extensions/source/propctrlr/composeduiupdate.hxx 
b/extensions/source/propctrlr/composeduiupdate.hxx
index 3cd0ee6a54f5..7e3f9f128be6 100644
--- a/extensions/source/propctrlr/composeduiupdate.hxx
+++ b/extensions/source/propctrlr/composeduiupdate.hxx
@@ -112,7 +112,7 @@ namespace pcr
 firing is suspended, only explicit ->fire calls trigger the 
notification to the
 delegator UI.
 
-Note that calls to ->suspendAutoFire are culmulative, that is, if 
you make multiple calls
+Note that calls to ->suspendAutoFire are cumulative, that is, if 
you make multiple calls
 they must be accompanied by an equal number of calls to 
->resumeAutoFire, to enable
 auto-firing again.
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-05-28 Thread Andrea Gelmini (via logerrit)
 xmlsecurity/source/helper/xsecctl.cxx |3 ---
 1 file changed, 3 deletions(-)

New commits:
commit 7ad929699d8dcdfbb0760fada6d4112ff525d9aa
Author: Andrea Gelmini 
AuthorDate: Tue May 28 10:34:26 2019 +
Commit: Julien Nabet 
CommitDate: Wed May 29 07:07:11 2019 +0200

Removed duplicated include

In any case is included a few lines after, so I guess it
can be removed the check (if it's not ready also for future
other includes).

Change-Id: Id603022092a60b71a5b35ec57930146d23c6544a
Reviewed-on: https://gerrit.libreoffice.org/73093
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/xmlsecurity/source/helper/xsecctl.cxx 
b/xmlsecurity/source/helper/xsecctl.cxx
index 7acb1b1974c1..d5f3da1c26f8 100644
--- a/xmlsecurity/source/helper/xsecctl.cxx
+++ b/xmlsecurity/source/helper/xsecctl.cxx
@@ -29,9 +29,6 @@
 
 #include 
 #include 
-#ifdef ANDROID
-#include 
-#endif
 #include 
 #include 
 #include 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-05-28 Thread Andrea Gelmini (via logerrit)
 filter/source/graphicfilter/idxf/dxftblrd.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0deebd87bed73b604d05f06ba383b0261ba04cb6
Author: Andrea Gelmini 
AuthorDate: Tue May 14 21:24:11 2019 +
Commit: Julien Nabet 
CommitDate: Wed May 29 07:05:50 2019 +0200

Fix typo

Change-Id: Ib504a5243edd5df96a0f4ff8f7f846e83d384a7b
Reviewed-on: https://gerrit.libreoffice.org/73130
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/filter/source/graphicfilter/idxf/dxftblrd.hxx 
b/filter/source/graphicfilter/idxf/dxftblrd.hxx
index a2dfb1a6c0f0..fa9eb2ae6bba 100644
--- a/filter/source/graphicfilter/idxf/dxftblrd.hxx
+++ b/filter/source/graphicfilter/idxf/dxftblrd.hxx
@@ -153,7 +153,7 @@ public:
 ~DXFTables();
 
 void Read(DXFGroupReader & rDGR);
-// Reads the table until a ENDSEC or EOF
+// Reads the table until an ENDSEC or EOF
 // (Unknown things/tables will be skipped)
 
 void Clear();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-05-28 Thread Andrea Gelmini (via logerrit)
 filter/source/graphicfilter/ios2met/ios2met.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit c8a0b678fa4bb4972c3d91db68177524ce69317b
Author: Andrea Gelmini 
AuthorDate: Tue May 14 21:24:07 2019 +
Commit: Julien Nabet 
CommitDate: Wed May 29 07:05:27 2019 +0200

Fix typo

Change-Id: Ic94aaada392b197e3fa955ec5b51ca8106347a38
Reviewed-on: https://gerrit.libreoffice.org/73133
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/filter/source/graphicfilter/ios2met/ios2met.cxx 
b/filter/source/graphicfilter/ios2met/ios2met.cxx
index 0ba1d5c19aaa..56ca5ac3c241 100644
--- a/filter/source/graphicfilter/ios2met/ios2met.cxx
+++ b/filter/source/graphicfilter/ios2met/ios2met.cxx
@@ -413,7 +413,7 @@ public:
 ~OS2METReader();
 
 void ReadOS2MET( SvStream & rStreamOS2MET, GDIMetaFile & rGDIMetaFile );
-// Reads from the stream a OS2MET file and fills up the GDIMetaFile
+// Reads from the stream an OS2MET file and fills up the GDIMetaFile
 
 };
 
@@ -1396,7 +1396,7 @@ void OS2METReader::ReadMarker(bool bGivenPos, sal_uInt16 
nOrderLen)
 pVirDev->DrawPolygon(aPoly);
 break;
 }
-case  4:   // SQARE
+case  4:   // SQUARE
 case  8: { // SOLIDSUARE
 tools::Polygon aPoly(4);
 aPoly.SetPoint(Point(x+4,y+4),0);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 125565] New: Not possible to move table

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125565

Bug ID: 125565
   Summary: Not possible to move table
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: iOS
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: iOS
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cont...@0x17.ch

Description:
While it's possible to add a table into a slide with the iOS app, it is not
possible to move the table at all.

Steps to Reproduce:
1. Create/open a presentation with the iOS app
2. Insert a table
3. Try to move the table

Actual Results:
It's not possible to move the table with the finger.

Expected Results:
It's possible to move the table with the finger.


Reproducible: Always


User Profile Reset: No



Additional Info:

-- 
You are receiving this mail because:
You 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 76324] CALC becomes very slow with 5000+ comments

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76324

--- Comment #69 from b.  ---
dear guys, 

this is! a bug, 

it is a big! bug, 

and it's in the program for over 5 years now, still unresolved, 

ok, ranting doesn't help, but points like this are  not a good showpiece for a
program being 'actively developed' ... :-( 

i think i stepped in a variant of (or something left while plastering on) this
bug, i observed performance issues and tried to bring it to the point, it took
me hours and days - see there:
https://bugs.documentfoundation.org/show_bug.cgi?id=125545 and there:
https://bugs.documentfoundation.org/show_bug.cgi?id=124692 till i came to the
point it might be 'comment related'. 

how many people shall spend how many time and collect how many frustration till
somebody takes this point serious and does something against it? 

most people won't do any analysis, when they use comments they will start with
a few, no problem, use some more, no problem, and on continuation they will
observe firstly little, then bigger and in the end major performance problems. 

but nobody tells them the reason, and they have no hint on the source, thus
they will helplessly search around (as i did), be frustrated working with calc,
and either switch to another product or change to other work. 

that's not a good thing! 

my two cents: 

- the issue is partially covered by enhancements in the program and faster
hardware and OS's, but it's still in and 'working' (try changing the pattern in
the first problem file to two cells with different content and different
comments, and fill some area like a chessboard, thus breaking 'shared formulas'
and similarity compression, you'll see massive performance impacts also in very
fast systems, (90 seconds of 'not responding' and 'fan requesting cpu load' for
a simple mouseclick in a sheet with 32k filled cells and 16k comments is not!
'the spreadsheet you ever wanted').

- if the problem comes from the calculation of the size of textboxes ??? -
mentioned somewhere above - *switch it off!!!* while the comments are hidden.
imho the normal use of comments is to have additional info in it which isn't
needed all the time and shouldn't eat the screen, thus invisible and shown on
mouseover. for this use its absolutely sufficient to calculate one! textbox for
the cell actually showing it's comment. 

- in some situations i observed some flickering of comment boxes and
'resistance against the cursor and editing' of text in comments, may be there
is something wrong, may be with new graphics features, may be ... 

- with the stuff provided in this thread it schould be a short and direct way
to the source of the problem in the code, simple files, trivial data, simple
'functioning', there is little chance for the bug hiding against profiling, 

any help appreciated!

would / could somebody with sufficient rights set the importance to major
please?

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

2019-05-28 Thread Andrea Gelmini (via logerrit)
 include/svtools/editbrowsebox.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 12eee14c6ee2b7aa71422cf1c9d7d56045b7398e
Author: Andrea Gelmini 
AuthorDate: Tue May 28 16:08:26 2019 +
Commit: Jens Carl 
CommitDate: Wed May 29 06:31:25 2019 +0200

Fix typo

Change-Id: I677f7d50d6b93993f6e3d47426434eb570965b7c
Reviewed-on: https://gerrit.libreoffice.org/73129
Tested-by: Jenkins
Reviewed-by: Jens Carl 

diff --git a/include/svtools/editbrowsebox.hxx 
b/include/svtools/editbrowsebox.hxx
index 12c754db95ae..9468428bd185 100644
--- a/include/svtools/editbrowsebox.hxx
+++ b/include/svtools/editbrowsebox.hxx
@@ -100,7 +100,7 @@ namespace svt
 // to output formatting) here
 virtual void CommitModifications();
 
-// suspending the controller is not culmulative!
+// suspending the controller is not cumulative!
 voidsuspend( );
 voidresume( );
 boolisSuspended( ) const { return bSuspended; }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-05-28 Thread Andrea Gelmini (via logerrit)
 filter/source/graphicfilter/ieps/ieps.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d56afd6ab8b7a69bfe35c0018f890c556b207df5
Author: Andrea Gelmini 
AuthorDate: Tue May 14 21:24:08 2019 +
Commit: Jens Carl 
CommitDate: Wed May 29 06:30:34 2019 +0200

Fix typo

Change-Id: Ibfaba910db1ef59af68f57e52a683b5ef147e5a6
Reviewed-on: https://gerrit.libreoffice.org/73132
Tested-by: Jenkins
Reviewed-by: Jens Carl 

diff --git a/filter/source/graphicfilter/ieps/ieps.cxx 
b/filter/source/graphicfilter/ieps/ieps.cxx
index c4e43e0fc7f2..8ab741e25317 100644
--- a/filter/source/graphicfilter/ieps/ieps.cxx
+++ b/filter/source/graphicfilter/ieps/ieps.cxx
@@ -638,7 +638,7 @@ ipsGraphicImport( SvStream & rStream, Graphic & rGraphic, 
FilterConfigItem* )
 if ( nBytesRead == nPSSize )
 {
 sal_uInt32 nSecurityCount = 32;
-// if there is no tiff/wmf preview, we will parse for an preview in
+// if there is no tiff/wmf preview, we will parse for a preview in
 // the eps prolog
 if (!bHasPreview && nBytesRead >= nSecurityCount)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-05-28 Thread Andrea Gelmini (via logerrit)
 filter/source/graphicfilter/itiff/ccidecom.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 151b171ce7d8f9b43e6221d9ae8e1355afb85211
Author: Andrea Gelmini 
AuthorDate: Tue May 14 21:24:06 2019 +
Commit: Jens Carl 
CommitDate: Wed May 29 06:28:48 2019 +0200

Fix typo

Change-Id: I217ece9296e5e5d8db264a3590e5af1f8ab0cfcb
Reviewed-on: https://gerrit.libreoffice.org/73134
Tested-by: Jenkins
Reviewed-by: Jens Carl 

diff --git a/filter/source/graphicfilter/itiff/ccidecom.cxx 
b/filter/source/graphicfilter/itiff/ccidecom.cxx
index d648ce00ad9d..82d6e0e89f74 100644
--- a/filter/source/graphicfilter/itiff/ccidecom.cxx
+++ b/filter/source/graphicfilter/itiff/ccidecom.cxx
@@ -311,7 +311,7 @@ const CCIHuffmanTableEntry 
CCIUncompTable[CCIUncompTableSize]={
 //== backup of the Huffman tables 
 // To make sure that the Huffman tables do not contain errors they were entered
 // from two different sources (Phew) and compared.
-// Since an error could creep in to the source code while maintaining it
+// Since an error could creep into the source code while maintaining it
 // (e.g. an accidental key press in the editor) the tables are listed twice
 // and are compared during runtime. (If the comparison fails CCIDcompressor
 // throws an error) The whole thing may appear insane, but an error within the
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-05-28 Thread Andrea Gelmini (via logerrit)
 filter/source/msfilter/escherex.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b07e191b357e7f5591834caae1075fe75f1531ad
Author: Andrea Gelmini 
AuthorDate: Tue May 14 21:24:04 2019 +
Commit: Jens Carl 
CommitDate: Wed May 29 06:27:37 2019 +0200

Fix typo

Change-Id: I3414f8badfbab89d0cab72e51fb4dcafc85b35e4
Reviewed-on: https://gerrit.libreoffice.org/73136
Tested-by: Jenkins
Reviewed-by: Jens Carl 

diff --git a/filter/source/msfilter/escherex.cxx 
b/filter/source/msfilter/escherex.cxx
index 019516791adc..ed0246fcdf7c 100644
--- a/filter/source/msfilter/escherex.cxx
+++ b/filter/source/msfilter/escherex.cxx
@@ -4191,7 +4191,7 @@ sal_uInt32 EscherGraphicProvider::GetBlibID( SvStream& 
rPicOutStrm, GraphicObjec
 if ( !aGraphic.IsAnimated() )
 nErrCode = GraphicConverter::Export( aStream, aGraphic, ( 
eGraphicType == GraphicType::Bitmap ) ? ConvertDataFormat::PNG  : 
ConvertDataFormat::EMF );
 else
-{   // to store a animation, a gif has to be included into the 
msOG chunk of a png  #I5583#
+{   // to store an animation, a gif has to be included into 
the msOG chunk of a png  #I5583#
 GraphicFilter  = GraphicFilter::GetGraphicFilter();
 SvMemoryStream  aGIFStream;
 const char* const pString = "MSOFFICE9.0";
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-05-28 Thread Andrea Gelmini (via logerrit)
 filter/source/graphicfilter/idxf/dxfvec.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f21cdfdb9fba4c76ab29bf1e59f77a668e9ac14f
Author: Andrea Gelmini 
AuthorDate: Tue May 14 21:24:10 2019 +
Commit: Jens Carl 
CommitDate: Wed May 29 06:26:43 2019 +0200

Fix typo

Change-Id: I5ce7f422fc6d26eb451ba43fe7bc6f8a540e7d8a
Reviewed-on: https://gerrit.libreoffice.org/73131
Tested-by: Jenkins
Reviewed-by: Jens Carl 

diff --git a/filter/source/graphicfilter/idxf/dxfvec.hxx 
b/filter/source/graphicfilter/idxf/dxfvec.hxx
index 3260999fe981..59b6babc2965 100644
--- a/filter/source/graphicfilter/idxf/dxfvec.hxx
+++ b/filter/source/graphicfilter/idxf/dxfvec.hxx
@@ -128,7 +128,7 @@ public:
 
 bool TransCircleToEllipse(double fRadius, double & rEx, double & rEy) 
const;
 // Attempt to transform a circle (in xy plane) so that it results
-// in an aligned ellipse. If the does not work because a ellipse of
+// in an aligned ellipse. If the does not work because an ellipse of
 // arbitrary position would be created, sal_False is returned.
 // (The center point will not be transformed, use Transform(..))
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-05-28 Thread Andrea Gelmini (via logerrit)
 filter/source/msfilter/eschesdo.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9e2f33b4b355d50dbd3624c9cd6398a861d34ceb
Author: Andrea Gelmini 
AuthorDate: Tue May 14 21:24:03 2019 +
Commit: Jens Carl 
CommitDate: Wed May 29 06:25:27 2019 +0200

Fix typo

Change-Id: Ib1af986d52bbc4ea7e2ee7dc5964da81e6508265
Reviewed-on: https://gerrit.libreoffice.org/73137
Tested-by: Jenkins
Reviewed-by: Jens Carl 

diff --git a/filter/source/msfilter/eschesdo.cxx 
b/filter/source/msfilter/eschesdo.cxx
index 8621fd9f6198..9ed77a8b2280 100644
--- a/filter/source/msfilter/eschesdo.cxx
+++ b/filter/source/msfilter/eschesdo.cxx
@@ -972,7 +972,7 @@ sal_uInt32 EscherEx::QueryTextID( const Reference< XShape 
>&, sal_uInt32 )
 return 0;
 }
 
-// add an dummy rectangle shape into the escher stream
+// add a dummy rectangle shape into the escher stream
 sal_uInt32 EscherEx::AddDummyShape()
 {
 OpenContainer( ESCHER_SpContainer );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 125564] WatchWindow says the type of ThisComponent is ThisComponent

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125564

--- Comment #2 from himajin100...@gmail.com ---
Submission done.
https://gerrit.libreoffice.org/#/c/73142/

-- 
You are receiving this mail because:
You 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 125564] WatchWindow says the type of ThisComponent is ThisComponent

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125564

--- Comment #1 from himajin100...@gmail.com ---
Created attachment 151751
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151751=edit
document to be used in STR

-- 
You are receiving this mail because:
You 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 125564] New: WatchWindow says the type of ThisComponent is ThisComponent

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125564

Bug ID: 125564
   Summary: WatchWindow says the type of ThisComponent is
ThisComponent
   Product: LibreOffice
   Version: 6.3.0.0.alpha1+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: himajin100...@gmail.com

Description:
see steps to reproduce


Steps to Reproduce:
1. Load the attached document.
2. Open StarBasic's IDE
3. Input "ThisComponent" into Watch window(or Observer?) and press Enter
4. "Step In" in Main()
5. Check what the type of ThisComponent is

Actual Results:
Watch Window says the type of ThisComponent 

Expected Results:
Watch Window should say ThisComponent is of type XModel (probably. Is there any
thing more suitable?)


Reproducible: Always


User Profile Reset: No



Additional Info:
SbxObject has a constructor that takes OUString as its paramter. This parameter
is for Class's name, not for the variable name.

https://opengrok.libreoffice.org/xref/core/basic/source/sbx/sbxobj.cxx?r=29d35c82#41
https://opengrok.libreoffice.org/xref/core/basic/source/classes/sbunoobj.cxx?r=fbc038cc#2274
https://opengrok.libreoffice.org/xref/core/basic/source/classes/sbunoobj.cxx?r=fbc038cc#2873
https://opengrok.libreoffice.org/xref/core/basic/source/basmgr/basmgr.cxx?r=754c6af4#1408
https://opengrok.libreoffice.org/s?refs=SetGlobalUNOConstant=core

-- 
You are receiving this mail because:
You 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 124764] Paste structured text without format but with styles

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124764

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

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

[Libreoffice-bugs] [Bug 125265] Indentation is lost when pasting as rich text

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125265

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 125556] FILEOPEN: URL fragment leaked from one object to another when importing Powerpoint ppt file

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125556

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 124054] Base - incorrect ASC order in Form with varchar data containing accented characters

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124054

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 125274] Integrate TexMaths functionality into LibreOffice

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125274

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 124764] Paste structured text without format but with styles

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124764

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-ux-advise] [Bug 124764] Paste structured text without format but with styles

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124764

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

-- 
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 125176] Long comment should be collapsed

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125176

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 124054] Base - incorrect ASC order in Form with varchar data containing accented characters

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124054

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

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

[Libreoffice-bugs] [Bug 121339] LibreOffice takes a mighty long time to start.

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121339

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

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

[Libreoffice-bugs] [Bug 101906] Crash on exit when using JAWS screen reader

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101906

--- Comment #10 from QA Administrators  ---
Dear Yousuf Philips (jay) (retired),

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 117789] Sidebar: New Shapes deck isn't scrollable with touchpad (and maybe mouse wheel)

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117789

--- Comment #2 from QA Administrators  ---
Dear Thomas Lendo,

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
http://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-ux-advise] [Bug 124764] Paste structured text without format but with styles

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124764

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

-- 
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 121594] unwanted capitalising on the letter " i " .

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121594

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

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 119967] Save and Open dialogs open and then instantly close, making it impossible to save or open or import, etc

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119967

--- Comment #12 from QA Administrators  ---
Dear Leo Tindall,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 121533] Crash in: StrCmpICW

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121533

--- Comment #5 from QA Administrators  ---
Dear Al McAusland,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 121339] LibreOffice takes a mighty long time to start.

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121339

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 104261] VIEWING: Calc red comment indicator is changing shape

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104261

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

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
http://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 115886] missing slide borders in "slide sorter" view on hiDPI display

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115886

--- Comment #6 from QA Administrators  ---
Dear Eric M,

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
http://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 118331] "Save as ..." fails when working with more than one version

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118331

--- Comment #8 from QA Administrators  ---
Dear a.joensson,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 108157] Chart bars disappear when reopening a file

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108157

--- Comment #9 from QA Administrators  ---
Dear Markus Sokero,

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
http://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 117840] Layer properties visible/printable/locked are wrong in watch window

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117840

--- Comment #2 from QA Administrators  ---
Dear Regina Henschel,

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
http://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 117780] Blue textbox background when pasting sheets from clipboard using templates

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117780

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

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
http://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 81720] EDITING: setting cross-reference still active after closing

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81720

--- Comment #9 from QA Administrators  ---
Dear Juang Dse,

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
http://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-ux-advise] [Bug 124805] Store the last used image folder in the document

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124805

--- Comment #11 from zyklo...@web.de ---
(In reply to Justin L from comment #9)

> OP is specifically asking that it is remembered PER DOCUMENT.  If I
> understand OP correct, LibreOffice already silently remembers the last used
> path at an application level. 

Correct. :)


> When LO starts, it can still honour this initial setting. There is no reason
> to change the application-level default to resolve this per-document bug.
> Any document meta-data setting would simply override the application default.

Sounds good!

-- 
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 124805] Store the last used image folder in the document

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124805

--- Comment #11 from zyklo...@web.de ---
(In reply to Justin L from comment #9)

> OP is specifically asking that it is remembered PER DOCUMENT.  If I
> understand OP correct, LibreOffice already silently remembers the last used
> path at an application level. 

Correct. :)


> When LO starts, it can still honour this initial setting. There is no reason
> to change the application-level default to resolve this per-document bug.
> Any document meta-data setting would simply override the application default.

Sounds good!

-- 
You are receiving this mail because:
You 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 125563] New: FILEOPEN PPTX handle values lost or wrong for text transformation

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125563

Bug ID: 125563
   Summary: FILEOPEN PPTX handle values lost or wrong for text
transformation
   Product: LibreOffice
   Version: 6.3.0.0.alpha1+ Master
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

Created attachment 151750
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151750=edit
Example with shape and screenshot

Open attached file. It contains three slides with shapes, where the problem is
good visible. But it exists for other shapes too. The adjustments which the
user had made to the shapes are lost or imported with wrong values. The problem
is good visible for handles, which are moved horizontally. Each slide has an
image, how it looks in PowerPoint.

The support for import of text transformation (WortArt, Fontwork) was
implemented with bug 116350. The here mentioned problem exists from the
beginning. It is no regression.

-- 
You are receiving this mail because:
You 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 'distro/lhm/libreoffice-5-2+backports' - sc/qa sc/source

2019-05-28 Thread Thorsten Behrens (via logerrit)
 sc/qa/unit/subsequent_filters-test.cxx |1 +
 sc/source/core/data/drwlayer.cxx   |4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 5845eee5c0b45e85d55b120eb555b312cb8bbc8e
Author: Thorsten Behrens 
AuthorDate: Tue May 28 16:08:58 2019 +0200
Commit: Thorsten Behrens 
CommitDate: Wed May 29 00:21:22 2019 +0200

sc: fix WaE

Change-Id: I68aaeb638df6bb4858371adc81f80f4228be8ac9

diff --git a/sc/qa/unit/subsequent_filters-test.cxx 
b/sc/qa/unit/subsequent_filters-test.cxx
index a5a276ea055d..75173251efaf 100644
--- a/sc/qa/unit/subsequent_filters-test.cxx
+++ b/sc/qa/unit/subsequent_filters-test.cxx
@@ -3533,6 +3533,7 @@ void ScFiltersTest::testAutoheight2Rows()
 
 // We will do relative comparison, because calculated autoheight
 // can be different on different platforms
+(void)nHeight2;
 CPPUNIT_ASSERT_MESSAGE("Row #3 shoud be thinner than #1", nHeight3 < 
nHeight1);
 
 xDocSh->DoClose();
diff --git a/sc/source/core/data/drwlayer.cxx b/sc/source/core/data/drwlayer.cxx
index eb471d300b07..e875e92ffd08 100644
--- a/sc/source/core/data/drwlayer.cxx
+++ b/sc/source/core/data/drwlayer.cxx
@@ -1480,8 +1480,8 @@ void ScDrawLayer::DeleteObjectsInSelection( const 
ScMarkData& rMark )
  pObjData->maStart.Row()));
 if (bObjectInMarkArea || bObjectAnchoredToMarkedCell)
 {
-ScRange aRange = pDoc->GetRange( nTab, aObjRect );
-if (rMark.IsAllMarked(aRange))
+ScRange aRange2 = pDoc->GetRange( nTab, aObjRect );
+if (rMark.IsAllMarked(aRange2))
 ppObj[nDelCount++] = pObject;
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 121339] LibreOffice takes a mighty long time to start.

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121339

--- Comment #7 from Roland Taylor  ---
I have been very busy, but I will try to gather this information as soon as
possible.

-- 
You are receiving this mail because:
You 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 125542] Can't close editor via "X" of window manager

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125542

BottleOnTheGround  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #2 from BottleOnTheGround  ---
Version: 6.0.7.3
Build ID: 1:6.0.7-0ubuntu0.18.04.5
CPU threads: 8; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); Calc: group

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

[Libreoffice-bugs] [Bug 125545] performance issue caused by comments?

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125545

--- Comment #6 from b.  ---
Created attachment 151749
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151749=edit
big file with plenty comments freezing systems

this file rendered my system nearly useless, try with care!, try on your own
risk, first save all open work and files! 

this time 6.3 has beaten ver. 4.1.6.2, in the later loading takes some time,
first two tries to continue work ended in crash and freeze, of calc, not the
system.

-- 
You are receiving this mail because:
You 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 107396] [META] Repagination issues

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107396
Bug 107396 depends on bug 74693, which changed state.

Bug 74693 Summary: Footnotes text appearing above footnote separator line after 
repagination
https://bugs.documentfoundation.org/show_bug.cgi?id=74693

   What|Removed |Added

 Status|RESOLVED|REOPENED
 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-bugs] [Bug 74693] Footnotes text appearing above footnote separator line after repagination

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=74693

Georgy  changed:

   What|Removed |Added

 Resolution|WORKSFORME  |---
 Status|RESOLVED|REOPENED

--- Comment #38 from Georgy  ---
Still appears on 
Version: 6.1.6.3
Build ID: 5896ab1714085361c45cf540f76f60673dd96a72
CPU threads: 8; OS: Linux 4.4; UI render: default; VCL: gtk2; 
Locale: ru-RU (en_GB.utf8); Calc: group threaded
Attachments:
pdf with a bug on page 89 (92)
odt (source of pdf with a bug on page 92)

-- 
You are receiving this mail because:
You 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 103164] [META] Footnote and Endnote bugs and enhancements

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103164
Bug 103164 depends on bug 74693, which changed state.

Bug 74693 Summary: Footnotes text appearing above footnote separator line after 
repagination
https://bugs.documentfoundation.org/show_bug.cgi?id=74693

   What|Removed |Added

 Status|RESOLVED|REOPENED
 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-bugs] [Bug 74693] Footnotes text appearing above footnote separator line after repagination

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=74693

--- Comment #37 from Georgy  ---
Created attachment 151748
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151748=edit
odt (source of pdf with a bug on page 92)

-- 
You are receiving this mail because:
You 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 74693] Footnotes text appearing above footnote separator line after repagination

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=74693

--- Comment #36 from Georgy  ---
Created attachment 151747
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151747=edit
pdf with a bug on page 89 (92)

-- 
You are receiving this mail because:
You 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: 3 commits - desktop/source include/sfx2 include/svtools include/vcl sfx2/inc sfx2/source sfx2/uiconfig sfx2/UIConfig_sfx.mk solenv/bin solenv/sanitizers svx/source sw/s

2019-05-28 Thread Caolán McNamara (via logerrit)
 desktop/source/deployment/gui/dp_gui.h|1 
 include/sfx2/dinfdlg.hxx  |  245 
+--
 include/sfx2/strings.hrc  |1 
 include/svtools/ctrlbox.hxx   |1 
 include/vcl/weld.hxx  |1 
 sfx2/UIConfig_sfx.mk  |1 
 sfx2/inc/bitmaps.hlst |1 
 sfx2/inc/strings.hxx  |2 
 sfx2/source/dialog/dinfdlg.cxx|  703 
+++---
 sfx2/uiconfig/ui/cmisinfopage.ui  |   51 
 sfx2/uiconfig/ui/custominfopage.ui|   65 
 sfx2/uiconfig/ui/linefragment.ui  |  237 
+++
 solenv/bin/native-code.py |1 
 solenv/sanitizers/ui/sfx.suppr|6 
 svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx |5 
 sw/source/ui/misc/bookmark.cxx|1 
 16 files changed, 656 insertions(+), 666 deletions(-)

New commits:
commit 5f2c1a1c9adf0168da36ab1290e235bd352b8914
Author: Caolán McNamara 
AuthorDate: Tue May 28 16:40:07 2019 +0100
Commit: Caolán McNamara 
CommitDate: Tue May 28 22:10:51 2019 +0200

drop unused box

copy and paste from the normal document info page I imagine

Change-Id: Iff40fbf2b4d21dd3d51c63cb6068b0b88b5438ed
Reviewed-on: https://gerrit.libreoffice.org/73115
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/sfx2/uiconfig/ui/cmisinfopage.ui b/sfx2/uiconfig/ui/cmisinfopage.ui
index 78f1d6e5a8c2..77c7be8b1b2b 100644
--- a/sfx2/uiconfig/ui/cmisinfopage.ui
+++ b/sfx2/uiconfig/ui/cmisinfopage.ui
@@ -1,5 +1,5 @@
 
-
+
 
   
   
@@ -37,55 +37,6 @@
   
   
 0
-1
-  
-
-
-  
-False
-True
-True
-12
-True
-
-  
-True
-False
-Name
-  
-  
-False
-True
-0
-  
-
-
-  
-True
-False
-Type
-  
-  
-False
-True
-1
-  
-
-
-  
-True
-False
-Value
-  
-  
-False
-True
-2
-  
-
-  
-  
-0
 0
   
 
commit b3e970898b9631344b38613c844b5f1ca8bb1016
Author: Caolán McNamara 
AuthorDate: Tue May 28 16:28:01 2019 +0100
Commit: Caolán McNamara 
CommitDate: Tue May 28 22:10:35 2019 +0200

drop some unneeded includes

Change-Id: I42b2ccbb4484ab2acb8208ad88c6f22e4af09f7d
Reviewed-on: https://gerrit.libreoffice.org/73114
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/desktop/source/deployment/gui/dp_gui.h 
b/desktop/source/deployment/gui/dp_gui.h
index 01eaadd75936..37c39c04ba58 100644
--- a/desktop/source/deployment/gui/dp_gui.h
+++ b/desktop/source/deployment/gui/dp_gui.h
@@ -30,7 +30,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 
diff --git a/include/sfx2/dinfdlg.hxx b/include/sfx2/dinfdlg.hxx
index 1062cf18dc5b..45444aff0166 100644
--- a/include/sfx2/dinfdlg.hxx
+++ b/include/sfx2/dinfdlg.hxx
@@ -31,8 +31,6 @@
 
 #include 
 
-#include 
-
 #include 
 #include 
 #include 
diff --git 
a/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx 
b/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx
index 0fe2696c98c5..8e476a550609 100644
--- a/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx
+++ b/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx
@@ -27,13 +27,10 @@
 #include 
 #include 
 #include 
-#include 
-#include 
-#include 
-#include 
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 
diff --git a/sw/source/ui/misc/bookmark.cxx b/sw/source/ui/misc/bookmark.cxx
index dfa49f8bfe12..b7de3dc377da 100644
--- a/sw/source/ui/misc/bookmark.cxx
+++ b/sw/source/ui/misc/bookmark.cxx
@@ -21,7 +21,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 
 #include 
commit 208522ddd3fb6b994aacdab10aca45d4e2562207
Author: Caolán McNamara 
AuthorDate: Mon May 27 10:32:03 2019 +0100
Commit: Caolán McNamara 
CommitDate: Tue May 28 22:09:59 2019 +0200

weld SfxCustomPropertiesPage

Change-Id: I1b1ba1c2b879d270eb3af486a4d006f170d1b92e
Reviewed-on: https://gerrit.libreoffice.org/73111
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 
Tested-by: 

[Libreoffice-bugs] [Bug 55167] FILEOPEN Read-error. Error in file structure while importing. (opening an encrypted Quattro Pro WB2 file)

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55167

--- Comment #12 from MetaEd  ---
I'm the one who filed the original bug report. I have checked some real-world
documents. I confirm that I can no longer reproduce the problem. 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 125562] LibreOffice fonts aren't installed with LibreOffice 6.2.4.2

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125562

João Paulo  changed:

   What|Removed |Added

 Blocks||71732


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=71732
[Bug 71732] [META] Bugs related to text rendering, typography and font features
in LO
-- 
You are receiving this mail because:
You 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 71732] [META] Bugs related to text rendering, typography and font features in LO

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71732

João Paulo  changed:

   What|Removed |Added

 Depends on||125562


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=125562
[Bug 125562] LibreOffice fonts aren't installed with LibreOffice 6.2.4.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 124752] Copy/paste popup not working

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124752

--- Comment #16 from Tor Lillqvist  ---
Now copy/paste between the Collabora Office app and other apps works much
better. Will provide a fresh build of the app tomorrow.

-- 
You are receiving this mail because:
You 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 125562] New: LibreOffice fonts aren't installed with LibreOffice 6.2.4.2

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125562

Bug ID: 125562
   Summary: LibreOffice fonts aren't installed with LibreOffice
6.2.4.2
   Product: LibreOffice
   Version: 6.2.4.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Installation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: joaopauloag-freedesk...@yahoo.com.br

Description:
After removing LibreOffice 6.2.3.2 64 bits and installing LibreOffice 6.2.4.2
64 bits on Windows 10, I noticed the Caladea font family wasn't installed.

After checking the list at https://wiki.documentfoundation.org/Fonts, I could
verify the following fonts are missing:

* Caladea
* Carlito
* DejaVu Sans
* DejaVu Sans Condensed
* DejaVu Sans Mono
* DejaVu Serif Condensed
* Gentium Book Basic
* Liberation Sans
* Liberation Serif
* Linux Biolinum G
* Linux Libertine Display G
* Linux Libertine G
* OpenSymbol
* Noto Sans
* Source Code Pro
* Source Sans Pro
* Source Serif Pro

Steps to Reproduce:
1. Have LibreOffice 6.2.3.2 64 bits installed on Windows 10.
2. Verify the fonts at https://wiki.documentfoundation.org/Fonts are installed.
3. Uninstall LibreOffice 6.2.3.2.
3. Install LibreOffice 6.2.4.2 64 bits.

Actual Results:
The fonts listed at https://wiki.documentfoundation.org/Fonts are missing.
Documents that use them (because it was installed before) have their layouts
and fonts changed.

Expected Results:
The fonts listed at https://wiki.documentfoundation.org/Fonts should be
installed, as they were installed before.


Reproducible: Always


User Profile Reset: No



Additional Info:
I don't thinkt there is an easy workaround because one needs to find and
download all the font families listed at
https://wiki.documentfoundation.org/Fonts so documents formatted with them are
correct again.

-- 
You are receiving this mail because:
You 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 124752] Copy/paste popup not working

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124752

--- Comment #15 from Commit Notification 
 ---
Tor Lillqvist committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/12800a215102435b16fd0e3028f1fdfe8ebeb090%5E%21

tdf#124752: Simplify the iOS DataFlavorMapping thing a lot

It will be available in 6.3.0.

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

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

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

[Libreoffice-bugs] [Bug 124752] Copy/paste popup not working

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124752

--- Comment #14 from Commit Notification 
 ---
Tor Lillqvist committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/edf1f755d40c5423ffb411ff17f024fbafeb02b3%5E%21

tdf#124752: Reduce number of formats offered on clipboard on mobile devices

It will be available in 6.3.0.

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

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

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

[Libreoffice-bugs] [Bug 124752] Copy/paste popup not working

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124752

--- Comment #13 from Commit Notification 
 ---
Tor Lillqvist committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/e1cd536edd2636d150ae50b0d44a5aee1b8d4e34%5E%21

tdf#124752: Use best speed for PNG encoding on iOS

It will be available in 6.3.0.

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

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

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

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

2019-05-28 Thread Tor Lillqvist (via logerrit)
 sw/source/uibase/dochdl/swdtflvr.cxx |   24 +-
 vcl/ios/DataFlavorMapping.cxx|  127 ---
 vcl/source/treelist/transfer.cxx |   18 
 3 files changed, 39 insertions(+), 130 deletions(-)

New commits:
commit 12800a215102435b16fd0e3028f1fdfe8ebeb090
Author: Tor Lillqvist 
AuthorDate: Tue May 28 22:10:06 2019 +0300
Commit: Tor Lillqvist 
CommitDate: Tue May 28 22:44:27 2019 +0300

tdf#124752: Simplify the iOS DataFlavorMapping thing a lot

Now it works to copy and paste images (PNG ones at least) between the
iOS Collabora Office app and other apps.

We don't seem to need the PNGDataProvider after all, as we use it only
for data that is already in PNG format. Possibly I am missing
somethin, though.

Change-Id: Ia6bcc8aefbe1a6687f13e28454b96658fc66c856

diff --git a/vcl/ios/DataFlavorMapping.cxx b/vcl/ios/DataFlavorMapping.cxx
index b57209fd2621..37ff2181d651 100644
--- a/vcl/ios/DataFlavorMapping.cxx
+++ b/vcl/ios/DataFlavorMapping.cxx
@@ -47,65 +47,6 @@ using namespace cppu;
 
 namespace
 {
-bool ImageToPNG(css::uno::Sequence const& rImgData,
-css::uno::Sequence& rPngData)
-{
-#if 1
-// Skip this complexity for now. Work in progress.
-(void)rImgData;
-(void)rPngData;
-return false;
-#else
-NSData* pData = [NSData 
dataWithBytesNoCopy:const_cast(rImgData.getConstArray())
- length:rImgData.getLength()
-   freeWhenDone:0];
-if (!pData)
-return false;
-
-NSBitmapImageRep* pRep = [NSBitmapImageRep imageRepWithData:pData];
-if (!pRep)
-return false;
-
-NSData* pOut = [pRep representationUsingType:NSPNGFileType properties:@{}];
-if (!pOut)
-return false;
-
-const size_t nPngSize = [pOut length];
-rPngData.realloc(nPngSize);
-[pOut getBytes:rPngData.getArray() length:nPngSize];
-return (nPngSize > 0);
-#endif
-}
-
-bool PNGToImage(css::uno::Sequence const& rPngData,
-css::uno::Sequence& rImgData)
-{
-#if 1
-(void)rPngData;
-(void)rImgData;
-return false;
-#else
-NSData* pData = [NSData 
dataWithBytesNoCopy:const_cast(rPngData.getConstArray())
- length:rPngData.getLength()
-   freeWhenDone:0];
-if (!pData)
-return false;
-
-NSBitmapImageRep* pRep = [NSBitmapImageRep imageRepWithData:pData];
-if (!pRep)
-return false;
-
-NSData* pOut = [pRep representationUsingType:eOutFormat properties:@{}];
-if (!pOut)
-return false;
-
-const size_t nImgSize = [pOut length];
-rImgData.realloc(nImgSize);
-[pOut getBytes:rImgData.getArray() length:nImgSize];
-return (nImgSize > 0);
-#endif
-}
-
 /* Determine whether or not a DataFlavor is valid.
*/
 bool isValidFlavor(const DataFlavor& aFlavor)
@@ -397,61 +338,6 @@ Any HTMLFormatDataProvider::getOOoData()
 return oOOData;
 }
 
-class PNGDataProvider : public DataProviderBaseImpl
-{
-public:
-PNGDataProvider(const Any&);
-PNGDataProvider(NSData*);
-
-NSData* getSystemData() override;
-Any getOOoData() override;
-};
-
-PNGDataProvider::PNGDataProvider(const Any& data)
-: DataProviderBaseImpl(data)
-{
-}
-
-PNGDataProvider::PNGDataProvider(NSData* data)
-: DataProviderBaseImpl(data)
-{
-}
-
-NSData* PNGDataProvider::getSystemData()
-{
-Sequence pngData;
-mData >>= pngData;
-
-Sequence imgData;
-NSData* sysData = nullptr;
-if (PNGToImage(pngData, imgData))
-sysData = [NSData dataWithBytes:imgData.getArray() 
length:imgData.getLength()];
-
-return sysData;
-}
-
-Any PNGDataProvider::getOOoData()
-{
-Any oOOData;
-
-if (mSystemData)
-{
-const unsigned int flavorDataLength = [mSystemData length];
-Sequence imgData(flavorDataLength);
-memcpy(imgData.getArray(), [mSystemData bytes], flavorDataLength);
-
-Sequence pngData;
-if (ImageToPNG(imgData, pngData))
-oOOData <<= pngData;
-}
-else
-{
-oOOData = mData;
-}
-
-return oOOData;
-}
-
 DataFlavorMapper::DataFlavorMapper()
 {
 Reference xContext = 
comphelper::getProcessComponentContext();
@@ -565,14 +451,7 @@ DataFlavorMapper::getDataProvider(const NSString* 
systemFlavor,
 
 if (isByteSequenceType(data.getValueType()))
 {
-if ([systemFlavor caseInsensitiveCompare:PBTYPE_PNG] == 
NSOrderedSame)
-{
-dp = DataProviderPtr_t(new PNGDataProvider(data));
-}
-else
-{
-dp = DataProviderPtr_t(new ByteSequenceDataProvider(data));
-}
+dp = DataProviderPtr_t(new ByteSequenceDataProvider(data));
 }
 else // Must be OUString type
 {
@@ -602,10 +481,6 @@ DataProviderPtr_t DataFlavorMapper::getDataProvider(const 
NSString* 

[Libreoffice-bugs] [Bug 125560] FILEOPEN PPTX: text transformation "Deflate" is wrongly imported as "Inflate"

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125560

raal  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||r...@post.cz
 Status|UNCONFIRMED |NEW

--- Comment #1 from raal  ---
Confirm Version: 6.3.0.0.alpha1+
Build ID: 53325b40b557cc84d8d21c1baa0ef8d3bfc00ab8
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3;

-- 
You are receiving this mail because:
You 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 125561] New: switching (Alt-Tab) forth and back between programs selects all text in cell validity dialog

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125561

Bug ID: 125561
   Summary: switching (Alt-Tab) forth and back between programs
selects all text in cell validity dialog
   Product: LibreOffice
   Version: 6.1.5.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: logisti...@yahoo.com

Description:
Menu: Data|Validity allows setting cell content validity rules for one or more
cells. For the validity type "list", the content of the text entry widget is
unintentionally selected when switching to another program and back.

Steps to Reproduce:
1. start LO calc and open a new spreadsheet
2. select multiple cells
3. select data | validity from main menu
4. select "list" as type of validity
5. mouse click in the "entries" text widget
6. type"
   aaa
   bbb
   ccc"
7. press Alt-Tab to switch to another application
8. press Alt-Tab again to get back to LO calc

Actual Results:
the content of the text widget "aaa bbb ccc" is selected.

Expected Results:
the content of the text widget is NOT selected


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.1.5.2
Build-ID: 1:6.1.5-3
CPU-Threads: 2; BS: Linux 4.19; UI-Render: Standard; VCL: gtk3; 
Gebietsschema: de-DE (de_DE.utf8); Calc: group threaded
Linux Debian 10/buster; installed from Debian main repositories

-- 
You are receiving this mail because:
You 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 67583] FILEOPEN: File with 40 images not opening - both DOC, DOCX (win only)

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67583

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #13 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I could reproduce this.

I noticed these logs:
warn:legacy.osl:30696:30696:oox/source/helper/graphichelper.cxx:120:
GraphicHelper::GraphicHelper - cannot get target frame
warn:legacy.osl:30696:30696:sw/source/filter/ww8/writerhelper.cxx:586: No
NodeIndex in SwFrameFormat ?, suspicious

-- 
You are receiving this mail because:
You 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 124299] Document the Redaction Process and Commands

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124299

--- Comment #2 from Olivier Hallot  ---
To help to fix this bug:

Please follow the instructions of

https://documentation.libreoffice.org/en/join-the-documentation-team/update-help-contents/

in "The easy way" section.

Use wiki page contents indicated in comment#0. Plenty of info.

-- 
You are receiving this mail because:
You 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 'distro/collabora/cp-6.0' - 3 commits - svtools/source sw/source vcl/ios

2019-05-28 Thread Tor Lillqvist (via logerrit)
 svtools/source/misc/transfer.cxx |   18 
 sw/source/uibase/dochdl/swdtflvr.cxx |   24 +-
 vcl/ios/DataFlavorMapping.cxx|  127 ---
 3 files changed, 39 insertions(+), 130 deletions(-)

New commits:
commit 313984a59af43b00cc58c9e13ef9bf3aeccca30f
Author: Tor Lillqvist 
AuthorDate: Tue May 28 22:10:06 2019 +0300
Commit: Tor Lillqvist 
CommitDate: Tue May 28 22:15:58 2019 +0300

tdf#124752: Simplify the iOS DataFlavorMapping thing a lot

Now it works to copy and paste images (PNG ones at least) between the
iOS Collabora Office app and other apps.

We don't seem to need the PNGDataProvider after all, as we use it only
for data that is already in PNG format. Possibly I am missing
somethin, though.

Change-Id: Ia6bcc8aefbe1a6687f13e28454b96658fc66c856

diff --git a/vcl/ios/DataFlavorMapping.cxx b/vcl/ios/DataFlavorMapping.cxx
index c42677f70b6b..e90a8f9b245c 100644
--- a/vcl/ios/DataFlavorMapping.cxx
+++ b/vcl/ios/DataFlavorMapping.cxx
@@ -46,65 +46,6 @@ using namespace cppu;
 
 namespace
 {
-bool ImageToPNG(css::uno::Sequence const& rImgData,
-css::uno::Sequence& rPngData)
-{
-#if 1
-// Skip this complexity for now. Work in progress.
-(void)rImgData;
-(void)rPngData;
-return false;
-#else
-NSData* pData = [NSData 
dataWithBytesNoCopy:const_cast(rImgData.getConstArray())
- length:rImgData.getLength()
-   freeWhenDone:0];
-if (!pData)
-return false;
-
-NSBitmapImageRep* pRep = [NSBitmapImageRep imageRepWithData:pData];
-if (!pRep)
-return false;
-
-NSData* pOut = [pRep representationUsingType:NSPNGFileType properties:@{}];
-if (!pOut)
-return false;
-
-const size_t nPngSize = [pOut length];
-rPngData.realloc(nPngSize);
-[pOut getBytes:rPngData.getArray() length:nPngSize];
-return (nPngSize > 0);
-#endif
-}
-
-bool PNGToImage(css::uno::Sequence const& rPngData,
-css::uno::Sequence& rImgData)
-{
-#if 1
-(void)rPngData;
-(void)rImgData;
-return false;
-#else
-NSData* pData = [NSData 
dataWithBytesNoCopy:const_cast(rPngData.getConstArray())
- length:rPngData.getLength()
-   freeWhenDone:0];
-if (!pData)
-return false;
-
-NSBitmapImageRep* pRep = [NSBitmapImageRep imageRepWithData:pData];
-if (!pRep)
-return false;
-
-NSData* pOut = [pRep representationUsingType:eOutFormat properties:@{}];
-if (!pOut)
-return false;
-
-const size_t nImgSize = [pOut length];
-rImgData.realloc(nImgSize);
-[pOut getBytes:rImgData.getArray() length:nImgSize];
-return (nImgSize > 0);
-#endif
-}
-
 /* Determine whether or not a DataFlavor is valid.
*/
 bool isValidFlavor(const DataFlavor& aFlavor)
@@ -396,61 +337,6 @@ Any HTMLFormatDataProvider::getOOoData()
 return oOOData;
 }
 
-class PNGDataProvider : public DataProviderBaseImpl
-{
-public:
-PNGDataProvider(const Any&);
-PNGDataProvider(NSData*);
-
-NSData* getSystemData() override;
-Any getOOoData() override;
-};
-
-PNGDataProvider::PNGDataProvider(const Any& data)
-: DataProviderBaseImpl(data)
-{
-}
-
-PNGDataProvider::PNGDataProvider(NSData* data)
-: DataProviderBaseImpl(data)
-{
-}
-
-NSData* PNGDataProvider::getSystemData()
-{
-Sequence pngData;
-mData >>= pngData;
-
-Sequence imgData;
-NSData* sysData = nullptr;
-if (PNGToImage(pngData, imgData))
-sysData = [NSData dataWithBytes:imgData.getArray() 
length:imgData.getLength()];
-
-return sysData;
-}
-
-Any PNGDataProvider::getOOoData()
-{
-Any oOOData;
-
-if (mSystemData)
-{
-const unsigned int flavorDataLength = [mSystemData length];
-Sequence imgData(flavorDataLength);
-memcpy(imgData.getArray(), [mSystemData bytes], flavorDataLength);
-
-Sequence pngData;
-if (ImageToPNG(imgData, pngData))
-oOOData <<= pngData;
-}
-else
-{
-oOOData = mData;
-}
-
-return oOOData;
-}
-
 DataFlavorMapper::DataFlavorMapper()
 {
 Reference xContext = 
comphelper::getProcessComponentContext();
@@ -564,14 +450,7 @@ DataFlavorMapper::getDataProvider(const NSString* 
systemFlavor,
 
 if (isByteSequenceType(data.getValueType()))
 {
-if ([systemFlavor caseInsensitiveCompare:PBTYPE_PNG] == 
NSOrderedSame)
-{
-dp = DataProviderPtr_t(new PNGDataProvider(data));
-}
-else
-{
-dp = DataProviderPtr_t(new ByteSequenceDataProvider(data));
-}
+dp = DataProviderPtr_t(new ByteSequenceDataProvider(data));
 }
 else // Must be OUString type
 {
@@ -601,10 +480,6 @@ DataProviderPtr_t DataFlavorMapper::getDataProvider(const 
NSString* 

[Libreoffice-ux-advise] [Bug 124764] Paste structured text without format but with styles

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124764

--- Comment #8 from Eric L.  ---
I'm quite flabbergasted: my experience was completely different and I've got
plenty of documents with demultiplied styles, but I can't reproduce it with a
clean document, neither with Writer nor with Impress.

I've still got one of those presentations at work, let me try it again with it.

-- 
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 124764] Paste structured text without format but with styles

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124764

--- Comment #8 from Eric L.  ---
I'm quite flabbergasted: my experience was completely different and I've got
plenty of documents with demultiplied styles, but I can't reproduce it with a
clean document, neither with Writer nor with Impress.

I've still got one of those presentations at work, let me try it again with 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 124299] Document the Redaction Process and Commands

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124299

--- Comment #1 from Muhammet Kara  ---
I have added some content to the LibreOffice 6.3 Release Notes regarding this
feature:
https://wiki.documentfoundation.org/ReleaseNotes/6.3#New_Feature:_Redaction

I tried to make it usable also as a user documentation, and ref for help pages.

@olivier: Maybe we can add it to 6.3 user guides?

-- 
You are receiving this mail because:
You 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 125560] New: FILEOPEN PPTX: text transformation "Deflate" is wrongly imported as "Inflate"

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125560

Bug ID: 125560
   Summary: FILEOPEN PPTX: text transformation  "Deflate" is
wrongly imported as "Inflate"
   Product: LibreOffice
   Version: 6.3.0.0.alpha1+ Master
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Keywords: easyHack
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

Created attachment 151746
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151746=edit
Shape with text transformation "Deflate" and screenshot

Open attached file. It contains a shape with text transformation "Deflate" and
an image, which shows, how it looks in PowerPoint.

The wrong mapping is in file
oox/source/drawingml/presetgeometrynames.cxx

Because it has no corresponding fontwork-shape among LibreOffice's own Fontwork
shapes, the name does not start with 'fontwork'. But you find the correct name
in file svx/source/customshapes/EnhancedCustomShapeTypeNames.cxx

This is no regression but was wrong from the beginning, when the text
transformation feature was implemented (see bug 116350).

-- 
You are receiving this mail because:
You 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: officecfg/registry sd/uiconfig sd/UIConfig_sdraw.mk

2019-05-28 Thread andreas kainz (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/ToolbarMode.xcu |   61 
 sd/UIConfig_sdraw.mk |2 
 sd/uiconfig/sdraw/ui/notebookbar_compact.ui  |19599 
++
 sd/uiconfig/sdraw/ui/notebookbar_single.ui   |12055 ++
 4 files changed, 31716 insertions(+), 1 deletion(-)

New commits:
commit 8291f1ebc2f95611a073dc62e204348b0dc7c87c
Author: andreas kainz 
AuthorDate: Tue May 28 14:19:29 2019 +0200
Commit: andreas_kainz 
CommitDate: Tue May 28 20:47:00 2019 +0200

NB: add tabbed_compact and contextual NB to Draw

Change-Id: Ibdca2026f29483948c2fafaf499a82d2a4acf08b
Reviewed-on: https://gerrit.libreoffice.org/73095
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/officecfg/registry/data/org/openoffice/Office/UI/ToolbarMode.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/ToolbarMode.xcu
index 725251aaba56..998f0f46935b 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/ToolbarMode.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/ToolbarMode.xcu
@@ -741,6 +741,34 @@
 true
   
 
+
+  
+Tabbed Compact
+  
+  
+true
+  
+  
+false
+  
+  
+4
+  
+  
+notebookbar_compact.ui
+  
+  
+
+
+  
+  
+
+
+  
+  
+Arrow
+  
+
 
   
 Groupedbar Compact
@@ -783,7 +811,7 @@
 true
   
   
-6
+7
   
   
 notebookbar_groupedbar_full.ui
@@ -803,6 +831,37 @@
 true
   
 
+
+  
+Contextual Single
+  
+  
+true
+  
+  
+false
+  
+  
+6
+  
+  
+notebookbar_single.ui
+  
+  
+
+
+  
+  
+
+
+  
+  
+Arrow
+  
+  
+true
+  
+
   
 
 
diff --git a/sd/UIConfig_sdraw.mk b/sd/UIConfig_sdraw.mk
index 4f85f69c25ac..95b2fbc9162f 100644
--- a/sd/UIConfig_sdraw.mk
+++ b/sd/UIConfig_sdraw.mk
@@ -114,6 +114,8 @@ $(eval $(call gb_UIConfig_add_uifiles,modules/sdraw,\
sd/uiconfig/sdraw/ui/insertslidesdialog \
sd/uiconfig/sdraw/ui/namedesign \
sd/uiconfig/sdraw/ui/notebookbar \
+   sw/uiconfig/swriter/ui/notebookbar_compact \
+   sw/uiconfig/swriter/ui/notebookbar_single \
sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact \
sd/uiconfig/sdraw/ui/notebookbar_groupedbar_full \
sd/uiconfig/sdraw/ui/paranumberingtab \
diff --git a/sd/uiconfig/sdraw/ui/notebookbar_compact.ui 
b/sd/uiconfig/sdraw/ui/notebookbar_compact.ui
new file mode 100644
index ..45c455a20bac
--- /dev/null
+++ b/sd/uiconfig/sdraw/ui/notebookbar_compact.ui
@@ -0,0 +1,19599 @@
+
+
+
+  
+  
+  
+  
+True
+False
+
+  
+True
+False
+.uno:ExtrusionToggle
+  
+
+
+  
+True
+False
+  
+
+
+  
+True
+False
+.uno:ExtrusionTiltDown
+  
+
+
+  
+True
+False
+.uno:ExtrusionTiltUp
+  
+
+
+  
+True
+False
+.uno:ExtrusionTiltLeft
+  
+
+
+  
+True
+False
+.uno:ExtrusionTiltRight
+  
+
+
+  
+True
+False
+  
+
+
+  
+True
+False
+.uno:Window3D
+  
+
+
+  
+True
+False
+  
+
+
+  
+True
+False
+.uno:NameGroup
+  
+
+
+  
+True
+False
+.uno:ObjectTitleDescription
+  
+
+  
+  
+True
+False
+
+  
+True
+False
+.uno:ChangeBezier
+  
+
+
+  
+True
+False
+.uno:ChangePolygon
+  
+
+
+  
+True
+False
+.uno:convert_to_contour
+  
+
+
+  
+True
+False
+.uno:ConvertInto3D
+  
+
+
+  
+True
+False
+.uno:ConvertInto3DLatheFast
+  
+
+
+  
+True
+False
+.uno:ConvertIntoBitmap
+  
+
+
+  
+True
+False
+.uno:ConvertIntoMetaFile
+  
+
+  
+  
+True
+False
+
+  
+True
+False
+.uno:ToggleObjectBezierMode
+  
+
+
+  
+True
+False
+.uno:ToggleObjectRotateMode
+  
+
+
+  
+ 

[Libreoffice-bugs] [Bug 125550] The color of the menu changes when opening a change tracked DOCX document saved by MS Word (OpenGL)

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125550

--- Comment #5 from Gabor Kelemen  ---
No repro on Linux either, but we saw this to happen reliably on two Win 8.1
machines at the office.

-- 
You are receiving this mail because:
You 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] online.git: loleaflet/reference.html loleaflet/src

2019-05-28 Thread Libreoffice Gerrit user
 loleaflet/reference.html  |   23 ++---
 loleaflet/src/layer/tile/TileLayer.js |4 +++
 loleaflet/src/map/Map.js  |4 +--
 loleaflet/src/map/handler/Map.WOPI.js |   36 --
 4 files changed, 48 insertions(+), 19 deletions(-)

New commits:
commit 51a63c0e7618acf6fbb536164030ebb7a9694aa1
Author: Jan Holesovsky 
AuthorDate: Tue May 28 13:09:24 2019 +0200
Commit: Jan Holesovsky 
CommitDate: Tue May 28 19:58:16 2019 +0200

Deprecate Views_Added and Views_Removed; implement Views_List instead.

This helps avoiding the situation when the state in the Online and in
the integration get out of sync.

The integration should always get the most current state via Views_List,
and if they want to implement eg. notification what view has joined or
has left, they should just compare the old and the new state.

Change-Id: I841f77419bf86a57f77e16f8c0bd08063f31f68a
Reviewed-on: https://gerrit.libreoffice.org/73103
Reviewed-by: Jan Holesovsky 
Tested-by: Jan Holesovsky 

diff --git a/loleaflet/reference.html b/loleaflet/reference.html
index 767293068..7cb520ab9 100644
--- a/loleaflet/reference.html
+++ b/loleaflet/reference.html
@@ -2890,19 +2890,36 @@ Editor to WOPI host
UserName: String
Color: Number
ReadOnly: Boolean
+   Deprecated: true;

A new member is added. ViewId is unique integer
identifying a session/view. UserId is user identity. UserName is
display name of the user. Color is RGB color integer
-   value. ReadOnly tells if the new view is opened as readonly.
+   value. ReadOnly tells if the new view is opened as 
readonly.
+   This message is deprecated, instead implement 
just
+   handling of Views_List which holds the same payload as
+   Get_Views_Resp.



View_Removed

ViewId: Number
-   
-   View with ViewId has closed the document.
+   Deprecated: true;
+   
+   View with ViewId has closed the document.
+   This message is deprecated, instead implement 
just
+   handling of Get_Views_Resp and if you need the info which view 
has
+   been added / removed, check against the previous state.
+   This message is deprecated, instead implement 
just
+   handling of Views_List which holds the same payload as
+   Get_Views_Resp.
+   
+   
+   
+   Views_List
+   See Get_Views_Resp.
+   Complete information about the currently connected views.



diff --git a/loleaflet/src/layer/tile/TileLayer.js 
b/loleaflet/src/layer/tile/TileLayer.js
index a60a5..6dc66544e 100644
--- a/loleaflet/src/layer/tile/TileLayer.js
+++ b/loleaflet/src/layer/tile/TileLayer.js
@@ -1067,6 +1067,10 @@ L.TileLayer = L.GridLayer.extend({
this._removeView(parseInt(viewInfoIdx));
}
}
+
+   // Sending postMessage about View_Added / View_Removed is
+   // deprecated, going forward we prefer sending the entire 
information.
+   this._map.fire('updateviewslist');
},
 
_onRenderFontMsg: function (textMsg, img) {
diff --git a/loleaflet/src/map/Map.js b/loleaflet/src/map/Map.js
index 30d81fa86..272f7fe1c 100644
--- a/loleaflet/src/map/Map.js
+++ b/loleaflet/src/map/Map.js
@@ -265,7 +265,7 @@ L.Map = L.Evented.extend({
if (viewInfo.userextrainfo !== undefined && 
viewInfo.userextrainfo.avatar !== undefined) {
this._viewInfoByUserName[viewInfo.username] = viewInfo;
}
-   this.fire('postMessage', {msgId: 'View_Added', args: {ViewId: 
viewInfo.id, UserId: viewInfo.userid, UserName: viewInfo.username, 
UserExtraInfo: viewInfo.userextrainfo, Color: 
L.LOUtil.rgbToHex(viewInfo.color), ReadOnly: viewInfo.readonly}});
+   this.fire('postMessage', {msgId: 'View_Added', args: 
{Deprecated: true, ViewId: viewInfo.id, UserId: viewInfo.userid, UserName: 
viewInfo.username, UserExtraInfo: viewInfo.userextrainfo, Color: 
L.LOUtil.rgbToHex(viewInfo.color), ReadOnly: viewInfo.readonly}});
 
// Fire last, otherwise not all events are handled correctly.
this.fire('addview', {viewId: viewInfo.id, username: 
viewInfo.username, extraInfo: viewInfo.userextrainfo, readonly: 
this.isViewReadOnly(viewInfo.id)});
@@ -277,7 +277,7 @@ L.Map = L.Evented.extend({
var username = this._viewInfo[viewid].username;
delete 
this._viewInfoByUserName[this._viewInfo[viewid].username];
   

[Libreoffice-bugs] [Bug 125541] Calc "format cells" does not leave background "as is"

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125541

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #1 from raal  ---
I can not confirm with Version: 6.3.0.0.alpha1+
Build ID: 53325b40b557cc84d8d21c1baa0ef8d3bfc00ab8
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3;

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

[Libreoffice-commits] core.git: sw/sdi sw/source

2019-05-28 Thread Miklos Vajna (via logerrit)
 sw/sdi/_frmsh.sdi |5 +
 sw/source/uibase/inc/frmsh.hxx|1 +
 sw/source/uibase/shells/frmsh.cxx |   13 +
 3 files changed, 19 insertions(+)

New commits:
commit 40c096508da7ee14f36715eee3185041f4a36ddd
Author: Miklos Vajna 
AuthorDate: Tue May 28 18:11:13 2019 +0200
Commit: Miklos Vajna 
CommitDate: Tue May 28 19:46:23 2019 +0200

sw: implement select-all for the frame shell

There is no reason why Ctrl-A should be a NOP when you have an image
selected.

No test, there is one in the cp-6.0 copy code, that coverage will
arrive as part of that copy code forward-port.

Change-Id: If0013ee0e9ff9a6fb038a22de7b5d3c76e5c52b9
Reviewed-on: https://gerrit.libreoffice.org/73118
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins

diff --git a/sw/sdi/_frmsh.sdi b/sw/sdi/_frmsh.sdi
index 6d02c04efdeb..398cd30a93ff 100644
--- a/sw/sdi/_frmsh.sdi
+++ b/sw/sdi/_frmsh.sdi
@@ -406,5 +406,10 @@ interface BaseTextFrame
 ExecMethod = Execute ;
 DisableFlags="SfxDisableFlags::SwOnProtectedCursor";
 ]
+SID_SELECTALL
+[
+ExecMethod = ExecMove ;
+StateMethod = NoState ;
+]
 }
 
diff --git a/sw/source/uibase/inc/frmsh.hxx b/sw/source/uibase/inc/frmsh.hxx
index f86e0d06501f..4b8a64c75823 100644
--- a/sw/source/uibase/inc/frmsh.hxx
+++ b/sw/source/uibase/inc/frmsh.hxx
@@ -35,6 +35,7 @@ public:
 virtual ~SwFrameShell() override;
 
 voidExecute(SfxRequest &);
+voidExecMove(SfxRequest& rReq);
 voidGetState(SfxItemSet &);
 voidExecFrameStyle(SfxRequest const & rReq);
 voidGetLineStyleState(SfxItemSet );
diff --git a/sw/source/uibase/shells/frmsh.cxx 
b/sw/source/uibase/shells/frmsh.cxx
index d0fead931a0b..dfb403b9ffcf 100644
--- a/sw/source/uibase/shells/frmsh.cxx
+++ b/sw/source/uibase/shells/frmsh.cxx
@@ -115,6 +115,19 @@ void SwFrameShell::InitInterface_Impl()
 GetStaticInterface()->RegisterObjectBar(SFX_OBJECTBAR_OBJECT, 
SfxVisibilityFlags::Invisible, ToolbarId::Frame_Toolbox);
 }
 
+void SwFrameShell::ExecMove(SfxRequest& rReq)
+{
+SwWrtShell& rSh = GetShell();
+sal_uInt16 nSlot = rReq.GetSlot();
+switch (nSlot)
+{
+case SID_SELECTALL:
+rSh.SelAll();
+rReq.Done();
+break;
+}
+}
+
 void SwFrameShell::Execute(SfxRequest )
 {
 //First those who do not need FrameMgr.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 120870] KDE5: UI is broken if opening a document with a video

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120870

Michael Weghorn  changed:

   What|Removed |Added

 Resolution|WORKSFORME  |FIXED

--- Comment #16 from Michael Weghorn  ---
Bisected this on master. The commit which made the issue go away is:

commit 18138417485aeba6c52d935c616dba829b24ffd8
Author: Mark Hung 
Date:   Mon Feb 18 21:51:57 2019 +0800

avmedia: set gstreamer gst_video_overlay size and position.

Have video fit to the media object size on the slide,
allow more complicated interactions.

Change-Id: Ice1fa4b521176ad7ed7f7d1d2b13e617e8282390
Reviewed-on: https://gerrit.libreoffice.org/67978
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

:04 04 c243c95fa0f66a54a2010c23bb5b53bdc9c76d4d
b41e23ebbedd982f93b98339e3d1ce0cb2da10c9 M  avmedia

-- 
You are receiving this mail because:
You 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 111392] FILESAVE: Calc exports chart as empty PDF

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111392

raal  changed:

   What|Removed |Added

 CC||vmik...@collabora.com
   Keywords||implementationError

--- Comment #9 from raal  ---
PDF export was added in this commit, but it never worked in calc's charts.

author  Miklos Vajna   2016-06-24 13:00:46 +0200
committer   Miklos Vajna   2016-06-24 11:51:01
+
commit  7d76bb251e0c88ff17282a33b801a5d17a434af5 (patch)
tree927e5ff1968764b40b070dca8e6aae8b3e9d25ce
parent  47443d720d5f2bee0993222fd6383a59056d8591 (diff)
vcl: add graphic export-as-pdf filter
In case the metafile was imported from a PDF originally, then this
allows storing the PDF stream next to the graphic. This means that e.g.
in Writer choosing 'Save' from the context menu of the graphic can write
the original PDF stream, not the replacement metafile.

-- 
You are receiving this mail because:
You 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 125520] EDITING: Calc: Error when dragging and dropping OLE objects with 'Insert as Copy'

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125520

Oliver Brinzing  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||oliver.brinz...@gmx.de

--- Comment #3 from Oliver Brinzing  ---
confirming

-- 
You are receiving this mail because:
You 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 125498] Can't insert any PNG image into document

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125498

--- Comment #12 from tantr...@ya.ru ---
(In reply to Michael Weghorn from comment #11)
> Is that PNG file located in some directory with a "special" path? 
No, not special: ~/Pictures (Cyrillic chars path here). 

> Does it work if you put it into /tmp/.
Yes, works fine if open same file from /tmp

> Also, does it happen with a fresh user profile, e.g. if you run LO with
> libreoffice -env:UserInstallation=file:///tmp/test123
Yes, error reproducible opening file from Cyrillic path, works fine from /tmp

P.S. Strange starts to work fine today. With my regular profile, stable
reproducible only with fresh user profile. as above. Weird: KDE or openSUSE
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-commits] core.git: icon-themes/breeze icon-themes/breeze_dark icon-themes/breeze_svg icon-themes/colibre icon-themes/colibre_svg icon-themes/sifr icon-themes/sifr_dark icon-themes/sifr_sv

2019-05-28 Thread andreas kainz (via logerrit)
 icon-themes/breeze/cmd/lc_photoalbumdialog.png  |binary
 icon-themes/breeze/cmd/sc_photoalbumdialog.png  |binary
 icon-themes/breeze_dark/cmd/lc_photoalbumdialog.png |binary
 icon-themes/breeze_dark/cmd/sc_photoalbumdialog.png |binary
 icon-themes/breeze_svg/cmd/lc_photoalbumdialog.svg  |6 +
 icon-themes/breeze_svg/cmd/sc_photoalbumdialog.svg  |6 +
 icon-themes/colibre/cmd/lc_photoalbumdialog.png |binary
 icon-themes/colibre/cmd/sc_photoalbumdialog.png |binary
 icon-themes/colibre_svg/cmd/lc_photoalbumdialog.svg |   22 
 icon-themes/colibre_svg/cmd/sc_photoalbumdialog.svg |   18 
 icon-themes/sifr/cmd/lc_photoalbumdialog.png|binary
 icon-themes/sifr_dark/cmd/lc_photoalbumdialog.png   |binary
 icon-themes/sifr_svg/cmd/lc_photoalbumdialog.svg|   10 +
 13 files changed, 62 insertions(+)

New commits:
commit 479ee00e388a50a8392e9704166b83754dbffac3
Author: andreas kainz 
AuthorDate: Tue May 28 14:45:51 2019 +0200
Commit: andreas_kainz 
CommitDate: Tue May 28 19:15:09 2019 +0200

tdf#125326 add photoalbumdialog icon to breeze, sifr and colibre

Change-Id: I33e7882ed2792a9d1f23ee42645efc4f5003f01d
Reviewed-on: https://gerrit.libreoffice.org/73099
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/icon-themes/breeze/cmd/lc_photoalbumdialog.png 
b/icon-themes/breeze/cmd/lc_photoalbumdialog.png
new file mode 100644
index ..3ef010584a15
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_photoalbumdialog.png 
differ
diff --git a/icon-themes/breeze/cmd/sc_photoalbumdialog.png 
b/icon-themes/breeze/cmd/sc_photoalbumdialog.png
new file mode 100644
index ..06c909ca51b2
Binary files /dev/null and b/icon-themes/breeze/cmd/sc_photoalbumdialog.png 
differ
diff --git a/icon-themes/breeze_dark/cmd/lc_photoalbumdialog.png 
b/icon-themes/breeze_dark/cmd/lc_photoalbumdialog.png
new file mode 100644
index ..1e663fc4dcad
Binary files /dev/null and 
b/icon-themes/breeze_dark/cmd/lc_photoalbumdialog.png differ
diff --git a/icon-themes/breeze_dark/cmd/sc_photoalbumdialog.png 
b/icon-themes/breeze_dark/cmd/sc_photoalbumdialog.png
new file mode 100644
index ..4153d0ea491b
Binary files /dev/null and 
b/icon-themes/breeze_dark/cmd/sc_photoalbumdialog.png differ
diff --git a/icon-themes/breeze_svg/cmd/lc_photoalbumdialog.svg 
b/icon-themes/breeze_svg/cmd/lc_photoalbumdialog.svg
new file mode 100644
index ..b4df49a01427
--- /dev/null
+++ b/icon-themes/breeze_svg/cmd/lc_photoalbumdialog.svg
@@ -0,0 +1,6 @@
+http://www.w3.org/2000/svg; viewBox="0 0 24 24">
+  
+
diff --git a/icon-themes/breeze_svg/cmd/sc_photoalbumdialog.svg 
b/icon-themes/breeze_svg/cmd/sc_photoalbumdialog.svg
new file mode 100644
index ..e4893e7a4903
--- /dev/null
+++ b/icon-themes/breeze_svg/cmd/sc_photoalbumdialog.svg
@@ -0,0 +1,6 @@
+http://www.w3.org/2000/svg; viewBox="0 0 16 16">
+ 
+
diff --git a/icon-themes/colibre/cmd/lc_photoalbumdialog.png 
b/icon-themes/colibre/cmd/lc_photoalbumdialog.png
new file mode 100644
index ..54fd8ea00c0b
Binary files /dev/null and b/icon-themes/colibre/cmd/lc_photoalbumdialog.png 
differ
diff --git a/icon-themes/colibre/cmd/sc_photoalbumdialog.png 
b/icon-themes/colibre/cmd/sc_photoalbumdialog.png
new file mode 100644
index ..aa42ab051c8a
Binary files /dev/null and b/icon-themes/colibre/cmd/sc_photoalbumdialog.png 
differ
diff --git a/icon-themes/colibre_svg/cmd/lc_photoalbumdialog.svg 
b/icon-themes/colibre_svg/cmd/lc_photoalbumdialog.svg
new file mode 100644
index ..d308faac7947
--- /dev/null
+++ b/icon-themes/colibre_svg/cmd/lc_photoalbumdialog.svg
@@ -0,0 +1,22 @@
+http://www.w3.org/2000/svg; viewBox="0 0 24 24">
+  
+  
+  
+  
+  
+
diff --git a/icon-themes/colibre_svg/cmd/sc_photoalbumdialog.svg 
b/icon-themes/colibre_svg/cmd/sc_photoalbumdialog.svg
new file mode 100644
index ..48064a2352d4
--- /dev/null
+++ b/icon-themes/colibre_svg/cmd/sc_photoalbumdialog.svg
@@ -0,0 +1,18 @@
+http://www.w3.org/2000/svg; viewBox="0 0 16 16">
+  
+  
+  
+  
+
diff --git a/icon-themes/sifr/cmd/lc_photoalbumdialog.png 
b/icon-themes/sifr/cmd/lc_photoalbumdialog.png
new file mode 100644
index ..f2a0ceaef390
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_photoalbumdialog.png differ
diff --git a/icon-themes/sifr_dark/cmd/lc_photoalbumdialog.png 
b/icon-themes/sifr_dark/cmd/lc_photoalbumdialog.png
new file mode 100644
index ..b5e16c092f78
Binary files /dev/null and b/icon-themes/sifr_dark/cmd/lc_photoalbumdialog.png 
differ
diff --git a/icon-themes/sifr_svg/cmd/lc_photoalbumdialog.svg 
b/icon-themes/sifr_svg/cmd/lc_photoalbumdialog.svg
new file mode 100644
index ..d0c7426905dc
--- /dev/null
+++ b/icon-themes/sifr_svg/cmd/lc_photoalbumdialog.svg
@@ -0,0 +1,10 @@
+http://www.w3.org/2000/svg; viewBox="0 0 24 24">
+  
+  
+

[Libreoffice-bugs] [Bug 125326] Tabbed Interface Add Photo Album in Insert Tab

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125326

--- Comment #4 from Commit Notification 
 ---
andreas kainz committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/479ee00e388a50a8392e9704166b83754dbffac3%5E%21

tdf#125326 add photoalbumdialog icon to breeze, sifr and colibre

It will be available in 6.3.0.

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

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

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

[Libreoffice-bugs] [Bug 125547] Arc is displayed as a straight line

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125547

--- Comment #6 from Regina Henschel  ---
The default start angle for an arc is -90deg, default end value is 0deg. So if
the shape wants to use a start angle of 0deg, it has to be written as direct
value into the file. That is not the case, at least LibreOffice gets a "not
set", when it opens the file. In case a value is not set, the default value is
used. So the adjustment values tell, that an arc from -90deg to -81deg has to
be drawn.

The commands given in the path describe an arc from (43200|21600) to
(24979|266) in a rectangle of left|top = (0|0) to right|bottom =
(43200||43200).

The effect of this mismatch is, that a huge width of the shape is calculated.
If you zoom out, you see the complete shape. Resize it to a reasonable width
and zoom back to 100%. Now you see, that the line is not straight, but that it
is an arc with start angle -90deg and end angle -81deg.

PowerPoint 365 initially evaluates the path and not the handles. LibreOffice
regenerates the path from the handles and thus has a different result.

I cannot produce such file from scratch. I suspect, that the angles have been
manually set using a script. I'm not sure if it's worth the effort to include
parts in the code that repair such inconsistencies within the 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 125545] performance issue caused by comments?

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125545

--- Comment #5 from b.  ---
@xisco: 

yes, you're right, i *hope* i found the source of the problem, 

i started this bug / thread just as an shorter approach to the problem, i'm in
doubt whether plenty people would invest the time and energy to read through
the other thread ... 

at this moment i can confirm that the problem is still present in ver.: 

Version: 6.3.0.0.alpha1+ (x64)
Build ID: 63b39fe87644587210214198fb67d6b3fb3343c5
CPU threads: 8; OS: Windows 6.1; UI render: default; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-05-27_03:06:43
Locale: de-DE (de_DE); UI-Language: en-US
Calc: *unthreaded*, 

imho it is important to kill this out, but may be i'm the only user with a big
file using comments ... 

while i'm writing this my computer is busy for more than 30 minutes copying
four rows of very simple test data without any formula (in columns A:CH), but
with an comment - all the same - in about every tenth cell, to rows 1:12000.
'not responding', up to 25% percent of cpu load on a modern machine,
aggressively eating memory, fans on to medium ... there is something too
complicated with the representation and / or handling of comments, may be an
erroneous recursion? 

after the copying the complete area is kept marked and nothing - neither
mouseclick than cursor keys - produced 'workable effects' for the next hour,
just cpu load and fan noise. 

just check yourself. 

(maybe it's an occurence of #76324, unresolved in the buglist for more than 5
years now) 

(imho a comment is a very simple data structure, a string related to only one
cell, no formulas etc., such a thing shouldn't kill the program?)

whoever likes to risk the usability of his computer is invited to load the file
i'll provide with the next comment, save your other work beforehand! 

reg. 



b.

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

2019-05-28 Thread Grzegorz Araminowicz (via logerrit)
 oox/source/drawingml/diagram/diagramlayoutatoms.cxx |6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

New commits:
commit baef4e11dd9d8c019dcf8667f2db7d7c86fd
Author: Grzegorz Araminowicz 
AuthorDate: Tue May 28 14:41:06 2019 +0200
Commit: Grzegorz Araminowicz 
CommitDate: Tue May 28 19:05:15 2019 +0200

SmartArt: simplify text body empty condition

Change-Id: Ie1c14bdc4f4db6f8f919433d40ea2281736c38ed
Reviewed-on: https://gerrit.libreoffice.org/73097
Tested-by: Jenkins
Reviewed-by: Grzegorz Araminowicz 

diff --git a/oox/source/drawingml/diagram/diagramlayoutatoms.cxx 
b/oox/source/drawingml/diagram/diagramlayoutatoms.cxx
index a9b2f0c1c5a1..675806767191 100644
--- a/oox/source/drawingml/diagram/diagramlayoutatoms.cxx
+++ b/oox/source/drawingml/diagram/diagramlayoutatoms.cxx
@@ -1153,12 +1153,8 @@ void AlgAtom::layoutShape( const ShapePtr& rShape,
 }
 
 TextBodyPtr pTextBody = rShape->getTextBody();
-if (!pTextBody ||
-pTextBody->getParagraphs().empty() ||
-pTextBody->getParagraphs().front()->getRuns().empty())
-{
+if (!pTextBody || pTextBody->isEmpty())
 break;
-}
 
 // adjust text size to fit shape
 if (fFontSize != 0)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 114386] Combining character overlaped if it is placed very higher (Doulus SIL Cipher)

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114386

Volga  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 125498] Can't insert any PNG image into document

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125498

--- Comment #11 from Michael Weghorn  ---
Is that PNG file located in some directory with a "special" path? Does it work
if you put it into /tmp/.

Also, does it happen with a fresh user profile, e.g. if you run LO with

libreoffice -env:UserInstallation=file:///tmp/test123

-- 
You are receiving this mail because:
You 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 114386] Combining character overlaped if it is placed very higher (Doulus SIL Cipher)

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114386

--- Comment #6 from Volga  ---
Created attachment 151745
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151745=edit
Snapshot on LibO 6.2.4

OK, the problem is still there.

版本: 6.2.4.2 (x64)
Build ID: 2412653d852ce75f65fbfa83fb7e7b669a126d64
CPU 线程: 4; 操作系统: Windows 10.0; UI 渲染: 默认; VCL: win; 
区域语言: zh-CN (zh_CN); UI 语言: zh-CN
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 111392] FILESAVE: Calc exports chart as empty PDF

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111392

raal  changed:

   What|Removed |Added

 CC||bagust...@yahoo.com

--- Comment #8 from raal  ---
*** Bug 125558 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 125558] Cannot import Libreoffice calc to pdf

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125558

raal  changed:

   What|Removed |Added

 CC||r...@post.cz
 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from raal  ---
Hello,

Thank you for submitting the bug. The bug has previously been reported, so this
bug will be added as a duplicate of it. You will automatically be CCed to
updates made to the other bug.

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

-- 
You are receiving this mail because:
You 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 125556] FILEOPEN: URL fragment leaked from one object to another when importing Powerpoint ppt file

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125556

raal  changed:

   What|Removed |Added

 CC||r...@post.cz
   Keywords||regression
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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

[Libreoffice-bugs] [Bug 125559] Error al modificar campos en la versión Libreoffice 6.2.4.2

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125559

raal  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from raal  ---
Hello,
Thank you for reporting the bug. Unfortunately without clear steps to reproduce
it, we cannot track down the origin of the problem. Please provide a clearer
set of step-by-step instructions on how to reproduce the problem. In english,
please.

-- 
You are receiving this mail because:
You 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 124086] copy of the contents of the cell where it finds the cursor

2019-05-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124086

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #8 from raal  ---
I think I can reproduce it, but I don't think it's a bug. You drag and drop
text to the cell. It's reproducible when the text is hyperlink.

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

  1   2   3   4   5   >