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

2016-03-10 Thread Caolán McNamara
 avmedia/source/gstreamer/gstplayer.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 0a48ffb81c62f804d5c9d7f2dd1332385849d7ee
Author: Caolán McNamara 
Date:   Thu Mar 10 14:05:37 2016 +

fix for 10 sec hang with audio-only formats with gstreamer1

just do the same as we did for gstreamer 0.10 and set the
size found condition once we get the message even if there is no size

Change-Id: I826d76dd1097432e5bd33d4acc1a187b8e5068da
(cherry picked from commit 702790258c6b3ec05ce04f7c2839a48776381535)
Reviewed-on: https://gerrit.libreoffice.org/23119
Tested-by: Jenkins 
Reviewed-by: David Tardon 

diff --git a/avmedia/source/gstreamer/gstplayer.cxx 
b/avmedia/source/gstreamer/gstplayer.cxx
index d12e8e9..b820ae1 100644
--- a/avmedia/source/gstreamer/gstplayer.cxx
+++ b/avmedia/source/gstreamer/gstplayer.cxx
@@ -549,11 +549,12 @@ GstBusSyncReply Player::processSyncMessage( GstMessage 
*message )
 
 DBG( "queried size: %d x %d", mnWidth, mnHeight );
 
-maSizeCondition.set();
 }
 gst_caps_unref( caps );
 g_object_unref( pad );
 }
+
+maSizeCondition.set();
 }
 #endif
 } else if (gst_is_missing_plugin_message(message)) {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-03-10 Thread Caolán McNamara
 avmedia/source/gstreamer/gstplayer.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 5fdfacd425d71c85aa6a74a72d607e2cb7658e86
Author: Caolán McNamara 
Date:   Thu Mar 10 14:05:37 2016 +

fix for 10 sec hang with audio-only formats with gstreamer1

just do the same as we did for gstreamer 0.10 and set the
size found condition once we get the message even if there is no size

Change-Id: I826d76dd1097432e5bd33d4acc1a187b8e5068da
(cherry picked from commit 702790258c6b3ec05ce04f7c2839a48776381535)
Reviewed-on: https://gerrit.libreoffice.org/23118
Tested-by: Jenkins 
Reviewed-by: David Tardon 

diff --git a/avmedia/source/gstreamer/gstplayer.cxx 
b/avmedia/source/gstreamer/gstplayer.cxx
index a5a6c2f..310cf9b 100644
--- a/avmedia/source/gstreamer/gstplayer.cxx
+++ b/avmedia/source/gstreamer/gstplayer.cxx
@@ -555,11 +555,12 @@ GstBusSyncReply Player::processSyncMessage( GstMessage 
*message )
 
 SAL_INFO( "avmedia.gstreamer", AVVERSION "queried size: " 
<< mnWidth << "x" << mnHeight );
 
-maSizeCondition.set();
 }
 gst_caps_unref( caps );
 g_object_unref( pad );
 }
+
+maSizeCondition.set();
 }
 #endif
 } else if (gst_is_missing_plugin_message(message)) {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-03-10 Thread Tor Lillqvist
 sc/qa/unit/tiledrendering/tiledrendering.cxx |6 ++
 1 file changed, 6 insertions(+)

New commits:
commit 32e70912a20dc066dd1575e71b18de432a56b135
Author: Tor Lillqvist 
Date:   Fri Mar 11 09:49:09 2016 +0200

loplugin:unreffun

Change-Id: If96188840ea0d230869a6af8c1aa366dca6a8275

diff --git a/sc/qa/unit/tiledrendering/tiledrendering.cxx 
b/sc/qa/unit/tiledrendering/tiledrendering.cxx
index e5154d8..ecfd605 100644
--- a/sc/qa/unit/tiledrendering/tiledrendering.cxx
+++ b/sc/qa/unit/tiledrendering/tiledrendering.cxx
@@ -58,9 +58,11 @@ public:
 private:
 #if !defined(WNT) && !defined(MACOSX)
 ScModelObj* createDoc(const char* pName);
+#if 0
 static void callback(int nType, const char* pPayload, void* pData);
 void callbackImpl(int nType, const char* pPayload);
 #endif
+#endif
 
 uno::Reference mxComponent;
 #if !defined(WNT) && !defined(MACOSX)
@@ -102,10 +104,12 @@ ScModelObj* ScTiledRenderingTest::createDoc(const char* 
pName)
 return pModelObj;
 }
 
+#if 0
 void ScTiledRenderingTest::callback(int nType, const char* pPayload, void* 
pData)
 {
 static_cast(pData)->callbackImpl(nType, pPayload);
 }
+#endif
 
 /* TODO when needed...
 static std::vector lcl_convertSeparated(const OUString& rString, 
sal_Unicode nSeparator)
@@ -136,6 +140,7 @@ static void lcl_convertRectangle(const OUString& rString, 
Rectangle& rRectangle)
 }
 */
 
+#if 0
 void ScTiledRenderingTest::callbackImpl(int /*nType*/, const char* 
/*pPayload*/)
 {
 // TODO when needed...
@@ -143,6 +148,7 @@ void ScTiledRenderingTest::callbackImpl(int /*nType*/, 
const char* /*pPayload*/)
 //{
 //}
 }
+#endif
 
 void ScTiledRenderingTest::testSortAscendingDescending()
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98337] Deployment doesn't work with 5.1.0.3 (working with 5.0.x)

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

mk...@azad.ch changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from mk...@azad.ch ---
Hi Buovjaga,

Deployed with the following command:
\\fileserver\ir$\24\LibreOffice_5.1.0_Win_x64.msi ADDLOCAL=ALL
CREATEDESKTOPLINKE=0 REGISTER_ALL_SMO_TYPES=1 REMOVE=gm_o_Onlineupdate
RebootYesNo=No

For deployment itself ManageEngine DesktopCentral is used, but I think its just
a remote command like psexec used...

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


[Libreoffice-commits] core.git: 2 commits - sc/qa starmath/qa

2016-03-10 Thread Tor Lillqvist
 sc/qa/unit/helper/qahelper.cxx|2 +-
 starmath/qa/extras/mmlimport-test.cxx |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit c914b6ccf1e2f7d4f7edc2ac6c502e5327dfe0ca
Author: Tor Lillqvist 
Date:   Fri Mar 11 09:29:09 2016 +0200

loplugin:redundantcast

Change-Id: I08d68a1ff4e798d1cace56fa18c7f70a48eb6231

diff --git a/starmath/qa/extras/mmlimport-test.cxx 
b/starmath/qa/extras/mmlimport-test.cxx
index 19f9f27..6a81acf 100644
--- a/starmath/qa/extras/mmlimport-test.cxx
+++ b/starmath/qa/extras/mmlimport-test.cxx
@@ -53,7 +53,7 @@ private:
OUString(),
OUString(),
"private:factory/smath*"));
-
const_cast(pFilter.get())->SetVersion(SOFFICE_FILEFORMAT_60);
+pFilter.get()->SetVersion(SOFFICE_FILEFORMAT_60);
 
 mxDocShell = new SmDocShell(SfxModelFlags::EMBEDDED_OBJECT |
 SfxModelFlags::DISABLE_EMBEDDED_SCRIPTS |
commit 53e8f648654a8d7404bbc3049328baa65473fb80
Author: Tor Lillqvist 
Date:   Fri Mar 11 09:27:42 2016 +0200

loplugin:redundantcast

Change-Id: Ia31f94cd55f16769d8354812619a5faac4623f7a

diff --git a/sc/qa/unit/helper/qahelper.cxx b/sc/qa/unit/helper/qahelper.cxx
index e94adc5..ad32a20 100644
--- a/sc/qa/unit/helper/qahelper.cxx
+++ b/sc/qa/unit/helper/qahelper.cxx
@@ -681,7 +681,7 @@ std::shared_ptr 
ScBootstrapFixture::exportTo( ScDocShell* pShell,
 aFilterName,
 OUString(), nFormatType, nExportFormat, aFilterType, 0, OUString(),
 OUString(), OUString("private:factory/scalc*") ));
-
const_cast(pExportFilter.get())->SetVersion(SOFFICE_FILEFORMAT_CURRENT);
+pExportFilter.get()->SetVersion(SOFFICE_FILEFORMAT_CURRENT);
 aStoreMedium.SetFilter(pExportFilter);
 pShell->DoSaveAs( aStoreMedium );
 pShell->DoClose();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-03-10 Thread Takeshi Abe
 starmath/source/ElementsDockingWindow.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d31df8fb80ee7408b9c79ffd7acaf2561f75432d
Author: Takeshi Abe 
Date:   Tue Feb 16 17:33:59 2016 +0900

starmath: Make examples of exponential function consistent

... by prefixing "func" so that it is the same as Exponential Function
in Functions of the Elements window (RID_EX in commands.src).

Change-Id: I823c345a0f376f0679930aa7975bdeb03575cd43
Reviewed-on: https://gerrit.libreoffice.org/22389
Tested-by: Jenkins 
Reviewed-by: jan iversen 

diff --git a/starmath/source/ElementsDockingWindow.cxx 
b/starmath/source/ElementsDockingWindow.cxx
index feb89f1..86266d6 100644
--- a/starmath/source/ElementsDockingWindow.cxx
+++ b/starmath/source/ElementsDockingWindow.cxx
@@ -668,7 +668,7 @@ void SmElementsControl::build()
 addElement(aEquation, aEquation, "");
 aEquation = "f ( x ) = sum from { { i = 0 } } to { infinity } { 
{f^{(i)}(0)} over {i!} x^i}";
 addElement(aEquation, aEquation, "");
-aEquation = "f ( x ) = {1} over {%sigma sqrt{2%pi} 
}e^-{{(x-%mu)^2} over {2%sigma^2}}";
+aEquation = "f ( x ) = {1} over {%sigma sqrt{2%pi} }func 
e^-{{(x-%mu)^2} over {2%sigma^2}}";
 addElement(aEquation, aEquation, "");
 }
 break;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: minutes of ESC call ...

2016-03-10 Thread David Ostrovsky
Hi Lionel,

adding Christian to the CC.

On Fri, 2016-03-11 at 07:57 +0100, Lionel Elie Mamane wrote:
> On Fri, Mar 11, 2016 at 07:30:54AM +0100, David Ostrovsky wrote:
> > On Fri, 2016-03-11 at 06:45 +0100, Lionel Elie Mamane wrote:
> > > On Thu, Mar 10, 2016 at 07:28:58PM +0100, David Ostrovsky wrote:
> > > > On Thu Mar 10 16:40:50 UTC 2016, Michael Meeks wrote:
> > 
> > [...]
> > 
> > > > >+ decision needed: (Norbert)
> > > > >+ effort to support VS 2015
> > > > >+ not eager to turn it off.
> > > > > AI:=> regret; disable for now for CI (Norbert)
> > > 
> > > > (...) the FB devs rejected support for the new toolchain
> > > > (C++14/C++17) for the next 10 years (at least) because they
> > > > need
> > > > the
> > > > compatibility with WinXP (see the thread from their ML I
> > > > mentioned
> > > > in my previous mail).
> > > 

[...]

> > > then AFAICS we don't have a problem.
> 
> > I see it differently. Just in case, we dropped MSVC 2013 and the
> > LAST_VERSION_WITHIN_A_REASONABLE_TIMEFRAME = 10 years,
> 
> No, more like 1 year.
> 
> > 1/ How is LO 6,7,8,9,10, ... going to be released, after support
> > for
> > MSVC 2013 was discontinued on master?
> 
> ?

I've just approved this change: [1] and after confirmtaion from Norbert
that our CI infra was extended to support MSVC 2015, I will merge it.

How is the next LibreOffice release (5.2?) supposed to be built after
this change was merged, when FB cannot be built on MSVC 2015 toolchain?
And other releases during this 1 year (too optimistic assumption for
me, but still)?

@Christian, any comments on that from your side?

> > 2/ For all this time, that FB is not buildable on some platform(s),
> > but still in the tree
> 
> We will not let it like that for the timeframe that you mention.
> 
> > Can we try to answer my questions 1/ and 2/ above in next ESC
> > meeting?
> 
> If/when we have enough new information that a discussion at the ESC
> makes sense, would you like to participate at that ESC meeting?
> 

I will attend Gerrit developer Hackathon in Berlin next week, but I can
try to join you.

* [1] https://gerrit.libreoffice.org/22588

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


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

2016-03-10 Thread Julien Nabet
 cppu/source/typelib/typelib.cxx |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

New commits:
commit 05ff3d112b79202f393f9067fec4fe72f2d8ac3c
Author: Julien Nabet 
Date:   Thu Mar 10 22:05:57 2016 +0100

Let's use the iterator return by erase method of iterator list

and avoid to retrieve list->begin and loop from the first element

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

diff --git a/cppu/source/typelib/typelib.cxx b/cppu/source/typelib/typelib.cxx
index 254abd76..55ee766 100644
--- a/cppu/source/typelib/typelib.cxx
+++ b/cppu/source/typelib/typelib.cxx
@@ -354,12 +354,11 @@ extern "C" void SAL_CALL 
typelib_typedescription_revokeCallback(
 //  OslGuard aGuard( rInit.getMutex() );
 CallbackEntry aEntry( pContext, pCallback );
 CallbackSet_Impl::iterator iPos( rInit.pCallbacks->begin() );
-while (!(iPos == rInit.pCallbacks->end()))
+while (iPos != rInit.pCallbacks->end())
 {
 if (*iPos == aEntry)
 {
-rInit.pCallbacks->erase( iPos );
-iPos = rInit.pCallbacks->begin();
+iPos = rInit.pCallbacks->erase(iPos);
 }
 else
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: minutes of ESC call ...

2016-03-10 Thread Lionel Elie Mamane
On Fri, Mar 11, 2016 at 07:30:54AM +0100, David Ostrovsky wrote:
> On Fri, 2016-03-11 at 06:45 +0100, Lionel Elie Mamane wrote:
> > On Thu, Mar 10, 2016 at 07:28:58PM +0100, David Ostrovsky wrote:
> > > On Thu Mar 10 16:40:50 UTC 2016, Michael Meeks wrote:
> 
> [...]
> 
> > > >+ decision needed: (Norbert)
> > > >+ effort to support VS 2015
> > > >+ not eager to turn it off.
> > > > AI:=> regret; disable for now for CI (Norbert)
> > 
> > > (...) the FB devs rejected support for the new toolchain
> > > (C++14/C++17) for the next 10 years (at least) because they need
> > > the
> > > compatibility with WinXP (see the thread from their ML I mentioned
> > > in my previous mail).
> > 
> > I read that thread and I didn't see a rejection of compatibility with
> > a new toolchain. I saw a requirement for compatibility with an old
> > toolchain. If they intend (and do test it at least "for every
> > release") to:
> > 
> >  * be compatible with MSVC2013
> >  * build their binaries with MSVC2013
> >  * AND be compatible with

> Can you point me to this statement in this thread?

That was within the scope of an "if". We don't know if they intend
this to be the case. We need to clarify this. I will ask them.

>> MSVC${LAST_VERSION_WITHIN_A_REASONABLE_TIMEFRAME}

> You are missing one subtle delay here:

> TIME_NEEDED_THAT_A_HACKER_SHOWS_UP_AND_BUMP_CURRENT_FB_VERSION_TO_THE_R
> ECENT_ONE_THAT_SUPPORTS
> MSVC${LAST_VERSION_WITHIN_A_REASONABLE_TIMEFRAME}

This is true for any external written in any compiled (or even
interpreted) language that doesn't have perfect ascending
compatibility (so any language?)...

>> then AFAICS we don't have a problem.

> I see it differently. Just in case, we dropped MSVC 2013 and the
> LAST_VERSION_WITHIN_A_REASONABLE_TIMEFRAME = 10 years,

No, more like 1 year.

> 1/ How is LO 6,7,8,9,10, ... going to be released, after support for
> MSVC 2013 was discontinued on master?

?

> With disabled FB? Also disable it in release build on Mac (it's failing
> on recent toolchain there too)? Is this our vision for the (default)
> embedded database, to be buildable and shipped on only one platform for
> years (from major 3): linux? Really?

No, that can work only if Firebird compiles with an MSVC, clang
(and gcc I suppose) that suits us.


> 2/ For all this time, that FB is not buildable on some platform(s),
> but still in the tree

We will not let it like that for the timeframe that you mention.

> Can we try to answer my questions 1/ and 2/ above in next ESC
> meeting?

If/when we have enough new information that a discussion at the ESC
makes sense, would you like to participate at that ESC meeting?

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


[Libreoffice-bugs] [Bug 98515] File created with Libreoffice 4 does not open

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

--- Comment #3 from Stefan  ---
Renaming the libreoffice directory did not help. Now I tried to remove 5.1.0
and installed 4.5 on this PC, but it doesn't open the file either. So I guess
ther are some other settings on this PC preventing it from opening the file.
Any other ideas?

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


[Libreoffice-commits] core.git: cui/source dbaccess/source desktop/source extensions/source filter/source include/sfx2 include/vbahelper reportdesign/source sc/inc sc/qa sc/source sd/qa sd/source sfx2

2016-03-10 Thread Markus Mohrhard
 cui/source/dialogs/hldocntp.cxx   |2 
 cui/source/options/doclinkdialog.cxx  |2 
 dbaccess/source/ui/app/AppController.cxx  |4 
 dbaccess/source/ui/dlg/dbwizsetup.cxx |2 
 dbaccess/source/ui/dlg/generalpage.cxx|2 
 dbaccess/source/ui/inc/UITools.hxx|4 
 dbaccess/source/ui/misc/UITools.cxx   |4 
 desktop/source/app/dispatchwatcher.cxx|   12 -
 extensions/source/abpilot/abpfinalpage.cxx|6 
 extensions/source/dbpilots/commonpagesdbp.cxx |2 
 extensions/source/propctrlr/formcomponenthandler.cxx  |2 
 filter/source/msfilter/msdffimp.cxx   |2 
 filter/source/msfilter/msoleexp.cxx   |2 
 include/sfx2/docfac.hxx   |2 
 include/sfx2/docfile.hxx  |   13 -
 include/sfx2/docfilt.hxx  |8 
 include/sfx2/fcontnr.hxx  |   44 ++--
 include/sfx2/filedlghelper.hxx|4 
 include/vbahelper/vbaaccesshelper.hxx |2 
 reportdesign/source/core/api/ReportEngineJFree.cxx|2 
 reportdesign/source/ui/inspection/GeometryHandler.cxx |2 
 sc/inc/tablink.hxx|2 
 sc/qa/unit/helper/qahelper.cxx|   19 --
 sc/qa/unit/subsequent_export-test.cxx |6 
 sc/qa/unit/subsequent_filters-test.cxx|8 
 sc/source/ui/docshell/arealink.cxx|2 
 sc/source/ui/docshell/docsh.cxx   |4 
 sc/source/ui/docshell/docsh4.cxx  |2 
 sc/source/ui/docshell/externalrefmgr.cxx  |2 
 sc/source/ui/docshell/tablink.cxx |   12 -
 sc/source/ui/miscdlgs/linkarea.cxx|4 
 sc/source/ui/unoobj/scdetect.cxx  |2 
 sc/source/ui/view/viewfun4.cxx|4 
 sd/qa/unit/filters-test.cxx   |8 
 sd/qa/unit/sdmodeltestbase.hxx|   19 +-
 sd/source/core/drawdoc3.cxx   |4 
 sd/source/filter/xml/sdxmlwrp.cxx |2 
 sd/source/ui/dlg/navigatr.cxx |4 
 sd/source/ui/docshell/docshel4.cxx|6 
 sd/source/ui/func/fuinsfil.cxx|   10 -
 sd/source/ui/unoidl/sddetect.cxx  |2 
 sd/source/ui/view/sdview4.cxx |4 
 sfx2/inc/arrdecl.hxx  |3 
 sfx2/source/appl/appopen.cxx  |6 
 sfx2/source/appl/sfxpicklist.cxx  |2 
 sfx2/source/appl/shutdownicon.cxx |2 
 sfx2/source/bastyp/fltfnc.cxx |  165 --
 sfx2/source/dialog/dinfdlg.cxx|2 
 sfx2/source/dialog/filedlghelper.cxx  |   23 +-
 sfx2/source/dialog/filedlgimpl.hxx|6 
 sfx2/source/dialog/filtergrouping.cxx |   16 -
 sfx2/source/dialog/filtergrouping.hxx |7 
 sfx2/source/doc/docfac.cxx|7 
 sfx2/source/doc/docfile.cxx   |   26 +-
 sfx2/source/doc/docfilt.cxx   |   10 -
 sfx2/source/doc/docinsert.cxx |8 
 sfx2/source/doc/objcont.cxx   |2 
 sfx2/source/doc/objserv.cxx   |4 
 sfx2/source/doc/objstor.cxx   |   22 +-
 sfx2/source/doc/sfxbasemodel.cxx  |   10 -
 sfx2/source/doc/templatedlg.cxx   |2 
 sfx2/source/view/frame.cxx|2 
 sfx2/source/view/frmload.cxx  |   18 -
 sfx2/source/view/viewfrm.cxx  |6 
 sfx2/source/view/viewprn.cxx  |2 
 starmath/qa/extras/mmlimport-test.cxx |6 
 starmath/source/document.cxx  |2 
 starmath/source/view.cxx  |4 
 svx/source/unodraw/unoshap2.cxx   |4 
 sw/inc/dbmgr.hxx  |6 
 sw/inc/iodetect.hxx   |4 
 sw/qa/core/filters-test.cxx   |   12 -
 sw/qa/core/uwriter.cxx|6 
 sw/qa/extras/uiwriter/uiwriter.cxx|   12 -
 sw/source/core/doc/docglbl.cxx|2 
 sw/source/core/unocore/unocrsrhelper.cxx  |4 
 sw/source/filter/basflt/iodetect.cxx  |   10 -
 sw/source/ui/config/optcomp.cxx   |2 
 sw/source/ui/dbui/mmdocselectpage.cxx

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

2016-03-10 Thread Markus Mohrhard
 sc/qa/unit/helper/qahelper.cxx |   13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

New commits:
commit fb827f2a342602f7e62dbdebb638326193315eb6
Author: Markus Mohrhard 
Date:   Fri Mar 11 02:58:17 2016 +0100

fix a few memory leaks in the calc test framework

Change-Id: Ic32d31913f40636e2b579d46ecf287110090772b
Reviewed-on: https://gerrit.libreoffice.org/23139
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sc/qa/unit/helper/qahelper.cxx b/sc/qa/unit/helper/qahelper.cxx
index c4df244..031f6bb 100644
--- a/sc/qa/unit/helper/qahelper.cxx
+++ b/sc/qa/unit/helper/qahelper.cxx
@@ -539,6 +539,7 @@ ScDocShellRef ScBootstrapFixture::load( bool bReadWrite,
 const OUString& rTypeName, SfxFilterFlags nFilterFlags, 
SotClipboardFormatId nClipboardID,
 sal_uIntPtr nFilterVersion, const OUString* pPassword )
 {
+// TODO: will currently leak the pFilter instance
 SfxFilter* pFilter = new SfxFilter(
 rFilter,
 OUString(), nFilterFlags, nClipboardID, rTypeName, 0, OUString(),
@@ -631,12 +632,12 @@ ScDocShellRef ScBootstrapFixture::saveAndReload(
 SotClipboardFormatId nExportFormat = SotClipboardFormatId::NONE;
 if (nFormatType == ODS_FORMAT_TYPE)
 nExportFormat = SotClipboardFormatId::STARCHART_8;
-SfxFilter* pExportFilter = new SfxFilter(
+std::unique_ptr pExportFilter(new SfxFilter(
 rFilter,
 OUString(), nFormatType, nExportFormat, rTypeName, 0, OUString(),
-rUserData, OUString("private:factory/scalc*") );
+rUserData, OUString("private:factory/scalc*") ));
 pExportFilter->SetVersion(SOFFICE_FILEFORMAT_CURRENT);
-aStoreMedium.SetFilter(pExportFilter);
+aStoreMedium.SetFilter(pExportFilter.get());
 pShell->DoSaveAs( aStoreMedium );
 pShell->DoClose();
 
@@ -677,12 +678,12 @@ std::shared_ptr 
ScBootstrapFixture::exportTo( ScDocShell* pShell,
 SfxFilterFlags nFormatType = aFileFormats[nFormat].nFormatType;
 if (nFormatType == ODS_FORMAT_TYPE)
 nExportFormat = SotClipboardFormatId::STARCHART_8;
-SfxFilter* pExportFilter = new SfxFilter(
+std::unique_ptr pExportFilter(new SfxFilter(
 aFilterName,
 OUString(), nFormatType, nExportFormat, aFilterType, 0, OUString(),
-OUString(), OUString("private:factory/scalc*") );
+OUString(), OUString("private:factory/scalc*") ));
 pExportFilter->SetVersion(SOFFICE_FILEFORMAT_CURRENT);
-aStoreMedium.SetFilter(pExportFilter);
+aStoreMedium.SetFilter(pExportFilter.get());
 pShell->DoSaveAs( aStoreMedium );
 pShell->DoClose();
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-03-10 Thread Markus Mohrhard
 sc/qa/unit/helper/xpath.cxx   |6 +-
 sc/qa/unit/helper/xpath.hxx   |   17 +
 sc/qa/unit/subsequent_export-test.cxx |   13 -
 3 files changed, 26 insertions(+), 10 deletions(-)

New commits:
commit 63bb0e891e94206bbd50c657bca8661d135ef5e6
Author: Markus Mohrhard 
Date:   Fri Mar 11 02:31:05 2016 +0100

allow to call xpath expression on different files in container

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

diff --git a/sc/qa/unit/helper/xpath.cxx b/sc/qa/unit/helper/xpath.cxx
index 43dafa3..8056d4d 100644
--- a/sc/qa/unit/helper/xpath.cxx
+++ b/sc/qa/unit/helper/xpath.cxx
@@ -12,7 +12,6 @@
 #include 
 #include "qahelper.hxx"
 
-#include 
 #include 
 
 #include 
@@ -23,6 +22,11 @@ xmlDocPtr XPathHelper::parseExport(ScDocShell& rShell, 
uno::Reference pTempFile = 
ScBootstrapFixture::exportTo(, nFormat);
 
+return parseExport(pTempFile, xSFactory, rFile);
+}
+
+xmlDocPtr XPathHelper::parseExport(std::shared_ptr pTempFile, 
uno::Reference xSFactory, const OUString& rFile)
+{
 // Read the XML stream we're interested in.
 uno::Reference xNameAccess = 
packages::zip::ZipFileAccess::createWithURL(comphelper::getComponentContext(xSFactory),
 pTempFile->GetURL());
 uno::Reference 
xInputStream(xNameAccess->getByName(rFile), uno::UNO_QUERY);
diff --git a/sc/qa/unit/helper/xpath.hxx b/sc/qa/unit/helper/xpath.hxx
index d45fc76..f53f927 100644
--- a/sc/qa/unit/helper/xpath.hxx
+++ b/sc/qa/unit/helper/xpath.hxx
@@ -12,12 +12,16 @@
 
 #include 
 
+#include 
+
 #include 
 #include 
 
 #include 
 #include 
 
+#include 
+
 #if defined(SCQAHELPER_DLLIMPLEMENTATION)
 #define SCQAHELPER_DLLPUBLIC  SAL_DLLPUBLIC_EXPORT
 #else
@@ -35,9 +39,22 @@ namespace XPathHelper
  * test the resulting file directly, by opening the zip file, parsing an
  * xml stream, and asserting an XPath expression. This method returns the
  * xml stream, so that you can do the asserting.
+ *
+ * Warning: This method saves the document and does not export it! If you 
need to
+ *  test several files in the same exported xml file you need to 
export the file manually
+ *  and call the parseExport method that takes a TempFile
  */
 SCQAHELPER_DLLPUBLIC xmlDocPtr parseExport(ScDocShell& rShell, 
uno::Reference< lang::XMultiServiceFactory> xSFactory,
 const OUString& rFile, sal_Int32 nFormat);
+
+/**
+ * Tries to parse the specified file in the temp file zip container as an 
xml file.
+ *
+ * Should be used when the same exported file is used for testing 
different files in
+ * the same zip file.
+ */
+SCQAHELPER_DLLPUBLIC xmlDocPtr parseExport(std::shared_ptr 
pTempFile, uno::Reference< lang::XMultiServiceFactory> xSFactory,
+const OUString& rFile);
 }
 
 #endif
diff --git a/sc/qa/unit/subsequent_export-test.cxx 
b/sc/qa/unit/subsequent_export-test.cxx
index cf13dcb..1228ada 100644
--- a/sc/qa/unit/subsequent_export-test.cxx
+++ b/sc/qa/unit/subsequent_export-test.cxx
@@ -1100,20 +1100,15 @@ void ScExportTest::testRichTextCellFormat()
 ScDocShellRef xDocSh = loadDoc("cellformat.", FORMAT_XLS);
 CPPUNIT_ASSERT(xDocSh.Is());
 
-xmlDocPtr pSheet = XPathHelper::parseExport(*xDocSh, m_xSFactory, 
"xl/worksheets/sheet1.xml", FORMAT_XLSX);
+std::shared_ptr pXPathFile = 
ScBootstrapFixture::exportTo(&(*xDocSh), FORMAT_XLSX);
+xmlDocPtr pSheet = XPathHelper::parseExport(pXPathFile, m_xSFactory, 
"xl/worksheets/sheet1.xml");
 CPPUNIT_ASSERT(pSheet);
 
 // make sure the only cell in this doc is assigned some formatting record
 OUString aCellFormat = getXPath(pSheet, 
"/x:worksheet/x:sheetData/x:row/x:c", "s");
 CPPUNIT_ASSERT_MESSAGE("Cell format is missing", !aCellFormat.isEmpty());
 
-xDocSh->DoClose();
-//FIXME: this shouldn't be necessary, but for some reason 2nd and every 
consecutive call
-//to parseExport() (different stream name within the same doc, of course) 
doesn't find
-//the stream anymore. I have neither knowledge nor time to debug it
-ScDocShellRef xNewDocSh = loadDoc("cellformat.", FORMAT_XLS);
-
-xmlDocPtr pStyles = XPathHelper::parseExport(*xNewDocSh, m_xSFactory, 
"xl/styles.xml", FORMAT_XLSX);
+xmlDocPtr pStyles = XPathHelper::parseExport(pXPathFile, m_xSFactory, 
"xl/styles.xml");
 CPPUNIT_ASSERT(pStyles);
 
 OString nFormatIdx = OString::number( aCellFormat.toInt32() + 1 );
@@ -1130,7 +1125,7 @@ void ScExportTest::testRichTextCellFormat()
 const OString xPath3("/x:styleSheet/x:fonts/x:font[" + nFontIdx + "]/x:b");
 assertXPath(pStyles, xPath3, "val", "true");
 
-xNewDocSh->DoClose();
+xDocSh->DoClose();
 }
 
 void ScExportTest::testFormulaRefSheetNameODS()

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

2016-03-10 Thread Markus Mohrhard
 sc/qa/unit/helper/xpath.cxx   |4 ++--
 sc/qa/unit/helper/xpath.hxx   |2 +-
 sc/qa/unit/subsequent_export-test.cxx |   30 +++---
 3 files changed, 18 insertions(+), 18 deletions(-)

New commits:
commit a63c9c5de4de41d7b27fcee2c5e403145c970002
Author: Markus Mohrhard 
Date:   Fri Mar 11 01:32:26 2016 +0100

just take a reference

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

diff --git a/sc/qa/unit/helper/xpath.cxx b/sc/qa/unit/helper/xpath.cxx
index 78b48dd..43dafa3 100644
--- a/sc/qa/unit/helper/xpath.cxx
+++ b/sc/qa/unit/helper/xpath.cxx
@@ -19,9 +19,9 @@
 
 #include 
 
-xmlDocPtr XPathHelper::parseExport(ScDocShell* pShell, 
uno::Reference xSFactory, const OUString& rFile, 
sal_Int32 nFormat)
+xmlDocPtr XPathHelper::parseExport(ScDocShell& rShell, 
uno::Reference xSFactory, const OUString& rFile, 
sal_Int32 nFormat)
 {
-std::shared_ptr pTempFile = 
ScBootstrapFixture::exportTo(pShell, nFormat);
+std::shared_ptr pTempFile = 
ScBootstrapFixture::exportTo(, nFormat);
 
 // Read the XML stream we're interested in.
 uno::Reference xNameAccess = 
packages::zip::ZipFileAccess::createWithURL(comphelper::getComponentContext(xSFactory),
 pTempFile->GetURL());
diff --git a/sc/qa/unit/helper/xpath.hxx b/sc/qa/unit/helper/xpath.hxx
index dedd929..d45fc76 100644
--- a/sc/qa/unit/helper/xpath.hxx
+++ b/sc/qa/unit/helper/xpath.hxx
@@ -36,7 +36,7 @@ namespace XPathHelper
  * xml stream, and asserting an XPath expression. This method returns the
  * xml stream, so that you can do the asserting.
  */
-SCQAHELPER_DLLPUBLIC xmlDocPtr parseExport(ScDocShell* pShell, 
uno::Reference< lang::XMultiServiceFactory> xSFactory,
+SCQAHELPER_DLLPUBLIC xmlDocPtr parseExport(ScDocShell& rShell, 
uno::Reference< lang::XMultiServiceFactory> xSFactory,
 const OUString& rFile, sal_Int32 nFormat);
 }
 
diff --git a/sc/qa/unit/subsequent_export-test.cxx 
b/sc/qa/unit/subsequent_export-test.cxx
index 2bc7a18d..cf13dcb 100644
--- a/sc/qa/unit/subsequent_export-test.cxx
+++ b/sc/qa/unit/subsequent_export-test.cxx
@@ -1100,7 +1100,7 @@ void ScExportTest::testRichTextCellFormat()
 ScDocShellRef xDocSh = loadDoc("cellformat.", FORMAT_XLS);
 CPPUNIT_ASSERT(xDocSh.Is());
 
-xmlDocPtr pSheet = XPathHelper::parseExport(&(*xDocSh), m_xSFactory, 
"xl/worksheets/sheet1.xml", FORMAT_XLSX);
+xmlDocPtr pSheet = XPathHelper::parseExport(*xDocSh, m_xSFactory, 
"xl/worksheets/sheet1.xml", FORMAT_XLSX);
 CPPUNIT_ASSERT(pSheet);
 
 // make sure the only cell in this doc is assigned some formatting record
@@ -1113,7 +1113,7 @@ void ScExportTest::testRichTextCellFormat()
 //the stream anymore. I have neither knowledge nor time to debug it
 ScDocShellRef xNewDocSh = loadDoc("cellformat.", FORMAT_XLS);
 
-xmlDocPtr pStyles = XPathHelper::parseExport(&(*xNewDocSh), m_xSFactory, 
"xl/styles.xml", FORMAT_XLSX);
+xmlDocPtr pStyles = XPathHelper::parseExport(*xNewDocSh, m_xSFactory, 
"xl/styles.xml", FORMAT_XLSX);
 CPPUNIT_ASSERT(pStyles);
 
 OString nFormatIdx = OString::number( aCellFormat.toInt32() + 1 );
@@ -2162,7 +2162,7 @@ void ScExportTest::testRelativePaths()
 ScDocShellRef xDocSh = loadDoc("fdo79305.", FORMAT_ODS);
 CPPUNIT_ASSERT(xDocSh.Is());
 
-xmlDocPtr pDoc = XPathHelper::parseExport(&(*xDocSh), m_xSFactory, 
"content.xml", FORMAT_ODS);
+xmlDocPtr pDoc = XPathHelper::parseExport(*xDocSh, m_xSFactory, 
"content.xml", FORMAT_ODS);
 CPPUNIT_ASSERT(pDoc);
 OUString aURL = getXPath(pDoc,
 
"/office:document-content/office:body/office:spreadsheet/table:table/table:table-row[2]/table:table-cell[2]/text:p/text:a",
 "href");
@@ -2720,7 +2720,7 @@ void ScExportTest::testSheetTextBoxHyperlink()
 ScDocShellRef xDocSh = saveAndReload(&(*xShell), FORMAT_XLSX);
 CPPUNIT_ASSERT(xDocSh.Is());
 
-xmlDocPtr pDoc = XPathHelper::parseExport(&(*xDocSh), m_xSFactory, 
"xl/drawings/drawing1.xml", FORMAT_XLSX);
+xmlDocPtr pDoc = XPathHelper::parseExport(*xDocSh, m_xSFactory, 
"xl/drawings/drawing1.xml", FORMAT_XLSX);
 CPPUNIT_ASSERT(pDoc);
 
 assertXPath(pDoc, 
"/xdr:wsDr[1]/xdr:twoCellAnchor[1]/xdr:sp[1]/xdr:nvSpPr[1]/xdr:cNvPr[1]/a:hlinkClick[1]",
 1);
@@ -2733,7 +2733,7 @@ void ScExportTest::testFontSize()
 ScDocShellRef xDocSh = loadDoc("fontSize.", FORMAT_XLSX);
 CPPUNIT_ASSERT(xDocSh.Is());
 
-xmlDocPtr pDoc = XPathHelper::parseExport(&(*xDocSh), m_xSFactory, 
"xl/drawings/drawing1.xml", FORMAT_XLSX);
+xmlDocPtr pDoc = XPathHelper::parseExport(*xDocSh, m_xSFactory, 
"xl/drawings/drawing1.xml", FORMAT_XLSX);
 CPPUNIT_ASSERT(pDoc);
 OUString fontSize = getXPath(pDoc,
 

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

2016-03-10 Thread Markus Mohrhard
 sc/source/filter/xcl97/XclExpChangeTrack.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 1a474b37ef155ad640633bcffb0c7eaee0009243
Author: Markus Mohrhard 
Date:   Fri Mar 11 02:31:45 2016 +0100

add assert to prevent memory leak

This is on my way of tracking a nasty memory leak in the change tracking
export code.

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

diff --git a/sc/source/filter/xcl97/XclExpChangeTrack.cxx 
b/sc/source/filter/xcl97/XclExpChangeTrack.cxx
index bc23c54..9e9ccc2 100644
--- a/sc/source/filter/xcl97/XclExpChangeTrack.cxx
+++ b/sc/source/filter/xcl97/XclExpChangeTrack.cxx
@@ -1544,6 +1544,7 @@ ScChangeTrack* XclExpChangeTrack::CreateTempChangeTrack()
 if( !pOrigChangeTrack )
 return nullptr;
 
+assert(!pTempDoc);
 // create empty document
 pTempDoc = new ScDocument;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98596] New: Missing font adornments in OTF

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

Bug ID: 98596
   Summary: Missing font adornments in OTF
   Product: LibreOffice
   Version: 4.3.7.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: graphics stack
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gre...@p0f.net

Created attachment 123487
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123487=edit
The list of font styles in the font selection dialog

I have the following OTF font family installed, a total of 51 styles and faces:

$ fc-list | grep Helvetica
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-Bd.otf: Helvetica Neue LT
Pro,HelveticaNeueLT Pro 55 Roman:style=75 Bold,Bold
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-UltLtExO.otf: Helvetica
Neue LT Pro,HelveticaNeueLT Pro 23 UltLtEx:style=23 Ultra Light Extended
Oblique,Italic
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-BdExO.otf: Helvetica Neue
LT Pro,HelveticaNeueLT Pro 53 Ex:style=73 Bold Extended Oblique,Bold Italic
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-HvCnO.otf: Helvetica Neue
LT Pro,HelveticaNeueLT Pro 67 MdCn:style=87 Heavy Condensed Oblique,Bold Italic
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-It.otf: Helvetica Neue LT
Pro,HelveticaNeueLT Pro 55 Roman:style=56 Italic,Italic
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-LtIt.otf: Helvetica Neue
LT Pro,HelveticaNeueLT Pro 45 Lt:style=46 Light Italic,Italic
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-XBlkCnO.otf: Helvetica
Neue LT Pro,HelveticaNeueLT Pro 107 XBlkCn:style=107 Extra Black Condensed
Oblique,Italic
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-MdExO.otf: Helvetica Neue
LT Pro,HelveticaNeueLT Pro 63 MdEx:style=63 Medium Extended Oblique,Italic
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-ThExO.otf: Helvetica Neue
LT Pro,HelveticaNeueLT Pro 33 ThEx:style=33 Thin Extended Oblique,Italic
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-Hv.otf: Helvetica Neue LT
Pro,HelveticaNeueLT Pro 65 Md:style=85 Heavy,Bold
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-BlkIt.otf: Helvetica Neue
LT Pro,HelveticaNeueLT Pro 95 Blk:style=96 Black Italic,Italic
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-Md.otf: Helvetica Neue LT
Pro,HelveticaNeueLT Pro 65 Md:style=65 Medium,Regular
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-UltLtCn.otf: Helvetica
Neue LT Pro,HelveticaNeueLT Pro 27 UltLtCn:style=27 Ultra Light
Condensed,Regular
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-BdIt.otf: Helvetica Neue
LT Pro,HelveticaNeueLT Pro 55 Roman:style=76 Bold Italic,Bold Italic
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-UltLt.otf: Helvetica Neue
LT Pro,HelveticaNeueLT Pro 25 UltLt:style=25 Ultra Light,Regular
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-HvIt.otf: Helvetica Neue
LT Pro,HelveticaNeueLT Pro 65 Md:style=86 Heavy Italic,Bold Italic
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-XBlkCn.otf: Helvetica Neue
LT Pro,HelveticaNeueLT Pro 107 XBlkCn:style=107 Extra Black Condensed,Regular
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-ExO.otf: Helvetica Neue LT
Pro,HelveticaNeueLT Pro 53 Ex:style=53 Extended Oblique,Italic
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-Lt.otf: Helvetica Neue LT
Pro,HelveticaNeueLT Pro 45 Lt:style=45 Light,Regular
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-Roman.otf: Helvetica Neue
LT Pro,HelveticaNeueLT Pro 55 Roman:style=55 Roman,Regular
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-MdEx.otf: Helvetica Neue
LT Pro,HelveticaNeueLT Pro 63 MdEx:style=63 Medium Extended,Regular
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-Ex.otf: Helvetica Neue LT
Pro,HelveticaNeueLT Pro 53 Ex:style=53 Extended,Regular
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-UltLtIt.otf: Helvetica
Neue LT Pro,HelveticaNeueLT Pro 25 UltLt:style=26 Ultra Light Italic,Italic
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-ThCnO.otf: Helvetica Neue
LT Pro,HelveticaNeueLT Pro 37 ThCn:style=37 Thin Condensed Oblique,Italic
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-BdEx.otf: Helvetica Neue
LT Pro,HelveticaNeueLT Pro 53 Ex:style=73 Bold Extended,Bold
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-BlkExO.otf: Helvetica Neue
LT Pro,HelveticaNeueLT Pro 93 BlkEx:style=93 Black Extended Oblique,Italic
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-HvEx.otf: Helvetica Neue
LT Pro,HelveticaNeueLT Pro 63 MdEx:style=83 Heavy Extended,Bold
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-BdCn.otf: Helvetica Neue
LT Pro,HelveticaNeueLT Pro 57 Cn:style=77 Bold Condensed,Bold
/usr/share/fonts/helvetica-nltpro/HelveticaNeueLTPro-Th.otf: Helvetica Neue LT
Pro,HelveticaNeueLT Pro 35 Th:style=35 Thin,Regular

[Libreoffice-bugs] [Bug 98217] Impress: Broken presentation mode (HiDPI)

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

raal  changed:

   What|Removed |Added

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

--- Comment #11 from raal  ---
Thanks for testing, closing the bug.

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


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

2016-03-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93529
Bug 93529 depends on bug 98217, which changed state.

Bug 98217 Summary: Impress: Broken presentation mode (HiDPI)
https://bugs.documentfoundation.org/show_bug.cgi?id=98217

   What|Removed |Added

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

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


Re: minutes of ESC call ...

2016-03-10 Thread David Ostrovsky
Hi Lionel,

On Fri, 2016-03-11 at 06:45 +0100, Lionel Elie Mamane wrote:
> On Thu, Mar 10, 2016 at 07:28:58PM +0100, David Ostrovsky wrote:
> > On Thu Mar 10 16:40:50 UTC 2016, Michael Meeks wrote:

[...]

> > >+ decision needed: (Norbert)
> > >+ effort to support VS 2015
> > >+ not eager to turn it off.
> > > AI:=> regret; disable for now for CI (Norbert)
> 
> > (...) the FB devs rejected support for the new toolchain
> > (C++14/C++17) for the next 10 years (at least) because they need
> > the
> > compatibility with WinXP (see the thread from their ML I mentioned
> > in my previous mail).
> 
> I read that thread and I didn't see a rejection of compatibility with
> a new toolchain. I saw a requirement for compatibility with an old
> toolchain. If they intend (and do test it at least "for every
> release") to:
> 
>  * be compatible with MSVC2013
>  * build their binaries with MSVC2013
>  * AND be compatible with


Can you point me to this statement in this thread?

> MSVC${LAST_VERSION_WITHIN_A_REASONABLE_TIMEFRAME}

You are missing one subtle delay here:

TIME_NEEDED_THAT_A_HACKER_SHOWS_UP_AND_BUMP_CURRENT_FB_VERSION_TO_THE_R
ECENT_ONE_THAT_SUPPORTS
MSVC${LAST_VERSION_WITHIN_A_REASONABLE_TIMEFRAME}

> then AFAICS we don't have a problem.

I see it differently. Just in case, we dropped MSVC 2013 and the
LAST_VERSION_WITHIN_A_REASONABLE_TIMEFRAME = 10 years,

1/ How is LO 6,7,8,9,10, ... going to be released, after support for
MSVC 2013 was discontinued on master?

I havn't seen the answer to this question in ESC minutes.

With disabled FB? Also disable it in release build on Mac (it's failing
on recent toolchain there too)? Is this our vision for the (default)
embedded database, to be buildable and shipped on only one platform for
years (from major 3): linux? Really?

2/ For all this time, that FB is not buildable on some platform(s), but
still in the tree with --enable-foo=true option we must try very hard
to prevent one thing from happening: that a casual contributor will go
that far, set up build environment, checkout the sources, and the build
would fail hours later with compiler error, because FB cannot be built
on that platform, see the value of the variable
LAST_VERSION_WITHIN_A_REASONABLE_TIMEFRAME above.

Can we try to answer my questions 1/ and 2/ above in next ESC meeting?

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


[Libreoffice-bugs] [Bug 98518] FILEOPEN Java not detected in LibreOffice 5.1

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

raal  changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|DUPLICATE   |---

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


[Libreoffice-commits] core.git: officecfg/registry

2016-03-10 Thread Yousuf Philips
 officecfg/registry/data/org/openoffice/Office/Accelerators.xcu |6 ++
 1 file changed, 6 insertions(+)

New commits:
commit 129d199d27f6961ea0c850686f76c83e2fc1953d
Author: Yousuf Philips 
Date:   Wed Mar 9 03:56:38 2016 +0400

tdf#97906 Ensure that F4 isnt used in Writer for Data Sources

Change-Id: I6bc9aa925e7ea0a9d1ee24605127b2e005811aab
Reviewed-on: https://gerrit.libreoffice.org/23047
Tested-by: Jenkins 
Reviewed-by: Yousuf Philips 

diff --git a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu 
b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
index a905124..5c11637 100644
--- a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
@@ -6247,6 +6247,12 @@
 .uno:Undo
   
 
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:ViewDataSourceBrowser
+  
+
   
   
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: minutes of ESC call ...

2016-03-10 Thread Lionel Elie Mamane
On Thu, Mar 10, 2016 at 07:28:58PM +0100, David Ostrovsky wrote:
> On Thu Mar 10 16:40:50 UTC 2016, Michael Meeks wrote:

>>+ or bundle their binaries (urgh) (Lionel)
>> + deep non-enthusiasm (Norbert, Michael, Bjoern)

> Why it was the right thing to do, to ship prebuilt Mozab mess for
> years, but is wrong thing to do to ship prebuilt FB?

The point is that it was not the right thing to do to ship the
prebuilt Mozab mess. We made the error once, we don't want to repeat
it.

>>+ decision needed: (Norbert)
>>+ effort to support VS 2015
>>+ not eager to turn it off.
>>AI:=> regret; disable for now for CI (Norbert)

> (...) the FB devs rejected support for the new toolchain
> (C++14/C++17) for the next 10 years (at least) because they need the
> compatibility with WinXP (see the thread from their ML I mentioned
> in my previous mail).

I read that thread and I didn't see a rejection of compatibility with
a new toolchain. I saw a requirement for compatibility with an old
toolchain. If they intend (and do test it at least "for every
release") to:

 * be compatible with MSVC2013
 * build their binaries with MSVC2013
 * AND be compatible with MSVC${LAST_VERSION_WITHIN_A_REASONABLE_TIMEFRAME}

then AFAICS we don't have a problem.

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


[Libreoffice-bugs] [Bug 86838] Letter page format size prints portrait pages as landscape on OS X (Brother and HP printers)

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

--- Comment #39 from tommy27  ---
(In reply to Al Maloney from comment #38)
> 
> 
> It does not happen with
> Version: 5.1.1.3

so it's a WORKSFORME in latest 5.1.1 official release.

> It did happen with the Dev versions of 5.1
> (I always run a Dev version in parallel)

which 5.1 Dev version do you refer? Future 5.1.2.x ?
please copy and paste build ID and Tinderbox time.

we need to know if there a regression in the 5.1.x codeline after the 5.1.1.3
release.

> It did not happen with the RC versions of 5.1

I guess you refer to 5.1.1 RC1 which makes sense since final 5.1.1.3 shows no
bug.

> It does happen with
> Version: 5.2.0.0.alpha0+
> Build ID: 50336412f775af154509d67b1ebbdb4b5feb147b
> CPU Threads: 4; OS Version: Mac OS X 10.11.3; UI Render: default; 
> TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2016-03-10_08:05:10
> Locale: en-CA

so this implies there's a regression in the 5.2.0.0 codeline

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


[Libreoffice-bugs] [Bug 86838] Letter page format size prints portrait pages as landscape on OS X (Brother and HP printers)

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

--- Comment #40 from tommy27  ---
also, what about latest 5.0.5.2 ?
is the bug still present in the 5.0.x codeline?

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


[Libreoffice-bugs] [Bug 98548] Try to acess remote server when off-line

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

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|ASSIGNED|NEEDINFO

--- Comment #4 from Yousuf (Jay) Philips  ---
Hi Andre,

So this is what i tried

1) Open a document on my linux desktop from my windows laptop as well as one in
Google Docs
2) Close libreoffice and disconnect the internet on the laptop
3) Open libreoffice and open another document or open writer

and i didnt have any problems.

@Steve: Can you try the same and see if you have problems.

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


[Libreoffice-bugs] [Bug 97567] FILESAVE: Writer destroys format in odt file created by MS Office

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

Mark Hung  changed:

   What|Removed |Added

 Attachment #122382|0   |1
is obsolete||
 Attachment #122383|0   |1
is obsolete||
 Attachment #122533|0   |1
is obsolete||

--- Comment #11 from Mark Hung  ---
Created attachment 123486
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123486=edit
Sample file with Chinese style name and style display name

Steps to reproduce:
1. Set UI language to Chinese (traditional) - this is must
2. Open the attached file.
3. Save as another file.
4. Reopen it, direct formatting were missing. 
Font size are changed from 30pt to 12 pt in many paragraphs.


Version:5.1.0.3
Build ID:5e3e00a007d9b3b6efb6797a8b8e57b51ab1f737
CPU Threads: 8; OS Version: Windows 6.2; UI Render: GL; 
Lang:zh-TW (zh_TW)


Note:
In the attached document, both style name and style display name attributes of
the paragraph style of text body are in Chinese (traditional). When Writer
imports the file, it find existing style by its display name. If one is found,
the style properties are imported, otherwise a new style is created. When UI
language is set to Chinese ( traditional ), the display name of the built in
one matches the one in the file. But style names of the two are different
because LibreOffice do not localize its display name, hence leaving paragraphs
or styles referring to the name refer to a style name that is not created. I'm
not sure in what situation MS Word create both style name and display name with
localized string, but in theory it could happen for other people if they are
use MSWord to generate files in language other than English.

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


[Libreoffice-bugs] [Bug 98165] Vertical text alignment problem with Japanese text

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

Robinson Tryon (qubit)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #3 from Robinson Tryon (qubit)  ---
TESTING with Ubuntu 14.04 +
LO 5.2.0.0.alpha0+ (2016-02-24_23:58:47)

(In reply to Stéphane Aulery from comment #0)
> The vertical text alignment always bothered me and made me use non-free
> fonts.
> ...
> Almost all FreeFonts cause screen arrangement problem while its PDF
> looks better (not perfect).
> 
> MS fonts are almost perfect for both (excluding FULL size Alphabet)
> ... 
> I attache test odt file and PDF file generated by libreoffice.
> (Containing screeshot so you know how things change)

If I understand correctly, the attached "Sample PDF output" shows a small
sample of Japanese text displayed in a number of fonts (both free and
non-free). The inset screenshot shows how LibreOffice displays the text in the
running program, while the main document shows the result of LibreOffice export
to PDF. Correct?

> Since PDF file looks good enough, I think screen rendering engine of
> libreoffice has room to be improved.

On this system, it appears that I currently have DROID SANS Japanese available
(the rest are being substituted). Can you demonstrate the problem using fonts
that ship/package with stock Debian/Ubuntu/LibreOffice?

It also appears that the provided PDF contains a different list/different
arrangement of the fonts as compared to the ODT. Could you please harmonize
these two? Thanks

Status -> NEEDINFO

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


[Libreoffice-bugs] [Bug 97567] FILESAVE: Writer destroys format in odt file created by MS Office

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

--- Comment #10 from Mark Hung  ---
*** Bug 98523 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 98523] Direct formatting ripped after saving file

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

Mark Hung  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Mark Hung  ---


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

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


Interested in LibreOffice's GSoC '16 Program

2016-03-10 Thread Steven Guo
Hello!

My name is Steven Guo and I'm currently a second year studying computer
science and engineering at UCLA. I'm usually around on IRC as 'stguo'.

I've recently taken an interest in open source software and I'm hoping I'll
have the opportunity to work with LibreOffice this summer. In particular,
I'm interested in the project of converting the OutputDevice class to use a
pimpl idiom/compilation firewall and its extensions.

A list of my patches that have been merged is below:
https://gerrit.libreoffice.org/#/c/22948/
https://gerrit.libreoffice.org/#/c/22969/
https://gerrit.libreoffice.org/#/c/22828/

I am currently stuck in the middle of finals season, but do plan on
contributing more involved patches as soon as school work clears up.

Thanks for being such a welcoming community!
Steven Guo
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 98585] Does not open up DOC and XLS files

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

--- Comment #10 from Yousuf (Jay) Philips  ---
Hi Dave,

Does the same thing happen when you open LibreOffice and select the file in the
Open dialog?

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


[Libreoffice-bugs] [Bug 98589] Printing: selected paper size gets overridden when trying to print

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

--- Comment #2 from Robinson Tryon (qubit)  ---
(In reply to Robinson Tryon (qubit) from comment #1)
> CONFIRMED: The text at the top of the Preview area says "4.13 in (#10
> Envelope)"

I should note that this text remains constant regardless of which printer I've
selected, or if I've selected "Print to File".

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


[Libreoffice-bugs] [Bug 98589] Printing: selected paper size gets overridden when trying to print

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

Robinson Tryon (qubit)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #1 from Robinson Tryon (qubit)  ---
TESTING with Ubuntu 14.04 +
LO 5.2.0.0.alpha0+ (2016-02-24_23:58:47)

(In reply to herrlefty from comment #0)
> In versions 4.3.4.1 and 5.0.5.2
> 
> In Format Page, I can select a #11 or #12 envelope.  

Repro steps:

- Open new document in Writer
- Format -> Page -> Page -> Paper Format -> Format -> #11 Envelope
- Click "OK"

(Going back to Format -> Page and checking the set value, #11 Envelope remains
selected)

> But when I select File
> Print, it gets changed either to a #10 envelope or sometimes to Letter size
> paper.

- File -> Print (opens dialog)

CONFIRMED: The text at the top of the Preview area says "4.13 in (#10
Envelope)"

Status -> NEW

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


[Libreoffice-bugs] [Bug 98589] Printing: selected paper size gets overridden when trying to print

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

Robinson Tryon (qubit)  changed:

   What|Removed |Added

 OS|Windows (All)   |All

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


Quick Question

2016-03-10 Thread Carmina Lydia

Good evening
I was visting your website on 3/10/2016 and I'm very interested.
I'm currently looking for work either full time or as a intern to get experience
in the field.
Please review my Resume and let me know what you think.

Regards,

--
Carmina Lydia
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 98217] Impress: Broken presentation mode (HiDPI)

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

--- Comment #10 from KB Lee  ---
Installed LO 5.1.1.3 (x64) yesterday. I am glad to report Impress presentation
mode worked great at default Graphics Output setting, whether on single-monitor
or dual-monitor set-up. I have yet to run into crashes when advancing slides
and moving in and out of presentation mode. Well done and thank you.


Environment: LO 5.1.1.3 (x64) on Microsoft Surface Pro 4 i7/8GB/256GB running
Windows 10 64-bit.

Default Graphics Output setting:
* Use hardware acceleration - unchecked.
* Use anti-aliasing - checked.
* Use OpenGL for all rendering (on restart) - checked.
* Force OpenGL even if blacklisted (on restart) - unchecked.
Current GL status: Enabled.
=

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


[Libreoffice-bugs] [Bug 98595] FILEOPEN: OOXML Filled Gradient incorrectly mapped

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

--- Comment #1 from Luke  ---
Created attachment 123485
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123485=edit
Comparision Word vs Writer

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


[Libreoffice-bugs] [Bug 98595] New: FILEOPEN: OOXML Filled Gradient incorrectly mapped

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

Bug ID: 98595
   Summary: FILEOPEN: OOXML Filled Gradient incorrectly mapped
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: filters and storage
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lukebe...@hotmail.com

Created attachment 123484
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123484=edit
Simple DOCX example

A slideshow I opened was missing a "spotlight" like effect created with the
radial fill. I found that we're incorrectly mapping fill gradients in both
shapes and backgrounds. The correct mapping should be:

Radial -> Radial
Rectangular -> Quadratic 
Path -> Quadratic (centered)

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


[Libreoffice-bugs] [Bug 98594] New: Occasional corrupt graphics when printing.

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

Bug ID: 98594
   Summary: Occasional corrupt graphics when printing.
   Product: LibreOffice
   Version: 5.1.0.3 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bz.web.mik...@recursor.net

Created attachment 123483
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123483=edit
Graphics corruption on printout/export of document.

The 5.1.0.3 version of Writer for Linux is corrupting graphics sometimes when
printing.  This does not appear to be sensitive to printer drivers as I
exported a test document to PDF and the problem manifested there.

The test document was created on Writer for Windows, but I have been getting
similar corruption in other documents created on Linux.

On some pages, graphic images have a problem of the pixels "sliding" to the
right, and wrapping around on the left.  Each line of pixels slides further
right than the line above.  The overall effect resembles an old analog TV with
poor signal. On others, the problem is less regular, and just rather distorted.

This problem is at the print/export point, the images display correctly.


I have attached a PDF example of the less regular distortion using some clip
art from Writer.

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


[Libreoffice-bugs] [Bug 98579] Slides containing .wmv or .avi video crash in slideshow mode

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

Robinson Tryon (qubit)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #2 from Robinson Tryon (qubit)  ---
(In reply to Colin Brown from comment #0)
> I upgraded to LibreOffice 64 bit 5.0.5.2 from 32 bit 4.4.7 last night and
> now presentations crash in slideshow mode when they display slides
> containing either .wmv or .avi video files. In case it's relevant, I'm
> running under Windows 10 build 10586.14.

Hi Colin,
Could you please attach a (small) test presentation with WMV or AVI file that
exercises the problem? Thanks

(You can also try downloading a 5.1 "LibreOffice Fresh" build and see if that
fixes the problem:
https://www.libreoffice.org/download/libreoffice-fresh/
)

Status -> NEEDINFO

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


[Libreoffice-bugs] [Bug 98590] No indication if cell value type is number or text

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

Robinson Tryon (qubit)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #1 from Robinson Tryon (qubit)  ---
TESTING with Ubuntu 14.04 +
LO 5.2.0.0.alpha0+ (2016-02-24_23:58:47)

(In reply to Stanislav Horacek from comment #0)
> After resolving bug 96822 in 5.2 master, under certain conditions, one
> cannot quickly decide if a cell contains number or string data type.
> Consider this:
> 
> 1. In a new spreadsheet, enter a number (e.g. 1) to A1.
> 2. For A1, choose Format - Cells and select the "Text" category.
> 3. For A2 choose the same cell format.
> 4. Enter a number (e.g. 1) to A2.
> 
> The number in A1 has not been converted to text (as documented in [1]) and
> it appears as office:value-type="float" in the ODS file.
> 
> The number in A2 is of text data type and appears as
> office:value-type="string" in the ODS file.
> 
> However, both numbers are left-aligned and have the same formatting code, so
> it is hard to identify their types.

Confirmed

> This issue could be solved by:
> - reverting the patch for bug 96822,
> - adding an immediate conversion to text when format is changed (e.g. Google
> Sheets performs such immediate conversion).

Seems like a reasonable change (at least to discuss), so
Status -> NEW

Should this be categorized as an enhancement or a regular bug?

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


[Libreoffice-bugs] [Bug 98537] Freeze at startup

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

Robinson Tryon (qubit)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #3 from Robinson Tryon (qubit)  ---
(In reply to jsvitko129 from comment #2)
> 5.0

Hiya,
Could you please download a 5.1 build and see if that resolves the problem?
https://www.libreoffice.org/download/libreoffice-fresh/

Status -> NEEDINFO

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


[Libreoffice-bugs] [Bug 98571] LibreOffice can't find system browser

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

--- Comment #7 from Marc Grober  ---
@qubit

I took your demo doc and I created a new slide with two file links, one to a
document that existed, and one to a document that did not exist.

The document that existed came up as it should.  The document that did not
exist brought up the same error message as before,

"LibreOffice could not find a web browser on your system. Please check your
Desktop Preferences or install a web browser (for example, Firefox) in the
default  location requested during the browser installation."

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


[Libreoffice-bugs] [Bug 98571] LibreOffice can't find system browser

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

--- Comment #6 from Marc Grober  ---
(In reply to Robinson Tryon (qubit) from comment #4)
> TESTING with Ubuntu 14.04 +
> LO 5.2.0.0.alpha0+ (2016-02-24_23:58:47)


@qubit Was this something perchance flagged as "fixed" in 5.2.0.0?  Did you
test with 5.1+ with Ubuntu?  Might this be an OS issue

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


[Libreoffice-bugs] [Bug 98582] Inset cells, Rows, Columns missing

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

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #2 from m.a.riosv  ---
More information:

https://wiki.documentfoundation.org/ReleaseNotes/5.1#Reorganization_of_the_menus

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


[Libreoffice-bugs] [Bug 96896] Writer crashes when frame title is changed via API and user closes print preview

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

--- Comment #10 from castanhe...@uol.com.br ---
Hi akash96j,

A colon followed by a number is appended to the window title when a new window
of the same document is opened (Window -> New window). If one or more of these
multiple views is closed and you open another one, Libreoffice uses the least
available number for its title. When edit mode is toggled (Ctrl+Shift+M), the
expression "(read-only)" is added or removed from the title of each window. I
think that this is expected behaviour.

However, when print preview is selected, the numbering of windows behaves
oddly. To reproduce, please follow these steps (LO 5.1.0.3, Win10):

CASE A - MANUALLY OPENED DOCUMENT
1) Create and open a new Writer document. There is no colon and number in
window title (ok).
2) Toggle edit mode with Ctrl+Shift+M. "(read-only)" is appended to window
title (ok).
3) Select Print Preview. "(read-only) : 2" is appended to window title. Ok, but
it's a bit weird as the previous window is not visible anymore, so why number
the preview as "2"?
4) Close Print Preview. "(read-only) : 3" is shown in window title. That's
strange and confusing. Where is the original, unnumbered window?

CASE B - USING API TO OPEN DOCUMENT AND CHANGE WINDOW TITLE
1) On the attached VBScript, uncomment lines 15 and 16 and replace line 21 with
oDoc.Title = "My Title".
2) Run the modified script to create a new Writer document, open it in
read-only mode and change window title. "My Title (read-only)" is the window
title (ok).
3) Select Print Preview. ": 2" is appended to window title, but the
"(read-only)" expression mysteriously disappears. This seems to be a bug.
4) Close Print Preview. ": 3" is shown in window title without any
"(read-only)" expression, as document is now unexpectedly in edit mode.

CASE C - USING API TO OPEN DOCUMENT WITHOUT CHANGING WINDOW TITLE
1) On the attached VBScript, uncomment lines 15 and 16 and delete lines 18 to
21.
2) Run the modified script to create a new Writer document and open it in
read-only mode. "(read-only)" is appended to window title (ok).
3) Select Print Preview. "(read-only) : 2" is appended to window title (ok).
4) Close Print Preview. "(read-only) : 3" is shown in window title. Just the
same odd numbering behaviour as above.

So, after closing print preview, the original, unnumbered window becomes a ":
3" window. Additionally, if the window title of a read-only document is changed
using API, print preview puts the document in edit mode.

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


[Libreoffice-bugs] [Bug 98571] LibreOffice can't find system browser

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

--- Comment #5 from Marc Grober  ---
Created attachment 123482
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123482=edit
ppt file with problematic link

 Offending link references a file:// resource and can be found at slide 27.  I
saved this file as a LO presentation with the same result.

 I then deleted the link, and created a new one to a working http:// resource,
and the link was followed correctly - both in a Presentation file and in a
Powerpoint file.

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


[Libreoffice-bugs] [Bug 98571] LibreOffice can't find system browser

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

Robinson Tryon (qubit)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #4 from Robinson Tryon (qubit)  ---
TESTING with Ubuntu 14.04 +
LO 5.2.0.0.alpha0+ (2016-02-24_23:58:47)

(In reply to Marc Grober from comment #0)
> Clicking on a live link in a LO 5.1 presentation under MAC OSX 10.11 results
> in...error message

Created test doc  attachment 123480 to try to replicate problem. Added valid
(example.com) urls, plus something similar to what's displayed in original
screenshot.

Couldn't repro -- could generate error message seen in attachment 123481, but
that seems pretty descriptive.

Marc: How was the original URL formatted? Could you please attach the original
presentation document to this bug report? Thanks

Status -> NEEDINFO

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


Re: alternatives to Firebird: sqlite [was: Firebird doesn't support MSVC 2015]

2016-03-10 Thread toki
On 10/03/2016 11:37, Wols Lists wrote:

> And it would be nice to include an "easy to use" database with LO.

a) Doesn't LibO still include the db3 compatible database engine?  If
so, that can be used;

b) I understand the dislike of SQLite, but for non-database programmers,
for most purposes, it is fine.

> Why do most people use Excel instead of Access? Because Access is too hard!

They use Excel, either because nobody showed them how to use Access, or,
more commonly, because Access was not part of their office suite.

> And this design is tried and tested and 40 years old

But can you write it so that it looks like a bright shiny new bauble?

jonathon

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


[Libreoffice-bugs] [Bug 98593] New: base form button control will not show multi line text with image on control

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

Bug ID: 98593
   Summary: base form button control will not show multi line text
with image on control
   Product: LibreOffice
   Version: 5.1.0.3 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: echo8h...@yahoo.com

I have several forms in Base with button controls that use an image on the
button and two lines of text to describe button action. In LO 4.4.7 the text
shows correctly. In LO 5.1.0.3 release only part of the first line of text
shows and it is truncated with three periods "..." 

Resizing the button has no affect. However, if I put characters on 4 lines of
button text, the first two will display full length, but to high on the
control.

Something seems to be amiss.

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


[Libreoffice-bugs] [Bug 98571] LibreOffice can't find system browser

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

Robinson Tryon (qubit)  changed:

   What|Removed |Added

 CC||qu...@runcibility.com

--- Comment #2 from Robinson Tryon (qubit)  ---
Created attachment 123480
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123480=edit
Test presentation

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


[Libreoffice-bugs] [Bug 98571] LibreOffice can't find system browser

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

--- Comment #3 from Robinson Tryon (qubit)  ---
Created attachment 123481
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123481=edit
Absolute URL error message

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


Re: alternatives to Firebird: sqlite [was: Firebird doesn't support MSVC 2015]

2016-03-10 Thread toki
On 10/03/2016 01:27, Wols Lists wrote:

> On top of that, an integrity layer that enforces datatypes. This isn't part 
> of standard multi-value,

What?  Back when I played with Pick, one of the selling points was that
one couldn't put the wrong type of data into a record field. Was that
feature simply a vendor provided customization?

> I'll then need a Basic compiler. 

Does it have to be BASIC?
Can't R or Python be used instead of BASIC?

###

I realize that using R means either including another scripting
language, or upgrading the existing R Language extension so that it
installs a version of R that plays nicely within LibreOffice.

> I know Pick isn't the easiest of topics to Google for, but some links for 
> reading ...

Talking about which, Given how poor the documentation for BASE is, do
you know anybody who would be willing and able to write documentation on
using PICK within LibreOffice. (FWIW, Even a developers outline on what
it should do, would be a good starting point for users.)



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


[Libreoffice-bugs] [Bug 98592] New: Changes made to Styles and Formatting Default don't survive a reboot.

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

Bug ID: 98592
   Summary: Changes made to Styles and Formatting  Default don't
survive a reboot.
   Product: LibreOffice
   Version: 5.0.5.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dhutchiso...@hotmail.com

In Impress, press F11 to go to Styles and Formatting. Right-click on "Default"
and select "Modify". Change the rather dubious default setting for line/area of
"Tango: Sky Blue" to some more useful and widely accepted, say, black and
white. These settings are now in place for the remainder of the session.
Reboot the machine, and the old settings of "Tango: Sky Blue" have returned.
Ideally, it would be better if the desired default setting survived a reboot.
An office suite used for daily productive work should be customizable to
maximize the users' productivity.

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


[Libreoffice-bugs] [Bug 46200] [RFE] Use the Scroll Lock key as a toggling lock key like Excel

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

--- Comment #13 from Markus Mohrhard  ---
The best method to start debugging is ScTabView::MoveCursorKeyInput.

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


[Libreoffice-bugs] [Bug 98585] Does not open up DOC and XLS files

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

Dave Schroeder  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #9 from Dave Schroeder  ---

  Aha!  Sorry.  It doesn't seem to want to open up either in that way.   I
just tried to open a doc. in Explorer and it did nothing.   But, the same doc
did open with Wordpad when I selected it to open that file.

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


[Libreoffice-bugs] [Bug 98518] FILEOPEN Java not detected in LibreOffice 5.1

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

--- Comment #3 from Tim  ---
(In reply to raal from comment #1)
> 
> *** This bug has been marked as a duplicate of bug 85695 ***

For me it doesn't seem the same, as with the same OS X LibreOffice 5.0.5 goes
well, but not LibreOffice 5.1

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


[Libreoffice-bugs] [Bug 98518] FILEOPEN Java not detected in LibreOffice 5.1

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

--- Comment #2 from Tim  ---
For me it doesn't seem the same, as with the same OS X LibreOffice 5.0.5 goes
well, but not LibreOffice 5.1

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


[Libreoffice-bugs] [Bug 98585] Does not open up DOC and XLS files

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

Joel Madero  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #8 from Joel Madero  ---
(In reply to Dave Schroeder from comment #7)
> Well.  We've been asked to not use IE and just use Chrome.I appreciate
> your efforts!   I'll try to do some more thinking on my end.  Many thanks.

Explorer - not Internet Explorer. The file browser in windows

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


[Libreoffice-bugs] [Bug 98585] Does not open up DOC and XLS files

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

Dave Schroeder  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #7 from Dave Schroeder  ---
Well.  We've been asked to not use IE and just use Chrome.I appreciate your
efforts!   I'll try to do some more thinking on my end.  Many thanks.

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


[Libreoffice-bugs] [Bug 98537] Freeze at startup

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

jsvitko...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #2 from jsvitko...@gmail.com ---
5.0

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


[Libreoffice-bugs] [Bug 97132] Cell Contents Do Not Update for Screen Display (Screen Scrolling Needed)

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

--- Comment #7 from ChrisR  ---
(In reply to Kevin Suo from comment #6)
> Please do not change the version field, it should reflect the earlist
> version affected.
> Please provide your Graphic driver version. Thanks.
Sorry I taught the fields were for the own report not the whole thread. 
The Intel driver is v8.15.10.2827 (2012-07-31).

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


[Libreoffice-bugs] [Bug 98581] Documents containing images linked from the web scroll and work very slowly

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

--- Comment #5 from Joel Madero  ---
(In reply to florin.arjocu from comment #3)
> You are right Buovjaga, it looks like bug 51609, but considering it was
> first reported in 2012 and 4 years later pasted content from web still
> appears by default as a link (text is ok, but for images it is not, using it
> without internet makes the file inoperable) should get attention again.


Just a heads up here that I've talked to several experienced developers over
the years about this and the truth is it's a nightmare to fix. For a volunteer
to take this on would take tens or even hundreds of hours, they would have to
be really skilled, and incredibly patient. Ideallysome enterprise user at
some point will pay a certified developer (company or individual) to fix it
properly, else, it's my guess that this isn't going anywhere fast.

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


[Libreoffice-bugs] [Bug 98446] Hide Whitespace option grayed-out intermittently

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

--- Comment #5 from Alex  ---
I am also seeing this problem. Just updated to stable release 5.1.1, running
OSX 10.11.3.

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


[Libreoffice-bugs] [Bug 98437] DIALOG: Find & Replace dialog reopens with larger size but collapsed options

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

--- Comment #8 from Xisco Faulí  ---
Regression introduced in range
57c3b726d0845a2070acccbe6a30837c3cc8a341..31e037c348ef0e04393926891617fde1b0051a35

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


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

2016-03-10 Thread Maxim Monastirsky
 framework/Library_fwe.mk |1 
 framework/source/fwe/classes/bmkmenu.cxx |  204 ---
 framework/source/fwe/xml/menuconfiguration.cxx   |   13 -
 framework/source/uielement/menubarmanager.cxx|1 
 framework/source/uielement/newmenucontroller.cxx |   59 +++---
 include/framework/bmkmenu.hxx|   66 ---
 include/framework/menuconfiguration.hxx  |6 
 7 files changed, 34 insertions(+), 316 deletions(-)

New commits:
commit 42d6a165b053ebdccbd6979eb849b1abe305d2ba
Author: Maxim Monastirsky 
Date:   Fri Mar 11 00:45:56 2016 +0200

framework: Kill BmkMenu

Change-Id: I182e752f5602d946f27206a1bb744c5d2248bdf8

diff --git a/framework/Library_fwe.mk b/framework/Library_fwe.mk
index 848e52c..9b10e16 100644
--- a/framework/Library_fwe.mk
+++ b/framework/Library_fwe.mk
@@ -57,7 +57,6 @@ $(eval $(call gb_Library_add_exception_objects,fwe,\
 framework/source/fwe/classes/actiontriggerseparatorpropertyset \
 framework/source/fwe/classes/addonmenu \
 framework/source/fwe/classes/addonsoptions \
-framework/source/fwe/classes/bmkmenu \
 framework/source/fwe/classes/framelistanalyzer \
 framework/source/fwe/classes/fwkresid \
 framework/source/fwe/classes/imagewrapper \
diff --git a/framework/source/fwe/classes/bmkmenu.cxx 
b/framework/source/fwe/classes/bmkmenu.cxx
deleted file mode 100644
index 4b316a7..000
--- a/framework/source/fwe/classes/bmkmenu.cxx
+++ /dev/null
@@ -1,204 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#include 
-
-#include 
-#include 
-#include 
-
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-
-#include 
-#include 
-#include 
-#include 
-#include 
-
-using namespace ::comphelper;
-using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::lang;
-using namespace ::com::sun::star::util;
-using namespace ::com::sun::star::frame;
-using namespace ::com::sun::star::beans;
-
-namespace framework
-{
-
-void GetMenuEntry(
-Sequence< PropertyValue >&  aDynamicMenuEntry,
-OUString&rTitle,
-OUString&rURL,
-OUString&rFrame,
-OUString&rImageId );
-
-class BmkMenu_Impl
-{
-private:
-static sal_uInt16m_nMID;
-
-public:
-bool m_bInitialized;
-
-BmkMenu_Impl();
-~BmkMenu_Impl();
-
-static sal_uInt16   GetMID();
-};
-
-sal_uInt16 BmkMenu_Impl::m_nMID = BMKMENU_ITEMID_START;
-
-BmkMenu_Impl::BmkMenu_Impl() :
-m_bInitialized(false)
-{
-}
-
-BmkMenu_Impl::~BmkMenu_Impl()
-{
-}
-
-sal_uInt16 BmkMenu_Impl::GetMID()
-{
-m_nMID++;
-if( !m_nMID )
-m_nMID = BMKMENU_ITEMID_START;
-return m_nMID;
-}
-
-BmkMenu::BmkMenu( Reference< XFrame >& xFrame, BmkMenu::BmkMenuType nType )
-:AddonMenu(xFrame)
-,m_nType( nType )
-{
-_pImp = new BmkMenu_Impl();
-Initialize();
-}
-
-BmkMenu::~BmkMenu()
-{
-delete _pImp;
-}
-
-void BmkMenu::Initialize()
-{
-SAL_INFO( "fwk", "framework (cd13) ::BmkMenu::Initialize" );
-
-if( _pImp->m_bInitialized )
-return;
-
-_pImp->m_bInitialized = true;
-
-Sequence< Sequence< PropertyValue > > aDynamicMenuEntries;
-
-if ( m_nType == BmkMenu::BMK_NEWMENU )
-aDynamicMenuEntries = SvtDynamicMenuOptions().GetMenu( E_NEWMENU );
-else if ( m_nType == BmkMenu::BMK_WIZARDMENU )
-aDynamicMenuEntries = SvtDynamicMenuOptions().GetMenu( E_WIZARDMENU );
-
-const StyleSettings& rSettings = 
Application::GetSettings().GetStyleSettings();
-bool bShowMenuImages = rSettings.GetUseImagesInMenus();
-
-OUString aTitle;
-OUString aURL;
-OUString aTargetFrame;
-OUString aImageId;
-
-sal_uInt32 i, nCount = aDynamicMenuEntries.getLength();
-for ( i = 0; i < nCount; ++i )
-{
-GetMenuEntry( aDynamicMenuEntries[i], aTitle, aURL, aTargetFrame, 
aImageId );
-
-if ( aTitle.isEmpty() && aURL.isEmpty() )
-continue;
-
-if ( aURL == "private:separator" )
-

[Libreoffice-commits] core.git: Branch 'feature/fixes18' - vcl/source

2016-03-10 Thread László Németh
 vcl/source/app/svapp.cxx |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

New commits:
commit d9848502552c1aaa40ab78b909b38423a3003264
Author: László Németh 
Date:   Thu Mar 10 23:43:19 2016 +0100

set fixes17 idle processing

Change-Id: I9dbda7e6e34167da854d4d7709d636c7d2f48405

diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index a75a6db..a18b91e 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -534,9 +534,8 @@ void Application::Reschedule( bool i_bAllEvents )
 
 void Scheduler::ProcessEventsToIdle()
 {
-int nSanity = 1000;
-while(Scheduler::ProcessTaskScheduling(false) ||
-  ImplYield(false, false, 0))
+int nSanity = 100;
+while(ImplYield(false, true, 0))
 {
 if (nSanity-- < 0)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98591] New: LO Base application will not start under OSX10.11.* with either Fresh or Still runs with all other OSX versions & on Windows 7, 8, 10

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

Bug ID: 98591
   Summary: LO Base application will not start under OSX10.11.*
with either Fresh or Still runs with all other OSX
versions & on Windows 7, 8,10
   Product: LibreOffice
   Version: 5.2.0.0.alpha0+ Master
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jwrichard...@btinternet.com

Created attachment 123479
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123479=edit
All the files are needed in this zip to support the split database

The attached SPLIT .odb LO database file will not startup & run with either the
latest FRESH or STLL version of LO whilst running under OSX10.11.*.

The database WIL start up and run with either the latest FRESH or STILL version
of LO whilst running under any OSX10.* (as long as it's NOT 10.11.*) AND it
will run UNCHANGED on Windows 7,8 or 10 with LO FRESH or STILL.

Symptoms

The GUI appears
the bottom line of the window is completed with the URL of the database
a blue line flashes across the bottom of the windows for about 5 seconds
the application and LO freezes. Cannot do a force quit - have to run Apple's
ActivityMonitor where the LO process is using over 100% of the cpu and quit
from there.

I hace tried
various JRE combinations both latest 1.8.0_73(66) wit and without Apple's last
java download javaforosx.dmg dated 31-Aug-2015. I've delete my user profile dir
from the '4'  sub-dir and restsrted LO. None of which worked.

I have tried putting trace calls to msgbox in the first macro that's run by the
application called SETUP in the 'embedded' module - they are never called. I
think the problem relates to the OSX10.11.* and the initialisation that LO goes
through prior to initiating a database. 

The attached file is a stripped down core of the free production application
you can find at www.secretarybird.info.  NB on the website the AppleMAC
installation files have been disabled for OSX10.11

When the .odb file does run you will see the application's splash form and then
a switchboard form with empty buttons.

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


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

2016-03-10 Thread Eike Rathke
 sc/source/ui/cctrl/checklistmenu.cxx |2 +-
 sc/source/ui/inc/checklistmenu.hxx   |   15 ---
 2 files changed, 13 insertions(+), 4 deletions(-)

New commits:
commit 36722b6b02f67826293946c461fb3943ec55e92b
Author: Eike Rathke 
Date:   Thu Mar 10 22:07:54 2016 +0100

wrap vcl::window* pointer members in VclPtr, tdf#97344 follow-up

Trying to satisfy loplugin:vclwidgets

sc/source/ui/inc/checklistmenu.hxx:199:28: error: OutputDevice subclass 
'ScCheckListMenuWindow *' declared as a pointer member, should be wrapped in 
VclPtr [loplugin:vclwidgets]
ScCheckListMenuWindow* mpMenuWindow;
~~~^~~~
sc/source/ui/inc/checklistmenu.hxx:200:21: error: OutputDevice subclass 
'ControlToPosMap' (aka 'unordered_map') declared as a 
pointer member, should be wrapped in VclPtr [loplugin:vclwidgets]
ControlToPosMap maControlToPos;
^~
sc/source/ui/inc/checklistmenu.hxx:201:31: error: OutputDevice subclass 
'std::vector' declared as a pointer member, should be wrapped in 
VclPtr [loplugin:vclwidgets]
std::vector maControls;
~~^~

Change-Id: I47ba432fd76899681ec0afd852c71b584629eeb9

diff --git a/sc/source/ui/cctrl/checklistmenu.cxx 
b/sc/source/ui/cctrl/checklistmenu.cxx
index cbf0caa..e8a1ad3 100644
--- a/sc/source/ui/cctrl/checklistmenu.cxx
+++ b/sc/source/ui/cctrl/checklistmenu.cxx
@@ -916,6 +916,7 @@ ScCheckListMenuWindow::~ScCheckListMenuWindow()
 
 void ScCheckListMenuWindow::dispose()
 {
+maTabStops.clear();
 maEdSearch.disposeAndClear();
 maChecks.disposeAndClear();
 maChkToggleAll.disposeAndClear();
@@ -923,7 +924,6 @@ void ScCheckListMenuWindow::dispose()
 maBtnUnselectSingle.disposeAndClear();
 maBtnOk.disposeAndClear();
 maBtnCancel.disposeAndClear();
-maTabStops.clear();
 ScMenuFloatingWindow::dispose();
 }
 
diff --git a/sc/source/ui/inc/checklistmenu.hxx 
b/sc/source/ui/inc/checklistmenu.hxx
index 5f280d8..a75c299 100644
--- a/sc/source/ui/inc/checklistmenu.hxx
+++ b/sc/source/ui/inc/checklistmenu.hxx
@@ -192,13 +192,22 @@ private:
 
 class ScCheckListMenuWindow;
 
+template  struct VclPtr_hash;
+template <> struct VclPtr_hash< VclPtr >
+{
+size_t operator()( const VclPtr& r ) const
+{
+return reinterpret_cast(r.get());
+}
+};
+
 class ScTabStops
 {
 private:
-typedef std::unordered_map ControlToPosMap;
-ScCheckListMenuWindow* mpMenuWindow;
+typedef std::unordered_map< VclPtr, size_t, 
VclPtr_hash > ControlToPosMap;
+VclPtr mpMenuWindow;
 ControlToPosMap maControlToPos;
-std::vector maControls;
+std::vector maControls;
 size_t mnCurTabStop;
 public:
 ScTabStops( ScCheckListMenuWindow* mpMenuWin );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88962] The LO copyright information shows 2000 - 2014

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

A (Andy)  changed:

   What|Removed |Added

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

--- Comment #4 from A (Andy)  ---
This is fixed with LO 5 (as per comment 3, tested with LO 5.1.0.3).  I mark it
therefore as closed.  If somebody thinks this is not correct, please reopen it.

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


[Libreoffice-commits] core.git: 4 commits - editeng/source include/editeng sdext/source sfx2/source svtools/source svx/source

2016-03-10 Thread Caolán McNamara
 editeng/source/editeng/editeng.cxx  |4 ++--
 editeng/source/editeng/impedit3.cxx |8 
 editeng/source/outliner/outleeng.cxx|8 
 editeng/source/outliner/outleeng.hxx|4 ++--
 editeng/source/outliner/outliner.cxx|   10 +-
 include/editeng/editeng.hxx |4 ++--
 include/editeng/outliner.hxx|7 +--
 sdext/source/pdfimport/test/pdf2xml.cxx |6 --
 sfx2/source/control/dispatch.cxx|2 +-
 svtools/source/contnr/iconviewimpl.cxx  |2 +-
 svtools/source/contnr/svimpbox.cxx  |2 +-
 svx/source/svdraw/svdotextpathdecomposition.cxx |1 +
 12 files changed, 32 insertions(+), 26 deletions(-)

New commits:
commit cb00ae0a82cb50c7b951d7b3c4fe69339bad16ea
Author: Caolán McNamara 
Date:   Thu Mar 10 20:57:57 2016 +

coverity#1355504 Dereference before null check

Change-Id: I1f19fa2b55054bff7bb7e34d8a07dcf29fd229be

diff --git a/svtools/source/contnr/iconviewimpl.cxx 
b/svtools/source/contnr/iconviewimpl.cxx
index ca6696a..e361414 100644
--- a/svtools/source/contnr/iconviewimpl.cxx
+++ b/svtools/source/contnr/iconviewimpl.cxx
@@ -508,7 +508,7 @@ bool IconViewImpl::KeyInput( const KeyEvent& rKEvt )
 // if there is no next entry, take the current one
 // this ensures that in case of _one_ entry in the list, this 
entry is selected when pressing
 // the cursor key
-if ( !pNewCursor && pCursor )
+if (!pNewCursor)
 pNewCursor = pCursor;
 
 if( pNewCursor )
diff --git a/svtools/source/contnr/svimpbox.cxx 
b/svtools/source/contnr/svimpbox.cxx
index d48f112..7ae2371 100644
--- a/svtools/source/contnr/svimpbox.cxx
+++ b/svtools/source/contnr/svimpbox.cxx
@@ -2149,7 +2149,7 @@ bool SvImpLBox::KeyInput( const KeyEvent& rKEvt)
 // if there is no next entry, take the current one
 // this ensures that in case of _one_ entry in the list, this 
entry is selected when pressing
 // the cursor key
-if ( !pNewCursor && pCursor )
+if (!pNewCursor)
 pNewCursor = pCursor;
 
 if( pNewCursor )
commit b20af8b684463674a0e25cff9db85bbb6acee44b
Author: Caolán McNamara 
Date:   Thu Mar 10 20:55:11 2016 +

coverity#1355499 Unchecked return value

Change-Id: I0b9329d00bfcebb6e29db6786715b19a7697d087

diff --git a/sdext/source/pdfimport/test/pdf2xml.cxx 
b/sdext/source/pdfimport/test/pdf2xml.cxx
index 19dd03c..574a81a 100644
--- a/sdext/source/pdfimport/test/pdf2xml.cxx
+++ b/sdext/source/pdfimport/test/pdf2xml.cxx
@@ -39,6 +39,8 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
 if( argc < 4 )
 return 1;
 
+int nRet = 0;
+
 try
 {
 OUString aBaseURL, aTmpURL, aSrcURL, aDstURL;
@@ -74,7 +76,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
 
 uno::Reference xAdaptor( new 
pdfi::PDFIRawAdaptor(OUString(), aEnv.getComponentContext()) );
 xAdaptor->setTreeVisitorFactory(pTreeFactory);
-xAdaptor->odfConvert( aSrcURL, new OutputWrap(aDstURL), nullptr );
+nRet = xAdaptor->odfConvert(aSrcURL, new OutputWrap(aDstURL), nullptr) 
? 0 : 1;
 }
 catch (const uno::Exception& e)
 {
@@ -87,7 +89,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
 return 1;
 }
 
-return 0;
+return nRet;
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
commit bd17307216b07599cbaa7e0111dc784e3af20ed2
Author: Caolán McNamara 
Date:   Thu Mar 10 20:50:16 2016 +

coverity#1355501 Dereference after null check

Change-Id: I84001559ed2bafee16a176eb11ea991397b733bc

diff --git a/sfx2/source/control/dispatch.cxx b/sfx2/source/control/dispatch.cxx
index 7851e1f..8c4a2f9 100644
--- a/sfx2/source/control/dispatch.cxx
+++ b/sfx2/source/control/dispatch.cxx
@@ -1368,7 +1368,7 @@ void SfxDispatcher::_Update_Impl( bool bUIActive, bool 
bIsMDIApp, bool bIsIPOwne
 
 if ( bIsMDIApp || bIsIPOwner )
 {
-sal_uInt32 nId = pIFace->GetStatusBarId();
+sal_uInt32 nId = pIFace ? pIFace->GetStatusBarId() : 0;
 if ( nId )
 {
 nStatBarId = nId;
commit c27d0a583d5748bfe68bcf3be73a33e8d2823f8f
Author: Caolán McNamara 
Date:   Thu Mar 10 20:43:37 2016 +

coverity#1355507 uninitialized scalar field

I think

commit b2fb84499e1f75735e8fd90bc2eece3fed9af5f6
Author: Noel Grandin 
Date:   Mon Mar 7 14:19:22 2016 +0200

loplugin:write only fields

wrong wrong and took out this param along with the unused nIndex
beside it

Change-Id: Idc34e03b5d59d4b0017fff456b79c807fda2535f

diff --git a/editeng/source/editeng/editeng.cxx 
b/editeng/source/editeng/editeng.cxx
index 

[Libreoffice-bugs] [Bug 98571] LibreOffice can't find system browser

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

--- Comment #1 from Marc Grober  ---
Turns out that this error message is thrown when the resource identified can't
be found. The error message should be changed to add the other possibility, or
the error coding changed to afford a narrow but accurate result.

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


Re: minutes of ESC call ...

2016-03-10 Thread Bjoern Michaelsen
Hi,

On Thu, Mar 10, 2016 at 07:28:58PM +0100, David Ostrovsky wrote:
> But isn't this is exactly what we did for years with Seamonkey based
> Mozab driver ... and TBH if /me wouldn't remove it in: [2], we would
> probably still ship the prebuilt binaries of this mess for years. So
> what is wrong to ship parts of our suite that we can't build? Why it
> was the right thing to do, to ship prebuilt Mozab mess for years, but
> is wrong thing to do to ship prebuilt FB?

The LibreOffice project never decided to move from properly building a
dependency to shipping binaries unbuildable on a modern toolchain. I hope it
never will.

> because the FB devs rejected support for the new toolchain
> (C++14/C++17) for the next 10 years (at least) because they need the
> compatibility with WinXP (see the thread from their ML I mentioned in
> my previous mail).

The reason d'etre for FB in LibreOffice at all is that it was a candidate to be
a superior alternative to HSQLDB as a default. Currently however, given the
above, FB hardly seems more attractive than HSQLDB and most certainly not a
worthwhile replacement as default engine, esp. if you take into account the
migration costs to expect.

Anyway, the ESC was where this broader picture has been discussed -- so Id like
not to repeat that discussion here, as the one on the ESC has been quite 
extensive.

Best,

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


[Libreoffice-bugs] [Bug 98590] No indication if cell value type is number or text

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

Stanislav Horacek  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 98590] New: No indication if cell value type is number or text

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

Bug ID: 98590
   Summary: No indication if cell value type is number or text
   Product: LibreOffice
   Version: 5.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: stanislav.hora...@gmail.com

After resolving bug 96822 in 5.2 master, under certain conditions, one cannot
quickly decide if a cell contains number or string data type. Consider this:

1. In a new spreadsheet, enter a number (e.g. 1) to A1.
2. For A1, choose Format - Cells and select the "Text" category.
3. For A2 choose the same cell format.
4. Enter a number (e.g. 1) to A2.

The number in A1 has not been converted to text (as documented in [1]) and it
appears as office:value-type="float" in the ODS file.

The number in A2 is of text data type and appears as office:value-type="string"
in the ODS file.

However, both numbers are left-aligned and have the same formatting code, so it
is hard to identify their types.

This issue could be solved by:
- reverting the patch for bug 96822,
- adding an immediate conversion to text when format is changed (e.g. Google
Sheets performs such immediate conversion).

[1] https://help.libreoffice.org/Calc/Formatting_Numbers_as_Text

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


[Libreoffice-bugs] [Bug 96114] Data Validity dialog does not accept a choice other than 'All values'

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

raal  changed:

   What|Removed |Added

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

--- Comment #11 from raal  ---
I can not confirm with Verze: 5.1.1.3 (x64), win7

Wolfgang, please retest with actual version, thanks.

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


[Libreoffice-bugs] [Bug 98579] Slides containing .wmv or .avi video crash in slideshow mode

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

Julien Nabet  changed:

   What|Removed |Added

   Keywords||wantBacktrace
 CC||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet  ---
A backtrace may help (see
https://wiki.documentfoundation.org/QA/BugReport/Debug_Information#GNU.2FLinux:_How_to_get_a_backtrace).

You may also give a try to brand 5.1.1.

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


[Libreoffice-bugs] [Bug 98580] Opening large files in text format limits to 65536 rows

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

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet  ---
4.2.8.2 is EOL, could you give a try to a recent LO version (last stable one is
5.0.5 or even brand new 5.1.1)

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


[Libreoffice-bugs] [Bug 89849] Raise superscript 66% by default

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

--- Comment #18 from David Kremer  ---
http://pix.toile-libre.org/upload/original/1457644346.png

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


[Libreoffice-ux-advise] [Bug 89849] Raise superscript 66% by default

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

--- Comment #18 from David Kremer  ---
http://pix.toile-libre.org/upload/original/1457644346.png

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


[Libreoffice-bugs] [Bug 98581] Documents containing images linked from the web scroll and work very slowly

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

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #4 from Buovjaga  ---
You seem to dig bug 51609, so I'm closing this as dupe :)

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

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


[Libreoffice-bugs] [Bug 63083] Inconsistent subscript/superscript size from toolbar and menu (Draw & Impress)

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

--- Comment #5 from David Kremer  ---
http://pix.toile-libre.org/upload/original/1457644346.png

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


[Libreoffice-bugs] [Bug 51609] UI: When pasting more images at once from the web, there should be the choise to embed them (by default) (for one image, Paste special makes that possible)

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

Buovjaga  changed:

   What|Removed |Added

 CC||florin.arj...@gmail.com

--- Comment #18 from Buovjaga  ---
*** Bug 98581 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 89849] Raise superscript 66% by default

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

--- Comment #17 from David Kremer  ---
I didn't have time to read all the comment, but it seems that I encounter the
same issue (impress 5.1.0.3)

Screenshot attached

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


[Libreoffice-bugs] [Bug 98437] DIALOG: Find & Replace dialog reopens with larger size but collapsed options

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

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #7 from Buovjaga  ---
NEW per comment 6

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


[Libreoffice-bugs] [Bug 98581] Documents containing images linked from the web scroll and work very slowly

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

--- Comment #3 from florin.arj...@gmail.com ---
You are right Buovjaga, it looks like bug 51609, but considering it was first
reported in 2012 and 4 years later pasted content from web still appears by
default as a link (text is ok, but for images it is not, using it without
internet makes the file inoperable) should get attention again.

PS: I discovered I can go to Edit - links and Break links. Images seem to show
in the file. I hope I don't break my files.

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


[Libreoffice-bugs] [Bug 98437] DIALOG: Find & Replace dialog reopens with larger size but collapsed options

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

--- Comment #6 from Akshay Deep  ---
@jphilipz I can reproduce this bug. This bug is really distorting the dialog
interface. :(

Version: 5.2.0.0.alpha0+
Build ID: eff3f82033b5862af6300876aa69d9de0486d61b
CPU Threads: 4; OS Version: Linux 3.19; UI Render: default; 
Locale: en-IN (en_IN)

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


[Libreoffice-bugs] [Bug 97479] cannot open files with brackets in title / LibreOffice 5.1-Fatal Error dialogue box with the text "basic_string::_M_create" (OpenCL)

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

--- Comment #8 from Buovjaga  ---
Created attachment 123478
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123478=edit
File with bracket in name

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


[Libreoffice-bugs] [Bug 98569] Keys HOME/END are not working while editing textzone or notes

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

--- Comment #3 from Dude76  ---
Oh, sorry, i missed it :/

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


[Libreoffice-bugs] [Bug 98530] CALC doesn't show spreadsheets

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

--- Comment #3 from raal  ---
Please send us a sample document, as this makes it easier for us to verify the
bug. 
I have set the bug's status to 'NEEDINFO', so please do change it back to
'UNCONFIRMED' once you have attached a document.
(Please note that the attachment will be public, remove any sensitive
information before attaching it.)
How can I eliminate confidential data from a sample document?
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
Thank you

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


[Libreoffice-commits] core.git: 8 commits - cui/source desktop/source include/jvmfwk jvmfwk/inc jvmfwk/plugins jvmfwk/source stoc/source svtools/source

2016-03-10 Thread Stephan Bergmann
 cui/source/options/optjava.cxx  |   12 +-
 desktop/source/migration/services/jvmfwk.cxx|2 
 include/jvmfwk/framework.hxx|  101 ++--
 jvmfwk/inc/vendorplugin.hxx |7 -
 jvmfwk/plugins/sunmajor/javaenvsetup/javaldx.cxx|   15 +-
 jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx |   25 +---
 jvmfwk/source/elements.cxx  |   16 ---
 jvmfwk/source/framework.cxx |   98 ++-
 stoc/source/javavm/javavm.cxx   |   29 -
 svtools/source/java/javainteractionhandler.cxx  |2 
 10 files changed, 123 insertions(+), 184 deletions(-)

New commits:
commit eee4dd746ea3fc09d51d008446ec82e3de456eed
Author: Stephan Bergmann 
Date:   Thu Mar 10 21:40:45 2016 +0100

Fix memory leaks

Change-Id: If9f7dc4a28d5e005959f0d4a0a2ed317b699f292

diff --git a/include/jvmfwk/framework.hxx b/include/jvmfwk/framework.hxx
index e88ae4b..9a3b884 100644
--- a/include/jvmfwk/framework.hxx
+++ b/include/jvmfwk/framework.hxx
@@ -255,6 +255,26 @@ struct JavaInfo
 rtl::ByteSequence arVendorData;
 };
 
+namespace jfw {
+
+struct JavaInfoGuard {
+JavaInfoGuard(JavaInfoGuard &) = delete;
+void operator =(JavaInfoGuard) = delete;
+
+JavaInfoGuard(): info(nullptr) {}
+
+~JavaInfoGuard() { delete info; }
+
+void clear() {
+delete info;
+info = nullptr;
+}
+
+JavaInfo * info;
+};
+
+}
+
 /** compares two JavaInfo objects for equality.
 
Two JavaInfo objects are said to be equal if the contained
diff --git a/jvmfwk/plugins/sunmajor/javaenvsetup/javaldx.cxx 
b/jvmfwk/plugins/sunmajor/javaenvsetup/javaldx.cxx
index ea2f846..9daf574 100644
--- a/jvmfwk/plugins/sunmajor/javaenvsetup/javaldx.cxx
+++ b/jvmfwk/plugins/sunmajor/javaenvsetup/javaldx.cxx
@@ -64,8 +64,8 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
 return -1;
 }
 
-JavaInfo * pInfo = nullptr;
-errcode = jfw_getSelectedJRE( & pInfo);
+jfw::JavaInfoGuard pInfo;
+errcode = jfw_getSelectedJRE();
 
 if (errcode != JFW_E_NONE && errcode != JFW_E_INVALID_SETTINGS)
 {
@@ -73,19 +73,19 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
 return -1;
 }
 
-if (pInfo == nullptr)
+if (pInfo.info == nullptr)
 {
-if (!findAndSelect())
+if (!findAndSelect())
 return -1;
 }
 else
 {
 //check if the JRE was not uninstalled
 sal_Bool bExist = sal_False;
-errcode = jfw_existJRE(pInfo, );
+errcode = jfw_existJRE(pInfo.info, );
 if (errcode == JFW_E_NONE)
 {
-if (!bExist && !findAndSelect())
+if (!bExist && !findAndSelect())
 return -1;
 }
 else
@@ -95,9 +95,8 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
 }
 }
 
-OString sPaths = getLD_LIBRARY_PATH(pInfo->arVendorData);
+OString sPaths = getLD_LIBRARY_PATH(pInfo.info->arVendorData);
 fprintf(stdout, "%s\n", sPaths.getStr());
-delete pInfo;
 }
 catch (const std::exception&)
 {
diff --git a/stoc/source/javavm/javavm.cxx b/stoc/source/javavm/javavm.cxx
index ab72925..0e65773 100644
--- a/stoc/source/javavm/javavm.cxx
+++ b/stoc/source/javavm/javavm.cxx
@@ -657,23 +657,6 @@ JavaVirtualMachine::getSupportedServiceNames()
 return serviceGetSupportedServiceNames();
 }
 
-namespace {
-
-struct JavaInfoGuard: private boost::noncopyable {
-JavaInfoGuard(): info(nullptr) {}
-
-~JavaInfoGuard() { delete info; }
-
-void clear() {
-delete info;
-info = nullptr;
-}
-
-JavaInfo * info;
-};
-
-}
-
 css::uno::Any SAL_CALL
 JavaVirtualMachine::getJavaVM(css::uno::Sequence< sal_Int8 > const & 
rProcessId)
 throw (css::uno::RuntimeException, std::exception)
@@ -698,7 +681,7 @@ JavaVirtualMachine::getJavaVM(css::uno::Sequence< sal_Int8 
> const & rProcessId)
 if (aId != aProcessId)
 return css::uno::Any();
 
-JavaInfoGuard info;
+jfw::JavaInfoGuard info;
 while (!m_xVirtualMachine.is()) // retry until successful
 {
 // This is the second attempt to create Java.  m_bDontCreateJvm is
@@ -816,14 +799,14 @@ JavaVirtualMachine::getJavaVM(css::uno::Sequence< 
sal_Int8 > const & rProcessId)
 //we search another one. As long as there is a javaldx, we should
 //never come into this situation. javaldx checks always if the JRE
 //still exist.
-JavaInfo * pJavaInfo = nullptr;
-if (JFW_E_NONE == jfw_getSelectedJRE())
+jfw::JavaInfoGuard pJavaInfo;
+if (JFW_E_NONE == jfw_getSelectedJRE())
 {
 sal_Bool bExist = sal_False;
-if (JFW_E_NONE == 

[Libreoffice-bugs] [Bug 98589] New: Printing: selected paper size gets overridden when trying to print

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

Bug ID: 98589
   Summary: Printing: selected paper size gets overridden when
trying to print
   Product: LibreOffice
   Version: 4.3.4.1 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: herrle...@gmail.com

In versions 4.3.4.1 and 5.0.5.2

In Format Page, I can select a #11 or #12 envelope.  But when I select File
Print, it gets changed either to a #10 envelope or sometimes to Letter size
paper.  If I try to define a User (custom) size, it always gets changed to some
predefined size (e.g., 6x9 gets changed to C5) when I try to print.

Identical results with HP 6500 and Canon MF217w.

In Microsoft Word Starter 2010 I can create identical documents and print with
no problem at all.  I simply have to select the proper printer and insert the
envelope.  No requirement to mess with any printer settings.

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


[Libreoffice-bugs] [Bug 98588] SOMME(cell:cell)

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

Julien Nabet  changed:

   What|Removed |Added

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

--- Comment #1 from Julien Nabet  ---
Could you attach an example file?

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


[Libreoffice-commits] core.git: sal/osl

2016-03-10 Thread Stephan Bergmann
 sal/osl/unx/nlsupport.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b6dbc5e70805fd5905ac6e1ec46234ae0020c4cb
Author: Stephan Bergmann 
Date:   Thu Mar 10 21:24:03 2016 +0100

-Werror=shadow

Change-Id: I82d2d44fd43ff2a641df74b9e05aea01991d001c

diff --git a/sal/osl/unx/nlsupport.cxx b/sal/osl/unx/nlsupport.cxx
index 38e49be..92a2828 100644
--- a/sal/osl/unx/nlsupport.cxx
+++ b/sal/osl/unx/nlsupport.cxx
@@ -50,9 +50,9 @@ typedef struct {
  */
 
 static int
-pair_compare (const char *key, const pair *pair)
+pair_compare (const char *key, const pair *pair_)
 {
-int result = rtl_str_compareIgnoreAsciiCase( key, pair->key );
+int result = rtl_str_compareIgnoreAsciiCase( key, pair_->key );
 return result;
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

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

Olivier Hallot  changed:

   What|Removed |Added

 Depends on||42282

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


[Libreoffice-bugs] [Bug 42282] Conditional formatting with text cell-values needs documentation

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

Olivier Hallot  changed:

   What|Removed |Added

 Blocks||80430

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


[Libreoffice-bugs] [Bug 98449] Impress crashes while saving and corrupt the file

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

Buovjaga  changed:

   What|Removed |Added

Version|unspecified |5.1.0.3 release

--- Comment #9 from Buovjaga  ---
(In reply to Didier from comment #8)
> Here is the debug part I get with Visual Studio from the process soffice.bin
> (impress). I am not a developer at all and I am not sure I use the debug
> mode in a correct way. Do you have a video which shows how to get
> information from debugger on Windows 7 ir higher ? :

Well here is an older video (using XP), but the process with Windbg is still
the same: https://www.youtube.com/watch?v=fppBTs215yc
Download is of course from some other source as time went by..

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


[Libreoffice-commits] core.git: sc/CppunitTest_sc_tiledrendering.mk sc/Module_sc.mk sc/qa sc/source

2016-03-10 Thread Jan Holesovsky
 sc/CppunitTest_sc_tiledrendering.mk   |   62 
 sc/Module_sc.mk   |1 
 sc/qa/unit/tiledrendering/data/sort-range.ods |binary
 sc/qa/unit/tiledrendering/tiledrendering.cxx  |  191 ++
 sc/source/ui/view/cellsh2.cxx |7 
 5 files changed, 259 insertions(+), 2 deletions(-)

New commits:
commit 235136c17868627412db8dda148d3c4103907c0c
Author: Jan Holesovsky 
Date:   Thu Mar 10 18:50:54 2016 +0100

sc lok: Don't interact with the user during .uno:SortAscending or 
Descending.

Change-Id: Ib3679413ba59e86438dac83abfa9b624e291e5a9

diff --git a/sc/CppunitTest_sc_tiledrendering.mk 
b/sc/CppunitTest_sc_tiledrendering.mk
new file mode 100644
index 000..995cdc8
--- /dev/null
+++ b/sc/CppunitTest_sc_tiledrendering.mk
@@ -0,0 +1,62 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#*
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+#*
+
+$(eval $(call gb_CppunitTest_CppunitTest,sc_tiledrendering))
+
+$(eval $(call gb_CppunitTest_add_exception_objects,sc_tiledrendering, \
+sc/qa/unit/tiledrendering/tiledrendering \
+))
+
+$(eval $(call gb_CppunitTest_use_libraries,sc_tiledrendering, \
+comphelper \
+cppu \
+cppuhelper \
+editeng \
+sal \
+sfx \
+svl \
+svt \
+svxcore \
+sc \
+scui \
+test \
+unotest \
+vcl \
+tl \
+utl \
+$(gb_UWINAPI) \
+))
+
+$(eval $(call gb_CppunitTest_use_externals,sc_tiledrendering,\
+boost_headers \
+libxml2 \
+))
+
+$(eval $(call gb_CppunitTest_set_include,sc_tiledrendering,\
+-I$(SRCDIR)/sc/inc \
+$$(INCLUDE) \
+))
+
+$(eval $(call gb_CppunitTest_use_api,sc_tiledrendering,\
+offapi \
+udkapi \
+))
+
+$(eval $(call gb_CppunitTest_use_ure,sc_tiledrendering))
+$(eval $(call gb_CppunitTest_use_vcl,sc_tiledrendering))
+
+$(eval $(call gb_CppunitTest_use_rdb,sc_tiledrendering,services))
+
+$(eval $(call gb_CppunitTest_use_configuration,sc_tiledrendering))
+
+$(call gb_CppunitTest_get_target,sc_tiledrendering) : $(call 
gb_AllLangResTarget_get_target,sc)
+
+# vim: set noet sw=4 ts=4:
diff --git a/sc/Module_sc.mk b/sc/Module_sc.mk
index c8f9808..a32e4ae 100644
--- a/sc/Module_sc.mk
+++ b/sc/Module_sc.mk
@@ -45,6 +45,7 @@ $(eval $(call gb_Module_add_check_targets,sc,\
CppunitTest_sc_filters_test \
CppunitTest_sc_rangelst_test \
CppunitTest_sc_core \
+   CppunitTest_sc_tiledrendering \
 ))
 
 $(eval $(call gb_Module_add_slowcheck_targets,sc, \
diff --git a/sc/qa/unit/tiledrendering/data/sort-range.ods 
b/sc/qa/unit/tiledrendering/data/sort-range.ods
new file mode 100644
index 000..cd9e4e4
Binary files /dev/null and b/sc/qa/unit/tiledrendering/data/sort-range.ods 
differ
diff --git a/sc/qa/unit/tiledrendering/tiledrendering.cxx 
b/sc/qa/unit/tiledrendering/tiledrendering.cxx
new file mode 100644
index 000..e5154d8
--- /dev/null
+++ b/sc/qa/unit/tiledrendering/tiledrendering.cxx
@@ -0,0 +1,191 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#include 
+#include 
+#include 
+#include 
+
+#define LOK_USE_UNSTABLE_API
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+
+#include 
+
+#include 
+#include 
+
+using namespace css;
+
+#if !defined(WNT) && !defined(MACOSX)
+static const char* DATA_DIRECTORY = "/sc/qa/unit/tiledrendering/data/";
+#endif
+
+class ScTiledRenderingTest : public test::BootstrapFixture, public 
unotest::MacrosTest, public XmlTestTools
+{
+public:
+ScTiledRenderingTest();
+virtual void setUp() SAL_OVERRIDE;
+virtual void tearDown() SAL_OVERRIDE;
+
+#if !defined(WNT) && !defined(MACOSX)
+void testSortAscendingDescending();
+#endif
+
+CPPUNIT_TEST_SUITE(ScTiledRenderingTest);
+#if !defined(WNT) && !defined(MACOSX)
+CPPUNIT_TEST(testSortAscendingDescending);
+#endif
+CPPUNIT_TEST_SUITE_END();
+
+private:
+#if !defined(WNT) && !defined(MACOSX)
+ScModelObj* createDoc(const char* pName);
+static void callback(int nType, const char* pPayload, void* pData);
+void callbackImpl(int nType, const char* pPayload);
+#endif
+
+uno::Reference mxComponent;
+#if !defined(WNT) && !defined(MACOSX)
+// TODO various test-related members - when 

[Libreoffice-bugs] [Bug 98530] CALC doesn't show spreadsheets

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

--- Comment #2 from theo.jako...@online.de ---
There are 2 options for OpenGL in Menu -> Tools -> LibreOffice -> View and both
are disabled.

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


[Libreoffice-bugs] [Bug 97479] cannot open files with brackets in title / LibreOffice 5.1-Fatal Error dialogue box with the text "basic_string::_M_create" (OpenCL)

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

Buovjaga  changed:

   What|Removed |Added

   Keywords||haveBacktrace

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


  1   2   3   4   >