[Libreoffice-bugs] [Bug 47489] PIVOTTABLE:Weighted average in pivottable?

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47489

Alex  changed:

   What|Removed |Added

Version|5.3.3.2 release |3.5.1 release

-- 
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 47489] PIVOTTABLE:Weighted average in pivottable?

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47489

Alex  changed:

   What|Removed |Added

Version|3.5.1 release   |5.3.3.2 release

-- 
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 105910] Allow defaults to be used as parameters for RTF control words without explicit parameters

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105910

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

Welcome to LibreOffice!

Please join #libreoffice-dev, and don't hesitate to ask if you have any
questions. I'll try to provide any help necessary to get you going.

-- 
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: common/Seccomp.cpp kit/Kit.cpp loleaflet/admin.strings.js loleaflet/dist loleaflet/src wsd/Admin.cpp wsd/LOOLWSD.cpp

2017-06-12 Thread Ashod Nakashian
 common/Seccomp.cpp |   17 ---
 kit/Kit.cpp|5 ---
 loleaflet/admin.strings.js |7 ++--
 loleaflet/dist/admin/adminSettings.html|   43 +
 loleaflet/src/admin/AdminSocketSettings.js |1 
 wsd/Admin.cpp  |   14 -
 wsd/LOOLWSD.cpp|3 --
 7 files changed, 23 insertions(+), 67 deletions(-)

New commits:
commit 44d8876f272abe50b563049eb605a45017a94e5d
Author: Ashod Nakashian 
Date:   Tue Jun 13 00:22:42 2017 -0400

Remove data rlimit

Seems to have no effect, so gone in
favor of RLIMIT_AS (virtual memeory).

Change-Id: I210879ec9285f420c9f9839cdabf45c42d865fb3
Reviewed-on: https://gerrit.libreoffice.org/38720
Reviewed-by: Ashod Nakashian 
Tested-by: Ashod Nakashian 

diff --git a/common/Seccomp.cpp b/common/Seccomp.cpp
index 52fedb01..c8ac7b39 100644
--- a/common/Seccomp.cpp
+++ b/common/Seccomp.cpp
@@ -237,23 +237,6 @@ bool handleSetrlimitCommand(const 
std::vector& tokens)
 
 return true;
 }
-else if (tokens[1] == "limit_data_mem_kb")
-{
-rlim_t lim = std::stoi(tokens[2]) * 1024;
-if (lim <= 0)
-lim = RLIM_INFINITY;
-
-rlimit rlim = { lim, lim };
-if (setrlimit(RLIMIT_DATA, ) != 0)
-LOG_SYS("Failed to set RLIMIT_DATA to " << lim << " bytes.");
-
-if (getrlimit(RLIMIT_DATA, ) == 0)
-LOG_INF("RLIMIT_DATA is " << rlim.rlim_max << " bytes after 
setting it to " << lim << " bytes.");
-else
-LOG_SYS("Failed to get RLIMIT_DATA.");
-
-return true;
-}
 else if (tokens[1] == "limit_stack_mem_kb")
 {
 rlim_t lim = std::stoi(tokens[2]) * 1024;
diff --git a/kit/Kit.cpp b/kit/Kit.cpp
index b445c31f..edf4942f 100644
--- a/kit/Kit.cpp
+++ b/kit/Kit.cpp
@@ -1772,11 +1772,6 @@ void lokit_main(const std::string& childRoot,
 else
 LOG_SYS("Failed to get RLIMIT_AS.");
 
-if (getrlimit(RLIMIT_DATA, ) == 0)
-LOG_INF("RLIMIT_DATA is " << rlim.rlim_max << " bytes.");
-else
-LOG_SYS("Failed to get RLIMIT_DATA.");
-
 if (getrlimit(RLIMIT_STACK, ) == 0)
 LOG_INF("RLIMIT_STACK is " << rlim.rlim_max << " bytes.");
 else
diff --git a/loleaflet/admin.strings.js b/loleaflet/admin.strings.js
index 0850a61a..896dcbc3 100644
--- a/loleaflet/admin.strings.js
+++ b/loleaflet/admin.strings.js
@@ -32,10 +32,9 @@ l10nstrings.strMemoryStatsCachesize = _('Cache size of 
memory statistics');
 l10nstrings.strMemoryStatsInterval = _('Time interval of memory statistics (in 
ms)');
 l10nstrings.strCpuStatsCachesize = _('Cache size of CPU statistics');
 l10nstrings.strCpuStatsInterval = _('Time interval of CPU statistics (in ms)');
-l10nstrings.strLimitVirtMemMb = _('Maximum Document process virtual memory (in 
MB)');
-l10nstrings.strLimitDataMemKb = _('Maximum Document process data memory (in 
KB)');
-l10nstrings.strLimitStackMemKb = _('Maximum Document process stack memory (in 
KB)');
-l10nstrings.strLimitFileSizeMb = _('Maximum file size allowed to write to disk 
(in MB)');
+l10nstrings.strLimitVirtMemMb = _('Maximum Document process virtual memory (in 
MB) - reduce only');
+l10nstrings.strLimitStackMemKb = _('Maximum Document process stack memory (in 
KB) - reduce only');
+l10nstrings.strLimitFileSizeMb = _('Maximum file size allowed to write to disk 
(in MB) - reduce only');
 
 if (module) {
module.exports = l10nstrings;
diff --git a/loleaflet/dist/admin/adminSettings.html 
b/loleaflet/dist/admin/adminSettings.html
index 668c67d9..cbca6a3a 100644
--- a/loleaflet/dist/admin/adminSettings.html
+++ b/loleaflet/dist/admin/adminSettings.html
@@ -75,29 +75,26 @@
 
 
   document.write(l10nstrings.strSettings)
- 
-   document.write(l10nstrings.strMemoryStatsCachesize)
-   
-   document.write(l10nstrings.strMemoryStatsInterval)
-   
-   document.write(l10nstrings.strCpuStatsCachesize)
-   
-   document.write(l10nstrings.strCpuStatsInterval)
-   
-   document.write(l10nstrings.strLimitVirtMemMb)
-   
-   document.write(l10nstrings.strLimitDataMemKb)
-   
-   document.write(l10nstrings.strLimitStackMemKb)
-   
-   document.write(l10nstrings.strLimitFileSizeMb)
-   
-   document.write('
') - - - - - + +document.write(l10nstrings.strMemoryStatsCachesize) + +document.write(l10nstrings.strMemoryStatsInterval) + +

[Libreoffice-bugs] [Bug 108483] Only 1 file can be opened at once using quickstarter

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108483

--- Comment #2 from andis.lazd...@gmail.com ---
Hello!

It happens with new profile of parallel installation, as well as with ,y own
profile.

-- 
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 108185] Incorrect font formatting operations in cells with Prestige Elite font

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108185

Buovjaga  changed:

   What|Removed |Added

 CC||ipla...@tuta.io

--- Comment #18 from Buovjaga  ---
Alex: it says here it is from URW++:
https://www.myfonts.com/fonts/urw/prestige-elite/
Doesn't that mean it is indeed Type 1?
Kevin: can you please check it by looking at the font properties.

-- 
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 108263] Strange Comment behavior when moving or copying sheet from one Calc document to another

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108263

--- Comment #7 from Buovjaga  ---
(In reply to Robert Monnier from comment #6)
> (In reply to Alex Thurgood from comment #5)
> > Please also indicate which version of macOS you are using.
> 
> Version of Mac OS is 10.11.1

Did you try with LibreOffice 5.3.3?

-- 
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 108498] New: Character styles get out of sync with default paragraph style

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108498

Bug ID: 108498
   Summary: Character styles get out of sync with default
paragraph style
   Product: LibreOffice
   Version: 5.3.3.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: khanson...@gmail.com

It is my understanding that that character styles inherit from the default
paragraph style. To see this, make a character style called "Small" with font
size set to 80%, and apply it to some default text and a heading -- both will
be the same size, 80% of the default style font size.

However, changes to default paragraph style seem not to propagate to character
styles. For example, change the font size, say from 12pt to 20pt, and then
create a "Small" character style as above and apply it. The result will be
10.8pt, not 18pt. Changing the order of these steps doesn't seem to make a
difference. While creating or modifying any character style, the font size
shown is also the old one (12 pt), which makes it pretty clear that something
is not being updated.

Remembering some weirdness between paragraph styles and Basic Fonts menu that I
experienced in the past, I tried manipulating the "default" font size from
there. Sure enough, the changes are reflected in both the default paragraph and
character styles, and the font size shown in the character style menus.

There are some complications, though. First, existing character styles with
relative font sizes still aren't updated. This suggests that there may be an
additional problem, like the relative font size being stored as an absolute one
(though it still displays as a relative size in the interface).

Second, I recall times when after modifying the default paragraph style,
subsequent changes through Basic Fonts had no effect. That is, until clicking,
Default, Okay, then changing the font there once again. I can't replicate this
at the moment, though.

-- 
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 91764] Arabic diacritics cannot be found

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91764

--- Comment #10 from zahra  ---
hello again all.
here you are another steps to reproduce:
1- copy شُكر in to writer.
2- go to the beginning of this word.
3- press left arrow key to navigate letter by letter and go to the end by left
arrow key.
4- copy this word in wordpad or ms word and do the same in steps 2 and 3 and
compare the result.
4
expected result: شُكر has four characters and libreoffice should consider ُ a
seperate letter like other characters.

actual result: ُ is not consider as a separate letter and we cant find it and
edit it using left arrow key.

there is no problem in using diacritics in wordpad and ms word.

ُ is one example of diacritics and the problem is true for all diacritics
including َ ِ ُ ّ ْ ً ٌ ٍ

-- 
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 91764] Arabic diacritics cannot be found

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91764

--- Comment #9 from zahra  ---
(In reply to Urmas from comment #8)
> It is not a dup of #100854, as the latter deals with keyboard navigation,
> and this one with searching.
> 
> Arabic diacritics indeed cannot be found via search/replace.

hello.
its a duplicate of bug 100854 which i reported.
both problems are about diacritics in farsi and arabic and i know that if one
bug is solved, the other one is solved too!

-- 
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 103596] Support OpenType Font Variation based text layout

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103596

Volga  changed:

   What|Removed |Added

 Blocks||108497


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108497
[Bug 108497] Converting OpenType Font Variation instances before printing and
experting to PDF
-- 
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 108497] New: Converting OpenType Font Variation instances before printing and experting to PDF

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108497

Bug ID: 108497
   Summary: Converting OpenType Font Variation instances before
printing and experting to PDF
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: shanshandehongx...@outlook.com

Description:
Once we set support for OpenType Font Variation, we need to implement a
converter to convert its instances into static glyphs before variable font used
for printing and experting to PDF. According to OpenType Font Variations
Overview:[1]

“In certain application workflows, it may be necessary to dynamically generate
a static font resource for a particular instance — that is, conventional,
non-variation font tables that use interpolated values for a particular
instance. This may be needed in order to provide font data to legacy software
or data formats that do not understand or support variable fonts, such as
legacy printer drivers, or PDF or XPS files with embedded font data. ”

==Ref==
[1] https://www.microsoft.com/typography/otspec/otvaroverview.htm

Steps to Reproduce:
-

Actual Results:  
-

Expected Results:
-


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:54.0) Gecko/20100101
Firefox/54.0

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


[Libreoffice-bugs] [Bug 108497] Converting OpenType Font Variation instances before printing and experting to PDF

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108497

Volga  changed:

   What|Removed |Added

 Depends on||103596


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103596
[Bug 103596] Support OpenType Font Variation based text layout
-- 
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 105910] Allow defaults to be used as parameters for RTF control words without explicit parameters

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105910

--- Comment #1 from Kunal Jain  ---

Hey, I'd like to work on this and this would be my first easyHack. It would be
very helpful if I can talk to you once before I start working on 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 108496] FILEOPEN: DOCX file numbered list restarted from 1 following section break assumes previous numbered list sequence after 1

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108496

--- Comment #2 from Gabriel Bowater  ---
Created attachment 133993
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133993=edit
Document showing different rendering under LibreOffice 5.2.2.3 and Microsoft
Office 365

-- 
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 108496] FILEOPEN: DOCX file numbered list restarted from 1 following section break assumes previous numbered list sequence after 1

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108496

--- Comment #1 from Gabriel Bowater  ---
Created attachment 133992
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133992=edit
Numbered list assuming pre-page break numbering order after restarting from one
DOCX

-- 
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 108496] New: FILEOPEN: DOCX file numbered list restarted from 1 following section break assumes previous numbered list sequence after 1

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108496

Bug ID: 108496
   Summary: FILEOPEN: DOCX file numbered list restarted from 1
following section break assumes previous numbered list
sequence after 1
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gabrielbowa...@catalyst.net.nz

Description:
When opened under Microsoft Office attached file has a list of 1,2 on the first
page and then another list of 1,2 on the second page. When opened with
LibreOffice 5.2.2.3 the list on the second page has the incorrect sequence 1,3.

Steps to Reproduce:
1. Open file under LibreOffice
2. Check numbering on second page 
3. Order reads 1,3

Actual Results:  
Second numbered list assume numbers of previous list after the first "1"

Expected Results:
Second numbered list follows correct sequence 


Reproducible: Always

User Profile Reset: No - tested on multiple systems.

Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/58.0.3029.110 Safari/537.36

-- 
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 108476] Settings dialog: Disable direct cursor options when direct cursor is disabled

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108476

Xisco Faulí  changed:

   What|Removed |Added

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

-- 
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 108493] FILEOPEN: DOCX file numbered list number in wrong place - not preserving hanging indent

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108493

Gabriel Bowater  changed:

   What|Removed |Added

Summary|FILE OPEN: DOCX file|FILEOPEN: DOCX file
   |numbered list number in |numbered list number in
   |wrong place - not   |wrong place - not
   |preserving hanging indent   |preserving hanging indent

-- 
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 108495] New: Start Center filename display limit too short

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108495

Bug ID: 108495
   Summary: Start Center filename display limit too short
   Product: LibreOffice
   Version: 5.3.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: khanson...@gmail.com

Description:
In my work I have many documents with long names, often with shared prefixes.

Example:
J1 L3 Conversation - What did you you last weekend (2 person version)
J1 L3 Conversation - What did you you last weekend (3 person version)
J1 L3 Conversation - What did you you last weekend (3 person version, v2)

On my system (Kubuntu 16.04 w/ Plasma 5.8), these are cut off after the hyphen
in the Start Center.

Normally I have a file manager (Dolphin) open with many tabs, all set to
"details" view  with a wide filename column. But suppose I wanted to use LO to
open recent documents (on any system). Having to mouse hover over every file to
see the full name would be frustrating, especially as the number of similar
files rises.

The simplest fix would be to wrap the title over 3 lines like the template
manager does. In fact, the amount of whitespace/padding used by both the Start
Center and template manager is quite excessive at the moment.

A better long-term solution would be to add a text-only list view like a
file-manager. Actually, I would prefer this in general, because page previews
are a terrible way to identify text-heavy documents and blank templates. (I
don't know what, if any plans there are regarding development of this UI
component.)

Steps to Reproduce:
Open the Start Center by any method.

Actual Results:  
n/a

Expected Results:
n/a


Reproducible: Always

User Profile Reset: 

Additional Info:


User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:53.0) Gecko/20100101
Firefox/53.0

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


[Libreoffice-bugs] [Bug 108421] LOOL: Access to file denied: /usr/bin/jails

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108421

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Aron Budea  ---
Hm, it shouldn't look for /usr/bin/jails, but for something like
/opt/lool/child-roots/ , and it's set in the systemd config file, the parameter
is child_root_path. Can you check?

-- 
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


writer and MS .docx spacing

2017-06-12 Thread mdn
Hello,
One of my users has encountered a very strange .docx problem where
spacing can't be deleted and when deleted changes the spacing of
surrounding text (see the picture).
I have fixed the problem by writing from scratch the whole document.

If I can help fix this possible error for other users I can share the
document but even tho I have normally deleted all private information I
would like to share it with one of the developers via PGP.

If a dev is interested to have the document please contact me.

I wish you all a good day.

-- 
Please be kind enough to use GPG for our future conversations:
https://emailselfdefense.fsf.org/en/
If this email isn't PGP signed then it isn't mine.

-If you can't compile it dump it.

Note:I do not agree to any CoCs.
*Emancipate yourselves from mental slavery*
-Marcus Garvey


signature.asc
Description: OpenPGP digital signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Branch 'libreoffice-5-4' - forms/source

2017-06-12 Thread Eike Rathke
 forms/source/component/ComboBox.cxx |2 +-
 forms/source/component/ListBox.cxx  |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 1ac550cb9e9379b32853518f9e366e0620ae2f69
Author: Eike Rathke 
Date:   Tue Jun 13 03:11:53 2017 +0200

Fix subsequentcheck, TYPEDITEMLIST has to be OPTIONAL, tdf#108413 follow-up

Change-Id: Idb74536b9fa3837e36ae4fbb529d09b6218c80d8
(cherry picked from commit a1ace08b5b86a76e7275dcef2545a7d52ae2ed2d)
Reviewed-on: https://gerrit.libreoffice.org/38719
Reviewed-by: Eike Rathke 
Tested-by: Eike Rathke 

diff --git a/forms/source/component/ComboBox.cxx 
b/forms/source/component/ComboBox.cxx
index b5c43633077f..f41d0e247a4b 100644
--- a/forms/source/component/ComboBox.cxx
+++ b/forms/source/component/ComboBox.cxx
@@ -303,7 +303,7 @@ void OComboBoxModel::describeFixedProperties( Sequence< 
Property >& _rProps ) co
 DECL_BOOL_PROP1(EMPTY_IS_NULL,  BOUND);
 DECL_PROP1(DEFAULT_TEXT,OUString,BOUND);
 DECL_PROP1(STRINGITEMLIST,  Sequence< OUString >,BOUND);
-DECL_PROP1(TYPEDITEMLIST,   Sequence< Any >,BOUND);
+DECL_PROP1(TYPEDITEMLIST,   Sequence< Any >,OPTIONAL);
 END_DESCRIBE_PROPERTIES();
 }
 
diff --git a/forms/source/component/ListBox.cxx 
b/forms/source/component/ListBox.cxx
index bfd531624d2c..76eadaa64afa 100644
--- a/forms/source/component/ListBox.cxx
+++ b/forms/source/component/ListBox.cxx
@@ -494,7 +494,7 @@ namespace frm
 DECL_PROP2(SELECT_VALUE,Any,
BOUND, TRANSIENT);
 DECL_PROP1(DEFAULT_SELECT_SEQ,  Sequence,
BOUND);
 DECL_PROP1(STRINGITEMLIST,  Sequence< OUString >,BOUND);
-DECL_PROP1(TYPEDITEMLIST,   Sequence< Any >,BOUND);
+DECL_PROP1(TYPEDITEMLIST,   Sequence< Any >,OPTIONAL);
 END_DESCRIBE_PROPERTIES();
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-06-12 Thread Eike Rathke
 forms/source/component/ComboBox.cxx |2 +-
 forms/source/component/ListBox.cxx  |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit a1ace08b5b86a76e7275dcef2545a7d52ae2ed2d
Author: Eike Rathke 
Date:   Tue Jun 13 03:11:53 2017 +0200

Fix subsequentcheck, TYPEDITEMLIST has to be OPTIONAL, tdf#108413 follow-up

Change-Id: Idb74536b9fa3837e36ae4fbb529d09b6218c80d8

diff --git a/forms/source/component/ComboBox.cxx 
b/forms/source/component/ComboBox.cxx
index f17586d05982..240c4179febd 100644
--- a/forms/source/component/ComboBox.cxx
+++ b/forms/source/component/ComboBox.cxx
@@ -303,7 +303,7 @@ void OComboBoxModel::describeFixedProperties( Sequence< 
Property >& _rProps ) co
 DECL_BOOL_PROP1(EMPTY_IS_NULL,  BOUND);
 DECL_PROP1(DEFAULT_TEXT,OUString,BOUND);
 DECL_PROP1(STRINGITEMLIST,  Sequence< OUString >,BOUND);
-DECL_PROP1(TYPEDITEMLIST,   Sequence< Any >,BOUND);
+DECL_PROP1(TYPEDITEMLIST,   Sequence< Any >,OPTIONAL);
 END_DESCRIBE_PROPERTIES();
 }
 
diff --git a/forms/source/component/ListBox.cxx 
b/forms/source/component/ListBox.cxx
index f1ba24325e00..60de8e2f7468 100644
--- a/forms/source/component/ListBox.cxx
+++ b/forms/source/component/ListBox.cxx
@@ -494,7 +494,7 @@ namespace frm
 DECL_PROP2(SELECT_VALUE,Any,
BOUND, TRANSIENT);
 DECL_PROP1(DEFAULT_SELECT_SEQ,  Sequence,
BOUND);
 DECL_PROP1(STRINGITEMLIST,  Sequence< OUString >,BOUND);
-DECL_PROP1(TYPEDITEMLIST,   Sequence< Any >,BOUND);
+DECL_PROP1(TYPEDITEMLIST,   Sequence< Any >,OPTIONAL);
 END_DESCRIBE_PROPERTIES();
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 108493] FILE OPEN: DOCX file numbered list number in wrong place - not preserving hanging indent

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108493

Gabriel Bowater  changed:

   What|Removed |Added

Version|5.3.3.2 release |unspecified

-- 
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 108494] With cursor at specific places, classification positions watermark incorrectly

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108494

Aron Budea  changed:

   What|Removed |Added

 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 108494] New: With cursor at specific places, classification positions watermark incorrectly

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108494

Bug ID: 108494
   Summary: With cursor at specific places, classification
positions watermark incorrectly
   Product: LibreOffice
   Version: 5.2.3.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: implementationError
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@caesar.elte.hu
CC: szymon.k...@collabora.com

Created attachment 133991
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133991=edit
Screenshot

- In Writer, keep pressing Enter until you have 3 pages.
- Go back to the bottom of 2nd page (doesn't have to be the last line, but
close to bottom).
- Enable TSCP Classification toolbar, and on the toolbar select Intellectual
Property: Confidential.

=> Watermark on 2nd page is positioned incorrectly, and overlaps the next page.
(see attached screenshot)

The bug also occurs with the new watermark feature that is independent from
classification.

Reproduced using LO 5.2.3.3 & 5.4beta1 / Ubuntu 17.04.

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


[Libreoffice-bugs] [Bug 108493] FILE OPEN: DOCX file numbered list number in wrong place - not preserving hanging indent

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108493

--- Comment #2 from Gabriel Bowater  ---
Created attachment 133990
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133990=edit
Showing difference in rendering between Office 365 and LibreOffice

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


[Libreoffice-bugs] [Bug 108493] FILE OPEN: DOCX file numbered list number in wrong place - not preserving hanging indent

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108493

--- Comment #1 from Gabriel Bowater  ---
Created attachment 133989
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133989=edit
File with indent problem on number 1 of numbered list

-- 
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 108493] New: FILE OPEN: DOCX file numbered list number in wrong place - not preserving hanging indent

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108493

Bug ID: 108493
   Summary: FILE OPEN: DOCX file numbered list number in wrong
place - not preserving hanging indent
   Product: LibreOffice
   Version: 5.3.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gabrielbowa...@catalyst.net.nz

Description:
When opening attached document in LibreOffice 5.2.2.3 the first level of the
numbered list hierarchy doesn't have the hanging indent that the document has
when opened in Microsoft Office

Steps to Reproduce:
1. Open document 
2. Check indentation of item "1."
3. Item has undivided indent when it should be a hanging indent

Actual Results:  
First level of numbered list has an undivided indent, meaning the number is
rendered flush with the text

Expected Results:
First level of numbered list should be rendered with a hanging indent to the
number is offset from the text block


Reproducible: Always

User Profile Reset: No - confirmed across multiple systems

Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/58.0.3029.110 Safari/537.36

-- 
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: starmath/source

2017-06-12 Thread Takeshi Abe
 starmath/source/mathtype.cxx |   14 +++---
 starmath/source/mathtype.hxx |4 ++--
 2 files changed, 9 insertions(+), 9 deletions(-)

New commits:
commit 94662151fef3845aa7cf32dbd9d60fe10bc4a3c5
Author: Takeshi Abe 
Date:   Mon Jun 12 22:32:37 2017 +0900

starmath: SvStream::Seek()/Tell() uses sal_uInt64, not sal_uLong

Change-Id: I210a9969f4bf6a1dc5c199836abec08d78968c36
Reviewed-on: https://gerrit.libreoffice.org/38702
Tested-by: Jenkins 
Reviewed-by: Takeshi Abe 

diff --git a/starmath/source/mathtype.cxx b/starmath/source/mathtype.cxx
index 1fc3ba3b8fdb..be6edef032b5 100644
--- a/starmath/source/mathtype.cxx
+++ b/starmath/source/mathtype.cxx
@@ -590,7 +590,7 @@ bool MathType::Parse(SotStorage *pStor)
 
 //sigh, theres no point! MathType (in some bizarre subvarient) pads
 //the end of the formula with ENDs (0)'s
-sal_uLong nEnd = pS->Tell();
+auto nEnd = pS->Tell();
 SAL_WARN_IF(nEnd == pS->Seek(STREAM_SEEK_TO_END), "starmath", "Possibly 
unfully parsed formula");
 #endif
 return bRet;
@@ -2164,7 +2164,7 @@ void MathType::HandleRoot(SmNode *pNode,int nLevel)
 }
 
 sal_uInt8 MathType::HandleCScript(SmNode *pNode,SmNode *pContent,int nLevel,
-sal_uLong *pPos,bool bTest)
+sal_uInt64 *pPos,bool bTest)
 {
 sal_uInt8 nVariation2=0xff;
 
@@ -2352,7 +2352,7 @@ void MathType::HandleBrace(SmNode *pNode,int nLevel)
 pS->WriteUChar( TMPL ); //Template
 bIsReInterpBrace=false;
 sal_uInt8 nBSpec=0x10;
-sal_uLong nLoc = pS->Tell();
+auto nLoc = pS->Tell();
 if (pLeft)
 {
 switch (pLeft->GetToken().eType)
@@ -2410,7 +2410,7 @@ void MathType::HandleBrace(SmNode *pNode,int nLevel)
 HandleNodes(pLeft,nLevel+1);
 if (bIsReInterpBrace)
 {
-sal_uLong nLoc2 = pS->Tell();
+auto nLoc2 = pS->Tell();
 pS->Seek(nLoc);
 pS->WriteUChar( 0x2D );
 pS->Seek(nLoc2);
@@ -2458,7 +2458,7 @@ void MathType::HandleOperator(SmNode *pNode,int nLevel)
 if (HandleLim(pNode,nLevel))
 return;
 
-sal_uLong nPos;
+sal_uInt64 nPos;
 sal_uInt8 nVariation;
 
 switch (pNode->GetToken().eType)
@@ -2480,7 +2480,7 @@ void MathType::HandleOperator(SmNode *pNode,int nLevel)
 sal_uInt8 nOldVariation=nVariation;
 sal_uInt8 nIntVariation=nVariation;
 
-sal_uLong nPos2=0;
+sal_uInt64 nPos2=0;
 if (nVariation != 0xff)
 {
 nPos2 = pS->Tell();
@@ -3226,7 +3226,7 @@ void MathType::HandleAttributes(SmNode *pNode,int nLevel)
 {
 if ((nInsertion != 0) && nullptr != (pTemp = pNode->GetSubNode(0)))
 {
-sal_uLong nPos = pS->Tell();
+auto nPos = pS->Tell();
 nInsertion--;
 pS->Seek(nInsertion);
 switch(pTemp->GetToken().eType)
diff --git a/starmath/source/mathtype.hxx b/starmath/source/mathtype.hxx
index 2fd259fd81f7..07951c935ddd 100644
--- a/starmath/source/mathtype.hxx
+++ b/starmath/source/mathtype.hxx
@@ -134,7 +134,7 @@ private:
 void HandleRoot(SmNode *pNode,int nLevel);
 void HandleSubSupScript(SmNode *pNode,int nLevel);
 sal_uInt8 HandleCScript(SmNode *pNode,SmNode *pContent,int nLevel,
-sal_uLong *pPos=nullptr,bool bTest=true);
+sal_uInt64 *pPos=nullptr,bool bTest=true);
 void HandleFractions(SmNode *pNode,int nLevel);
 void HandleBrace(SmNode *pNode,int nLevel);
 void HandleVerticalBrace(SmNode *pNode,int nLevel);
@@ -152,7 +152,7 @@ private:
 sal_uInt8 nHAlign;
 
 int nPendingAttributes;
-sal_uLong nInsertion;
+sal_uInt64 nInsertion;
 
 std::vector aSizeTable;
 sal_Int16 nLSize;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-06-12 Thread Takeshi Abe
 starmath/source/smdetect.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b7f515fefbb104da08062bd158a4c32c9b2afa10
Author: Takeshi Abe 
Date:   Mon Jun 12 22:17:18 2017 +0900

starmath: SvStream::ReadBytes() returns std::size_t, not sal_uLong

Change-Id: I734e653343dcc563f1eb2312e5136fa5efe0f5fa
Reviewed-on: https://gerrit.libreoffice.org/38701
Tested-by: Jenkins 
Reviewed-by: Takeshi Abe 

diff --git a/starmath/source/smdetect.cxx b/starmath/source/smdetect.cxx
index 55283530e86a..059d3b325050 100644
--- a/starmath/source/smdetect.cxx
+++ b/starmath/source/smdetect.cxx
@@ -96,7 +96,7 @@ OUString SAL_CALL SmFilterDetect::detect( Sequence< 
PropertyValue >& lDescriptor
 aBuffer[nBufferSize] = 0;
 pInStrm->Seek( STREAM_SEEK_TO_BEGIN );
 pInStrm->StartReadingUnicodeText( RTL_TEXTENCODING_DONTKNOW ); // 
avoid BOM marker
-sal_uLong nBytesRead = pInStrm->ReadBytes( aBuffer, nBufferSize );
+auto nBytesRead = pInStrm->ReadBytes( aBuffer, nBufferSize );
 if (nBytesRead >= 6)
 {
 bool bIsMathType = false;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 108491] XHTML export puts inline formulae on separate lines

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108491

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #1 from Regina Henschel  ---
You need to set the following  elements to inline display too.

The problem is not only in the XSLT, but the object itself has already a
display="block" attribute in the ODF file format. If you use "Textmode" for the
formula, then it is exported without the display attribute, which then defaults
to "inline". But the problem with the following div-element remains.

-- 
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 108490] Windows 7 Pro 64 bit Calc Spreadsheet and Writer text entry and editing issues

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108490

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
Thank you for reporting the bug. To be certain the reported issue is not
related to corruption in the user profile, could you please reset your
Libreoffice profile ( https://wiki.documentfoundation.org/UserProfile ) and
re-test?

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

-- 
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 108492] Semantic markup

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108492

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #1 from Regina Henschel  ---
ODF is largely semantic markup. What do you miss?

Unless someone pays developers, it is unlikely that content MathML will be
implemented. It requires a total new internal representation and new rendering
engine. The ODF file format would allow 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 103829] FILESAVE: Tab characters lost in cell

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103829

Yousuf Philips (jay)  changed:

   What|Removed |Added

Summary|tabstops lost in cell   |FILESAVE: Tab characters
   |during saving/loading   |lost in cell

-- 
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 108492] New: Semantic markup

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108492

Bug ID: 108492
   Summary: Semantic markup
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sme...@gmu.edu

I would like to see semantic markup in LibreOffice. By that I mean constructing
formulae using distinct markup for distinct concepts, even if the rendering is
identical. Similarly, I would like the ability to generate MATHML content
rather than MATHML presentation.

Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3

-- 
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 108390] Add ability to edit document info for PDF files by Draw

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108390

Heiko Tietze  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #5 from Heiko Tietze  ---
As m.a.riosv said, PDF editing is out of scope. If you search the Internet you
will find plenty of tools for this purpose.

-- 
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 108491] New: XHTML export puts inline formulae on separate lines

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108491

Bug ID: 108491
   Summary: XHTML export puts inline formulae on separate lines
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sme...@gmu.edu

Created attachment 133988
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133988=edit
Document contining inline formulae

When I have inline formula objects in Writer  and export the entire document as
XHTML, Writer puts each formula on a separate line when viewed from Firefox. I
tried manually changing every occurrence of "block" to "inline", but still got
extraneous line breaks.

If I export to PDF then I get the corrected results; the formulae are set off
with white space but not with line breaks.

Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3

-- 
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 108490] New: Windows 7 Pro 64 bit Calc Spreadsheet and Writer text entry and editing issues

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108490

Bug ID: 108490
   Summary: Windows 7 Pro 64 bit Calc Spreadsheet and Writer text
entry and editing issues
   Product: LibreOffice
   Version: 5.2.7.2 release
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: noel.bro...@gmail.com

When in any mode other than full screen Writer after saving document can not be
edited.  In Calc Spreadsheet columns are distorted and data may not be entered
anywhere. This was not true 2 updates back to the best of my recollection. When
in full screen mode thing are normal.

-- 
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 108417] Some arabic fonts does not display correctly

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108417

kavale...@gmail.com changed:

   What|Removed |Added

 CC||kavale...@gmail.com

--- Comment #2 from kavale...@gmail.com ---
Created attachment 133987
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133987=edit
This is a screenshot of MS-Office

This is a screenshot from how it looks like in MS-Office´s Word.

-- 
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 108483] Only 1 file can be opened at once using quickstarter

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108483

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
Thank you for reporting the bug. To be certain the reported issue is not
related to corruption in the user profile, could you please reset your
Libreoffice profile ( https://wiki.documentfoundation.org/UserProfile ) and
re-test?

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

-- 
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 103829] tabstops lost in cell during saving/loading

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103829

--- Comment #10 from Xisco Faulí  ---
Another way to reproduce it:
https://bugs.documentfoundation.org/show_bug.cgi?id=98815#c0

-- 
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 98815] {tab} character in cells is not saved

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98815

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisected, regression
 CC||xiscofa...@libreoffice.org
Version|4.4.7.2 release |4.2 all versions
 OS|Windows (All)   |All

--- Comment #8 from Xisco Faulí  ---
Regression introduced in range
https://cgit.freedesktop.org/libreoffice/core/log/?qt=range=7b384313399ee8199cd7241527c3dbc1d50694a2..9e15d9e76d1fd542378a997e27175ca98dd3e558
which is the same as in bug 103829

-- 
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 108480] Undo from clone formatting does not remove vertical alignment from cell

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108480

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.0.0

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


[Libreoffice-bugs] [Bug 108480] Undo from clone formatting does not remove vertical alignment from cell

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108480

--- Comment #3 from Commit Notification 
 ---
Tamás Zolnai committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=37d8ac12902506f4185e10f1de4f566dbaf53e42

tdf#108480: Undo from clone formating does not remove vertical alignment

It will be available in 6.0.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://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: svx/source

2017-06-12 Thread Tamás Zolnai
 svx/source/svdraw/svdedxv.cxx  |9 -
 svx/source/table/svdotable.cxx |   19 ++-
 2 files changed, 14 insertions(+), 14 deletions(-)

New commits:
commit 37d8ac12902506f4185e10f1de4f566dbaf53e42
Author: Tamás Zolnai 
Date:   Mon Jun 12 14:34:59 2017 +0200

tdf#108480: Undo from clone formating does not remove vertical alignment

In the related change:
d36aa2ba3132ce62a370b7260ca620642cbf7dbf
wrong method was used to set cell properties, which does
not handle undo actions, so use the proper function.

Other issue was related to undo handling of vertical text
alignment in general. In some cases undo actions were lost
after user clicked out of the cell. It is because vertical
alignment is not affecting the outliner and so the related
undo actions were just dropped in EndTextEdit() method.

Change-Id: I3a6a95fac711056a658a3dee616733939cd13330
Reviewed-on: https://gerrit.libreoffice.org/38699
Tested-by: Jenkins 
Reviewed-by: Tamás Zolnai 

diff --git a/svx/source/svdraw/svdedxv.cxx b/svx/source/svdraw/svdedxv.cxx
index 2657375f311a..7a7ed5fc3219 100644
--- a/svx/source/svdraw/svdedxv.cxx
+++ b/svx/source/svdraw/svdedxv.cxx
@@ -2225,9 +2225,8 @@ void SdrObjEditView::TakeFormatPaintBrush( 
std::shared_ptr< SfxItemSet >& rForma
 if( pObj && (pObj->GetObjInventor() == SdrInventor::Default ) && 
(pObj->GetObjIdentifier() == OBJ_TABLE) )
 {
 auto pTable = static_cast(pObj);
-if (pTable->getActiveCell().is()) {
-SfxItemSet const & rSet = pTable->GetActiveCellItemSet();
-rFormatSet->Put(rSet);
+if (mxSelectionController.is() && pTable->getActiveCell().is()) {
+mxSelectionController->GetAttributes(*rFormatSet, false);
 }
 }
 }
@@ -2375,8 +2374,8 @@ void SdrObjEditView::ApplyFormatPaintBrush( SfxItemSet& 
rFormatSet, bool bNoChar
 if( pObj && (pObj->GetObjInventor() == SdrInventor::Default) && 
(pObj->GetObjIdentifier() == OBJ_TABLE) )
 {
 auto pTable = static_cast(pObj);
-if (pTable->getActiveCell().is()) {
-pTable->SetMergedItemSetAndBroadcastOnActiveCell(rFormatSet);
+if (pTable->getActiveCell().is() && mxSelectionController.is()) {
+mxSelectionController->SetAttributes(rFormatSet, false);
 }
 }
 }
diff --git a/svx/source/table/svdotable.cxx b/svx/source/table/svdotable.cxx
index 4c51d4149465..ef58d32b4a5b 100644
--- a/svx/source/table/svdotable.cxx
+++ b/svx/source/table/svdotable.cxx
@@ -1768,18 +1768,19 @@ bool SdrTableObj::BegTextEdit(SdrOutliner& rOutl)
 
 void SdrTableObj::EndTextEdit(SdrOutliner& rOutl)
 {
-if(rOutl.IsModified())
+
+if (GetModel() && GetModel()->IsUndoEnabled() && !mpImpl->maUndos.empty())
 {
-if( GetModel() && GetModel()->IsUndoEnabled() )
-{
-// These actions should be on the undo stack after text edit.
-for (std::unique_ptr& pAction : mpImpl->maUndos)
-GetModel()->AddUndo(pAction.release());
-mpImpl->maUndos.clear();
+// These actions should be on the undo stack after text edit.
+for (std::unique_ptr& pAction : mpImpl->maUndos)
+GetModel()->AddUndo(pAction.release());
+mpImpl->maUndos.clear();
 
-GetModel()->AddUndo( 
GetModel()->GetSdrUndoFactory().CreateUndoGeoObject(*this) );
-}
+
GetModel()->AddUndo(GetModel()->GetSdrUndoFactory().CreateUndoGeoObject(*this));
+}
 
+if(rOutl.IsModified())
+{
 OutlinerParaObject* pNewText = nullptr;
 Paragraph* p1stPara = rOutl.GetParagraph( 0 );
 sal_Int32 nParaAnz = rOutl.GetParagraphCount();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 47341] Fade in and out animation of transparent object goes wrong, if hardware acceleration is disabled

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47341

--- Comment #16 from jebsoluti...@gmail.com ---
A basic slide show isn't cpu heavy.  A basic fade in should work fine even if
there is no OpenGL/Hardware acceleration.

For me, none of these problems go away if I disable hardware rendering and/or
OpenGL rendering. 

Second, my laptop has an Intel i7-2620m cpu.  Using the integrated Intel
graphics I see all the glitches regardless of OpenGL/Hardware settings.  My
laptop also has an NVIDIA QUADRO NVS 4200M.  If I switch over to the Nvidia
card Libreoffice slide transitions like fade-in look fine. ???  

For devs who can't reproduce the problem please test under VirtualBox.  I use
Lubuntu 16.04.1 with the VirtualBox guest additions (not the ubuntu included
guest additions).  All the problems show up here with newer versions of
LibreOffice.

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


[Libreoffice-bugs] [Bug 108453] Writer-UI: Text-selection highlight differs when selection extends past end of line

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108453

--- Comment #7 from Adalbert Hanßen  ---
Created attachment 133986
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133986=edit
selection in text, one character past eol: highlight gone, one outline remains.
Not ok.

-- 
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 108453] Writer-UI: Text-selection highlight differs when selection extends past end of line

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108453

--- Comment #6 from Adalbert Hanßen  ---
Created attachment 133985
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133985=edit
Selection in standard text including eol: highlight ok

-- 
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 108453] Writer-UI: Text-selection highlight differs when selection extends past end of line

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108453

--- Comment #5 from Adalbert Hanßen  ---
Created attachment 133984
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133984=edit
selection in a headline including end of line

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


[Libreoffice-bugs] [Bug 59199] EDITING: protected footer in .doc is editable

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59199

--- Comment #8 from Telesto  ---
Confirming comment 6
Version: 5.5.0.0.alpha0+
Build ID: 076ed447f694239d5c67adee528ea6e471d909ff
CPU threads: 4; OS: Windows 6.19; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2017-06-09_23:54:20
Locale: nl-NL (nl_NL); Calc: CL

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


[Libreoffice-bugs] [Bug 108453] Writer-UI: Text-selection highlight differs when selection extends past end of line

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108453

--- Comment #4 from Adalbert Hanßen  ---
Created attachment 133983
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133983=edit
selection in a headline: 1-eol

Version: 5.4.0.0.beta2
Build ID: 3cc1cdd8ee50f144e5514da51800a08119754d8f
CPU threads: 2; OS: Linux 4.8; UI render: default; VCL: gtk2; 
Locale: de-DE (de_DE.UTF-8); Calc: group

shows the same syndrome: As long as the selection in a headline does not
contain the last character of a line, the shade is shown. As soon as I include
the last character of the line or more, only the thin outline remains to
indicate the selection.

For normal text the behaviour there differs: There I may selsct to the end of
line (i.e. including the last character) and I geht the shade. However if I
extend the selection at least one more character, only the outline remains.

-- 
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 108489] LibreOffice 5.4.0.0 beta2. Fatal Error The application cannot be started

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108489

--- Comment #2 from Eike Rathke  ---
And at least indicate on which version of Windows.

-- 
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 104450] [META] DOCX file opening issues

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104450

Telesto  changed:

   What|Removed |Added

 Depends on||76260


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=76260
[Bug 76260] FILEOPEN: extremely slow loading .docx with lots of footnotes
-- 
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 104520] [META] DOCX (OOXML) bug tracker

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104520

Telesto  changed:

   What|Removed |Added

 Depends on|76260   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=76260
[Bug 76260] FILEOPEN: extremely slow loading .docx with lots of footnotes
-- 
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 76260] FILEOPEN: extremely slow loading .docx with lots of footnotes

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76260

Telesto  changed:

   What|Removed |Added

 Blocks|104520  |104450


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104450
[Bug 104450] [META] DOCX file opening issues
https://bugs.documentfoundation.org/show_bug.cgi?id=104520
[Bug 104520] [META] DOCX (OOXML) bug tracker
-- 
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 50447] FILEOPEN: Bold text formatting in Docx file not shown

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50447

--- Comment #14 from Telesto  ---
Still reproducible
Version: 5.5.0.0.alpha0+
Build ID: 076ed447f694239d5c67adee528ea6e471d909ff
CPU threads: 4; OS: Windows 6.19; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2017-06-09_23:54:20
Locale: nl-NL (nl_NL); Calc: CL

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


[Libreoffice-bugs] [Bug 108488] menu and cascading sub-menus are blank out

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108488

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||xiscofa...@libreoffice.org
 Resolution|--- |DUPLICATE

--- Comment #1 from Xisco Faulí  ---
Thanks for reporting the bug. I looks like a duplicate of bug 107166

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

-- 
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 107166] Text is invisible, both in UI and in editor on update to 5.3.2, older AMD and Intel GPUs

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107166

Xisco Faulí  changed:

   What|Removed |Added

 CC||cysilveira...@gmail.com

--- Comment #35 from Xisco Faulí  ---
*** Bug 108488 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


Re: [Libreoffice-qa] Clean up pre-releases folders

2017-06-12 Thread Pedro
Hi Henri


mhenriday wrote
> ​Pedro, yours sounds like an excellent suggestion to me; but I'm just a
> (grateful) end user. Who has the authority to decide this sort of thing
> ?...

I have no idea. 
But the good news is that someone already cleaned up all the folders.

Regards,
Pedro



--
View this message in context: 
http://nabble.documentfoundation.org/Clean-up-pre-releases-folders-tp4215953p4216355.html
Sent from the QA mailing list archive at Nabble.com.
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: https://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-bugs] [Bug 108185] Incorrect font formatting operations in cells with Prestige Elite font

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108185

Kevin  changed:

   What|Removed |Added

 OS|Mac OS X (All)  |Windows (All)

--- Comment #17 from Kevin  ---
(In reply to Alex Thurgood from comment #16)

Sorry - I chose the wrong OS. I use Windows 7 - changed the drop-down
accordingly.

-- 
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: svx/source

2017-06-12 Thread Michael Stahl
 svx/source/sdr/contact/viewobjectcontactofgraphic.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 93a288bd75d7caed46d6f29bf006f3d97a9602a9
Author: Michael Stahl 
Date:   Mon Jun 12 21:44:57 2017 +0200

svx: fix the std::unique_ptr that deletes itself twice

It's good that the obviously error prone C++98 bare pointer was replaced
with a modern C++11 std::unique_ptr - everyone knows that with such modern
idioms memory management errors will be a thing of the past!

(regression from commit e4e4d5713e248f02faf7aa6199b11e152973de8e)


svxcorelo.dll!sdr::event::AsynchGraphicLoadingEvent::~AsynchGraphicLoadingEvent()
 Line 57   C++
svxcorelo.dll!sdr::event::AsynchGraphicLoadingEvent::`scalar deleting 
destructor'(unsigned int) C++

svxcorelo.dll!std::default_delete::operator()(sdr::event::AsynchGraphicLoadingEvent
 * _Ptr) Line 1608C++

svxcorelo.dll!std::unique_ptr::reset(sdr::event::AsynchGraphicLoadingEvent * _Ptr) Line 1855 C++

svxcorelo.dll!std::unique_ptr::operator=(void * __formal) Line 1728  C++

svxcorelo.dll!sdr::contact::ViewObjectContactOfGraphic::forgetAsynchGraphicLoadingEvent(sdr::event::AsynchGraphicLoadingEvent
 * pEvent) Line 231C++

svxcorelo.dll!sdr::event::AsynchGraphicLoadingEvent::~AsynchGraphicLoadingEvent()
 Line 59   C++
svxcorelo.dll!sdr::event::AsynchGraphicLoadingEvent::`scalar deleting 
destructor'(unsigned int) C++

svxcorelo.dll!std::default_delete::operator()(sdr::event::AsynchGraphicLoadingEvent
 * _Ptr) Line 1608C++

svxcorelo.dll!std::unique_ptr::~unique_ptr() Line 1820C++

svxcorelo.dll!sdr::contact::ViewObjectContactOfGraphic::~ViewObjectContactOfGraphic()
 Line 306  C++
svxcorelo.dll!sdr::contact::ViewObjectContactOfGraphic::`scalar 
deleting destructor'(unsigned int)  C++
svxcorelo.dll!sdr::contact::ObjectContact::~ObjectContact() Line 62 C++

svxcorelo.dll!sdr::contact::ObjectContactOfPageView::~ObjectContactOfPageView() 
Line 72 C++
svxcorelo.dll!sdr::contact::ObjectContactOfPageView::`scalar deleting 
destructor'(unsigned int) C++
svxcorelo.dll!SdrPageWindow::ResetObjectContact() Line 482  C++
svxcorelo.dll!SdrPageWindow::~SdrPageWindow() Line 135  C++

Change-Id: I989a800581e80befff3dcc37e7b8ffd370c2d7e8

diff --git a/svx/source/sdr/contact/viewobjectcontactofgraphic.cxx 
b/svx/source/sdr/contact/viewobjectcontactofgraphic.cxx
index 16c15b41909b..98a8c8b1b416 100644
--- a/svx/source/sdr/contact/viewobjectcontactofgraphic.cxx
+++ b/svx/source/sdr/contact/viewobjectcontactofgraphic.cxx
@@ -302,6 +302,8 @@ namespace sdr
 
 ViewObjectContactOfGraphic::~ViewObjectContactOfGraphic()
 {
+// explicitly call this to avoid it double-freeing itself
+forgetAsynchGraphicLoadingEvent(mpAsynchLoadEvent.get());
 }
 } // end of namespace contact
 } // end of namespace sdr
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 108489] LibreOffice 5.4.0.0 beta2. Fatal Error The application cannot be started

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108489

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||serval2...@yahoo.fr
 Ever confirmed|0   |1

--- Comment #1 from Julien Nabet  ---
Could you give a look to https://wiki.documentfoundation.org/QA/FirstSteps so
we know if the problem is related to OpenGL or a LO profile issue?

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


[Libreoffice-bugs] [Bug 85059] FILEOPEN: Document wont load on Windows with LO' s default MS embedded objects settings

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85059

Yousuf Philips (jay)  changed:

   What|Removed |Added

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

--- Comment #25 from Yousuf Philips (jay)  ---
Aron: Maybe one for the weekend. ;D

-- 
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 108487] FILESAVE ODT: Vertical text alignment changes after saving and reopening when a small change is made

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108487

Cor Nouws  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||c...@nouenoff.nl
 Ever confirmed|0   |1

--- Comment #2 from Cor Nouws  ---
can confirm this on Version: 5.5.0.0.alpha0+
Build ID: 200a566cf106fc724b99c373f16da0058163b28d
CPU threads: 4; OS: Linux 4.10; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2017-06-05_23:01:35
Locale: nl-NL (nl_NL.UTF-8); Calc: group

text (rotated 90degr.) in column 8, 9, 22 and 23 is divided different on the
lines in the cells.

-- 
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 52944] EDITING: Report-Builder - Edit column Header/ Footer has no function

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=52944

--- Comment #15 from Julien Nabet  ---
Some remarks

1) Reportbuilder README says "Oracle report builder extension, from
[http://extensions.services.openoffice.org/project/reportdesign; the website
indicates last version is 1.2.1 (2010-12-14).

2) this part is linked to JFreeReport which corresponds to a dozen of package
with different version numbers (see download.lst)

3) tdf#67832: "upgrade our jfreereport libraries" where Lionel indicates these
links:
https://github.com/pentaho/pentaho-reporting
http://jfree.org/jcommon/
http://sourceforge.net/projects/jfreereport/files/, but could not find sources
there.
All of these are in Java but since some years LO tries to move away from it.
Moreover nobody gave it a try after 4 years.

Finally this bugtracker shows that some people thought about a new and
certainly useful feature but never implemented it.

In brief, it seems we're in a dead end and perhaps it's the case for the whole
reportbuilder.

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


GSoC Report Week 2: Akshay Deep: Special Characters

2017-06-12 Thread Akshay Deep
Hi all,

   I will try to complete my Recent Special Characters patch this week, and
move ahead with toolbar dropdown for the same.
https://gerrit.libreoffice.org/#/c/37496/

Regards,
Akshay Deep
ᐧ
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-2-1' - loleaflet/po

2017-06-12 Thread Andras Timar
 loleaflet/po/ui-sl.po |  670 +++---
 1 file changed, 374 insertions(+), 296 deletions(-)

New commits:
commit 6ce39cf448b801e99742171a587860eb4e4a1baf
Author: Andras Timar 
Date:   Mon Jun 12 21:10:03 2017 +0200

updated Slovenian translation

Change-Id: Ibc26776a543068ac492fbf41a6dd32f2e8f8b81f
(cherry picked from commit e05fb904f87e591adda926f14229cc4666d64cd5)
Signed-off-by: Andras Timar 

diff --git a/loleaflet/po/ui-sl.po b/loleaflet/po/ui-sl.po
index 60347e11..b7ec2838 100644
--- a/loleaflet/po/ui-sl.po
+++ b/loleaflet/po/ui-sl.po
@@ -4,8 +4,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LibreOffice Online UI\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-04-13 09:40+0200\n"
-"PO-Revision-Date: 2017-04-18 12:17+0200\n"
+"POT-Creation-Date: 2017-06-12 16:59+0200\n"
+"PO-Revision-Date: 2017-06-12 17:06+0200\n"
 "Last-Translator: Martin Srebotnjak \n"
 "Language-Team: sl.libreoffice.org \n"
 "Language: sl\n"
@@ -14,7 +14,7 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
 "%100==4 ? 2 : 3);\n"
-"X-Generator: Poedit 2.0.1\n"
+"X-Generator: Poedit 2.0.2\n"
 "X-Accelerator-Marker: ~\n"
 "X-Poedit-SourceCharset: UTF-8\n"
 
@@ -42,69 +42,93 @@ msgstr "(trenutno)"
 msgid "Analytics"
 msgstr "Analitika"
 
-#: admin.strings.js:11
+#: admin.strings.js:11 evol.colorpicker.strings.js:6
+msgid "History"
+msgstr "Zgodovina"
+
+#: admin.strings.js:12
 msgid "Dashboard"
 msgstr "Nadzorna plošča"
 
-#: admin.strings.js:12
+#: admin.strings.js:13
 msgid "Users online"
 msgstr "povezanih uporabnikov"
 
-#: admin.strings.js:13
+#: admin.strings.js:14
+msgid "Users Name"
+msgstr "Ime uporabnika"
+
+#: admin.strings.js:15
 msgid "Documents opened"
 msgstr "odprtih dokumentov"
 
-#: admin.strings.js:14
+#: admin.strings.js:16
+msgid "Number of Documents"
+msgstr "Å tevilo dokumentov"
+
+#: admin.strings.js:17
 msgid "Memory consumed"
 msgstr "zasedenega pomnilnika"
 
-#: admin.strings.js:15
+#: admin.strings.js:18
+msgid "Bytes sent"
+msgstr "poslanih bajtov"
+
+#: admin.strings.js:19
+msgid "Bytes received"
+msgstr "prejetih bajtov"
+
+#: admin.strings.js:20
 msgid "PID"
 msgstr "PID"
 
-#: admin.strings.js:16
+#: admin.strings.js:21
 msgid "Document"
 msgstr "Dokument"
 
-#: admin.strings.js:17
+#: admin.strings.js:22
 msgid "Number of views"
 msgstr "Å tevilo ogledov"
 
-#: admin.strings.js:18
+#: admin.strings.js:23
 msgid "Elapsed time"
 msgstr "Pretekli čas"
 
-#: admin.strings.js:19
+#: admin.strings.js:24
 msgid "Idle time"
 msgstr "Čas nedejavnosti"
 
-#: admin.strings.js:20
+#: admin.strings.js:25
+msgid "Modified"
+msgstr "Spremenjeno"
+
+#: admin.strings.js:26
 msgid "Kill"
 msgstr "Ubij"
 
-#: admin.strings.js:21
+#: admin.strings.js:27
 msgid "Graphs"
 msgstr "Grafikoni"
 
-#: admin.strings.js:22 dist/toolbar/toolbar.js:473
-#: src/control/Control.Menubar.js:11 src/control/Control.Menubar.js:175
-#: src/control/Control.Menubar.js:235
+#: admin.strings.js:28 dist/toolbar/toolbar.js:471
+#: src/control/Control.Menubar.js:11 src/control/Control.Menubar.js:177
+#: src/control/Control.Menubar.js:237 src/layer/marker/Annotation.js:198
 msgid "Save"
 msgstr "Shrani"
 
-#: admin.strings.js:23
+#: admin.strings.js:29
 msgid "Cache size of memory statistics"
 msgstr "Velikost medpomnilnika za statistiko pomnilnika"
 
-#: admin.strings.js:24
+#: admin.strings.js:30
 msgid "Time interval of memory statistics (in ms)"
 msgstr "Časovni interval za statistiko pomnilnika (v ms)"
 
-#: admin.strings.js:25
+#: admin.strings.js:31
 msgid "Cache size of CPU statistics"
 msgstr "Velikost medpomnilnika za statistiko CPE"
 
-#: admin.strings.js:26
+#: admin.strings.js:32
 msgid "Time interval of CPU statistics (in ms)"
 msgstr "Časovni interval za statistiko CPE (v ms)"
 
@@ -124,10 +148,6 @@ msgstr "Spletne barve"
 msgid "Back to Palette"
 msgstr "Nazaj na paleto"
 
-#: evol.colorpicker.strings.js:6
-msgid "History"
-msgstr "Zgodovina"
-
 #: evol.colorpicker.strings.js:7
 msgid "No history yet."
 msgstr "Ni zgodovine."
@@ -200,7 +220,7 @@ msgstr "Posodobi kazalo"
 msgid "Delete Index or Table of Contents"
 msgstr "Izbriši kazalo"
 
-#: unocommands.js:18 src/layer/marker/Annotation.js:187
+#: unocommands.js:18 src/layer/marker/Annotation.js:201
 #: src/layer/tile/TileLayer.js:188
 msgid "Reply"
 msgstr "Odgovori"
@@ -294,20 +314,47 @@ msgstr ""
 "in da datoteka ni poškodovana, in poskusite znova."
 
 #: dist/errormessages.js:13
+#, javascript-format
+msgid ""
+"Failed to read document from storage. Please contact your storage server "
+"(%storageserver) administrator."
+msgstr ""
+"Dokumenta ni mogoče shraniti v shrambo. Preverite svoje pravice ali stopite "
+"v stik z upraviteljem strežnika shrambe (%storageserver)."
+
+#: dist/errormessages.js:14
+#, javascript-format
 

[Libreoffice-commits] online.git: Branch 'libreoffice-5-4' - loleaflet/po

2017-06-12 Thread Andras Timar
 loleaflet/po/ui-sl.po |  670 +++---
 1 file changed, 374 insertions(+), 296 deletions(-)

New commits:
commit d91e22eba7286437b00e78aefcb44c78a3477f28
Author: Andras Timar 
Date:   Mon Jun 12 21:10:03 2017 +0200

updated Slovenian translation

Change-Id: Ibc26776a543068ac492fbf41a6dd32f2e8f8b81f
(cherry picked from commit e05fb904f87e591adda926f14229cc4666d64cd5)
Signed-off-by: Andras Timar 

diff --git a/loleaflet/po/ui-sl.po b/loleaflet/po/ui-sl.po
index 41d13315..5dbadc3d 100644
--- a/loleaflet/po/ui-sl.po
+++ b/loleaflet/po/ui-sl.po
@@ -4,8 +4,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LibreOffice Online UI\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-04-13 09:40+0200\n"
-"PO-Revision-Date: 2017-04-18 12:17+0200\n"
+"POT-Creation-Date: 2017-06-12 16:59+0200\n"
+"PO-Revision-Date: 2017-06-12 17:06+0200\n"
 "Last-Translator: Martin Srebotnjak \n"
 "Language-Team: sl.libreoffice.org \n"
 "Language: sl\n"
@@ -14,7 +14,7 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
 "%100==4 ? 2 : 3);\n"
-"X-Generator: Poedit 2.0.1\n"
+"X-Generator: Poedit 2.0.2\n"
 "X-Accelerator-Marker: ~\n"
 "X-Poedit-SourceCharset: UTF-8\n"
 
@@ -42,69 +42,93 @@ msgstr "(trenutno)"
 msgid "Analytics"
 msgstr "Analitika"
 
-#: admin.strings.js:11
+#: admin.strings.js:11 evol.colorpicker.strings.js:6
+msgid "History"
+msgstr "Zgodovina"
+
+#: admin.strings.js:12
 msgid "Dashboard"
 msgstr "Nadzorna plošča"
 
-#: admin.strings.js:12
+#: admin.strings.js:13
 msgid "Users online"
 msgstr "povezanih uporabnikov"
 
-#: admin.strings.js:13
+#: admin.strings.js:14
+msgid "Users Name"
+msgstr "Ime uporabnika"
+
+#: admin.strings.js:15
 msgid "Documents opened"
 msgstr "odprtih dokumentov"
 
-#: admin.strings.js:14
+#: admin.strings.js:16
+msgid "Number of Documents"
+msgstr "Å tevilo dokumentov"
+
+#: admin.strings.js:17
 msgid "Memory consumed"
 msgstr "zasedenega pomnilnika"
 
-#: admin.strings.js:15
+#: admin.strings.js:18
+msgid "Bytes sent"
+msgstr "poslanih bajtov"
+
+#: admin.strings.js:19
+msgid "Bytes received"
+msgstr "prejetih bajtov"
+
+#: admin.strings.js:20
 msgid "PID"
 msgstr "PID"
 
-#: admin.strings.js:16
+#: admin.strings.js:21
 msgid "Document"
 msgstr "Dokument"
 
-#: admin.strings.js:17
+#: admin.strings.js:22
 msgid "Number of views"
 msgstr "Å tevilo ogledov"
 
-#: admin.strings.js:18
+#: admin.strings.js:23
 msgid "Elapsed time"
 msgstr "Pretekli čas"
 
-#: admin.strings.js:19
+#: admin.strings.js:24
 msgid "Idle time"
 msgstr "Čas nedejavnosti"
 
-#: admin.strings.js:20
+#: admin.strings.js:25
+msgid "Modified"
+msgstr "Spremenjeno"
+
+#: admin.strings.js:26
 msgid "Kill"
 msgstr "Ubij"
 
-#: admin.strings.js:21
+#: admin.strings.js:27
 msgid "Graphs"
 msgstr "Grafikoni"
 
-#: admin.strings.js:22 dist/toolbar/toolbar.js:473
-#: src/control/Control.Menubar.js:11 src/control/Control.Menubar.js:175
-#: src/control/Control.Menubar.js:235
+#: admin.strings.js:28 dist/toolbar/toolbar.js:471
+#: src/control/Control.Menubar.js:11 src/control/Control.Menubar.js:177
+#: src/control/Control.Menubar.js:237 src/layer/marker/Annotation.js:198
 msgid "Save"
 msgstr "Shrani"
 
-#: admin.strings.js:23
+#: admin.strings.js:29
 msgid "Cache size of memory statistics"
 msgstr "Velikost medpomnilnika za statistiko pomnilnika"
 
-#: admin.strings.js:24
+#: admin.strings.js:30
 msgid "Time interval of memory statistics (in ms)"
 msgstr "Časovni interval za statistiko pomnilnika (v ms)"
 
-#: admin.strings.js:25
+#: admin.strings.js:31
 msgid "Cache size of CPU statistics"
 msgstr "Velikost medpomnilnika za statistiko CPE"
 
-#: admin.strings.js:26
+#: admin.strings.js:32
 msgid "Time interval of CPU statistics (in ms)"
 msgstr "Časovni interval za statistiko CPE (v ms)"
 
@@ -124,10 +148,6 @@ msgstr "Spletne barve"
 msgid "Back to Palette"
 msgstr "Nazaj na paleto"
 
-#: evol.colorpicker.strings.js:6
-msgid "History"
-msgstr "Zgodovina"
-
 #: evol.colorpicker.strings.js:7
 msgid "No history yet."
 msgstr "Ni zgodovine."
@@ -200,7 +220,7 @@ msgstr "Posodobi kazalo"
 msgid "Delete Index or Table of Contents"
 msgstr "Izbriši kazalo"
 
-#: unocommands.js:18 src/layer/marker/Annotation.js:187
+#: unocommands.js:18 src/layer/marker/Annotation.js:201
 #: src/layer/tile/TileLayer.js:188
 msgid "Reply"
 msgstr "Odgovori"
@@ -294,20 +314,47 @@ msgstr ""
 "in da datoteka ni poškodovana, in poskusite znova."
 
 #: dist/errormessages.js:13
+#, javascript-format
+msgid ""
+"Failed to read document from storage. Please contact your storage server "
+"(%storageserver) administrator."
+msgstr ""
+"Dokumenta ni mogoče shraniti v shrambo. Preverite svoje pravice ali stopite "
+"v stik z upraviteljem strežnika shrambe (%storageserver)."
+
+#: dist/errormessages.js:14
+#, javascript-format
 

[Libreoffice-commits] online.git: loleaflet/po

2017-06-12 Thread Andras Timar
 loleaflet/po/ui-sl.po |  670 +++---
 1 file changed, 374 insertions(+), 296 deletions(-)

New commits:
commit e05fb904f87e591adda926f14229cc4666d64cd5
Author: Andras Timar 
Date:   Mon Jun 12 21:10:03 2017 +0200

updated Slovenian translation

Change-Id: Ibc26776a543068ac492fbf41a6dd32f2e8f8b81f

diff --git a/loleaflet/po/ui-sl.po b/loleaflet/po/ui-sl.po
index 41d13315..5dbadc3d 100644
--- a/loleaflet/po/ui-sl.po
+++ b/loleaflet/po/ui-sl.po
@@ -4,8 +4,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LibreOffice Online UI\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-04-13 09:40+0200\n"
-"PO-Revision-Date: 2017-04-18 12:17+0200\n"
+"POT-Creation-Date: 2017-06-12 16:59+0200\n"
+"PO-Revision-Date: 2017-06-12 17:06+0200\n"
 "Last-Translator: Martin Srebotnjak \n"
 "Language-Team: sl.libreoffice.org \n"
 "Language: sl\n"
@@ -14,7 +14,7 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
 "%100==4 ? 2 : 3);\n"
-"X-Generator: Poedit 2.0.1\n"
+"X-Generator: Poedit 2.0.2\n"
 "X-Accelerator-Marker: ~\n"
 "X-Poedit-SourceCharset: UTF-8\n"
 
@@ -42,69 +42,93 @@ msgstr "(trenutno)"
 msgid "Analytics"
 msgstr "Analitika"
 
-#: admin.strings.js:11
+#: admin.strings.js:11 evol.colorpicker.strings.js:6
+msgid "History"
+msgstr "Zgodovina"
+
+#: admin.strings.js:12
 msgid "Dashboard"
 msgstr "Nadzorna plošča"
 
-#: admin.strings.js:12
+#: admin.strings.js:13
 msgid "Users online"
 msgstr "povezanih uporabnikov"
 
-#: admin.strings.js:13
+#: admin.strings.js:14
+msgid "Users Name"
+msgstr "Ime uporabnika"
+
+#: admin.strings.js:15
 msgid "Documents opened"
 msgstr "odprtih dokumentov"
 
-#: admin.strings.js:14
+#: admin.strings.js:16
+msgid "Number of Documents"
+msgstr "Å tevilo dokumentov"
+
+#: admin.strings.js:17
 msgid "Memory consumed"
 msgstr "zasedenega pomnilnika"
 
-#: admin.strings.js:15
+#: admin.strings.js:18
+msgid "Bytes sent"
+msgstr "poslanih bajtov"
+
+#: admin.strings.js:19
+msgid "Bytes received"
+msgstr "prejetih bajtov"
+
+#: admin.strings.js:20
 msgid "PID"
 msgstr "PID"
 
-#: admin.strings.js:16
+#: admin.strings.js:21
 msgid "Document"
 msgstr "Dokument"
 
-#: admin.strings.js:17
+#: admin.strings.js:22
 msgid "Number of views"
 msgstr "Å tevilo ogledov"
 
-#: admin.strings.js:18
+#: admin.strings.js:23
 msgid "Elapsed time"
 msgstr "Pretekli čas"
 
-#: admin.strings.js:19
+#: admin.strings.js:24
 msgid "Idle time"
 msgstr "Čas nedejavnosti"
 
-#: admin.strings.js:20
+#: admin.strings.js:25
+msgid "Modified"
+msgstr "Spremenjeno"
+
+#: admin.strings.js:26
 msgid "Kill"
 msgstr "Ubij"
 
-#: admin.strings.js:21
+#: admin.strings.js:27
 msgid "Graphs"
 msgstr "Grafikoni"
 
-#: admin.strings.js:22 dist/toolbar/toolbar.js:473
-#: src/control/Control.Menubar.js:11 src/control/Control.Menubar.js:175
-#: src/control/Control.Menubar.js:235
+#: admin.strings.js:28 dist/toolbar/toolbar.js:471
+#: src/control/Control.Menubar.js:11 src/control/Control.Menubar.js:177
+#: src/control/Control.Menubar.js:237 src/layer/marker/Annotation.js:198
 msgid "Save"
 msgstr "Shrani"
 
-#: admin.strings.js:23
+#: admin.strings.js:29
 msgid "Cache size of memory statistics"
 msgstr "Velikost medpomnilnika za statistiko pomnilnika"
 
-#: admin.strings.js:24
+#: admin.strings.js:30
 msgid "Time interval of memory statistics (in ms)"
 msgstr "Časovni interval za statistiko pomnilnika (v ms)"
 
-#: admin.strings.js:25
+#: admin.strings.js:31
 msgid "Cache size of CPU statistics"
 msgstr "Velikost medpomnilnika za statistiko CPE"
 
-#: admin.strings.js:26
+#: admin.strings.js:32
 msgid "Time interval of CPU statistics (in ms)"
 msgstr "Časovni interval za statistiko CPE (v ms)"
 
@@ -124,10 +148,6 @@ msgstr "Spletne barve"
 msgid "Back to Palette"
 msgstr "Nazaj na paleto"
 
-#: evol.colorpicker.strings.js:6
-msgid "History"
-msgstr "Zgodovina"
-
 #: evol.colorpicker.strings.js:7
 msgid "No history yet."
 msgstr "Ni zgodovine."
@@ -200,7 +220,7 @@ msgstr "Posodobi kazalo"
 msgid "Delete Index or Table of Contents"
 msgstr "Izbriši kazalo"
 
-#: unocommands.js:18 src/layer/marker/Annotation.js:187
+#: unocommands.js:18 src/layer/marker/Annotation.js:201
 #: src/layer/tile/TileLayer.js:188
 msgid "Reply"
 msgstr "Odgovori"
@@ -294,20 +314,47 @@ msgstr ""
 "in da datoteka ni poškodovana, in poskusite znova."
 
 #: dist/errormessages.js:13
+#, javascript-format
+msgid ""
+"Failed to read document from storage. Please contact your storage server "
+"(%storageserver) administrator."
+msgstr ""
+"Dokumenta ni mogoče shraniti v shrambo. Preverite svoje pravice ali stopite "
+"v stik z upraviteljem strežnika shrambe (%storageserver)."
+
+#: dist/errormessages.js:14
+#, javascript-format
 msgid ""
 "Save failed due to no disk space left on storage server. Document will now "
-"be read-only. Please contact the server 

[Libreoffice-commits] core.git: Branch 'libreoffice-5-4' - forms/source

2017-06-12 Thread Eike Rathke
 forms/source/component/ComboBox.cxx |3 ++-
 forms/source/component/ListBox.cxx  |3 ++-
 forms/source/misc/property.cxx  |1 +
 3 files changed, 5 insertions(+), 2 deletions(-)

New commits:
commit a1d695fb6a4f5a9711d072cca42ca90bff37858a
Author: Eike Rathke 
Date:   Mon Jun 12 17:22:35 2017 +0200

Resolves: tdf#108413 yet some more TYPEDITEMLIST property entries

... which apparently need to be present to be able to override them. You
also can have never enough macro names to obfuscate things for grep..

Change-Id: Ic0bdcb71682136a537b3ce1c564f02f686f1ee9e
(cherry picked from commit 0f8670ecebcf2af9c98b805c5e446ff073354d92)
Reviewed-on: https://gerrit.libreoffice.org/38704
Reviewed-by: Eike Rathke 
Tested-by: Jenkins 

diff --git a/forms/source/component/ComboBox.cxx 
b/forms/source/component/ComboBox.cxx
index cc64d8bba73a..b5c43633077f 100644
--- a/forms/source/component/ComboBox.cxx
+++ b/forms/source/component/ComboBox.cxx
@@ -296,13 +296,14 @@ sal_Bool OComboBoxModel::convertFastPropertyValue(
 
 void OComboBoxModel::describeFixedProperties( Sequence< Property >& _rProps ) 
const
 {
-BEGIN_DESCRIBE_PROPERTIES( 6, OBoundControlModel )
+BEGIN_DESCRIBE_PROPERTIES( 7, OBoundControlModel )
 DECL_PROP1(TABINDEX,sal_Int16,  BOUND);
 DECL_PROP1(LISTSOURCETYPE,  ListSourceType, BOUND);
 DECL_PROP1(LISTSOURCE,  OUString,BOUND);
 DECL_BOOL_PROP1(EMPTY_IS_NULL,  BOUND);
 DECL_PROP1(DEFAULT_TEXT,OUString,BOUND);
 DECL_PROP1(STRINGITEMLIST,  Sequence< OUString >,BOUND);
+DECL_PROP1(TYPEDITEMLIST,   Sequence< Any >,BOUND);
 END_DESCRIBE_PROPERTIES();
 }
 
diff --git a/forms/source/component/ListBox.cxx 
b/forms/source/component/ListBox.cxx
index a57322ed5ced..bfd531624d2c 100644
--- a/forms/source/component/ListBox.cxx
+++ b/forms/source/component/ListBox.cxx
@@ -484,7 +484,7 @@ namespace frm
 
 void OListBoxModel::describeFixedProperties( Sequence< Property >& _rProps 
) const
 {
-BEGIN_DESCRIBE_PROPERTIES( 9, OBoundControlModel )
+BEGIN_DESCRIBE_PROPERTIES( 10, OBoundControlModel )
 DECL_PROP1(TABINDEX,sal_Int16,  
BOUND);
 DECL_PROP2(BOUNDCOLUMN, sal_Int16,  
BOUND, MAYBEVOID);
 DECL_PROP1(LISTSOURCETYPE,  ListSourceType, 
BOUND);
@@ -494,6 +494,7 @@ namespace frm
 DECL_PROP2(SELECT_VALUE,Any,
BOUND, TRANSIENT);
 DECL_PROP1(DEFAULT_SELECT_SEQ,  Sequence,
BOUND);
 DECL_PROP1(STRINGITEMLIST,  Sequence< OUString >,BOUND);
+DECL_PROP1(TYPEDITEMLIST,   Sequence< Any >,BOUND);
 END_DESCRIBE_PROPERTIES();
 }
 
diff --git a/forms/source/misc/property.cxx b/forms/source/misc/property.cxx
index 10f0caf31218..9fed981242e9 100644
--- a/forms/source/misc/property.cxx
+++ b/forms/source/misc/property.cxx
@@ -91,6 +91,7 @@ void PropertyInfoService::initialize()
 EXPAND_PROP_INIT(TARGET_FRAME),
 EXPAND_PROP_INIT(BUTTONTYPE),
 EXPAND_PROP_INIT(STRINGITEMLIST),
+EXPAND_PROP_INIT(TYPEDITEMLIST),
 EXPAND_PROP_INIT(DEFAULT_TEXT),
 EXPAND_PROP_INIT(DEFAULT_STATE),
 EXPAND_PROP_INIT(DEFAULT_DATE),
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-4' - connectivity/source

2017-06-12 Thread Julien Nabet
 connectivity/source/drivers/dbase/DTable.cxx |5 +
 1 file changed, 5 insertions(+)

New commits:
commit 7bb142d830b86d7d2b84ede2f236312e76956175
Author: Julien Nabet 
Date:   Sun Jun 11 09:34:47 2017 +0200

tdf#55631: DBASE import (take 2)

if we can't read head db_frei part, let's also put by default
m_eEncoding = RTL_TEXTENCODING_IBM_850;

Change-Id: I97601ba4c782dcfc280e975cc4498ea68407dd48
Reviewed-on: https://gerrit.libreoffice.org/38659
Tested-by: Jenkins 
Reviewed-by: Muthu Subramanian K 
(cherry picked from commit 58bb9da339d61981d45cde8e38a2ce1ae33652c4)
Reviewed-on: https://gerrit.libreoffice.org/38706
Reviewed-by: Julien Nabet 

diff --git a/connectivity/source/drivers/dbase/DTable.cxx 
b/connectivity/source/drivers/dbase/DTable.cxx
index 06c8d05d8823..12e7b1aa7647 100644
--- a/connectivity/source/drivers/dbase/DTable.cxx
+++ b/connectivity/source/drivers/dbase/DTable.cxx
@@ -283,6 +283,11 @@ void ODbaseTable::readHeader()
 break;
 }
 }
+else
+{
+// Default Encoding
+m_eEncoding = RTL_TEXTENCODING_IBM_850;
+}
 break;
 case dBaseIVMemo:
 m_pFileStream->SetEndian(SvStreamEndian::LITTLE);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'feature/emfplusprimitiveparser' - 2 commits - emfio/Library_emfio.mk emfio/source include/vcl

2017-06-12 Thread Armin Le Grand
 emfio/Library_emfio.mk |1 
 emfio/source/emfuno/xemfparser.cxx |   54 -
 include/vcl/wmf.hxx|3 +-
 3 files changed, 51 insertions(+), 7 deletions(-)

New commits:
commit 42bdd2cbc1a05eea081dd21596f26820d94961bb
Author: Armin Le Grand 
Date:   Mon Jun 12 19:54:12 2017 +0200

emfplus: use size of image of metafile fallback

Change-Id: I0de82e0e431c0ce4527a909c2f98194f465ace8d

diff --git a/emfio/source/emfuno/xemfparser.cxx 
b/emfio/source/emfuno/xemfparser.cxx
index 6fb27aadde23..3b6e9ad731fa 100644
--- a/emfio/source/emfuno/xemfparser.cxx
+++ b/emfio/source/emfuno/xemfparser.cxx
@@ -31,6 +31,7 @@
 #include 
 #include 
 
+#include 
 #include 
 #include 
 #include 
@@ -128,10 +129,22 @@ namespace emfio
 
 if (pStream && ConvertWMFToGDIMetaFile(*pStream, aMtf, 
nullptr, nullptr))
 {
+
+Size aSize(aMtf.GetPrefSize());
+
+if (aMtf.GetPrefMapMode().GetMapUnit() == 
MapUnit::MapPixel)
+{
+aSize = 
Application::GetDefaultDevice()->PixelToLogic(aSize, MapUnit::Map100thMM);
+}
+else
+{
+aSize = OutputDevice::LogicToLogic(aSize, 
aMtf.GetPrefMapMode(), MapMode(MapUnit::Map100thMM));
+}
+
 const basegfx::B2DHomMatrix aMetafileTransform(
-
basegfx::tools::createScaleTranslateB2DHomMatrix(
-5000.0, 5000.0,
-1000.0, 1000.0));
+basegfx::tools::createScaleB2DHomMatrix(
+aSize.Width(),
+aSize.Height()));
 
 aRetval.push_back(
 new 
drawinglayer::primitive2d::MetafilePrimitive2D(
commit fa09533253a6f191b690d1f79a236bf48451ba8c
Author: Armin Le Grand 
Date:   Mon Jun 12 19:31:10 2017 +0200

emfplus: for convenience added fallback

For development and to not be dependent of the progress
of the coming EMF+ importer, for now add fallback to
using the old Metafile importer, plus conversion to
primitive representation. That way the whole encapsulation
is ready and can already be used

Change-Id: I29afadaaaba71d75d0f5593852f4cc0cb3dd13f8

diff --git a/emfio/Library_emfio.mk b/emfio/Library_emfio.mk
index c0a2dc2d42ff..e9a14249271a 100644
--- a/emfio/Library_emfio.mk
+++ b/emfio/Library_emfio.mk
@@ -41,6 +41,7 @@ $(eval $(call gb_Library_use_libraries,emfio,\
 sax \
 vcl \
 svt \
+utl \
 ))
 
 $(eval $(call gb_Library_add_exception_objects,emfio,\
diff --git a/emfio/source/emfuno/xemfparser.cxx 
b/emfio/source/emfuno/xemfparser.cxx
index ce18d4be3a3a..6fb27aadde23 100644
--- a/emfio/source/emfuno/xemfparser.cxx
+++ b/emfio/source/emfuno/xemfparser.cxx
@@ -31,6 +31,11 @@
 #include 
 #include 
 
+#include 
+#include 
+#include 
+#include 
+
 //#include 
 //#include 
 //#include 
@@ -114,12 +119,36 @@ namespace emfio
 
 if (bTestCode)
 {
-// for test, just create some graphic data
-const basegfx::B2DRange aRange(1000, 1000, 5000, 5000);
-const basegfx::BColor aColor(1.0, 0.0, 0.0);
-const basegfx::B2DPolygon 
aOutline(basegfx::tools::createPolygonFromRect(aRange));
-
-aRetval.push_back(new 
drawinglayer::primitive2d::PolyPolygonColorPrimitive2D(basegfx::B2DPolyPolygon(aOutline),
 aColor));
+static bool bUseOldFilterEmbedded(true);
+
+if (bUseOldFilterEmbedded)
+{
+GDIMetaFile aMtf;
+std::unique_ptr 
pStream(::utl::UcbStreamHelper::CreateStream(xEmfStream));
+
+if (pStream && ConvertWMFToGDIMetaFile(*pStream, aMtf, 
nullptr, nullptr))
+{
+const basegfx::B2DHomMatrix aMetafileTransform(
+
basegfx::tools::createScaleTranslateB2DHomMatrix(
+5000.0, 5000.0,
+1000.0, 1000.0));
+
+aRetval.push_back(
+new 
drawinglayer::primitive2d::MetafilePrimitive2D(
+aMetafileTransform,
+aMtf));
+}
+}
+
+if(aRetval.empty())
+{
+// for test, just create some graphic data that will 
get visualized
+const 

[Libreoffice-bugs] [Bug 108489] New: LibreOffice 5.4.0.0 beta2. Fatal Error The application cannot be started

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108489

Bug ID: 108489
   Summary: LibreOffice 5.4.0.0 beta2. Fatal Error The application
cannot be started
   Product: LibreOffice
   Version: 5.4.0.0.beta2
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cysilveira...@gmail.com

I install LibreOfficeDev_5.4.0.0.beta2_Win_x64 and cannot open any component
and the system show the follow error
The application was unable to start correctly (=x7b)

-- 
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 108263] Strange Comment behavior when moving or copying sheet from one Calc document to another

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108263

--- Comment #6 from Robert Monnier  ---
(In reply to Alex Thurgood from comment #5)
> Please also indicate which version of macOS you are using.

Version of Mac OS is 10.11.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 108488] New: menu and cascading sub-menus are blank out

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108488

Bug ID: 108488
   Summary: menu and cascading sub-menus are blank out
   Product: LibreOffice
   Version: 3.3.3 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cysilveira...@gmail.com

Created attachment 133981
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133981=edit
Screen print showing the problem

I update for LibreOffice_5.3.3_Win_x64 and all menu and cascading sub-menus are
blank out for all components

-- 
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: connectivity/source

2017-06-12 Thread Julien Nabet
 connectivity/source/drivers/dbase/DTable.cxx |5 +
 1 file changed, 5 insertions(+)

New commits:
commit 58bb9da339d61981d45cde8e38a2ce1ae33652c4
Author: Julien Nabet 
Date:   Sun Jun 11 09:34:47 2017 +0200

tdf#55631: DBASE import (take 2)

if we can't read head db_frei part, let's also put by default
m_eEncoding = RTL_TEXTENCODING_IBM_850;

Change-Id: I97601ba4c782dcfc280e975cc4498ea68407dd48
Reviewed-on: https://gerrit.libreoffice.org/38659
Tested-by: Jenkins 
Reviewed-by: Muthu Subramanian K 

diff --git a/connectivity/source/drivers/dbase/DTable.cxx 
b/connectivity/source/drivers/dbase/DTable.cxx
index 6ba2e9740826..d19a7bfba257 100644
--- a/connectivity/source/drivers/dbase/DTable.cxx
+++ b/connectivity/source/drivers/dbase/DTable.cxx
@@ -283,6 +283,11 @@ void ODbaseTable::readHeader()
 break;
 }
 }
+else
+{
+// Default Encoding
+m_eEncoding = RTL_TEXTENCODING_IBM_850;
+}
 break;
 case dBaseIVMemo:
 m_pFileStream->SetEndian(SvStreamEndian::LITTLE);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 103954] Support compressed metafile formats WMZ/EMZ

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103954

--- Comment #8 from Yousuf Philips (jay)  ---
Created attachment 133980
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133980=edit
aron's linked sample

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


[Libreoffice-bugs] [Bug 103954] Support compressed metafile formats WMZ/EMZ

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103954

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

-- 
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 108479] [META] Paste special bugs and enhancements

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108479

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||89453


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=89453
[Bug 89453] Improve the wording of "Paste Special" options
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80430] [META] LOCALHELP: Features x Documentation gap

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80430

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||89453


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=89453
[Bug 89453] Improve the wording of "Paste Special" options
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 89453] Improve the wording of "Paste Special" options

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89453

Yousuf Philips (jay)  changed:

   What|Removed |Added

 CC||c...@nouenoff.nl,
   ||vmik...@collabora.co.uk
 Blocks|102593  |108479, 80430

--- Comment #12 from Yousuf Philips (jay)  ---
Maxim, Eike, Miklos, UX-Team: Would you recommend changing the format names[1]
to make them more understandable within the listbox and/or to defined these
formats in help[2] and show these definitions within the dialog (similar to
MS[3]).

The benefit of improving the listbox labels is that the improvement will also
be visible in the toolbar split button. The benefit of defining these formats
in help is that we can have sentence long descriptions for each format.

[1] http://opengrok.libreoffice.org/xref/core/sot/source/base/exchange.cxx#59
[2] https://help.libreoffice.org/Common/Paste_Special
[3] http://www.msoffice-tutorial-training.com/images/excel-t19-pic4.gif


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80430
[Bug 80430] [META] LOCALHELP: Features x Documentation gap
https://bugs.documentfoundation.org/show_bug.cgi?id=102593
[Bug 102593] [META] Paste bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=108479
[Bug 108479] [META] Paste special bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 102593] [META] Paste bugs and enhancements

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102593

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on|89453   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=89453
[Bug 89453] Improve the wording of "Paste Special" options
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108479] [META] Paste special bugs and enhancements

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108479

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Yousuf Philips (jay)  ---
Meta bug to handle issues with the Edit > Paste Special dialog and pasting of
non-default paste formats listed in the Paste Special dialog like 'Unformatted
Text', etc.

http://opengrok.libreoffice.org/xref/core/sot/source/base/exchange.cxx#59

-- 
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: cui/source

2017-06-12 Thread Katarina Behrens
 cui/source/inc/cuitabarea.hxx |7 ---
 cui/source/tabpages/tabarea.cxx   |2 --
 cui/source/tabpages/tparea.cxx|2 --
 cui/source/tabpages/tppattern.cxx |   10 +++---
 4 files changed, 3 insertions(+), 18 deletions(-)

New commits:
commit c32952b2393ddd04fb5a00763a9e5e724b991bd7
Author: Katarina Behrens 
Date:   Fri Jun 9 11:08:44 2017 +0200

Get rid of last remainders of SetPos nonsense

Change-Id: I6ebff09322e40adfc616a9003424fd1d4ff748ce
Reviewed-on: https://gerrit.libreoffice.org/38629
Tested-by: Jenkins 
Reviewed-by: Katarina Behrens 

diff --git a/cui/source/inc/cuitabarea.hxx b/cui/source/inc/cuitabarea.hxx
index e45186823170..595738d4055d 100644
--- a/cui/source/inc/cuitabarea.hxx
+++ b/cui/source/inc/cuitabarea.hxx
@@ -122,7 +122,6 @@ private:
 ChangeType  mnGradientListState;
 ChangeType  mnHatchingListState;
 
-sal_Int16   mnPos;
 PageTypemnPageType;
 boolmbAreaTP;
 
@@ -257,7 +256,6 @@ private:
 ChangeType* m_pnHatchingListState;
 
 PageTypem_nPageType;
-sal_Int32   m_nPos;
 sal_uInt16  m_nDlgType;
 bool*   m_pbAreaTP;
 
@@ -296,7 +294,6 @@ public:
 voidSetDrawModel( SdrModel* pModel ) { mpDrawModel = pModel; }
 voidSetPageType( PageType nInType ) { m_nPageType = nInType; }
 voidSetDlgType( sal_uInt16 nInType ) { m_nDlgType = nInType; }
-voidSetPos( sal_uInt16 nInPos ) { m_nPos = nInPos; }
 voidSetAreaTP( bool* pIn ) { m_pbAreaTP = pIn; }
 virtual void PageCreated(const SfxAllItemSet& aSet) override;
 voidCreatePage(sal_Int32 nId, SfxTabPage* pTab);
@@ -551,7 +548,6 @@ private:
 
 double m_fObjectWidth;
 double m_fObjectHeight;
-sal_Int32* m_pPos;
 
 XFillAttrSetItem   m_aXFillAttr;
 SfxItemSet&m_rXFSet;
@@ -594,7 +590,6 @@ public:
 virtual void PointChanged( vcl::Window* pWindow, RectPoint eRP ) override;
 
 voidSetBitmapList( const XBitmapListRef& pBmpLst) { m_pBitmapList = 
pBmpLst; }
-voidSetPos( sal_Int32* pPos ) { m_pPos = pPos; }
 voidSetBmpChgd( ChangeType* pIn ) { m_pnBitmapListState = pIn; }
 };
 
@@ -623,7 +618,6 @@ private:
 
 ChangeType* m_pnPatternListState;
 ChangeType* m_pnColorListState;
-sal_Int32*  m_pPos;
 
 XFillStyleItem  m_aXFStyleItem;
 XFillBitmapItem m_aXPatternItem;
@@ -657,7 +651,6 @@ public:
 
 voidSetColorList( XColorListRef const & pColorList ) { m_pColorList = 
pColorList; }
 voidSetPatternList( XPatternListRef const & pPatternList) { 
m_pPatternList = pPatternList; }
-voidSetPos( sal_Int32* pPos ) { m_pPos = pPos; }
 voidSetPtrnChgd( ChangeType* pIn ) { m_pnPatternListState = pIn; }
 voidSetColorChgd( ChangeType* pIn ) { m_pnColorListState = pIn; }
 voidChangeColor_Impl();
diff --git a/cui/source/tabpages/tabarea.cxx b/cui/source/tabpages/tabarea.cxx
index 72538f070da7..1d21b7edd216 100644
--- a/cui/source/tabpages/tabarea.cxx
+++ b/cui/source/tabpages/tabarea.cxx
@@ -67,7 +67,6 @@ SvxAreaTabDialog::SvxAreaTabDialog
 mnPatternListState ( ChangeType::NONE ),
 mnGradientListState ( ChangeType::NONE ),
 mnHatchingListState ( ChangeType::NONE ),
-mnPos( 0 ),
 mnPageType( PageType::Area ),
 mbAreaTP( false )
 {
@@ -252,7 +251,6 @@ void SvxAreaTabDialog::PageCreated( sal_uInt16 nId, 
SfxTabPage  )
 static_cast(rPage).SetDrawModel( mpDrawModel );
 static_cast(rPage).SetPageType( mnPageType );
 static_cast(rPage).SetDlgType( 0 );
-static_cast(rPage).SetPos( mnPos );
 static_cast(rPage).SetAreaTP(  );
 static_cast(rPage).SetGrdChgd( 
 );
 static_cast(rPage).SetHtchChgd( 
 );
diff --git a/cui/source/tabpages/tparea.cxx b/cui/source/tabpages/tparea.cxx
index 9a5e22c8a6bc..53d9ab5a2248 100644
--- a/cui/source/tabpages/tparea.cxx
+++ b/cui/source/tabpages/tparea.cxx
@@ -108,7 +108,6 @@ SvxAreaTabPage::SvxAreaTabPage( vcl::Window* pParent, const 
SfxItemSet& rInAttrs
 m_pnGradientListState(_ChangeType),
 m_pnHatchingListState(_ChangeType),
 m_nPageType(PageType::Area),
-m_nPos(0),
 m_nDlgType(0),
 m_pbAreaTP(nullptr),
 m_aXFillAttr  ( rInAttrs.GetPool() ),
@@ -447,7 +446,6 @@ void SvxAreaTabPage::CreatePage( sal_Int32 nId, SfxTabPage* 
pTab )
 {
 static_cast(pTab)->SetColorList( m_pColorList );
 static_cast(pTab)->SetPatternList( m_pPatternList 
);
-static_cast(pTab)->SetPos( _nPos );
 

[Libreoffice-bugs] [Bug 108480] Undo from clone formatting does not remove vertical alignment from cell

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108480

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #2 from Xisco Faulí  ---
Patch in https://gerrit.libreoffice.org/#/c/38699/
Moving to NEW

-- 
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 108487] FILESAVE ODT: Vertical text alignment changes after saving and reopening when a small change is made

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108487

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

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


[Libreoffice-bugs] [Bug 108487] New: FILESAVE ODT: Vertical text alignment changes after saving and reopening when a small change is made

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108487

Bug ID: 108487
   Summary: FILESAVE ODT: Vertical text alignment changes after
saving and reopening when a small change is made
   Product: LibreOffice
   Version: 4.4.6.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Vertical text alignment changes after saving and reopening when a small change
is made

Steps to Reproduce:
1. Open the attached file
2. Add a new table row above the top row
3. Save the file
4. Reopen/reloaded the file. 

Alternative: press enter somewhere in the top row

Actual Results:  
Text at the left and right is changing position after reload

Expected Results:
Text should stay at the same place


Reproducible: Always

User Profile Reset: No

Additional Info:
Found in
Version: 5.5.0.0.alpha0+
Build ID: 076ed447f694239d5c67adee528ea6e471d909ff
CPU threads: 4; OS: Windows 6.19; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2017-06-09_23:54:20
Locale: nl-NL (nl_NL); Calc: CL

and in
Versie: 4.4.6.3 
Build ID: e8938fd3328e95dcf59dd64e7facd2c7d67c704d
Locale: nl_NL


User-Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:45.0) Gecko/20100101
Firefox/45.0

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


[Libreoffice-bugs] [Bug 108469] 'As Character' image disappears after another image is inserted

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108469

--- Comment #3 from Xisco Faulí  ---
Patch submitted to gerrit: https://gerrit.libreoffice.org/#/c/38705/

-- 
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 104640] Images with caption will disappearing ('white box') when changing anchor

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104640

--- Comment #6 from Xisco Faulí  ---
Patch submitted to gerrit: https://gerrit.libreoffice.org/#/c/38705/

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


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

2017-06-12 Thread jan Iversen
 external/libcdr/UnpackedTarball_libcdr.mk |4 
 external/libcdr/iOS.patch.0   |   20 
 2 files changed, 24 insertions(+)

New commits:
commit ca0bcd62b986a5d63e263cb95ccb325a5191269c
Author: jan Iversen 
Date:   Mon Jun 12 17:44:42 2017 +0200

iOS, patch libcdr

support for arm64

Change-Id: I8d7bd37ce4c6ebde06b0662dd3d959337384d35e

diff --git a/external/libcdr/UnpackedTarball_libcdr.mk 
b/external/libcdr/UnpackedTarball_libcdr.mk
index e3c218386f50..1e484bac2cfd 100644
--- a/external/libcdr/UnpackedTarball_libcdr.mk
+++ b/external/libcdr/UnpackedTarball_libcdr.mk
@@ -21,4 +21,8 @@ $(eval $(call gb_UnpackedTarball_add_patches,libcdr, \
 endif
 endif
 
+$(eval $(call gb_UnpackedTarball_add_patches,libcdr, \
+external/libcdr/iOS.patch.0 \
+))
+
 # vim: set noet sw=4 ts=4:
diff --git a/external/libcdr/iOS.patch.0 b/external/libcdr/iOS.patch.0
new file mode 100644
index ..0b45ff304d1f
--- /dev/null
+++ b/external/libcdr/iOS.patch.0
@@ -0,0 +1,20 @@
+--- config.sub 2016-07-21 08:43:22.0 +0200
 config.sub 2017-06-12 17:42:48.0 +0200
+@@ -253,7 +253,7 @@
+   | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | 
alpha64pca5[67] \
+   | am33_2.0 \
+   | arc | arceb \
+-  | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \
++  | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] | 
arm64 \
+   | avr | avr32 \
+   | be32 | be64 \
+   | bfin \
+@@ -374,7 +374,7 @@
+   | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
+   | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
+   | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \
+-  | arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
++  | arm-*  | armbe-* | armle-* | armeb-* | armv*-* | arm64-* \
+   | avr-* | avr32-* \
+   | be32-* | be64-* \
+   | bfin-* | bs2000-* \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-06-12 Thread jan Iversen
 external/libetonyek/UnpackedTarball_libetonyek.mk |1 +
 external/libetonyek/iOS.patch.0   |   20 
 2 files changed, 21 insertions(+)

New commits:
commit e7e02af3f98696d1bd11e8ec22b2454cae7d0f3f
Author: jan Iversen 
Date:   Mon Jun 12 17:58:27 2017 +0200

iOS patch libetonyek

support for arm64

Change-Id: Ic8e78aaf6a72fa8bfc6971544414c84c29b0ec53

diff --git a/external/libetonyek/UnpackedTarball_libetonyek.mk 
b/external/libetonyek/UnpackedTarball_libetonyek.mk
index 82c1709a69b5..a836f9c4ae63 100644
--- a/external/libetonyek/UnpackedTarball_libetonyek.mk
+++ b/external/libetonyek/UnpackedTarball_libetonyek.mk
@@ -19,6 +19,7 @@ $(eval $(call gb_UnpackedTarball_add_patches,libetonyek,\
external/libetonyek/rpath.patch \
external/libetonyek/silence-libxml.patch \
external/libetonyek/0001-fix-brain-fart.patch.1 \
+   external/libetonyek/iOS.patch.0 \
 ))
 
 ifneq ($(OS),MACOSX)
diff --git a/external/libetonyek/iOS.patch.0 b/external/libetonyek/iOS.patch.0
new file mode 100644
index ..a7b127399480
--- /dev/null
+++ b/external/libetonyek/iOS.patch.0
@@ -0,0 +1,20 @@
+--- config.sub 2014-03-29 11:29:01.0 +0100
 config.sub 2017-06-12 17:56:15.0 +0200
+@@ -257,7 +257,7 @@
+   | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | 
alpha64pca5[67] \
+   | am33_2.0 \
+   | arc \
+-  | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \
++  | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] | 
arm64 \
+   | avr | avr32 \
+   | be32 | be64 \
+   | bfin \
+@@ -370,7 +370,7 @@
+   | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
+   | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
+   | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
+-  | arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
++  | arm-*  | armbe-* | armle-* | armeb-* | armv*-* | arm64-* \
+   | avr-* | avr32-* \
+   | be32-* | be64-* \
+   | bfin-* | bs2000-* \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-06-12 Thread jan Iversen
 external/libebook/UnpackedTarball_libebook.mk |4 
 external/libebook/iOS.patch.0 |   21 +
 2 files changed, 25 insertions(+)

New commits:
commit e42791983bae196d648b7f83336336c31487889e
Author: jan Iversen 
Date:   Mon Jun 12 17:51:58 2017 +0200

iOS patch libebook

support for arm64

Change-Id: Ia3d9f63608fa62e26d93da15d882094dbee19e29

diff --git a/external/libebook/UnpackedTarball_libebook.mk 
b/external/libebook/UnpackedTarball_libebook.mk
index 094d4e93839c..250d059efec4 100644
--- a/external/libebook/UnpackedTarball_libebook.mk
+++ b/external/libebook/UnpackedTarball_libebook.mk
@@ -26,4 +26,8 @@ $(eval $(call gb_UnpackedTarball_add_patches,libebook, \
 endif
 endif
 
+$(eval $(call gb_UnpackedTarball_add_patches,libebook, \
+external/libebook/iOS.patch.0 \
+))
+
 # vim: set noet sw=4 ts=4:
diff --git a/external/libebook/iOS.patch.0 b/external/libebook/iOS.patch.0
new file mode 100644
index ..325b928913e1
--- /dev/null
+++ b/external/libebook/iOS.patch.0
@@ -0,0 +1,21 @@
+--- config.sub 2013-06-15 20:18:09.0 +0200
 config.sub 2017-06-12 17:51:02.0 +0200
+@@ -253,7 +253,8 @@
+   | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
+   | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | 
alpha64pca5[67] \
+   | am33_2.0 \
+-  | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | 
avr32 \
++  | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | arm64 \
++| avr | avr32 \
+ | be32 | be64 \
+   | bfin \
+   | c4x | clipper \
+@@ -365,7 +366,7 @@
+   | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
+   | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
+   | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
+-  | arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
++  | arm-*  | armbe-* | armle-* | armeb-* | armv*-* | arm64-* \
+   | avr-* | avr32-* \
+   | be32-* | be64-* \
+   | bfin-* | bs2000-* \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Weekly QA Report (W23-2017)

2017-06-12 Thread Xisco Fauli
Hello,

What have happened in QA in the last 7 days?

  * 112 have been created, of which, 16 are still unconfirmed ( Total
Unconfirmed bugs: 427 )
Link: http://tinyurl.com/y6vuc4eu

  * 926 comments have been written.

== STATUS CHANGED ==
  * 17 bugs have been changed to 'ASSIGNED'.
Link: http://tinyurl.com/ycc8hypk
Done by: Julien Nabet ( 6 ), Yousuf Philips (jay) ( 3 ), Ximeng Zu (
2 ), Miklos Vajna ( 1 ), paul.trojahn ( 1 ), Sophia Schroeder ( 1 ),
Gabor Kelemen ( 1 ), JoNi ( 1 ), Bartosz ( 1 )

  * 1 bug has been changed to 'CLOSED'.
Link: http://tinyurl.com/ycj3slwc
Done by: Julien Nabet ( 1 )

  * 77 bugs have been changed to 'NEEDINFO'.
Link: http://tinyurl.com/y8aglk9b
Done by: Xisco Faulí ( 56 ), Buovjaga ( 5 ), Julien Nabet ( 4 ),
raal ( 3 ), V Stuart Foote ( 2 ), Telesto ( 2 ), Thomas Woltjer ( 1 ),
Stephan Bergmann ( 1 ), Regina Henschel ( 1 ), Jacques Guilleron ( 1 ),
Aron Budea ( 1 )

  * 91 bugs have been changed to 'NEW'.
Link: http://tinyurl.com/ydgweud9
Done by: Buovjaga ( 29 ), Xisco Faulí ( 8 ), Telesto ( 8 ), raal ( 8
), Yousuf Philips (jay) ( 5 ), robert ( 4 ), Dieter Praas ( 4 ), Jacques
Guilleron ( 3 ), Thomas Woltjer ( 2 ), Mike Kaganski ( 2 ), m.a.riosv (
2 ), Zineta ( 1 ), V Stuart Foote ( 1 ), Thomas Lendo ( 1 ), Shinji
Enoki ( 1 ), Jean-Sebastien Bevilacqua ( 1 ), Mihkel Tõnnov ( 1 ),
Markus Mohrhard ( 1 ), Luke ( 1 ), Lionel Elie Mamane ( 1 ), Troy Rollo
( 1 ), Gabor Kelemen ( 1 ), Timur ( 1 ), Adolfo Jayme ( 1 ), Dennis
Francis ( 1 ), Friedmann Bruno ( 1 ), Aron Budea ( 1 )

  * 19 bugs have been changed to 'RESOLVED DUPLICATE'.
Link: http://tinyurl.com/yba3f9js
Done by: Buovjaga ( 5 ), Xisco Faulí ( 3 ), Regina Henschel ( 3 ),
Thomas Lendo ( 1 ), Telesto ( 1 ), raal ( 1 ), Yousuf Philips (jay) ( 1
), Jacques Guilleron ( 1 ), Timur ( 1 ), Cor Nouws ( 1 ), Aron Budea ( 1 )

  * 39 bugs have been changed to 'RESOLVED FIXED'.
Link: http://tinyurl.com/y7yg87tr
Done by: Ximeng Zu ( 6 ), Buovjaga ( 4 ), Julien Nabet ( 3 ),
Winfried Donkers ( 2 ), Michael Stahl ( 2 ), Mike Kaganski ( 2 ), Justin
L ( 2 ), Timur ( 2 ), Adolfo Jayme ( 2 ), Xisco Faulí ( 1 ), Miklos
Vajna ( 1 ), Stephan Bergmann ( 1 ), Regina Henschel ( 1 ), ravenkwill (
1 ), Pranav Kant ( 1 ), Yousuf Philips (jay) ( 1 ), Markus Mohrhard ( 1
), Gabor Kelemen ( 1 ), andreas_k ( 1 ), JoNi ( 1 ), Michael Bauer ( 1
), Caolán McNamara ( 1 ), Thomas ( 1 )

  * 1 bug has been changed to 'RESOLVED INSUFFICIENTDATA'.
Link: http://tinyurl.com/y82qx9uk
Done by: Xisco Faulí ( 1 )

  * 3 bugs have been changed to 'RESOLVED INVALID'.
Link: http://tinyurl.com/y8llfo7v
Done by: Pavel S ( 1 ), Jim Avera ( 1 ), Timur ( 1 )

  * 1 bug has been changed to 'RESOLVED MOVED'.
Link: http://tinyurl.com/y9mv7q8o
Done by: Xisco Faulí ( 1 )

  * 6 bugs have been changed to 'RESOLVED NOTABUG'.
Link: http://tinyurl.com/ydedzqvc
Done by: Xisco Faulí ( 2 ), V Stuart Foote ( 1 ), Buovjaga ( 1 ),
tfinlay2011 ( 1 ), Khaled Hosny ( 1 )

  * 1 bug has been changed to 'RESOLVED NOTOURBUG'.
Link: http://tinyurl.com/y7guhsk9
Done by: Caolán McNamara ( 1 )

  * 11 bugs have been changed to 'RESOLVED WONTFIX'.
Link: http://tinyurl.com/ya8czcgj
Done by: Yousuf Philips (jay) ( 6 ), Xisco Faulí ( 2 ), Heiko Tietze
( 2 ), Buovjaga ( 1 )

  * 18 bugs have been changed to 'RESOLVED WORKSFORME'.
Link: http://tinyurl.com/ycvz4b5e
Done by: Xisco Faulí ( 2 ), Buovjaga ( 2 ), Yousuf Philips (jay) ( 2
), Telesto ( 1 ), Ramon Plana ( 1 ), Elmar ( 1 ), raal ( 1 ), mullanep (
1 ), Maxim Monastirsky ( 1 ), Linus ( 1 ), Jon Grossart ( 1 ), ape ( 1
), G ( 1 ), Darius Daniel Grigoras ( 1 ), Oliver S. ( 1 )

  * 10 bugs have been changed to 'UNCONFIRMED'.
Link: http://tinyurl.com/yced8a5y
Done by: yousifjkadom ( 1 ), Xisco Faulí ( 1 ), Zoltán Hegedüs ( 1
), V Stuart Foote ( 1 ), Thomas Lendo ( 1 ), macau ( 1 ), Maxim
Monastirsky ( 1 ), F. Gerken ( 1 ), bordfeldt ( 1 ), andréb ( 1 )

  * 6 bugs have been changed to 'VERIFIED FIXED'.
Link: http://tinyurl.com/ya4vcztn
Done by: Buovjaga ( 2 ), Thomas Lendo ( 2 ), Heiko Tietze ( 1 ),
Óvári ( 1 )

== KEYWORDS ADDED ==
  * 'bibisectRequest' has been added to 10 bugs.
Link: http://tinyurl.com/yccmlts3
Done by: Telesto ( 5 ), Buovjaga ( 4 ), Aron Budea ( 1 )

  * 'bibisected' has been added to 12 bugs.
Link: http://tinyurl.com/y8ebw8vn
Done by: Xisco Faulí ( 4 ), raal ( 4 ), Aron Budea ( 3 ), EricP ( 1 )

  * 'bisected' has been added to 10 bugs.
Link: http://tinyurl.com/yctrhusg
Done by: Xisco Faulí ( 4 ), raal ( 4 ), Aron Budea ( 2 )

  * 'filter:doc' has been added to 1 bugs.
Link: http://tinyurl.com/y9pv8oq4
Done by: Xisco Faulí ( 1 )

  * 'filter:docx' has been added to 5 bugs.
Link: http://tinyurl.com/ybv3lw9k
Done by: Buovjaga ( 2 ), Telesto ( 1 ), Yousuf Philips (jay) ( 1 ),
Aron Budea ( 1 )

  * 'filter:svgOpen' has been added to 2 bugs.
Link: 

[Libreoffice-commits] core.git: 2 commits - external/libabw external/librevenge

2017-06-12 Thread jan Iversen
 external/libabw/UnpackedTarball_libabw.mk |4 
 external/libabw/iOS.patch.0   |   20 
 external/librevenge/UnpackedTarball_librevenge.mk |1 +
 external/librevenge/librevenge-iOS.patch.0|   20 
 4 files changed, 45 insertions(+)

New commits:
commit a5f19b5fc210148dc54ec89dfd5e230aac5ac013
Author: jan Iversen 
Date:   Mon Jun 12 17:40:02 2017 +0200

iOS patch libabw

support for arm64

Change-Id: Ia5a00ef55929a71e05e3547a7ac11e8ab876e953

diff --git a/external/libabw/UnpackedTarball_libabw.mk 
b/external/libabw/UnpackedTarball_libabw.mk
index b0d1610671c7..aeb482975b0e 100644
--- a/external/libabw/UnpackedTarball_libabw.mk
+++ b/external/libabw/UnpackedTarball_libabw.mk
@@ -21,4 +21,8 @@ $(eval $(call gb_UnpackedTarball_add_patches,libabw, \
 endif
 endif
 
+$(eval $(call gb_UnpackedTarball_add_patches,libabw, \
+external/libabw/iOS.patch.0 \
+))
+
 # vim: set noet sw=4 ts=4:
diff --git a/external/libabw/iOS.patch.0 b/external/libabw/iOS.patch.0
new file mode 100644
index ..9d69d6ace91e
--- /dev/null
+++ b/external/libabw/iOS.patch.0
@@ -0,0 +1,20 @@
+--- config.sub 2014-03-29 11:28:53.0 +0100
 config.sub 2017-06-12 17:37:29.0 +0200
+@@ -257,7 +257,7 @@
+   | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | 
alpha64pca5[67] \
+   | am33_2.0 \
+   | arc \
+-  | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \
++  | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] | 
arm64 \
+   | avr | avr32 \
+   | be32 | be64 \
+   | bfin \
+@@ -370,7 +370,7 @@
+   | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
+   | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
+   | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
+-  | arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
++  | arm-*  | armbe-* | armle-* | armeb-* | armv*-* | arm64-* \
+   | avr-* | avr32-* \
+   | be32-* | be64-* \
+   | bfin-* | bs2000-* \
commit f43ea5d5276be50c87ea764131fd4c82995c15fc
Author: jan Iversen 
Date:   Mon Jun 12 17:35:28 2017 +0200

iOS patch librevenge

Support for arm64

Change-Id: Ibba1a9486b8eaee4bf3c0cf673dd4cc112d084e0

diff --git a/external/librevenge/UnpackedTarball_librevenge.mk 
b/external/librevenge/UnpackedTarball_librevenge.mk
index d44678469389..84a5a9a1eaf7 100644
--- a/external/librevenge/UnpackedTarball_librevenge.mk
+++ b/external/librevenge/UnpackedTarball_librevenge.mk
@@ -25,6 +25,7 @@ ifneq ($(OS),MACOSX)
 ifneq ($(OS),WNT)
 $(eval $(call gb_UnpackedTarball_add_patches,librevenge, \
 external/librevenge/librevenge-bundled-soname.patch.0 \
+external/librevenge/librevenge-iOS.patch.0 \
 ))
 endif
 endif
diff --git a/external/librevenge/librevenge-iOS.patch.0 
b/external/librevenge/librevenge-iOS.patch.0
new file mode 100644
index ..78ee4d737def
--- /dev/null
+++ b/external/librevenge/librevenge-iOS.patch.0
@@ -0,0 +1,20 @@
+--- config.sub 2014-05-08 14:03:43.0 +0200
 config.sub 2017-06-12 17:33:01.0 +0200
+@@ -257,7 +257,7 @@
+   | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | 
alpha64pca5[67] \
+   | am33_2.0 \
+   | arc \
+-  | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \
++  | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] | 
arm64 \
+   | avr | avr32 \
+   | be32 | be64 \
+   | bfin \
+@@ -370,7 +370,7 @@
+   | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
+   | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
+   | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
+-  | arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
++  | arm-*  | armbe-* | armle-* | armeb-* | armv*-* | arm64-* \
+   | avr-* | avr32-* \
+   | be32-* | be64-* \
+   | bfin-* | bs2000-* \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 108486] New: EDITING: Remove hyperlink in the context menu after rotating text

2017-06-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108486

Bug ID: 108486
   Summary: EDITING: Remove hyperlink in the context menu after
rotating text
   Product: LibreOffice
   Version: 5.5.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Remove hyperlink in the context menu after rotating text

Steps to Reproduce:
1. Open a new Writer document
2. Type Hello
3. Select Hello 
4. Right Click Context Menu -> Character
5. Position Tab -> Rotation 90 degrees -> OK
6. Right Click the (still) selected text Hello 

Actual Results:  
Remove, Copy, Edit Hyperlink shows up in the context menu

Expected Results:
Shouldn't appear


Reproducible: Always

User Profile Reset: No

Additional Info:
Found in
Version: 5.5.0.0.alpha0+
Build ID: 076ed447f694239d5c67adee528ea6e471d909ff
CPU threads: 4; OS: Windows 6.19; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2017-06-09_23:54:20
Locale: nl-NL (nl_NL); Calc: CL

and in
Versie: 5.4.0.0.beta1 
Build ID: 8672113ead4e403c55e31b1d9a3d1e0f3b299577
CPU-threads: 4; Besturingssysteem:Windows 6.2; UI-render: GL; 
Locale: nl-NL (nl_NL); Calc: CL


User-Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:45.0) Gecko/20100101
Firefox/45.0

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


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

2017-06-12 Thread jan Iversen
 external/hyphen/UnpackedTarball_hyphen.mk |1 +
 external/hyphen/hyphen-iOS.patch.0|   20 
 2 files changed, 21 insertions(+)

New commits:
commit 2487bc42780b698bcee3572422dd3585ee845eef
Author: jan Iversen 
Date:   Mon Jun 12 17:30:49 2017 +0200

iOS hyphen patch

Added support for arm64

Change-Id: Ie48a463b0f0a8af98001fed592d59a8e7b0d0225

diff --git a/external/hyphen/UnpackedTarball_hyphen.mk 
b/external/hyphen/UnpackedTarball_hyphen.mk
index 0f41367756b6..c2cbe7f1040b 100644
--- a/external/hyphen/UnpackedTarball_hyphen.mk
+++ b/external/hyphen/UnpackedTarball_hyphen.mk
@@ -14,6 +14,7 @@ $(eval $(call 
gb_UnpackedTarball_set_tarball,hyphen,$(HYPHEN_TARBALL)))
 $(eval $(call gb_UnpackedTarball_add_patches,hyphen,\
external/hyphen/hyphen-build.patch \
external/hyphen/hyphen-fdo48017-wfopen.patch \
+   external/hyphen/hyphen-iOS.patch.0 \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/external/hyphen/hyphen-iOS.patch.0 
b/external/hyphen/hyphen-iOS.patch.0
new file mode 100644
index ..9e578338b858
--- /dev/null
+++ b/external/hyphen/hyphen-iOS.patch.0
@@ -0,0 +1,20 @@
+--- config.sub 2014-06-27 10:59:40.0 +0200
 config.sub 2017-06-12 17:03:16.0 +0200
+@@ -257,7 +257,7 @@
+   | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | 
alpha64pca5[67] \
+   | am33_2.0 \
+   | arc \
+-  | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \
++  | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] | 
arm64 \
+   | avr | avr32 \
+   | be32 | be64 \
+   | bfin \
+@@ -370,7 +370,7 @@
+   | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
+   | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
+   | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
+-  | arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
++  | arm-*  | armbe-* | armle-* | armeb-* | armv*-* | arm64-* \
+   | avr-* | avr32-* \
+   | be32-* | be64-* \
+   | bfin-* | bs2000-* \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [icu-support] Adding LibreOffice as reference

2017-06-12 Thread Eike Rathke
Hi Sophia,

On Sunday, 2017-06-11 12:50:16 +0200, Sophia Schroeder wrote:

> the ICU project added us to the list of reference projects after my request 
> yesterday.

Thank you for taking the initiative!

> Are there any other upstream projects known we should be listen too and I may 
> ask for it?

That could be investigated by inspecting all external/*/README files in
the core source repository's tree and visit those projects' web sites
and see if they have some similar "these projects use ..." page. If
you'd want to take that?

 Eike

-- 
LibreOffice Calc developer. Number formatter stricken i18n transpositionizer.
GPG key 0x6A6CD5B765632D3A - 2265 D7F3 A7B0 95CC 3918  630B 6A6C D5B7 6563 2D3A
Care about Free Software, support the FSFE https://fsfe.org/support/?erack


signature.asc
Description: PGP signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2017-06-12 Thread jan Iversen
 external/hunspell/0001-Revert-Remove-autotools-autogenerated-files.patch |
4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 659d6b468b41692ebf0645596e39744f2e90621e
Author: jan Iversen 
Date:   Mon Jun 12 17:00:36 2017 +0200

iOS, update hunspell "revert commit" patch

Added support for arm64, by modifying the
patch that reverts an earlier commit.

Change-Id: If0d1920c1a91b3ad44c4ae9c299270b7806db811

diff --git 
a/external/hunspell/0001-Revert-Remove-autotools-autogenerated-files.patch 
b/external/hunspell/0001-Revert-Remove-autotools-autogenerated-files.patch
index ab6b19d2442a..b40b71e2ea7c 100644
--- a/external/hunspell/0001-Revert-Remove-autotools-autogenerated-files.patch
+++ b/external/hunspell/0001-Revert-Remove-autotools-autogenerated-files.patch
@@ -4937,7 +4937,7 @@ index 000..6467c95
 +  | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | 
alpha64pca5[67] \
 +  | am33_2.0 \
 +  | arc | arceb \
-+  | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \
++  | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] | 
arm64 \
 +  | avr | avr32 \
 +  | be32 | be64 \
 +  | bfin \
@@ -5058,7 +5058,7 @@ index 000..6467c95
 +  | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
 +  | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
 +  | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \
-+  | arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
++  | arm-*  | armbe-* | armle-* | armeb-* | armv*-* | arm64-* \
 +  | avr-* | avr32-* \
 +  | be32-* | be64-* \
 +  | bfin-* | bs2000-* \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


  1   2   3   >