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

2015-12-28 Thread Henry Castro
 loolwsd/LOOLSession.cpp  |3 ++-
 loolwsd/LOOLSession.hpp  |3 +++
 loolwsd/MasterProcessSession.cpp |4 
 3 files changed, 9 insertions(+), 1 deletion(-)

New commits:
commit 7fc04b6e71a3666a059d3db85f655d515d49bf56
Author: Henry Castro 
Date:   Mon Dec 28 17:05:01 2015 -0400

loolwsd: stop dispatch child when closed websocket prison

diff --git a/loolwsd/LOOLSession.cpp b/loolwsd/LOOLSession.cpp
index 7538931..52bb451 100644
--- a/loolwsd/LOOLSession.cpp
+++ b/loolwsd/LOOLSession.cpp
@@ -89,7 +89,8 @@ LOOLSession::LOOLSession(const std::string& id, const Kind 
kind,
 _kindString(kind == Kind::ToClient ? "ToClient" :
 kind == Kind::ToMaster ? "ToMaster" : "ToPrisoner"),
 _ws(ws),
-_docURL("")
+_docURL(""),
+_bShutdown(false)
 {
 setId(id);
 }
diff --git a/loolwsd/LOOLSession.hpp b/loolwsd/LOOLSession.hpp
index 85221ed..22a308f 100644
--- a/loolwsd/LOOLSession.hpp
+++ b/loolwsd/LOOLSession.hpp
@@ -97,6 +97,9 @@ protected:
 /// Document options: a JSON string, containing options (rendering, also 
possibly load in the future).
 std::string _docOptions;
 
+// Flag to stop dispatch chid messages when websocket is shutting down
+bool _bShutdown;
+
 private:
 
 virtual bool _handleInput(const char *buffer, int length) = 0;
diff --git a/loolwsd/MasterProcessSession.cpp b/loolwsd/MasterProcessSession.cpp
index 5f00812..5537ca6 100644
--- a/loolwsd/MasterProcessSession.cpp
+++ b/loolwsd/MasterProcessSession.cpp
@@ -72,6 +72,7 @@ MasterProcessSession::~MasterProcessSession()
 else
 if (_kind == Kind::ToPrisoner && peer)
 {
+peer->_bShutdown = true;
 Util::shutdownWebSocket(*(peer->_ws));
 }
 }
@@ -559,6 +560,9 @@ void MasterProcessSession::dispatchChild()
 short nRequest = 3;
 bool  bFound = false;
 
+if (_bShutdown)
+return;
+
 // Wait until the child has connected with Master.
 std::shared_ptr childSession;
 std::unique_lock lock(_availableChildSessionMutex);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96245] Frames are deleted from document that doesn't contain the draw:name property in draw:frame elements

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96245

Iandol  changed:

   What|Removed |Added

Summary|Text Frames are removed |Frames are deleted from
   |from document that doesn't  |document that doesn't
   |contain the draw:name   |contain the draw:name
   |property in draw:frame  |property in draw:frame
   |elements|elements

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


[Libreoffice-commits] online.git: loolwsd/LOOLBroker.cpp

2015-12-28 Thread Henry Castro
 loolwsd/LOOLBroker.cpp |   11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

New commits:
commit 12771ec02d60ca126c8ae3e2e1d2e3babaf3232b
Author: Henry Castro 
Date:   Mon Dec 28 17:51:38 2015 -0400

loolwsd: remove unnecessary local buffer

diff --git a/loolwsd/LOOLBroker.cpp b/loolwsd/LOOLBroker.cpp
index 7870116..4ce6bdf 100644
--- a/loolwsd/LOOLBroker.cpp
+++ b/loolwsd/LOOLBroker.cpp
@@ -402,7 +402,6 @@ public:
 void run() override
 {
 std::string aMessage;
-char  aBuffer[1024*2];
 char* pStart;
 char* pEnd;
 
@@ -413,8 +412,8 @@ public:
 aPoll.events = POLLIN;
 aPoll.revents = 0;
 
-pStart = aBuffer;
-pEnd   = aBuffer;
+pStart = _aBuffer;
+pEnd   = _aBuffer;
 
 static const std::string thread_name = "broker_pipe_reader";
 #ifdef __linux
@@ -437,15 +436,15 @@ public:
 else
 if (aPoll.revents & POLLIN)
 {
-nBytes = Util::readFIFO(readerBroker, aBuffer, 
sizeof(aBuffer));
+nBytes = Util::readFIFO(readerBroker, _aBuffer, 
sizeof(_aBuffer));
 if (nBytes < 0)
 {
 pStart = pEnd = nullptr;
 Log::error("Error reading message from pipe [" + 
FIFO_FILE + "].");
 continue;
 }
-pStart = aBuffer;
-pEnd   = aBuffer + nBytes;
+pStart = _aBuffer;
+pEnd   = _aBuffer + nBytes;
 }
 else
 if (aPoll.revents & (POLLERR | POLLHUP))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: loolwsd/LOOLBroker.cpp

2015-12-28 Thread Henry Castro
 loolwsd/LOOLBroker.cpp |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

New commits:
commit d185f738ee06376bb914f8dbca2de6a9160819e4
Author: Henry Castro 
Date:   Mon Dec 28 18:24:59 2015 -0400

loolwsd: revert, remove unnecessary local buffer

diff --git a/loolwsd/LOOLBroker.cpp b/loolwsd/LOOLBroker.cpp
index 4ce6bdf..836ef1d 100644
--- a/loolwsd/LOOLBroker.cpp
+++ b/loolwsd/LOOLBroker.cpp
@@ -402,6 +402,7 @@ public:
 void run() override
 {
 std::string aMessage;
+char  aBuffer[1024];
 char* pStart;
 char* pEnd;
 
@@ -412,8 +413,8 @@ public:
 aPoll.events = POLLIN;
 aPoll.revents = 0;
 
-pStart = _aBuffer;
-pEnd   = _aBuffer;
+pStart = aBuffer;
+pEnd   = aBuffer;
 
 static const std::string thread_name = "broker_pipe_reader";
 #ifdef __linux
@@ -436,15 +437,15 @@ public:
 else
 if (aPoll.revents & POLLIN)
 {
-nBytes = Util::readFIFO(readerBroker, _aBuffer, 
sizeof(_aBuffer));
+nBytes = Util::readFIFO(readerBroker, aBuffer, 
sizeof(aBuffer));
 if (nBytes < 0)
 {
 pStart = pEnd = nullptr;
 Log::error("Error reading message from pipe [" + 
FIFO_FILE + "].");
 continue;
 }
-pStart = _aBuffer;
-pEnd   = _aBuffer + nBytes;
+pStart = aBuffer;
+pEnd   = aBuffer + nBytes;
 }
 else
 if (aPoll.revents & (POLLERR | POLLHUP))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91845] Printing and print preview will not work when adding sheet

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91845

--- Comment #5 from Maxim Monastirsky  ---
(In reply to maxx.scandal from comment #4)
> Still having the same problem. The version i am using is the latest 4.4.
4.4 isn't the latest version. Please try with 5.0.x

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


virus detection with GData

2015-12-28 Thread Regina Henschel

Hi all,

I get a virus detection from scanner GData on the files
crash-1.tiff and hang-7.tiff in filter\qa\cppunit\data\tiff\fail, both 
Exploit.CVE-2015-5097-Gen


and a suspected virus on the file hang-3.wmf in 
vcl\qa\cppunit\graphicfilter\data\wmf\fail\ with Exploit.Win32.MS04-032.Gen


Kind regards
Regina
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: virus detection with GData

2015-12-28 Thread Markus Mohrhard
Hey,

On Mon, Dec 28, 2015 at 9:57 PM, Regina Henschel 
wrote:

> Hi all,
>
> I get a virus detection from scanner GData on the files
> crash-1.tiff and hang-7.tiff in filter\qa\cppunit\data\tiff\fail, both
> Exploit.CVE-2015-5097-Gen
>
> and a suspected virus on the file hang-3.wmf in
> vcl\qa\cppunit\graphicfilter\data\wmf\fail\ with Exploit.Win32.MS04-032.Gen
>
>

you can safely ignore these reports. Our */qa directories contain a number
of files that are detected by various virus scanners. The files are there
to prevent regressions with security issues.

If you want to know why they were added you can easily have a look with
something like git log -- filter/qa/cppunit/data/tiff/fail/hang-7.tiff
which would show you that Caolan has added that file to check for a problem
with some types of files. I think most of the new crash* and hang* files
have been added as a result of the AFL testing.

Regards,
Markus
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 96223] SearchDescriptor Properties cannot be set in 5.1

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96223

--- Comment #7 from Iandol  ---
This is fixed for me, thank you!

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


[Libreoffice-bugs] [Bug 94655] Emoji not Visible in Exported PDF

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94655

--- Comment #8 from Iandol  ---
Still not working in Version: 5.2.0.0.alpha0+
Build ID: 4c4f096a81e1643646f72cab17fb94610a346961
CPU Threads: 8; OS Version: -; UI Render: GL; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2015-12-28_11:01:25
Locale: en-US (en.UTF-8)

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


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

2015-12-28 Thread Caolán McNamara
 sw/source/filter/xml/xmltexti.cxx |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 6fc42d053d2e3aedecc3d18e1cdaf1fa3c3da6b3
Author: Caolán McNamara 
Date:   Mon Dec 28 15:54:12 2015 +

crashtesting: assert on export of fdo45349-3.fodt to doc

set a DefaultParentBaseURL fallback from createAndInsertOLEObject

Change-Id: Ibc6e800be66f966533a8304ddf72eefa2b39fb8a

diff --git a/sw/source/filter/xml/xmltexti.cxx 
b/sw/source/filter/xml/xmltexti.cxx
index a57a910..69b5752 100644
--- a/sw/source/filter/xml/xmltexti.cxx
+++ b/sw/source/filter/xml/xmltexti.cxx
@@ -276,10 +276,12 @@ uno::Reference< XPropertySet > 
SwXMLTextImportHelper::createAndInsertOLEObject(
 OUString aName("DummyName");
 uno::Sequence < sal_Int8 > aClass( 
aClassName.GetByteSequence() );
 uno::Reference < embed::XEmbeddedObjectCreator > xFactory = 
embed::EmbeddedObjectCreator::create( 
::comphelper::getProcessComponentContext() );
+uno::Sequence aObjArgs(1);
+aObjArgs[0].Name = "DefaultParentBaseURL";
+aObjArgs[0].Value <<= GetXMLImport().GetBaseURL();
 uno::Reference < embed::XEmbeddedObject > xObj =
 uno::Reference < embed::XEmbeddedObject >( 
xFactory->createInstanceInitNew(
-aClass, OUString(), xStorage, aName,
-uno::Sequence < beans::PropertyValue >() ), uno::UNO_QUERY 
);
+aClass, OUString(), xStorage, aName, aObjArgs), 
uno::UNO_QUERY );
 if ( xObj.is() )
 {
 //TODO/LATER: is it enough to only set the VisAreaSize?
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96223] SearchDescriptor Properties cannot be set in 5.1

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96223

raal  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

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


[Libreoffice-bugs] [Bug 96223] SearchDescriptor Properties cannot be set in 5.1

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96223

raal  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

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


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

2015-12-28 Thread Maxim Monastirsky
 framework/source/uielement/popuptoolbarcontroller.cxx |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

New commits:
commit e413549dc8b5669a806eeabc30c7d6f92723a882
Author: Maxim Monastirsky 
Date:   Mon Dec 28 22:51:23 2015 +0200

PopupMenuToolbarController: Update the menu before opening

Just like we do for the menubar, we must tell the popup menu
controller to update itself.

Change-Id: Ib914b22b909f9e5c1c4ebc8af58496d73e867416

diff --git a/framework/source/uielement/popuptoolbarcontroller.cxx 
b/framework/source/uielement/popuptoolbarcontroller.cxx
index 43b6882..c076652 100644
--- a/framework/source/uielement/popuptoolbarcontroller.cxx
+++ b/framework/source/uielement/popuptoolbarcontroller.cxx
@@ -220,7 +220,11 @@ void 
PopupMenuToolbarController::createPopupMenuController()
 if( !m_bHasController )
 return;
 
-if ( !m_xPopupMenuController.is() )
+if ( m_xPopupMenuController.is() )
+{
+m_xPopupMenuController->updatePopupMenu();
+}
+else
 {
 css::uno::Sequence< css::uno::Any > aArgs( 3 );
 aArgs[0] <<= comphelper::makePropertyValue( "Frame", m_xFrame );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91845] Printing and print preview will not work when adding sheet

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91845

maxx.scan...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #4 from maxx.scan...@gmail.com ---
Still having the same problem. The version i am using is the latest 4.4. The
Document prints fine if i do not add another sheet to the current order.

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


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

2015-12-28 Thread Henry Castro
 loolwsd/ChildProcessSession.cpp |2 --
 1 file changed, 2 deletions(-)

New commits:
commit ceac0a24da3c889b5dd762c0cbfab95b4a257adc
Author: Henry Castro 
Date:   Mon Dec 28 18:37:31 2015 -0400

loolwsd: avoid double child socket shutdown

diff --git a/loolwsd/ChildProcessSession.cpp b/loolwsd/ChildProcessSession.cpp
index 06b997c..2fce67a 100644
--- a/loolwsd/ChildProcessSession.cpp
+++ b/loolwsd/ChildProcessSession.cpp
@@ -68,8 +68,6 @@ ChildProcessSession::~ChildProcessSession()
 
 if (LIBREOFFICEKIT_HAS(_loKit, registerCallback))
 _loKit->pClass->registerCallback(_loKit, 0, 0);
-
-Util::shutdownWebSocket(*_ws);
 }
 
 bool ChildProcessSession::_handleInput(const char *buffer, int length)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 92779] Converting to entire column is inconsistent (sometimes works sometimes produces #REF!)

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92779

Óvári  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #24 from Óvári  ---
Danke schön Eike Rathke! (Thank you)

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


[Libreoffice-bugs] [Bug 96731] Copy/Paste inserts extra spaces

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96731

Alex Thurgood  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Alex Thurgood  ---
Confirming - this has been the case for a while

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


[Libreoffice-bugs] [Bug 96739] Ctrl+left/right shift doesn't change text direction

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96739

A (Andy)  changed:

   What|Removed |Added

 CC||stgohi-lob...@yahoo.de

--- Comment #2 from A (Andy)  ---
Reproducible, not working with LO 5.1.0.1, Win 8.1

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


[Bug 39944] ACCESSIBILITY: Implement new ATK Roles

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39944

--- Comment #27 from Jacobo Aragunde Pérez  ---
Cherry-picked for 5.1, reviews welcome:

  https://gerrit.libreoffice.org/#/c/20985/

When this is merged, we can consider this old task finally done :)

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


BH for LibreOffice Android Viewer

2015-12-28 Thread Gülşah Köse
Hi devs,

LibreOffice Turkish contributors are going to come together for bughunting
for LibreOffice android viewer on 29th Dec at 13.00 UTC.

Regards


-- 
*Gülşah Köse*
*about.me *
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 96720] FILESAVE: .odt report produces different ODF Validator Result than a copy saved from Writer (probably resulting in slow file load)

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96720

--- Comment #4 from rob...@familiegrosskopf.de ---
(In reply to Sparrowbe from comment #3)
> Beluga and Robert, thank you for your feedback. But have you observed the
> "Page 1 of x" counter in the status bar? 
> On all my machines (Windows 7/8.1 with Version: 5.0.4.2 Locale: pl-PL
> (pl_PL), either 32 and 64bit) the file generated by Base opens quickly, but
> is stuck on "Page 1 of 231" for a long time and any GUI actions like
> vertical scrolling or opening menus are greatly delayed, with "(Not
> Responding)" periodically added to the window title during this period.
> On the other hand, the "Copy" document has all 640 pages loaded at once and
> is responsive immediately.

You are right. Didn't notice 1 of 231 and scrolling-problems to the end of the
document. The saved and reopened file shows 1 of 640 instead - and no
scrolling-problem at all.

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


[Libreoffice-bugs] [Bug 96636] Text "Removing files" during installation is confusing and sometimes frightening users

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96636

A (Andy)  changed:

   What|Removed |Added

 CC||stgohi-lob...@yahoo.de

--- Comment #4 from A (Andy)  ---
(In reply to Adolfo Jayme from comment #2)
> >  -  "Removing files from previous installation"
> 
> +1, I like this one.
> 
> Feel free to propose a patch, it’s just a trivial string change. Use
> opengrok.libreoffice.org to find it.

I would agree, this sounds good

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


[Libreoffice-bugs] [Bug 96725] CONFIGURATION: "Open With > LibreOffice" missing for AppleWorks (.cwk) files on Mac

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96725

Beluga  changed:

   What|Removed |Added

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

--- Comment #6 from Beluga  ---
4.3.x is end of life, so let's close this as WFM.

Markus: if you can try with a newer Mac and LibreOffice 5 and still see the
problem, you can set this back to UNCONFIRMED.

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


[Libreoffice-bugs] [Bug 96720] FILESAVE: .odt report produces different ODF Validator Result than a copy saved from Writer (probably resulting in slow file load)

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96720

--- Comment #3 from Sparrowbe  ---
Beluga and Robert, thank you for your feedback. But have you observed the "Page
1 of x" counter in the status bar? 
On all my machines (Windows 7/8.1 with Version: 5.0.4.2 Locale: pl-PL (pl_PL),
either 32 and 64bit) the file generated by Base opens quickly, but is stuck on
"Page 1 of 231" for a long time and any GUI actions like vertical scrolling or
opening menus are greatly delayed, with "(Not Responding)" periodically added
to the window title during this period.
On the other hand, the "Copy" document has all 640 pages loaded at once and is
responsive immediately.

What is more, loading the "640_records_from_Base.odt" for the second time
causes my Writer to eventually freeze permanently (>15 minutes), with no
activity visible in the Task Manager.

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


[Libreoffice-bugs] [Bug 63319] EDITING: copy paste text from gedit editor

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63319

--- Comment #12 from Alex Thurgood  ---
On OSX, the problem occurs when one copy/pastes text from within a Writer
document.

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


[Libreoffice-bugs] [Bug 96725] CONFIGURATION: "Open With > LibreOffice" missing for AppleWorks (.cwk) files on Mac

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96725

--- Comment #4 from Alex Thurgood  ---
Hmm, this works for me on

Version: 5.0.3.2
Build ID: e5f16313668ac592c1bfb310f4390624e3dbfb75
Locale : fr-FR (fr.UTF-8)

OSX 10.11.2

No repro

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


[Libreoffice-bugs] [Bug 96720] FILESAVE: .odt report produces different ODF Validator Result than a copy saved from Writer (probably resulting in slow file load)

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96720

--- Comment #2 from rob...@familiegrosskopf.de ---
(In reply to Beluga from comment #1)
> Reproduced the validation errors, but NOT the slowness.
> 
> I do observe a difference in the behavior of the loading progress bar: .odt
> coming from Base makes it do several quick completions while the
> save-as-copy .odt gives one slower progress bar completion.

Same here: Only a little bit slower (8,0 seconds to 7,15 seconds) but a lot of
flickering in the progress bar while loading the Base *.odt. Same while
executing the report in Base.

My system: OpenSUSE 42.1 Leap 64bit rpm Linux

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


[Libreoffice-bugs] [Bug 94344] missing lines when importing this svg image

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94344

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||filter:svgInsert,
   ||filter:svgOpen

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


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

2015-12-28 Thread pasqual milvaques
 vcl/unx/gtk/a11y/atkwrapper.cxx |   18 +++---
 1 file changed, 7 insertions(+), 11 deletions(-)

New commits:
commit 4c4f096a81e1643646f72cab17fb94610a346961
Author: pasqual milvaques 
Date:   Wed Dec 2 18:24:23 2015 +0100

tdf#39944: Fix mapping additional a11y roles to ATK

Fix more roles according to information found in 
https://bugzilla.gnome.org/show_bug.cgi?id=732702

Change-Id: Ibe260784f12b1cf1f6baff490f400526d1c796d2
Reviewed-on: https://gerrit.libreoffice.org/20369
Tested-by: Jenkins 
Reviewed-by: Jacobo Aragunde Pérez 

diff --git a/vcl/unx/gtk/a11y/atkwrapper.cxx b/vcl/unx/gtk/a11y/atkwrapper.cxx
index 0e12b0e..c71aa77 100644
--- a/vcl/unx/gtk/a11y/atkwrapper.cxx
+++ b/vcl/unx/gtk/a11y/atkwrapper.cxx
@@ -214,7 +214,7 @@ static AtkRole mapToAtkRole( sal_Int16 nRole )
 ATK_ROLE_FILLER,
 ATK_ROLE_FONT_CHOOSER,
 ATK_ROLE_FOOTER,
-ATK_ROLE_TEXT,// FOOTNOTE - registered below
+ATK_ROLE_UNKNOWN, // FOOTNOTE - registered below
 ATK_ROLE_FRAME,
 ATK_ROLE_GLASS_PANE,
 ATK_ROLE_IMAGE,   // GRAPHIC
@@ -246,16 +246,16 @@ static AtkRole mapToAtkRole( sal_Int16 nRole )
 ATK_ROLE_ROOT_PANE,
 ATK_ROLE_SCROLL_BAR,
 ATK_ROLE_SCROLL_PANE,
-ATK_ROLE_UNKNOWN,// SHAPE - registered below
+ATK_ROLE_PANEL, // SHAPE
 ATK_ROLE_SEPARATOR,
 ATK_ROLE_SLIDER,
-ATK_ROLE_SPIN_BUTTON,// SPIN_BOX ?
+ATK_ROLE_SPIN_BUTTON,   // SPIN_BOX ?
 ATK_ROLE_SPLIT_PANE,
 ATK_ROLE_STATUSBAR,
 ATK_ROLE_TABLE,
 ATK_ROLE_TABLE_CELL,
 ATK_ROLE_TEXT,
-ATK_ROLE_INTERNAL_FRAME, // TEXT_FRAME - registered below
+ATK_ROLE_PANEL, // TEXT_FRAME
 ATK_ROLE_TOGGLE_BUTTON,
 ATK_ROLE_TOOL_BAR,
 ATK_ROLE_TOOL_TIP,
@@ -309,13 +309,9 @@ static AtkRole mapToAtkRole( sal_Int16 nRole )
 roleMap[accessibility::AccessibleRole::IMAGE_MAP] = 
registerRole("image map");
 roleMap[accessibility::AccessibleRole::TREE_ITEM] = registerRole("tree 
item");
 roleMap[accessibility::AccessibleRole::HYPER_LINK] = 
registerRole("link");
-
-// these don't exist in ATK yet
-roleMap[accessibility::AccessibleRole::END_NOTE] = registerRole("end 
note");
-roleMap[accessibility::AccessibleRole::FOOTNOTE] = registerRole("foot 
note");
-roleMap[accessibility::AccessibleRole::SHAPE] = registerRole("shape");
-roleMap[accessibility::AccessibleRole::TEXT_FRAME] = 
registerRole("text frame");
-roleMap[accessibility::AccessibleRole::NOTE] = registerRole("note");
+roleMap[accessibility::AccessibleRole::END_NOTE] = 
registerRole("comment");
+roleMap[accessibility::AccessibleRole::FOOTNOTE] = 
registerRole("comment");
+roleMap[accessibility::AccessibleRole::NOTE] = registerRole("comment");
 
 initialized = true;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 39944] ACCESSIBILITY: Implement new ATK Roles

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39944

--- Comment #26 from Commit Notification 
 ---
pasqual milvaques committed a patch related to this issue.
It has been pushed to "master":

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

tdf#39944: Fix mapping additional a11y roles to ATK

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 on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 39944] ACCESSIBILITY: Implement new ATK Roles

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39944

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:4.3.0 target:4.2.5   |target:4.3.0 target:4.2.5
   |target:4.4.0|target:4.4.0 target:5.2.0

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


[Libreoffice-bugs] [Bug 91200] Continued crashes

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91200

Timur  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 95076] Document page not centered on OS X in a single page document when in fullscreen mode and double-page display

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95076

Alex Thurgood  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
Summary|Document page not centered  |Document page not centered
   |on OS X when in fullscreen  |on OS X in a single page
   |mode|document when in fullscreen
   ||mode and double-page
   ||display
 Ever confirmed|0   |1

--- Comment #4 from Alex Thurgood  ---
(In reply to Chris Sherlock from comment #3)
> It is :-) Didn't notice that. 
> 
> However, if there is only one page and you are in double-page view, then
> shouldn't the page be centered still?

Good question :-) And frankly, I have no idea - I suppose we should compare
that to similar products and see how they behave ? (if such an option is even
available). Confirming.

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


[Libreoffice-bugs] [Bug 94464] Text Body default line spacing too big (proportional 115% instead of Single )

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94464

Timur  changed:

   What|Removed |Added

 CC||gti...@gmail.com

--- Comment #11 from Timur  ---
Since this bug 94464 is about ODT, and that bug 96276 about RTF, it will still
need to be verified once this one is hopefully fixed.

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


[Libreoffice-bugs] [Bug 92071] Virus suspected see # 92059, below. Spell check believes most words to be misspelled I have reloaded office four times and this carries over.

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92071

--- Comment #5 from Beluga  ---
(In reply to Richard Dannelley from comment #4)
> Yes, I was using an old xp laptop. Whatever the case it was not working
> correctly, even after reloading. I am really happy that people spend their
> time doing open source, but i have been able to get an excellent computer
> with office 365. I had got freaked a little when I saw someone had submitted
> the same bug the day before, and thought "virus?" but later saw this was my
> own report from the day before. Many thanks and god bless.

Laurent's questions were not answered.

Did you stop using LibreOffice completely and are not going to further
investigate this?

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


[Libreoffice-bugs] [Bug 84423] SVG: SVG import drops glyph outlines

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84423

Xisco Faulí  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #3 from Xisco Faulí  ---
Fixed after 307421ba933361eaa34c12d23b0f261393ab51d8

--- Comment #4 from Xisco Faulí  ---
Fixed after 307421ba933361eaa34c12d23b0f261393ab51d8

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


[Libreoffice-bugs] [Bug 84423] SVG: SVG import drops glyph outlines

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84423

Xisco Faulí  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #3 from Xisco Faulí  ---
Fixed after 307421ba933361eaa34c12d23b0f261393ab51d8

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


[Libreoffice-bugs] [Bug 88277] Meta: SVG fileOpen filter (Draw)

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88277
Bug 88277 depends on bug 96181, which changed state.

Bug 96181 Summary: FILEOPEN: SVG: Implement support for  element
https://bugs.documentfoundation.org/show_bug.cgi?id=96181

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 96181] FILEOPEN: SVG: Implement support for element

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96181

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #12 from Xisco Faulí  ---
Fixed after 307421ba933361eaa34c12d23b0f261393ab51d8

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


Error in autoconfig on OSX-- cannot find JUnit 4

2015-12-28 Thread Srishti Khatri
Hi,

I know this issue has been raised previously, but I can't seem to derive
much help from the previous thread.

> checking for JUnit 4... configure: error: cannot find JUnit 4 jar; please
> install one in the default location (/usr/share/java)
>
​Thing is, I installed junit-4.12.jar in /usr/share/java, alongside​

​hamcrest-core-1.3.jar​.

Any help will be very appreciated.

Thanks.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 96276] Fileopen: RTF paragraph line spacing proportinal 115% instead of Single

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96276

Cor Nouws  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=94
   ||464
 Resolution|DUPLICATE   |---

--- Comment #7 from Cor Nouws  ---
OK maybe better this way :)

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


[Libreoffice-bugs] [Bug 96722] New Shape

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96722

--- Comment #8 from Cor Nouws  ---
(In reply to flightoffire from comment #7)
> What are bot places?

Sorry: both places.
There are 'handles' at both 'intersections' where the ends of the straight line
meet the circumference.

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


[Libreoffice-bugs] [Bug 81097] protection password lost after crash

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81097

Beluga  changed:

   What|Removed |Added

 Resolution|FIXED   |INVALID

--- Comment #12 from Beluga  ---
Patrick: I don't know why you set this as fixed, but the correct status after a
long time in needinfo would be invalid.
Closing.

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


[Libreoffice-commits] core.git: Branch 'feature/mailmerge-toolbar' - 5 commits - sw/Library_swui.mk sw/source sw/uiconfig sw/UIConfig_swriter.mk

2015-12-28 Thread Jan Holesovsky
 sw/Library_swui.mk|1 
 sw/UIConfig_swriter.mk|2 
 sw/source/ui/dbui/mailmergewizard.cxx |   22 
 sw/source/ui/dbui/mmmergepage.cxx |  103 ---
 sw/source/ui/dbui/mmmergepage.hxx |   57 --
 sw/source/ui/dbui/mmpreparemergepage.cxx  |1 
 sw/source/ui/dbui/mmresultdialogs.cxx |   76 +-
 sw/source/uibase/app/apphdl.cxx   |9 
 sw/source/uibase/inc/mailmergewizard.hxx  |1 
 sw/uiconfig/swriter/ui/mmmergepage.ui |  263 --
 sw/uiconfig/swriter/ui/mmoutputpage.ui|  674 --
 sw/uiconfig/swriter/ui/mmresultemaildialog.ui |1 
 sw/uiconfig/swriter/ui/mmresultprintdialog.ui |3 
 sw/uiconfig/swriter/ui/mmresultsavedialog.ui  |2 
 14 files changed, 54 insertions(+), 1161 deletions(-)

New commits:
commit 46ab09b993708314a15f8268cfce8828b9c0c504
Author: Jan Holesovsky 
Date:   Mon Dec 28 12:22:52 2015 +0100

mailmerge: Kill the "Personalize document" mail merge wizard page.

The new workflow expects the user to use the "Edit individual documents"
toolbar button instead, and then edit the newly created document as 
necessary.

Change-Id: I3bda01a06f2e317a41ce0c766e35dfa361b45f91

diff --git a/sw/Library_swui.mk b/sw/Library_swui.mk
index 0d20c61..2d49d3c 100644
--- a/sw/Library_swui.mk
+++ b/sw/Library_swui.mk
@@ -168,7 +168,6 @@ $(eval $(call gb_Library_add_exception_objects,swui,\
 sw/source/ui/dbui/mmdocselectpage \
 sw/source/ui/dbui/mmgreetingspage \
 sw/source/ui/dbui/mmlayoutpage \
-sw/source/ui/dbui/mmmergepage \
 sw/source/ui/dbui/mmoutputtypepage \
 sw/source/ui/dbui/mmpreparemergepage \
 sw/source/ui/dbui/mmresultdialogs \
diff --git a/sw/UIConfig_swriter.mk b/sw/UIConfig_swriter.mk
index 5d687e6..1b8c7f1 100644
--- a/sw/UIConfig_swriter.mk
+++ b/sw/UIConfig_swriter.mk
@@ -181,7 +181,6 @@ $(eval $(call gb_UIConfig_add_uifiles,modules/swriter,\
sw/uiconfig/swriter/ui/mmcreatingdialog \
sw/uiconfig/swriter/ui/mmlayoutpage \
sw/uiconfig/swriter/ui/mmmailbody \
-   sw/uiconfig/swriter/ui/mmmergepage \
sw/uiconfig/swriter/ui/mmoutputtypepage \
sw/uiconfig/swriter/ui/mmpreparepage \
sw/uiconfig/swriter/ui/mmresultemaildialog \
diff --git a/sw/source/ui/dbui/mailmergewizard.cxx 
b/sw/source/ui/dbui/mailmergewizard.cxx
index 2ab5127..9b853e8 100644
--- a/sw/source/ui/dbui/mailmergewizard.cxx
+++ b/sw/source/ui/dbui/mailmergewizard.cxx
@@ -22,7 +22,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -74,7 +73,6 @@ SwMailMergeWizard::SwMailMergeWizard(SwView& rView, 
SwMailMergeConfigItem& rItem
 MM_GREETINGSPAGE,
 MM_LAYOUTPAGE,
 MM_PREPAREMERGEPAGE,
-MM_MERGEPAGE,
 WZS_INVALID_STATE
 );
 else
@@ -85,7 +83,6 @@ SwMailMergeWizard::SwMailMergeWizard(SwView& rView, 
SwMailMergeConfigItem& rItem
 MM_GREETINGSPAGE,
 MM_LAYOUTPAGE,
 MM_PREPAREMERGEPAGE,
-MM_MERGEPAGE,
 WZS_INVALID_STATE
 );
 
@@ -108,7 +105,6 @@ VclPtr SwMailMergeWizard::createPage(WizardState 
_nState)
 case MM_GREETINGSPAGE : pRet = 
VclPtr::Create(this);  break;
 case MM_LAYOUTPAGE: pRet = 
VclPtr::Create(this); break;
 case MM_PREPAREMERGEPAGE  : pRet = 
VclPtr::Create(this);   break;
-case MM_MERGEPAGE : pRet = 
VclPtr::Create(this);  break;
 }
 OSL_ENSURE(pRet, "no page created in ::createPage");
 return pRet;
@@ -130,14 +126,8 @@ void SwMailMergeWizard::enterState( WizardState _nState )
 
SwMailMergeLayoutPage::InsertAddressAndGreeting(m_rConfigItem.GetSourceView(),
 m_rConfigItem, Point(-1, -1), true);
 }
-if(_nState >= MM_MERGEPAGE && !m_rConfigItem.GetTargetView())
-{
-CreateTargetDocument();
-m_nRestartPage = _nState;
-EndDialog(RET_TARGET_CREATED);
-return;
-}
-else if(_nState < MM_MERGEPAGE && m_rConfigItem.GetTargetView())
+
+if(m_rConfigItem.GetTargetView())
 {
 //close the dialog, remove the target view, show the source view
 m_nRestartPage = _nState;
@@ -156,7 +146,7 @@ void SwMailMergeWizard::enterState( WizardState _nState )
 case MM_ADDRESSBLOCKPAGE  :
 bEnableNext = m_rConfigItem.GetResultSet().is();
 break;
-case MM_MERGEPAGE:
+case MM_PREPAREMERGEPAGE:
 bEnableNext = false;
 break;
 }
@@ -183,8 +173,6 @@ OUString SwMailMergeWizard::getStateDisplayName( 
WizardState _nState ) const
 return m_sLayout;
 case MM_PREPAREMERGEPAGE:
 return m_sPrepareMerge;
-case MM_MERGEPAGE:
-return m_sMerge;
 }
 return OUString();
 }
@@ -202,7 +190,6 @@ void 

Strange error when compiling LibreOffice from master

2015-12-28 Thread Chris Sherlock
Hi all,

I'm running Ubuntu 14 on a VM via VirtualBox, when I compile from master I
consistently get the following:

[CXX] cppcanvas/qa/extras/emfplus/emfplus.cxx
[CXX] sc/qa/extras/sccondformats.cxx
[CXX] sc/qa/unit/subsequent_filters-test.cxx
[CXX] sc/qa/unit/subsequent_export-test.cxx
[CXX] sc/qa/unit/bugfix-test.cxx
[CXX] sc/qa/extras/htmlexporttest.cxx
[CXX] sc/qa/unit/opencl-test.cxx
[CXX] sc/qa/unit/copy_paste_test.cxx
[CXX] sw/qa/core/uwriter.cxx
[CXX] sw/qa/core/test_ToxLinkProcessor.cxx
/home/chris/repos/libreoffice/sc/qa/unit/opencl-test.cxx: In static member
function ‘static void
ScOpenCLTest::addTestsToSuite(CppUnit::TestSuiteBuilderContextBase&)’:
/home/chris/repos/libreoffice/sc/qa/unit/opencl-test.cxx:302:300: note:
variable tracking size limit exceeded with -fvar-tracking-assignments,
retrying without
 CPPUNIT_TEST_SUITE(ScOpenCLTest);



^
[CXX] sw/qa/core/test_ToxTextGenerator.cxx
[CXX] sw/qa/extras/docbookexport/docbookexport.cxx
[CXX] sw/qa/extras/htmlexport/htmlexport.cxx
[CXX] sw/qa/extras/htmlimport/htmlimport.cxx
[CXX] sw/qa/core/macros-test.cxx
[CXX] sw/qa/extras/ooxmlexport/ooxmlexport.cxx
[CXX] sw/qa/extras/ooxmlexport/ooxmlexport2.cxx
[CXX] sw/qa/extras/ooxmlexport/ooxmlexport3.cxx
/home/chris/repos/libreoffice/sc/qa/unit/ucalc_formula.cxx: In member
function ‘void Test::testFetchVectorRefArray()’:
/home/chris/repos/libreoffice/sc/qa/unit/ucalc_formula.cxx:474:6: note:
variable tracking size limit exceeded with -fvar-tracking-assignments,
retrying without
 void Test::testFetchVectorRefArray()
  ^
{standard input}: Assembler messages:
{standard input}:1265132: Warning: end of file not at end of a line;
newline inserted
{standard input}:1265305: Error: unknown pseudo-op: `.'
g++: internal compiler error: Killed (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See  for instructions.
/home/chris/repos/libreoffice/solenv/gbuild/LinkTarget.mk:189: recipe for
target
'/home/chris/repos/libreoffice/workdir/CxxObject/sc/qa/unit/ucalc_formula.o'
failed
make[1]: ***
[/home/chris/repos/libreoffice/workdir/CxxObject/sc/qa/unit/ucalc_formula.o]
Error 4
make[1]: *** Waiting for unfinished jobs

My version of g++ is:

chris@libreoffice-ia64:~/repos/libreoffice$ g++ --version
g++ (Ubuntu 4.9.2-10ubuntu13) 4.9.2
Copyright (C) 2014 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Anyone have any ideas why the compiler might be barfing? I run make again
and it finishes successfully!

Chris
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 96687] Characters are not displayed in GTK textbox until Enter is pressed.

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96687

--- Comment #5 from Justin L  ---
After MarkSelectionInvalid, nothing was attempting to validate the text portion
again because it was still marked as bFormatted=true.  So a possible fix is:

+mpImpl->mpTextEngine->TextModified();
mpImpl->mpTextEngine->FormatAndUpdate( this );

+mpImpl->mpTextEngine->mbFormatted;  would be a more targeted fix, but
mbModified doesn't seem to be used anyway and likely wouldn't cause any harmful
side-effects except perhaps using a bit of extra processing power to re-verify
layout.  It seems better to use a function than to set a variable directly,
even though mbFormatted is a public variable.

This fixes the problem in all the places mentioned in Comment 3.

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


[Libreoffice-bugs] [Bug 63319] EDITING: copy paste text from gedit editor

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63319

Alex Thurgood  changed:

   What|Removed |Added

 OS|Linux (All) |All

--- Comment #10 from Alex Thurgood  ---
Still an issue, at least on OSX, and has been for a while, however, this is not
inherited from OOo, it has only recently appeared (as in, somewhere in the 4.x
or 5.x branch)

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


[Libreoffice-bugs] [Bug 96731] Copy/Paste inserts extra spaces

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96731

Alex Thurgood  changed:

   What|Removed |Added

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

--- Comment #2 from Alex Thurgood  ---


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

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


[Libreoffice-bugs] [Bug 63319] EDITING: copy paste text from gedit editor

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63319

Alex Thurgood  changed:

   What|Removed |Added

 CC||erw...@alumni.beloit.edu

--- Comment #11 from Alex Thurgood  ---
*** Bug 96731 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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96701] PRINTING - IMages are not printing

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96701

--- Comment #2 from Timur  ---
Please check whether it's rather a duplicate of Bug 94851.

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


[Libreoffice-bugs] [Bug 96216] les images ne sont pas imprimées -- (images are not printed)

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96216

--- Comment #3 from Timur  ---
Please check whether this is a duplicate of Bug 94851.

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


[Libreoffice-bugs] [Bug 96410] WEBDAV: old version opened after simultaneous open (read only)

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96410

--- Comment #17 from Giuseppe Castagno (aka beppec56) 
 ---
(In reply to Tim Banchi from comment #16)

> . The second time I didn't get
> warned that the file already was open (and in edit mode) by Word 2010.

You were not warned simply because LO didn't attempt to put a lock, apparently
eXo PF4.2 doesn't implement a mandatory feature of WebDAV (RFC4918).
It doesn't implement the 'supportedlock' property. LO uses it to detect if the
LOCK method can be issued.

See here for details about 'supportedlock':
, relevant excerpt:
'...Any DAV-compliant resource that supports the LOCK method MUST support the
DAV:supportedlock property...'

I found it in the logs you send, this is a payload received in response to a
supportedlock request issued by LO:


  
 
  
https://DOMAIN:443/rest/private/jcr/repository/collaboration/Groups/spaces/testspace_2/Documents/test/newsletter.docx
   

HTTP/1.1 404 Not Found
   
 
  

eXo pf 4.2. response is 'Not Found' for that property.

Unfortunately this rules out the possibility of working with eXo in native
WebDAV mode, for the time being.

I'm repeating the tests you did in bug description, I got two Windows 7 32bit
system, installed eXo PF4.2 community edition to carry out that.
I'll use

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


[Libreoffice-bugs] [Bug 88277] Meta: SVG fileOpen filter (Draw)

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88277
Bug 88277 depends on bug 32248, which changed state.

Bug 32248 Summary: FILEOPEN: SVG: add support for  elements inside 
https://bugs.documentfoundation.org/show_bug.cgi?id=32248

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 90631] UI: color dialog is extremely confusing

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90631

--- Comment #5 from Bruce Martin  ---
I, Bruce Martin, have had a similar problem. Additionally added problems show
up that may also be related.

Unable to load/replace colour list from pre-existing standard.soc.

This used to load from the colours window using the Load colour list icon. Now
it insists on saving the existing list, and then freezes.

The only ways to unfreeze are to reboot or to kill soffice.bin using the
performance monitor.

to restore my ccustom colours, I had to paste a swatch into Gimp, obtain the
colour values, then return to Libre Office to re-create the colour from
scratch.

If I have to do all this for all colours, gradients and hatches, this amounts
to an inordinate mess!

I am using Libre office in Fedora 23 workstation, 64 bit.

Additionally there are a number of colour and choice areas where the mouse does
not selct properly asw it used to.

Also the colour bar that used to be available at the bottom of the window
simply no longer appears to exist.

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


[Libreoffice-bugs] [Bug 81234] [META] RTF filter issues

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81234
Bug 81234 depends on bug 96276, which changed state.

Bug 96276 Summary: Fileopen: RTF paragraph line spacing proportinal 115% 
instead of Single
https://bugs.documentfoundation.org/show_bug.cgi?id=96276

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 94464] Text Body default line spacing too big (proportional 115% instead of Single )

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94464

Cor Nouws  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 96725] CONFIGURATION: "Open With > LibreOffice" missing for AppleWorks (.cwk) files on Mac

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96725

--- Comment #5 from Alex Thurgood  ---
I downloaded the collection of CWK files from :

http://wirelust.com/examples/archiving/appleworks/

right mouse button clicked on one of them, chose Information (Properties),
chose "Other" from the list of apps, then selected LibreOffice from the
Applications folder, then closed the Information window.

Double-click on a cwk opens it in LibreOffice.

I would close this as WFM

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


[Libreoffice-bugs] [Bug 87153] Named Range Reference Updated After Deletion of Data

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87153

--- Comment #5 from dmdcare...@care2.com ---
As far as I can tell, I have already supplied all the necessary information.

Having said that, I could not reproduce the bug in version 5.0.4.2.

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


[Libreoffice-bugs] [Bug 96734] UI: Wrong acceleration-key in Special Character dialog

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96734

baffclan  changed:

   What|Removed |Added

Summary|UI: Broken(?)   |UI: Wrong acceleration-key
   |acceleration-key in Special |in Special Character dialog
   |Character dialog|

--- Comment #4 from baffclan  ---
(In reply to Julien Nabet from comment #1)
> Considering steps to reproduce + screenshot, I don't understand what's wrong.

Julien Nabet, Please see Pootle.
https://translations.documentfoundation.org/fr/libo_ui/translate/cui/uiconfig/ui.po#unit=79289532

EnglishFont:
French_Police :

English has not acceleration-key.
French has acceleration-key with Accelerators error.

https://translations.documentfoundation.org/help/quality-checks/#accelerators

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


[Libreoffice-bugs] [Bug 81097] protection password lost after crash

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81097

patrick brennan  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-bugs] [Bug 94139] SVG import: wavedrom charts come out wrong

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94139

Xisco Faulí  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 CC||aniste...@gmail.com
 Resolution|INVALID |---
 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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 94139] SVG import: wavedrom charts come out wrong

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94139

Xisco Faulí  changed:

   What|Removed |Added

 Status|REOPENED|ASSIGNED
   Assignee|libreoffice-b...@lists.free |aniste...@gmail.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 96590] UI: after saving file, save icon is not greyed out

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96590

--- Comment #11 from Andy  ---
I must say that, even if I definitely do not want to be bickering, IMHO any
effort or energy put into this transformation, given the dubious advantages it
would (perhaps) offer, is far from efficient.
There so many areas of our beloved LO that needs significant improvements, that
would benefit hugely from some of this energy!
I know this is not in the style of bug reporting, (one bug - one report etc.)
but just for once allow me to mention some of the most blatant - and unattended
- at once:
- the whole management of tables in Impress is in high need of revision -
problems of slowness, clunckyness in use, blatantly incorrect visualization of
most the formatting options, and - alas - more. This is a functionality of LO
(and OO before, I filed a bug report on this a coupe of years ago) that you'd
rather not show to people not using LO, to avoid spreading negative impressions
- the slow response of Draw and Impress interface in 5.1.0.1, which is
frightening: if this is not polished away, it makes the two modules an headache
to use! a program can have the greatest functionality, still that's useless if
the  most basic and commonplace functions are DEAD SLOWsee my bug 96658, so
far not very considered it seems
- the mysterious working of openCL, resulting in serious computational errors
in CALC (see my bug 96222), a problem that seems difficult to grasp, looking at
the suggestions received that were all quite off the mark
Sorry...

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


[Libreoffice-bugs] [Bug 96656] All up-down arrows in numerical input fields are not visible anymore

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96656

--- Comment #2 from Andy  ---
Created attachment 121577
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121577=edit
This is the normal appearance of the "paragraph" dialog window

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


Re: Error in autoconfig on OSX-- cannot find JUnit 4

2015-12-28 Thread Alexander Thurgood
Le 26/12/2015 10:08, Srishti Khatri a écrit :

Hi,

> ​Thing is, I installed junit-4.12.jar in /usr/share/java, alongside​
> 
> ​hamcrest-core-1.3.jar​.
> 
> Any help will be very appreciated.

Yeah, I tried that too... and couldn't get it to work either, so I
deactivated JUnit testing during build with :

--without-junit


Alex


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


[Libreoffice-bugs] [Bug 96657] The drag and zoom tool does not show the selection area rectangle anymore

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96657

--- Comment #5 from Andy  ---
No, Release candidates do not install in parallel.
I have both a win 7 fixpack 1 machine, and a win 8.1 machine.
Generally I test both before reporting bugs.

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


[Libreoffice-bugs] [Bug 96746] New: No Basic Help

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96746

Bug ID: 96746
   Summary: No Basic Help
   Product: LibreOffice
   Version: 5.0.4.2 rc
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: t...@tim-passingham.co.uk

With this release (from 5.0.3.2) I've lost the BASIC help.  The other Helps are
all there.

I'm using 5.0.4.2 Build ID: 1:5.0.4~rc2-0ubuntu1~trusty1 Locale: en-GB
(en_GB.UTF-8)

If this isn't also true for other platforms or O/Ss I'll raise it with the
Ubuntu team instead.

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


[Libreoffice-bugs] [Bug 42466] paste special not work after simple copy paste

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42466

--- Comment #12 from Ákos  ---
I can reproduce the problem in LibreOffice 5.0.2.2 in Ubuntu 15.10 64 bit.

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


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

2015-12-28 Thread Caolán McNamara
 lotuswordpro/source/filter/lwplayout.cxx |   11 +++
 lotuswordpro/source/filter/lwplayout.hxx |   12 +++-
 2 files changed, 18 insertions(+), 5 deletions(-)

New commits:
commit 02c113a3ab57d7880bb1f794e192fb42aea078e1
Author: Caolán McNamara 
Date:   Mon Dec 28 14:43:50 2015 +

guard against infinite recursion in GetGeometry

Change-Id: I901f77f5846512cb528f2e14bbc50409fa29bef2
(cherry picked from commit 9ec011f6874cf663db54d0420c41d9299e4ed882)

diff --git a/lotuswordpro/source/filter/lwplayout.cxx 
b/lotuswordpro/source/filter/lwplayout.cxx
index 68003a7..32bc4fd 100644
--- a/lotuswordpro/source/filter/lwplayout.cxx
+++ b/lotuswordpro/source/filter/lwplayout.cxx
@@ -560,9 +560,12 @@ void LwpLayoutMisc::Read(LwpObjectStream* pStrm)
 }
 
 LwpMiddleLayout::LwpMiddleLayout( LwpObjectHeader , LwpSvStream* pStrm )
-: LwpVirtualLayout(objHdr, pStrm),
-  m_pStyleStuff(new LwpLayoutStyle), m_pMiscStuff(new LwpLayoutMisc)
-{}
+: LwpVirtualLayout(objHdr, pStrm)
+, m_pStyleStuff(new LwpLayoutStyle)
+, m_pMiscStuff(new LwpLayoutMisc)
+, m_bGettingGeometry(false)
+{
+}
 
 LwpMiddleLayout::~LwpMiddleLayout()
 {
@@ -637,7 +640,7 @@ rtl::Reference LwpMiddleLayout::GetBasedOnStyle()
 * @descr:   Get the geometry of current layout
 *
 */
-LwpLayoutGeometry* LwpMiddleLayout::GetGeometry()
+LwpLayoutGeometry* LwpMiddleLayout::Geometry()
 {
 if( !m_LayGeometry.IsNull() )
 {
diff --git a/lotuswordpro/source/filter/lwplayout.hxx 
b/lotuswordpro/source/filter/lwplayout.hxx
index 5e86caf..64598dc 100644
--- a/lotuswordpro/source/filter/lwplayout.hxx
+++ b/lotuswordpro/source/filter/lwplayout.hxx
@@ -316,7 +316,15 @@ public:
 virtual bool MarginsSameAsParent() override;
 virtual double MarginsValue(const sal_uInt8& nWhichSide) override;
 virtual double GetExtMarginsValue(const sal_uInt8& nWhichSide) override;
-LwpLayoutGeometry* GetGeometry();
+LwpLayoutGeometry* GetGeometry()
+{
+if (m_bGettingGeometry)
+throw std::runtime_error("recursion in layout");
+m_bGettingGeometry = true;
+auto pRet = Geometry();
+m_bGettingGeometry = false;
+return pRet;
+}
 double GetGeometryHeight();
 double GetGeometryWidth();
 LwpBorderStuff* GetBorderStuff();
@@ -363,6 +371,7 @@ protected:
 void Read() override;
 private:
 LwpObjectID m_BasedOnStyle;
+LwpLayoutGeometry* Geometry();
 protected:
 enum
 {
@@ -381,6 +390,7 @@ protected:
 LwpObjectID m_LayBorderStuff;
 LwpObjectID m_LayBackgroundStuff;
 LwpObjectID m_LayExtBorderStuff;
+boolm_bGettingGeometry;
 public:
 LwpObjectID& GetContent() { return m_Content; }
 LwpTabOverride* GetTabOverride();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 55035] PRINTING: png pictures appear in the wrong place when printing

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55035

Julien Nabet  changed:

   What|Removed |Added

Summary|PRINTING: png pictures  |PRINTING: png pictures
   |apear in the wrong place|appear in the wrong place
   |when printing   |when printing

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


[Libreoffice-bugs] [Bug 96748] New: Default item of Languages/User interface reflects current LibreOffice setting instead of the OS environment

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96748

Bug ID: 96748
   Summary: Default item of Languages/User interface reflects
current LibreOffice setting instead of the OS
environment
   Product: LibreOffice
   Version: 5.0.4.2 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: norbert.n...@gmx.de

On a german language OS environment try the following:

- Go to Optionen/Spracheinstellungen/Sprache

- Change "Benutzeroberfläche" to "English (USA)".

- Click OK

- Re-start LibreOffice

- Go to "Options/Language Settings/Languages"

- Open the drop down menu of "User interface:"


 Note that the Default item has re-label to "Default - English USA)".
Correct would be "Default - German (Germany)"


- Select change "User interface:" to "Default - English USA)"

- Click OK

- Re-start LibreOffice

- Go to Optionen/Spracheinstellungen/Sprache


Note that we now have "Benutzeroberfläche" "Default - Deutsch (Deutschland)"
again. So it is only a labeling issue.
Only the default item of the menu "User interface:" is affected. The similar
menu "Local setting:" is not affected by this issue.

I'm rather sure that this is a regression. But I cannot say which is the last
good build.

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


[Libreoffice-commits] libvisio.git: src/lib

2015-12-28 Thread Fridrich Štrba
 src/lib/VSDContentCollector.cpp |   30 --
 1 file changed, 30 deletions(-)

New commits:
commit 9df045f04190ed87d49a619821e6c16557a518cf
Author: Fridrich Å trba 
Date:   Mon Dec 28 13:28:34 2015 +0100

Remove unnecessary code. This works the same without it.

Change-Id: I971775f35c8a4fc2d1955dd79e84f8486df9629e

diff --git a/src/lib/VSDContentCollector.cpp b/src/lib/VSDContentCollector.cpp
index 899c837..f24673c 100644
--- a/src/lib/VSDContentCollector.cpp
+++ b/src/lib/VSDContentCollector.cpp
@@ -432,36 +432,6 @@ void libvisio::VSDContentCollector::_flushText()
 m_tabSets.back().m_numChars = 0;
   }
 
-  unsigned numCharsInText = (unsigned)m_currentText.len();
-
-  for (unsigned iChar = 0; iChar < m_charFormats.size(); iChar++)
-  {
-if (m_charFormats[iChar].charCount)
-  numCharsInText -= m_charFormats[iChar].charCount;
-else
-  m_charFormats[iChar].charCount = numCharsInText;
-  }
-
-  numCharsInText = (unsigned)m_currentText.len();
-
-  for (unsigned iPara = 0; iPara < m_paraFormats.size(); iPara++)
-  {
-if (m_paraFormats[iPara].charCount)
-  numCharsInText -= m_paraFormats[iPara].charCount;
-else
-  m_paraFormats[iPara].charCount = numCharsInText;
-  }
-
-  numCharsInText = (unsigned)m_currentText.len();
-
-  for (unsigned iTab = 0; iTab < m_tabSets.size(); iTab++)
-  {
-if (m_tabSets[iTab].m_numChars)
-  numCharsInText -= m_tabSets[iTab].m_numChars;
-else
-  m_tabSets[iTab].m_numChars = numCharsInText;
-  }
-
   _appendVisibleAndPrintable(textBlockProps);
 
   m_shapeOutputText->addStartTextObject(textBlockProps);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96557] Opening a CSV on a different gnome virtual desktop causes open calc window to move to the virtual desktop

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96557

--- Comment #3 from damonhttp...@gmail.com ---
It definitely sounds related to bug 95630, just the opposite behavior (instead
of you having to go to the other workspace the window is brought to the current
one). I don't know anything about Gnome and UI development so I will leave it
up to you guys to close/mark as duplicate. Thanks.

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


[Libreoffice-bugs] [Bug 90382] Regression in LibO 4.3.6.1 on sending document by mail

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90382

Beluga  changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME

--- Comment #13 from Beluga  ---
Thanks, setting to WFM.

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


[Libreoffice-bugs] [Bug 96657] The drag and zoom tool does not show the selection area rectangle anymore

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96657

--- Comment #4 from Beluga  ---
Ok, we will wait for you to install 5.1 again and test with opengl off.
But it is possible to install it in parallel.. I don´t remember, if RC builds
even install in parallel by default.

You did not mention your operating system yet.

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


[Libreoffice-bugs] [Bug 63319] EDITING: copy paste text from gedit editor

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63319

--- Comment #13 from MarjaE  ---
(In reply to Alex Thurgood from comment #12)
> On OSX, the problem occurs when one copy/pastes text from within a Writer
> document.

I'm not sure these are the same bug. I think the Writer bug was introduced by
the "fix" to "bug" 34614.

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


[Libreoffice-bugs] [Bug 96720] FILESAVE: .odt report produces different ODF Validator Result than a copy saved from Writer (probably resulting in slow file load)

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96720

--- Comment #5 from Lionel Elie Mamane  ---
Yes, the report builder creates an odt file on its own, without going through
writer, and then opens that file in writer. As such, minor differences in
structure, within the choices allowed by the ODF standard are normal.

The missing version in the manifest tag, apparently a standard violation, would
be a genuine bug and should be fixed.

The slowness is most probably a writer problem and needs to be reported / fixed
on the writer side. (In the meantime, if report builder can do something
specific to work around it, I'm open to suggestions.)

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


[Libreoffice-bugs] [Bug 81786] UI Language list not sorted

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81786

--- Comment #8 from Michael Bauer  ---
Created attachment 121579
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121579=edit
new screenshot

The bug persists, this is from the 5.0.4.2 installation dialogue on Windows.

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


[Libreoffice-bugs] [Bug 96657] The drag and zoom tool does not show the selection area rectangle anymore

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96657

JPJ  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #7 from JPJ  ---
I am able to duplicate the issue of the missing zoom rectangle with "Tools -
Options - LibO - View - Use OpenGL for all rendering" enabled.  If this option
is disabled, the zoom rectangle appears as expected.

Kubuntu 14.04.3 amd64
Version: 5.1.0.1
Build ID: bcace328aabc4c8c10b56daa87da0a2ee6579b5a
Threads 4; Ver: Linux 3.13; Render: GL; 
Locale: en-US (en_US.UTF-8)

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


[Libreoffice-bugs] [Bug 81786] UI Language list not sorted

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81786

--- Comment #9 from Michael Bauer  ---
I'm beginning to wonder if this is related to that infernal conflict between
installed keyboard languages and programs/apps when it comes to language
selection. My OS has a Gaelic langpack and 4 installed keyboard locales. Urmas
& Andras, what is your OS setup?

Could it be that LO somehow pulls the sort order from the OS or keyboard locale
but if there is more than one, it defaults somehow to sorting by ISO code?

The reason I'm wondering is because in MS Office, if you have more than one
keyboard locale installed, even when you switch OFF the Detect Language
feature, it gets totally confused and assigns language/locale in a very random
fashion.

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


[Libreoffice-bugs] [Bug 93529] Meta: VCL/OpenGL tracker bug for 5.0+

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93529

Beluga  changed:

   What|Removed |Added

 Depends on||96657

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


[Libreoffice-bugs] [Bug 96657] The drag and zoom tool does not show the selection area rectangle anymore

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96657

Beluga  changed:

   What|Removed |Added

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

--- Comment #8 from Beluga  ---
Ok, let's set to NEW, then.

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


[Libreoffice-bugs] [Bug 96748] Default item of Languages/User interface reflects current LibreOffice setting instead of the OS environment

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96748

--- Comment #1 from OfficeUser  ---
Created attachment 121581
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121581=edit
isue.png

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


[Libreoffice-bugs] [Bug 96748] Default item of Languages/User interface reflects current LibreOffice setting instead of the OS environment

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96748

OfficeUser  changed:

   What|Removed |Added

   Keywords||regression

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


[Libreoffice-commits] libvisio.git: src/lib

2015-12-28 Thread Fridrich Štrba
 src/lib/VSDContentCollector.cpp |   60 
 1 file changed, 48 insertions(+), 12 deletions(-)

New commits:
commit bd9f4c565f7af41b0e32f399430e3e20bb1c8797
Author: Fridrich Å trba 
Date:   Mon Dec 28 13:29:35 2015 +0100

Annotate the _flushText in order to extract it from Dr. Alzheimer's 
influence

Change-Id: Icf2dc7b397688f464bc0de01d00c08992c82f88b

diff --git a/src/lib/VSDContentCollector.cpp b/src/lib/VSDContentCollector.cpp
index f24673c..8365984 100644
--- a/src/lib/VSDContentCollector.cpp
+++ b/src/lib/VSDContentCollector.cpp
@@ -365,9 +365,11 @@ void libvisio::VSDContentCollector::_flushCurrentPath()
 
 void libvisio::VSDContentCollector::_flushText()
 {
+  /* Do not output empty text objects. */
   if (m_currentText.empty() || m_misc.m_hideText)
 return;
 
+  /* Fill the text object/frame properties */
   double xmiddle = m_txtxform ? m_txtxform->width / 2.0 : m_xform.width / 2.0;
   double ymiddle = m_txtxform ? m_txtxform->height / 2.0 : m_xform.height / 
2.0;
 
@@ -416,6 +418,13 @@ void libvisio::VSDContentCollector::_flushText()
 break;
   }
 
+  _appendVisibleAndPrintable(textBlockProps);
+
+  /* Start the text object. */
+  m_shapeOutputText->addStartTextObject(textBlockProps);
+
+  /* Assure that the different styles have at least one element,
+   * corresponding to the default style. */
   if (m_charFormats.empty())
   {
 m_charFormats.push_back(m_defaultCharStyle);
@@ -432,29 +441,28 @@ void libvisio::VSDContentCollector::_flushText()
 m_tabSets.back().m_numChars = 0;
   }
 
-  _appendVisibleAndPrintable(textBlockProps);
-
-  m_shapeOutputText->addStartTextObject(textBlockProps);
+  /* Helper variables used to iterate over the text buffer */
+  std::vector::const_iterator paraIt = m_paraFormats.begin();
+  std::vector::const_iterator charIt = m_charFormats.begin();
+  std::vector::const_iterator tabIt = m_tabSets.begin();
 
   bool isParagraphOpened(false);
   bool isSpanOpened(false);
   bool isParagraphWithoutSpan(false);
 
-  std::vector::const_iterator paraIt = m_paraFormats.begin();
-  std::vector::const_iterator charIt = m_charFormats.begin();
-  std::vector::const_iterator tabIt = m_tabSets.begin();
-
   VSDBullet currentBullet;
 
   unsigned paraNumRemaining(paraIt->charCount);
   unsigned charNumRemaining(charIt->charCount);
   unsigned tabNumRemaining(tabIt->m_numChars);
 
-  librevenge::RVNGString::Iter textIt(m_currentText);
   librevenge::RVNGString sOutputText;
-  // Iterate over the text
+
+  /* Iterate over the text character by character */
+  librevenge::RVNGString::Iter textIt(m_currentText);
   for (textIt.rewind(); textIt.next();)
   {
+/* Any character will cause a paragraph to open if it is not yet opened. */
 if (!isParagraphOpened)
 {
   librevenge::RVNGPropertyList paraProps;
@@ -468,12 +476,15 @@ void libvisio::VSDContentCollector::_flushText()
   VSDBullet bullet;
   _bulletFromParaFormat(bullet, *paraIt);
 
+  /* Bullet definition changed with regard to the last paragraph style. */
   if (bullet != currentBullet)
   {
+/* If the previous paragraph style had a bullet, close the list level. 
*/
 if (!!currentBullet)
   m_shapeOutputText->addCloseUnorderedListLevel();
 
 currentBullet = bullet;
+/* If the current paragraph style has a bullet, open a new list level. 
*/
 if (!!currentBullet)
 {
   librevenge::RVNGPropertyList bulletList;
@@ -490,9 +501,9 @@ void libvisio::VSDContentCollector::_flushText()
   isParagraphWithoutSpan = true;
 }
 
-/* Avoid empty span but also a paragraph without span at all.
- * This allows editing of the empty paragraph after the import,
- * using the original span properties. */
+/* Any character will cause a span to open if it is not yet opened.
+ * The additional conditions aim to avoid superfluous empty span but
+ * also a paragraph without span at all. */
 if (!isSpanOpened && ((*(textIt()) != '\n') || isParagraphWithoutSpan))
 {
   librevenge::RVNGPropertyList textProps;
@@ -512,6 +523,8 @@ void libvisio::VSDContentCollector::_flushText()
   isParagraphWithoutSpan = false;
 }
 
+/* Current character is a paragraph break,
+ * which will cause the paragraph to close. */
 if (*(textIt()) == '\n')
 {
   if (!sOutputText.empty())
@@ -532,6 +545,8 @@ void libvisio::VSDContentCollector::_flushText()
 isParagraphOpened = false;
   }
 }
+/* Current character is a tabulator. We have to output
+ * the current text buffer and insert the tab. */
 else if (*(textIt()) == '\t')
 {
   if (!sOutputText.empty())
@@ -539,16 +554,25 @@ void libvisio::VSDContentCollector::_flushText()
   sOutputText.clear();
   m_shapeOutputText->addInsertTab();
 }
+/* Current character is a field placeholder. We append
+ * to the current text 

[Libreoffice-bugs] [Bug 75191] ACCESSIBILITY: remove deprecated atk_role_register

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75191

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|| target:5.2.0

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


[Libreoffice-bugs] [Bug 75191] ACCESSIBILITY: remove deprecated atk_role_register

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75191

--- Comment #9 from Commit Notification 
 ---
Jacobo Aragunde Pérez committed a patch related to this issue.
It has been pushed to "master":

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

tdf#75191: only call atk_register_role if strictly necessary

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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2015-12-28 Thread Julien Nabet
 sw/inc/pagepreviewlayout.hxx |4 ++--
 vcl/source/gdi/pngread.cxx   |2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit fb905e6457ba3f793d783523cdacfe3a9e8ac48f
Author: Julien Nabet 
Date:   Mon Dec 28 13:55:33 2015 +0100

Typo: pysical->physical

Change-Id: I73d006ee5de8294cc0dc1cf48a77c6e4466c49ae

diff --git a/sw/inc/pagepreviewlayout.hxx b/sw/inc/pagepreviewlayout.hxx
index 7c440be..1362733 100644
--- a/sw/inc/pagepreviewlayout.hxx
+++ b/sw/inc/pagepreviewlayout.hxx
@@ -530,7 +530,7 @@ public:
 @author OD
 
 @param _nPageNum
-input parameter - pysical page number of preview page, for which the
+input parameter - physical page number of preview page, for which the
 page size has to be returned.
 
 @return an object of class 
@@ -542,7 +542,7 @@ public:
 @author OD
 
 @param _nPageNum
-input parameter - pysical page number of preview page, for which the
+input parameter - physical page number of preview page, for which the
 virtual page number has to be determined.
 
 @return virtual page number of page given by its physical page number,
diff --git a/vcl/source/gdi/pngread.cxx b/vcl/source/gdi/pngread.cxx
index 7996f46..60b8d03 100644
--- a/vcl/source/gdi/pngread.cxx
+++ b/vcl/source/gdi/pngread.cxx
@@ -120,7 +120,7 @@ private:
 boolmbStatus : 1;
 boolmbIDAT : 1; // true if finished with enough 
IDAT chunks
 boolmbGamma : 1;// true if Gamma Correction 
available
-boolmbpHYs : 1; // true if pysical size of pixel 
available
+boolmbpHYs : 1; // true if physical size of pixel 
available
 boolmbIgnoreGammaChunk : 1;
 
 #if OSL_DEBUG_LEVEL > 0
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-12-28 Thread Jacobo Aragunde Pérez
 vcl/unx/gtk/a11y/atkwrapper.cxx |   41 
 1 file changed, 21 insertions(+), 20 deletions(-)

New commits:
commit b250f3ddd7d8a14746b4df1029b7cbf3ae86b1d1
Author: Jacobo Aragunde Pérez 
Date:   Mon Dec 28 12:38:59 2015 +0100

tdf#75191: only call atk_register_role if strictly necessary

As part of tdf#39944, the mappings of UNO and ATK roles have been
reviewed and right now there is a match in ATK for every UNO role.

Still, some protection must be done in case of running LO with an
old ATK version that does not contain all the roles we need. The
function registerRole serves this purpose now, and it has been
renamed consequently.

Finally, removed a redundant mapping of the HEADING role.

Change-Id: I7a19c3f3efa5d6ff2697c19e3ae7856d4702a253

diff --git a/vcl/unx/gtk/a11y/atkwrapper.cxx b/vcl/unx/gtk/a11y/atkwrapper.cxx
index c71aa77..5def4fe 100644
--- a/vcl/unx/gtk/a11y/atkwrapper.cxx
+++ b/vcl/unx/gtk/a11y/atkwrapper.cxx
@@ -176,11 +176,12 @@ AtkStateType mapAtkState( sal_Int16 nState )
 return type;
 }
 
-static inline AtkRole registerRole( const gchar * name )
+static inline AtkRole getRoleForName( const gchar * name )
 {
 AtkRole ret = atk_role_for_name( name );
 if( ATK_ROLE_INVALID == ret )
 {
+// this should only happen in old ATK versions
 SAL_WNODEPRECATED_DECLARATIONS_PUSH
 ret = atk_role_register( name );
 SAL_WNODEPRECATED_DECLARATIONS_POP
@@ -220,7 +221,7 @@ static AtkRole mapToAtkRole( sal_Int16 nRole )
 ATK_ROLE_IMAGE,   // GRAPHIC
 ATK_ROLE_UNKNOWN, // GROUP_BOX - registered below
 ATK_ROLE_HEADER,
-ATK_ROLE_HEADING, // HEADING - registered below
+ATK_ROLE_HEADING,
 ATK_ROLE_TEXT,// HYPER_LINK - registered below
 ATK_ROLE_ICON,
 ATK_ROLE_INTERNAL_FRAME,
@@ -294,24 +295,24 @@ static AtkRole mapToAtkRole( sal_Int16 nRole )
 
 if( ! initialized )
 {
-// re-use strings from ATK library
-roleMap[accessibility::AccessibleRole::EDIT_BAR] = 
registerRole("editbar");
-roleMap[accessibility::AccessibleRole::EMBEDDED_OBJECT] = 
registerRole("embedded");
-roleMap[accessibility::AccessibleRole::CHART] = registerRole("chart");
-roleMap[accessibility::AccessibleRole::CAPTION] = 
registerRole("caption");
-roleMap[accessibility::AccessibleRole::DOCUMENT] = 
registerRole("document frame");
-roleMap[accessibility::AccessibleRole::HEADING] = 
registerRole("heading");
-roleMap[accessibility::AccessibleRole::PAGE] = registerRole("page");
-roleMap[accessibility::AccessibleRole::SECTION] = 
registerRole("section");
-roleMap[accessibility::AccessibleRole::FORM] = registerRole("form");
-roleMap[accessibility::AccessibleRole::GROUP_BOX] = 
registerRole("grouping");
-roleMap[accessibility::AccessibleRole::COMMENT] = 
registerRole("comment");
-roleMap[accessibility::AccessibleRole::IMAGE_MAP] = 
registerRole("image map");
-roleMap[accessibility::AccessibleRole::TREE_ITEM] = registerRole("tree 
item");
-roleMap[accessibility::AccessibleRole::HYPER_LINK] = 
registerRole("link");
-roleMap[accessibility::AccessibleRole::END_NOTE] = 
registerRole("comment");
-roleMap[accessibility::AccessibleRole::FOOTNOTE] = 
registerRole("comment");
-roleMap[accessibility::AccessibleRole::NOTE] = registerRole("comment");
+// the accessible roles below were added to ATK in later versions,
+// with role_for_name we will know if they exist in runtime.
+roleMap[accessibility::AccessibleRole::EDIT_BAR] = 
getRoleForName("editbar");
+roleMap[accessibility::AccessibleRole::EMBEDDED_OBJECT] = 
getRoleForName("embedded");
+roleMap[accessibility::AccessibleRole::CHART] = 
getRoleForName("chart");
+roleMap[accessibility::AccessibleRole::CAPTION] = 
getRoleForName("caption");
+roleMap[accessibility::AccessibleRole::DOCUMENT] = 
getRoleForName("document frame");
+roleMap[accessibility::AccessibleRole::PAGE] = getRoleForName("page");
+roleMap[accessibility::AccessibleRole::SECTION] = 
getRoleForName("section");
+roleMap[accessibility::AccessibleRole::FORM] = getRoleForName("form");
+roleMap[accessibility::AccessibleRole::GROUP_BOX] = 
getRoleForName("grouping");
+roleMap[accessibility::AccessibleRole::COMMENT] = 
getRoleForName("comment");
+roleMap[accessibility::AccessibleRole::IMAGE_MAP] = 
getRoleForName("image map");
+roleMap[accessibility::AccessibleRole::TREE_ITEM] = 
getRoleForName("tree item");
+roleMap[accessibility::AccessibleRole::HYPER_LINK] = 
getRoleForName("link");
+roleMap[accessibility::AccessibleRole::END_NOTE] = 
getRoleForName("comment");
+roleMap[accessibility::AccessibleRole::FOOTNOTE] = 

[Libreoffice-bugs] [Bug 96597] When printing and pdf export cells with formula that have a "" value are still printed and exported

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96597

Duncan Bellamy  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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96657] The drag and zoom tool does not show the selection area rectangle anymore

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96657

--- Comment #6 from Beluga  ---
(In reply to Andy from comment #5)
> No, Release candidates do not install in parallel.
> I have both a win 7 fixpack 1 machine, and a win 8.1 machine.
> Generally I test both before reporting bugs.

Ok, then you can use this easy tool to install in parallel:
https://wiki.documentfoundation.org/SI-GUI
Download link: http://tdf.io/siguiexe

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


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

2015-12-28 Thread Caolán McNamara
 lotuswordpro/source/filter/lwplayout.cxx |   11 +++
 lotuswordpro/source/filter/lwplayout.hxx |   12 +++-
 2 files changed, 18 insertions(+), 5 deletions(-)

New commits:
commit 9ec011f6874cf663db54d0420c41d9299e4ed882
Author: Caolán McNamara 
Date:   Mon Dec 28 14:43:50 2015 +

guard against infinite recursion in GetGeometry

Change-Id: I901f77f5846512cb528f2e14bbc50409fa29bef2

diff --git a/lotuswordpro/source/filter/lwplayout.cxx 
b/lotuswordpro/source/filter/lwplayout.cxx
index 68003a7..32bc4fd 100644
--- a/lotuswordpro/source/filter/lwplayout.cxx
+++ b/lotuswordpro/source/filter/lwplayout.cxx
@@ -560,9 +560,12 @@ void LwpLayoutMisc::Read(LwpObjectStream* pStrm)
 }
 
 LwpMiddleLayout::LwpMiddleLayout( LwpObjectHeader , LwpSvStream* pStrm )
-: LwpVirtualLayout(objHdr, pStrm),
-  m_pStyleStuff(new LwpLayoutStyle), m_pMiscStuff(new LwpLayoutMisc)
-{}
+: LwpVirtualLayout(objHdr, pStrm)
+, m_pStyleStuff(new LwpLayoutStyle)
+, m_pMiscStuff(new LwpLayoutMisc)
+, m_bGettingGeometry(false)
+{
+}
 
 LwpMiddleLayout::~LwpMiddleLayout()
 {
@@ -637,7 +640,7 @@ rtl::Reference LwpMiddleLayout::GetBasedOnStyle()
 * @descr:   Get the geometry of current layout
 *
 */
-LwpLayoutGeometry* LwpMiddleLayout::GetGeometry()
+LwpLayoutGeometry* LwpMiddleLayout::Geometry()
 {
 if( !m_LayGeometry.IsNull() )
 {
diff --git a/lotuswordpro/source/filter/lwplayout.hxx 
b/lotuswordpro/source/filter/lwplayout.hxx
index 5e86caf..64598dc 100644
--- a/lotuswordpro/source/filter/lwplayout.hxx
+++ b/lotuswordpro/source/filter/lwplayout.hxx
@@ -316,7 +316,15 @@ public:
 virtual bool MarginsSameAsParent() override;
 virtual double MarginsValue(const sal_uInt8& nWhichSide) override;
 virtual double GetExtMarginsValue(const sal_uInt8& nWhichSide) override;
-LwpLayoutGeometry* GetGeometry();
+LwpLayoutGeometry* GetGeometry()
+{
+if (m_bGettingGeometry)
+throw std::runtime_error("recursion in layout");
+m_bGettingGeometry = true;
+auto pRet = Geometry();
+m_bGettingGeometry = false;
+return pRet;
+}
 double GetGeometryHeight();
 double GetGeometryWidth();
 LwpBorderStuff* GetBorderStuff();
@@ -363,6 +371,7 @@ protected:
 void Read() override;
 private:
 LwpObjectID m_BasedOnStyle;
+LwpLayoutGeometry* Geometry();
 protected:
 enum
 {
@@ -381,6 +390,7 @@ protected:
 LwpObjectID m_LayBorderStuff;
 LwpObjectID m_LayBackgroundStuff;
 LwpObjectID m_LayExtBorderStuff;
+boolm_bGettingGeometry;
 public:
 LwpObjectID& GetContent() { return m_Content; }
 LwpTabOverride* GetTabOverride();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 90382] Regression in LibO 4.3.6.1 on sending document by mail

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90382

br...@victoria.frmug.org changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |FIXED

--- Comment #12 from br...@victoria.frmug.org ---
This seems to now be working fine with Mageia 5 and LO 4.4.6.3 so I close that
BR.

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


[Libreoffice-bugs] [Bug 90724] ACCESSIBILITY: Speak the footnotes

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90724

Joanmarie Diggs  changed:

   What|Removed |Added

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

--- Comment #7 from Joanmarie Diggs  ---
Marking this as a dup of bug 96481 (in which I describe some possible solutions
which will make it possible for me to add the needed support in Orca for
annotations, including footnotes).

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

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


[Libreoffice-bugs] [Bug 96481] Connect annotations to the paragraphs they describe

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96481

Joanmarie Diggs  changed:

   What|Removed |Added

 CC||te...@accelibreinfo.eu

--- Comment #3 from Joanmarie Diggs  ---
*** Bug 90724 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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96657] The drag and zoom tool does not show the selection area rectangle anymore

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96657

Beluga  changed:

   What|Removed |Added

 Blocks||93529

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


[Libreoffice-bugs] [Bug 96657] The drag and zoom tool does not show the selection area rectangle anymore

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96657

--- Comment #3 from Andy  ---
I am sorry, but I do not fully understand what kind of details I should
provide.
The tool we are talking about is the one indicated by Beluga.
Using it, you drag a rectangle with the mouse on the page you're editing of any
size and position, and after you release the mouse button the zoom is set to a
factor that shows the rectangle content as big as possible, provided the whole
rectangle content stays visible.
To me, this the most efficient way to zoom in in most cases.
However, its use depends on the fact that while dragging the mouse you can see
a temporary dotted rectangle that allows you to see clearly what you will
enlarge. Of course this rectangle will disappear when you release the mouse
button
At the moment, using the tool in 5.1.0.1 the rectangle never appears.
And yes, I had openGL on when I tried it... in the meantime I was told that
openGL is the problem also with zoom slider visualization corruption (see bug
96655).
Unfortunately, since OpenGL did not give any problem to me in many years, I did
not fathom that is was now going to be troublesome.
At the moment, I am sorry but I do not have 5.1.0.1 installed anymore, since
the numerous problems it showed made it pretty much unusable; I filed 6 bugs
reports on it then downgraded.

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


[Libreoffice-bugs] [Bug 36549] ACCESSIBILITY: Tracking bug for issues affecting a11y ATK and GNOME Orca screen reader support

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=36549
Bug 36549 depends on bug 75191, which changed state.

Bug 75191 Summary: ACCESSIBILITY: remove deprecated atk_role_register
https://bugs.documentfoundation.org/show_bug.cgi?id=75191

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-bugs] [Bug 75191] ACCESSIBILITY: remove deprecated atk_role_register

2015-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75191

Jacobo Aragunde Pérez  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 93/96ecb77711fb7da043f9865f9803a12d830daa

2015-12-28 Thread Caolán McNamara
 93/96ecb77711fb7da043f9865f9803a12d830daa |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 04750bf47a7ac6f1d20f17aef2389740daf55e20
Author: Caolán McNamara 
Date:   Mon Dec 28 12:59:18 2015 +

Notes added by 'git notes add'

diff --git a/93/96ecb77711fb7da043f9865f9803a12d830daa 
b/93/96ecb77711fb7da043f9865f9803a12d830daa
new file mode 100644
index 000..3b8ace3
--- /dev/null
+++ b/93/96ecb77711fb7da043f9865f9803a12d830daa
@@ -0,0 +1 @@
+merged as: 4b57845388624251b121a3198ea9117a2b81ba14
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


  1   2   >