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

2015-10-30 Thread Miklos Vajna
 libreofficekit/source/gtk/lokdocview.cxx |  152 +--
 libreofficekit/source/gtk/tilebuffer.hxx |4 
 2 files changed, 108 insertions(+), 48 deletions(-)

New commits:
commit bd0ec1e68dcbc344cbaa50e35608bab95925fcaf
Author: Miklos Vajna 
Date:   Fri Oct 30 08:31:43 2015 +0100

lokdocview: ensure private structure is allocated with operator new

It's undesirable to malloc a struct that has a TileBuffer member, while
TileBuffer doesn't have a default ctor.

Change-Id: I72dfacc0088f238ee101d84838bd7eea51ced82a

diff --git a/libreofficekit/source/gtk/lokdocview.cxx 
b/libreofficekit/source/gtk/lokdocview.cxx
index 75032b7..e22816b 100644
--- a/libreofficekit/source/gtk/lokdocview.cxx
+++ b/libreofficekit/source/gtk/lokdocview.cxx
@@ -39,7 +39,7 @@
 #define GRAPHIC_HANDLE_COUNT 8
 
 /// Private struct used by this GObject type
-struct _LOKDocViewPrivate
+struct LOKDocViewPrivateImpl
 {
 const gchar* m_aLOPath;
 const gchar* m_aDocPath;
@@ -115,6 +115,58 @@ struct _LOKDocViewPrivate
 
 /// View ID, returned by createView() or 0 by default.
 int m_nViewId;
+
+LOKDocViewPrivateImpl()
+: m_aLOPath(0),
+m_aDocPath(0),
+m_nLoadProgress(0),
+m_bIsLoading(false),
+m_bCanZoomIn(false),
+m_bCanZoomOut(false),
+m_pOffice(0),
+m_pDocument(0),
+lokThreadPool(0),
+m_fZoom(0),
+m_nDocumentWidthTwips(0),
+m_nDocumentHeightTwips(0),
+m_bEdit(FALSE),
+m_aVisibleCursor({0, 0, 0, 0}),
+m_bCursorOverlayVisible(false),
+m_bCursorVisible(true),
+m_nLastButtonPressTime(0),
+m_nLastButtonReleaseTime(0),
+m_nLastButtonPressed(0),
+m_nKeyModifier(0),
+m_aTextSelectionStart({0, 0, 0, 0}),
+m_aTextSelectionEnd({0, 0, 0, 0}),
+m_aGraphicSelection({0, 0, 0, 0}),
+m_bInDragGraphicSelection(false),
+m_pHandleStart(0),
+m_aHandleStartRect({0, 0, 0, 0}),
+m_bInDragStartHandle(0),
+m_pHandleMiddle(0),
+m_aHandleMiddleRect({0, 0, 0, 0}),
+m_bInDragMiddleHandle(false),
+m_pHandleEnd(0),
+m_aHandleEndRect({0, 0, 0, 0}),
+m_bInDragEndHandle(false),
+m_pGraphicHandle(0),
+m_nViewId(0)
+{
+memset(_aGraphicHandleRects, 0, sizeof(m_aGraphicHandleRects));
+memset(_bInDragGraphicHandles, 0, sizeof(m_bInDragGraphicHandles));
+}
+};
+
+/// Wrapper around LOKDocViewPrivateImpl, managed by malloc/memset/free.
+struct _LOKDocViewPrivate
+{
+LOKDocViewPrivateImpl* m_pImpl;
+
+LOKDocViewPrivateImpl* operator->()
+{
+return m_pImpl;
+}
 };
 
 enum
@@ -167,6 +219,12 @@ G_DEFINE_TYPE_WITH_CODE (LOKDocView, lok_doc_view, 
GTK_TYPE_DRAWING_AREA,
 #pragma GCC diagnostic pop
 #endif
 
+static LOKDocViewPrivate& getPrivate(LOKDocView* pDocView)
+{
+LOKDocViewPrivate* priv = 
static_cast(lok_doc_view_get_instance_private(pDocView));
+return *priv;
+}
+
 /// Helper struct used to pass the data from soffice thread -> main thread.
 struct CallbackData
 {
@@ -249,7 +307,7 @@ postKeyEventInThread(gpointer data)
 {
 GTask* task = G_TASK(data);
 LOKDocView* pDocView = LOK_DOC_VIEW(g_task_get_source_object(task));
-LOKDocViewPrivate *priv = 
static_cast(lok_doc_view_get_instance_private (pDocView));
+LOKDocViewPrivate& priv = getPrivate(pDocView);
 LOEvent* pLOEvent = static_cast(g_task_get_task_data(task));
 
 priv->m_pDocument->pClass->setView(priv->m_pDocument, priv->m_nViewId);
@@ -263,7 +321,7 @@ static gboolean
 signalKey (GtkWidget* pWidget, GdkEventKey* pEvent)
 {
 LOKDocView* pDocView = LOK_DOC_VIEW(pWidget);
-LOKDocViewPrivate* priv = 
static_cast(lok_doc_view_get_instance_private (pDocView));
+LOKDocViewPrivate& priv = getPrivate(pDocView);
 int nCharCode = 0;
 int nKeyCode = 0;
 GError* error = NULL;
@@ -372,7 +430,7 @@ static gboolean
 handleTimeout (gpointer pData)
 {
 LOKDocView* pDocView = LOK_DOC_VIEW (pData);
-LOKDocViewPrivate* priv = 
static_cast(lok_doc_view_get_instance_private (pDocView));
+LOKDocViewPrivate& priv = getPrivate(pDocView);
 
 if (priv->m_bEdit)
 {
@@ -429,7 +487,7 @@ static gboolean queueDraw(gpointer pData)
 static gboolean postDocumentLoad(gpointer pData)
 {
 LOKDocView* pLOKDocView = static_cast(pData);
-LOKDocViewPrivate* priv = 
static_cast(lok_doc_view_get_instance_private(pLOKDocView));
+LOKDocViewPrivate& priv = getPrivate(pLOKDocView);
 
 priv->m_pDocument->pClass->setView(priv->m_pDocument, priv->m_nViewId);
 priv->m_pDocument->pClass->initializeForRendering(priv->m_pDocument);
@@ -462,7 +520,7 @@ static gboolean
 globalCallback (gpointer pData)
 {
 CallbackData* pCallback = 

[Libreoffice-bugs] [Bug 95147] suggestion: warning that automatic wrapping text in LO Calc needs to be set Optimal in case of some xls import

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95147

Cor Nouws  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 95433] New: EDITING autocorrect causes text style to change to default text style.

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95433

Bug ID: 95433
   Summary: EDITING autocorrect causes text style to change to
default text style.
   Product: LibreOffice
   Version: 5.0.2.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: je...@bundsgaard.net

When having set "Autocorrect styles" in the autocorrect settings in order to
make hitting enter twice converting the text into a heading, it also makes text
styles convert into default style when hitting enter once.

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


[Libreoffice-bugs] [Bug 90987] Pages/Slides pane does not remember its state on reopen

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90987

Katarina Behrens (CIB)  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |katarina.behr...@cib.de
   |desktop.org |

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


[Libreoffice-bugs] [Bug 95435] INSTALLATION: Windows Explorer is using files that need to be updated by this setup

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95435

Kevin Suo  changed:

   What|Removed |Added

 Whiteboard||possibleRegression

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


[Libreoffice-bugs] [Bug 37089] LibreOffice should warn explicitly that it can't use a 64bit JRE

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37089

--- Comment #29 from Kumāra  ---
Marc, since the website detects the visitor's OS and offers the exact version,
I suppose you can have it indicate the JRE compatible to that version. So,
assuming me knowledge is correct (on 32/64bit):

For 32bit ones (such as the current Windows version), mention
"If Java is needed, note that this version works with the 32 bit version of
Java (JRE 32bit), not the 64 bit of Java."

For 64bit ones (such as 64bit Linux versions), mention
"If Java is needed, note that this version works with the 64 bit version of
Java (JRE 64bit), not the 32 bit of Java."

But before you make this change, can the more technically knowledgeable ones
confirm the above?

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


[Libreoffice-bugs] [Bug 95432] New: Printing Area Ignoring Columns

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95432

Bug ID: 95432
   Summary: Printing Area Ignoring Columns
   Product: LibreOffice
   Version: 5.0.2.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: milton...@gmail.com

Created attachment 120091
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120091=edit
Print area too small, ignoring columns on right of sheet

The print area of the attached Calc file is ignoring columns at the far right
of the spreadsheet so they are unable to be printed or written out to PDF. A
second page is not offered by Calc for the missing columns.  

How to duplicate:
1. Load file provided
2. Do a Print Preview
3. Try to adjust the print area to include all columns

Notice the columns from "BQ" onward are not included in the print area and that
a second page is also not available to print.

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


[Libreoffice-commits] core.git: basegfx/inc basegfx/source basegfx/test

2015-10-30 Thread Mario J . Rugiero
 basegfx/inc/pch/precompiled_basegfx.hxx   |1 
 basegfx/source/polygon/b2dpolypolygon.cxx |   21 +
 basegfx/source/polygon/b3dpolypolygon.cxx |   46 ++
 basegfx/source/range/b2drangeclipper.cxx  |   14 ++---
 basegfx/test/boxclipper.cxx   |6 +--
 5 files changed, 30 insertions(+), 58 deletions(-)

New commits:
commit 26d5407a5f653e55ec9255117760886bcec4fe15
Author: Mario J. Rugiero 
Date:   Fri Oct 30 01:13:55 2015 -0300

basegfx tree cleanup

- Eliminated an unnecessary boost/bind.hxx include.
- Replaced simple old-style for loops that iterated over a container by 
ranged based for loops.
- Replaced for_each by ranged based for loops wherever valid.

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

diff --git a/basegfx/inc/pch/precompiled_basegfx.hxx 
b/basegfx/inc/pch/precompiled_basegfx.hxx
index c393169..b13cf78 100644
--- a/basegfx/inc/pch/precompiled_basegfx.hxx
+++ b/basegfx/inc/pch/precompiled_basegfx.hxx
@@ -15,7 +15,6 @@
 */
 
 #include 
-#include 
 #include 
 #include 
 #include 
diff --git a/basegfx/source/polygon/b2dpolypolygon.cxx 
b/basegfx/source/polygon/b2dpolypolygon.cxx
index a77652d..d640c53 100644
--- a/basegfx/source/polygon/b2dpolypolygon.cxx
+++ b/basegfx/source/polygon/b2dpolypolygon.cxx
@@ -113,31 +113,26 @@ public:
 
 void flip()
 {
-std::for_each( maPolygons.begin(),
-   maPolygons.end(),
-   std::mem_fun_ref( ::B2DPolygon::flip ));
+for (auto& aPolygon : maPolygons)
+aPolygon.flip();
 }
 
 void removeDoublePoints()
 {
-std::for_each( maPolygons.begin(),
-   maPolygons.end(),
-   std::mem_fun_ref( 
::B2DPolygon::removeDoublePoints ));
+for (auto& aPolygon : maPolygons)
+aPolygon.removeDoublePoints();
 }
 
 void transform(const basegfx::B2DHomMatrix& rMatrix)
 {
-for(size_t a(0L); a < maPolygons.size(); a++)
-{
-maPolygons[a].transform(rMatrix);
-}
+for (auto& aPolygon : maPolygons)
+aPolygon.transform(rMatrix);
 }
 
 void makeUnique()
 {
-std::for_each( maPolygons.begin(),
-   maPolygons.end(),
-   std::mem_fun_ref( ::B2DPolygon::makeUnique ));
+for (auto& aPolygon : maPolygons)
+aPolygon.makeUnique();
 }
 
 const basegfx::B2DPolygon* begin() const
diff --git a/basegfx/source/polygon/b3dpolypolygon.cxx 
b/basegfx/source/polygon/b3dpolypolygon.cxx
index 3c6e672..98bc7ca 100644
--- a/basegfx/source/polygon/b3dpolypolygon.cxx
+++ b/basegfx/source/polygon/b3dpolypolygon.cxx
@@ -107,64 +107,50 @@ public:
 
 void flip()
 {
-std::for_each( maPolygons.begin(),
-   maPolygons.end(),
-   std::mem_fun_ref( &::basegfx::B3DPolygon::flip ));
+for (auto& aPolygon : maPolygons)
+aPolygon.flip();
 }
 
 void removeDoublePoints()
 {
-std::for_each( maPolygons.begin(),
-   maPolygons.end(),
-   std::mem_fun_ref( 
&::basegfx::B3DPolygon::removeDoublePoints ));
+for (auto& aPolygon : maPolygons)
+aPolygon.removeDoublePoints();
 }
 
 void transform(const ::basegfx::B3DHomMatrix& rMatrix)
 {
-for(size_t a(0L); a < maPolygons.size(); a++)
-{
-maPolygons[a].transform(rMatrix);
-}
+for (auto& aPolygon : maPolygons)
+aPolygon.transform(rMatrix);
 }
 
 void clearBColors()
 {
-for(size_t a(0L); a < maPolygons.size(); a++)
-{
-maPolygons[a].clearBColors();
-}
+for (auto& aPolygon : maPolygons)
+aPolygon.clearBColors();
 }
 
 void transformNormals(const ::basegfx::B3DHomMatrix& rMatrix)
 {
-for(size_t a(0L); a < maPolygons.size(); a++)
-{
-maPolygons[a].transformNormals(rMatrix);
-}
+for (auto& aPolygon : maPolygons)
+aPolygon.transformNormals(rMatrix);
 }
 
 void clearNormals()
 {
-for(size_t a(0L); a < maPolygons.size(); a++)
-{
-maPolygons[a].clearNormals();
-}
+for (auto& aPolygon : maPolygons)
+aPolygon.clearNormals();
 }
 
 void transformTextureCoordinates(const ::basegfx::B2DHomMatrix& rMatrix)
 {
-for(size_t a(0L); a < maPolygons.size(); a++)
-{
-maPolygons[a].transformTextureCoordinates(rMatrix);
-}
+for (auto& aPolygon : maPolygons)
+aPolygon.transformTextureCoordinates(rMatrix);
 }
 
 void clearTextureCoordinates()
 {
-

[Libreoffice-bugs] [Bug 95260] Print preview refuses to print only the second page possibly because of page break

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95260

--- Comment #4 from Oliver Specht  ---
I wouldn't want to close it. I just wanted to describe why it behaves that way.
Someone with more user experience knowledge should think about a better
presentation. On the left of the printing dialog you get consecutive page
numbers while on the right you have to skip empty pages.

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


[Libreoffice-bugs] [Bug 41063] Saving/Autosaving causes view to jump to cursor position

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=41063

--- Comment #22 from Jeppe Bundsgaard  ---
I did not have this problem before version 5.0. This is an extremely annoying
bug. 
Using:
Version: 5.0.2.2
Build ID: 00m0(Build:2)
Lokalisering: da-DK (da_DK.UTF-8)

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


[Libreoffice-commits] core.git: 3 commits - connectivity/source sax/source sax/test slideshow/source

2015-10-30 Thread Caolán McNamara
 connectivity/source/drivers/dbase/DTable.cxx |2 -
 sax/source/fastparser/fastparser.cxx |6 
++--
 sax/source/tools/fastserializer.hxx  |4 +-
 sax/test/sax/testsax.cxx |2 -
 sax/test/sax/testwriter.cxx  |4 +-
 sax/test/saxdemo.cxx |4 +-
 slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionImpl.cxx |   14 
+++---
 7 files changed, 22 insertions(+), 14 deletions(-)

New commits:
commit 6e2736705dbbeada40ae6663c006176d052d026a
Author: Caolán McNamara 
Date:   Fri Oct 30 08:10:47 2015 +

coverity#1332210 Uninitialized scalar field

Change-Id: I9f62e3f9d2bb517ad8f4044670de1c4d06a5

diff --git 
a/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionImpl.cxx 
b/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionImpl.cxx
index 1cb003d..963397c 100644
--- a/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionImpl.cxx
+++ b/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionImpl.cxx
@@ -1650,9 +1650,17 @@ class VortexTransition : public ShaderTransition
 {
 public:
 VortexTransition(const TransitionScene& rScene, const TransitionSettings& 
rSettings, int nNX, int nNY)
-: ShaderTransition(rScene, rSettings),
-  mnNX(nNX),
-  mnNY(nNY)
+: ShaderTransition(rScene, rSettings)
+, mnCenterLocation(0)
+, mnTileXIndexLocation(0)
+, mnTileYIndexLocation(0)
+, mnVertexIndexInTileLocation(0)
+, mnCenterBuffer(0)
+, mnTileXIndexBuffer(0)
+, mnTileYIndexBuffer(0)
+, mnVertexIndexInTileBuffer(0)
+, mnNX(nNX)
+, mnNY(nNY)
 {
 mvCenters.resize(6*mnNX*mnNY);
 mvTileXIndexes.resize(6*mnNX*mnNY);
commit e87f71cebee26624b4e9495b0acc172d47e705dd
Author: Caolán McNamara 
Date:   Thu Oct 29 20:23:30 2015 +

cppcheck: noExplicitConstructor

Change-Id: Id6d969713d94b558a93d303c6dabcbfdd1c65194

diff --git a/sax/source/fastparser/fastparser.cxx 
b/sax/source/fastparser/fastparser.cxx
index 824225e..d8baef9 100644
--- a/sax/source/fastparser/fastparser.cxx
+++ b/sax/source/fastparser/fastparser.cxx
@@ -200,7 +200,7 @@ namespace sax_fastparser {
 class FastSaxParserImpl
 {
 public:
-FastSaxParserImpl( FastSaxParser* pFront );
+explicit FastSaxParserImpl(FastSaxParser* pFront);
 ~FastSaxParserImpl();
 
 // XFastParser
@@ -270,7 +270,7 @@ class ParserThread: public salhelper::Thread
 {
 FastSaxParserImpl *mpParser;
 public:
-ParserThread(FastSaxParserImpl *pParser): Thread("Parser"), 
mpParser(pParser) {}
+explicit ParserThread(FastSaxParserImpl *pParser): Thread("Parser"), 
mpParser(pParser) {}
 private:
 virtual void execute() override
 {
@@ -331,7 +331,7 @@ static int call_callbackExternalEntityRef( XML_Parser 
parser,
 class FastLocatorImpl : public WeakImplHelper< XLocator >
 {
 public:
-FastLocatorImpl( FastSaxParserImpl *p ) : mpParser(p) {}
+explicit FastLocatorImpl(FastSaxParserImpl *p) : mpParser(p) {}
 
 void dispose() { mpParser = 0; }
 void checkDispose() throw (RuntimeException) { if( !mpParser ) throw 
DisposedException(); }
diff --git a/sax/source/tools/fastserializer.hxx 
b/sax/source/tools/fastserializer.hxx
index a45da2e..7a56524 100644
--- a/sax/source/tools/fastserializer.hxx
+++ b/sax/source/tools/fastserializer.hxx
@@ -48,7 +48,7 @@ class FastSaxSerializer
 typedef css::uno::Sequence< ::sal_Int32 > Int32Sequence;
 
 public:
-FastSaxSerializer( const css::uno::Reference< css::io::XOutputStream >& 
xOutputStream );
+explicit FastSaxSerializer(const css::uno::Reference< 
css::io::XOutputStream >& xOutputStream);
 ~FastSaxSerializer();
 
 css::uno::Reference< css::io::XOutputStream > getOutputStream();
@@ -176,7 +176,7 @@ private:
 std::deque m_DebugPostponedStartedElements;
 #endif
 
-ForMerge(sal_Int32 const nTag) : m_Tag(nTag) {}
+explicit ForMerge(sal_Int32 const nTag) : m_Tag(nTag) {}
 virtual ~ForMerge() {}
 
 virtual void setCurrentElement( ::sal_Int32 /*nToken*/ ) {}
diff --git a/sax/test/sax/testsax.cxx b/sax/test/sax/testsax.cxx
index 104ac8c..8dbfdfb 100644
--- a/sax/test/sax/testsax.cxx
+++ b/sax/test/sax/testsax.cxx
@@ -47,7 +47,7 @@ namespace sax_test {
 class OSaxParserTest : public WeakImplHelper< XSimpleTest >
 {
 public:
-OSaxParserTest( const Reference < XMultiServiceFactory > & rFactory ) : 
m_rFactory( rFactory )
+explicit OSaxParserTest( const Reference < XMultiServiceFactory > & 
rFactory ) : m_rFactory( rFactory )
 {
 }
 
diff --git a/sax/test/sax/testwriter.cxx b/sax/test/sax/testwriter.cxx
index a1bddcf..c0af020 100644
--- a/sax/test/sax/testwriter.cxx
+++ 

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

2015-10-30 Thread Stephan Bergmann
 configmgr/source/modifications.hxx |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

New commits:
commit fb3f7e20c1cdeb944dff3c8ca9f48dc6450c9ebb
Author: Stephan Bergmann 
Date:   Fri Oct 30 09:38:57 2015 +0100

Get this remove/re-add dance finally sorted out for good

Change-Id: I16cb3fdd699dcd45de25b49d30e0d1b6392fd82b

diff --git a/configmgr/source/modifications.hxx 
b/configmgr/source/modifications.hxx
index dde8452..5549e14 100644
--- a/configmgr/source/modifications.hxx
+++ b/configmgr/source/modifications.hxx
@@ -24,8 +24,9 @@
 
 #include 
 
-#include "path.hxx"
+#include 
 
+#include "path.hxx"
 
 namespace configmgr {
 
@@ -45,6 +46,10 @@ public:
 
 void remove(Path const & path);
 
+#if ENABLE_DCONF
+void clear() { root_.children.clear(); }
+#endif
+
 bool empty() const { return root_.children.empty(); }
 
 Node const & getRoot() const { return root_;}
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 93509] Crash when close a LibODev if enable a While Typing/Autocorrect

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93509

--- Comment #11 from Stephan Bergmann  ---
(In reply to Jean-Baptiste Faure from comment #7)
> Forgot to change the version number (see comment #3). In version 5.0,
> AutoCorrect entry is in Format menu.

How reliable is "Version (earliest affected)" being 5.0.3.1 rc?  Is this really
a regression from 5.0.2 to 5.0.3?

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


[Libreoffice-bugs] [Bug 94134] Copy from Calc and spacial past (MAJ+CTRL+V) to Draw do not work with libreoffice linux 64 v5.0.1.2.0+

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94134

--- Comment #3 from Ari Latvala  ---
No problems detected on 64-bit RHEL 6.7 and LibreOffice 5.0.2.2, Locale: fi-FI
(en_US.utf8)

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


[Libreoffice-ux-advise] [Bug 95407] "Open Documents" List in Navigator is conceptionally broken and should be removed

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95407

--- Comment #5 from Cor Nouws  ---
Hey Brörn,

(In reply to Björn Michaelsen from comment #4)
> Yes, but you are hardly a user to benchmark after, sorry. :/

I did not want to present myself as an 'average user'. Although by the time I
found all that out, I probably was not far from that.

But If you are looking for metrics (I see no so far) for the use of details of
the Navigator, you have to find those in the group op people that use it,
obviously. And those are not average users.

> I bet if you ask our userbase, the vast majority wouldnt even know about the
> navigator _at_ _all_ (although that is changing a bit since its now in the
> sidebar).

So it is good that it is available in the side bar too.
I'm always supporting improvements for simple use, as long as it does not break
the work of people that use and need LibreOffice as a power tool

> (In reply to Cor Nouws from comment #3)
>> ..
>> And if the behaviour is buggy (I do not understand in what way currently) it
>> would be better to improve that then to remove functionality.

What is your opinion on that, please?

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


[Libreoffice-bugs] [Bug 95407] "Open Documents" List in Navigator is conceptionally broken and should be removed

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95407

--- Comment #5 from Cor Nouws  ---
Hey Brörn,

(In reply to Björn Michaelsen from comment #4)
> Yes, but you are hardly a user to benchmark after, sorry. :/

I did not want to present myself as an 'average user'. Although by the time I
found all that out, I probably was not far from that.

But If you are looking for metrics (I see no so far) for the use of details of
the Navigator, you have to find those in the group op people that use it,
obviously. And those are not average users.

> I bet if you ask our userbase, the vast majority wouldnt even know about the
> navigator _at_ _all_ (although that is changing a bit since its now in the
> sidebar).

So it is good that it is available in the side bar too.
I'm always supporting improvements for simple use, as long as it does not break
the work of people that use and need LibreOffice as a power tool

> (In reply to Cor Nouws from comment #3)
>> ..
>> And if the behaviour is buggy (I do not understand in what way currently) it
>> would be better to improve that then to remove functionality.

What is your opinion on that, please?

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


[Libreoffice-bugs] [Bug 95407] "Open Documents" List in Navigator is conceptionally broken and should be removed

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95407

pierre-yves samyn  changed:

   What|Removed |Added

 CC||pierre-yves.samyn@laposte.n
   ||et

--- Comment #6 from pierre-yves samyn  ---
Hi

(In reply to Björn Michaelsen from comment #2)
> (In reply to Cor Nouws from comment #1)
> > This view allows dragging to link / copy content from another file. E.g. a
> > whole chapter from one to another.
> 
> ... except nobody will find that functionality anyway, because it is buries
> below all the buggy behaviour described above. :/

Precisely, the french TDF Playlist includes a video (1) which shows how to use
this very useful feature.

I would agree for it to be improved (?) but I am certainly not convinced of the
need to remove it altogether.

(1)
https://www.youtube.com/watch?v=PF43zctn3RM=50=PL0pdzjvYW9RFl1ZRu8MkE3QxWQSt7Xktk

Best regards
Pierre-Yves

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


[Libreoffice-ux-advise] [Bug 95407] "Open Documents" List in Navigator is conceptionally broken and should be removed

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95407

pierre-yves samyn  changed:

   What|Removed |Added

 CC||pierre-yves.samyn@laposte.n
   ||et

--- Comment #6 from pierre-yves samyn  ---
Hi

(In reply to Björn Michaelsen from comment #2)
> (In reply to Cor Nouws from comment #1)
> > This view allows dragging to link / copy content from another file. E.g. a
> > whole chapter from one to another.
> 
> ... except nobody will find that functionality anyway, because it is buries
> below all the buggy behaviour described above. :/

Precisely, the french TDF Playlist includes a video (1) which shows how to use
this very useful feature.

I would agree for it to be improved (?) but I am certainly not convinced of the
need to remove it altogether.

(1)
https://www.youtube.com/watch?v=PF43zctn3RM=50=PL0pdzjvYW9RFl1ZRu8MkE3QxWQSt7Xktk

Best regards
Pierre-Yves

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


[Libreoffice-bugs] [Bug 95434] New: LINEST function shows error if empty cells are in range

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95434

Bug ID: 95434
   Summary: LINEST function shows error if empty cells are in
range
   Product: LibreOffice
   Version: 5.0.2.2 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lhr...@inet.hr

Contrary to expected behaviour, (like SLOPE and INTERCEPT), LINEST shows error
if there are empty cells in a range. It would be very useful if it would still
work, despite empty cells.

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


[Libreoffice-bugs] [Bug 95435] New: INSTALLATION: Windows Explorer is using files that need to be updated by this setup

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95435

Bug ID: 95435
   Summary: INSTALLATION: Windows Explorer is using files that
need to be updated by this setup
   Product: LibreOffice
   Version: 5.0.3.1 rc
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Installation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: suokunl...@126.com

When upgrading from version 5.0.3.1 to 5.0.3.2, running the installer I
encounter the following error message:

'''
The following applications are using files that need to be updated by this
setup. Close these applications and click Retry to continue:

Windows Explorer (Process ID 1248)
'''

I tried many times and the error continues, which blocks me installing the
software. 
Kill this process id 1248 and restart c:\windows\explorer.exe will solve the
problem.

I'm filing this bug because this will prevent ordinary users' installation
process - Not all Windows users know how to kill and restart the explorer
process.

This is a possible regression because previous versions do not have this issue.

Version: 5.0.3.2
Build ID: e5f16313668ac592c1bfb310f4390624e3dbfb75
Locale: zh-CN (zh_CN)
Win10 X86

I set version to 5.0.3.1 because there is no 5.0.3.2 entry in the bugzilla
version field at this moment.

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


[Libreoffice-bugs] [Bug 70838] FILESAVE: doc, docx: wrong size and position exporting rotated shapes

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70838

--- Comment #18 from Jacobo Aragunde Pérez  ---
Still reproducible when saving to .doc binary format. Use attachment 88102 as
test case for simplicity.

Version: 5.1.0.0.alpha1+
Build ID: 086aec27ddfd72dc21fffb0466cb5c815e2b4169

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


[Libreoffice-bugs] [Bug 94921] Picture at wrong position after sheet copy

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94921

raal  changed:

   What|Removed |Added

Version|5.0.2.2 release |4.5.0.0.alpha0+ Master

--- Comment #8 from raal  ---
bibisect-win32-5.0, oldest version contains bug too.
git checkout oldest: Version: 4.5.0.0.alpha0+
Build ID: 57d6b92b69a31260dea0d84fcd1fc5866ada7adb

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


[Libreoffice-bugs] [Bug 63130] FILESAVE Libreoffice has stopped working when saving or working with large Visio 2003 Drawing

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63130

Winfried Donkers  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW
 OS|Linux (All) |Windows (All)

--- Comment #16 from Winfried Donkers  ---
(In reply to Julien Nabet from comment #15)
> Winfried: any thoughts?

I tested again with attachment 84664 [details], Windows 7 pro SP1 32 bit, MS
Visio 2007 and LibreOffice Writer, version 4.4.5.2.

Used method:
-open visio drawing with Visio
-opened existing Writer document
-in visio, selected all with Ctrl-A and copied to clipboard with Ctrl-C
-in writer:
 -paste shows an hourglass for some seconds, but nothing happens, nothing is
pasted
 -past special shows dialog from I choose 'Microsoft Visio drawing'; further as
with paste

Selecting smaller chunks from the Visio drawing (approx 40% and 60%) worked
fine with copy/paste as well as with paste special.

Setting status back to NEW and OS to Windows as this is specific for Windows;
there is no Microsoft Visio for Linux AFAIK.

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


[Libreoffice-bugs] [Bug 95287] 1000(?) images generated after turning on record changes

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95287

Aron Boss  changed:

   What|Removed |Added

 Attachment #119917|0   |1
is obsolete||

--- Comment #3 from Aron Boss  ---
Created attachment 120093
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120093=edit
With text without text but with correct xml

the last  was added to make it a correct xml file.
It was not in the original source file.

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


[Libreoffice-bugs] [Bug 95147] suggestion: warning that automatic wrapping text in LO Calc needs to be set Optimal in case of some xls import

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95147

Cor Nouws  changed:

   What|Removed |Added

 CC||c...@nouenoff.nl
Version|4.4.5.2 release |Inherited From OOo
Summary|automatic wrapping text in  |suggestion: warning that
   |LO Calc - suggestion|automatic wrapping text in
   ||LO Calc needs to be set
   ||Optimal in case of some xls
   ||import
 Whiteboard||interoperability

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


[Libreoffice-bugs] [Bug 78401] Form layout not correct on Word/DOC document

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78401

Ari Latvala  changed:

   What|Removed |Added

Version|4.1.0.4 release |5.0.2.2 release

--- Comment #10 from Ari Latvala  ---
So now with the LibreOffice 5.0.2.2 on RHEL 6.7 64-bit Linux this doc file is
practically useless because of the layout problems.

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


[Libreoffice-bugs] [Bug 95379] Auto-correct Options - Word Completion Crashes Writer, Simplified Chinese (zh_CN) UI

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95379

Kevin Suo  changed:

   What|Removed |Added

   Keywords||have-backtrace

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


[Libreoffice-bugs] [Bug 95379] Auto-correct Options - Word Completion Crashes Writer, Simplified Chinese (zh_CN) UI

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95379

Kevin Suo  changed:

   What|Removed |Added

 Attachment #120090|0   |1
is obsolete||

--- Comment #4 from Kevin Suo  ---
Created attachment 120092
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120092=edit
WinDbg bracktrace

Well, here is the WinDbg backtrace.

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


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

2015-10-30 Thread Miklos Vajna
 sw/inc/calbck.hxx |6 +--
 sw/inc/hints.hxx  |4 +-
 sw/inc/ndgrf.hxx  |4 +-
 sw/inc/ndnotxt.hxx|4 +-
 sw/inc/ndole.hxx  |4 +-
 sw/inc/ndtxt.hxx  |4 +-
 sw/inc/node.hxx   |   72 ++--
 sw/inc/tox.hxx|   30 +++
 sw/source/core/attr/calbck.cxx|   10 ++---
 sw/source/core/attr/hints.cxx |   10 ++---
 sw/source/core/docnode/ndsect.cxx |6 +--
 sw/source/core/docnode/ndtbl.cxx  |   20 +-
 sw/source/core/docnode/node.cxx   |   74 ++---
 sw/source/core/docnode/nodes.cxx  |   76 +++---
 sw/source/core/tox/tox.cxx|   52 +-
 sw/source/core/undo/untbl.cxx |6 +--
 16 files changed, 191 insertions(+), 191 deletions(-)

New commits:
commit 99261989ddbf4ec0223fe8ed3e874b27edf8843e
Author: Miklos Vajna 
Date:   Fri Oct 30 08:36:04 2015 +0100

sw: prefix members of SwFindNearestNode

Change-Id: Iea2094f736837f5aecde2d9ff810dffb062d2315

diff --git a/sw/inc/hints.hxx b/sw/inc/hints.hxx
index 97a6397..481993d4 100644
--- a/sw/inc/hints.hxx
+++ b/sw/inc/hints.hxx
@@ -242,12 +242,12 @@ public:
 
 class SwFindNearestNode : public SwMsgPoolItem
 {
-const SwNode *pNd, *pFnd;
+const SwNode *m_pNode, *m_pFound;
 public:
 SwFindNearestNode( const SwNode& rNd );
 void CheckNode( const SwNode& rNd );
 
-const SwNode* GetFoundNode() const { return pFnd; }
+const SwNode* GetFoundNode() const { return m_pFound; }
 };
 
 class SwStringMsgPoolItem : public SwMsgPoolItem
diff --git a/sw/source/core/attr/hints.cxx b/sw/source/core/attr/hints.cxx
index abbf1b0..47d25a7 100644
--- a/sw/source/core/attr/hints.cxx
+++ b/sw/source/core/attr/hints.cxx
@@ -150,19 +150,19 @@ SwVirtPageNumInfo::SwVirtPageNumInfo( const SwPageFrm 
*pPg ) :
 }
 
 SwFindNearestNode::SwFindNearestNode( const SwNode& rNd )
-: SwMsgPoolItem( RES_FINDNEARESTNODE ), pNd(  ), pFnd( 0 )
+: SwMsgPoolItem( RES_FINDNEARESTNODE ), m_pNode(  ), m_pFound( 0 )
 {
 }
 
 void SwFindNearestNode::CheckNode( const SwNode& rNd )
 {
-if( >GetNodes() == () )
+if( _pNode->GetNodes() == () )
 {
 sal_uLong nIdx = rNd.GetIndex();
-if( nIdx < pNd->GetIndex() &&
-( !pFnd || nIdx > pFnd->GetIndex() ) &&
+if( nIdx < m_pNode->GetIndex() &&
+( !m_pFound || nIdx > m_pFound->GetIndex() ) &&
 nIdx > rNd.GetNodes().GetEndOfExtras().GetIndex() )
-pFnd = 
+m_pFound = 
 }
 }
 
commit e794e43a0cedb9b836f0d1d75ad31413ee74cfea
Author: Miklos Vajna 
Date:   Fri Oct 30 08:35:03 2015 +0100

sw: prefix members of SwForm

Change-Id: I91c1aa5149bff9c6489ad6f1a68818b502d95966

diff --git a/sw/inc/tox.hxx b/sw/inc/tox.hxx
index 999c229..145d025 100644
--- a/sw/inc/tox.hxx
+++ b/sw/inc/tox.hxx
@@ -287,15 +287,15 @@ public:
 
 class SW_DLLPUBLIC SwForm
 {
-SwFormTokensaPattern[ AUTH_TYPE_END + 1 ]; // #i21237#
-OUString  aTemplate[ AUTH_TYPE_END + 1 ];
+SwFormTokensm_aPattern[ AUTH_TYPE_END + 1 ]; // #i21237#
+OUString  m_aTemplate[ AUTH_TYPE_END + 1 ];
 
-TOXTypeseType;
-sal_uInt16  nFormMaxLevel;
+TOXTypesm_eType;
+sal_uInt16  m_nFormMaxLevel;
 
-boolbGenerateTabPos : 1;
-boolbIsRelTabPos : 1;
-boolbCommaSeparated : 1;
+boolm_bGenerateTabPos : 1;
+boolm_bIsRelTabPos : 1;
+boolm_bCommaSeparated : 1;
 
 public:
 SwForm( TOXTypes eTOXType = TOX_CONTENT );
@@ -317,11 +317,11 @@ public:
 inline TOXTypes GetTOXType() const;
 inline sal_uInt16   GetFormMax() const;
 
-bool IsRelTabPos() const{   return bIsRelTabPos; }
-void SetRelTabPos( bool b ) {   bIsRelTabPos = b;   }
+bool IsRelTabPos() const{   return m_bIsRelTabPos; }
+void SetRelTabPos( bool b ) {   m_bIsRelTabPos = b;   }
 
-bool IsCommaSeparated() const   { return bCommaSeparated;}
-void SetCommaSeparated( bool b) { bCommaSeparated = b;}
+bool IsCommaSeparated() const   { return m_bCommaSeparated;}
+void SetCommaSeparated( bool b) { m_bCommaSeparated = b;}
 
 static sal_uInt16 GetFormMaxLevel( TOXTypes eType );
 
@@ -646,23 +646,23 @@ inline OUString SwTOXMark::GetSecondaryKeyReading() const
 inline void SwForm::SetTemplate(sal_uInt16 nLevel, const OUString& rTemplate)
 {
 SAL_WARN_IF(nLevel >= GetFormMax(), "sw", "Index >= GetFormMax()");
-aTemplate[nLevel] = rTemplate;
+m_aTemplate[nLevel] = rTemplate;
 }
 
 inline OUString SwForm::GetTemplate(sal_uInt16 nLevel) const
 {
 SAL_WARN_IF(nLevel >= GetFormMax(), "sw", "Index >= GetFormMax()");
-return aTemplate[nLevel];
+return m_aTemplate[nLevel];
 }
 
 inline TOXTypes SwForm::GetTOXType() const
 

[Libreoffice-bugs] [Bug 95415] When copying one slide, LO pastes a different slide in Impress EDITING UI

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95415

--- Comment #1 from Ari Latvala  ---
tested on RHEL 6.7 64-bit LibreOffice 5.0.2.2 and with the attached document I
was able to replicate the problem but if I first duplicate Slide 2 and then
copy/paste that, it works without problems. Also creating a clean Impress
presentation did not reveal this problem, so it looks like some corruption on
the attached doc only.

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


Re: [PATCH] install_cygwin.ps1

2015-10-30 Thread jan iversen
On 30 October 2015 at 01:13, Norbert Thiebaud  wrote:

> On Thu, Oct 29, 2015 at 6:32 PM, jan iversen 
> wrote:
> >
> >
> >
> > Thanks for the answer, I will make a copy of that repo (so much for
> "core is
> > the only repo you will ever need")
>
> if you downloaded and used that ps1 file, that indicate that you were
> following the 'lode' ways of setting up a build environment (a good
> thing.. but I'm partial :-) ).
> step 2 of this process _is_ to download the lode.git repo.. so you
> should really already have it.
>

I did all of that, but surprise the logerrit in core only handles core, no
support for newbees that want to submit patches for different parts.

Please bear over with me, I am trying to follow the instructions to the
letter (as a newbee would), and have already made several changes to the
lode
wiki pages to clarify a couple of pitfalls. My intentions was to work as a
completely new person, which of course included submitting a patch by mail
(since logerrit does not work for lode) and see how it was handled.

with a little git magic (including copying .gitreview) I managed to push my
patch to gerrit:
https://gerrit.libreoffice.org/19681

Looking forward to see if it gets committed.


>
> And yes core.git is all you need to build the product ( although
> depending on the build option you may get dictionaries.git, help.git
> and/or translation.git as git submodule).
> lode.git is a separate 'tools' developed originally to help deploying
> ci slavebot.
> lode help among other thing 'manage' core.git using a local bare
> mirror clone --reference to deply build environment cheaply.
> it could not live in core.git again due to a chicken and egg problem.
>
> and as you can see here: https://gerrit.libreoffice.org/#/admin/projects/

I actually saw nearly the same, looking at the git repos, and then a nice
person at the hackfest told me to forget it all :-)



>
>
> we do have quite a few auxiliary git repo under management :-)
>
> >I was told (on irc) by mst that our web server content is not in git
> (which in my mind seems wrong)
>
> most of it is not, for good reason.. git is not the best way to manage
> a bunch of fat tar.gz source release of all the external dependencies
> we use.
> I've put that particular script _there_ as a convenience (convenient
> to me as that web server already existed and server plain file), but
> really the cygwin_install scrip is completely unrelated to the rest of
> the content there.
>
Sorry I should have been more strict in my wording, I meant the static
parts, of course source tar balls etc does not belong in git.

A case could be made as to where the script belongs, but I happen to agree
with you that it has a good place.

Sorry for being a pain, I am just trying to get up to speed on how TDF/LO
does things so I later can be better help to new people.

rgds
jan i.


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


[Libreoffice-bugs] [Bug 95420] Optimal row height not determined correctly for small font rows

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95420

--- Comment #3 from Hayo Baan  ---
I tested some more versions:

v3.3.0 Fully OK (row height shown correctly)

v3.6.7.2 Half working OK. Initially the spreadsheet is shown with the rows too
high. Manually setting the optimal row height via the context menu/double
clicking works correctly though.

v4.0.0.1 Same bad behaviour as in 5.0.2.2
v4.4.6.3 Same bad behaviour as in 5.0.2.2

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


[Libreoffice-bugs] [Bug 94779] "Could not create system" fatal error on FILESAVE

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94779

David Clayton  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTABUG

--- Comment #2 from David Clayton  ---
Hi Joel,

Thank you for your reply. Apologies I haven't been back and updated the report.
I have installed 5.0.3.1 and haven't noticed the fault since. I don't know if
it was fixed directly, or if there was an error in the local installation.
David.

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


[Libreoffice-bugs] [Bug 84843] Issues with Writer drawing toolbar while in read-only mode

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84843

--- Comment #3 from Jacobo Aragunde Pérez  ---
Still reproducible in master. Easy steps:

1. Open any Writer document.
2. Enable the drawing toolbar.
3. Press Shift+Ctrl+M to toggle edit mode.

Result: drawing toolbar still visible, some buttons enabled but have no effect.

Expected result: drawing toolbar should disappear just like the formatting
toolbar.


Version: 5.1.0.0.alpha1+
Build ID: 086aec27ddfd72dc21fffb0466cb5c815e2b4169

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


[Libreoffice-bugs] [Bug 94338] The form letter in pdf format from the database recorded generates identical documents

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94338

--- Comment #2 from AndreaM  ---
Created attachment 120096
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120096=edit
Sample of bugs

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


[Libreoffice-bugs] [Bug 37089] LibreOffice should warn explicitly that it can't use a 64bit JRE

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37089

--- Comment #31 from Stephan Bergmann  ---
(In reply to Marc Pare from comment #28)
> Suggest text then?

The one in comment 25 (maybe with an addition of "..., not the 64 bit *version*
...") is IMO fine with "Please display this for 32bit versions of LO only."

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


[Libreoffice-bugs] [Bug 37089] LibreOffice should warn explicitly that it can't use a 64bit JRE

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37089

--- Comment #30 from Kumāra  ---
Sorry correction:

For 32bit ones (such as the current Windows version), mention
"If Java is needed, note that this version works with the 32 bit version of
Java (JRE 32bit), not the 64 bit one."

For 64bit ones (such as 64bit Linux versions), mention
"If Java is needed, note that this version works with the 64 bit version of
Java (JRE 64bit), not the 32 bit one."

If someone else has a more elegant solution/phrasing, please suggest.

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


[Libreoffice-commits] core.git: 2 commits - accessibility/source avmedia/source basctl/source basic/qa basic/source bridges/test canvas/source canvas/workben chart2/source chart2/workbench editeng/sou

2015-10-30 Thread Noel Grandin
 UnoControls/source/base/basecontainercontrol.cxx  |2 -
 UnoControls/source/base/basecontrol.cxx   |6 
++--
 UnoControls/source/controls/OConnectionPointContainerHelper.cxx   |2 -
 UnoControls/source/controls/OConnectionPointHelper.cxx|2 -
 UnoControls/source/controls/framecontrol.cxx  |2 -
 UnoControls/source/controls/progressmonitor.cxx   |   10 
+++---
 UnoControls/source/controls/statusindicator.cxx   |2 -
 accessibility/source/extended/accessiblelistboxentry.cxx  |5 
+--
 accessibility/source/extended/textwindowaccessibility.cxx |9 
++
 accessibility/source/standard/floatingwindowaccessible.cxx|3 --
 accessibility/source/standard/vclxaccessiblelist.cxx  |3 --
 avmedia/source/framework/soundhandler.cxx |8 
++---
 avmedia/source/gstreamer/gstmanager.cxx   |2 -
 avmedia/source/gstreamer/gstuno.cxx   |2 -
 avmedia/source/macavf/macavfuno.mm|2 -
 avmedia/source/macavf/manager.mm  |2 -
 avmedia/source/opengl/ogluno.cxx  |2 -
 avmedia/source/quicktime/manager.mm   |2 -
 avmedia/source/quicktime/quicktimeuno.mm  |2 -
 avmedia/source/viewer/mediawindow_impl.cxx|2 -
 avmedia/source/vlc/vlcmanager.cxx |2 -
 avmedia/source/vlc/vlcplayer.cxx  |2 -
 avmedia/source/vlc/vlcuno.cxx |2 -
 avmedia/source/win/manager.cxx|2 -
 avmedia/source/win/player.cxx |2 -
 avmedia/source/win/winuno.cxx |2 -
 basctl/source/accessibility/accessibledialogcontrolshape.cxx  |2 -
 basctl/source/basicide/moduldl2.cxx   |   10 
++
 basctl/source/basicide/moduldlg.cxx   |2 -
 basctl/source/dlged/dlgedobj.cxx  |4 +-
 basctl/source/dlged/propbrw.cxx   |4 --
 basic/qa/cppunit/test_vba.cxx |6 
+---
 basic/source/classes/propacc.cxx  |2 -
 basic/source/classes/sbunoobj.cxx |   15 
--
 basic/source/uno/namecont.cxx |2 -
 bridges/test/java_uno/nativethreadpool/testnativethreadpoolclient.cxx |5 
+--
 bridges/test/java_uno/nativethreadpool/testnativethreadpoolserver.cxx |3 --
 bridges/test/testclient.cxx   |2 -
 bridges/test/testcomp.cxx |2 -
 bridges/test/testsameprocess.cxx  |2 -
 canvas/source/cairo/cairo_canvashelper.cxx|8 
++---
 canvas/source/tools/canvastools.cxx   |4 +-
 canvas/workben/canvasdemo.cxx |3 --
 chart2/source/controller/accessibility/AccessibleChartElement.cxx |3 --
 chart2/source/controller/accessibility/AccessibleChartView.cxx|2 -
 chart2/source/controller/chartapiwrapper/Chart2ModelContact.cxx   |4 +-
 chart2/source/controller/chartapiwrapper/ChartDataWrapper.cxx |4 +-
 chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx |2 -
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx   |   10 
+++---
 chart2/source/controller/chartapiwrapper/MinMaxLineWrapper.cxx|4 +-
 chart2/source/controller/main/ChartController.cxx |4 +-
 chart2/source/controller/main/ChartController_Tools.cxx   |2 -
 chart2/source/controller/main/ChartFrameloader.cxx|2 -
 chart2/source/controller/main/PositionAndSizeHelper.cxx   |2 -
 chart2/source/tools/DiagramHelper.cxx |2 -
 chart2/source/tools/ExplicitCategoriesProvider.cxx|6 
+---
 chart2/source/tools/InternalDataProvider.cxx  |6 
+---
 chart2/source/tools/LifeTime.cxx  |2 -
 chart2/source/tools/ObjectIdentifier.cxx  |4 +-
 chart2/source/view/charttypes/GL3DBarChart.cxx|2 -
 chart2/source/view/charttypes/PieChart.cxx|2 -
 

[Libreoffice-bugs] [Bug 95379] Auto-correct Options - Word Completion Crashes Writer, Simplified Chinese (zh_CN) UI

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95379

Jacques Guilleron  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||guillero...@aol.com
 Ever confirmed|0   |1

--- Comment #5 from Jacques Guilleron  ---
Hi Kevin,

I confirm the crash with UI switched to Simplified Chinese in 
LO 5.0.3.1 Build ID: fd8cfc22f7f58033351fcb8a83b92acbadb0749e
under Windows 7 Home.
No crash with French UI.
This is not the same bug than bug 95068. Here, only selecting Word Completion
tab
is enough to cause the crash.

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


[Libreoffice-bugs] [Bug 78401] Form layout not correct on Word/DOC document

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78401

--- Comment #8 from Ari Latvala  ---
Created attachment 120094
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120094=edit
Right after opening the file

Compare this and modified to the original screenshots attached earlier. Table
cells are not correctly laid out and on the bottom part text is again
practically unreadable.

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


[Libreoffice-bugs] [Bug 95420] Optimal row height not determined correctly for small font rows

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95420

--- Comment #2 from Hayo Baan  ---
Hi Joel, thanks for looking into this.

(In reply to Joel Madero from comment #1)
> Bodhi 3.x
> LibreOffice 5.0.2.2 release - if you can test older versions and report back
> that would be great
> (http://downloadarchive.documentfoundation.org/libreoffice/old/)

I downloaded and tested this against the 4.4.6.3 release just now too and it
exhibits the same behaviour. If you want, I can easily test other versions too.

> Setting to:
> NEW
> Minor - can slow down but won't prevent high quality work;
> Low - easy workaround (manually set)

(though it becomes quiet cumbersome to do this for hundreds of rows…)


> It's a little unclear if the second thing mentioned is a separate issue - if
> it is it should be reported separately.

I'm sure this is actually one and the same issue, updating a cell just triggers
libre office to re-evaluate the optimal row height.


> In the future please don't report bugs against master without testing a
> stable release first as "version" is oldest version the bug is on so master
> should only contain regressions.

Oops, I selected the wrong version; I was using the latest stable version
(5.0.2.2)

Hope this is an easy thing to fix as most of my spreadsheets have these smaller
font size rows (to cram more info on them)…

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


[Libreoffice-bugs] [Bug 78401] Form layout not correct on Word/DOC document

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78401

--- Comment #11 from Ari Latvala  ---
On LO 5.0.2.2 RTF version of the document is almost good but extends to two
pages, when the original PDF is fitted onto one page. Binary DOC version then
again is practivally unusable due to the layout problems.

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


Re: [Libreoffice-qa] minutes of ESC call ...

2015-10-30 Thread Xisco Faulí
>
> * Hackfests (Bjoern)
> + Could we join the GNOME hack-fest in Madrid ? (Bjoern)
> + booked a room.
> + if they get 5x more LibreOffice hackers - would be good.
> + 3x confirmed people: Bubli, JanI, Bjoern.
> + volunteers are invited.
> + may attend the hack-fest (Jacobo)
> + no wiki page yet Dec 2nd -> 4th planned.
> + waiting for confirmation.
>

Hi,

I'm currently living in Madrid and I'd like to attempt the meeting. It goes
without saying that I can give a hand on the field if help is needed.

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


Re: [Libreoffice-qa] minutes of ESC call ...

2015-10-30 Thread Xisco Faulí
>
> * Hackfests (Bjoern)
> + Could we join the GNOME hack-fest in Madrid ? (Bjoern)
> + booked a room.
> + if they get 5x more LibreOffice hackers - would be good.
> + 3x confirmed people: Bubli, JanI, Bjoern.
> + volunteers are invited.
> + may attend the hack-fest (Jacobo)
> + no wiki page yet Dec 2nd -> 4th planned.
> + waiting for confirmation.
>

Hi,

I'm currently living in Madrid and I'd like to attempt the meeting. It goes
without saying that I can give a hand on the field if help is needed.

Regards
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-bugs] [Bug 37089] LibreOffice should warn explicitly that it can't use a 64bit JRE

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37089

--- Comment #28 from Marc Pare  ---
(In reply to Stephan Bergmann from comment #27)
> (In reply to Marc Pare from comment #26)
> > "If Java is needed, all versions of LibreOffice (32bit and 64bit) work with
> > the 32 bit version of Java (JRE 32bit), not the 64 bit Java (JRE 64bit).
> > Support for 64bit Java is coming soon."
> 
> That is wrong.  A 32-bit LO build needs a 32-bit JRE, while a 64-bit LO
> build needs a 64-bit JRE.

Suggest text then?

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


[Libreoffice-bugs] [Bug 95287] 1000(?) images generated after turning on record changes

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95287

Aron Boss  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #4 from Aron Boss  ---
The attachment is made by unzipping the odt file, cut out the normal text tags
and add one extra tag in the end.

It shows two images with the 1000 images bug.

The file can be opened in Firefox.

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


[Libreoffice-bugs] [Bug 78401] Form layout not correct on Word/DOC document

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78401

--- Comment #9 from Ari Latvala  ---
Created attachment 120095
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120095=edit
Extended some table rows to show all content

This shows better, how the cell layout is badly distorted, when compared to the
PDF layout, which can be seen on the other screenshot

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


[Libreoffice-bugs] [Bug 78401] Form layout not correct on Word/DOC document

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78401

Ari Latvala  changed:

   What|Removed |Added

   Keywords|bisected|
 Whiteboard|BSA bibisected  |

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


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

2015-10-30 Thread Aybuke Ozdemir
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |2 -
 svx/source/gallery2/galctrl.cxx|   20 +++--
 svx/source/tbxctrls/fontworkgallery.cxx|   17 ++-
 3 files changed, 10 insertions(+), 29 deletions(-)

New commits:
commit 813b11a96e4c1243c4d3533eee148c49d8926ecc
Author: Aybuke Ozdemir 
Date:   Fri Oct 23 23:12:08 2015 +0300

tdf#88548 fontwork gallery always have transparent/checkered background.

Change-Id: I8995ef12edb64c14788ba3a2c3c1c2ceb3775b11
(cherry picked from commit 9b322ace3b8f316104f7138b082d2ffdb282c816)
Reviewed-on: https://gerrit.libreoffice.org/19642
Reviewed-by: Katarina Behrens 
Tested-by: Katarina Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index 3c1f592..ad22cd2 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -6405,7 +6405,7 @@
   
   Shows previews with shining through checkered background to 
visualize transparency.
  
- true
+ false

 
 
diff --git a/svx/source/gallery2/galctrl.cxx b/svx/source/gallery2/galctrl.cxx
index e05b8ab..f79ca3cf 100644
--- a/svx/source/gallery2/galctrl.cxx
+++ b/svx/source/gallery2/galctrl.cxx
@@ -257,23 +257,13 @@ void GalleryPreview::PreviewMedia( const INetURLObject& 
rURL )
 
 void drawTransparenceBackground(vcl::RenderContext& rOut, const Point& rPos, 
const Size& rSize)
 {
-const StyleSettings& rStyleSettings = 
Application::GetSettings().GetStyleSettings();
 
-if (rStyleSettings.GetPreviewUsesCheckeredBackground())
-{
-// draw checkered background
-static const sal_uInt32 nLen(8);
-static const Color aW(COL_WHITE);
-static const Color aG(0xef, 0xef, 0xef);
+// draw checkered background
+static const sal_uInt32 nLen(8);
+static const Color aW(COL_WHITE);
+static const Color aG(0xef, 0xef, 0xef);
 
-rOut.DrawCheckered(rPos, rSize, nLen, aW, aG);
-}
-else
-{
-rOut.SetLineColor();
-rOut.SetFillColor(rStyleSettings.GetFieldColor());
-rOut.DrawRect(Rectangle(rPos, rSize));
-}
+rOut.DrawCheckered(rPos, rSize, nLen, aW, aG);
 }
 
 GalleryIconView::GalleryIconView( GalleryBrowser2* pParent, GalleryTheme* 
pTheme ) :
diff --git a/svx/source/tbxctrls/fontworkgallery.cxx 
b/svx/source/tbxctrls/fontworkgallery.cxx
index 2cd3fa3..16fd43e 100644
--- a/svx/source/tbxctrls/fontworkgallery.cxx
+++ b/svx/source/tbxctrls/fontworkgallery.cxx
@@ -116,7 +116,6 @@ void FontWorkGalleryDialog::initFavorites(sal_uInt16 
nThemeId)
 
 sal_uInt32 nModelPos;
 FmFormModel *pModel = NULL;
-const StyleSettings& rStyleSettings = 
Application::GetSettings().GetStyleSettings();
 
 for( nModelPos = 0; nModelPos < nFavCount; nModelPos++ )
 {
@@ -134,19 +133,11 @@ void FontWorkGalleryDialog::initFavorites(sal_uInt16 
nThemeId)
 
 pVDev->SetOutputSizePixel(aSize);
 
-if(rStyleSettings.GetPreviewUsesCheckeredBackground())
-{
-static const sal_uInt32 nLen(8);
-static const Color aW(COL_WHITE);
-static const Color aG(0xef, 0xef, 0xef);
+static const sal_uInt32 nLen(8);
+static const Color aW(COL_WHITE);
+static const Color aG(0xef, 0xef, 0xef);
 
-pVDev->DrawCheckered(aNull, aSize, nLen, aW, aG);
-}
-else
-{
-pVDev->SetBackground(rStyleSettings.GetFieldColor());
-pVDev->Erase();
-}
+pVDev->DrawCheckered(aNull, aSize, nLen, aW, aG);
 
 pVDev->DrawBitmapEx(aNull, aThumb);
 maFavoritesHorizontal.push_back(pVDev->GetBitmap(aNull, aSize));
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-10-30 Thread Katarina Behrens
 svtools/source/config/slidesorterbaropt.cxx |   45 +++-
 1 file changed, 38 insertions(+), 7 deletions(-)

New commits:
commit 2e528df76b168a221c6d251d9b076bce5ba051a3
Author: Katarina Behrens 
Date:   Fri Oct 23 17:12:43 2015 +0200

tdf#90987: SlideSorterBarOptions was missing Commit() too

Commit() of related _Impl class actually wasn't called anywhere
after 465359c35fcd8c30a2bedd3d0beb07c0c1c36cba removed it from
destructor.

The config was also never tagged as modified, so fix that too.

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

diff --git a/svtools/source/config/slidesorterbaropt.cxx 
b/svtools/source/config/slidesorterbaropt.cxx
index 9d6e4d4..b1d9886 100644
--- a/svtools/source/config/slidesorterbaropt.cxx
+++ b/svtools/source/config/slidesorterbaropt.cxx
@@ -94,7 +94,27 @@ class SvtSlideSorterBarOptions_Impl : public ConfigItem
 */
 static Sequence< OUString > GetPropertyNames();
 
-protected:
+void SetVisibleViewImpl( bool& bVisibleView, bool bVisible );
+
+public:
+void SetVisibleImpressView( bool bVisible)
+ { SetVisibleViewImpl( m_bVisibleImpressView, bVisible ); }
+
+void SetVisibleOutlineView( bool bVisible)
+ { SetVisibleViewImpl( m_bVisibleOutlineView, bVisible ); }
+
+void SetVisibleNotesView( bool bVisible)
+ { SetVisibleViewImpl( m_bVisibleNotesView, bVisible ); }
+
+void SetVisibleHandoutView( bool bVisible)
+ { SetVisibleViewImpl( m_bVisibleHandoutView, bVisible ); }
+
+void SetVisibleSlideSorterView( bool bVisible)
+ { SetVisibleViewImpl( m_bVisibleSlideSorterView, bVisible ); }
+
+void SetVisibleDrawView( bool bVisible)
+ { SetVisibleViewImpl( m_bVisibleDrawView, bVisible ); }
+
 };
 
 SvtSlideSorterBarOptions_Impl::SvtSlideSorterBarOptions_Impl()
@@ -314,6 +334,15 @@ Sequence< OUString > 
SvtSlideSorterBarOptions_Impl::GetPropertyNames()
 return Sequence< OUString >( pProperties, SAL_N_ELEMENTS( pProperties ) );
 }
 
+void SvtSlideSorterBarOptions_Impl::SetVisibleViewImpl( bool& bVisibleView, 
bool bVisible )
+{
+if( bVisibleView != bVisible )
+{
+bVisibleView = bVisible;
+SetModified();
+}
+}
+
 //  initialize static member, see definition for further information
 //  DON'T DO IT IN YOUR HEADER!
 SvtSlideSorterBarOptions_Impl* SvtSlideSorterBarOptions::m_pDataContainer= 
NULL  ;
@@ -339,6 +368,8 @@ SvtSlideSorterBarOptions::~SvtSlideSorterBarOptions()
 // If last instance was deleted we must destroy our static data container!
 if( m_nRefCount <= 0 )
 {
+if (m_pDataContainer->IsModified())
+m_pDataContainer->Commit();
 delete m_pDataContainer;
 m_pDataContainer = NULL;
 }
@@ -351,7 +382,7 @@ bool SvtSlideSorterBarOptions::GetVisibleImpressView() const
 
 void SvtSlideSorterBarOptions::SetVisibleImpressView(bool bVisible)
 {
-m_pDataContainer->m_bVisibleImpressView = bVisible;
+m_pDataContainer->SetVisibleImpressView( bVisible );
 }
 
 bool SvtSlideSorterBarOptions::GetVisibleOutlineView() const
@@ -361,7 +392,7 @@ bool SvtSlideSorterBarOptions::GetVisibleOutlineView() const
 
 void SvtSlideSorterBarOptions::SetVisibleOutlineView(bool bVisible)
 {
-m_pDataContainer->m_bVisibleOutlineView = bVisible;
+m_pDataContainer->SetVisibleOutlineView( bVisible );
 }
 
 bool SvtSlideSorterBarOptions::GetVisibleNotesView() const
@@ -371,7 +402,7 @@ bool SvtSlideSorterBarOptions::GetVisibleNotesView() const
 
 void SvtSlideSorterBarOptions::SetVisibleNotesView(bool bVisible)
 {
-m_pDataContainer->m_bVisibleNotesView = bVisible;
+m_pDataContainer->SetVisibleNotesView( bVisible );
 }
 
 bool SvtSlideSorterBarOptions::GetVisibleHandoutView() const
@@ -381,7 +412,7 @@ bool SvtSlideSorterBarOptions::GetVisibleHandoutView() const
 
 void SvtSlideSorterBarOptions::SetVisibleHandoutView(bool bVisible)
 {
-m_pDataContainer->m_bVisibleHandoutView = bVisible;
+m_pDataContainer->SetVisibleHandoutView( bVisible );
 }
 
 bool SvtSlideSorterBarOptions::GetVisibleSlideSorterView() const
@@ -391,7 +422,7 @@ bool SvtSlideSorterBarOptions::GetVisibleSlideSorterView() 
const
 
 void SvtSlideSorterBarOptions::SetVisibleSlideSorterView(bool bVisible)
 {
-m_pDataContainer->m_bVisibleSlideSorterView = bVisible;
+m_pDataContainer->SetVisibleSlideSorterView( bVisible );
 }
 
 bool SvtSlideSorterBarOptions::GetVisibleDrawView() const
@@ -401,7 +432,7 @@ bool SvtSlideSorterBarOptions::GetVisibleDrawView() const
 
 void SvtSlideSorterBarOptions::SetVisibleDrawView(bool bVisible)
 {
-m_pDataContainer->m_bVisibleDrawView = bVisible;
+m_pDataContainer->SetVisibleDrawView( bVisible );
 }
 
 

[Libreoffice-bugs] [Bug 90987] Pages/Slides pane does not remember its state on reopen

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90987

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|bibisectRequest |bibisectRequest
   ||target:5.1.0

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


[Libreoffice-bugs] [Bug 90987] Pages/Slides pane does not remember its state on reopen

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90987

--- Comment #8 from Commit Notification 
 ---
Katarina Behrens committed a patch related to this issue.
It has been pushed to "master":

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

tdf#90987: SlideSorterBarOptions was missing Commit() too

It will be available in 5.1.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

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


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

2015-10-30 Thread Mario J . Rugiero
 xmloff/inc/pch/precompiled_xo.hxx   |1 
 xmloff/source/chart/SchXMLExport.cxx|   17 ++--
 xmloff/source/core/RDFaExportHelper.cxx |   14 ++---
 xmloff/source/core/RDFaImportHelper.cxx |   33 +++-
 xmloff/source/forms/layerimport.cxx |   15 +-
 5 files changed, 24 insertions(+), 56 deletions(-)

New commits:
commit f53343320101bfe650f5fe2cdf95f94995778037
Author: Mario J. Rugiero 
Date:   Fri Oct 30 00:26:23 2015 -0300

xmloff tree cleanup

- Replaces for_each(*.begin(), *.end(), ...) by its range based for loop 
equivalents.
- Replaces boost::bind calls by C++11 lambdas.
- Cleans a few hacks made to workaround boost::bind limitations.

Change-Id: Ie88cc651a2a835b03d5037e54e2a61ca93866310
Reviewed-on: https://gerrit.libreoffice.org/19678
Reviewed-by: Noel Grandin 
Tested-by: Noel Grandin 

diff --git a/xmloff/inc/pch/precompiled_xo.hxx 
b/xmloff/inc/pch/precompiled_xo.hxx
index b78a28a..f11c370 100644
--- a/xmloff/inc/pch/precompiled_xo.hxx
+++ b/xmloff/inc/pch/precompiled_xo.hxx
@@ -31,7 +31,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
diff --git a/xmloff/source/chart/SchXMLExport.cxx 
b/xmloff/source/chart/SchXMLExport.cxx
index 568e3e9..ed226f5 100644
--- a/xmloff/source/chart/SchXMLExport.cxx
+++ b/xmloff/source/chart/SchXMLExport.cxx
@@ -713,18 +713,6 @@ struct lcl_TableData
 ::std::vector< sal_Int32 > aHiddenColumns;
 };
 
-// ::std::bind2nd( ::std::mem_fun_ref( ::resize ), nSize ) does not work
-template< class T >
-struct lcl_resize
-{
-lcl_resize( typename T::size_type nSize, typename T::value_type 
fDefaultValue ) : m_nSize( nSize ), m_fDefaultValue( fDefaultValue ) {}
-void operator()( T & t )
-{ t.resize( m_nSize, m_fDefaultValue ); }
-private:
-typename T::size_type m_nSize;
-typename T::value_type m_fDefaultValue;
-};
-
 typedef ::std::map< sal_Int32, SchXMLExportHelper_Impl::tLabelValuesDataPair >
 lcl_DataSequenceMap;
 
@@ -818,8 +806,9 @@ lcl_TableData lcl_getDataForLocalTable(
 aResult.aDataInRows.resize( nNumRows );
 double fNan = 0.0;
 ::rtl::math::setNan(  );
-::std::for_each( aResult.aDataInRows.begin(), 
aResult.aDataInRows.end(),
- lcl_resize< t2DNumberContainer::value_type >( 
nNumColumns, fNan ));
+
+for (auto& aData: aResult.aDataInRows)
+aData.resize(nNumColumns, fNan);
 aResult.aColumnDescriptions.resize( nNumColumns );
 aResult.aComplexColumnDescriptions.realloc( nNumColumns );
 aResult.aRowDescriptions.resize( nNumRows );
diff --git a/xmloff/source/core/RDFaExportHelper.cxx 
b/xmloff/source/core/RDFaExportHelper.cxx
index a2dd4001..bfce904 100644
--- a/xmloff/source/core/RDFaExportHelper.cxx
+++ b/xmloff/source/core/RDFaExportHelper.cxx
@@ -38,7 +38,6 @@
 
 #include 
 
-#include 
 #include 
 #ifndef BOOST_ITERATOR_ADAPTOR_DWA053000_HPP_ // from iterator_adaptors.hpp
 // N.B.: the check for the header guard _of a specific version of boost_
@@ -166,16 +165,17 @@ RDFaExportHelper::AddRDFa(
 xContent->getValue());
 }
 
+auto aStatementToCURIE = [this](rdf::Statement const& aStatement) {
+return makeCURIE(>m_rExport, aStatement.Predicate);
+};
 OUStringBuffer property;
 ::comphelper::intersperse(
-::boost::make_transform_iterator(rStatements.begin(),
-::boost::bind(, _rExport,
-::boost::bind(::Statement::Predicate, _1))),
-// argh, this must be the same type :(
+::boost::make_transform_iterator(
+rStatements.begin(),
+aStatementToCURIE),
 ::boost::make_transform_iterator(
 rStatements.end(),
-::boost::bind(, _rExport,
-::boost::bind(::Statement::Predicate, _1))),
+aStatementToCURIE),
 ::comphelper::OUStringBufferAppender(property),
 OUString(" "));
 
diff --git a/xmloff/source/core/RDFaImportHelper.cxx 
b/xmloff/source/core/RDFaImportHelper.cxx
index ac2738a..d2705e5 100644
--- a/xmloff/source/core/RDFaImportHelper.cxx
+++ b/xmloff/source/core/RDFaImportHelper.cxx
@@ -30,7 +30,6 @@
 
 #include 
 
-#include 
 #include 
 #ifndef BOOST_ITERATOR_ADAPTOR_DWA053000_HPP_ // from iterator_adaptors.hpp
 // N.B.: the check for the header guard _of a specific version of boost_
@@ -312,18 +311,6 @@ RDFaInserter::MakeResource( OUString const & i_rResource)
 }
 }
 
-/** i wrote this because c++ implementations cannot agree on which variant
-of boost::bind and std::mem_fun_ref applied to Reference::is compiles */
-class ref_is_null :
-public ::std::unary_function
-{
-public:
-bool operator() (const 

[Libreoffice-bugs] [Bug 95098] format cells for automatic line wrapping

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95098

Cor Nouws  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 32950] FORMATTING Cell height and word wrapping can be wrong (when changing) xls-files because 'Optimal height" of rows is not set (automatically?)

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=32950

Cor Nouws  changed:

   What|Removed |Added

   Priority|low |medium
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=95
   ||098
Summary|FORMATTING . Bugs of cell   |FORMATTING Cell height and
   |height and wrap words in|word wrapping can be wrong
   |xls-files.  |(when changing) xls-files
   ||because 'Optimal height" of
   ||rows is not set
   ||(automatically?)
   Severity|minor   |normal

--- Comment #17 from Cor Nouws  ---
changing summary accoring to findings in bug 95098

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


[Libreoffice-bugs] [Bug 95098] format cells for automatic line wrapping

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95098

Cor Nouws  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 91539] PDF: Scrollable comments in margins

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91539

Bojan  changed:

   What|Removed |Added

   Hardware|All |x86-64 (AMD64)
Version|5.0.0.0.beta1   |5.0.3.1 rc
 OS|All |Linux (All)

--- Comment #6 from Bojan  ---
64-bit openSUSE 13.1/13.2
LO 5.0.3.2

Export as PDF, check Watermark/sign with watemark. Result is a page filled with
the watermark text that is printed over/above the text on the page. The page
text is covered by the watermark text. As far as I understand watermark, it
should be either transparent to some degree or placed below/under the page text
to be printed.

In addition, the comments problem is still unsolved. It can not be exported to
PDF in order to appear, when PDF is open, same way as it looks line in LO. The
annotation in PDF is visible as a small gray square, however, in order to open
it, with Okular for instance, one must select Reviews, right click on the
Pop-Up Note and select Open Pop-Up Note. Rather annoying, I would prefer just
click on the annotation in the text (said small gray square), or the comments
to be displayed when PDf is open by Okular.

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


[Libreoffice-bugs] [Bug 94134] Copy from Calc and spacial past (MAJ+CTRL+V) to Draw do not work with libreoffice linux 64 v5.0.1.2.0+

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94134

Beluga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #4 from Beluga  ---
christophe_y2k: as we were not able to reproduce, please try this:
https://wiki.documentfoundation.org/UserProfile#Resolving_corruption_in_the_user_profile

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


[Libreoffice-bugs] [Bug 95382] Application crash when confirming font change with enter key

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95382

Katarina Behrens (CIB)  changed:

   What|Removed |Added

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

--- Comment #9 from Katarina Behrens (CIB)  ---
This one was elusive - but here it is:

(footnote: why do you guys in CERN use LibO Calc, even more so charts, when you
have much superior Root? :) :D )

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

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


[Libreoffice-bugs] [Bug 95420] Optimal row height not determined correctly for small font rows

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95420

Hayo Baan  changed:

   What|Removed |Added

Version|5.0.2.2 release |4.0 all versions

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


[Libreoffice-bugs] [Bug 91789] UI: Crash on exit after format header

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91789

--- Comment #8 from Ari Latvala  ---
Just reproduced the crash on RHEL 6.7 64-bit LibreOffice 5.0.2.2 with the steps
defined on the original bug report.

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


[Libreoffice-bugs] [Bug 95382] Application crash when confirming font change with enter key

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95382

--- Comment #10 from jochen.b...@cern.ch ---
Because we might have the biggest machine, but we don't use it to heat up our
food, we use a simple microwave ;)

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


[Libreoffice-commits] core.git: comphelper/source configmgr/qa configmgr/source connectivity/source connectivity/workben cppuhelper/source cppuhelper/test cpputools/source cui/source

2015-10-30 Thread Noel Grandin
 comphelper/source/container/container.cxx   |2 
 comphelper/source/container/embeddedobjectcontainer.cxx |   21 
--
 comphelper/source/eventattachermgr/eventattachermgr.cxx |2 
 comphelper/source/misc/dispatchcommand.cxx  |2 
 comphelper/source/misc/instancelocker.cxx   |6 +-
 comphelper/source/misc/logging.cxx  |2 
 comphelper/source/misc/mimeconfighelper.cxx |9 +---
 comphelper/source/streaming/seekableinput.cxx   |8 +--
 comphelper/source/streaming/seqinputstreamserv.cxx  |4 -
 comphelper/source/streaming/seqoutputstreamserv.cxx |2 
 configmgr/qa/unit/test.cxx  |2 
 configmgr/source/components.cxx |3 -
 configmgr/source/configurationregistry.cxx  |2 
 connectivity/source/commontools/TPrivilegesResultSet.cxx|2 
 connectivity/source/commontools/dbtools.cxx |4 -
 connectivity/source/commontools/dbtools2.cxx|   12 ++---
 connectivity/source/commontools/predicateinput.cxx  |5 --
 connectivity/source/cpool/ZDriverWrapper.cxx|2 
 connectivity/source/drivers/firebird/StatementCommonBase.cxx|2 
 connectivity/source/drivers/hsqldb/HDriver.cxx  |2 
 connectivity/source/drivers/macab/MacabStatement.cxx|2 
 connectivity/source/drivers/mork/MStatement.cxx |2 
 connectivity/source/drivers/mysql/YDriver.cxx   |4 -
 connectivity/source/drivers/postgresql/pq_databasemetadata.cxx  |6 +-
 connectivity/source/drivers/postgresql/pq_driver.cxx|2 
 connectivity/source/drivers/postgresql/pq_preparedstatement.cxx |2 
 connectivity/source/drivers/postgresql/pq_statement.cxx |4 -
 connectivity/workben/little/main.cxx|2 
 cppuhelper/source/propertysetmixin.cxx  |2 
 cppuhelper/source/servicemanager.cxx|6 --
 cppuhelper/test/testpropshlp.cxx|4 -
 cpputools/source/unoexe/unoexe.cxx  |2 
 cui/source/customize/acccfg.cxx |   11 ++---
 cui/source/customize/cfg.cxx|   18 ++--
 cui/source/customize/cfgutil.cxx|2 
 cui/source/customize/selector.cxx   |3 -
 cui/source/dialogs/insdlg.cxx   |4 -
 cui/source/options/optaboutconfig.cxx   |2 
 cui/source/options/optasian.cxx |3 -
 cui/source/options/optdict.cxx  |5 --
 cui/source/options/optgdlg.cxx  |4 -
 cui/source/options/optlingu.cxx |   14 ++
 cui/source/options/optsave.cxx  |3 -
 cui/source/options/treeopt.cxx  |5 --
 44 files changed, 91 insertions(+), 115 deletions(-)

New commits:
commit cb4fa1d1e2e61b686442a9d26220c0f1a6e1d4e7
Author: Noel Grandin 
Date:   Fri Oct 30 07:59:06 2015 +0200

use uno::Reference::set method instead of assignment

Change-Id: I080668f86f0ab8b3bba857ee21411f907ae285c4

diff --git a/comphelper/source/container/container.cxx 
b/comphelper/source/container/container.cxx
index 9bd468e..a8bd896 100644
--- a/comphelper/source/container/container.cxx
+++ b/comphelper/source/container/container.cxx
@@ -79,7 +79,7 @@ css::uno::Reference< css::uno::XInterface> 
IndexAccessIterator::Next()
 OSL_ENSURE(xChild.is(), "IndexAccessIterator::Next : a 
content has no appropriate interface !");
 
 css::uno::Reference< css::uno::XInterface> xParent( 
xChild->getParent());
-xContainerAccess = css::uno::Reference< 
css::container::XIndexAccess>(xParent, css::uno::UNO_QUERY);
+xContainerAccess.set(xParent, css::uno::UNO_QUERY);
 OSL_ENSURE(xContainerAccess.is(), 
"IndexAccessIterator::Next : a content has an invalid parent !");
 
 // Remove the index that SearchLoop had within this parent 
from my stack
diff --git a/comphelper/source/container/embeddedobjectcontainer.cxx 
b/comphelper/source/container/embeddedobjectcontainer.cxx
index caa2d25..fa86241 100644
--- a/comphelper/source/container/embeddedobjectcontainer.cxx
+++ b/comphelper/source/container/embeddedobjectcontainer.cxx
@@ -174,7 +174,7 @@ void EmbeddedObjectContainer::ReleaseImageSubStorage()
 try
 {
 pImpl->mxImageStorage->dispose();
-

[Libreoffice-bugs] [Bug 95455] New: Problems to open and save files on a network

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95455

Bug ID: 95455
   Summary: Problems to open and save files on a network
   Product: LibreOffice
   Version: 4.4.5.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fel...@bossaprodutora.com.br

Hi I use libre office to open files in xls and export then in pdf the problem
i'm having is that when a try to open a file on my server (an apple airport)
now the files take a lot of time to open, a lot of time to save sometimes it
get stuck with the that colorful ball of processing and crashes...that started
to happen using 3.03 on yosemite and now I tried to install 4.4.5.2 and it's
the same...can you help?

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


[Libreoffice-bugs] [Bug 95064] [Helpauthoring] Want a preview of the currently edit document

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95064

--- Comment #2 from Yousuf (Jay) Philips  ---
Created attachment 120124
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120124=edit
modified basic code

Modified version of the basic code to allow rerunning the macro without having
to restart LO by using a random filename.

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


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

2015-10-30 Thread Tor Lillqvist
 sc/qa/unit/opencl-test.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 0ac97aba9b7a9903890685fc872350923ba8cbed
Author: Tor Lillqvist 
Date:   Thu Oct 15 15:40:00 2015 +0300

WaE: variable set but not used, in NDEBUG build

Change-Id: I9c88c1a43228a98a355d8ba17b0a06de0c5418c4
(cherry picked from commit c58533fe4ada618eb6121d27362f7f540f26c3c0)
Signed-off-by: Eike Rathke 
Reviewed-on: https://gerrit.libreoffice.org/19700

diff --git a/sc/qa/unit/opencl-test.cxx b/sc/qa/unit/opencl-test.cxx
index e53857c..aee109e 100644
--- a/sc/qa/unit/opencl-test.cxx
+++ b/sc/qa/unit/opencl-test.cxx
@@ -777,6 +777,9 @@ void ScOpenCLTest::testSystematic()
 CPPUNIT_ASSERT(nBHorEnd > 10);
 CPPUNIT_ASSERT(nAHorEnd == nBHorEnd);
 
+(void) nBVertEnd;
+(void) nBHorEnd;
+
 for (SCROW i = nAVertBegin; i < nAVertEnd; ++i)
 {
 for (int j = 1; j < nAHorEnd; ++j)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 90264] [LOCALIZATION] Missing translation in button UI for pt_BR

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90264

Adolfo Jayme  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

--- Comment #7 from Adolfo Jayme  ---
@tommy27: You can check it yourself:
https://translations.documentfoundation.org/pt_BR/libo50_ui/translate/svx/uiconfig/ui.po#unit=99551866

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


[Libreoffice-bugs] [Bug 59818] VIEWING: Bad Font Rendering in KDE

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59818

Adolfo Jayme  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

--- Comment #40 from Adolfo Jayme  ---
> > That’s your opinion, of course. Every user out there has different
> > preferences on font rendering style, and the term “crystal-clear” is,
> > obviously, interpreted differently by different people.
> 
> I've uploaded a sample screenshot of this settings, it is obviously clear.

Which is a lossy JPEG. So yeah. So clear.

As I stated before, what may be obvious to you it is may not be for everybody
else. And what is obvious to me is that you’re unwilling to accept that “clear”
rendering is just an adjective with wildly varied meanings based on personal
preference. That’s all I have said in this thread.

> If your eyes are healthy -plus have a high dpi monitor- you can determine a
> clear font rendering.

I think I have both of those items. But what I clearly don’t have is your
pettiness. I have never insulted you, but this is the Internet – I shouldn’t
expect to get reciprocal feedback.

> I wish you had never looked to this bug report and trolled it, never read
> your name and face with your annoyance. 

It’s okay with me.

> Sorry for polluting the bugzilla, but i must admit that such behave makes me
> alienated from submitting bug reports.

It’s also okay with me. Bye.

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


[Libreoffice-bugs] [Bug 95444] WIKIHELP: Wrong Spanish translation of Copying Attributes With the Format Paintbrush

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95444

Adolfo Jayme  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |f...@libreoffice.org
   |desktop.org |

--- Comment #1 from Adolfo Jayme  ---
I’ve addressed the problem. Thank you very mcuh for your report!

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


[Libreoffice-commits] core.git: icon-themes/tango

2015-10-30 Thread Yousuf Philips
 icon-themes/tango/cmd/lc_fontwork.png|binary
 icon-themes/tango/cmd/lc_graphicfiltertoolbox.png|binary
 icon-themes/tango/cmd/lc_insertannotation.png|binary
 icon-themes/tango/cmd/lc_openurl.png |binary
 icon-themes/tango/cmd/lc_openurl.xcf.bz2 |binary
 icon-themes/tango/cmd/lc_zoompage.png|binary
 icon-themes/tango/cmd/lc_zoompage.xcf.bz2|binary
 icon-themes/tango/framework/res/remote-documents.png |binary
 icon-themes/tango/framework/res/remote-documents.xcf.bz2 |binary
 9 files changed

New commits:
commit 6eafd85bcfeda4a0377bdf5b42dfde2ecd7e639a
Author: Yousuf Philips 
Date:   Thu Oct 29 01:08:27 2015 +0400

TANGO: Fix icons of the wrong size and update remote docs icon

Change-Id: Ib0c332bf893c873085b723c7d6243fa758d5df86
Reviewed-on: https://gerrit.libreoffice.org/19658
Tested-by: Jenkins 
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/icon-themes/tango/cmd/lc_fontwork.png 
b/icon-themes/tango/cmd/lc_fontwork.png
index 1400dd7..9c0b97b 100644
Binary files a/icon-themes/tango/cmd/lc_fontwork.png and 
b/icon-themes/tango/cmd/lc_fontwork.png differ
diff --git a/icon-themes/tango/cmd/lc_graphicfiltertoolbox.png 
b/icon-themes/tango/cmd/lc_graphicfiltertoolbox.png
index 27d9d92..5a9a02c 100644
Binary files a/icon-themes/tango/cmd/lc_graphicfiltertoolbox.png and 
b/icon-themes/tango/cmd/lc_graphicfiltertoolbox.png differ
diff --git a/icon-themes/tango/cmd/lc_insertannotation.png 
b/icon-themes/tango/cmd/lc_insertannotation.png
index 82d0e53..12f7ae9 100644
Binary files a/icon-themes/tango/cmd/lc_insertannotation.png and 
b/icon-themes/tango/cmd/lc_insertannotation.png differ
diff --git a/icon-themes/tango/cmd/lc_openurl.png 
b/icon-themes/tango/cmd/lc_openurl.png
index 361122f..f5029d6 100644
Binary files a/icon-themes/tango/cmd/lc_openurl.png and 
b/icon-themes/tango/cmd/lc_openurl.png differ
diff --git a/icon-themes/tango/cmd/lc_openurl.xcf.bz2 
b/icon-themes/tango/cmd/lc_openurl.xcf.bz2
index 78188cc..817ba80 100644
Binary files a/icon-themes/tango/cmd/lc_openurl.xcf.bz2 and 
b/icon-themes/tango/cmd/lc_openurl.xcf.bz2 differ
diff --git a/icon-themes/tango/cmd/lc_zoompage.png 
b/icon-themes/tango/cmd/lc_zoompage.png
index 72461f2..b291141 100644
Binary files a/icon-themes/tango/cmd/lc_zoompage.png and 
b/icon-themes/tango/cmd/lc_zoompage.png differ
diff --git a/icon-themes/tango/cmd/lc_zoompage.xcf.bz2 
b/icon-themes/tango/cmd/lc_zoompage.xcf.bz2
index fb9ff46..ef1c770 100644
Binary files a/icon-themes/tango/cmd/lc_zoompage.xcf.bz2 and 
b/icon-themes/tango/cmd/lc_zoompage.xcf.bz2 differ
diff --git a/icon-themes/tango/framework/res/remote-documents.png 
b/icon-themes/tango/framework/res/remote-documents.png
index 95aafa2..718e3d5 100644
Binary files a/icon-themes/tango/framework/res/remote-documents.png and 
b/icon-themes/tango/framework/res/remote-documents.png differ
diff --git a/icon-themes/tango/framework/res/remote-documents.xcf.bz2 
b/icon-themes/tango/framework/res/remote-documents.xcf.bz2
index 66168b0..c600874 100644
Binary files a/icon-themes/tango/framework/res/remote-documents.xcf.bz2 and 
b/icon-themes/tango/framework/res/remote-documents.xcf.bz2 differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 95316] Release info 4.4.6.2 still not available

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95316

Adolfo Jayme  changed:

   What|Removed |Added

 Resolution|WONTFIX |INVALID

--- Comment #2 from Adolfo Jayme  ---
The notes are generated semi-automatically. There is no need to file bug
reports about it.

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


[Libreoffice-bugs] [Bug 95340] Search and replace macro with regular \n

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95340

--- Comment #4 from g...@rg-rb.de  ---
Created attachment 120125
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120125=edit
95340

Corrected file for testing bug 95340

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


[Libreoffice-commits] online.git: 2 commits - loleaflet/Makefile

2015-10-30 Thread Andras Timar
 loleaflet/Makefile |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c488bf95ff4c44e287b5ee3551591accc0ee1564
Author: Andras Timar 
Date:   Fri Oct 30 23:26:58 2015 +0100

loleaflet: bump version after tarball

diff --git a/loleaflet/Makefile b/loleaflet/Makefile
index 4b484fb..87fb41f 100644
--- a/loleaflet/Makefile
+++ b/loleaflet/Makefile
@@ -3,7 +3,7 @@
 # ("micro") part: Between releases odd, even for releases (no other
 # changes inbetween).
 
-VERSION=1.4.6
+VERSION=1.4.7
 
 # Version number of the bundled 'draw' thing
 DRAW_VERSION=0.2.4
commit 36d8ad6aa1e190c1722c11140a7be7f8db450b39
Author: Andras Timar 
Date:   Fri Oct 30 23:25:17 2015 +0100

loleaflet: bump version before tarball

diff --git a/loleaflet/Makefile b/loleaflet/Makefile
index 7a4f67e..4b484fb 100644
--- a/loleaflet/Makefile
+++ b/loleaflet/Makefile
@@ -3,7 +3,7 @@
 # ("micro") part: Between releases odd, even for releases (no other
 # changes inbetween).
 
-VERSION=1.4.5
+VERSION=1.4.6
 
 # Version number of the bundled 'draw' thing
 DRAW_VERSION=0.2.4
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 95440] Strange recalculation formulas

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95440

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||miguelangelrv@libreoffice.o
   ||rg
 Ever confirmed|0   |1

--- Comment #2 from m.a.riosv  ---
Attached sample fails in K5 with 3.6 and more versions.

It's possible to make it works with 5.0.3 changing the option on how text are
treated in formulas, K5 has references to J5 that has text '??'.
The option is in:
Menu/Tools/Options/LibreOffice calc/Formula/Detailed calculation
settings/Custom - Conversion from text to number - Treat as zero.

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


[Libreoffice-commits] core.git: icon-themes/sifr

2015-10-30 Thread Matthias Freund
 icon-themes/sifr/cmd/32/selectall.png   |binary
 icon-themes/sifr/cmd/32/selectobject.png|binary
 icon-themes/sifr/cmd/lc_arrowshapes.chevron.png |binary
 icon-themes/sifr/cmd/lc_arrowshapes.circular-arrow.png  |binary
 icon-themes/sifr/cmd/lc_arrowshapes.corner-right-arrow.png  |binary
 icon-themes/sifr/cmd/lc_arrowshapes.down-arrow-callout.png  |binary
 icon-themes/sifr/cmd/lc_arrowshapes.down-arrow.png  |binary
 icon-themes/sifr/cmd/lc_arrowshapes.left-arrow-callout.png  |binary
 icon-themes/sifr/cmd/lc_arrowshapes.left-arrow.png  |binary
 icon-themes/sifr/cmd/lc_arrowshapes.left-right-arrow.png|binary
 icon-themes/sifr/cmd/lc_arrowshapes.quad-arrow.png  |binary
 icon-themes/sifr/cmd/lc_arrowshapes.right-arrow-callout.png |binary
 icon-themes/sifr/cmd/lc_arrowshapes.right-arrow.png |binary
 icon-themes/sifr/cmd/lc_arrowshapes.up-arrow-callout.png|binary
 icon-themes/sifr/cmd/lc_arrowshapes.up-down-arrow.png   |binary
 icon-themes/sifr/cmd/lc_basicshapes.png |binary
 icon-themes/sifr/cmd/lc_ellipse.png |binary
 icon-themes/sifr/cmd/lc_selectall.png   |binary
 icon-themes/sifr/cmd/sc_basicshapes.png |binary
 icon-themes/sifr/cmd/sc_ellipse.png |binary
 icon-themes/sifr/cmd/sc_selectall.png   |binary
 21 files changed

New commits:
commit 12f129c0159af6d1e56dfed366def8a91570cff4
Author: Matthias Freund 
Date:   Fri Oct 30 16:45:06 2015 +0100

tdf#75256 sifr updates - correction and shapes

Correct selectall/selectobject, initial work for 32px
nicer lc shapes

Change-Id: I49dba5d3048e320a806023ac3693cbfe2f128257
Reviewed-on: https://gerrit.libreoffice.org/19695
Tested-by: Jenkins 
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/icon-themes/sifr/cmd/32/selectall.png 
b/icon-themes/sifr/cmd/32/selectall.png
new file mode 100644
index 000..6a5741a
Binary files /dev/null and b/icon-themes/sifr/cmd/32/selectall.png differ
diff --git a/icon-themes/sifr/cmd/32/selectobject.png 
b/icon-themes/sifr/cmd/32/selectobject.png
new file mode 100644
index 000..de10f5c
Binary files /dev/null and b/icon-themes/sifr/cmd/32/selectobject.png differ
diff --git a/icon-themes/sifr/cmd/lc_arrowshapes.chevron.png 
b/icon-themes/sifr/cmd/lc_arrowshapes.chevron.png
index f8d5d81..e30d800 100644
Binary files a/icon-themes/sifr/cmd/lc_arrowshapes.chevron.png and 
b/icon-themes/sifr/cmd/lc_arrowshapes.chevron.png differ
diff --git a/icon-themes/sifr/cmd/lc_arrowshapes.circular-arrow.png 
b/icon-themes/sifr/cmd/lc_arrowshapes.circular-arrow.png
index 06ecdee..9f98656 100644
Binary files a/icon-themes/sifr/cmd/lc_arrowshapes.circular-arrow.png and 
b/icon-themes/sifr/cmd/lc_arrowshapes.circular-arrow.png differ
diff --git a/icon-themes/sifr/cmd/lc_arrowshapes.corner-right-arrow.png 
b/icon-themes/sifr/cmd/lc_arrowshapes.corner-right-arrow.png
index ab7ba17..a1f0e0d 100644
Binary files a/icon-themes/sifr/cmd/lc_arrowshapes.corner-right-arrow.png and 
b/icon-themes/sifr/cmd/lc_arrowshapes.corner-right-arrow.png differ
diff --git a/icon-themes/sifr/cmd/lc_arrowshapes.down-arrow-callout.png 
b/icon-themes/sifr/cmd/lc_arrowshapes.down-arrow-callout.png
index 789c1a6..6bacdcd 100644
Binary files a/icon-themes/sifr/cmd/lc_arrowshapes.down-arrow-callout.png and 
b/icon-themes/sifr/cmd/lc_arrowshapes.down-arrow-callout.png differ
diff --git a/icon-themes/sifr/cmd/lc_arrowshapes.down-arrow.png 
b/icon-themes/sifr/cmd/lc_arrowshapes.down-arrow.png
index fff421b..0842772 100644
Binary files a/icon-themes/sifr/cmd/lc_arrowshapes.down-arrow.png and 
b/icon-themes/sifr/cmd/lc_arrowshapes.down-arrow.png differ
diff --git a/icon-themes/sifr/cmd/lc_arrowshapes.left-arrow-callout.png 
b/icon-themes/sifr/cmd/lc_arrowshapes.left-arrow-callout.png
index 05bf6dd..79c94db 100644
Binary files a/icon-themes/sifr/cmd/lc_arrowshapes.left-arrow-callout.png and 
b/icon-themes/sifr/cmd/lc_arrowshapes.left-arrow-callout.png differ
diff --git a/icon-themes/sifr/cmd/lc_arrowshapes.left-arrow.png 
b/icon-themes/sifr/cmd/lc_arrowshapes.left-arrow.png
index a181560..3c797ae 100644
Binary files a/icon-themes/sifr/cmd/lc_arrowshapes.left-arrow.png and 
b/icon-themes/sifr/cmd/lc_arrowshapes.left-arrow.png differ
diff --git a/icon-themes/sifr/cmd/lc_arrowshapes.left-right-arrow.png 
b/icon-themes/sifr/cmd/lc_arrowshapes.left-right-arrow.png
index d707dd7..448631e 100644
Binary files a/icon-themes/sifr/cmd/lc_arrowshapes.left-right-arrow.png and 
b/icon-themes/sifr/cmd/lc_arrowshapes.left-right-arrow.png differ
diff --git a/icon-themes/sifr/cmd/lc_arrowshapes.quad-arrow.png 
b/icon-themes/sifr/cmd/lc_arrowshapes.quad-arrow.png
index c603d91..28e194e 100644
Binary files a/icon-themes/sifr/cmd/lc_arrowshapes.quad-arrow.png and 

[Libreoffice-bugs] [Bug 84843] Disable all Drawing toolbar buttons in read-only mode

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84843

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 CC||bu...@bubli.org,
   ||momonas...@gmail.com
  Component|Writer  |UI
Version|3.6.7.2 release |Inherited From OOo
Summary|Issues with Writer drawing  |Disable all Drawing toolbar
   |toolbar while in read-only  |buttons in read-only mode
   |mode|
 Whiteboard||needsDevEval topicUI

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

Seems i was mistaken as the Drawing toolbar doesnt hide in any module once edit
mode is activated, but in Impress/Draw, all the buttons are disabled, which
doesnt happen in Writer or Calc, so lets unify this behaviour.

UNO Commands that are currently active - .uno:Line, .uno:Freeline_Unfilled,
.uno:Bezier_Unfilled, .uno:Polygon_Unfilled, .uno:Arc, .uno:Pie,
.uno:CircleCut, .uno:DrawCaption, .uno:VerticalCaption, .uno:DrawText,
.uno:VerticalText, .uno:Text_Marquee

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


[Libreoffice-bugs] [Bug 95339] userdefined 'Format-Code' doesn't work as expected ...

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95339

GerardF  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||gerard.farg...@orange.fr
 Ever confirmed|0   |1

--- Comment #3 from GerardF  ---
Not specific to German but for all locales having twice the M code (for month
and minute). Pretty all "Latin alphabet" language except Finnish...

Happens when "mm" is not preceded by "hh" or followed by "ss".

Surprisingly DDMMYY-SS[MM] showd the minutes (not month) but unfortunely show
also the brackets...

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


[Libreoffice-bugs] [Bug 89088] FILEOPEN: Section with shape and text in specific DOCX lost

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89088

Miklos Vajna  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |vmik...@collabora.co.uk
   |desktop.org |

--- Comment #5 from Miklos Vajna  ---
Problem is that oox::shape::ShapeContextHandler::endFastElement() assumes all
the XShape implementations provide a bool TextBox UNO property, but that's not
the case. I'll take care of this.

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


[Libreoffice-bugs] [Bug 95456] New: When exporting PDF entry without ".pdf" is created under "Recently Used"

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95456

Bug ID: 95456
   Summary: When exporting PDF entry without ".pdf" is created
under "Recently Used"
   Product: LibreOffice
   Version: 4.3.3.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bug.gefun...@gmail.com

1. In Writer choose File / Export as PDF...
2. Click "Export"
3. As filename type in "test"
4. Click "Save"

Now a File test.pdf has been created.

Expected Behaviour:
In Gnome and Mate under Places / "Recent Documents" an entry with "test.pdf" is
created.

Actual Behaviour:
In Gnome and Mate under Places / "Recent Documents" an entry with "test" is
created.

Additional Info: The recently used files are stored in
.local/share/recently-used.xbel

So it seems the bug is, that Writer stores the typed in basename under recently
used instead of the actual filename that is created.

When typing in "test.pdf" instead as "test" as filename, the correct entry
"test.pdf" is stored in recently used files.

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


[Libreoffice-bugs] [Bug 84502] Add shortcut keys to each Sidebar Tab to open its content panel(s)

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84502

Yousuf (Jay) Philips  changed:

   What|Removed |Added

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

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


[Libreoffice-ux-advise] [Bug 84502] Add shortcut keys to each Sidebar Tab to open its content panel(s)

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84502

Yousuf (Jay) Philips  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 95458] When I open a saved Calc document, border and the border color does not appear.

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95458

kadertarlan  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |kadertarl...@gmail.com
   |desktop.org |

--- Comment #2 from kadertarlan  ---
Created attachment 120127
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120127=edit
I saved the file in this way. However when I open, the colors disappear.

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


[Libreoffice-bugs] [Bug 95460] New: EDITING: Delay selecting Menu or refreshing screen after some operation in attached file.

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95460

Bug ID: 95460
   Summary: EDITING: Delay selecting Menu or refreshing screen
after some operation in attached file.
   Product: LibreOffice
   Version: 5.1.0.0.alpha1
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: miguelange...@libreoffice.org

Created attachment 120128
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120128=edit
File where it's visible the issue.

Win10x64
Version: 5.1.0.0.alpha1 (x64) Build ID:
0b48731919433e46e4fda7e5a5ca27c08c28b981-GL

a) Right after open the file, selecting the menu, it is blank. Takes a while
before it is visible.

b) Select U302:AI329 with the mouse (in the screen at open) use {del} to erase
the content -> selecting the menu, it is blank.

c) Select colums AP:AT right-click delete columns, again menu is blank.

There are other situations in what it happens.

Not reproducible with:
Version: 5.0.3.2 (x64) Build ID: e5f16313668ac592c1bfb310f4390624e3dbfb75-GL

With both versions:
Menu/Tools/Options/LibreOffice/View - Graphics output 
The option for "Use hardware acceleration" is disable and not available.

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


[Libreoffice-ux-advise] [Bug 87676] TOOLBAR: Hiding 'line and filling', 'text formatting' and image toolbars by default

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87676

pranjit  changed:

   What|Removed |Added

 CC||pjbha...@gmail.com

--- Comment #9 from pranjit  ---
Created attachment 120123
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120123=edit
Keep text formatting toolbar always visible

Sirs and Madams, Please kindly undo the appearing and disappearing "text
formatting toolbar" trick LO impress. It is very distracting. Earlier it was
very good. "text formatting toolbar" always remained visible. now with
selection of text box, the slides make a downward or upward dance, which is not
needed at all. We all could do without that 1 cm of real space. I have used
keynote, MS office and LO. I have liked LO the most. But maybe this dance of
slides upward and downward will drive me away from LO again. And maybe again I
will be disappointed in other office suites and come back to LO. I am a laymen
user. I mainly use Impress for presentations and calc for spreadsheet. Please
if you like this disappearing and reappearing "text formatting toolbar", Please
give us an option to permanently enable/Make   "text formatting toolbar" 
always visible. Please . Always grateful.

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


[Libreoffice-bugs] [Bug 95457] New: Disable section tag from editing through Edit Fields dialog

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95457

Bug ID: 95457
   Summary: Disable section tag from editing through Edit Fields
dialog
   Product: LibreOffice
   Version: 5.1.0.0.alpha1
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: rb.hensc...@t-online.de
Blocks: 93580

Modifying a  ID through the 'Edit Fields' dialog will visually show
that it has been changed, but when saving the help file, it uses the old ID
stored within the section dialog, so it would be useful to disable access to
edit  tags or have the save routine use the modified id in the
 tag.

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


[Libreoffice-bugs] [Bug 95458] New: When I open a saved Calc document, border and the border color does not appear.

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95458

Bug ID: 95458
   Summary: When I open a saved Calc document, border and the
border color does not appear.
   Product: LibreOffice
   Version: 5.1.0.0.alpha1
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kadertarl...@gmail.com

I created a border and border color for a cell. And I saved.  When I open a
saved Calc document, border and the border color does not appear.

A1. Open Calc document.
A2. Fill in the cell
A3. Choose "Format" menu bar and Select "Cells"
A4. Choose the "Borders". And then Choose the Line Style and Line Color
A5. And then Click "OK"
-Border and border color appeared around the character in cell
A6. Save the document
A7. Open the Calc document of saved 
-Border and border color don't appeared around the character in cell

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


[Libreoffice-bugs] [Bug 95453] Printing: Portrait

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95453

--- Comment #3 from Adolfo Jayme  ---
*** Bug 95452 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 95452] Printing: Portrait

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95452

Adolfo Jayme  changed:

   What|Removed |Added

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

--- Comment #1 from Adolfo Jayme  ---


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

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


Re: [Libreoffice-qa] [libreoffice-projects] minutes of ESC call ...

2015-10-30 Thread Thorsten Behrens
Michael Meeks wrote:
> AI: + kind offer to setup an MSVC2015 tinderbox vs. master (Thorsten)
> + community edition ? (Jmux)
> + is that also 2015 ?
> + also available (Cloph)
>
VS2015 Community Edition now building on tb@42, nightlies here:

 http://dev-builds.libreoffice.org/daily/master/Win-x86@42

Cheers,

-- Thorsten


signature.asc
Description: Digital signature
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

Re: [libreoffice-projects] minutes of ESC call ...

2015-10-30 Thread Thorsten Behrens
Michael Meeks wrote:
> AI: + kind offer to setup an MSVC2015 tinderbox vs. master (Thorsten)
> + community edition ? (Jmux)
> + is that also 2015 ?
> + also available (Cloph)
>
VS2015 Community Edition now building on tb@42, nightlies here:

 http://dev-builds.libreoffice.org/daily/master/Win-x86@42

Cheers,

-- Thorsten


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


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.0' - sc/source

2015-10-30 Thread Jan Holesovsky
 sc/source/core/data/documen2.cxx |   11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

New commits:
commit bbc3dfce9e278157e582153ad9d9587340354a1c
Author: Jan Holesovsky 
Date:   Sat Oct 31 00:24:17 2015 +0100

sc lok: Always provide a reasonable document size.

With an empty document, GetPrintArea() returned false, causing nothing 
visible
on the screen.

Also increase the values when I'm touching this.

Change-Id: Iee7544a428d5d4d5d5931230a51e605302557f41

diff --git a/sc/source/core/data/documen2.cxx b/sc/source/core/data/documen2.cxx
index 8d3e4e3..2a305c0 100644
--- a/sc/source/core/data/documen2.cxx
+++ b/sc/source/core/data/documen2.cxx
@@ -708,15 +708,14 @@ bool ScDocument::GetDataStart( SCTAB nTab, SCCOL& 
rStartCol, SCROW& rStartRow )
 
 bool ScDocument::GetTiledRenderingArea(SCTAB nTab, SCCOL& rEndCol, SCROW& 
rEndRow) const
 {
-if (!GetPrintArea(nTab, rEndCol, rEndRow, false))
-return false;
+bool bHasPrintArea = GetPrintArea(nTab, rEndCol, rEndRow, false);
 
 // we need some reasonable minimal document size
-if (rEndCol < 12)
-rEndCol = 12;
+if (!bHasPrintArea || rEndCol < 20)
+rEndCol = 20;
 
-if (rEndRow < 36)
-rEndRow = 36;
+if (!bHasPrintArea || rEndRow < 50)
+rEndRow = 50;
 
 return true;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-10-30 Thread Jan Holesovsky
 sc/source/core/data/documen2.cxx |   11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

New commits:
commit 5409dc0847a4ec17f5791f577249d47913f12b48
Author: Jan Holesovsky 
Date:   Sat Oct 31 00:24:17 2015 +0100

sc lok: Always provide a reasonable document size.

With an empty document, GetPrintArea() returned false, causing nothing 
visible
on the screen.

Also increase the values when I'm touching this.

Change-Id: Iee7544a428d5d4d5d5931230a51e605302557f41

diff --git a/sc/source/core/data/documen2.cxx b/sc/source/core/data/documen2.cxx
index 5774c33..38ca15d 100644
--- a/sc/source/core/data/documen2.cxx
+++ b/sc/source/core/data/documen2.cxx
@@ -710,15 +710,14 @@ bool ScDocument::GetDataStart( SCTAB nTab, SCCOL& 
rStartCol, SCROW& rStartRow )
 
 bool ScDocument::GetTiledRenderingArea(SCTAB nTab, SCCOL& rEndCol, SCROW& 
rEndRow) const
 {
-if (!GetPrintArea(nTab, rEndCol, rEndRow, false))
-return false;
+bool bHasPrintArea = GetPrintArea(nTab, rEndCol, rEndRow, false);
 
 // we need some reasonable minimal document size
-if (rEndCol < 12)
-rEndCol = 12;
+if (!bHasPrintArea || rEndCol < 20)
+rEndCol = 20;
 
-if (rEndRow < 36)
-rEndRow = 36;
+if (!bHasPrintArea || rEndRow < 50)
+rEndRow = 50;
 
 return true;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - icon-themes/industrial icon-themes/tango officecfg/registry

2015-10-30 Thread Yousuf Philips
 icon-themes/industrial/cmd/lc_entirecell.png   
 |binary
 icon-themes/industrial/cmd/sc_entirecell.png   
 |binary
 icon-themes/tango/cmd/lc_entirecell.png
 |binary
 icon-themes/tango/cmd/lc_insertcolumnsafter-lc_insertcolumnsbefore.xcf.bz2 
 |binary
 icon-themes/tango/cmd/lc_insertcolumnsafter.png
 |binary
 icon-themes/tango/cmd/lc_insertcolumnsbefore.png   
 |binary
 icon-themes/tango/cmd/lc_insertrowsafter-lc_insertrowsbefore.xcf.bz2   
 |binary
 icon-themes/tango/cmd/lc_insertrowsafter.png   
 |binary
 icon-themes/tango/cmd/lc_insertrowsbefore.png  
 |binary
 icon-themes/tango/cmd/lc_insertrowsdown.svg
 | 3551 ++
 icon-themes/tango/cmd/lc_protect-lc_unsetcellsreadonly.xcf.bz2 
 |binary
 icon-themes/tango/cmd/lc_protect.png   
 |binary
 icon-themes/tango/cmd/lc_splittable.png
 |binary
 icon-themes/tango/cmd/lc_splittable.xcf.bz2
 |binary
 icon-themes/tango/cmd/lc_tablenumberformatdialog.png   
 |binary
 icon-themes/tango/cmd/lc_tablenumberformatdialog.xcf.bz2   
 |binary
 icon-themes/tango/cmd/lc_unsetcellsreadonly.png
 |binary
 icon-themes/tango/cmd/sc_deletetable.png   
 |binary
 icon-themes/tango/cmd/sc_deletetable.xcf.bz2   
 |binary
 
icon-themes/tango/cmd/sc_entirecell-sc_entirerow-sc_entirecolumn-sc_selecttable.xcf.bz2
 |binary
 icon-themes/tango/cmd/sc_entirecell.png
 |binary
 icon-themes/tango/cmd/sc_entirecolumn.png  
 |binary
 icon-themes/tango/cmd/sc_entirerow.png 
 |binary
 icon-themes/tango/cmd/sc_insertcolumnsafter-sc_insertcolumnsbefore.xcf.bz2 
 |binary
 icon-themes/tango/cmd/sc_insertcolumnsafter.png
 |binary
 icon-themes/tango/cmd/sc_insertcolumnsbefore.png   
 |binary
 icon-themes/tango/cmd/sc_insertrowsafter-sc_insertrowsbefore.xcf.bz2   
 |binary
 icon-themes/tango/cmd/sc_insertrowsafter.png   
 |binary
 icon-themes/tango/cmd/sc_insertrowsbefore.png  
 |binary
 icon-themes/tango/cmd/sc_selecttable.png   
 |binary
 icon-themes/tango/cmd/sc_splittable.png
 |binary
 icon-themes/tango/cmd/sc_splittable.xcf.bz2
 |binary
 icon-themes/tango/cmd/sc_tablenumberformatdialog.png   
 |binary
 icon-themes/tango/cmd/sc_tablenumberformatdialog.xcf   
 |binary
 icon-themes/tango/cmd/sc_unsetcellsreadonly.png
 |binary
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
 |   15 
 36 files changed, 3566 insertions(+)

New commits:
commit 5eb3cdc7d80ca0b71eabce83e2a7eabf35c68564
Author: Yousuf Philips 
Date:   Mon Oct 26 01:50:36 2015 +0400

TANGO: Add icons for table/sheet management

Change-Id: Ida1ce8b62d93f37c75d0fee5e7930c75f6dbdb33
Reviewed-on: https://gerrit.libreoffice.org/19617
Tested-by: Jenkins 
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/icon-themes/industrial/cmd/lc_entirecell.png 
b/icon-themes/industrial/cmd/lc_entirecell.png
new file mode 100644
index 000..f689344
Binary files /dev/null and b/icon-themes/industrial/cmd/lc_entirecell.png differ
diff --git a/icon-themes/industrial/cmd/sc_entirecell.png 
b/icon-themes/industrial/cmd/sc_entirecell.png
new file mode 100644
index 000..4f83644
Binary files /dev/null and b/icon-themes/industrial/cmd/sc_entirecell.png differ
diff --git a/icon-themes/tango/cmd/lc_entirecell.png 
b/icon-themes/tango/cmd/lc_entirecell.png
new file mode 100644
index 000..4cc0914
Binary files /dev/null and b/icon-themes/tango/cmd/lc_entirecell.png differ
diff --git 
a/icon-themes/tango/cmd/lc_insertcolumnsafter-lc_insertcolumnsbefore.xcf.bz2 
b/icon-themes/tango/cmd/lc_insertcolumnsafter-lc_insertcolumnsbefore.xcf.bz2
new file mode 100644
index 000..028d09f
Binary files /dev/null and 
b/icon-themes/tango/cmd/lc_insertcolumnsafter-lc_insertcolumnsbefore.xcf.bz2 

[Libreoffice-bugs] [Bug 95068] Crash in autocorrect options

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95068

--- Comment #14 from Jacques Guilleron  ---
Bug 95379 have a backtrace.

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


[Libreoffice-bugs] [Bug 93396] LibreOffice 5.0 Crashes on Windows 8 64-bit when making JDBC connection (Windows 64bit)

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93396

--- Comment #7 from Stefan M  ---
Created attachment 120100
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120100=edit
backtrace using winDbg from crash caused by LibreOffice Base while  opening a
JDBC connection

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


[Libreoffice-bugs] [Bug 95438] New: SLIDESHOW/VIEWING: Misrendered SVG in presenter console

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95438

Bug ID: 95438
   Summary: SLIDESHOW/VIEWING: Misrendered SVG in presenter
console
   Product: LibreOffice
   Version: 5.0.3.1 rc
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dgilb...@redhat.com

Created attachment 120102
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120102=edit
Test slide deck

See attached odp and screenshot;  I've got a presentation with the libreoffice
gallery alarm clock icon on;  Open the document, hit f5 to play it and then
page down to the second page; in the presenters console only, the SVG is shown
misrendered and rather polygonal. 

Note it doesn't seem to misrender for me when the first slide is displayed, but
does when I page forward to the second slide, and then stays wrong when I page
back.  It's displayed fine everywhere else including the main display, editing
and PDF export.

5.0.3.1-1.fc23 fedora 23 build on x86-64.

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


[Libreoffice-bugs] [Bug 95438] SLIDESHOW/VIEWING: Misrendered SVG in presenter console

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95438

--- Comment #1 from Dr. David Alan Gilbert  ---
Created attachment 120103
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120103=edit
Screen capture of misrendered clock

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


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

2015-10-30 Thread Oliver Specht
 sw/source/uibase/shells/textsh.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 278287256f560a21105998164e7ee055a7fa36c0
Author: Oliver Specht 
Date:   Mon Oct 5 16:11:45 2015 +0200

tdf#93720: Interactive frame insertion is disabled if table is selected

Current implementation does not support interactive frame insertion
that moves the table into the frame

Change-Id: I57a69f680f1218bd3014da494d41542ad0b72dd1
Reviewed-on: https://gerrit.libreoffice.org/19157
Tested-by: Jenkins 
Reviewed-by: Oliver Specht 
Reviewed-on: https://gerrit.libreoffice.org/19675
Reviewed-by: Miklos Vajna 

diff --git a/sw/source/uibase/shells/textsh.cxx 
b/sw/source/uibase/shells/textsh.cxx
index db44c79..9953023 100644
--- a/sw/source/uibase/shells/textsh.cxx
+++ b/sw/source/uibase/shells/textsh.cxx
@@ -769,6 +769,7 @@ void SwTextShell::StateInsert( SfxItemSet  )
 case FN_INSERT_FRAME_INTERACT:
 {
 if( GetShell().IsSelFrmMode()
+|| rSh.IsTableMode()
 || GetShell().CrsrInsideInputField()
 || bCrsrInHidden )
 rSet.DisableItem(nWhich);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 95068] Crash in autocorrect options

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95068

Jacques Guilleron  changed:

   What|Removed |Added

 CC||suokunl...@126.com

--- Comment #13 from Jacques Guilleron  ---
*** Bug 95379 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 95379] Auto-correct Options - Word Completion Crashes Writer, Simplified Chinese (zh_CN) UI

2015-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95379

Jacques Guilleron  changed:

   What|Removed |Added

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

--- Comment #6 from Jacques Guilleron  ---
Sorry for the mistake (not awake), but this is a Duplicate of 95068, and issue
begins with the same LO 5.0.2.1.

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

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


  1   2   3   4   >