[Libreoffice-bugs] [Bug 92529] config written during startup ...

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92529

jan iversen  changed:

   What|Removed |Added

 Whiteboard|ToBeReviewed|

-- 
You are receiving this mail because:
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 91197] Integrate gbuild-to-ide and xcodeproj gem for Xcode project generation

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91197

jan iversen  changed:

   What|Removed |Added

 Whiteboard|ToBeReviewed|

-- 
You are receiving this mail because:
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 99483] Marque cell selection should be removed after paste

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99483

jan iversen  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-ux-advise] [Bug 99379] libreoffice wants to recover a saved document

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99379

jan iversen  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-ux-advise] [Bug 99339] FORMATTING: Add text wrapping around images in Draw

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99339

jan iversen  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-commits] online.git: loleaflet/src

2016-04-26 Thread Pranav Kant
 loleaflet/src/map/handler/Map.Keyboard.js |   25 +
 1 file changed, 25 insertions(+)

New commits:
commit 0e3e5e023e7e527f918b06bca13b66b229ced9bd
Author: Pranav Kant 
Date:   Tue Apr 26 19:57:11 2016 +0530

loleaflet: Fix AltGr on Windows

On Windows, AltGr events are treated as Alt + Ctrl. Use the
'location' property to distinguish from plain Alt + Ctrl.
It is not present in 'keypress' event, so use
the previous invocation of Alt + Ctrl to detect whether AltGr was
used or not.

Change-Id: Id6b64b6fc0a5300ea5362880536d3b926eb0acce
Reviewed-on: https://gerrit.libreoffice.org/24400
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 
Reviewed-by: pranavk 

diff --git a/loleaflet/src/map/handler/Map.Keyboard.js 
b/loleaflet/src/map/handler/Map.Keyboard.js
index 9870ed5..44e1594 100644
--- a/loleaflet/src/map/handler/Map.Keyboard.js
+++ b/loleaflet/src/map/handler/Map.Keyboard.js
@@ -233,8 +233,33 @@ L.Map.Keyboard = L.Handler.extend({
var ctrl = e.originalEvent.ctrlKey ? this.keyModifier.ctrl : 0;
var alt = e.originalEvent.altKey ? this.keyModifier.alt : 0;
var cmd = e.originalEvent.metaKey ? this.keyModifier.ctrl : 0;
+   var location = e.originalEvent.location;
this.modifier = shift | ctrl | alt | cmd;
 
+   // On Windows, pressing AltGr = Alt + Ctrl
+   // Presence of AltGr is detected if previous Ctrl + Alt 
'location' === 2 (i.e right)
+   // because Ctrl + Alt +  won't give any 'location' 
information.
+   if (ctrl && alt) {
+   if (e.type === 'keydown' && location === 2) {
+   this._prevCtrlAltLocation = location;
+   return;
+   }
+   else if (location === 1) {
+   this._prevCtrlAltLocation = undefined;
+   }
+
+   if (this._prevCtrlAltLocation === 2 && location === 0) {
+   // and we got the final character
+   if (e.type === 'keypress') {
+   ctrl = alt = this.modifier = 0;
+   }
+   else {
+   // Don't handle remnant 'keyup'
+   return;
+   }
+   }
+   }
+
if (ctrl || cmd) {
if (this._handleCtrlCommand(e)) {
return;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 59754] Disable autocompletion/autocorrect by default

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59754

AaronPeterson  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|NOTABUG |---

--- Comment #19 from AaronPeterson  ---
I'm sorry,
every single time that autocorrect takes place, it is an error.
It should be off by default... I can't think of any time most users would use
it, and for people who want it, they can turn it on and fight endless
ambiguity.

-- 
You are receiving this mail because:
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 59754] Disable autocompletion/autocorrect by default

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59754

AaronPeterson  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|NOTABUG |---

--- Comment #19 from AaronPeterson  ---
I'm sorry,
every single time that autocorrect takes place, it is an error.
It should be off by default... I can't think of any time most users would use
it, and for people who want it, they can turn it on and fight endless
ambiguity.

-- 
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 99521] UI Menu problems on multi-monitor system

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99521

tommy27  changed:

   What|Removed |Added

 CC||ba...@quipo.it

--- Comment #1 from tommy27  ---
please post a screenshot

-- 
You are receiving this mail because:
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 96467] ODT does not contains borders information for character styles

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96467

Buovjaga  changed:

   What|Removed |Added

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

--- Comment #4 from Buovjaga  ---
Great :) -> WFM

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


[Libreoffice-bugs] [Bug 99320] LibreOffice doesn't play compressed Powerpoint 2013 video as a slideshow

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99320

--- Comment #4 from Buovjaga  ---
It took a bit of work, but I managed to find a suitably small video clip that
is Creative Commons licensed:
https://archive.org/download/RMCMatrixulationTrailerWMV/RMCMatrixulation_Trailer_512kb.mp4
That is 6.3M. I hope it doesn't make the file go over 10M.
Please give it a try.

-- 
You are receiving this mail because:
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 96172] Crash in layout SwSectionFrame after opening particular document

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96172

Julien Nabet  changed:

   What|Removed |Added

 Whiteboard|target:5.2.0 target:5.1.3   |target:5.2.0 target:5.1.3
   |target:5.0.7 target:5.0.6   |target:5.0.6

-- 
You are receiving this mail because:
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 78924] UI: Regression: toolbars have different heights

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78924

--- Comment #20 from Joel Madero  ---
(In reply to MarjaE from comment #19)
> Is it possible to include a space, at the top of the window, for one or two
> toolbars? This would keep toolbars from moving the drawing when they
> appear/disappear.

Please don't conflate issues. Write new enhancement requests for these types of
things (last comment also). Thanks

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


[Libreoffice-bugs] [Bug 99134] Background in text boxes is not refreshing

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99134

--- Comment #6 from Elmar  ---
(In reply to Adolfo Jayme from comment #5)
> What about the GTK+ version? Do you have the package “libreoffice-gtk3”
> installed?

Looking at synaptic, if I install that, it will download 210MB, and it is
v5.0.3 - will that not install the whole of the (In reply to Adolfo Jayme from
comment #5)
> What about the GTK+ version? Do you have the package “libreoffice-gtk3”
> installed?

I did not. I have now installed the package and the problem persists.

It is only the styles, font name and font size icons which are affected (or so
it seems).

-- 
You are receiving this mail because:
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: loolwsd/ChildProcessSession.cpp loolwsd/LOOLWSD.cpp loolwsd/MasterProcessSession.cpp

2016-04-26 Thread Ashod Nakashian
 loolwsd/ChildProcessSession.cpp  |1 -
 loolwsd/LOOLWSD.cpp  |3 +++
 loolwsd/MasterProcessSession.cpp |1 +
 3 files changed, 4 insertions(+), 1 deletion(-)

New commits:
commit ffc873895d2f294502e1bb1ba2316802b3265c8e
Author: Ashod Nakashian 
Date:   Tue Apr 26 23:44:23 2016 -0400

loolwsd: logs

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

diff --git a/loolwsd/ChildProcessSession.cpp b/loolwsd/ChildProcessSession.cpp
index 71fd825..a6cd86d 100644
--- a/loolwsd/ChildProcessSession.cpp
+++ b/loolwsd/ChildProcessSession.cpp
@@ -663,7 +663,6 @@ bool ChildProcessSession::getStatus(const char* /*buffer*/, 
int /*length*/)
 }
 
 sendTextFrame(status);
-
 return true;
 }
 
diff --git a/loolwsd/LOOLWSD.cpp b/loolwsd/LOOLWSD.cpp
index be728a6..e8f2e05 100644
--- a/loolwsd/LOOLWSD.cpp
+++ b/loolwsd/LOOLWSD.cpp
@@ -464,6 +464,7 @@ private:
 
 // indicator to the client that document broker is searching
 std::string status("statusindicator: find");
+Log::trace("Sending to Client [" + status + "].");
 ws->sendFrame(status.data(), (int) status.size());
 
 // Remove the leading '/' in the GET URL.
@@ -573,6 +574,7 @@ private:
 
 // indicator to a client that is waiting to connect to lokit 
process
 status = "statusindicator: connect";
+Log::trace("Sending to Client [" + status + "].");
 ws->sendFrame(status.data(), (int) status.size());
 
 // Wait until the client has connected with a prison socket.
@@ -581,6 +583,7 @@ private:
 // Let messages flow
 
 status = "statusindicator: ready";
+Log::trace("Sending to Client [" + status + "].");
 ws->sendFrame(status.data(), (int) status.size());
 
 QueueHandler handler(queue, session, "wsd_queue_" + 
session->getId());
diff --git a/loolwsd/MasterProcessSession.cpp b/loolwsd/MasterProcessSession.cpp
index 12660fe..9ccab85 100644
--- a/loolwsd/MasterProcessSession.cpp
+++ b/loolwsd/MasterProcessSession.cpp
@@ -205,6 +205,7 @@ bool MasterProcessSession::_handleInput(const char *buffer, 
int length)
 // let clients know if they hold the edit lock
 std::string message = "editlock: ";
 message += std::to_string(peer->isEditLocked());
+Log::debug("Forwarding [" + message + "] in response to 
status.");
 forwardToPeer(message.c_str(), message.size());
 }
 else if (tokens[0] == "commandvalues:")
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: loolwsd/ChildProcessSession.cpp loolwsd/DocumentBroker.cpp loolwsd/MasterProcessSession.cpp loolwsd/MasterProcessSession.hpp

2016-04-26 Thread Ashod Nakashian
 loolwsd/ChildProcessSession.cpp  |   15 ++-
 loolwsd/DocumentBroker.cpp   |   21 +++--
 loolwsd/MasterProcessSession.cpp |8 
 loolwsd/MasterProcessSession.hpp |4 ++--
 4 files changed, 31 insertions(+), 17 deletions(-)

New commits:
commit e6a6b296ea354c05f4b43ffab9fce6c8d1b50739
Author: Ashod Nakashian 
Date:   Tue Apr 26 21:55:18 2016 -0400

loolwsd: avoid communicating with clients under shared lock

DocumentBroker is a central document management object.
Using it to communicate with clients leaves it open
to the whims of slow connections. When its lock
is help for a long time, all clients stall, giving
users a very poor experience.

The culprit in this case was takeEditLock, which
sent to all clients the new edit lock state.
To avoid this, DocumentBroker now sends this
state to the children (via a loopback socket,)
which process messages in a separate process and
each on its own queue thread. The children then
in turn echo this edit lock state back to the
clients. This communication back is done on the
prisoner socket thread, which doesn't lock or
stall any shared objects or threads.

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

diff --git a/loolwsd/ChildProcessSession.cpp b/loolwsd/ChildProcessSession.cpp
index 0def91d..71fd825 100644
--- a/loolwsd/ChildProcessSession.cpp
+++ b/loolwsd/ChildProcessSession.cpp
@@ -456,7 +456,8 @@ bool ChildProcessSession::_handleInput(const char *buffer, 
int length)
tokens[0] == "resetselection" ||
tokens[0] == "saveas" ||
tokens[0] == "useractive" ||
-   tokens[0] == "userinactive");
+   tokens[0] == "userinactive" ||
+   tokens[0] == "editlock:");
 
 {
 std::unique_lock lock(Mutex);
@@ -534,6 +535,18 @@ bool ChildProcessSession::_handleInput(const char *buffer, 
int length)
 {
 setIsActive(false);
 }
+else if (tokens[0] == "editlock:")
+{
+// Nothing for us to do but to let the
+// client know about the edit lock state.
+// Yes, this is echoed back because it's better
+// to do this on each child's queue and thread
+// than for WSD to potentially stall while notifying
+// each client with the edit lock state.
+Log::trace("Echoing back [" + firstLine + "].");
+sendTextFrame(firstLine);
+return true;
+}
 else
 {
 assert(false);
diff --git a/loolwsd/DocumentBroker.cpp b/loolwsd/DocumentBroker.cpp
index 62485ae..69728cb 100644
--- a/loolwsd/DocumentBroker.cpp
+++ b/loolwsd/DocumentBroker.cpp
@@ -269,19 +269,13 @@ std::string DocumentBroker::getJailRoot() const
 
 void DocumentBroker::takeEditLock(const std::string& id)
 {
+Log::debug("Session " + id + " taking the editing lock.");
 std::lock_guard lock(_mutex);
+
+// Forward to all children.
 for (auto& it: _sessions)
 {
-if (it.first != id)
-{
-it.second->setEditLock(false);
-it.second->sendTextFrame("editlock: 0");
-}
-else
-{
-it.second->setEditLock(true);
-it.second->sendTextFrame("editlock: 1");
-}
+it.second->setEditLock(it.first == id);
 }
 }
 
@@ -304,8 +298,8 @@ size_t 
DocumentBroker::addSession(std::shared_ptr& session
 
 if (_sessions.size() == 1)
 {
-session->setEditLock(true);
-session->sendTextFrame("editlock: 1");
+Log::debug("Giving editing lock to the first session [" + id + "].");
+_sessions.begin()->second->markEditLock(true);
 }
 
 return _sessions.size();
@@ -336,7 +330,7 @@ size_t DocumentBroker::removeSession(const std::string& id)
 if (it != _sessions.end())
 {
 const auto haveEditLock = it->second->isEditLocked();
-it->second->setEditLock(false);
+it->second->markEditLock(false);
 _sessions.erase(it);
 
 if (haveEditLock)
@@ -346,7 +340,6 @@ size_t DocumentBroker::removeSession(const std::string& id)
 if (it != _sessions.end())
 {
 it->second->setEditLock(true);
-it->second->sendTextFrame("editlock: 1");
 }
 }
 }
diff --git a/loolwsd/MasterProcessSession.cpp b/loolwsd/MasterProcessSession.cpp
index f85b4f3..12660fe 100644
--- a/loolwsd/MasterProcessSession.cpp
+++ b/loolwsd/MasterProcessSession.cpp
@@ -420,6 +420,14 @@ bool MasterProcessSession::getStatus(const char *buffer, 
int length)
 return true;
 }
 
+void MasterProcessSession::setEditLock(const bool value)
+{
+// 

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

2016-04-26 Thread Takeshi Abe
 starmath/source/cursor.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1ef1ed40cb45a095ef3458ef6012490242151772
Author: Takeshi Abe 
Date:   Tue Apr 26 18:13:37 2016 +0900

starmath: Drop unnecessary cast

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

diff --git a/starmath/source/cursor.cxx b/starmath/source/cursor.cxx
index 447fdc4..61094fd 100644
--- a/starmath/source/cursor.cxx
+++ b/starmath/source/cursor.cxx
@@ -1532,7 +1532,7 @@ bool SmCursor::IsAtTailOfBracket(SmBracketType 
eBracketType, SmBraceNode** ppBra
 }
 
 if (ppBraceNode) {
-*ppBraceNode = static_cast(pBraceNode);
+*ppBraceNode = pBraceNode;
 }
 
 return true;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 99521] UI Menu problems on multi-monitor system

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99521

Richard  changed:

   What|Removed |Added

Version|unspecified |5.1.2.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 99521] New: UI Menu problems on multi-monitor system

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99521

Bug ID: 99521
   Summary: UI Menu problems on multi-monitor system
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: richard...@hotmail.com

Just installed version 5.1.2.2(x64).  I have a dual monitor system running
Win7_64 with a NVidia GeForce GTX560 video card.   When I run "writer" (
noticed this in Calc as well but those are the only two I've tried), if I move
the writer window from the primary display (the one with windows task bar) to
the secondary display and try to access any menu (either menu bar or popup) the
text and graphics within the menu disappear/reappear as I move the mouse over
the menu items.  When it disappears, I still see the grey background of the
menu but all decorations (text and separators) disappear and it is very hard to
stop on a specific menu item to click on it without the text, but if I release
mouse button on a specific X/Y location within the menu the function that would
normally be displayed at that location IS executed.   So it seems like a
painting issue and not a menuitem clicked issue. 

Also if I hover over an item that would create a submenu, the submenu initially
displays but when I start moving towards it the submenu does the same thing.

If I move "writer" back to the primary display the problem does not seem to
occur.

I recently upgraded my machine from Vista 32bit and version libreoffice 4.1.3
which combination worked on the same hardware.  When still on Vista 32bit I
tried version 5.0.5 but had sever display problems on both monitors so I went
back to 4.1.3.  I looked around for a 64bit version of Libreoffice 4.1.3 to try
on my win7_64 system ( or any 4.x 64bit version) but could not find one to try.

For now I'll only use primary display ( or I may try the 32bit version of
4.1.3)...  Just thought you'd want to know.

-- 
You are receiving this mail because:
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 78924] UI: Regression: toolbars have different heights

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78924

--- Comment #19 from MarjaE  ---
Is it possible to include a space, at the top of the window, for one or two
toolbars? This would keep toolbars from moving the drawing when they
appear/disappear.

-- 
You are receiving this mail because:
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 78924] UI: Regression: toolbars have different heights

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78924

--- Comment #18 from MarjaE  ---
In OS X, the "Line and Filling" toolbar keeps disappearing, especially when I
select text, sometimes other times, so it's not a different toolbs have
different heights issue as "how do I keep the toolbar from disappearing?"
Everything jumps up and down. I am getting a migraine, and need some way to
keep things from jumping up and down.

-- 
You are receiving this mail because:
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 78924] UI: Regression: toolbars have different heights

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78924

--- Comment #17 from MarjaE  ---
Affects OS X in 5.1.1.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 97118] Opening Writer doc from Cloud always repairs

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97118

--- Comment #1 from Sccrow  ---
This has been going on for months.  Does anyone have a suggestion?  Else, I
guess I am going to have to pull my data back to the PC.  I  just lost data
because of this.

-- 
You are receiving this mail because:
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 60418] FILEOPEN and EDITING particular .odt with excessive lots of Comments causes heavy CPU and memory load, can crash on saving

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60418

--- Comment #31 from Luke Kendall  ---
(In reply to Aron Budea from comment #30)
> (In reply to Luke Kendall from comment #29)
> > I look forward to trying out the new version: I hope it addresses not just
> > the problem found related to forms, but also to the number of comments!
> 
> I'm just a random person looking at random issues trying to understand the
> codebase better, who found some quick wins, so don't get your hopes up. I
> checked only with the 3rd attachment (the 1st didn't even open), and only
> opening and closing times. I'll probably try to look into this some more in
> the future, but can't promise anything.

Okay, thanks, Aron.  I'll keep my fingers crossed: good luck!

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

2016-04-26 Thread Laurent Balland-Poirier
 chart2/source/controller/dialogs/ObjectNameProvider.cxx |   27 
 1 file changed, 21 insertions(+), 6 deletions(-)

New commits:
commit fe2bf7b05936bb3e84ccc5ddc3dad865a22de551
Author: Laurent Balland-Poirier 
Date:   Sun Apr 10 14:30:31 2016 +0200

tdf#99518 Use correct decimal separator

Change-Id: I39169e7c7344fcfd594a0e0d2ab0a762cc3d5829
Reviewed-on: https://gerrit.libreoffice.org/23961
Reviewed-by: Markus Mohrhard 
Tested-by: Markus Mohrhard 

diff --git a/chart2/source/controller/dialogs/ObjectNameProvider.cxx 
b/chart2/source/controller/dialogs/ObjectNameProvider.cxx
index ec30048..a70894b 100644
--- a/chart2/source/controller/dialogs/ObjectNameProvider.cxx
+++ b/chart2/source/controller/dialogs/ObjectNameProvider.cxx
@@ -33,6 +33,7 @@
 #include "RegressionCurveHelper.hxx"
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -566,6 +567,11 @@ OUString ObjectNameProvider::getHelpText( const OUString& 
rObjectCID, const Refe
 sal_Int32 aPeriod = 2;
 bool bForceIntercept = false;
 double aInterceptValue = 0.0;
+const LocaleDataWrapper& rLocaleDataWrapper = 
Application::GetSettings().GetLocaleDataWrapper();
+const OUString& aNumDecimalSep = 
rLocaleDataWrapper.getNumDecimalSep();
+assert(aNumDecimalSep.getLength() > 0);
+sal_Unicode cDecSeparator = aNumDecimalSep.getStr()[0];
+
 uno::Reference< beans::XPropertySet > xProperties( 
xCurve, uno::UNO_QUERY );
 if ( xProperties.is())
 {
@@ -591,19 +597,25 @@ OUString ObjectNameProvider::getHelpText( const OUString& 
rObjectCID, const Refe
 aWildcard = "%FORMULA";
 nIndex = aRet.indexOf( aWildcard );
 if( nIndex != -1 )
-aRet = aRet.replaceAt( nIndex, 
aWildcard.getLength(), xCalculator->getRepresentation());
+{
+OUString aFormula ( 
xCalculator->getRepresentation() );
+if ( cDecSeparator != '.' )
+{
+aFormula = aFormula.replace( '.', 
cDecSeparator );
+}
+aRet = aRet.replaceAt( nIndex, 
aWildcard.getLength(), aFormula );
+}
 
 // replace r^2
 aWildcard = "%RSQUARED";
 nIndex = aRet.indexOf( aWildcard );
 if( nIndex != -1 )
 {
-sal_Unicode aDecimalSep( '.' );
 double fR( 
xCalculator->getCorrelationCoefficient());
 aRet = aRet.replaceAt(
 nIndex, aWildcard.getLength(),
 ::rtl::math::doubleToUString(
-fR*fR, rtl_math_StringFormat_G, 4, 
aDecimalSep, true ));
+fR*fR, rtl_math_StringFormat_G, 4, 
cDecSeparator, true ));
 }
 }
 catch( const uno::Exception & ex )
@@ -649,7 +661,10 @@ OUString ObjectNameProvider::getHelpText( const OUString& 
rObjectCID, const Refe
 Reference< chart2::XRegressionCurveCalculator > 
xCalculator( xCurve->getCalculator(), uno::UNO_QUERY_THROW );
 RegressionCurveHelper::initializeCurveCalculator( 
xCalculator, xSeries, xChartModel );
 
-sal_Unicode aDecimalSep( '.' );
+const LocaleDataWrapper& rLocaleDataWrapper = 
Application::GetSettings().GetLocaleDataWrapper();
+const OUString& aNumDecimalSep = 
rLocaleDataWrapper.getNumDecimalSep();
+assert(aNumDecimalSep.getLength() > 0);
+sal_Unicode cDecSeparator = aNumDecimalSep.getStr()[0];
 
 OUString aWildcard( "%AVERAGE_VALUE" );
 sal_Int32 nIndex = aRet.indexOf( aWildcard );
@@ -660,7 +675,7 @@ OUString ObjectNameProvider::getHelpText( const OUString& 
rObjectCID, const Refe
 aRet = aRet.replaceAt(
 nIndex, aWildcard.getLength(),
 ::rtl::math::doubleToUString(
-fMeanValue, rtl_math_StringFormat_G, 4, 
aDecimalSep, true ));
+fMeanValue, rtl_math_StringFormat_G, 4, 
cDecSeparator, true ));
 }
 
 // replace standard deviation
@@ -672,7 +687,7 @@ OUString 

[Libreoffice-bugs] [Bug 45904] move java based api tests to c++

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45904

--- Comment #30 from Commit Notification 
 ---
Fabio Buso committed a patch related to this issue.
It has been pushed to "master":

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

tdf#45904 Move java XViewPane test to c++

It will be available in 5.2.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: include/test sc/CppunitTest_sc_viewpaneobj.mk sc/Module_sc.mk sc/qa test/Library_subsequenttest.mk test/source

2016-04-26 Thread Fabio Buso
 include/test/sheet/xviewpane.hxx |   40 ++
 sc/CppunitTest_sc_viewpaneobj.mk |  107 +++
 sc/Module_sc.mk  |1 
 sc/qa/extras/scviewpaneobj.cxx   |   97 +++
 test/Library_subsequenttest.mk   |1 
 test/source/sheet/xviewpane.cxx  |   54 +++
 6 files changed, 300 insertions(+)

New commits:
commit e7f55f15ccd97bc92e1400bc5862171a621da3e2
Author: Fabio Buso 
Date:   Thu Apr 21 22:45:51 2016 +0200

tdf#45904 Move java XViewPane test to c++

Change-Id: I3c99fb4c611a3b45d31412731c548b59e95d7179
Reviewed-on: https://gerrit.libreoffice.org/24285
Reviewed-by: Markus Mohrhard 
Tested-by: Markus Mohrhard 

diff --git a/include/test/sheet/xviewpane.hxx b/include/test/sheet/xviewpane.hxx
new file mode 100644
index 000..1ab20a1
--- /dev/null
+++ b/include/test/sheet/xviewpane.hxx
@@ -0,0 +1,40 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#ifndef INCLUDED_TEST_SHEET_XVIEWPANE_HXX
+#define INCLUDED_TEST_SHEET_XVIEWPANE_HXX
+
+#include 
+#include 
+#include 
+
+using namespace css;
+using namespace css::uno;
+
+namespace apitest {
+
+class OOO_DLLPUBLIC_TEST XViewPane
+{
+public:
+virtual uno::Reference< uno::XInterface > init() = 0;
+
+void testFirstVisibleColumn();
+void testFirstVisibleRow();
+void testVisibleRange();
+
+protected:
+virtual ~XViewPane() {}
+
+};
+
+}
+
+#endif // INCLUDED_TEST_SHEET_XVIEWPANE_HXX
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/CppunitTest_sc_viewpaneobj.mk b/sc/CppunitTest_sc_viewpaneobj.mk
new file mode 100644
index 000..33a360c
--- /dev/null
+++ b/sc/CppunitTest_sc_viewpaneobj.mk
@@ -0,0 +1,107 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#*
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+#*
+
+$(eval $(call gb_CppunitTest_CppunitTest,sc_viewpaneobj))
+
+$(eval $(call gb_CppunitTest_use_external,sc_viewpaneobj,boost_headers))
+
+$(eval $(call gb_CppunitTest_add_exception_objects,sc_viewpaneobj, \
+sc/qa/extras/scviewpaneobj \
+))
+
+$(eval $(call gb_CppunitTest_use_libraries,sc_viewpaneobj, \
+basegfx \
+comphelper \
+cppu \
+cppuhelper \
+drawinglayer \
+editeng \
+for \
+forui \
+i18nlangtag \
+msfilter \
+oox \
+sal \
+salhelper \
+sax \
+sb \
+sc \
+sfx \
+sot \
+subsequenttest \
+svl \
+svt \
+svx \
+svxcore \
+   test \
+tk \
+tl \
+ucbhelper \
+   unotest \
+utl \
+vbahelper \
+vcl \
+xo \
+   $(gb_UWINAPI) \
+))
+
+$(eval $(call gb_CppunitTest_set_include,sc_viewpaneobj,\
+-I$(SRCDIR)/sc/source/ui/inc \
+-I$(SRCDIR)/sc/inc \
+$$(INCLUDE) \
+))
+
+$(eval $(call gb_CppunitTest_use_api,sc_viewpaneobj,\
+offapi \
+udkapi \
+))
+
+$(eval $(call gb_CppunitTest_use_ure,sc_viewpaneobj))
+$(eval $(call gb_CppunitTest_use_vcl,sc_viewpaneobj))
+
+$(eval $(call gb_CppunitTest_use_components,sc_viewpaneobj,\
+   basic/util/sb \
+comphelper/util/comphelp \
+configmgr/source/configmgr \
+dbaccess/util/dba \
+filter/source/config/cache/filterconfig1 \
+filter/source/storagefilterdetect/storagefd \
+forms/util/frm \
+framework/util/fwk \
+i18npool/util/i18npool \
+oox/util/oox \
+package/source/xstor/xstor \
+package/util/package2 \
+sax/source/expatwrap/expwrap \
+scripting/source/basprov/basprov \
+scripting/util/scriptframe \
+sc/util/sc \
+sc/util/scd \
+sc/util/scfilt \
+$(call gb_Helper_optional,SCRIPTING, \
+   sc/util/vbaobj) \
+sfx2/util/sfx \
+sot/util/sot \
+svl/source/fsstor/fsstorage \
+toolkit/util/tk \
+ucb/source/core/ucb1 \
+ucb/source/ucp/file/ucpfile1 \
+ucb/source/ucp/tdoc/ucptdoc1 \
+unotools/util/utl \
+unoxml/source/rdf/unordf \
+unoxml/source/service/unoxml \
+xmloff/util/xo \
+   svtools/util/svt \
+))
+
+$(eval $(call gb_CppunitTest_use_configuration,sc_viewpaneobj))
+
+# vim: set noet sw=4 ts=4:
diff --git a/sc/Module_sc.mk b/sc/Module_sc.mk
index e0cbf5b..3586019 100644
--- a/sc/Module_sc.mk
+++ b/sc/Module_sc.mk
@@ -94,6 

[Libreoffice-bugs] [Bug 93540] Selection tool moves selection

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93540

MarjaE  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #6 from MarjaE  ---
I tend to work with complex files. It is relatively modest latency with simple
files, and steadily worse latency with complex files, so a simple test file
won't work. Therefore, making as unconfirmed.

I get significant latency at only 65 kb.

I turn off anti-aliasing, which helps but doesn't solve the problem.

I just switched from 200 mb to 512 mb of graphics cache, which seems to help
but again doesn't solve the problem.

I sometimes save, quit, and restat LibreOffice, which also seems to 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


[Libreoffice-bugs] [Bug 98773] No! Not that! Undo! No! Not Again! Undo! LibreOffice Selects wrong object, freezes as it drags and drops, freezes again as I try to undo.

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98773

MarjaE  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #3 from MarjaE  ---
Another case of the same latency issue as 93540.

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

-- 
You are receiving this mail because:
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 93540] Selection tool moves selection

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93540

--- Comment #5 from MarjaE  ---
*** Bug 98773 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 93540] Selection tool moves selection

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93540

--- Comment #4 from MarjaE  ---
*** Bug 94742 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 94742] Draw Continuously Freezes While Working on Map with multiple, complex, overlayed objects

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94742

MarjaE  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #11 from MarjaE  ---
Basically a special case of the same latency issues as #93540.

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

-- 
You are receiving this mail because:
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 49853] EDITING: Attempting paste/select all into find bar with Cmd-V or Cmd-A on OS X pastes into document not into search bar

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49853

--- Comment #137 from swro...@gmail.com ---
It seems this archaic bug tracking system doesn't have a way to vote, so
consider this my vote. LibreOffice 5.0.5.2, OS X 10.11.4

-- 
You are receiving this mail because:
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-0-6' - configure.ac

2016-04-26 Thread Christian Lohmaier
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit cb69534d2f605deadf9648901b806067b6535b4e
Author: Christian Lohmaier 
Date:   Wed Apr 27 01:49:33 2016 +0200

bump product version to 5.0.6.2.0+

Change-Id: Ie873d3083c7f7d839997d7fe34018c8dd5352673

diff --git a/configure.ac b/configure.ac
index 6c53e9b..149856f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[5.0.6.1.0+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[5.0.6.2.0+],[],[],[http://documentfoundation.org/])
 
 AC_PREREQ([2.59])
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/libreoffice-5.0.6.2'

2016-04-26 Thread Christian Lohmaier
Tag 'libreoffice-5.0.6.2' created by Christian Lohmaier 
 at 2016-04-26 23:48 +

Tag libreoffice-5.0.6.2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJXH/5OAAoJEPQ0oe+v7q6jmsQQALGK7IBP6sCgAdlR7B170Xeh
Cdgjxmyz8l+9HkL6+sAf82yhLLlvEK33ZvRzmNP9WKx8p18E5KIYdAL9XUJ673cy
kyWe0afTblpnzSwqey0CNlHxJgf/ya25bhm+o1PlfobiKJSG6WFEK8dzlyXa974+
7r7rC6DUuz668loaLoe9cXMJAik73H5y7Z3kHru/tKL+S8PYkYVCnRjQN+tY/xUh
qJF98NquS/TKSiS9+O4unEDJtKJiG+JbE5p1Msj0jgx5a/VVxLYvWQFrTkhV/+RZ
U8Qk8Ip1FGnv6oQ2N2w3x+FupT9Wvgg4aOlu2E2UPGDECF9cZiGddDDUKX0oO3a3
ElPGIDZGGDY8RBo8Ozw8s7L4E8v+nz2lMhGc/FEFSw06YRhxYj45dWcrtUU2SLCK
oZ8FL756/ltXKenHgjdMw7XrjBDxZuB15wdjaXkNhv6ac9MXDUOKN0+JDWh5WG2X
3c4ArNNB27vX+WmLuMMPBo5ewd/Tl1IrX0LFOeM2hbk/dUSss1MLmP8fdHG7wd7X
0SjAWTiQgv+9UJFATftGh/VaGiPyZwi/vENgL+CovpY76LjueMpfV8uN9E79uc3W
H6Lhp0EC6Zn1RrrlHmRawutaQ+qsfHn/G/NwTVczUpblpyk1T8skJlJ6feW2JqlE
lqFada/r3lTeYcOFg0u7
=4VhL
-END PGP SIGNATURE-

Changes since cp-5.0-32:
Christian Lohmaier (1):
  Version 5.0.6.2, tag libreoffice-5.0.6.2

---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] translations.git: Changes to 'refs/tags/libreoffice-5.0.6.2'

2016-04-26 Thread Christian Lohmaier
Tag 'libreoffice-5.0.6.2' created by Christian Lohmaier 
 at 2016-04-26 23:48 +

Tag libreoffice-5.0.6.2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJXH/5UAAoJEPQ0oe+v7q6jVNcQANARp/pt32Qgtv26/9L2hscG
muXqdqpokQMEq2zzCJqawD13b1/inYIP025J6e6AeUwv9ByPXn+A5gfN3wgIuxW5
sCjfYr/fEGLH/kU1hzTmh0dHTGAWv3vX10UT5EOUP20DYkhjB+SqJUtC9doClNsu
yNseATfwDmJfaULx4NP2PHUty9/7TBtwwb5YjbjE2OrPvIE2nvNWAbobNcIXS61o
zDu0sF6rFnDhwYf4U+ocX9VTSkLSEPky+SHg1uDykSsxJZ6TVdYX5RNvMeDTVSVl
8n+Dw4GgMrGilZlQoGdF6U8/qs7dtcnkBXmJ1LyVcB/7+Mox7rpGkSi19NDYABHR
1hKIevQcWOxWkan3Jn1NrsDNg+QG0M8S6g1AyPx2TokI3ODtfW+L8uS91/LCNTII
lWo8rpQyrlW141qf2uVvOvSYWemXrOjV7guIA9RKHW6BXIYJ87FphexixkN/EV91
SDErXLqf8S++plCS0WGsfkoPBpn1bPGUiaWQ3ljFzXtYr9vmnKV4m4Y6RWDVy1Z/
20myII5CeJzcz5YEzGTp0mIzAUAUXCbFOhQkwj92XC8Jm3VfVmVWBeX0J94lemXM
U4nVfET7ZlETmN/rB5QH08vWIm5G0lhHOkB2DemBk/4VUTjniLj1pHgRxPMZmKS4
/flhX6Cp7FLUr4LWpKy8
=DAoH
-END PGP SIGNATURE-

Changes since cp-5.0-28-5:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: Changes to 'refs/tags/libreoffice-5.0.6.2'

2016-04-26 Thread Christian Lohmaier
Tag 'libreoffice-5.0.6.2' created by Christian Lohmaier 
 at 2016-04-26 23:48 +

Tag libreoffice-5.0.6.2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJXH/5RAAoJEPQ0oe+v7q6jczIQANBLg5Pld2cZ2DPWZKhnt52B
MpKudujYXydcqLi6BA/qgcEqokeM0mBKqANkTYCxPF7BgNK3ASqp6Bt4VeLVIYJh
zjjUd7xPavQdZlbSZArn7U/tJR4kI+awwsEmYhRg7x1Mu1PabI8VidwvN4GWp4ZD
iDogzj03DKEDBwrB7J2EPuatnelo0c9Y98hbFaY7sMkRbHPeHPpJRRu0nT/zxj7O
Ujskf+U7hynqNabt9DCErRoHob2OCKwicCM6P0grjNyvEHUump60JJXS24T6x2ft
mxNQ35uxdlBBAvM1Qa4MMCRI2k/e3YdZ4GutaB+QcgxrH0CwJ08rmUTxO7rqgej5
ugwPVQ9wWvPN1QZYhCykDsAomhDt55EZ+tROcbXCaLRbiUjYEeSXZi3Vhka1WLY7
53sDlhlXNccbFRpthIyQBKslbdYI1NHUi453Y4YOuA4eRO0TqFjiV4m7de6mAClV
ry1HeYQNgSwFV7QuGo0s3YeqFn0//YTSLkYCDBMoa7YaQz+0Rt/KGY2DfdroJWS2
CSXsWThXdYeGqem9oa5Y8p11ZEz65Vc3KZ52JP6t/ZXSLzlnoxPY3IMR69CePOZ6
S3TCe/mmjXRZJX5BiHberE2usPsjRzEhnOPWAyumWAOqNheEo6qhp8M1E8RCj1Uw
G1SKEL3N0JLP6cQWQV/Y
=M6y3
-END PGP SIGNATURE-

Changes since cp-5.0-32-1:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Changes to 'refs/tags/libreoffice-5.0.6.2'

2016-04-26 Thread Christian Lohmaier
Tag 'libreoffice-5.0.6.2' created by Christian Lohmaier 
 at 2016-04-26 23:48 +

Tag libreoffice-5.0.6.2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABAgAGBQJXH/5WAAoJEPQ0oe+v7q6jBSQP/iQN9w9KKdWmTEBUqfrBAMHS
jsVNuYR+xHAK1sEf2lWrbL2JpfTnUhZ7WRrvZJ1WV1dZjoKGB2AlBNG6canehHAm
dwCypi80yjr7sQgg6xGLb3GYawCVHdGr7bbblc+3BwhowEpW8u2fa5EFsWoa1CWJ
xcgclEsUzRO5r16keMnEPMkgmiP1sYxQtqPN3BtERAc3J8qT6J9XMBV4vzV9uc0m
lGVJDPuf1n2GrDU0c9V4as7LBwbgDL92qRjjKM2gt86zC+BYJJasMCxskiUfVJt4
q4X6gmarM2QxLwGbYWhFcEabDHcRje8MPHJb+3DJzi48aX99C4TLf5WzxRJ2ecvU
VwS/P9gX+ZBgJA9kVborWHWtUV0hcuwdMiDOit+Rb93lF67742jaDBomH44au77M
VSRlQYXFjXCRssmD4u21MpCLoUtbaGgKpZZGXV25ceCy1W7qUyiH9nLnLhqbPlco
9/CFk5wHcas8iRpMBPUAG+OCEofT/qG2ntiNaQsenJnDl1sbRgJIV7B6czbK4SHK
3pufMBp0EZrcD0NixLkpErz8GKcwWDwaqwqxLV0RWAdlaQsj/leLgEbU7tApW7zY
nbWid28WCa3BJ0YWiMghuKV9OEH+grdl7Uxkowf2sOElnezF1FuFevTtPi4PLIr9
LYDEi0nthqe6aLdWRUrR
=RnER
-END PGP SIGNATURE-

Changes since cp-5.0-branch-point-1745:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-0-6' - vcl/qa vcl/source

2016-04-26 Thread Chris Sherlock
 vcl/qa/cppunit/wmf/wmfimporttest.cxx |   24 
 vcl/source/filter/wmf/enhwmf.cxx |   26 --
 vcl/source/filter/wmf/winmtf.cxx |   12 ++--
 vcl/source/filter/wmf/winwmf.cxx |   11 ---
 4 files changed, 26 insertions(+), 47 deletions(-)

New commits:
commit d35d361774dc5ddfb9a1b2764b4914cdfac080ae
Author: Chris Sherlock 
Date:   Sun Mar 6 12:24:09 2016 +1100

tdf#79679 vcl: dashed lines show as solid lines when importing EMF files

Backported fix to 5.0.

Issue is a regression in commit 09c722873b2d378d2d155f5f1dd7d8f3fb2012e9.
(EMF/WMF: fix rendering of pen styles (dash, dot, dashdot, dashdotdot).

I've looked at how the latest version of Word on the Mac works, and it
turns out that the spacings for the PenStyle enumerations in the LogPen
objects for all the create pen EMF records are as follows:

* PS_DOT   - ■ □ ■ □ ■ □ ■ □ ■ □ ■
* PS_DASHDOT   - ■ ■ ■ □ ■ □ ■ ■ ■ □ ■
* PS_DASHDOTDOT- ■ ■ ■ □ ■ □ ■ □ ■ ■ ■

(where ■ is the actual filled in area, and □ is the space between the
filled in areas)

In other words, each dash fills in the space of three dots, and there
is the one dot worth of empty space between the dashes and dots. Each
"dot" has a width and height equal to the width specified in the pen.

So basically, we seem to be arbitrarily setting the dot, dash and
distance lengths arbitrarily, which were reasonable guesses but tended
to produce very odd lines at different zoom levels.

Change-Id: Ie8b5fa396e4fb0f480cb3594c8129a59f472c1b8
Reviewed-on: https://gerrit.libreoffice.org/22886
Reviewed-by: Chris Sherlock 
Tested-by: Chris Sherlock 
Reviewed-on: https://gerrit.libreoffice.org/22928
Tested-by: Jenkins 
Reviewed-by: Tomaž Vajngerl 
Reviewed-by: Christian Lohmaier 
(cherry picked from commit e21606f3cce557e5eb84b2e7747c173edf526a55)
Reviewed-on: https://gerrit.libreoffice.org/24416
Reviewed-by: Markus Mohrhard 
Reviewed-by: dennisroczek 
Tested-by: Christian Lohmaier 

diff --git a/vcl/qa/cppunit/wmf/wmfimporttest.cxx 
b/vcl/qa/cppunit/wmf/wmfimporttest.cxx
index 32c4d90..176ff5d 100644
--- a/vcl/qa/cppunit/wmf/wmfimporttest.cxx
+++ b/vcl/qa/cppunit/wmf/wmfimporttest.cxx
@@ -146,38 +146,38 @@ void WmfTest::testEmfLineStyles()
 assertXPath(pDoc, "/metafile/linecolor[5]", "color", "#ff");
 
 assertXPath(pDoc, "/metafile/line[1]", "style", "dash");
-assertXPath(pDoc, "/metafile/line[1]", "dashlen", "225");
+assertXPath(pDoc, "/metafile/line[1]", "dashlen", "528");
 assertXPath(pDoc, "/metafile/line[1]", "dashcount", "1");
-assertXPath(pDoc, "/metafile/line[1]", "dotlen", "0");
+assertXPath(pDoc, "/metafile/line[1]", "dotlen", "176");
 assertXPath(pDoc, "/metafile/line[1]", "dotcount", "0");
-assertXPath(pDoc, "/metafile/line[1]", "distance", "100");
+assertXPath(pDoc, "/metafile/line[1]", "distance", "176");
 assertXPath(pDoc, "/metafile/line[1]", "join", "miter");
 assertXPath(pDoc, "/metafile/line[1]", "cap", "butt");
 
 assertXPath(pDoc, "/metafile/line[2]", "style", "dash");
-assertXPath(pDoc, "/metafile/line[2]", "dashlen", "0");
+assertXPath(pDoc, "/metafile/line[2]", "dashlen", "528");
 assertXPath(pDoc, "/metafile/line[2]", "dashcount", "0");
-assertXPath(pDoc, "/metafile/line[2]", "dotlen", "30");
+assertXPath(pDoc, "/metafile/line[2]", "dotlen", "176");
 assertXPath(pDoc, "/metafile/line[2]", "dotcount", "1");
-assertXPath(pDoc, "/metafile/line[2]", "distance", "50");
+assertXPath(pDoc, "/metafile/line[2]", "distance", "176");
 assertXPath(pDoc, "/metafile/line[2]", "join", "miter");
 assertXPath(pDoc, "/metafile/line[2]", "cap", "butt");
 
 assertXPath(pDoc, "/metafile/line[3]", "style", "dash");
-assertXPath(pDoc, "/metafile/line[3]", "dashlen", "150");
+assertXPath(pDoc, "/metafile/line[3]", "dashlen", "528");
 assertXPath(pDoc, "/metafile/line[3]", "dashcount", "1");
-assertXPath(pDoc, "/metafile/line[3]", "dotlen", "30");
+assertXPath(pDoc, "/metafile/line[3]", "dotlen", "176");
 assertXPath(pDoc, "/metafile/line[3]", "dotcount", "1");
-assertXPath(pDoc, "/metafile/line[3]", "distance", "90");
+assertXPath(pDoc, "/metafile/line[3]", "distance", "176");
 assertXPath(pDoc, "/metafile/line[3]", "join", "miter");
 assertXPath(pDoc, "/metafile/line[3]", "cap", "butt");
 
 assertXPath(pDoc, "/metafile/line[4]", "style", "dash");
-assertXPath(pDoc, "/metafile/line[4]", "dashlen", 

[Libreoffice-commits] core.git: Branch 'libreoffice-5-0-6' - readlicense_oo/license

2016-04-26 Thread Christian Lohmaier
 readlicense_oo/license/CREDITS.fodt | 2094 ++--
 1 file changed, 1053 insertions(+), 1041 deletions(-)

New commits:
commit 4f628c640d98787b9a890ab2eb5dcc4f421ec98b
Author: Christian Lohmaier 
Date:   Wed Apr 27 01:12:54 2016 +0200

update credits

Change-Id: I63a025efc0208b93887bc02acb360311b56688e9
(cherry picked from commit 72f89e0f0e2e766eb9739b6833a91139b4ae5e29)
(cherry picked from commit 5e66a347a340a940467ef27fd541125bbf9cbf49)

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index 5fb9235..2dc792a1 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,7 +1,7 @@
 
 
 http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oas
 is:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:officeooo="http://openoffice.org/2009/office; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:formx="urn:openoffice:names:
 experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.1.2.2$Linux_X86_64
 
LibreOffice_project/d3bf12ecb743fc0d20e0be0c58ca359301eb705f2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.1.2.2$Linux_X86_64
 
LibreOffice_project/d3bf12ecb743fc0d20e0be0c58ca359301eb705f2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
607
@@ -68,7 +68,7 @@
false
false
true
-   5091996
+   5101528
false
false
false
@@ -311,13 +311,13 @@
  
  
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -389,24 +389,24 @@

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
   
-   
+   
   
   

   
-  
+  

   
   
@@ -1029,7 +1029,7 @@

   
  Credits
-1153 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2016-04-19 17:56:24.
+1153 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2016-04-26 19:31:13.
 * marks developers whose first contributions 
happened after 2010-09-28.
 Developers 
committing code since 2010-09-28
 
@@ -1056,10 +1056,10 @@
Vladimir 
GlazunovCommits: 25434Joined: 
2000-12-04
   
   
-   Caolán 
McNamaraCommits: 19318Joined: 
2000-10-10
+   Caolán 
McNamaraCommits: 19322Joined: 
2000-10-10
   
   
-   Stephan 
BergmannCommits: 11813Joined: 
2000-10-04
+   Stephan 
BergmannCommits: 11970Joined: 
2000-10-04
   
   
Ivo 
HinkelmannCommits: 9480Joined: 
2002-09-09
@@ -1067,13 +1067,13 @@
  
  
   
-   Tor 
LillqvistCommits: 7360Joined: 
2010-03-23
+   Tor 
LillqvistCommits: 7366Joined: 
2010-03-23
   
   
-   *Noel GrandinCommits: 
5718Joined: 2011-12-12
+   *Noel GrandinCommits: 
5735Joined: 2011-12-12
   
   
-   Miklos 
VajnaCommits: 5562Joined: 
2010-07-29
+   Miklos 
VajnaCommits: 5573Joined: 
2010-07-29
   
   
Michael 
StahlCommits: 5372Joined: 
2008-06-16
@@ -1087,15 +1087,15 @@
Frank Schoenheit 
[fs]Commits: 5008Joined: 2000-09-19
   
   
-   *Markus 

[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - readlicense_oo/license

2016-04-26 Thread Christian Lohmaier
 readlicense_oo/license/CREDITS.fodt | 2094 ++--
 1 file changed, 1053 insertions(+), 1041 deletions(-)

New commits:
commit 5e66a347a340a940467ef27fd541125bbf9cbf49
Author: Christian Lohmaier 
Date:   Wed Apr 27 01:12:54 2016 +0200

update credits

Change-Id: I63a025efc0208b93887bc02acb360311b56688e9
(cherry picked from commit 72f89e0f0e2e766eb9739b6833a91139b4ae5e29)

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index 5fb9235..2dc792a1 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,7 +1,7 @@
 
 
 http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oas
 is:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:officeooo="http://openoffice.org/2009/office; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:formx="urn:openoffice:names:
 experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.1.2.2$Linux_X86_64
 
LibreOffice_project/d3bf12ecb743fc0d20e0be0c58ca359301eb705f2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.1.2.2$Linux_X86_64
 
LibreOffice_project/d3bf12ecb743fc0d20e0be0c58ca359301eb705f2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
607
@@ -68,7 +68,7 @@
false
false
true
-   5091996
+   5101528
false
false
false
@@ -311,13 +311,13 @@
  
  
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -389,24 +389,24 @@

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
   
-   
+   
   
   

   
-  
+  

   
   
@@ -1029,7 +1029,7 @@

   
  Credits
-1153 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2016-04-19 17:56:24.
+1153 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2016-04-26 19:31:13.
 * marks developers whose first contributions 
happened after 2010-09-28.
 Developers 
committing code since 2010-09-28
 
@@ -1056,10 +1056,10 @@
Vladimir 
GlazunovCommits: 25434Joined: 
2000-12-04
   
   
-   Caolán 
McNamaraCommits: 19318Joined: 
2000-10-10
+   Caolán 
McNamaraCommits: 19322Joined: 
2000-10-10
   
   
-   Stephan 
BergmannCommits: 11813Joined: 
2000-10-04
+   Stephan 
BergmannCommits: 11970Joined: 
2000-10-04
   
   
Ivo 
HinkelmannCommits: 9480Joined: 
2002-09-09
@@ -1067,13 +1067,13 @@
  
  
   
-   Tor 
LillqvistCommits: 7360Joined: 
2010-03-23
+   Tor 
LillqvistCommits: 7366Joined: 
2010-03-23
   
   
-   *Noel GrandinCommits: 
5718Joined: 2011-12-12
+   *Noel GrandinCommits: 
5735Joined: 2011-12-12
   
   
-   Miklos 
VajnaCommits: 5562Joined: 
2010-07-29
+   Miklos 
VajnaCommits: 5573Joined: 
2010-07-29
   
   
Michael 
StahlCommits: 5372Joined: 
2008-06-16
@@ -1087,15 +1087,15 @@
Frank Schoenheit 
[fs]Commits: 5008Joined: 2000-09-19
   
   
-   *Markus MohrhardCommits: 
4086Joined: 2011-03-17
+   *Markus MohrhardCommits: 
4087Joined: 

[Libreoffice-commits] core.git: Branch 'libreoffice-5-1-3' - readlicense_oo/license

2016-04-26 Thread Christian Lohmaier
 readlicense_oo/license/CREDITS.fodt | 2094 ++--
 1 file changed, 1053 insertions(+), 1041 deletions(-)

New commits:
commit 3ab3ed1bd7103efe87972d33b3a0815f56546315
Author: Christian Lohmaier 
Date:   Wed Apr 27 01:12:54 2016 +0200

update credits

Change-Id: I63a025efc0208b93887bc02acb360311b56688e9
(cherry picked from commit 72f89e0f0e2e766eb9739b6833a91139b4ae5e29)
(cherry picked from commit 25da11ef29a749eba4f7c8b0cdcb14f75e1c5831)

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index 5fb9235..2dc792a1 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,7 +1,7 @@
 
 
 http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oas
 is:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:officeooo="http://openoffice.org/2009/office; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:formx="urn:openoffice:names:
 experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.1.2.2$Linux_X86_64
 
LibreOffice_project/d3bf12ecb743fc0d20e0be0c58ca359301eb705f2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.1.2.2$Linux_X86_64
 
LibreOffice_project/d3bf12ecb743fc0d20e0be0c58ca359301eb705f2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
607
@@ -68,7 +68,7 @@
false
false
true
-   5091996
+   5101528
false
false
false
@@ -311,13 +311,13 @@
  
  
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -389,24 +389,24 @@

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
   
-   
+   
   
   

   
-  
+  

   
   
@@ -1029,7 +1029,7 @@

   
  Credits
-1153 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2016-04-19 17:56:24.
+1153 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2016-04-26 19:31:13.
 * marks developers whose first contributions 
happened after 2010-09-28.
 Developers 
committing code since 2010-09-28
 
@@ -1056,10 +1056,10 @@
Vladimir 
GlazunovCommits: 25434Joined: 
2000-12-04
   
   
-   Caolán 
McNamaraCommits: 19318Joined: 
2000-10-10
+   Caolán 
McNamaraCommits: 19322Joined: 
2000-10-10
   
   
-   Stephan 
BergmannCommits: 11813Joined: 
2000-10-04
+   Stephan 
BergmannCommits: 11970Joined: 
2000-10-04
   
   
Ivo 
HinkelmannCommits: 9480Joined: 
2002-09-09
@@ -1067,13 +1067,13 @@
  
  
   
-   Tor 
LillqvistCommits: 7360Joined: 
2010-03-23
+   Tor 
LillqvistCommits: 7366Joined: 
2010-03-23
   
   
-   *Noel GrandinCommits: 
5718Joined: 2011-12-12
+   *Noel GrandinCommits: 
5735Joined: 2011-12-12
   
   
-   Miklos 
VajnaCommits: 5562Joined: 
2010-07-29
+   Miklos 
VajnaCommits: 5573Joined: 
2010-07-29
   
   
Michael 
StahlCommits: 5372Joined: 
2008-06-16
@@ -1087,15 +1087,15 @@
Frank Schoenheit 
[fs]Commits: 5008Joined: 2000-09-19
   
   
-   *Markus 

[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - readlicense_oo/license

2016-04-26 Thread Christian Lohmaier
 readlicense_oo/license/CREDITS.fodt | 2094 ++--
 1 file changed, 1053 insertions(+), 1041 deletions(-)

New commits:
commit 25da11ef29a749eba4f7c8b0cdcb14f75e1c5831
Author: Christian Lohmaier 
Date:   Wed Apr 27 01:12:54 2016 +0200

update credits

Change-Id: I63a025efc0208b93887bc02acb360311b56688e9
(cherry picked from commit 72f89e0f0e2e766eb9739b6833a91139b4ae5e29)

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index 5fb9235..2dc792a1 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,7 +1,7 @@
 
 
 http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oas
 is:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:officeooo="http://openoffice.org/2009/office; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:formx="urn:openoffice:names:
 experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.1.2.2$Linux_X86_64
 
LibreOffice_project/d3bf12ecb743fc0d20e0be0c58ca359301eb705f2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.1.2.2$Linux_X86_64
 
LibreOffice_project/d3bf12ecb743fc0d20e0be0c58ca359301eb705f2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
607
@@ -68,7 +68,7 @@
false
false
true
-   5091996
+   5101528
false
false
false
@@ -311,13 +311,13 @@
  
  
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -389,24 +389,24 @@

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
   
-   
+   
   
   

   
-  
+  

   
   
@@ -1029,7 +1029,7 @@

   
  Credits
-1153 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2016-04-19 17:56:24.
+1153 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2016-04-26 19:31:13.
 * marks developers whose first contributions 
happened after 2010-09-28.
 Developers 
committing code since 2010-09-28
 
@@ -1056,10 +1056,10 @@
Vladimir 
GlazunovCommits: 25434Joined: 
2000-12-04
   
   
-   Caolán 
McNamaraCommits: 19318Joined: 
2000-10-10
+   Caolán 
McNamaraCommits: 19322Joined: 
2000-10-10
   
   
-   Stephan 
BergmannCommits: 11813Joined: 
2000-10-04
+   Stephan 
BergmannCommits: 11970Joined: 
2000-10-04
   
   
Ivo 
HinkelmannCommits: 9480Joined: 
2002-09-09
@@ -1067,13 +1067,13 @@
  
  
   
-   Tor 
LillqvistCommits: 7360Joined: 
2010-03-23
+   Tor 
LillqvistCommits: 7366Joined: 
2010-03-23
   
   
-   *Noel GrandinCommits: 
5718Joined: 2011-12-12
+   *Noel GrandinCommits: 
5735Joined: 2011-12-12
   
   
-   Miklos 
VajnaCommits: 5562Joined: 
2010-07-29
+   Miklos 
VajnaCommits: 5573Joined: 
2010-07-29
   
   
Michael 
StahlCommits: 5372Joined: 
2008-06-16
@@ -1087,15 +1087,15 @@
Frank Schoenheit 
[fs]Commits: 5008Joined: 2000-09-19
   
   
-   *Markus MohrhardCommits: 
4086Joined: 2011-03-17
+   *Markus MohrhardCommits: 
4087Joined: 

[Libreoffice-bugs] [Bug 99409] Spell Checking doesn't immediately reflect change language change

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99409

--- Comment #2 from Ladislav Nesnera  ---
Created attachment 124662
  --> https://bugs.documentfoundation.org/attachment.cgi?id=124662=edit
screenshot for step 2

Just right click at cell A1 and select "Format cells"

OS: Linux 4.2.6-300.fc23.i686 #1 SMP Tue Nov 10 20:12:16 UTC 2015 i686 i686
i386 GNU/Linux

LibreOffice 5.0.6.1 00(Build: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: readlicense_oo/license

2016-04-26 Thread Christian Lohmaier
 readlicense_oo/license/CREDITS.fodt | 2094 ++--
 1 file changed, 1053 insertions(+), 1041 deletions(-)

New commits:
commit 72f89e0f0e2e766eb9739b6833a91139b4ae5e29
Author: Christian Lohmaier 
Date:   Wed Apr 27 01:12:54 2016 +0200

update credits

Change-Id: I63a025efc0208b93887bc02acb360311b56688e9

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index 5fb9235..2dc792a1 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,7 +1,7 @@
 
 
 http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oas
 is:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:officeooo="http://openoffice.org/2009/office; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:formx="urn:openoffice:names:
 experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.1.2.2$Linux_X86_64
 
LibreOffice_project/d3bf12ecb743fc0d20e0be0c58ca359301eb705f2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/5.1.2.2$Linux_X86_64
 
LibreOffice_project/d3bf12ecb743fc0d20e0be0c58ca359301eb705f2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
607
@@ -68,7 +68,7 @@
false
false
true
-   5091996
+   5101528
false
false
false
@@ -311,13 +311,13 @@
  
  
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

@@ -389,24 +389,24 @@

   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
   
-   
+   
   
   

   
-  
+  

   
   
@@ -1029,7 +1029,7 @@

   
  Credits
-1153 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2016-04-19 17:56:24.
+1153 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2016-04-26 19:31:13.
 * marks developers whose first contributions 
happened after 2010-09-28.
 Developers 
committing code since 2010-09-28
 
@@ -1056,10 +1056,10 @@
Vladimir 
GlazunovCommits: 25434Joined: 
2000-12-04
   
   
-   Caolán 
McNamaraCommits: 19318Joined: 
2000-10-10
+   Caolán 
McNamaraCommits: 19322Joined: 
2000-10-10
   
   
-   Stephan 
BergmannCommits: 11813Joined: 
2000-10-04
+   Stephan 
BergmannCommits: 11970Joined: 
2000-10-04
   
   
Ivo 
HinkelmannCommits: 9480Joined: 
2002-09-09
@@ -1067,13 +1067,13 @@
  
  
   
-   Tor 
LillqvistCommits: 7360Joined: 
2010-03-23
+   Tor 
LillqvistCommits: 7366Joined: 
2010-03-23
   
   
-   *Noel GrandinCommits: 
5718Joined: 2011-12-12
+   *Noel GrandinCommits: 
5735Joined: 2011-12-12
   
   
-   Miklos 
VajnaCommits: 5562Joined: 
2010-07-29
+   Miklos 
VajnaCommits: 5573Joined: 
2010-07-29
   
   
Michael 
StahlCommits: 5372Joined: 
2008-06-16
@@ -1087,15 +1087,15 @@
Frank Schoenheit 
[fs]Commits: 5008Joined: 2000-09-19
   
   
-   *Markus MohrhardCommits: 
4086Joined: 2011-03-17
+   *Markus MohrhardCommits: 
4087Joined: 2011-03-17
   
   
-   David 
TardonCommits: 3214Joined: 

[Libreoffice-bugs] [Bug 96172] Crash in layout SwSectionFrame after opening particular document

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96172

--- Comment #20 from Commit Notification 
 ---
Caolán McNamara committed a patch related to this issue.
It has been pushed to "libreoffice-5-0-6":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=4f3e79a0493bf297fe165e974f4f9f044f5c7ed3=libreoffice-5-0-6

Resolves: tdf#96172 crashtesting: avoid crash in layout

It will be available in 5.0.6.

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-bugs] [Bug 96172] Crash in layout SwSectionFrame after opening particular document

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96172

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:5.2.0 target:5.1.3   |target:5.2.0 target:5.1.3
   |target:5.0.7|target:5.0.7 target:5.0.6

-- 
You are receiving this mail because:
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-0-6' - svx/source

2016-04-26 Thread Caolán McNamara
 svx/source/sdr/contact/viewcontactofsdrpathobj.cxx |   48 ++---
 1 file changed, 25 insertions(+), 23 deletions(-)

New commits:
commit 141a31fa26d398491194249789bb35f0d52801d9
Author: Caolán McNamara 
Date:   Mon Apr 11 13:27:39 2016 +0100

Resolves: tdf#98366 paste document has 10x10 sized SdPages...

so long lines in them are clipped out in the preview.

Change-Id: I355986ff4a9c9e53f8e8f5d41b63f74c633f41ee
(cherry picked from commit 93efd7ebbad293d3729b8ea4b9726aff498f607f)
Reviewed-on: https://gerrit.libreoffice.org/23994
Tested-by: Jenkins 
Reviewed-by: Miklos Vajna 
(cherry picked from commit 17c61cc64278c006b06f8b152d79073c0ef16993)
Reviewed-on: https://gerrit.libreoffice.org/24418
Reviewed-by: Christian Lohmaier 
Reviewed-by: Markus Mohrhard 
Tested-by: Markus Mohrhard 

diff --git a/svx/source/sdr/contact/viewcontactofsdrpathobj.cxx 
b/svx/source/sdr/contact/viewcontactofsdrpathobj.cxx
index f09a78d..c49af11 100644
--- a/svx/source/sdr/contact/viewcontactofsdrpathobj.cxx
+++ b/svx/source/sdr/contact/viewcontactofsdrpathobj.cxx
@@ -90,30 +90,32 @@ namespace sdr
 
 if(bIsLine)
 {
+//tdf#63955 if we have an extremely long line then clip it to a
+//very generous range of -1 page width/height vs +1 page
+//width/height to avoid oom and massive churn generating a huge
+//polygon chain to cover the length in applyLineDashing if this
+//line is dashed
 const SdrPage* pPage = GetPathObj().GetPage();
-double fPageWidth = pPage ? pPage->GetWdt() : 0.0;
-double fPageHeight = pPage ? pPage->GetHgt() : 0.0;
-if (fPageWidth && fPageHeight)
-{
-//tdf#63955 if we have an extremely long line then clip it
-//to a very generous range of -1 page width/height vs +1
-//page width/height to avoid oom and massive churn
-//generating a huge polygon chain to cover the length in
-//applyLineDashing if this line is dashed
-//tdf#97276 don't clip if the underlying page dimension
-//is unknown
-basegfx::B2DRange aClipRange(-fPageWidth, -fPageHeight,
- fPageWidth*2, fPageHeight*2);
-aUnitPolyPolygon = 
basegfx::tools::clipPolyPolygonOnRange(aUnitPolyPolygon,
-   
aClipRange, true, true);
-nPolyCount = ensureGeometry(aUnitPolyPolygon);
-
-// re-check that we have't been clipped out to oblivion
-bIsLine =
-!aUnitPolyPolygon.areControlPointsUsed()
-&& 1 == nPolyCount
-&& 2 == aUnitPolyPolygon.getB2DPolygon(0).count();
-}
+sal_Int32 nPageWidth = pPage ? pPage->GetWdt() : 0;
+sal_Int32 nPageHeight = pPage ? pPage->GetHgt() : 0;
+
+//But, see tdf#97276 and tdf#98366. Don't clip too much if the
+//underlying page dimension is unknown or a paste document
+//where the page sizes use the odd default of 10x10
+nPageWidth = std::max(21000, nPageWidth);
+nPageHeight = std::max(29700, nPageHeight);
+basegfx::B2DRange aClipRange(-nPageWidth, -nPageHeight,
+ nPageWidth*2, nPageHeight*2);
+
+aUnitPolyPolygon = 
basegfx::tools::clipPolyPolygonOnRange(aUnitPolyPolygon,
+   aClipRange, 
true, true);
+nPolyCount = ensureGeometry(aUnitPolyPolygon);
+
+// re-check that we have't been clipped out to oblivion
+bIsLine =
+!aUnitPolyPolygon.areControlPointsUsed()
+&& 1 == nPolyCount
+&& 2 == aUnitPolyPolygon.getB2DPolygon(0).count();
 }
 
 if(bIsLine)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-0-6' - sw/source

2016-04-26 Thread Caolán McNamara
 sw/source/core/layout/sectfrm.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 4f3e79a0493bf297fe165e974f4f9f044f5c7ed3
Author: Caolán McNamara 
Date:   Mon Mar 7 12:16:28 2016 +

Resolves: tdf#96172 crashtesting: avoid crash in layout

sectfrm is riddled with workarounds for "half dead"
section frames. This is yet another one.

Change-Id: Ic03ad8971002d7dce308475f1497d1dda8045d15
Cherry-picked from 727ebae15e623660b9cc6f8db0e7558830bf920d
Reviewed-on: https://gerrit.libreoffice.org/24155
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 
(cherry picked from commit 43685487f24bc2a1244922ebc04af467f0eabef6)
Reviewed-on: https://gerrit.libreoffice.org/24417
Reviewed-by: Christian Lohmaier 
Reviewed-by: Markus Mohrhard 
Tested-by: Markus Mohrhard 

diff --git a/sw/source/core/layout/sectfrm.cxx 
b/sw/source/core/layout/sectfrm.cxx
index bef77ba..60ff9ce 100644
--- a/sw/source/core/layout/sectfrm.cxx
+++ b/sw/source/core/layout/sectfrm.cxx
@@ -1574,7 +1574,7 @@ SwLayoutFrm *SwFrm::GetNextSctLeaf( MakePageType 
eMakePage )
 // We have found the suitable layout sheet. If there (in the sheet) is
 // already a Follow of our section, we take its first layout sheet,
 // otherwise it is time to create a section follow
-SwSectionFrm* pNew;
+SwSectionFrm* pNew = nullptr;
 
 // This can be omitted if existing Follows were cut short
 SwFrm* pFirst = pLayLeaf->Lower();
@@ -1585,7 +1585,7 @@ SwLayoutFrm *SwFrm::GetNextSctLeaf( MakePageType 
eMakePage )
 pNew = pSect->GetFollow();
 else if( MAKEPAGE_NOSECTION == eMakePage )
 return pLayLeaf;
-else
+else if (pSect->GetSection())
 {
 pNew = new SwSectionFrm( *pSect, false );
 pNew->InsertBefore( pLayLeaf, pLayLeaf->Lower() );
@@ -1640,7 +1640,7 @@ SwLayoutFrm *SwFrm::GetNextSctLeaf( MakePageType 
eMakePage )
 pNew->SimpleFormat();
 }
 // The wanted layout sheet is now the first of the determined SctFrms:
-pLayLeaf = FIRSTLEAF( pNew );
+pLayLeaf = pNew ? FIRSTLEAF( pNew ) : nullptr;
 }
 return pLayLeaf;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] translations.git: Branch 'libreoffice-5-0-6' - source/es source/eu source/lv source/oc source/th

2016-04-26 Thread Christian Lohmaier
 source/es/helpcontent2/source/text/sbasic/shared.po   |6 
 source/es/helpcontent2/source/text/scalc/01.po|   20 -
 source/es/helpcontent2/source/text/scalc/guide.po |8 
 source/es/helpcontent2/source/text/sdraw/04.po|   12 
 source/es/helpcontent2/source/text/sdraw/guide.po |8 
 source/es/helpcontent2/source/text/shared/00.po   |   10 
 source/es/helpcontent2/source/text/shared/01.po   |8 
 source/es/helpcontent2/source/text/shared/02.po   |   16 
 source/es/helpcontent2/source/text/shared/04.po   |   10 
 source/es/helpcontent2/source/text/shared/05.po   |8 
 source/es/helpcontent2/source/text/shared/guide.po|   24 -
 source/es/helpcontent2/source/text/shared/optionen.po |6 
 source/es/helpcontent2/source/text/simpress/01.po |6 
 source/es/helpcontent2/source/text/simpress/02.po |6 
 source/es/helpcontent2/source/text/simpress/04.po |8 
 source/es/helpcontent2/source/text/simpress/guide.po  |6 
 source/es/helpcontent2/source/text/swriter/01.po  |   10 
 source/es/helpcontent2/source/text/swriter/guide.po   |   18 
 source/eu/helpcontent2/source/text/scalc/01.po|   18 
 source/lv/officecfg/registry/data/org/openoffice/Office/UI.po |8 
 source/lv/sc/source/ui/src.po |6 
 source/lv/sw/source/ui/docvw.po   |   11 
 source/oc/extensions/uiconfig/sabpilot/ui.po  |9 
 source/oc/formula/source/core/resource.po |6 
 source/oc/officecfg/registry/data/org/openoffice/Office.po|   18 
 source/oc/officecfg/registry/data/org/openoffice/Office/UI.po |   30 -
 source/oc/reportdesign/uiconfig/dbreport/ui.po|6 
 source/oc/sc/source/ui/sidebar.po |   10 
 source/oc/sc/source/ui/src.po |   20 -
 source/oc/svx/source/items.po |   12 
 source/oc/svx/source/stbctrls.po  |   12 
 source/oc/svx/source/tbxctrls.po  |   10 
 source/oc/svx/uiconfig/ui.po  |  183 +-
 source/th/basctl/source/basicide.po   |   12 
 source/th/basic/source/classes.po |   10 
 source/th/editeng/source/items.po |6 
 source/th/librelogo/source/pythonpath.po  |   13 
 source/th/officecfg/registry/data/org/openoffice/Office/UI.po |   12 
 source/th/reportdesign/uiconfig/dbreport/ui.po|   14 
 source/th/sc/source/ui/src.po |   14 
 source/th/sc/source/ui/styleui.po |   10 
 source/th/sc/uiconfig/scalc/ui.po |8 
 source/th/sd/source/ui/app.po |7 
 source/th/sd/uiconfig/simpress/ui.po  |6 
 source/th/sfx2/source/dialog.po   |6 
 source/th/svx/source/form.po  |6 
 source/th/svx/source/items.po |8 
 source/th/svx/source/sidebar/text.po  |   10 
 source/th/svx/source/src.po   |   18 
 source/th/svx/source/svdraw.po|   24 -
 source/th/svx/uiconfig/ui.po  |   10 
 source/th/sw/source/core/undo.po  |   12 
 source/th/sw/source/ui/app.po |6 
 source/th/sw/source/ui/chrdlg.po  |   10 
 source/th/sw/source/ui/fldui.po   |8 
 source/th/sw/source/uibase/utlui.po   |6 
 source/th/sw/uiconfig/swriter/ui.po   |   12 
 source/th/swext/mediawiki/help.po |   14 
 source/th/uui/source.po   |6 
 source/th/wizards/source/formwizard.po|   14 
 60 files changed, 418 insertions(+), 413 deletions(-)

New commits:
commit f695acad305503c14a1918d1d866d76722b6db17
Author: Christian Lohmaier 
Date:   Wed Apr 27 00:00:26 2016 +0200

update translations for 5.0.6 rc2

and force-fix errors using pocheck

Change-Id: I02d4482ea918a8986b6e04983a7c7e629145d791
(cherry picked from commit 2de5bed5aa0facebf1a42166dedbeadfad49977f)

diff --git a/source/es/helpcontent2/source/text/sbasic/shared.po 
b/source/es/helpcontent2/source/text/sbasic/shared.po
index c50665a..eace8e5 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared.po
+++ b/source/es/helpcontent2/source/text/sbasic/shared.po
@@ -4,7 +4,7 @@ 

[Libreoffice-commits] core.git: Branch 'libreoffice-5-0-6' - translations

2016-04-26 Thread Christian Lohmaier
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f5913301054c4d6ffa2de44abda005a781120679
Author: Christian Lohmaier 
Date:   Wed Apr 27 00:00:26 2016 +0200

Updated core
Project: translations  f695acad305503c14a1918d1d866d76722b6db17

update translations for 5.0.6 rc2

and force-fix errors using pocheck

Change-Id: I02d4482ea918a8986b6e04983a7c7e629145d791
(cherry picked from commit 2de5bed5aa0facebf1a42166dedbeadfad49977f)

diff --git a/translations b/translations
index 88069db..f695aca 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 88069db90259016a128e503844f17979d8b48eb4
+Subproject commit f695acad305503c14a1918d1d866d76722b6db17
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] translations.git: Branch 'libreoffice-5-0' - source/es source/eu source/lv source/oc source/th

2016-04-26 Thread Christian Lohmaier
 source/es/helpcontent2/source/text/sbasic/shared.po   |6 
 source/es/helpcontent2/source/text/scalc/01.po|   20 -
 source/es/helpcontent2/source/text/scalc/guide.po |8 
 source/es/helpcontent2/source/text/sdraw/04.po|   12 
 source/es/helpcontent2/source/text/sdraw/guide.po |8 
 source/es/helpcontent2/source/text/shared/00.po   |   10 
 source/es/helpcontent2/source/text/shared/01.po   |8 
 source/es/helpcontent2/source/text/shared/02.po   |   16 
 source/es/helpcontent2/source/text/shared/04.po   |   10 
 source/es/helpcontent2/source/text/shared/05.po   |8 
 source/es/helpcontent2/source/text/shared/guide.po|   24 -
 source/es/helpcontent2/source/text/shared/optionen.po |6 
 source/es/helpcontent2/source/text/simpress/01.po |6 
 source/es/helpcontent2/source/text/simpress/02.po |6 
 source/es/helpcontent2/source/text/simpress/04.po |8 
 source/es/helpcontent2/source/text/simpress/guide.po  |6 
 source/es/helpcontent2/source/text/swriter/01.po  |   10 
 source/es/helpcontent2/source/text/swriter/guide.po   |   18 
 source/eu/helpcontent2/source/text/scalc/01.po|   18 
 source/lv/officecfg/registry/data/org/openoffice/Office/UI.po |8 
 source/lv/sc/source/ui/src.po |6 
 source/lv/sw/source/ui/docvw.po   |   11 
 source/oc/extensions/uiconfig/sabpilot/ui.po  |9 
 source/oc/formula/source/core/resource.po |6 
 source/oc/officecfg/registry/data/org/openoffice/Office.po|   18 
 source/oc/officecfg/registry/data/org/openoffice/Office/UI.po |   30 -
 source/oc/reportdesign/uiconfig/dbreport/ui.po|6 
 source/oc/sc/source/ui/sidebar.po |   10 
 source/oc/sc/source/ui/src.po |   20 -
 source/oc/svx/source/items.po |   12 
 source/oc/svx/source/stbctrls.po  |   12 
 source/oc/svx/source/tbxctrls.po  |   10 
 source/oc/svx/uiconfig/ui.po  |  183 +-
 source/th/basctl/source/basicide.po   |   12 
 source/th/basic/source/classes.po |   10 
 source/th/editeng/source/items.po |6 
 source/th/librelogo/source/pythonpath.po  |   13 
 source/th/officecfg/registry/data/org/openoffice/Office/UI.po |   12 
 source/th/reportdesign/uiconfig/dbreport/ui.po|   14 
 source/th/sc/source/ui/src.po |   14 
 source/th/sc/source/ui/styleui.po |   10 
 source/th/sc/uiconfig/scalc/ui.po |8 
 source/th/sd/source/ui/app.po |7 
 source/th/sd/uiconfig/simpress/ui.po  |6 
 source/th/sfx2/source/dialog.po   |6 
 source/th/svx/source/form.po  |6 
 source/th/svx/source/items.po |8 
 source/th/svx/source/sidebar/text.po  |   10 
 source/th/svx/source/src.po   |   18 
 source/th/svx/source/svdraw.po|   24 -
 source/th/svx/uiconfig/ui.po  |   10 
 source/th/sw/source/core/undo.po  |   12 
 source/th/sw/source/ui/app.po |6 
 source/th/sw/source/ui/chrdlg.po  |   10 
 source/th/sw/source/ui/fldui.po   |8 
 source/th/sw/source/uibase/utlui.po   |6 
 source/th/sw/uiconfig/swriter/ui.po   |   12 
 source/th/swext/mediawiki/help.po |   14 
 source/th/uui/source.po   |6 
 source/th/wizards/source/formwizard.po|   14 
 60 files changed, 418 insertions(+), 413 deletions(-)

New commits:
commit 2de5bed5aa0facebf1a42166dedbeadfad49977f
Author: Christian Lohmaier 
Date:   Wed Apr 27 00:00:26 2016 +0200

update translations for 5.0.6 rc2

and force-fix errors using pocheck

Change-Id: I02d4482ea918a8986b6e04983a7c7e629145d791

diff --git a/source/es/helpcontent2/source/text/sbasic/shared.po 
b/source/es/helpcontent2/source/text/sbasic/shared.po
index c50665a..eace8e5 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared.po
+++ b/source/es/helpcontent2/source/text/sbasic/shared.po
@@ -4,7 +4,7 @@ msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: 

[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - translations

2016-04-26 Thread Christian Lohmaier
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 06f0d64cf2aee737c4e725eabf5468fe19c219f6
Author: Christian Lohmaier 
Date:   Wed Apr 27 00:00:26 2016 +0200

Updated core
Project: translations  2de5bed5aa0facebf1a42166dedbeadfad49977f

update translations for 5.0.6 rc2

and force-fix errors using pocheck

Change-Id: I02d4482ea918a8986b6e04983a7c7e629145d791

diff --git a/translations b/translations
index 5d92a90..2de5bed 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 5d92a909d54033cb239b3398f6333968e8c8a787
+Subproject commit 2de5bed5aa0facebf1a42166dedbeadfad49977f
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-04-26 Thread Chris Sherlock
 vcl/qa/cppunit/wmf/wmfimporttest.cxx |   24 
 vcl/source/filter/wmf/enhwmf.cxx |   26 --
 vcl/source/filter/wmf/winmtf.cxx |   12 ++--
 vcl/source/filter/wmf/winwmf.cxx |   11 ---
 4 files changed, 26 insertions(+), 47 deletions(-)

New commits:
commit e21606f3cce557e5eb84b2e7747c173edf526a55
Author: Chris Sherlock 
Date:   Sun Mar 6 12:24:09 2016 +1100

tdf#79679 vcl: dashed lines show as solid lines when importing EMF files

Backported fix to 5.0.

Issue is a regression in commit 09c722873b2d378d2d155f5f1dd7d8f3fb2012e9.
(EMF/WMF: fix rendering of pen styles (dash, dot, dashdot, dashdotdot).

I've looked at how the latest version of Word on the Mac works, and it
turns out that the spacings for the PenStyle enumerations in the LogPen
objects for all the create pen EMF records are as follows:

* PS_DOT   - ■ □ ■ □ ■ □ ■ □ ■ □ ■
* PS_DASHDOT   - ■ ■ ■ □ ■ □ ■ ■ ■ □ ■
* PS_DASHDOTDOT- ■ ■ ■ □ ■ □ ■ □ ■ ■ ■

(where ■ is the actual filled in area, and □ is the space between the
filled in areas)

In other words, each dash fills in the space of three dots, and there
is the one dot worth of empty space between the dashes and dots. Each
"dot" has a width and height equal to the width specified in the pen.

So basically, we seem to be arbitrarily setting the dot, dash and
distance lengths arbitrarily, which were reasonable guesses but tended
to produce very odd lines at different zoom levels.

Change-Id: Ie8b5fa396e4fb0f480cb3594c8129a59f472c1b8
Reviewed-on: https://gerrit.libreoffice.org/22886
Reviewed-by: Chris Sherlock 
Tested-by: Chris Sherlock 
Reviewed-on: https://gerrit.libreoffice.org/22928
Tested-by: Jenkins 
Reviewed-by: Tomaž Vajngerl 
Reviewed-by: Christian Lohmaier 

diff --git a/vcl/qa/cppunit/wmf/wmfimporttest.cxx 
b/vcl/qa/cppunit/wmf/wmfimporttest.cxx
index 32c4d90..176ff5d 100644
--- a/vcl/qa/cppunit/wmf/wmfimporttest.cxx
+++ b/vcl/qa/cppunit/wmf/wmfimporttest.cxx
@@ -146,38 +146,38 @@ void WmfTest::testEmfLineStyles()
 assertXPath(pDoc, "/metafile/linecolor[5]", "color", "#ff");
 
 assertXPath(pDoc, "/metafile/line[1]", "style", "dash");
-assertXPath(pDoc, "/metafile/line[1]", "dashlen", "225");
+assertXPath(pDoc, "/metafile/line[1]", "dashlen", "528");
 assertXPath(pDoc, "/metafile/line[1]", "dashcount", "1");
-assertXPath(pDoc, "/metafile/line[1]", "dotlen", "0");
+assertXPath(pDoc, "/metafile/line[1]", "dotlen", "176");
 assertXPath(pDoc, "/metafile/line[1]", "dotcount", "0");
-assertXPath(pDoc, "/metafile/line[1]", "distance", "100");
+assertXPath(pDoc, "/metafile/line[1]", "distance", "176");
 assertXPath(pDoc, "/metafile/line[1]", "join", "miter");
 assertXPath(pDoc, "/metafile/line[1]", "cap", "butt");
 
 assertXPath(pDoc, "/metafile/line[2]", "style", "dash");
-assertXPath(pDoc, "/metafile/line[2]", "dashlen", "0");
+assertXPath(pDoc, "/metafile/line[2]", "dashlen", "528");
 assertXPath(pDoc, "/metafile/line[2]", "dashcount", "0");
-assertXPath(pDoc, "/metafile/line[2]", "dotlen", "30");
+assertXPath(pDoc, "/metafile/line[2]", "dotlen", "176");
 assertXPath(pDoc, "/metafile/line[2]", "dotcount", "1");
-assertXPath(pDoc, "/metafile/line[2]", "distance", "50");
+assertXPath(pDoc, "/metafile/line[2]", "distance", "176");
 assertXPath(pDoc, "/metafile/line[2]", "join", "miter");
 assertXPath(pDoc, "/metafile/line[2]", "cap", "butt");
 
 assertXPath(pDoc, "/metafile/line[3]", "style", "dash");
-assertXPath(pDoc, "/metafile/line[3]", "dashlen", "150");
+assertXPath(pDoc, "/metafile/line[3]", "dashlen", "528");
 assertXPath(pDoc, "/metafile/line[3]", "dashcount", "1");
-assertXPath(pDoc, "/metafile/line[3]", "dotlen", "30");
+assertXPath(pDoc, "/metafile/line[3]", "dotlen", "176");
 assertXPath(pDoc, "/metafile/line[3]", "dotcount", "1");
-assertXPath(pDoc, "/metafile/line[3]", "distance", "90");
+assertXPath(pDoc, "/metafile/line[3]", "distance", "176");
 assertXPath(pDoc, "/metafile/line[3]", "join", "miter");
 assertXPath(pDoc, "/metafile/line[3]", "cap", "butt");
 
 assertXPath(pDoc, "/metafile/line[4]", "style", "dash");
-assertXPath(pDoc, "/metafile/line[4]", "dashlen", "150");
+assertXPath(pDoc, "/metafile/line[4]", "dashlen", "528");
 assertXPath(pDoc, "/metafile/line[4]", "dashcount", "1");
-assertXPath(pDoc, "/metafile/line[4]", "dotlen", "30");
+assertXPath(pDoc, "/metafile/line[4]", "dotlen", "176");
 assertXPath(pDoc, "/metafile/line[4]", "dotcount", "2");
-

[Libreoffice-bugs] [Bug 99258] Windows builds of master 5.2.0alpha1+ failing in Extension Manager on launch

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99258

--- Comment #20 from Pedro  ---
(In reply to Christian Lohmaier from comment #17)
> the registrymodifications.xcu is *meant* to be small, as it only contains
> stuff that the user configures and hence differs from the defaults.
> 
> That file isn't even part of the package, but created by LO when it launches.

We are aware of that...

> Even if that file would be to blame, the problem would be reproducible by
> not only you three, but by everyone who would try the admin installation
> method.

You forgot 3 details: 1) The problem "only" affects Win 8+ ; 2) Comment #10 "I
tested with both x86 and x64, installed in parallel with SI GUI and standard
install." 3) Maybe only the 3 of us bothered to report? Does it require more
than 3 people???

> Besides that: Why did nobody bother to actually attach working and
> non-working registrymodifications.xcu?

Good point. Done.

> According to the logic presented here, replacing a working
> registrymodifications.xcu with the "too short" one would also provoke the
> crash.
> And did anyone try whether that then also causes a regular installation to
> fail in the same way?

That doesn't work because there isn't any "good" TDF Master build to test
with...
It doesn't crash 5.1.3.1 (x64) though
But it is a different branch so it doesn't prove much...

> so once again: What is "unexpectedly short"? is it invalid xml because LO
> was killed while writing it/is it incomplete file? Or just pristine config
> with no user-overrides?

No, it is not incomplete but an almost empty xml. See attachments.

-- 
You are receiving this mail because:
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 99258] Windows builds of master 5.2.0alpha1+ failing in Extension Manager on launch

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99258

--- Comment #19 from Pedro  ---
Created attachment 124661
  --> https://bugs.documentfoundation.org/attachment.cgi?id=124661=edit
XCU file generated by 5.2 Master daily build from TB#39 (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 99258] Windows builds of master 5.2.0alpha1+ failing in Extension Manager on launch

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99258

--- Comment #18 from Pedro  ---
Created attachment 124660
  --> https://bugs.documentfoundation.org/attachment.cgi?id=124660=edit
xcu file generated by version 5.2 Alpha1

-- 
You are receiving this mail because:
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 99520] New: 5.0.5.2 Crashed on saving "Untitled 1" documents and they're gone

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99520

Bug ID: 99520
   Summary: 5.0.5.2 Crashed on saving "Untitled 1" documents and
they're gone
   Product: LibreOffice
   Version: 5.0.5.2 release
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: for...@gmail.com

I just experienced an unfortunate series of events with 5.0.5.2 of LibreOffice
which resulted in a serious amount of LOST WORK.  I'll omit expletives.

First of all, please fix the "quit" option for the Mac OS X release.  This is
really, really annoying and causes problems like this to happen.  If I had a
"confirm" dialog available, this would have been mitigated.

The application locked up while trying to save four (4) documents, after I
accidentally selected CMD-Q (quit) vs CMD-W (close window) (see above problem).
  I had to force the application to quit after about 10 minutes where it was
obviously not going to complete.

Restarting LibreOffice, starting the Recovery Mode failed due to $(ARG1) being
undefined for the three "untitled 1" documents.  One of them was a really long
report I had been working on the entire day, and now it's apparently gone.

1) The Quit confirm dialog needs to be implemented

2) There is a bug where when trying to save unnamed documents, the application
locks up in 5.0.5.2

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


[Libreoffice-bugs] [Bug 99493] Default shortcut for 'Track Changes' > 'Record Changes' (Ctrl+Shift+E) is not shown in 'Tools' > 'Customize...' and thus not deletable.

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99493

--- Comment #5 from m.a.riosv  ---
Don't worry, and thanks for the effort, please let the bug as new. Maybe
somebody could take 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 96467] ODT does not contains borders information for character styles

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96467

--- Comment #3 from Jonata  ---
As of version 5.1.2.2 this bug is fixed. Thanks for your attention.

-- 
You are receiving this mail because:
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 99512] Calc don't display correctly time cells

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99512

--- Comment #2 from Cor Nouws  ---
Hi Ramon,

Few things that I look at, work fine in 5.0.x and 5.1.2.1 and 5.2-alpha1..
Can you please explain what is wrong in your situation?

Thanks,
Cor

-- 
You are receiving this mail because:
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 60418] FILEOPEN and EDITING particular .odt with excessive lots of Comments causes heavy CPU and memory load, can crash on saving

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60418

--- Comment #30 from Aron Budea  ---
(In reply to Luke Kendall from comment #29)
> I look forward to trying out the new version: I hope it addresses not just
> the problem found related to forms, but also to the number of comments!

I'm just a random person looking at random issues trying to understand the
codebase better, who found some quick wins, so don't get your hopes up. I
checked only with the 3rd attachment (the 1st didn't even open), and only
opening and closing times. I'll probably try to look into this some more in the
future, but can't promise anything.

-- 
You are receiving this mail because:
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 99513] Side-by-side view options not available in Draw (and Writer)

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99513

Cor Nouws  changed:

   What|Removed |Added

Version|5.0.6.1 rc  |Inherited From OOo

-- 
You are receiving this mail because:
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 99513] Side-by-side view options not available in Draw (and Writer)

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99513

Cor Nouws  changed:

   What|Removed |Added

Version|5.0.6.1 rc  |Inherited From OOo

-- 
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 99515] Impress has no option to create a page in Portrait - Format-Slide

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99515

Cor Nouws  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||c...@nouenoff.nl
 Resolution|--- |WORKSFORME

--- Comment #4 from Cor Nouws  ---
.

-- 
You are receiving this mail because:
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 99515] Impress has no option to create a page in Portrait - Format-Slide

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99515

Cor Nouws  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||c...@nouenoff.nl
 Resolution|--- |WORKSFORME

--- Comment #4 from Cor Nouws  ---
.

-- 
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 99515] Impress has no option to create a page in Portrait - Format-Slide

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99515

--- Comment #3 from Cor Nouws  ---
(In reply to MM from comment #1)
> Well the option is there, but not under the normal menuitem 'Format'.
> Somehow with impress, but not with writer/calc/draw it's under 'Slide'. So
> 'Slide > page/slide properties'.

Indeed, thanks

> Maybe set as enhancement to change it back to the 'Format' menuitem.

Well, the menu etc has been extensively discussed recent... so I don't think
that's going to fly?

Cheers,
Cor

-- 
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 99515] Impress has no option to create a page in Portrait - Format-Slide

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99515

--- Comment #3 from Cor Nouws  ---
(In reply to MM from comment #1)
> Well the option is there, but not under the normal menuitem 'Format'.
> Somehow with impress, but not with writer/calc/draw it's under 'Slide'. So
> 'Slide > page/slide properties'.

Indeed, thanks

> Maybe set as enhancement to change it back to the 'Format' menuitem.

Well, the menu etc has been extensively discussed recent... so I don't think
that's going to fly?

Cheers,
Cor

-- 
You are receiving this mail because:
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 99515] Impress has no option to create a page in Portrait - Format-Slide

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99515

raal  changed:

   What|Removed |Added

   Keywords||needsUXEval
 Status|UNCONFIRMED |NEW
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||r...@post.cz
Summary|Impress has no option to|Impress has no option to
   |create a page in Portrait   |create a page in Portrait -
   ||Format-Slide
 Ever confirmed|0   |1
   Severity|normal  |enhancement

--- Comment #2 from raal  ---
UX Team -- please take a look at this enhancement. Thanks!

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


[Libreoffice-ux-advise] [Bug 99515] Impress has no option to create a page in Portrait - Format-Slide

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99515

raal  changed:

   What|Removed |Added

   Keywords||needsUXEval
 Status|UNCONFIRMED |NEW
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||r...@post.cz
Summary|Impress has no option to|Impress has no option to
   |create a page in Portrait   |create a page in Portrait -
   ||Format-Slide
 Ever confirmed|0   |1
   Severity|normal  |enhancement

--- Comment #2 from raal  ---
UX Team -- please take a look at this enhancement. Thanks!

-- 
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 99512] Calc don't display correctly time cells

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99512

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 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 99512] Calc don't display correctly time cells

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99512

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #1 from raal  ---
Created attachment 124659
  --> https://bugs.documentfoundation.org/attachment.cgi?id=124659=edit
printscreen from openOffice and LO

See attachment - printscreen from LO a OOo looks identical. Seems to be fixed
in dev version. Please could you test with dev version?
http://dev-builds.libreoffice.org/daily/master/
Thank you

-- 
You are receiving this mail because:
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 99514] FILEOPEN .xlsm error 37 times: BASIC runtime error. '423' Value2

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99514

--- Comment #2 from Julien Nabet  ---
I don't know what the macro does but for the moment,
either you don't need it and you can disable macro or you can replace "Value2"
in the Waterfall macro by "Value" to give it a try.

BTW, I don't even know if Range is implemented but I'm just a casual LO
contributor, not a dev expert, so...

-- 
You are receiving this mail because:
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 99519] Impress Crashes When Animated GIF added to presentation

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99519

raal  changed:

   What|Removed |Added

   Keywords||regression
 CC||r...@post.cz

--- Comment #1 from raal  ---
Please attach GIF image which crashes Impress. Thank you

-- 
You are receiving this mail because:
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 99493] Default shortcut for 'Track Changes' > 'Record Changes' (Ctrl+Shift+E) is not shown in 'Tools' > 'Customize...' and thus not deletable.

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99493

--- Comment #4 from Wolfgang Jäger  ---
Sorry! I feel lost now.  

To avoid getting into the next discussion about the ifs and hows, used the
'Tools' > 'Customize...' dialog to delet the one assignment of the shortcut
Ctrl+Shift+E: 'Record Changes' FOR LibreOffice, not just for Writer. 
Thee setting seemed to be successfully deleted, but is still active in Writer,
and shown as the shortcut under 'Edit' > 'Track Changes' > 'Record Changes'. It
is still not shown as assigned in the above mentioed dialog for Writer. (Also
not for Calc; unchanged).
Assigning the shortcut to another action ('Edit Macros' e.g.) overlayed the
working of Ctrl+Shift+E as 'Record Changes' which was nonetheless still shown
for the menu item. Deleting this assignment again led back to Ctrl+Shift+E for
'Record Changes'. 

Further experiments showed me e.g. that Ctrl+Sift+V, assigned to 'Paste
Special...' also is behaving erroneous: 
It IS shown among the asignments for Writer in 'Customize'. (Also for Calc, NOT
for LibreOffice)
If deleted there it is still active.
If deleted there it is still shown as the shortcut for the menu item >Edit' >
'Paste Special...' 
If assigned to another action the assignment is accepted and working while
'Edit' > 'Paste Special...' still is showing it as the shortcut to use. 

There obvious is no clear concept and no specification concerning the relations
of shortcuts, menu captures, actions and the 'Custimize' tool. Somebody did
just something to some effect most likely nobody wanted. 

I have to give in. I cannot find a reasonanble title nor a reasonable
description of the issue. Writing "It's a mess" or "Concept missing" won't lead
us anywhere. Just feel kind of unhappy having wasted some hours with the issue
here and in the related askbot thread. 
Ciao. 
May somebody mark the bug RESOLVED WONTFIX, please.

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


[Libreoffice-bugs] [Bug 98544] [UI] Find & Replace dialog should open with Options visible, if one of the options is set (and Options were visible last time)

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98544

Cor Nouws  changed:

   What|Removed |Added

Summary|[UI] Find & Replace dialog  |[UI] Find & Replace dialog
   |should open with Options|should open with Options
   |visible, if one of the  |visible, if one of the
   |options is set  |options is set (and Options
   ||were visible last time)

--- Comment #4 from Cor Nouws  ---
(In reply to Yousuf (Jay) Philips from comment #2)
> It should likely remember the state of whether 'Other Options' was open or
> closed and keep that state.

I'm a bit undecided. But think that too is in any way an improvement over the
current situation. So fine..

-- 
You are receiving this mail because:
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-0-6' - xmlscript/source

2016-04-26 Thread Vasily Melenchuk
 xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx |1 +
 xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx |1 +
 2 files changed, 2 insertions(+)

New commits:
commit 3c157dd16913bf873d6006767d8f53361b5d470b
Author: Vasily Melenchuk 
Date:   Fri Apr 8 18:54:35 2016 +0100

tdf#99172 support for vertical align import/export property for text boxes

Change-Id: I1cf8d8d57a7245800e2b28b674301ebcb5470348
Reviewed-on: https://gerrit.libreoffice.org/23927
Tested-by: Jenkins 
Reviewed-by: Samuel Mehrbrodt 
(cherry picked from commit bef802a7bf7acb8331a1d776db9bbcc3bf16220b)
Reviewed-on: https://gerrit.libreoffice.org/23935
Reviewed-by: Michael Stahl 
Reviewed-by: Christian Lohmaier 
(cherry picked from commit f2528ce7eebfd0b9e873c6350e40f1cb7cb1d0a9)
Reviewed-on: https://gerrit.libreoffice.org/24415
Tested-by: Michael Stahl 

diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx 
b/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx
index 10d03ce..31a5063 100644
--- a/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx
+++ b/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx
@@ -556,6 +556,7 @@ void ElementDescriptor::readEditModel( StyleBag * 
all_styles )
 readBoolAttr( "Tabstop", XMLNS_DIALOGS_PREFIX ":tabstop" );
 readBoolAttr( "HideInactiveSelection", XMLNS_DIALOGS_PREFIX 
":hide-inactive-selection" );
 readAlignAttr( "Align", XMLNS_DIALOGS_PREFIX ":align" );
+readVerticalAlignAttr( "VerticalAlign", XMLNS_DIALOGS_PREFIX ":valign" );
 readBoolAttr( "HardLineBreaks", XMLNS_DIALOGS_PREFIX ":hard-linebreaks" );
 readBoolAttr( "HScroll", XMLNS_DIALOGS_PREFIX ":hscroll" );
 readBoolAttr( "VScroll", XMLNS_DIALOGS_PREFIX ":vscroll" );
diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx 
b/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx
index 315c08f..b233e29 100644
--- a/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx
+++ b/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx
@@ -1088,6 +1088,7 @@ void TextFieldElement::endElement()
 ctx.importDefaults( _nBasePosX, _nBasePosY, _xAttributes );
 ctx.importBooleanProperty("Tabstop", "tabstop", _xAttributes );
 ctx.importAlignProperty( "Align", "align", _xAttributes );
+ctx.importVerticalAlignProperty( "VerticalAlign", "valign", _xAttributes );
 ctx.importBooleanProperty( "HardLineBreaks", "hard-linebreaks", 
_xAttributes );
 ctx.importBooleanProperty( "HScroll", "hscroll" ,_xAttributes );
 ctx.importBooleanProperty( "VScroll", "vscroll", _xAttributes );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 99514] FILEOPEN .xlsm error 37 times: BASIC runtime error. '423' Value2

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99514

Julien Nabet  changed:

   What|Removed |Added

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

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

It seems "Value2" property for the "Range" object is not implemented (see
https://support.microsoft.com/en-us/kb/213719)

-- 
You are receiving this mail because:
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 99483] Marque cell selection should be removed after paste

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99483

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||needsUXEval

-- 
You are receiving this mail because:
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 99515] Impress has no option to create a page in Portrait

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99515

--- Comment #1 from MM  ---
Well the option is there, but not under the normal menuitem 'Format'. Somehow
with impress, but not with writer/calc/draw it's under 'Slide'. So 'Slide >
page/slide properties'.
Maybe set as enhancement to change it back to the 'Format' menuitem.

-- 
You are receiving this mail because:
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 99320] LibreOffice doesn't play compressed Powerpoint 2013 video as a slideshow

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99320

Kevin Evans  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 99320] LibreOffice doesn't play compressed Powerpoint 2013 video as a slideshow

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99320

--- Comment #3 from Kevin Evans  ---
Created attachment 124658
  --> https://bugs.documentfoundation.org/attachment.cgi?id=124658=edit
PP2013 test files

So, maybe these files are too big to upload (the upload failed).

Let me go back into them and delete a bunch of slides. I did this and will try
to upload the smaller files (compressed and non compressed PP2013 files). 

The reduced files still will NOT upload.

They are 17Mb and 147Mb.

Based on your 10MB limit...how do I uploaded the test files to you?

I also couldn't see a way to remove the files from the upload list without
selecting another file, so I uploaded the test steps Word document instead.

Regards,

Kevin

-- 
You are receiving this mail because:
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 99320] LibreOffice doesn't play compressed Powerpoint 2013 video as a slideshow

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99320

--- Comment #2 from Kevin Evans  ---
The original file that I submitted the bug report on doesn't exist anymore as I
had many problems with family members trying to load the PowerPoint 2013 slides
which were compressed that I removed ALL the video from PP and uploaded those
separately to YouTube and rotated the videos using YouTube functions. The
non-video PPT files I then uploaded to Google Drive for family members to
access.

The original PPT files were documenting an Australia and New Zealand vacation
recently (hence various family members trying to access them). So, I took one
of the PPT files (none of them have video in them any more) and re-inserted one
of the waterfall videos from Queenstown, NZ and then tried to re-create the
problem. I created a "problem" but NOT the original problem. See the steps
below that I used.

Created a test file in PP2013 (on my desktop)

Rotated the waterfall video in PP2013

Saved the file (as the " not compressed" version I uploaded)

Waterfall plays correctly from top to bottom in PP2013

Opened the "non compressed" in Libre Office (on my laptop)

The video was NOT rotated and played "sideways" (hard to with a waterfall )

Went back to my desktop and saved the file as a "compressed" version

Used PP2013 to rotate the video (double clicked on the video and chose
"format")

In PP2013, video played from top to bottom correctly

Compressed the file and re-saved it as the "compressed" version

Open the "compressed" file using my laptop and LO (the files reside on a
server, so both the desktop and the laptop pull the file from the same place)

Went to slide 2 (the "inserted" waterfall video)

I did not get the blank white screen this time (laptop is NOT connected to the
bug screen via HDMI in this case, but just being used in my office)

The video appears to play in the correct orientation BUT is almost entirely off
the page at the bottom, so I can just see a small fraction of the waterfall.

I have uploaded the "compressed" and "non compressed" PP2013 files. I didn't
remove any other slides, based on it possibly affecting the resulting file
(size etc) so they are relatively large files.

-- 
You are receiving this mail because:
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 99483] Marque cell selection should be removed after paste

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99483

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #10 from Yousuf (Jay) Philips  ---
(In reply to Cor Nouws from comment #9)
> currently not confirmed.

We dont leave ux-advise enhancements as unconfirmed as that causes problems for
QA.

-- 
You are receiving this mail because:
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 99516] OpenGL: Crash when attempting to print

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99516

--- Comment #1 from D  ---
OK, my language was not sufficiently precise. 

"Crash" means here: The main window closes, the screenshot shows the leftovers.

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

2016-04-26 Thread Stephan Bergmann
 sw/source/core/edit/autofmt.cxx   |   14 ++
 sw/source/core/inc/sectfrm.hxx|   12 
 sw/source/core/text/inftxt.cxx|   12 +---
 sw/source/core/text/inftxt.hxx|6 --
 sw/source/core/text/redlnitr.cxx  |6 --
 sw/source/core/text/redlnitr.hxx  |   29 -
 sw/source/uibase/uiview/view0.cxx |3 ++-
 7 files changed, 57 insertions(+), 25 deletions(-)

New commits:
commit 0d3b42f59f7fe83ac029410555252d1be4c24897
Author: Stephan Bergmann 
Date:   Thu Jan 14 15:05:31 2016 +0100

-Werror=misleading-indentation (GCC 6)

Change-Id: I5c5f38789e7001aa04a0a5481feb9f033e53748e
(cherry picked from commit 57e0ab0c3a82ad4a957ea97c15f8672fad4a1880)
Signed-off-by: David Tardon 
Reviewed-on: https://gerrit.libreoffice.org/24412
Tested-by: Jenkins 

diff --git a/sw/source/core/edit/autofmt.cxx b/sw/source/core/edit/autofmt.cxx
index 3db4de00..35ad056 100644
--- a/sw/source/core/edit/autofmt.cxx
+++ b/sw/source/core/edit/autofmt.cxx
@@ -221,10 +221,16 @@ class SwAutoFormat
 bool DoTable();
 
 void _SetRedlineText( sal_uInt16 nId );
-bool SetRedlineText( sal_uInt16 nId )
-{ if( m_aFlags.bWithRedlining )   _SetRedlineText( nId );  return 
true; }
-bool ClearRedlineText()
-{ if( m_aFlags.bWithRedlining )   
m_pDoc->GetDocumentRedlineManager().SetAutoFormatRedlineComment(nullptr);  
return true; }
+bool SetRedlineText( sal_uInt16 nId ) {
+if( m_aFlags.bWithRedlining )
+_SetRedlineText( nId );
+return true;
+}
+bool ClearRedlineText() {
+if( m_aFlags.bWithRedlining )
+
m_pDoc->GetDocumentRedlineManager().SetAutoFormatRedlineComment(nullptr);
+return true;
+}
 
 public:
 SwAutoFormat( SwEditShell* pEdShell, SvxSwAutoFormatFlags& rFlags,
diff --git a/sw/source/core/inc/sectfrm.hxx b/sw/source/core/inc/sectfrm.hxx
index 395f18c..4184cb7 100644
--- a/sw/source/core/inc/sectfrm.hxx
+++ b/sw/source/core/inc/sectfrm.hxx
@@ -110,8 +110,10 @@ public:
  * if bCheckFollow is set.
  */
 bool ToMaximize( bool bCheckFollow ) const;
-inline bool _ToMaximize() const
-{ if( !m_pSection ) return false; return ToMaximize( false ); }
+inline bool _ToMaximize() const {
+if( !m_pSection ) return false;
+return ToMaximize( false );
+}
 bool MoveAllowed( const SwFrame* ) const;
 bool CalcMinDiff( SwTwips& rMinDiff ) const;
 
@@ -136,8 +138,10 @@ public:
 
 void InvalidateFootnotePos();
 void CollectEndnotes( SwLayouter* pLayouter );
-const SwSectionFormat* GetEndSectFormat() const
-{ if( IsEndnAtEnd() ) return _GetEndSectFormat(); return nullptr; }
+const SwSectionFormat* GetEndSectFormat() const {
+if( IsEndnAtEnd() ) return _GetEndSectFormat();
+return nullptr;
+}
 
 static void MoveContentAndDelete( SwSectionFrame* pDel, bool bSave );
 
diff --git a/sw/source/core/text/inftxt.cxx b/sw/source/core/text/inftxt.cxx
index 38d1e75..9c768ae 100644
--- a/sw/source/core/text/inftxt.cxx
+++ b/sw/source/core/text/inftxt.cxx
@@ -1258,9 +1258,15 @@ void SwTextPaintInfo::DrawViewOpt( const SwLinePortion 
,
 bDraw = true;
 }
 break;
-case POR_TAB:   if ( GetOpt().IsTab() ) bDraw = true; break;
-case POR_SOFTHYPH:  if ( GetOpt().IsSoftHyph() )bDraw = true; break;
-case POR_BLANK: if ( GetOpt().IsHardBlank())bDraw = true; break;
+case POR_TAB:
+if ( GetOpt().IsTab() ) bDraw = true;
+break;
+case POR_SOFTHYPH:
+if ( GetOpt().IsSoftHyph() )bDraw = true;
+break;
+case POR_BLANK:
+if ( GetOpt().IsHardBlank())bDraw = true;
+break;
 default:
 {
 OSL_ENSURE( false, "SwTextPaintInfo::DrawViewOpt: don't know 
how to draw this" );
diff --git a/sw/source/core/text/inftxt.hxx b/sw/source/core/text/inftxt.hxx
index e1f3666..d95dc82 100644
--- a/sw/source/core/text/inftxt.hxx
+++ b/sw/source/core/text/inftxt.hxx
@@ -254,8 +254,10 @@ public:
 
 inline const  SwViewOption () const { return *m_pOpt; }
 inline const OUString () const { return *m_pText; }
-inline sal_Unicode GetChar( const sal_Int32 nPos ) const
-{ if (m_pText && nPos < m_pText->getLength()) return (*m_pText)[ nPos ]; 
return 0; }
+inline sal_Unicode GetChar( const sal_Int32 nPos ) const {
+if (m_pText && nPos < m_pText->getLength()) return (*m_pText)[ nPos ];
+return 0;
+}
 
 sal_uInt16  GetTextHeight() const;
 
diff --git a/sw/source/core/text/redlnitr.cxx b/sw/source/core/text/redlnitr.cxx
index d0f798e..bc174da 100644
--- a/sw/source/core/text/redlnitr.cxx
+++ b/sw/source/core/text/redlnitr.cxx
@@ -104,9 +104,11 @@ void SwAttrIter::CtorInitAttrIter( SwTextNode& rTextNode, 

[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - sc/qa

2016-04-26 Thread Stephan Bergmann
 sc/qa/unit/filters-test.cxx |   11 +--
 1 file changed, 1 insertion(+), 10 deletions(-)

New commits:
commit 987772831a6e9dc4571b4f01a32aa9966c451bf0
Author: Stephan Bergmann 
Date:   Tue Jan 19 10:49:57 2016 +0100

-Werror=address (GCC 6)

"the compiler can assume that the address of ‘rDoc’ will always 
evaluate to
‘true’"

Change-Id: Ic5dc481b84efad679150d13002a360478474cb90
(cherry picked from commit 9e74ff76cdd92849def033f2f65dd5d771bb0267)
Signed-off-by: David Tardon 
Reviewed-on: https://gerrit.libreoffice.org/24414
Tested-by: Jenkins 

diff --git a/sc/qa/unit/filters-test.cxx b/sc/qa/unit/filters-test.cxx
index fac6c08..8cdce23 100644
--- a/sc/qa/unit/filters-test.cxx
+++ b/sc/qa/unit/filters-test.cxx
@@ -289,7 +289,6 @@ void ScFiltersTest::testContentLotus123()
 xDocSh->DoHardRecalc(true);
 
 ScDocument& rDoc = xDocSh->GetDocument();
-CPPUNIT_ASSERT();
 testContentImpl(rDoc, FORMAT_LOTUS123);
 xDocSh->DoClose();
 }
@@ -298,8 +297,7 @@ void ScFiltersTest::testContentDIF()
 {
 ScDocShellRef xDocSh = loadDoc("universal-content.", FORMAT_DIF);
 
-ScDocument& rDoc = xDocSh->GetDocument();
-CPPUNIT_ASSERT();
+xDocSh->GetDocument();
 xDocSh->DoClose();
 }
 
@@ -319,7 +317,6 @@ void ScFiltersTest::testContentXLSB()
 // CPPUNIT_ASSERT(xDocSh);
 //
 // ScDocument& rDoc = xDocSh->GetDocument();
-// CPPUNIT_ASSERT();
 // testContentImpl(pDoc, FORMAT_XLS_XML);
 // xDocSh->DoClose();
 // }
@@ -397,7 +394,6 @@ void ScFiltersTest::testSharedFormulaXLSX()
 {
 ScDocShellRef xDocSh = loadDoc("shared-formula/basic.", FORMAT_XLSX);
 ScDocument& rDoc = xDocSh->GetDocument();
-CPPUNIT_ASSERT();
 xDocSh->DoHardRecalc(true);
 // Check the results of formula cells in the shared formula range.
 for (SCROW i = 1; i <= 18; ++i)
@@ -472,7 +468,6 @@ void ScFiltersTest::testLegacyCellAnchoredRotatedShape()
 ScDocShellRef xDocSh = 
loadDoc("legacycellanchoredrotatedclippedshape.", FORMAT_ODS);
 
 ScDocument& rDoc = xDocSh->GetDocument();
-CPPUNIT_ASSERT();
 // ensure the imported legacy rotated shape is in the expected position
 Rectangle aRect( 6000, -2000, 8000, 4000 );
 // ensure the imported ( and converted ) anchor ( note we internally 
now store the anchor in
@@ -488,7 +483,6 @@ void ScFiltersTest::testLegacyCellAnchoredRotatedShape()
 // a core dump in editeng ( so moved to here )
 xDocSh = saveAndReload( &(*xDocSh), FORMAT_ODS);
 ScDocument& rDoc2 = xDocSh->GetDocument();
-CPPUNIT_ASSERT();
 impl_testLegacyCellAnchoredRotatedShape( rDoc2, aRect, aAnchor );
 
 xDocSh->DoClose();
@@ -500,7 +494,6 @@ void ScFiltersTest::testLegacyCellAnchoredRotatedShape()
 // are hidden
 ScDocShellRef xDocSh = 
loadDoc("legacycellanchoredrotatedhiddenshape.", FORMAT_ODS, true);
 ScDocument& rDoc = xDocSh->GetDocument();
-CPPUNIT_ASSERT();
 // ensure the imported legacy rotated shape is in the expected position
 // when a shape is fully hidden reloading seems to result is in some 
errors, usually
 // ( same but different error happens pre-patch ) - we should do 
better here, I regard it
@@ -528,7 +521,6 @@ void ScFiltersTest::testLegacyCellAnchoredRotatedShape()
 ScDocShellRef xDocSh = loadDoc("legacycellanchoredrotatedshape.", 
FORMAT_ODS);
 
 ScDocument& rDoc = xDocSh->GetDocument();
-CPPUNIT_ASSERT();
 // ensure the imported legacy rotated shape is in the expected position
 Rectangle aRect( 6000, 3000, 8000, 9000 );
 // ensure the imported (and converted) anchor (note we internally now 
store the anchor in
@@ -544,7 +536,6 @@ void ScFiltersTest::testLegacyCellAnchoredRotatedShape()
 // test save and reload
 xDocSh = saveAndReload( &(*xDocSh), FORMAT_ODS);
 ScDocument& rDoc2 = xDocSh->GetDocument();
-CPPUNIT_ASSERT();
 impl_testLegacyCellAnchoredRotatedShape( rDoc2, aRect, aAnchor );
 
 xDocSh->DoClose();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-0-6' - sd/source

2016-04-26 Thread Julien Nabet
 sd/source/ui/dlg/PhotoAlbumDialog.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 8dbca99ed148158924a5e4e29e43e87062f030b1
Author: Julien Nabet 
Date:   Sun Apr 24 00:50:53 2016 +0200

tdf#99450/tdf#99462: fix insert twice the same object in Photo album

For tdf#99450, see 
https://bugs.documentfoundation.org/show_bug.cgi?id=99450#c6 for full details

tdf#99462 is also a consequence of this double insert.
See https://bugs.documentfoundation.org/show_bug.cgi?id=99462#c2

Change-Id: I474495457088b93e0e86ea2e504f61c383ba059d
Reviewed-on: https://gerrit.libreoffice.org/24327
Reviewed-by: Julien Nabet 
Tested-by: Julien Nabet 
(cherry picked from commit 618e7622d08b20f6ea5f38144b61a187aced86af)
Reviewed-on: https://gerrit.libreoffice.org/24330
Reviewed-by: Michael Stahl 
Tested-by: Michael Stahl 
(cherry picked from commit 2aa8be5936cab3fa2a0d895b414cd0dc9dc3f319)
Reviewed-on: https://gerrit.libreoffice.org/24401
Reviewed-by: Markus Mohrhard 
Reviewed-by: David Tardon 
Tested-by: David Tardon 

diff --git a/sd/source/ui/dlg/PhotoAlbumDialog.cxx 
b/sd/source/ui/dlg/PhotoAlbumDialog.cxx
index d5dcd09..115a377 100644
--- a/sd/source/ui/dlg/PhotoAlbumDialog.cxx
+++ b/sd/source/ui/dlg/PhotoAlbumDialog.cxx
@@ -694,7 +694,6 @@ void SdPhotoAlbumDialog::createCaption(const awt::Size& 
aPageSize )
 aSet.Put( XFillColorItem( "", Color(COL_BLACK) ) );
 aSet.Put( XFillTransparenceItem( 20 ) );
 pSdrObj->SetMergedItemSetAndBroadcast(aSet);
-pSlide->InsertObject(pSdrObj);
 }
 
 Reference< graphic::XGraphic> SdPhotoAlbumDialog::createXGraphicFromUrl(const 
OUString& sUrl,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 99519] Impress Crashes When Animated GIF added to presentation

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99519

turboboost17  changed:

   What|Removed |Added

Version|unspecified |5.1.1.3 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 99519] New: Impress Crashes When Animated GIF added to presentation

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99519

Bug ID: 99519
   Summary: Impress Crashes When Animated GIF added to
presentation
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: turboboos...@hotmail.com

When any GIF larger than a few MB is added to a presentation the program
crashes.

This a new bug as of the last 2 years or so because it did not happen 2 summers
ago.  

I've updated the last few versions and it has not been fixed so far.

FYI

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

2016-04-26 Thread Vasily Melenchuk
 xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx |1 +
 xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx |1 +
 2 files changed, 2 insertions(+)

New commits:
commit f2528ce7eebfd0b9e873c6350e40f1cb7cb1d0a9
Author: Vasily Melenchuk 
Date:   Fri Apr 8 18:54:35 2016 +0100

tdf#99172 support for vertical align import/export property for text boxes

Change-Id: I1cf8d8d57a7245800e2b28b674301ebcb5470348
Reviewed-on: https://gerrit.libreoffice.org/23927
Tested-by: Jenkins 
Reviewed-by: Samuel Mehrbrodt 
(cherry picked from commit bef802a7bf7acb8331a1d776db9bbcc3bf16220b)
Reviewed-on: https://gerrit.libreoffice.org/23935
Reviewed-by: Michael Stahl 
Reviewed-by: Christian Lohmaier 

diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx 
b/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx
index 10d03ce..31a5063 100644
--- a/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx
+++ b/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx
@@ -556,6 +556,7 @@ void ElementDescriptor::readEditModel( StyleBag * 
all_styles )
 readBoolAttr( "Tabstop", XMLNS_DIALOGS_PREFIX ":tabstop" );
 readBoolAttr( "HideInactiveSelection", XMLNS_DIALOGS_PREFIX 
":hide-inactive-selection" );
 readAlignAttr( "Align", XMLNS_DIALOGS_PREFIX ":align" );
+readVerticalAlignAttr( "VerticalAlign", XMLNS_DIALOGS_PREFIX ":valign" );
 readBoolAttr( "HardLineBreaks", XMLNS_DIALOGS_PREFIX ":hard-linebreaks" );
 readBoolAttr( "HScroll", XMLNS_DIALOGS_PREFIX ":hscroll" );
 readBoolAttr( "VScroll", XMLNS_DIALOGS_PREFIX ":vscroll" );
diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx 
b/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx
index 315c08f..b233e29 100644
--- a/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx
+++ b/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx
@@ -1088,6 +1088,7 @@ void TextFieldElement::endElement()
 ctx.importDefaults( _nBasePosX, _nBasePosY, _xAttributes );
 ctx.importBooleanProperty("Tabstop", "tabstop", _xAttributes );
 ctx.importAlignProperty( "Align", "align", _xAttributes );
+ctx.importVerticalAlignProperty( "VerticalAlign", "valign", _xAttributes );
 ctx.importBooleanProperty( "HardLineBreaks", "hard-linebreaks", 
_xAttributes );
 ctx.importBooleanProperty( "HScroll", "hscroll" ,_xAttributes );
 ctx.importBooleanProperty( "VScroll", "vscroll", _xAttributes );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - basic/source

2016-04-26 Thread Stephan Bergmann
 basic/source/sbx/sbxvalue.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 876e4b77ffdc7a42250b2953bfa63346f74407d4
Author: Stephan Bergmann 
Date:   Wed Jan 13 17:20:28 2016 +0100

-Werror=misleading-indentation (GCC 6)

Change-Id: Ia633b859df94ede325469ec8a20e7383d2a178d4
(cherry picked from commit a20f9388f1487c68d707084e0213f17d899f531c)
Signed-off-by: David Tardon 
Reviewed-on: https://gerrit.libreoffice.org/24407
Tested-by: Jenkins 

diff --git a/basic/source/sbx/sbxvalue.cxx b/basic/source/sbx/sbxvalue.cxx
index dc1a144..d4b6c81 100644
--- a/basic/source/sbx/sbxvalue.cxx
+++ b/basic/source/sbx/sbxvalue.cxx
@@ -1198,7 +1198,8 @@ Lbl_OpIsDouble:
 aL.nDouble *= aR.nDouble; break;
 case SbxDIV:
 if( !aR.nDouble ) SetError( ERRCODE_SBX_ZERODIV );
-else aL.nDouble /= aR.nDouble; break;
+else aL.nDouble /= aR.nDouble;
+break;
 case SbxPLUS:
 aL.nDouble += aR.nDouble; break;
 case SbxMINUS:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - framework/source

2016-04-26 Thread Stephan Bergmann
 framework/source/services/tabwindowservice.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7317b1414e3b610513e3a50bd7bcdd419325961e
Author: Stephan Bergmann 
Date:   Wed Jan 13 17:24:26 2016 +0100

-Werror=attributes (GCC 6)

Change-Id: I4450caf9411fcfbe979a41a67a38e7238ece0be6
(cherry picked from commit facfb35417da684eefe0b51e8f7c6824478a8717)
Signed-off-by: David Tardon 
Reviewed-on: https://gerrit.libreoffice.org/24408
Tested-by: Jenkins 

diff --git a/framework/source/services/tabwindowservice.cxx 
b/framework/source/services/tabwindowservice.cxx
index dde0162..666bdfc 100644
--- a/framework/source/services/tabwindowservice.cxx
+++ b/framework/source/services/tabwindowservice.cxx
@@ -145,7 +145,7 @@ private:
 virtual css::uno::Any SAL_CALL impl_getPropertyValue(const OUString& 
sProperty,
sal_Int32   
 nHandle  ) override;
 
-DECL_DLLPRIVATE_LINK_TYPED( EventListener, VclWindowEvent&, void );
+DECL_LINK_TYPED( EventListener, VclWindowEvent&, void );
 
 void impl_checkTabIndex (::sal_Int32 nID) throw 
(css::lang::IndexOutOfBoundsException);
 TTabPageInfoHash::iterator impl_getTabPageInfo(::sal_Int32 nID) throw 
(css::lang::IndexOutOfBoundsException);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - xmloff/source

2016-04-26 Thread Stephan Bergmann
 xmloff/source/core/xmlmultiimagehelper.cxx |5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

New commits:
commit e153df58650cc7eb7a87de03d7228dbbaffdfcfb
Author: Stephan Bergmann 
Date:   Wed Jan 13 17:29:51 2016 +0100

-Werror=address

the original looks odd, but the code was like that ever since it got 
introduced
with 44cfc7cb6533d827fd2d6e586d92c61d7d7f7a70 "re-base on ALv2 code. 
Includes
(at least) relevant parts of:"

Change-Id: I327c5a53a2634aca1b36367ee09c068ac610d3f4
(cherry picked from commit 09f1bd85d432d130cd54d329d01a020728757c2e)
Signed-off-by: David Tardon 
Reviewed-on: https://gerrit.libreoffice.org/24406
Tested-by: Jenkins 

diff --git a/xmloff/source/core/xmlmultiimagehelper.cxx 
b/xmloff/source/core/xmlmultiimagehelper.cxx
index 9a6711f..e7eeb62 100644
--- a/xmloff/source/core/xmlmultiimagehelper.cxx
+++ b/xmloff/source/core/xmlmultiimagehelper.cxx
@@ -136,10 +136,7 @@ SvXMLImportContextRef 
MultiImageImportHelper::solveMultipleImages()
 
 void MultiImageImportHelper::addContent(const SvXMLImportContext& 
rSvXMLImportContext)
 {
-if(dynamic_cast< const SvXMLImportContext* >())
-{
-maImplContextVector.push_back(SvXMLImportContextRef(const_cast< 
SvXMLImportContext* >()));
-}
+maImplContextVector.push_back(SvXMLImportContextRef(const_cast< 
SvXMLImportContext* >()));
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-04-26 Thread Stephan Bergmann
 connectivity/source/parse/sqlnode.cxx |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit eadc1f93747f493278affc42f361f99f079a2fbf
Author: Stephan Bergmann 
Date:   Wed Jan 13 17:20:52 2016 +0100

-Werror=misleading-indentation (GCC 6)

Change-Id: Ide514da5b4413974e50beeb4f41881294475303c
(cherry picked from commit 39d6c6256f80a5b5c548f5e68849a1ef7140e32a)
Signed-off-by: David Tardon 
Reviewed-on: https://gerrit.libreoffice.org/24409
Tested-by: Jenkins 

diff --git a/connectivity/source/parse/sqlnode.cxx 
b/connectivity/source/parse/sqlnode.cxx
index 8111750..7f7fdeb 100644
--- a/connectivity/source/parse/sqlnode.cxx
+++ b/connectivity/source/parse/sqlnode.cxx
@@ -2450,7 +2450,8 @@ void OSQLParseNode::parseLeaf(OUStringBuffer& rString, 
const SQLParseNodeParamet
 if  (   
rParam.aMetaData.getCatalogSeparator().isEmpty()
 || rString[rString.getLength() - 1] != 
rParam.aMetaData.getCatalogSeparator().toChar()
 )
-rString.append(" "); break;
+rString.append(" ");
+break;
 }
 }
 if (rParam.bQuote)
@@ -2506,7 +2507,8 @@ void OSQLParseNode::parseLeaf(OUStringBuffer& rString, 
const SQLParseNodeParamet
 if  (   
rParam.aMetaData.getCatalogSeparator().isEmpty()
 ||  rString[rString.getLength() - 1] != 
rParam.aMetaData.getCatalogSeparator().toChar()
 )
-rString.append(" "); break;
+rString.append(" ");
+break;
 }
 }
 rString.append(m_aNodeValue);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - sc/source

2016-04-26 Thread Stephan Bergmann
 sc/source/ui/app/scmod.cxx |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 52bfe2cffb71ee83bab4b56d3f950721f7104ca6
Author: Stephan Bergmann 
Date:   Tue Jan 19 10:53:27 2016 +0100

-Werror=address (GCC 6)

"the compiler can assume that the address of ‘rItem’ will never be NULL"

Change-Id: I90a8a3074c2dab427b4bc6345ec4a824eb2ac249
(cherry picked from commit 8404dc3c76babbc9d0a165f4046a6e5e1be35fe5)
Signed-off-by: David Tardon 
Reviewed-on: https://gerrit.libreoffice.org/24411
Tested-by: Jenkins 

diff --git a/sc/source/ui/app/scmod.cxx b/sc/source/ui/app/scmod.cxx
index 8a376e7..9bdaacb 100644
--- a/sc/source/ui/app/scmod.cxx
+++ b/sc/source/ui/app/scmod.cxx
@@ -471,8 +471,9 @@ void ScModule::Execute( SfxRequest& rReq )
 case SID_PSZ_FUNCTION:
 if (pReqArgs)
 {
-const SfxUInt16Item& rItem = static_cast(pReqArgs->Get(SID_PSZ_FUNCTION));
-OSL_ENSURE(dynamic_cast( ) !=  
nullptr,"wrong Parameter");
+auto const & p = pReqArgs->Get(SID_PSZ_FUNCTION);
+OSL_ENSURE(dynamic_cast() !=  
nullptr,"wrong Parameter");
+const SfxUInt16Item& rItem = static_cast(p);
 
 ScAppOptions aNewOpts( GetAppOptions() );
 aNewOpts.SetStatusFunc( rItem.GetValue() );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - sd/source

2016-04-26 Thread Stephan Bergmann
 sd/source/ui/view/sdview3.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d0156986b0a4a3dc11e16a71637299d031cb30b5
Author: Stephan Bergmann 
Date:   Wed Feb 24 17:39:34 2016 +0100

-Werror=nonnull-compare

...where "this" must be (derived from) View, in View::InsertData.

Before 89d39bc100aabf5dccbe77c0b5c0c85736e85b39 "tdf#94559: 4th step to 
remove
rtti.hxx," that was

  ISA( View )

which had originally been introduced as

  ISA( SdView )

into SdView::InsertData with 82453a8c6c84a22b6f940395d9b4c45516197ed3 
"#80266#:
added D functionality for slide view" in 2001 (and then, both in concert,
SdView::InsertData changed to View::InsertData and the ISA( SdView ) 
changed to
ISA( View ) with ee8db8ade5ac9205430eab6f1b701f683ea99eb1 "INTEGRATION: CWS
impress1: #111996# Transition to stacked sub-shells. Introduction of 
namespace
sd."

So just assume it was always only a harmless glitch that is good to go.

Change-Id: I5a99e401feb2a4c4455469b58c803ccab06694f5
(cherry picked from commit a3a7a70811123a9d7c812952496596d7be19135b)
Signed-off-by: David Tardon 
Reviewed-on: https://gerrit.libreoffice.org/24413
Tested-by: Jenkins 

diff --git a/sd/source/ui/view/sdview3.cxx b/sd/source/ui/view/sdview3.cxx
index 2dc792a..68e5ca4 100644
--- a/sd/source/ui/view/sdview3.cxx
+++ b/sd/source/ui/view/sdview3.cxx
@@ -360,7 +360,7 @@ bool View::InsertData( const TransferableDataHelper& 
rDataHelper,
 {
 const View* pSourceView = pOwnData->GetView();
 
-if( pOwnData->GetDocShell() && pOwnData->IsPageTransferable() && 
dynamic_cast< View *>( this) !=  nullptr )
+if( pOwnData->GetDocShell() && pOwnData->IsPageTransferable() )
 {
 mpClipboard->HandlePageDrop (*pOwnData);
 bReturn = true;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - include/svx svx/source

2016-04-26 Thread Stephan Bergmann
 include/svx/svdpntv.hxx|6 +-
 svx/source/svdraw/svdoedge.cxx |6 --
 2 files changed, 9 insertions(+), 3 deletions(-)

New commits:
commit 370c0677cae9bd1f640d9cc1f2fa442fd7ed3138
Author: Stephan Bergmann 
Date:   Wed Jan 13 17:21:35 2016 +0100

-Werror=misleading-indentation (GCC 6)

Change-Id: I83e38c017600946e4055a5b8ada87a0f64e83222
(cherry picked from commit 84800b5e65e03c744b01225a1d44f8d54481b5f4)
Signed-off-by: David Tardon 
Reviewed-on: https://gerrit.libreoffice.org/24410
Tested-by: Jenkins 

diff --git a/include/svx/svdpntv.hxx b/include/svx/svdpntv.hxx
index 9f94e60..366ead6 100644
--- a/include/svx/svdpntv.hxx
+++ b/include/svx/svdpntv.hxx
@@ -416,7 +416,11 @@ public:
 void setHideFormControl(bool bNew) { if(bNew != (bool)mbHideFormControl) 
mbHideFormControl = bNew; }
 
 void SetGridCoarse(const Size& rSiz) { maGridBig=rSiz; }
-void SetGridFine(const Size& rSiz) { maGridFin=rSiz; if 
(maGridFin.Height()==0) maGridFin.Height()=maGridFin.Width(); if 
(mbGridVisible) InvalidateAllWin(); }
+void SetGridFine(const Size& rSiz) {
+maGridFin=rSiz;
+if (maGridFin.Height()==0) maGridFin.Height()=maGridFin.Width();
+if (mbGridVisible) InvalidateAllWin();
+}
 const Size& GetGridCoarse() const { return maGridBig; }
 const Size& GetGridFine() const { return maGridFin; }
 
diff --git a/svx/source/svdraw/svdoedge.cxx b/svx/source/svdraw/svdoedge.cxx
index 553ec70..8e7749a 100644
--- a/svx/source/svdraw/svdoedge.cxx
+++ b/svx/source/svdraw/svdoedge.cxx
@@ -1345,9 +1345,11 @@ XPolygon SdrEdgeObj::ImpCalcEdgeTrack(const Point& rPt1, 
long nAngle1, const Rec
 Point aP1(aXP1[1]); aP1-=aXP1[0];
 Point aP2(aXP1[nPointCount-2]); aP2-=aXP1[nPointCount-1];
 long nAng1=0; if (aP1.X()<0) nAng1=18000; if (aP1.Y()>0) 
nAng1=27000;
-if (aP1.Y()<0) nAng1=9000; if (aP1.X()!=0 && aP1.Y()!=0) nAng1=1; 
// slant?!
+if (aP1.Y()<0) nAng1=9000;
+if (aP1.X()!=0 && aP1.Y()!=0) nAng1=1; // slant?!
 long nAng2=0; if (aP2.X()<0) nAng2=18000; if (aP2.Y()>0) 
nAng2=27000;
-if (aP2.Y()<0) nAng2=9000; if (aP2.X()!=0 && aP2.Y()!=0) nAng2=1; 
// slant?!
+if (aP2.Y()<0) nAng2=9000;
+if (aP2.X()!=0 && aP2.Y()!=0) nAng2=1; // slant?!
 if (nAng1!=nAngle1) nIntersections++;
 if (nAng2!=nAngle2) nIntersections++;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 99513] Side-by-side view options not available in Draw (and Writer)

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99513

V Stuart Foote  changed:

   What|Removed |Added

   Hardware|x86-64 (AMD64)  |All
 OS|Linux (All) |All

-- 
You are receiving this mail because:
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 99493] Default shortcut for 'Track Changes' > 'Record Changes' (Ctrl+Shift+E) is not shown in 'Tools' > 'Customize...' and thus not deletable.

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99493

Julien Nabet  changed:

   What|Removed |Added

Summary|Defaul shortcut for 'Track  |Default shortcut for 'Track
   |Changes' > 'Record Changes' |Changes' > 'Record Changes'
   |(Ctrl+Shift+E) is not shown |(Ctrl+Shift+E) is not shown
   |in 'Tools' > 'Customize...' |in 'Tools' > 'Customize...'
   |and thus not deletable. |and thus not deletable.

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


  1   2   3   4   >