[Libreoffice-bugs] [Bug 98400] Editing track changes needs to be reset by user after every save document

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98400

--- Comment #2 from Peter Lemkin  ---
MS Word documents in LIbre Office Writer do not work properly with 'track
changes'. One can NOT see what it is set at [red light, green light doesn't
change - stays red]. Everytime a document is saved it reverts to show changes
if set on do not show changes. Everything one closes a document even though it
was saved, it prompts for 'Save Changes?' and reverts to show changes when it
is set on do not show changes. I do professional editing and always edit with
do not show changes, but this is now almost impossible. One has to endlessly
switch back to do not show changes, as the program finds every reason to show
changes.

-- 
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 98816] New: sub numbering bug

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98816

Bug ID: 98816
   Summary: sub numbering bug
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: raka.li...@gmail.com

User-Agent:   Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like
Gecko) Ubuntu Chromium/48.0.2564.116 Chrome/48.0.2564.116 Safari/537.36
Build Identifier: LibreOffice 5.0.5.2

when i add sub number it not affected and i did not change first number

Reproducible: Always




[Information automatically included from LibreOffice]
Locale: en-US
Module: TextDocument
[Information guessed from browser]
OS: Linux (All)
OS is 64bit: no


Reset User Profile?No

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

2016-03-21 Thread Martin Hosken
 external/icu/khmerbreakengine.patch |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 7f36f4ce9f9f3d430009ba472d275d038abecb16
Author: Martin Hosken 
Date:   Tue Mar 22 11:26:52 2016 +0700

Fix wrong pattern definitions in khmer dictionary breaker

Change-Id: I0132196744046391759a6e5110d054feee3deea3
Reviewed-on: https://gerrit.libreoffice.org/23420
Tested-by: Jenkins 
Reviewed-by: Martin Hosken 

diff --git a/external/icu/khmerbreakengine.patch 
b/external/icu/khmerbreakengine.patch
index bc0d287..0687645 100644
--- a/external/icu/khmerbreakengine.patch
+++ b/external/icu/khmerbreakengine.patch
@@ -15,8 +15,8 @@ index f1c874d..3ad1b3f 100644
 +fViramaSet.applyPattern(UNICODE_STRING_SIMPLE("[[:ccc=VR:]]"), status);
 +
 +// note Skip Sets contain fIgnoreSet characters too.
-+
fSkipStartSet.applyPattern(UNICODE_STRING_SIMPLE("[[:lb=OP:][:lb=QU:]]\\u200C\\u200D\\u2060"),
 status);
-+
fSkipEndSet.applyPattern(UNICODE_STRING_SIMPLE("[[:lb=CP:][:lb=QU:][:lb=EX:][:lb=CL:]]\\u200C\\u200D\\u2060"),
 status);
++
fSkipStartSet.applyPattern(UNICODE_STRING_SIMPLE("[[:lb=OP:][:lb=QU:]\\u200C\\u200D\\u2060]"),
 status);
++
fSkipEndSet.applyPattern(UNICODE_STRING_SIMPLE("[[:lb=CP:][:lb=QU:][:lb=EX:][:lb=CL:]\\u200C\\u200D\\u2060]"),
 status);
 +
fNBeforeSet.applyPattern(UNICODE_STRING_SIMPLE("[[:lb=CR:][:lb=LF:][:lb=NL:][:lb=SP:][:lb=ZW:][:lb=IS:][:lb=BA:][:lb=NS:]]"),
 status);
  }
  
@@ -332,10 +332,10 @@ index f1c874d..3ad1b3f 100644
 +startZwsp = scanBeforeStart(text, scanStart, breakStart);
 +}
 +utext_setNativeIndex(text, rangeStart);
-+scanFwdClusters(text, rangeStart, initAfter);
++scanFwdClusters(text, rangeEnd, initAfter);
 +bool endZwsp = scanAfterEnd(text, utext_nativeLength(text), scanEnd, 
breakEnd);
 +utext_setNativeIndex(text, rangeEnd - 1);
-+scanBackClusters(text, rangeEnd, finalBefore);
++scanBackClusters(text, rangeStart, finalBefore);
 +if (finalBefore < initAfter) {   // the whole run is tented so no breaks
 +if (breakStart || fTypes < UBRK_LINE)
 +foundBreaks.push(rangeStart, status);
@@ -539,7 +539,7 @@ index f1c874d..3ad1b3f 100644
 +int32_t ln = lengths.elementAti(j);
 +utext_setNativeIndex(text, ln+ix);
 +int32_t c = utext_current32(text);
-+while (fPuncSet.contains(c) || fIgnoreSet.contains(c)) {
++while ((fPuncSet.contains(c) || fIgnoreSet.contains(c)) && ln + i 
< numCodePts) {
 +++ln;
 +utext_next32(text);
 +c = utext_current32(text);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98808] UI: Preview of the average value of the marked cells in the status bar

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98808

--- Comment #2 from Adolfo Jayme  ---
… And we’ve recently expanded it so that users can select multiple choices at a
time: https://wiki.documentfoundation.org/ReleaseNotes/5.2#Calc

Cheers

-- 
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 98808] UI: Preview of the average value of the marked cells in the status bar

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98808

Adolfo Jayme  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #1 from Adolfo Jayme  ---
This functionality already exists: just right-click your status bar and select
“Average”. =)

-- 
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 98675] Template Management is missing

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98675

--- Comment #4 from Adolfo Jayme  ---
> Was it necessary to mess up the user interface once again? Where are the
> options to print style properties?

Funny that you say “once again” (implying recency), since the last time the
Template Manager was touched was in a 2012 (IIRC) Google Summer of Code
project: that is almost four years ago. In a few months we’re going to release
version 5.2 and you’re complaining about a change that was introduced in 4.0
(which is ancient by now). And no, we’re not happy with the current status quo
either.

So, Ulrich, if you’re interested in our plans for the template manager, be sure
to check out these UX documents and provide feedback:

https://docs.google.com/document/d/1JRPNdeHQpgqiqJv8LW-RHOjtHN8EMX0qK98QBnr10Yg/edit#heading=h.q1t6im2oip6e
https://docs.google.com/document/d/1Ri2jznhcQmCtk3cVygEhwN7pi8FkbIVV_OvRQce_n6Y/edit#heading=h.icneug3ebnpf

-- 
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 98774] Splash screen does not show up under Mac OS X

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98774

--- Comment #3 from Adolfo Jayme  ---
@Steve, Emilio: is this issue exclusive of the App Store version, then? If so,
we should probably add András to CC ;-)

-- 
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 98101] Italics having accent marks sometimes below and above letters in LO 5.0.1.3

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98101

--- Comment #4 from Adolfo Jayme  ---
Thanks for checking, Stuart! :-)

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

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98815

Bug ID: 98815
   Summary: {tab} character in cells is not saved.
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tomima...@gmx.net

User-Agent:   Mozilla/5.0 (Windows NT 5.1; rv:45.0) Gecko/20100101
Firefox/45.0
Build Identifier: LibreOffice 4.4.7.2

{tab} character is effective in cells when editing.
however,
{tab} character in cells is not saved.

Reproducible: Always

Steps to Reproduce:
in Writer
1.Type aaa + {tab} + BBB
2.Copy above, then Paste to Cell of Calc.
3.{tab} character is effective in cells
4.Save Calc file.
Actual Results:  
After open saved file, {tab} is lost.
aaa + BBB

Expected Results:  
aaa + {tab} + BBB

[Information automatically included from LibreOffice]
Locale: en-US
Module: SpreadsheetDocument
[Information guessed from browser]
OS: Windows (All)
OS is 64bit: no


Reset User Profile?No

-- 
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] help.git: source/text

2016-03-21 Thread Adolfo Jayme Barrientos
 source/text/scalc/01/func_forecastetsadd.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit fa2b64a955335a5dd0ad50bc5348a17a388b101e
Author: Adolfo Jayme Barrientos 
Date:   Mon Mar 21 22:17:31 2016 -0600

Typo

Change-Id: If20a4bf9d3370e407571cbe901584b7ff62ae7e2

diff --git a/source/text/scalc/01/func_forecastetsadd.xhp 
b/source/text/scalc/01/func_forecastetsadd.xhp
index 04bf45b..3bd1b12 100644
--- a/source/text/scalc/01/func_forecastetsadd.xhp
+++ b/source/text/scalc/01/func_forecastetsadd.xhp
@@ -23,7 +23,7 @@
 FORECAST.ETS.ADD function
 
 
-FORECAST.ETS.ADD 
fucntion
+FORECAST.ETS.ADD 
function
 Calculates forecast(s) 
(future values) based on the historical data using ETS or EDS 
algorithms. EDS is used when argument period_length is 0, 
otherwise ETS is used.
 
 FORECAST.ETS.ADD calculates with the model
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2016-03-21 Thread Adolfo Jayme Barrientos
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ac488ccba124fc2539f765d354a0b97c9b843f51
Author: Adolfo Jayme Barrientos 
Date:   Mon Mar 21 22:17:31 2016 -0600

Updated core
Project: help  fa2b64a955335a5dd0ad50bc5348a17a388b101e

Typo

Change-Id: If20a4bf9d3370e407571cbe901584b7ff62ae7e2

diff --git a/helpcontent2 b/helpcontent2
index 912b8cc..fa2b64a 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 912b8cc190c9242ec4bda65c506cde9f94fc0f69
+Subproject commit fa2b64a955335a5dd0ad50bc5348a17a388b101e
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98777] unexpected autoscrolling requires closing and reopening file

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98777

--- Comment #3 from Nick Levinson  ---
I plan to try. Meanwhile, I found another possible symptom: Sometimes, next to
the Find (ctrl-f) window, the up and down arrows are dimmed, although their
tooltips ("Find Next" and "Find Previous") still work. I don't know why they
dim. The arrows don't work when dimmed, but the Enter key does. Then I make the
Find window go away, then bring it back, the arrows still dimmed, and try a
Find again. After that, possibly with the arrows no longer dimmed, the
auto-scrolling happens. This isn't a set of steps under which the problem is
not intermittent, so I'll try to put that together. The problem has occurred
with various *.odt files. I've created a test file and expect to try some more.

-- 
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 98814] New: LibreOffice does not retain vectors in background images after the session ends

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98814

Bug ID: 98814
   Summary: LibreOffice does not retain vectors in background
images after the session ends
   Product: LibreOffice
   Version: 4.2.8.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: docuemntfoundat...@multiwebinc.com

When setting an SVG background image it only stores it as a vector for the
current session. If you close and reopen the document it becomes rasterized and
looks pixelated and needs to be re-added in order to get it to look correct
again.

Note: I'm using 4.2.8.2 on Ubuntu 14.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 98259] META: Keyboard shortcuts (accelerators)

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98259

Björn Michaelsen  changed:

   What|Removed |Added

   See Also||https://launchpad.net/bugs/
   ||891539

-- 
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 98259] META: Keyboard shortcuts (accelerators)

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98259

Björn Michaelsen  changed:

   What|Removed |Added

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

--- Comment #3 from Björn Michaelsen  ---
Do we really want to divert our keymaps per platform? This will be a
documentation and UX nightmare -- esp. with all the video tutorials and such
then being platform specific. See also:
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/891539

And the discussion at:
http://thread.gmane.org/gmane.comp.documentfoundation.libreoffice.ux-advise/189/focus=230

=> UX-Advise

-- 
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-ux-advise] [Bug 98259] META: Keyboard shortcuts (accelerators)

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98259

Björn Michaelsen  changed:

   What|Removed |Added

   See Also||https://launchpad.net/bugs/
   ||891539

-- 
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 98259] META: Keyboard shortcuts (accelerators)

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98259

Björn Michaelsen  changed:

   What|Removed |Added

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

--- Comment #3 from Björn Michaelsen  ---
Do we really want to divert our keymaps per platform? This will be a
documentation and UX nightmare -- esp. with all the video tutorials and such
then being platform specific. See also:
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/891539

And the discussion at:
http://thread.gmane.org/gmane.comp.documentfoundation.libreoffice.ux-advise/189/focus=230

=> UX-Advise

-- 
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 98290] Better shortcuts for the Mac OS X platform

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98290

Björn Michaelsen  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
  Component|LibreOffice |ux-advise
   See Also||https://launchpad.net/bugs/
   ||891539

--- Comment #5 from Björn Michaelsen  ---
Do we really want to divert our keymaps per platform? This will be a
documentation and UX nightmare -- esp. with all the video tutorials and such
then being platform specific. See also:
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/891539

And the discussion at:
http://thread.gmane.org/gmane.comp.documentfoundation.libreoffice.ux-advise/189/focus=230

=> UX-Advise

-- 
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 98813] Formatted Text not saved

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98813

Nicole Taylor  changed:

   What|Removed |Added

Version|unspecified |5.1.1.2 rc

-- 
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 98813] New: Formatted Text not saved

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98813

Bug ID: 98813
   Summary: Formatted Text not saved
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: queennikki1...@gmail.com

When opening an existing document in calc, I re-center an entire column and
change the font of the entire column to Arial.

I re-save the document as a Microsoft Document. .XLS format

Re-open the document and not only has it returned to the previous state, but
often moves some of the column titles to the wrong place.

I never had this issue with previous versions of LibreOffice calc with the
exact same file.

X64 Hardware Desktop PC.. Ubuntu 16.04 LibreOffice 5.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-commits] core.git: Branch 'libreoffice-5-1' - sc/source

2016-03-21 Thread Eike Rathke
 sc/source/core/tool/rangenam.cxx |4 
 sc/source/core/tool/token.cxx|4 
 2 files changed, 8 insertions(+)

New commits:
commit 5e655ecfe007238080941077c6dc6187005e91fa
Author: Eike Rathke 
Date:   Mon Mar 21 18:50:00 2016 +0100

Resolves: tdf#93127 copying cells does not modify named expressions

Change-Id: Ic3d0b0a709ecfeade4b3a9c4be9e0c9cfd766103
(cherry picked from commit 7d267d3b168ba3b13763733e8c319a79d990773a)
Reviewed-on: https://gerrit.libreoffice.org/23409
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sc/source/core/tool/rangenam.cxx b/sc/source/core/tool/rangenam.cxx
index a1e25ee..dd2db2b 100644
--- a/sc/source/core/tool/rangenam.cxx
+++ b/sc/source/core/tool/rangenam.cxx
@@ -729,6 +729,10 @@ ScRangeData* ScRangeName::findByIndex(sal_uInt16 i) const
 
 void ScRangeName::UpdateReference(sc::RefUpdateContext& rCxt, SCTAB nLocalTab )
 {
+if (rCxt.meMode == URM_COPY)
+// Copying cells does not modify named expressions.
+return;
+
 for (auto const& itr : m_Data)
 {
 itr.second->UpdateReference(rCxt, nLocalTab);
diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx
index 5c71a56..29e629b 100644
--- a/sc/source/core/tool/token.cxx
+++ b/sc/source/core/tool/token.cxx
@@ -3474,6 +3474,10 @@ sc::RefUpdateResult ScTokenArray::AdjustReferenceInName(
 
 sc::RefUpdateResult aRes;
 
+if (rCxt.meMode == URM_COPY)
+// Copying cells does not modify named expressions.
+return aRes;
+
 TokenPointers aPtrs( pCode, nLen, pRPN, nRPN);
 for (size_t j=0; j<2; ++j)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98812] New: FILEOPEN: Writer crashes on loading a particular .doc document

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98812

Bug ID: 98812
   Summary: FILEOPEN: Writer crashes on loading a particular .doc
document
   Product: LibreOffice
   Version: 5.1.1.3 release
  Hardware: x86-64 (AMD64)
   URL: http://wcatwc.arh.noaa.gov/exercises/Lantex16Final.doc
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: warre...@comcast.net

Created attachment 123763
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123763=edit
WinDBG Backtrace

When I attempt to open a particular .doc document, Writer immediately crashes.
The .doc document is located at the following url:
wcatwc.arh.noaa.gov/exercises/Lantex16Final.doc

Steps to reproduce:
1. Download document
2. Double click on document
3. Writer crashes
or
2. Open writer
3. Open document through File -> Open
4. Writer crashes

Version: 5.1.1.3
Build ID: 89f508ef3ecebd2cfb8e1def0f0ba9a803b88a6d
CPU Threads: 8; OS Version: Windows 6.2; UI Render: GL; 
Locale: en-US (en_US)

Windows 10 Home 64 bit
Backtrace attached.

-- 
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 98442] Redo of editing incomplete in comment editing

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98442

--- Comment #2 from Luke Kendall  ---
Interesting.  I created the document in LO 5.1.0.3: the fact that the new doc
is corrupt when seen by LO5.1.1.2 is interesting.

Yes, I experience the same behaviour you describe.

But if I allow LO to repair the document and proceed by following the steps I
described in the original report, the same redo problem occurs.

I also checked that if I save the repaired Incomplete-Redo-new-doc.odt, close
both docs and then follow the steps for the repaired doc and the old doc, the
problem again is perfectly reproduced.

I don't still 5.1.0.3 installed, so I can't easily check to see what it thinks
of Incomplete-Redo-new-doc.odt.

It seems very strange to me that a tiny document created by LO is seen as
corrupt!

Do you think the nature of the corruption might be worth investigating, too?
(Especially since the file is only 21 words long.)

-- 
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 98811] New: crashes

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98811

Bug ID: 98811
   Summary: crashes
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ironrea...@hotmail.com

while editing docs libreOffice crashes after 3 to 5 edits

-- 
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: C++ Macro example: DocumentLoader

2016-03-21 Thread aitor_czr

On 03/21/16 13:56, Stephan Bergmann wrote:
Smells like a bug in Debian's packaging of the LibreOffice SDK.  The 
problem is the


  -L""

in the gcc invocation above.  Per the SDK's settings/settings.mk, 
that's expanded from


  -L"$(OO_SDK_URE_LIB_DIR)"

and OO_SDK_URE_LIB_DIR should be set as an environment variable in the 
SDK's setsdkenv_unix.sh.in (when you run the setsdkenv_unix script), 
but looks like in your case is empty or unset, for whatever reason. 


Thanks again, Stephan, i will try building the sources of LibreOffice.

Cheers,

   Aitor.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 98810] New: Error message "LibreOffice has stopped working" now routine

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98810

Bug ID: 98810
   Summary: Error message "LibreOffice has stopped working" now
routine
   Product: LibreOffice
   Version: 5.1.1.3 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mtes...@bellsouth.net

While performing simple edits to one of my 58 spreadsheets in this folder-file
I have been having problems after 5 - 30 minutes of work. 
I tried a suggestion of renaming the User/ folder and allowing the software to
rebuild it. This rebuild has not solved the problem. I could not find the file
"registrymodifications.xcu. Any suggestions? Has anyone found a thorough
software removal of all Vers4 and Vers5 then a new reinstall help?

-- 
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: gsoc 16

2016-03-21 Thread jose55
is there any last day ?

> On 21 Mar 2016, at 20:55, gaurav sharma [via Document Foundation Mail 
> Archive]  wrote:
> 
> Hi
> 
> What is the last date for solving easy hack.
> 
> Regards
> Gaurav
> 
> ___ 
> LibreOffice mailing list 
> [hidden email]  
> https://lists.freedesktop.org/mailman/listinfo/libreoffice 
> 
> 
> 
> If you reply to this email, your message will be added to the discussion 
> below:
> http://nabble.documentfoundation.org/gsoc-16-tp4179197.html 
> 
> To unsubscribe from Dev, click here 
> .
> NAML 
> 




--
View this message in context: 
http://nabble.documentfoundation.org/gsoc-16-tp4179197p4179202.html
Sent from the Dev mailing list archive at Nabble.com.___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 98803] UI Item enabled/disabled

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98803

--- Comment #1 from Maxim Monastirsky  ---
(In reply to ThierryT from comment #0)
> I tryed also the using of the XmenuBar interface and the XPopupMenu
> interface by using the "enableItem" method.
This isn't going to work. UI elements such as menubar are controlled internally
by LO, and changing them directly will easily break that code (because it won't
be aware of the changes you made).

In general what you need isn't to disable the individual menu item - but to
disable the *command* to which this item is bound. Disabling a command will be
reflected in the UI by (usually) disabling all elements that bound to this
command - be it a menu item or a toolbar button. There are several official
solutions, that can be used to achieve this:

- org.openoffice.Office.Commands configuration. This can be used for simple
enabling/disabling [1].

- Dispatch Interception. Besides enabling/disabling, this allows you even to
change the behavior of commands (e.g. you want a different thing to happen when
clicking the "Save" button) [2]. Surprisingly there is even a way to use that
from BASIC [3].

- Protocol Handlers [4].



[1]
https://wiki.openoffice.org/wiki/Documentation/DevGuide/WritingUNO/Disable_Commands

[2]
https://wiki.openoffice.org/wiki/Documentation/DevGuide/OfficeDev/Dispatch_Interception

[3]
http://openoffice.2283327.n4.nabble.com/Intercepting-commands-quot-uno-xxx-quot-td2772465.html
- There is a sample document if you scroll a bit.

[4]
https://wiki.openoffice.org/wiki/Documentation/DevGuide/WritingUNO/Protocol_Handler

-- 
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 98809] New: Locking chart position disables adjusting title & subtitle positions

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98809

Bug ID: 98809
   Summary: Locking chart position disables adjusting title &
subtitle positions
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: voll...@gmail.com

User-Agent:   Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.87 Safari/537.36
Build Identifier: LibreOffice 5.1.1.3

When you lock the overall position of a chart, it apparently disables changing
the positions of things inside the chart, such as the title and subtitle of the
chart. Actually, you CAN change them just fine, but the changes don't stick
when exiting the chart edit mode (positions revert to their original
positions). After unlocking the overall chart position, the changes made to
title position DO stick.

Reproducible: Always



Expected Results:  
When editing the chart title position, it should remain where I put it when
exiting chart edit mode. Locking the chart position should only lock the
position of the chart, not the elements inside of it. (or if it MUST lock them
for some reason, it should not be possible to edit them while they are locked -
but I think this would not be the desired behavior.)

[Information automatically included from LibreOffice]
Locale: en-US
Module: SpreadsheetDocument
[Information guessed from browser]
OS: Mac OS X (All)
OS is 64bit: no


Reset User Profile?No

-- 
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 98732] Export sheet from calc to pdf creates weird characters

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98732

tbu...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #5 from tbu...@gmail.com ---
I am using win XP.
 I checked those two bugs you mentioned. Two problems with them:
-Both bugs mentioned are about using some japanese or other non-conventional
character sets, while in my case only simple common character sets were used.
-those bugs are categorized to be fixed...

Unfortunately I cannot give you the exact versions of the Libre Office and
acrobat reader I used at the moment the whole process went south, but since I
have a regular monthly task the involves exporting to pdf, that is for sure
that one day it was working but a month later it was not. And I have been using
the same old XP OS from much longer before...

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


[Libreoffice-commits] core.git: sw/PythonTest_sw_python.mk

2016-03-21 Thread Michael Stahl
 sw/PythonTest_sw_python.mk |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 3cccd9c1b01fe12c795bb7fb0ff5b1a49544c727
Author: Michael Stahl 
Date:   Mon Mar 21 22:11:02 2016 +0100

sw: load_save_test is not a unit test

This was originally added as a complex test as a convenient way to bulk
load/store documents, before nice features like soffice --convert-to.

Running it as such doesn't do anything, since the "FIXME" directories it
reads files from don't exist (actually it even failsa to run on WNT).

Change-Id: If74fc30997a0f5f67009b765f5e9e79d72d00ece

diff --git a/sw/PythonTest_sw_python.mk b/sw/PythonTest_sw_python.mk
index 9e8d0d2..3c5e2d5 100644
--- a/sw/PythonTest_sw_python.mk
+++ b/sw/PythonTest_sw_python.mk
@@ -22,7 +22,6 @@ $(eval $(call 
gb_PythonTest_add_modules,sw_python,$(SRCDIR)/sw/qa/python,\
check_indexed_property_values \
check_styles \
check_table \
-   load_save_test \
get_expression \
set_expression \
var_fields \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: clew/Library_clew.mk clew/Makefile clew/Module_clew.mk clew/source external/clew external/Module_external.mk RepositoryModule_host.mk

2016-03-21 Thread Michael Stahl
 RepositoryModule_host.mk  |1 
 clew/Library_clew.mk  |   36 
 clew/Makefile |7 
 clew/Module_clew.mk   |   16 --
 clew/source/clew.c|  325 --
 external/Module_external.mk   |1 
 external/clew/Library_clew.mk |   36 
 external/clew/Makefile|7 
 external/clew/Module_clew.mk  |   16 ++
 external/clew/README  |5 
 external/clew/source/clew.c   |  325 ++
 11 files changed, 390 insertions(+), 385 deletions(-)

New commits:
commit 38cd1d9a5f00dc69ba0d60e2fe6957090c7a26d1
Author: Michael Stahl 
Date:   Wed Mar 9 13:59:35 2016 +0100

clew: move this foreign code to external/clew

... so that hopefully it won't be "cleaned up" and needlessly diverge
from any hypothetical future upstream.

Change-Id: I10503072f618ac6b74bc52d4d59c0d8951bd8d0d
Reviewed-on: https://gerrit.libreoffice.org/23075
Reviewed-by: David Ostrovsky 
Tested-by: Jenkins 
Reviewed-by: Michael Stahl 

diff --git a/RepositoryModule_host.mk b/RepositoryModule_host.mk
index 4b654a2..d2f1d84 100644
--- a/RepositoryModule_host.mk
+++ b/RepositoryModule_host.mk
@@ -34,7 +34,6 @@ $(eval $(call gb_Module_add_moduledirs,libreoffice,\
bridges \
canvas \
chart2 \
-   $(call gb_Helper_optional,OPENCL,clew) \
cli_ure \
$(call gb_Helper_optional,DESKTOP,codemaker) \
comphelper \
diff --git a/external/Module_external.mk b/external/Module_external.mk
index 2512b85..44280e3 100644
--- a/external/Module_external.mk
+++ b/external/Module_external.mk
@@ -29,6 +29,7 @@ $(eval $(call gb_Module_add_moduledirs,external,\
$(call gb_Helper_optional,BZIP2,bzip2) \
$(call gb_Helper_optional,CAIRO,cairo) \
$(call gb_Helper_optional,CDR,libcdr) \
+   $(call gb_Helper_optional,OPENCL,clew) \
$(call gb_Helper_optional,CLUCENE,clucene) \
$(call gb_Helper_optional,CMIS,libcmis) \
$(call gb_Helper_optional,COINMP,coinmp) \
diff --git a/clew/Library_clew.mk b/external/clew/Library_clew.mk
similarity index 96%
rename from clew/Library_clew.mk
rename to external/clew/Library_clew.mk
index 91f4bce..31ef971 100644
--- a/clew/Library_clew.mk
+++ b/external/clew/Library_clew.mk
@@ -27,7 +27,7 @@ $(eval $(call gb_Library_add_libs,clew,\
 endif
 
 $(eval $(call gb_Library_add_cobjects,clew,\
-clew/source/clew \
+external/clew/source/clew \
 ))
 
 # This is required for module-deps.pl to produce correct dependencies.
diff --git a/clew/Makefile b/external/clew/Makefile
similarity index 71%
rename from clew/Makefile
rename to external/clew/Makefile
index ccb1c85..e4968cf8 100644
--- a/clew/Makefile
+++ b/external/clew/Makefile
@@ -2,6 +2,6 @@
 
 module_directory:=$(dir $(realpath $(firstword $(MAKEFILE_LIST
 
-include $(module_directory)/../solenv/gbuild/partial_build.mk
+include $(module_directory)/../../solenv/gbuild/partial_build.mk
 
 # vim: set noet sw=4 ts=4:
diff --git a/clew/Module_clew.mk b/external/clew/Module_clew.mk
similarity index 100%
rename from clew/Module_clew.mk
rename to external/clew/Module_clew.mk
diff --git a/external/clew/README b/external/clew/README
new file mode 100644
index 000..7a0d652
--- /dev/null
+++ b/external/clew/README
@@ -0,0 +1,5 @@
+CLEW is the OpenCL Extension Wrangler - similar to GLEW but for OpenCL
+
+This project doesn't appear to have an obvious upstream, so
+the source files are in our git repo and there is no option
+to use a system library.
diff --git a/clew/source/clew.c b/external/clew/source/clew.c
similarity index 100%
rename from clew/source/clew.c
rename to external/clew/source/clew.c
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98808] New: UI: Preview of the average value of the marked cells in the status bar

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98808

Bug ID: 98808
   Summary: UI: Preview of the average value of the marked cells
in the status bar
   Product: LibreOffice
   Version: 5.0.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tobias_h...@web.de

Hello,

I have a suggestion for an enhancement for Calc:

In the status bar, there can be seen a preview for the sum of marked cells with
value content.

It would be helpful if there was also shown a preview of the AVERAGE value of
the marked cells.

That's it already!

Kind regards,

Tobias

-- 
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 98010] Interface - language

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98010

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #3 from Buovjaga  ---
Set to NEEDINFO.
Change back to UNCONFIRMED, if the problem persists after reinstall per comment
2. Change to RESOLVED WORKSFORME, if the problem went away.

-- 
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 81234] [META] RTF filter issues

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81234

Usama  changed:

   What|Removed |Added

 Depends on||98806

-- 
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 98363] editing base forms slows down libre office, hangs when saving

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98363

Buovjaga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #8 from Buovjaga  ---
Maybe useful for hangs:
https://wiki.documentfoundation.org/QA/BugReport/Debug_Information#Mac_OSX

-- 
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 98788] Instructions for Sanitizing Sample Files do not Work in Draw

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98788

--- Comment #11 from MarjaE  ---
"Entirely transparent"???

-- 
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 36766] [META] Gradient and Transparency issues

2016-03-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=36766

Buovjaga  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW
   Assignee|r...@novell.com |libreoffice-b...@lists.free
   ||desktop.org
Summary|[Task|Meta] Gradient and|[META] Gradient and
   |Transparency issues |Transparency issues

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


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

2016-03-21 Thread Douglas Mencken
 sw/source/core/view/pagepreviewlayout.cxx |   20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)

New commits:
commit 439f2b8d1d6b594493a4a78249c35e7387b318d4
Author: Douglas Mencken 
Date:   Mon Mar 21 03:07:25 2016 -0400

clarify confusing code style

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

diff --git a/sw/source/core/view/pagepreviewlayout.cxx 
b/sw/source/core/view/pagepreviewlayout.cxx
index 1fcc3a2..f19bd3d 100644
--- a/sw/source/core/view/pagepreviewlayout.cxx
+++ b/sw/source/core/view/pagepreviewlayout.cxx
@@ -221,16 +221,16 @@ bool SwPagePreviewLayout::Init( const sal_uInt16 _nCols,
 Fraction aYScale( aWinSize.Height(), mnPreviewLayoutHeight );
 if( aXScale < aYScale )
 aYScale = aXScale;
-{
-// adjust scaling for Drawing layer.
-aYScale *= Fraction( 1000, 1 );
-long nNewNuminator = aYScale.operator long();
-if( nNewNuminator < 1 )
-nNewNuminator = 1;
-aYScale = Fraction( nNewNuminator, 1000 );
-// propagate scaling as zoom percentage to view options for font 
cache
-_ApplyNewZoomAtViewShell( static_cast(nNewNuminator/10) 
);
-}
+
+// adjust scaling for Drawing layer.
+aYScale *= Fraction( 1000, 1 );
+long nNewNuminator = aYScale.operator long();
+if( nNewNuminator < 1 )
+nNewNuminator = 1;
+aYScale = Fraction( nNewNuminator, 1000 );
+// propagate scaling as zoom percentage to view options for font cache
+_ApplyNewZoomAtViewShell( static_cast(nNewNuminator/10) );
+
 aMapMode.SetScaleY( aYScale );
 aMapMode.SetScaleX( aYScale );
 // set created mapping mode with calculated scaling at output device.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-03-21 Thread Eike Rathke
 sc/source/core/tool/rangenam.cxx |4 
 sc/source/core/tool/token.cxx|4 
 2 files changed, 8 insertions(+)

New commits:
commit 7d267d3b168ba3b13763733e8c319a79d990773a
Author: Eike Rathke 
Date:   Mon Mar 21 18:50:00 2016 +0100

Resolves: tdf#93127 copying cells does not modify named expressions

Change-Id: Ic3d0b0a709ecfeade4b3a9c4be9e0c9cfd766103

diff --git a/sc/source/core/tool/rangenam.cxx b/sc/source/core/tool/rangenam.cxx
index 15b7f6b..35e4f5c 100644
--- a/sc/source/core/tool/rangenam.cxx
+++ b/sc/source/core/tool/rangenam.cxx
@@ -727,6 +727,10 @@ ScRangeData* ScRangeName::findByIndex(sal_uInt16 i) const
 
 void ScRangeName::UpdateReference(sc::RefUpdateContext& rCxt, SCTAB nLocalTab )
 {
+if (rCxt.meMode == URM_COPY)
+// Copying cells does not modify named expressions.
+return;
+
 for (auto const& itr : m_Data)
 {
 itr.second->UpdateReference(rCxt, nLocalTab);
diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx
index 7a47d69..d3d571e 100644
--- a/sc/source/core/tool/token.cxx
+++ b/sc/source/core/tool/token.cxx
@@ -3550,6 +3550,10 @@ sc::RefUpdateResult ScTokenArray::AdjustReferenceInName(
 
 sc::RefUpdateResult aRes;
 
+if (rCxt.meMode == URM_COPY)
+// Copying cells does not modify named expressions.
+return aRes;
+
 TokenPointers aPtrs( pCode, nLen, pRPN, nRPN);
 for (size_t j=0; j<2; ++j)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-03-21 Thread Pranav Kant
 loleaflet/debug/document/admin.html  |   20 +---
 loleaflet/debug/document/adminAnalytics.html |   12 ++--
 loleaflet/debug/document/adminSettings.html  |   12 ++--
 3 files changed, 17 insertions(+), 27 deletions(-)

New commits:
commit 95598c9fd3eff80e58608fd219bc48bec0d8e471
Author: Pranav Kant 
Date:   Tue Mar 22 01:42:29 2016 +0530

loleaflet: Use SSL for admin websockets for docs in debug/

Change-Id: I49495fb68076cc2b7e797f1bc5318dc4b464afa0

diff --git a/loleaflet/debug/document/admin.html 
b/loleaflet/debug/document/admin.html
index 2e66709..98bc593 100644
--- a/loleaflet/debug/document/admin.html
+++ b/loleaflet/debug/document/admin.html
@@ -33,21 +33,11 @@
 https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js";>
 window.jQuery || document.write('