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

2015-02-13 Thread Miklos Vajna
 sw/inc/fmtcol.hxx   |2 ++
 sw/source/core/doc/fmtcol.cxx   |   10 ++
 sw/source/core/docnode/nodedump.cxx |   10 +-
 3 files changed, 13 insertions(+), 9 deletions(-)

New commits:
commit e6b2860e88fa89b4ce7c9fdc7026dc1daf0fa700
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Fri Feb 13 09:09:40 2015 +0100

Extract SwTxtFmtColl::dumpAsXml() from docnode

Change-Id: I3ffe83afa0e0e6f181f75319af3d5cbcc78de395

diff --git a/sw/inc/fmtcol.hxx b/sw/inc/fmtcol.hxx
index ce65a1c..4d4b047 100644
--- a/sw/inc/fmtcol.hxx
+++ b/sw/inc/fmtcol.hxx
@@ -130,6 +130,8 @@ public:
 }
 
 bool AreListLevelIndentsApplicable() const;
+
+void dumpAsXml(struct _xmlTextWriter* pWriter) const;
 };
 
 class SwGrfFmtColl: public SwFmtColl
diff --git a/sw/source/core/doc/fmtcol.cxx b/sw/source/core/doc/fmtcol.cxx
index ac80f02..8f6af9c 100644
--- a/sw/source/core/doc/fmtcol.cxx
+++ b/sw/source/core/doc/fmtcol.cxx
@@ -17,6 +17,8 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
+#include libxml/xmlwriter.h
+
 #include sal/macros.h
 #include hintids.hxx
 #include editeng/ulspitem.hxx
@@ -462,6 +464,14 @@ bool SwTxtFmtColl::AreListLevelIndentsApplicable() const
 return bAreListLevelIndentsApplicable;
 }
 
+void SwTxtFmtColl::dumpAsXml(xmlTextWriterPtr pWriter) const
+{
+xmlTextWriterStartElement(pWriter, BAD_CAST(swTxtFmtColl));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(name), 
BAD_CAST(GetName().toUtf8().getStr()));
+GetAttrSet().dumpAsXml(pWriter);
+xmlTextWriterEndElement(pWriter);
+}
+
 //FEATURE::CONDCOLL
 
 SwCollCondition::SwCollCondition( SwTxtFmtColl* pColl, sal_uLong nMasterCond,
diff --git a/sw/source/core/docnode/nodedump.cxx 
b/sw/source/core/docnode/nodedump.cxx
index 3eed9fa..e2910b0 100644
--- a/sw/source/core/docnode/nodedump.cxx
+++ b/sw/source/core/docnode/nodedump.cxx
@@ -308,15 +308,7 @@ void SwTxtFmtColls::dumpAsXml(xmlTextWriterPtr w) const
 {
 writer.startElement(swtxtfmtcolls);
 for (size_t i = 0; i  size(); ++i)
-{
-const SwTxtFmtColl* pColl = GetFmt(i);
-writer.startElement(swtxtfmtcoll);
-OString aName = OUStringToOString(pColl-GetName(), 
RTL_TEXTENCODING_UTF8);
-writer.writeFormatAttribute(name, %s, 
BAD_CAST(aName.getStr()));
-
-pColl-GetAttrSet().dumpAsXml(w);
-writer.endElement();
-}
+GetFmt(i)-dumpAsXml(w);
 writer.endElement();
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 82113] FILEOPEN: Text in EMF not displayed

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82113

--- Comment #10 from Timur gti...@gmail.com ---
Please take a look at Bug 89332 - FILEOPEN: WMF table text not displayed, seems
related to me.

-- 
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 50296] Problems when using dark gtk theme

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50296

--- Comment #5 from Adolfo Jayme f...@libreoffice.org ---
For the record: the new Math Elements panel doesn’t have this issue as it does
not rely on PNG icons to display functions. So this is solved.

-- 
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 89358] array references for a text argument in functions are read in a non-intuitive way

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89358

Winfried Donkers winfrieddonk...@libreoffice.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
   Assignee|libreoffice-b...@lists.free |winfrieddonkers@libreoffice
   |desktop.org |.org
 Ever confirmed|0   |1

--- Comment #1 from Winfried Donkers winfrieddonk...@libreoffice.org ---
Created attachment 113359
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113359action=edit
demonstration of the problem

When a function with a text argument is used with an array argument instead,
the result is unpredictable for a common user.

The problem is that ScInterpreter::GetString() is given an svDoubleRef and then
gets a single cell dependent on the position of the formula.

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


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

2015-02-13 Thread Caolán McNamara
 sw/source/core/layout/tabfrm.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e1f4022b9ea7ae99a31773c445d8229ba3bdea93
Author: Caolán McNamara caol...@redhat.com
Date:   Fri Feb 13 09:50:15 2015 +

Resolves: tdf#76636 crash on merging certain cells imported from a .doc

Change-Id: I61d5088a6f2e0b444b2943a2f9ce9feeb2e09c11

diff --git a/sw/source/core/layout/tabfrm.cxx b/sw/source/core/layout/tabfrm.cxx
index a0699f0..4b25ce7 100644
--- a/sw/source/core/layout/tabfrm.cxx
+++ b/sw/source/core/layout/tabfrm.cxx
@@ -4974,7 +4974,7 @@ long SwCellFrm::GetLayoutRowSpan() const
 if ( nRet  1 )
 {
 const SwFrm* pRow = GetUpper();
-const SwTabFrm* pTab = static_castconst SwTabFrm*(pRow-GetUpper());
+const SwTabFrm* pTab = pRow ? static_castconst 
SwTabFrm*(pRow-GetUpper()) : NULL;
 
 if ( pTab  pTab-IsFollow()  pRow == 
pTab-GetFirstNonHeadlineRow() )
 nRet = -nRet;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-02-13 Thread David Tardon
 svx/source/svdraw/svdobj.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ecf0c4ba89e27cbb8cf7c7dd904cdd0b87dd5f52
Author: David Tardon dtar...@redhat.com
Date:   Fri Feb 13 09:55:46 2015 +0100

tdf#60910 don't lose fontwork objects

This reverts commit 0685b2e73e48adb84cd01355d45551ab478ebcd5.

diff --git a/svx/source/svdraw/svdobj.cxx b/svx/source/svdraw/svdobj.cxx
index 0862bab..3ff4238 100644
--- a/svx/source/svdraw/svdobj.cxx
+++ b/svx/source/svdraw/svdobj.cxx
@@ -530,7 +530,7 @@ void SdrObject::SetPage(SdrPage* pNewPage)
 // If the page is changing to another page with the same model, we
 // assume they create compatible UNO shape objects so we shouldn't have
 // to invalidate.
-if (pOldPage != pPage  pOldModel != pModel)
+if (pOldPage != pPage  !(pOldPage  pPage  pOldModel == pModel))
 {
 SvxShape* const pShape(getSvxShape());
 if (pShape  !pShape-HasSdrObjectOwnership())
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Crash test update

2015-02-13 Thread Caolán McNamara
On Thu, 2015-02-12 at 13:31 +, Crashtest VM wrote:
 New crashtest update available at 
 http://dev-builds.libreoffice.org/crashtest/ee3f2409b845e088ecc88874ba29b5bafd6cd025/

As in the esc notes I believe that the script is overwriting the last
line of importCrash.csv on each run instead of adding a new line.

The new ppt crashes and maybe some others are due to the new asserts in
sal strings, and are fixed by f78fa7e9c72ab1bd3e6a19d5234651f379c44a08

I'll leave it to sberg/mst as to if it is reasonable or not to expect
that the argument to O[U]String::match needs to be within the range of
the OUString

C.

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


[Libreoffice-bugs] [Bug 89319] FILESAVE: redundant, slow file seeking during XLS export

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89319

--- Comment #3 from László Németh nem...@numbertext.org ---
Created attachment 113360
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113360action=edit
kcachegrind profile - base

-- 
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 65675] LibreOffice 4.2 most annoying bugs

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65675
Bug 65675 depends on bug 71884, which changed state.

Bug 71884 Summary: Error starting 4.2RC1 (32-bit) LibreOffice on OS X
https://bugs.documentfoundation.org/show_bug.cgi?id=71884

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 71884] Error starting 4.2RC1 (32-bit) LibreOffice on OS X

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71884

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||mst...@redhat.com
 Resolution|--- |WORKSFORME
Summary|Error starting LibreOffice  |Error starting 4.2RC1
   |on OS X |(32-bit) LibreOffice on OS
   ||X

--- Comment #25 from Michael Stahl mst...@redhat.com ---
this bug was about 32-bit 4.2 builds and now it suddenly talks about 64-bit 3.3
builds? this is very confusing, please file a *new* bug!

sigh... could we *please* have a check in bugzilla that random users are not
allowed to re-open bugs resolved years ago?

-- 
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 71884] Error starting 4.2RC1 (32-bit) LibreOffice on OS X

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71884

--- Comment #26 from mi...@filmsi.net ---
Random user? Which country do you live in so I can sue you?

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


Re: Open Source Project (GSoc 2015)

2015-02-13 Thread Cedric Bosdonnat
Hi Mukesh,

You should first start reading this page explaining how to be a good
candidate for LibreOffice GSoC:

https://wiki.documentfoundation.org/Development/GSoC/2015#How_to_apply

--
Cedric

On Thu, 2015-02-12 at 22:02 +0530, Mukesh Gupta wrote:
 Hello Sir
 
 I am 1st year undergraduate student of Electronics and communications
 engineering at IIIT Delhi, India. I wanted to inquire about the
 projects I can contribute at Libreoffice as a part of GSoc 15. It
 would be great to be associated with such a wonderful organization. I
 have a very good knowledge of programming language like c, c++,
 python.
 
 Hope for a positive reply. 
 Regards,
 Mukesh Gupta
 
 B.Tech 1st year (ECE)
 Roll no. 2014149
 
 
 
 
 
 
 ___
 LibreOffice mailing list
 LibreOffice@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/libreoffice


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


[Libreoffice-commits] core.git: Branch 'feature/fastparser' - 5 commits - xmloff/inc xmloff/source

2015-02-13 Thread Daniel Sikeler
 xmloff/inc/txtvfldi.hxx|   16 +
 xmloff/source/style/GradientStyle.cxx  |2 
 xmloff/source/text/XMLTextListBlockContext.cxx |  225 +
 xmloff/source/text/XMLTextListBlockContext.hxx |   10 +
 xmloff/source/text/XMLTextListItemContext.cxx  |  117 +
 xmloff/source/text/XMLTextListItemContext.hxx  |   10 +
 xmloff/source/text/txtvfldi.cxx|  155 +
 7 files changed, 533 insertions(+), 2 deletions(-)

New commits:
commit 4b67e0c6f725851c90caab2af2fda8f8809b69b9
Author: Daniel Sikeler d.sikele...@gmail.com
Date:   Fri Feb 13 09:21:12 2015 +0100

fix XMLGradientStyleImport::importXML

Change-Id: If41fd5e0617768bc52e494c918048608f88d4334

diff --git a/xmloff/source/style/GradientStyle.cxx 
b/xmloff/source/style/GradientStyle.cxx
index 26ec0b9..647cc1d 100644
--- a/xmloff/source/style/GradientStyle.cxx
+++ b/xmloff/source/style/GradientStyle.cxx
@@ -429,7 +429,7 @@ bool XMLGradientStyleImport::importXML(
 case XML_TOK_GRADIENT_ANGLE:
 {
 sal_Int32 nValue;
-sax::Converter::convertNumber( nTmpValue, attr-Value, 0, 3600 );
+sax::Converter::convertNumber( nValue, attr-Value, 0, 3600 );
 aGradient.Angle = sal_Int16( nValue );
 }
 break;
commit 99105e20cb5b32a676407699d1268e878ac3d623
Author: Daniel Sikeler d.sikele...@gmail.com
Date:   Fri Feb 13 09:14:34 2015 +0100

XMLVariableDeclsImportContext impl. fast interface

all methods implemented

Change-Id: Ia1943c2de2034607a7cb1d4a26e2321c96aea53a

diff --git a/xmloff/inc/txtvfldi.hxx b/xmloff/inc/txtvfldi.hxx
index 6383260..86adcd6 100644
--- a/xmloff/inc/txtvfldi.hxx
+++ b/xmloff/inc/txtvfldi.hxx
@@ -473,12 +473,21 @@ public:
 sal_uInt16 nPrfx,   /// namespace prefix
 const OUString rLocalName,  /// element name w/o prefix
 enum VarType eVarType); /// variable type
+XMLVariableDeclsImportContext(
+SvXMLImport rImport,   /// XML Import
+XMLTextImportHelper rHlp,  /// text import helper
+sal_Int32 Element,  /// xml-tag specifier
+enum VarType eVarType );/// variable type
 
 virtual SvXMLImportContext *CreateChildContext(
 sal_uInt16 nPrefix,
 const OUString rLocalName,
 const ::com::sun::star::uno::Reference
 ::com::sun::star::xml::sax::XAttributeList  xAttrList ) SAL_OVERRIDE;
+virtual css::uno::Reference css::xml::sax::XFastContextHandler  SAL_CALL
+createFastChildContext( sal_Int32 Element,
+const css::uno::Reference css::xml::sax::XFastAttributeList  
xAttrList )
+throw(css::uno::RuntimeException, css::xml::sax::SAXException, 
std::exception) SAL_OVERRIDE;
 };
 
 /**
diff --git a/xmloff/source/text/txtvfldi.cxx b/xmloff/source/text/txtvfldi.cxx
index 948fe08..a4b0175 100644
--- a/xmloff/source/text/txtvfldi.cxx
+++ b/xmloff/source/text/txtvfldi.cxx
@@ -779,6 +779,15 @@ 
XMLVariableDeclsImportContext::XMLVariableDeclsImportContext(
 {
 }
 
+XMLVariableDeclsImportContext::XMLVariableDeclsImportContext(
+SvXMLImport rImport, XMLTextImportHelper rHlp, sal_Int32 /*Element*/,
+enum VarType eVarType )
+:   SvXMLImportContext( rImport ),
+eVarDeclsContextType(eVarType),
+rImportHelper(rHlp)
+{
+}
+
 SvXMLImportContext* XMLVariableDeclsImportContext::CreateChildContext(
 sal_uInt16 nPrefix, const OUString rLocalName,
 const Referencexml::sax::XAttributeList  xAttrList )
@@ -823,8 +832,44 @@ SvXMLImportContext* 
XMLVariableDeclsImportContext::CreateChildContext(
 return pImportContext;
 }
 
+Reference xml::sax::XFastContextHandler  SAL_CALL
+XMLVariableDeclsImportContext::createFastChildContext( sal_Int32 Element,
+const Reference xml::sax::XFastAttributeList  xAttrList )
+throw(RuntimeException, xml::sax::SAXException, std::exception)
+{
+sal_Int32 ElementToken = NAMESPACE | XML_NAMESPACE_TEXT;
+Reference xml::sax::XFastContextHandler  pImportContext = NULL;
 
+switch( eVarDeclsContextType )
+{
+case VarTypeSequence:
+ElementToken = ElementToken | XML_sequence_decl;
+break;
+case VarTypeSimple:
+ElementToken = ElementToken | XML_variable_decl;
+break;
+case VarTypeUserField:
+ElementToken = ElementToken | XML_user_field_decl;
+default:
+OSL_FAIL(unknown field type!);
+ElementToken = ElementToken | XML_sequence_decl;
+break;
+}
+
+if( Element == ElementToken )
+{
+pImportContext = new XMLVariableDeclImportContext(
+GetImport(), rImportHelper, Element, xAttrList, 
eVarDeclsContextType );
+}
 
+// if no context was created, use default context
+if( !pImportContext.is() ) {
+pImportContext = 

[Libreoffice-bugs] [Bug 89146] Formulas in Writer losing some formatting in docx and rtf files, compared to odt file

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89146

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 CC||philip...@hotmail.com
Version|4.4.0.3 release |3.6.7.2 release
 Whiteboard||filter:rtf rtf_filter
   ||filter:docx

--- Comment #2 from Jay Philips philip...@hotmail.com ---
With RTF, in 3.3.0 the formula is exported as a graphic, in 3.6.7 its exported
as an OLE and in 4.0.6 and above its a formula.

With DOCX, in 3.3.0 the formula isnt found and in 3.6.7 and above it shows as a
formula.

Tested on linux and confirmed that the formula doesnt retain all its features
and formatting.

-- 
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 48851] VIEWING: Random display corruption of headings in document [Summary in Comment #55]

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=48851

--- Comment #61 from Jon Grossart j...@grossart.net ---
I had it happen with use openGL rendering checked. I'm not sure how to make
sure it was actually running in that mode though, and not being blacklisted.

I created a master document of many of my files, and it was able to cause the
problem much more often than any single document. If any dev really wants to
look into it, I'd be happy to provide it to them, but I won't put it in the
public 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 79641] LibreOffice 4.4 most annoying bugs

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79641
Bug 79641 depends on bug 60910, which changed state.

Bug 60910 Summary: FILESAVE loses Fontwork/shape objects
https://bugs.documentfoundation.org/show_bug.cgi?id=60910

   What|Removed |Added

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

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


[Bug 79641] LibreOffice 4.4 most annoying bugs

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79641
Bug 79641 depends on bug 60910, which changed state.

Bug 60910 Summary: FILESAVE loses Fontwork/shape objects
https://bugs.documentfoundation.org/show_bug.cgi?id=60910

   What|Removed |Added

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

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


ScInterpreter::GetString() with svDoubleRef type of argument

2015-02-13 Thread Winfried Donkers
Hi,

I was pointed to a possible bug with Calc function LEFT() when entering an 
array for the text argument. In some cases it worked, in other it didn't. I 
created bug 89358 with an attachment showing the behaviour.

I found out it is because when ScInterpreter::GetString() is called  when the 
stack value is an array (svDoubleRef), the string is taken from the array 
dependent on the relative position of the formula 
(ScInterpreter::DoubleRefToPosSingleRef()).

As ScInterpreter::GetString() is used in all Calc functions accepting text 
arguments, I don't know if there cases where this formula-position-dependent 
cell picking from arrays is useful. Therefor, changing that code may produce 
unwanted results elsewhere.

Does anyone know of cases where this formula-position-dependent stuff is needed?
I would like to change the code so that -if no formula-position-dependent stuff 
is needed - the top left cell of the range is used.

The specific code has been there since September 2000 at least.

Winfried


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


[Libreoffice-bugs] [Bug 89359] New: Problems with Logitech G9x Mouse

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89359

Bug ID: 89359
   Summary: Problems with Logitech G9x Mouse
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: andre_hinri...@yahoo.de

when I hover over with the pointer underneath the sum button it seems that
there is a invisible barrier for the pointer.
i am the only one of my team with a special mouse and all the others dont´n
have this problem.

-- 
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 70294] Crash while using track changes

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70294

Caolán McNamara caol...@redhat.com changed:

   What|Removed |Added

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

--- Comment #4 from Caolán McNamara caol...@redhat.com ---
Its possible that
http://cgit.freedesktop.org/libreoffice/core/commit/?id=a5a20187c3a5e5956492f932c49501f9547e4915
is the fix for this. But its hard to be sure without a reproducible scenario
for this. Resolve Fixed might be a little strong, but I at least think the
above commit is a step in the right direction.

-- 
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 89319] FILESAVE: redundant, slow file seeking during XLS export

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89319

--- Comment #4 from László Németh nem...@numbertext.org ---
Created attachment 113361
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113361action=edit
kcachegrind profile - optimized (~3%) XLS export

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


[Bug 65675] LibreOffice 4.2 most annoying bugs

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65675
Bug 65675 depends on bug 71884, which changed state.

Bug 71884 Summary: Error starting 4.2RC1 (32-bit) LibreOffice on OS X
https://bugs.documentfoundation.org/show_bug.cgi?id=71884

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 89360] New: OS and LO custom file dialogs should retain filetype selection

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89360

Bug ID: 89360
   Summary: OS and LO custom file dialogs should retain filetype
selection
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: libreoffice-ux-adv...@lists.freedesktop.org

When you open the OSes open, save, save as, save as copy, and export dialogs or
the custom ones from libreoffice then should retain the user's previously
selected filetype. This only happens when using LO's custom dialog for save,
save as, and save as copy.

-- 
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 89360] New: OS and LO custom file dialogs should retain filetype selection

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89360

Bug ID: 89360
   Summary: OS and LO custom file dialogs should retain filetype
selection
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-b...@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: libreoffice-ux-advise@lists.freedesktop.org

When you open the OSes open, save, save as, save as copy, and export dialogs or
the custom ones from libreoffice then should retain the user's previously
selected filetype. This only happens when using LO's custom dialog for save,
save as, and save as copy.

-- 
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 71884] Error starting 4.2RC1 (32-bit) LibreOffice on OS X

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71884

--- Comment #27 from mi...@filmsi.net ---
This bug report is reopened because the symptoms are the same even if the OSX
architecture changed - it is believed for now that this is a regression from
the first bug.
Since some commenters have mentioned it has been fixed for 4.2 it gives an
opportunity to find that fix and see if with 4.4 there were some unwanted
changes in that part of code that could trigger a regression.

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


[Libreoffice-bugs] [Bug 76636] Crash in .doc when trying to merge cells

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76636

--- Comment #31 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Caolán McNamara committed a patch related to this issue.
It has been pushed to master:

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

Resolves: tdf#76636 crash on merging certain cells imported from a .doc

It will be available in 4.5.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: Branch 'libreoffice-4-4' - svx/source

2015-02-13 Thread Eike Rathke
 svx/source/dialog/langbox.cxx |   24 
 1 file changed, 16 insertions(+), 8 deletions(-)

New commits:
commit e0f22bb1db655d86923c16e5c2f7d84489d7a63e
Author: Eike Rathke er...@redhat.com
Date:   Thu Feb 12 23:47:21 2015 +0100

Resolves: tdf#81429 select corresponding listbox entry if not current

Change-Id: Ib475a43601ee22d33677ac45cd6ef9dba7e7c431
(cherry picked from commit a448f1bb9221f30f73574c580b506e00bf2ae61a)
Reviewed-on: https://gerrit.libreoffice.org/14457
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/svx/source/dialog/langbox.cxx b/svx/source/dialog/langbox.cxx
index e8a0128..39cff15 100644
--- a/svx/source/dialog/langbox.cxx
+++ b/svx/source/dialog/langbox.cxx
@@ -716,21 +716,29 @@ IMPL_LINK( SvxLanguageComboBox, EditModifyHdl, 
SvxLanguageComboBox*, /*pEd*/ )
 const sal_Int32 nPos = GetEntryPos( aStr);
 if (nPos != COMBOBOX_ENTRY_NOTFOUND)
 {
-// Advance start of full selection by one so the next character
-// will already continue the string instead of having to type the
-// same character again to start a new string. The selection
-// includes formatting characters and is reverse when obtained from
-// the Edit control.
 Selection aSel( GetSelection());
+
+// Select the corresponding listbox entry if not current. This
+// invalidates the Edit Selection thus has to happen between
+// obtaining the Selection and setting the new Selection.
+sal_Int32 nSelPos = ImplGetSelectEntryPos();
+if (nSelPos != nPos)
+ImplSelectEntryPos( nPos, true);
+
+// If typing into the Edit control led us here, advance start of a
+// full selection by one so the next character will already
+// continue the string instead of having to type the same character
+// again to start a new string. The selection includes formatting
+// characters and is reverse when obtained from the Edit control.
 if (aSel.Max() == 1)
 {
 OUString aText( GetText());
 if (aSel.Min() == aText.getLength())
-{
 ++aSel.Max();
-SetSelection( aSel);
-}
 }
+
+SetSelection( aSel);
+
 meEditedAndValid = EDITED_NO;
 }
 else
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4' - svx/source

2015-02-13 Thread David Tardon
 svx/source/svdraw/svdobj.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 600d6eda0028a7b4927547970a9d683a1437e4c8
Author: David Tardon dtar...@redhat.com
Date:   Fri Feb 13 09:55:46 2015 +0100

tdf#60910 don't lose fontwork objects

This reverts commit 0685b2e73e48adb84cd01355d45551ab478ebcd5.

(cherry picked from commit ecf0c4ba89e27cbb8cf7c7dd904cdd0b87dd5f52)

Change-Id: I843dce1f9551529d125435e5e8eb9fa759a5af23
Reviewed-on: https://gerrit.libreoffice.org/14461
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/svx/source/svdraw/svdobj.cxx b/svx/source/svdraw/svdobj.cxx
index 7eb521e..a683ab2 100644
--- a/svx/source/svdraw/svdobj.cxx
+++ b/svx/source/svdraw/svdobj.cxx
@@ -508,7 +508,7 @@ void SdrObject::SetPage(SdrPage* pNewPage)
 // If the page is changing to another page with the same model, we
 // assume they create compatible UNO shape objects so we shouldn't have
 // to invalidate.
-if (pOldPage != pPage  pOldModel != pModel)
+if (pOldPage != pPage  !(pOldPage  pPage  pOldModel == pModel))
 {
 SvxShape* const pShape(getSvxShape());
 if (pShape  !pShape-HasSdrObjectOwnership())
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2015-02-13 Thread Stanislav Horacek
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9df101c7e9ff36a1425f96ec78aaf11f23577842
Author: Stanislav Horacek stanislav.hora...@gmail.com
Date:   Thu Feb 12 19:58:13 2015 +0100

Updated core
Project: help  377e8876396a87ae09b82ce17b67d8bef5b26abe

tdf#89294 scanner items are now in Media submenu

Change-Id: Ib71d92143e39e6fbc280a115a548c2d827764fff
Reviewed-on: https://gerrit.libreoffice.org/14447
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/helpcontent2 b/helpcontent2
index 0c8a78a..377e887 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 0c8a78a426e48b9adf19ff75c5d8c7cb112e91dd
+Subproject commit 377e8876396a87ae09b82ce17b67d8bef5b26abe
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89361] New: Get rid of Gopher support

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89361

Bug ID: 89361
   Summary: Get rid of Gopher support
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: t...@iki.fi

git grep -i gopher

-- 
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 83955] TRACK CHANGES: Customizing the changes toolbar

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83955

--- Comment #17 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Yousuf Philips committed a patch related to this issue.
It has been pushed to master:

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

tdf#83955 enable insert comment and rearrange buttons

It will be available in 4.5.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds
Affected users are encouraged to test the fix and report feedback.

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


[Libreoffice-bugs] [Bug 89361] Get rid of Gopher support

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89361

Tor Lillqvist t...@iki.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||t...@iki.fi
 Ever confirmed|0   |1
 Whiteboard||EasyHack DifficultyBeginner
   ||SkillCpp

-- 
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] Bugzilla User Stats

2015-02-13 Thread Pedro
Robinson Tryon wrote
 17,892 total user accounts in Bugzilla, comprising
 536 users who have successfully migrated from FDO,
 17,002 who haven't, and
 354 new accounts.

So, in total 890 registered users (pretty good!)


Robinson Tryon wrote
 In terms of activity, we've had
 448 users active in the last week, and
 1304 active in the last month.

More active users than registered???



--
View this message in context: 
http://nabble.documentfoundation.org/Libreoffice-qa-Bugzilla-User-Stats-tp4139920p4139978.html
Sent from the QA mailing list archive at Nabble.com.
___
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 89357] GALLERY: Clip-Art gallery can't be displayed

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89357

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

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

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
You are probably speaking of the Clipart Gallery and not Fontwork Gallery?
Which steps had you made?
Have you been going to the Sidebar on the right and pressing the Gallery
button?  Then the Gallery should open in the Sidebar on the right.

-- 
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 89363] New: Chnage direction at middle of context (RTL)

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89363

Bug ID: 89363
   Summary: Chnage direction at middle of context (RTL)
   Product: LibreOffice
   Version: 4.4.1.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mohammad.etemad...@gmail.com

There are many situations in RTL language where we want to change direction of
a text at middle of context.
For example you can copy and paste these lines (It's in Persian):

-

زبان C++ یک زبان شی‌گرا است.

ویکی‌پدیا، Wikipedia (free encyclopedia) یک دانش‌نامه آزاد است.

-

Direction of all text is Right to left. But we need to change direction of the
two texts C++ and Wikipedia (free encyclopedia) to LTR. Because they show
wrong now.

In HTML we can put span tag and set span tag's direction property to ltr
for example:

-
ویکی‌پدیا، span direction=ltrWikipedia (free encyclopedia)/span یک
دانش‌نامه آزاد است.
-

Now, microsoft office changes this using default button.
But, ckeditor has this, using another button. Here is a plugin (However
ckeditor has this feature without this plugin, I have created this before I
know the ckeditor's default feature.

http://metemaddar.ir/sites/default/files/loft.zip

CKeditor default button:
http://metemaddar.ir/sites/default/files/styles/large/public/field/image/LTR%20inline%20style.png

Thank you all very much. I like myself to become participate in creating new
features in my beloved Libre Office.

-- 
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 89362] Chnage direction at middle of context (RTL)

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89362

Mohammad Etemaddar mohammad.etemad...@gmail.com changed:

   What|Removed |Added

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

--- Comment #1 from Mohammad Etemaddar mohammad.etemad...@gmail.com ---
I have pressed save and then canceled using escape key, and this pug has been
created. the complete bug report is this:

https://bugs.documentfoundation.org/show_bug.cgi?id=89363

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

-- 
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 89363] Chnage direction at middle of context (RTL)

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89363

--- Comment #1 from Mohammad Etemaddar mohammad.etemad...@gmail.com ---
*** Bug 89362 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 75025] LibreOffice 4.3 most annoying bugs

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75025
Bug 75025 depends on bug 79569, which changed state.

Bug 79569 Summary: CRASH after undoing multi-line cell merge
https://bugs.documentfoundation.org/show_bug.cgi?id=79569

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
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 79569] CRASH after undoing multi-line cell merge

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79569

Caolán McNamara caol...@redhat.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 83227] FILESAVE: SolidConverter DOCX - On resave margins and images lost and file size doubled

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83227

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

   Keywords||bisected
 CC||fdb...@neosheffield.co.uk,
   ||vmik...@collabora.co.uk
 Whiteboard|bibisectRequest DataLoss|bibisected DataLoss
   |filter:docx |filter:docx

--- Comment #8 from Matthew Francis fdb...@neosheffield.co.uk ---
The images in GB_2013.docx started being duplicated on save from the below
commit. It's not clear how many of the problems round-tripping this file are
directly related to this, so I'm going to leave off splitting this bug up for
now, but more bugs may need to be opened once this has been dealt with.

Adding Cc: to vmik...@collabora.co.uk; Could you possibly take a look at this?
Thanks


commit cfb5b20cdc230320ff9f864d1cfd81aaea221da0
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Wed Dec 18 11:03:57 2013 +0100

DocxAttributeOutput::OutputFlyFrame_Impl: enable DML export by default

This was only available in experimental mode previously. Also note that
export of Writer TextFrames are handled separately, there DML export is
still off by default.

Change-Id: Ie8eaa1670610d92a363a8558b68064e7d7de2cdd

-- 
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 89330] Cell formula converted to lowercase, including cross-references to other files when having a syntax error

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89330

Jan kant...@sra.uni-hannover.de changed:

   What|Removed |Added

 CC||kant...@sra.uni-hannover.de

--- Comment #3 from Jan kant...@sra.uni-hannover.de ---
I wrote a small unittest to reproduce the problem:

void Test::testErrorOnExternalReferences()
{
m_pDoc-InsertTab(0, Sheet1);
m_pDoc-SetString(ScAddress(0,0,0),
='file:///Path/To/FileA.ods'#$Sheet1.A1A);

ScFormulaCell* pFC = m_pDoc-GetFormulaCell(ScAddress(0,0,0));
CPPUNIT_ASSERT(pFC);
CPPUNIT_ASSERT_MESSAGE(This formula cell should be an error.,
pFC-GetErrCode() != 0);

if (!checkFormula(*m_pDoc, ScAddress(0,0,0),
'file:///Path/To/FileA.ods'#$Sheet1.A1A))
CPPUNIT_FAIL(Formula changed);

m_pDoc-DeleteTab(0);
}


Problems seems to be somewhere in compiler.cxx

-- 
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 76825] UI: Styles drop down menu is too narrow in Libreoffice Writer (comment #16)

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76825

Caolán McNamara caol...@redhat.com changed:

   What|Removed |Added

 CC||caol...@redhat.com

--- Comment #18 from Caolán McNamara caol...@redhat.com ---
Created attachment 113364
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113364action=edit
err, how it looks for me in 4.4 under gnome3

For me the menu does expand to fit the width of the longest style name (up to a
reasonable limit) and looks fine. How some everyone elses screen shots don't
look like mine ?

-- 
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-commits] core.git: Branch 'distro/collabora/viewer' - solenv/bin

2015-02-13 Thread Jan Holesovsky
 solenv/bin/native-code.py |   22 +-
 1 file changed, 21 insertions(+), 1 deletion(-)

New commits:
commit 57548e61b875e755ea52e9d30a3492dad96a6bd3
Author: Jan Holesovsky ke...@collabora.com
Date:   Fri Feb 13 11:37:48 2015 +0100

native-code.py: Don't add the entire libchartcorelo.a.

Instead, just add the constructors of the needed services.  Tested with
various-charts.ods from tdf#89364.

Change-Id: I98df03bfc19aeacaa92e4693e7934c8503f183e1

diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py
index 28a5160..c212c25 100755
--- a/solenv/bin/native-code.py
+++ b/solenv/bin/native-code.py
@@ -25,7 +25,6 @@ core_factory_list = [
 (libevtattlo.a, evtatt_component_getFactory),
 (libreflectionlo.a, reflection_component_getFactory),
 (libstocserviceslo.a, stocservices_component_getFactory),
-(libchartcorelo.a, chartcore_component_getFactory),
 (libcomphelper.a, comphelp_component_getFactory),
 (libconfigmgrlo.a, configmgr_component_getFactory),
 (libdrawinglayerlo.a, drawinglayer_component_getFactory),
@@ -63,6 +62,27 @@ core_factory_list = [
 ]
 
 core_constructor_list = [
+# chart2/source/chartcore.component
+com_sun_star_comp_chart_AreaChartType_get_implementation,
+com_sun_star_comp_chart_BarChartType_get_implementation,
+com_sun_star_comp_chart_BubbleChartType_get_implementation,
+com_sun_star_comp_chart_CandleStickChartType_get_implementation,
+com_sun_star_comp_chart_ChartTypeManager_get_implementation,
+com_sun_star_comp_chart_ColumnChartType_get_implementation,
+com_sun_star_comp_chart_DataSeries_get_implementation,
+com_sun_star_comp_chart_FilledNetChartType_get_implementation,
+com_sun_star_comp_chart_GL3DBarChartType_get_implementation,
+com_sun_star_comp_chart_FormattedString_get_implementation,
+com_sun_star_comp_chart_LineChartType_get_implementation,
+com_sun_star_comp_chart_NetChartType_get_implementation,
+com_sun_star_comp_chart_PieChartType_get_implementation,
+com_sun_star_comp_chart_ScatterChartType_get_implementation,
+com_sun_star_comp_chart2_Axis_get_implementation,
+com_sun_star_comp_chart2_ChartModel_get_implementation,
+com_sun_star_comp_chart2_Diagram_get_implementation,
+com_sun_star_comp_chart2_LabeledDataSequence_get_implementation,
+com_sun_star_comp_chart2_Legend_get_implementation,
+com_sun_star_comp_chart2_XMLFilter_get_implementation,
 # chart2/source/controller/chartcontroller.component
 com_sun_star_comp_chart2_ChartDocumentWrapper_get_implementation,
 # dbaccess/util/dba.component
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 66540] LibreOffice slows Outlook and vice versa

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66540

Winfried Donkers winfrieddonk...@libreoffice.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |NOTOURBUG

--- Comment #19 from Winfried Donkers winfrieddonk...@libreoffice.org ---
Surprise: With Outlook we use a small aaa-in (Advanced_security from MAPILabs)
that allows other applications to create/send e-mails with Outlook without
messages asking for permission.

Disabling this add-on ends the slowing down of Outlook and/or LibreOffice :-)
(That creates another problem here, but has nothing to do with LibreOffice).

Thank you all for your suggestions in finding the cause!

-- 
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 76636] Crash in .doc when trying to merge cells

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76636

Caolán McNamara caol...@redhat.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 76636] Crash in .doc when trying to merge cells

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76636

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard|| target:4.5.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-commits] core.git: sc/source

2015-02-13 Thread Albert Thuswaldner
 sc/source/core/data/table1.cxx |   93 ++--
 sc/source/core/data/table2.cxx |  104 -
 sc/source/core/data/table3.cxx |   92 +---
 3 files changed, 143 insertions(+), 146 deletions(-)

New commits:
commit 8893a361238ce8e151f1db65a36a8c2506d26594
Author: Albert Thuswaldner albert.thuswald...@gmail.com
Date:   Thu Feb 12 21:20:00 2015 +0100

Translated german commments in sc/source/core/data/table1-3.cxx

Change-Id: Ic28cb4f9371caf39e783f39fd8a117260b962bfe
Reviewed-on: https://gerrit.libreoffice.org/14451
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/sc/source/core/data/table1.cxx b/sc/source/core/data/table1.cxx
index 1aa5430..7ace7b5 100644
--- a/sc/source/core/data/table1.cxx
+++ b/sc/source/core/data/table1.cxx
@@ -86,15 +86,15 @@ void GetOptimalHeightsInColumn(
 {
 SCSIZE nCount = static_castSCSIZE(nEndRow-nStartRow+1);
 
-//  zuerst einmal ueber den ganzen Bereich
-//  (mit der letzten Spalte in der Hoffnung, dass die am ehesten noch auf
-//   Standard formatiert ist)
+//  first, one time over the whole range
+//  (with the last column in the hope that they most likely still are
+//  on standard format)
 
 std::vectorsal_uInt16 rHeights = rCxt.getHeightArray();
 
 pCol[MAXCOL].GetOptimalHeight(rCxt, nStartRow, nEndRow, 0, 0);
 
-//  daraus Standardhoehe suchen, die im unteren Bereich gilt
+//  from there search for the standard height that is in use in the lower 
part
 
 sal_uInt16 nMinHeight = rHeights[nCount-1];
 SCSIZE nPos = nCount-1;
@@ -103,14 +103,14 @@ void GetOptimalHeightsInColumn(
 SCROW nMinStart = nStartRow + nPos;
 
 sal_uLong nWeightedCount = 0;
-for (SCCOL nCol=0; nColMAXCOL; nCol++) // MAXCOL schon oben
+for (SCCOL nCol=0; nColMAXCOL; nCol++) // MAXCOL already above
 {
 pCol[nCol].GetOptimalHeight(rCxt, nStartRow, nEndRow, nMinHeight, 
nMinStart);
 
 if (pProgress)
 {
 sal_uLong nWeight = pCol[nCol].GetWeightedCount();
-if (nWeight)// nochmal denselben Status muss auch nicht 
sein
+if (nWeight)// does not have to be the same Status
 {
 nWeightedCount += nWeight;
 pProgress-SetState( nWeightedCount + nProgressStart );
@@ -326,9 +326,9 @@ ScTable::~ScTable()
 {
 aCol[nCol].FreeNotes();
 }
-//  nicht im dtor die Pages in der falschen Reihenfolge loeschen
-//  (nTab stimmt dann als Page-Number nicht!)
-//  In ScDocument::Clear wird hinterher per Clear am Draw Layer alles 
geloescht.
+//  In the dtor, don't delete the pages in the wrong order.
+//  (or else nTab does not reflect the page number!)
+//  In ScDocument::Clear is afterwards used from Clear at the Draw 
Layer to delete everything.
 
 ScDrawLayer* pDrawLayer = pDocument-GetDrawLayer();
 if (pDrawLayer)
@@ -422,10 +422,10 @@ void ScTable::SetLink( sal_uInt8 nMode,
 const OUString rTab, sal_uLong nRefreshDelay )
 {
 nLinkMode = nMode;
-aLinkDoc = rDoc;// Datei
+aLinkDoc = rDoc;// File
 aLinkFlt = rFlt;// Filter
-aLinkOpt = rOpt;// Filter-Optionen
-aLinkTab = rTab;// Tabellenname in Quelldatei
+aLinkOpt = rOpt;// Filter options
+aLinkTab = rTab;// Sheet name in source file
 nLinkRefreshDelay = nRefreshDelay;  // refresh delay in seconds, 0==off
 
 if (IsStreamValid())
@@ -449,7 +449,7 @@ long ScTable::GetNeededSize( SCCOL nCol, SCROW nRow,
 bool bWidth, bool bTotalSize )
 {
 ScNeededSizeOptions aOptions;
-aOptions.bSkipMerged = false;   // zusammengefasste mitzaehlen
+aOptions.bSkipMerged = false;   // count merged cells
 aOptions.bTotalSize  = bTotalSize;
 
 return aCol[nCol].GetNeededSize
@@ -568,7 +568,7 @@ bool ScTable::GetPrintArea( SCCOL rEndCol, SCROW rEndRow, 
bool bNotes, bool bF
 SCROW nMaxY = 0;
 SCCOL i;
 
-for (i=0; i=MAXCOL; i++)   // Daten testen
+for (i=0; i=MAXCOL; i++)   // Test data
 {
 if (!aCol[i].IsEmptyData())
 {
@@ -600,7 +600,7 @@ bool ScTable::GetPrintArea( SCCOL rEndCol, SCROW rEndRow, 
bool bNotes, bool bF
 
 SCCOL nMaxDataX = nMaxX;
 
-for (i=0; i=MAXCOL; i++)   // Attribute testen
+for (i=0; i=MAXCOL; i++)   // Test attribute
 {
 SCROW nLastRow;
 if (aCol[i].GetLastVisibleAttr( nLastRow, bFullFormattedArea ))
@@ -612,7 +612,7 @@ bool ScTable::GetPrintArea( SCCOL rEndCol, SCROW rEndRow, 
bool bNotes, bool bF
 }
 }
 
-if (nMaxX == MAXCOL)// Attribute rechts weglassen
+if (nMaxX == MAXCOL)  

[Libreoffice-ux-advise] [Bug 83955] TRACK CHANGES: Customizing the changes toolbar

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83955

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard|target:4.4.0|target:4.4.0 target:4.5.0

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

2015-02-13 Thread Stanislav Horacek
 source/text/shared/00/0404.xhp|6 +++---
 source/text/swriter/guide/insert_graphic_scan.xhp |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 377e8876396a87ae09b82ce17b67d8bef5b26abe
Author: Stanislav Horacek stanislav.hora...@gmail.com
Date:   Thu Feb 12 19:58:13 2015 +0100

tdf#89294 scanner items are now in Media submenu

Change-Id: Ib71d92143e39e6fbc280a115a548c2d827764fff
Reviewed-on: https://gerrit.libreoffice.org/14447
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/source/text/shared/00/0404.xhp 
b/source/text/shared/00/0404.xhp
index bbfe599..5de6f2f 100644
--- a/source/text/shared/00/0404.xhp
+++ b/source/text/shared/00/0404.xhp
@@ -33,15 +33,15 @@
 paragraph role=paragraph id=par_id3153808 xml-lang=en-US l10n=CHG 
oldref=28variable id=notizChoose emphInsert - Comment/emph
 /variable/paragraph
 section id=scannen
-paragraph role=paragraph id=par_id3155619 xml-lang=en-US l10n=CHG 
oldref=71Choose emphInsert - Image - Scan/emph
+paragraph role=paragraph id=par_id3155619 xml-lang=en-US l10n=CHG 
oldref=71Choose emphInsert - Media - Scan/emph
 /paragraph
 /section
 section id=quelle
-paragraph role=paragraph id=par_id3150502 xml-lang=en-US l10n=CHG 
oldref=30Choose emphInsert - Image - Scan - Select Source/emph
+paragraph role=paragraph id=par_id3150502 xml-lang=en-US l10n=CHG 
oldref=30Choose emphInsert - Media - Scan - Select Source/emph
 /paragraph
 /section
 section id=anfordern
-paragraph role=paragraph id=par_id3155934 xml-lang=en-US l10n=CHG 
oldref=32Choose emphInsert - Image - Scan - Request/emph
+paragraph role=paragraph id=par_id3155934 xml-lang=en-US l10n=CHG 
oldref=32Choose emphInsert - Media - Scan - Request/emph
 /paragraph
 /section
 section id=sonder
diff --git a/source/text/swriter/guide/insert_graphic_scan.xhp 
b/source/text/swriter/guide/insert_graphic_scan.xhp
index 4e5d688..4893698 100644
--- a/source/text/swriter/guide/insert_graphic_scan.xhp
+++ b/source/text/swriter/guide/insert_graphic_scan.xhp
@@ -42,7 +42,7 @@
 paragraph xml-lang=en-US id=par_id3155915 role=listitem 
l10n=U oldref=4Click in the document where you want to insert the scanned 
image./paragraph
  /listitem
  listitem
-paragraph xml-lang=en-US id=par_id3155864 role=listitem 
l10n=U oldref=5Choose link href=text/shared/01/0406.xhp 
name=Insert - Image - ScanemphInsert - Image - Scan/emph/link, and 
choose the scanning source from the submenu./paragraph
+paragraph xml-lang=en-US id=par_id3155864 role=listitem 
l10n=U oldref=5Choose link href=text/shared/01/0406.xhp 
name=Insert - Media - ScanemphInsert - Media - Scan/emph/link, and 
choose the scanning source from the submenu./paragraph
  /listitem
  listitem
 paragraph xml-lang=en-US id=par_id3153416 role=listitem 
l10n=U oldref=8Follow the scanning instructions./paragraph
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89362] Chnage direction at middle of context (RTL)

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89362

--- Comment #2 from Mohammad Etemaddar mohammad.etemad...@gmail.com ---
I have pressed save and then canceled using escape key, and this pug has been
created. the complete bug report is this:

https://bugs.documentfoundation.org/show_bug.cgi?id=89363

-- 
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 89363] Chnage direction at middle of context (RTL)

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89363

Mohammad Etemaddar mohammad.etemad...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Bug 75025] LibreOffice 4.3 most annoying bugs

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75025
Bug 75025 depends on bug 79569, which changed state.

Bug 79569 Summary: CRASH after undoing multi-line cell merge
https://bugs.documentfoundation.org/show_bug.cgi?id=79569

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 54742] [RFE] [FORMATTING] Shift+F3 working at beginning and end of a word too

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=54742

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

   Severity|normal  |enhancement

--- Comment #4 from A (Andy) stgohi-lob...@yahoo.de ---
Reproducible with LO 4.4.0.3, Win 8.1

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


[Libreoffice-bugs] [Bug 76825] UI: Styles drop down menu is too narrow in Libreoffice Writer (comment #16)

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76825

Caolán McNamara caol...@redhat.com changed:

   What|Removed |Added

 CC||caol...@redhat.com

--- Comment #18 from Caolán McNamara caol...@redhat.com ---
Created attachment 113364
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113364action=edit
err, how it looks for me in 4.4 under gnome3

For me the menu does expand to fit the width of the longest style name (up to a
reasonable limit) and looks fine. How some everyone elses screen shots don't
look like mine ?

-- 
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 84726] LibreOffice for Android most annoying bugs

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84726

Jan Holesovsky ke...@collabora.com changed:

   What|Removed |Added

 Depends on||89364

-- 
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 89364] android: Charts do not render

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89364

Jan Holesovsky ke...@collabora.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Blocks||84726
 Ever confirmed|0   |1

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


[Libreoffice-commits] core.git: solenv/bin

2015-02-13 Thread Jan Holesovsky
 solenv/bin/native-code.py |   22 +-
 1 file changed, 21 insertions(+), 1 deletion(-)

New commits:
commit e24ca726875a4533352d3bf06bae3d9c07e79a8d
Author: Jan Holesovsky ke...@collabora.com
Date:   Fri Feb 13 11:37:48 2015 +0100

native-code.py: Don't add the entire libchartcorelo.a.

Instead, just add the constructors of the needed services.  Tested with
various-charts.ods from tdf#89364.

Change-Id: I98df03bfc19aeacaa92e4693e7934c8503f183e1

diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py
index 62a668e..653a524 100755
--- a/solenv/bin/native-code.py
+++ b/solenv/bin/native-code.py
@@ -24,7 +24,6 @@ core_factory_list = [
 (libembobj.a, embobj_component_getFactory),
 (libreflectionlo.a, reflection_component_getFactory),
 (libstocserviceslo.a, stocservices_component_getFactory),
-(libchartcorelo.a, chartcore_component_getFactory),
 (libcomphelper.a, comphelp_component_getFactory),
 (libconfigmgrlo.a, configmgr_component_getFactory),
 (libdrawinglayerlo.a, drawinglayer_component_getFactory),
@@ -62,6 +61,27 @@ core_factory_list = [
 ]
 
 core_constructor_list = [
+# chart2/source/chartcore.component
+com_sun_star_comp_chart_AreaChartType_get_implementation,
+com_sun_star_comp_chart_BarChartType_get_implementation,
+com_sun_star_comp_chart_BubbleChartType_get_implementation,
+com_sun_star_comp_chart_CandleStickChartType_get_implementation,
+com_sun_star_comp_chart_ChartTypeManager_get_implementation,
+com_sun_star_comp_chart_ColumnChartType_get_implementation,
+com_sun_star_comp_chart_DataSeries_get_implementation,
+com_sun_star_comp_chart_FilledNetChartType_get_implementation,
+com_sun_star_comp_chart_GL3DBarChartType_get_implementation,
+com_sun_star_comp_chart_FormattedString_get_implementation,
+com_sun_star_comp_chart_LineChartType_get_implementation,
+com_sun_star_comp_chart_NetChartType_get_implementation,
+com_sun_star_comp_chart_PieChartType_get_implementation,
+com_sun_star_comp_chart_ScatterChartType_get_implementation,
+com_sun_star_comp_chart2_Axis_get_implementation,
+com_sun_star_comp_chart2_ChartModel_get_implementation,
+com_sun_star_comp_chart2_Diagram_get_implementation,
+com_sun_star_comp_chart2_LabeledDataSequence_get_implementation,
+com_sun_star_comp_chart2_Legend_get_implementation,
+com_sun_star_comp_chart2_XMLFilter_get_implementation,
 # chart2/source/controller/chartcontroller.component
 com_sun_star_comp_chart2_ChartDocumentWrapper_get_implementation,
 # framework/util/fwk.component
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-02-13 Thread Yousuf Philips
 sw/uiconfig/swriter/toolbar/changes.xml |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 3743302fa26b0b3890b7113c30ec94755868a2f7
Author: Yousuf Philips philip...@hotmail.com
Date:   Fri Feb 13 00:08:35 2015 +0400

tdf#83955 enable insert comment and rearrange buttons

Change-Id: I57da2e38a555c75f674885d736a82adbc8f81224
Reviewed-on: https://gerrit.libreoffice.org/14450
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/sw/uiconfig/swriter/toolbar/changes.xml 
b/sw/uiconfig/swriter/toolbar/changes.xml
index 47bad1f..3ba4ad5 100644
--- a/sw/uiconfig/swriter/toolbar/changes.xml
+++ b/sw/uiconfig/swriter/toolbar/changes.xml
@@ -27,10 +27,10 @@
  toolbar:toolbaritem xlink:href=.uno:RejectTrackedChange 
toolbar:text=Reject toolbar:helpid=10626/
  toolbar:toolbaritem xlink:href=.uno:AcceptTrackedChanges 
toolbar:text=List toolbar:helpid=10622/
  toolbar:toolbarseparator/
- toolbar:toolbaritem xlink:href=.uno:CommentChangeTracking 
toolbar:text=Comment toolbar:helpid=10625/
- toolbar:toolbaritem xlink:href=.uno:ProtectTraceChangeMode 
toolbar:text=Protect toolbar:helpid=10625/
+ toolbar:toolbaritem xlink:href=.uno:InsertAnnotation toolbar:text=Regular 
Comment toolbar:helpid=10625/
+ toolbar:toolbaritem xlink:href=.uno:CommentChangeTracking 
toolbar:text=Change Comment toolbar:helpid=10625/
  toolbar:toolbarseparator/
+ toolbar:toolbaritem xlink:href=.uno:ProtectTraceChangeMode 
toolbar:text=Protect toolbar:helpid=10625/
  toolbar:toolbaritem xlink:href=.uno:CompareDocuments 
toolbar:text=Compare/
  toolbar:toolbaritem xlink:href=.uno:MergeDocuments toolbar:text=Merge 
toolbar:visible=false/
- toolbar:toolbaritem xlink:href=.uno:InsertAnnotation 
toolbar:visible=false toolbar:helpid=10625/
 /toolbar:toolbar
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-3' - svx/source

2015-02-13 Thread Eike Rathke
 svx/source/dialog/langbox.cxx |   24 
 1 file changed, 16 insertions(+), 8 deletions(-)

New commits:
commit dd8a5ecbc0afd7646583fa56b8e6efc3f040012c
Author: Eike Rathke er...@redhat.com
Date:   Thu Feb 12 23:47:21 2015 +0100

Resolves: tdf#81429 select corresponding listbox entry if not current

Change-Id: Ib475a43601ee22d33677ac45cd6ef9dba7e7c431
(cherry picked from commit a448f1bb9221f30f73574c580b506e00bf2ae61a)
Reviewed-on: https://gerrit.libreoffice.org/14458
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/svx/source/dialog/langbox.cxx b/svx/source/dialog/langbox.cxx
index 533ae4e..312fe6e 100644
--- a/svx/source/dialog/langbox.cxx
+++ b/svx/source/dialog/langbox.cxx
@@ -713,21 +713,29 @@ IMPL_LINK( SvxLanguageComboBox, EditModifyHdl, 
SvxLanguageComboBox*, /*pEd*/ )
 const sal_Int32 nPos = GetEntryPos( aStr);
 if (nPos != COMBOBOX_ENTRY_NOTFOUND)
 {
-// Advance start of full selection by one so the next character
-// will already continue the string instead of having to type the
-// same character again to start a new string. The selection
-// includes formatting characters and is reverse when obtained from
-// the Edit control.
 Selection aSel( GetSelection());
+
+// Select the corresponding listbox entry if not current. This
+// invalidates the Edit Selection thus has to happen between
+// obtaining the Selection and setting the new Selection.
+sal_Int32 nSelPos = ImplGetSelectEntryPos();
+if (nSelPos != nPos)
+ImplSelectEntryPos( nPos, true);
+
+// If typing into the Edit control led us here, advance start of a
+// full selection by one so the next character will already
+// continue the string instead of having to type the same character
+// again to start a new string. The selection includes formatting
+// characters and is reverse when obtained from the Edit control.
 if (aSel.Max() == 1)
 {
 OUString aText( GetText());
 if (aSel.Min() == aText.getLength())
-{
 ++aSel.Max();
-SetSelection( aSel);
-}
 }
+
+SetSelection( aSel);
+
 meEditedAndValid = EDITED_NO;
 }
 else
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89362] New: Chnage direction at middle of context (RTL)

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89362

Bug ID: 89362
   Summary: Chnage direction at middle of context (RTL)
   Product: LibreOffice
   Version: 4.4.1.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mohammad.etemad...@gmail.com

There are many situations in RTL language where we want to change direction of
a text at middle of context.
for examp

-- 
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 66540] LibreOffice slows Outlook and vice versa

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66540

--- Comment #20 from Michael Meeks michael.me...@collabora.com ---
Phew ! thanks for the update, I've been idly fretting about this bug =) Good to
know it's not our fault !

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


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

2015-02-13 Thread Caolán McNamara
 sw/source/core/undo/untbl.cxx |   25 +
 1 file changed, 13 insertions(+), 12 deletions(-)

New commits:
commit 21796a5fb92fd9773017b782a654a8b5a190cc66
Author: Caolán McNamara caol...@redhat.com
Date:   Fri Feb 13 10:33:37 2015 +

Resolves: tdf#79569 crash undoing tricky cell merge

Change-Id: I68d774d0d3758cdb67864d7939a7e1167dd9a7df

diff --git a/sw/source/core/undo/untbl.cxx b/sw/source/core/undo/untbl.cxx
index 9f1e754..9778de2 100644
--- a/sw/source/core/undo/untbl.cxx
+++ b/sw/source/core/undo/untbl.cxx
@@ -1351,21 +1351,22 @@ void _SaveBox::CreateNew( SwTable rTbl, SwTableLine 
rParent, _SaveTable rSTbl
 {
 // search box for StartNode in old table
 SwTableBox* pBox = rTbl.GetTblBox( nSttNode );
-OSL_ENSURE( pBox, Where is my TableBox? );
-
-SwFrmFmt* pOld = pBox-GetFrmFmt();
-pBox-RegisterToFormat( *pFmt );
-if( !pOld-GetDepends() )
-delete pOld;
+if (pBox)
+{
+SwFrmFmt* pOld = pBox-GetFrmFmt();
+pBox-RegisterToFormat( *pFmt );
+if( !pOld-GetDepends() )
+delete pOld;
 
-pBox-setRowSpan( nRowSpan );
+pBox-setRowSpan( nRowSpan );
 
-SwTableBoxes* pTBoxes = pBox-GetUpper()-GetTabBoxes();
-pTBoxes-erase( std::find( pTBoxes-begin(), pTBoxes-end(), pBox ) );
+SwTableBoxes* pTBoxes = pBox-GetUpper()-GetTabBoxes();
+pTBoxes-erase( std::find( pTBoxes-begin(), pTBoxes-end(), pBox 
) );
 
-pBox-SetUpper( rParent );
-pTBoxes = rParent.GetTabBoxes();
-pTBoxes-push_back( pBox );
+pBox-SetUpper( rParent );
+pTBoxes = rParent.GetTabBoxes();
+pTBoxes-push_back( pBox );
+}
 }
 
 if( pNext )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 79569] CRASH after undoing multi-line cell merge

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79569

--- Comment #9 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Caolán McNamara committed a patch related to this issue.
It has been pushed to master:

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

Resolves: tdf#79569 crash undoing tricky cell merge

It will be available in 4.5.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-bugs] [Bug 79569] CRASH after undoing multi-line cell merge

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79569

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard|| target:4.5.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 83306] FILEOPEN: Regression importing .docx files with Autoshape images

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83306

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

 CC||fdb...@neosheffield.co.uk
 Whiteboard|filter:docx |filter:docx notBibisectable

-- 
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 89363] Chnage direction at middle of context (RTL)

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89363

Mohammad Etemaddar mohammad.etemad...@gmail.com changed:

   What|Removed |Added

 CC||mohammad.etemad...@gmail.co
   ||m

--- Comment #2 from Mohammad Etemaddar mohammad.etemad...@gmail.com ---
Created attachment 113362
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113362action=edit
Needed change direction at middle of context

This is a test case.

-- 
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 89364] New: android: Charts do not render

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89364

Bug ID: 89364
   Summary: android: Charts do not render
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Android Viewer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ke...@collabora.com

Created attachment 113363
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113363action=edit
Document showing various types of charts.

There are 2 problems with the charts:

* They are not counted into the document size (ie. when you have data only in
A1:D5, but chart somewhere further in the doc, it will be cut off

* They do not render even if the doc has dimensions that allows showing them.

It is not down to missing services; the tiled rendering of the chart themselves
seems to be misssing.

-- 
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 69293] Error taking Cube Root of Negative Number

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=69293

--- Comment #2 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Supreme Aryal committed a patch related to this issue.
It has been pushed to master:

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

Compute n-th root of negative numbers where n is odd. (tdf#69293)

It will be available in 4.5.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: sc/source

2015-02-13 Thread Supreme Aryal
 sc/source/core/tool/interpr5.cxx |   15 ++-
 1 file changed, 14 insertions(+), 1 deletion(-)

New commits:
commit b0fdf6cf11ee46d46925e9cd9fa2768a1b49bb64
Author: Supreme Aryal supremear...@gmail.com
Date:   Tue Dec 9 00:09:39 2014 -0500

Compute n-th root of negative numbers where n is odd. (tdf#69293)

Compute expressions like (-8)^(1/3) correctly. This makes
calculations compatible with Excel. Exponents must reduce
to the form 1/n.

Change-Id: I007c818f584323f80f2f6b1000d931f19a4590ad

diff --git a/sc/source/core/tool/interpr5.cxx b/sc/source/core/tool/interpr5.cxx
index b6d616e..e6ca138 100644
--- a/sc/source/core/tool/interpr5.cxx
+++ b/sc/source/core/tool/interpr5.cxx
@@ -1654,7 +1654,20 @@ void ScInterpreter::ScPow()
 PushIllegalArgument();
 }
 else
-PushDouble(pow(fVal1,fVal2));
+{
+if (fVal1  0  fVal2 != 0.0)
+{
+int i = (int) (1 / fVal2 + ((fVal2  0) ? -0.5 : 0.5));
+if (rtl::math::approxEqual(1 / ((double) i), fVal2)  i % 2 != 0)
+PushDouble(-pow(-fVal1, fVal2));
+else
+PushDouble(pow(fVal1, fVal2));
+}
+else
+{
+PushDouble(pow(fVal1,fVal2));
+}
+}
 }
 
 namespace {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 69293] Error taking Cube Root of Negative Number

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=69293

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard|| target:4.5.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 69293] Error taking Cube Root of Negative Number

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=69293

Eike Rathke er...@redhat.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |supremear...@gmail.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 83373] UI: LibreOffice dialogs become too wide when long path+name is pasted in field 'File name' to open the file

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83373

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

   Keywords||bisected
 CC||fdb...@neosheffield.co.uk
 Whiteboard||bibisected

--- Comment #12 from Matthew Francis fdb...@neosheffield.co.uk ---
For reference it looks like it was this UI conversion that changed the
behaviour

commit f90eb33a268bdcd1c52aea5670a58267b0907096
Author: Szymon Kłos eszka...@gmail.com
Date:   Sat Jun 28 16:10:39 2014 +0200

DLG_FPICKER_EXPLORERFILE conversion to .ui

Change-Id: I5d8f5d0182fb6af5111b60caa29912d313c2efa0

-- 
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 61305] improper display

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61305

--- Comment #2 from A (Andy) stgohi-lob...@yahoo.de ---
Partly reproducible wth LO 4.4.0.3, Win 8.1

Differences to Word:
The logo has no shade of grey and the header has no grey frame.

-- 
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 59669] Readme mentions false system requirements for Mac

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59669

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

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

-- 
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 53904] Readme file -- remove mention of LibreOffice 3.3 and review all platform requirements.

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53904

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 CC||stgohi-lob...@yahoo.de
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=59
   ||669

--- Comment #3 from A (Andy) stgohi-lob...@yahoo.de ---
I tried to test it with LO 4.4.0.3.  Where can I find the current Readme-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


Re: Crash test update

2015-02-13 Thread Stephan Bergmann

On 02/13/2015 10:26 AM, Caolán McNamara wrote:

The new ppt crashes and maybe some others are due to the new asserts in
sal strings, and are fixed by f78fa7e9c72ab1bd3e6a19d5234651f379c44a08

I'll leave it to sberg/mst as to if it is reasonable or not to expect
that the argument to O[U]String::match needs to be within the range of
the OUString


Note that 
http://cgit.freedesktop.org/libreoffice/core/commit/?id=f78fa7e9c72ab1bd3e6a19d5234651f379c44a08 
apparently calling match on a string with an index past the end is now 
fatal would have been a true fix even without 
http://cgit.freedesktop.org/libreoffice/core/commit/?id=b0ef5cf258f3a84054c052f0a09a208dbc17fdf3 
sal: add some argument checking assertions for strings and buffers. 
The code called rtl_ustr_shortenedCompare_WithLength() with pStr1 
pointing into memory past aDocBase and with negative nStr1Len, so in the 
MSVC sizeof(IMPL_RTL_STRCODE)==sizeof(wchar_t) case called wcsncmp() 
with an invalid first pointer and a huge (size_t) size.


As to whether the preconditions of the various OUString functions are 
reasonable, that's for sure debatable (and has been debated in the past, 
if I remember correctly).  The one advantage I see of having strict 
preconditions for all the functions is that it keeps things uniform and 
evades API design decisions of how to behave for odd arguments (is the 
fromIndex argument to match() implicitly increased to zero if negative? 
is copy() returning a reversed result if its count argument is negative?).

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


[Libreoffice-bugs] [Bug 54959] EDITING: Alt-Cursour-left/right/up/Down commands apply to frame instead to drawing objects inside a frame

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=54959

--- Comment #3 from A (Andy) stgohi-lob...@yahoo.de ---
Reproducible with LO 4.4.0.3, Win 8.1

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


[Libreoffice-bugs] [Bug 68577] LO crash when opening PDF via Samba

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68577

Petr Ledvina petr.ledv...@centrum.cz changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|INVALID |---
 Ever confirmed|1   |0

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


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

2015-02-13 Thread Jan Holesovsky
 chart2/source/chartcore.component|2 +-
 chart2/source/model/filter/XMLFilter.cxx |7 +++
 2 files changed, 8 insertions(+), 1 deletion(-)

New commits:
commit 146461ea6ee7836835416b3fbd023079d9db69e4
Author: Jan Holesovsky ke...@collabora.com
Date:   Fri Feb 13 09:14:18 2015 +0100

Add an overlooked constructor to chartcore.component.

com.sun.star.comp.chart2.report.XMLFilter was pointing to
com.sun.star.comp.chart2.XMLFilter by mistake.

Change-Id: Ia3c96cc98a4f81f2bb918200dc39eae1dbafdb58

diff --git a/chart2/source/chartcore.component 
b/chart2/source/chartcore.component
index 726274a..5928fb1 100644
--- a/chart2/source/chartcore.component
+++ b/chart2/source/chartcore.component
@@ -252,7 +252,7 @@
 service name=com.sun.star.document.ImportFilter/
   /implementation
   implementation name=com.sun.star.comp.chart2.report.XMLFilter
-constructor=com_sun_star_comp_chart2_XMLFilter_get_implementation
+constructor=com_sun_star_comp_chart2_report_XMLFilter_get_implementation
 service name=com.sun.star.document.ExportFilter/
 service name=com.sun.star.document.ImportFilter/
   /implementation
diff --git a/chart2/source/model/filter/XMLFilter.cxx 
b/chart2/source/model/filter/XMLFilter.cxx
index cbce9a3..3e18fb4 100644
--- a/chart2/source/model/filter/XMLFilter.cxx
+++ b/chart2/source/model/filter/XMLFilter.cxx
@@ -821,4 +821,11 @@ 
com_sun_star_comp_chart2_XMLFilter_get_implementation(css::uno::XComponentContex
 return cppu::acquire(new ::chart::XMLFilter(context));
 }
 
+extern C SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL
+com_sun_star_comp_chart2_report_XMLFilter_get_implementation(css::uno::XComponentContext
 *context,
+css::uno::Sequencecss::uno::Any const )
+{
+return cppu::acquire(new ::chart::XMLReportFilterHelper(context));
+}
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88427] PDF signatures - RFC3161 timestamps - Add configuration option for TSA URLs

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88427

--- Comment #3 from Markus Wernig pub...@wernig.net ---
The way other programs do it is to let the user choose between the stored TSAs
and the option Time from local computer (which is the default behaviour if
none is set).

So the idea of having the user enter the TSA URL and automatically saving it is
a very good one.

In the long run, we will need to be able to manage multiple TSA URLs. But for
now, I believe that the solution proposed by you will be just fine.

-- 
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: chart2/source

2015-02-13 Thread Stephan Bergmann
 chart2/source/controller/dialogs/tp_SeriesToAxis.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1e970284c069721dfa968bd262df4bcc516bc47f
Author: Stephan Bergmann sberg...@redhat.com
Date:   Fri Feb 13 09:05:49 2015 +0100

loplugin:literaltoboolconversion

Change-Id: I077c8cf0a7f04d5eb926ec55136b25eb9db7a245

diff --git a/chart2/source/controller/dialogs/tp_SeriesToAxis.cxx 
b/chart2/source/controller/dialogs/tp_SeriesToAxis.cxx
index 68d1c78..826eec3 100644
--- a/chart2/source/controller/dialogs/tp_SeriesToAxis.cxx
+++ b/chart2/source/controller/dialogs/tp_SeriesToAxis.cxx
@@ -218,7 +218,7 @@ void SchOptionTabPage::Reset(const SfxItemSet* rInAttrs)
 // are visible. If they aren't, we can
 // as well hide the whole frame
 if(!m_pGridPlotOptions-IsVisible())
-m_pGrpPlotOptions-Show(sal_False);
+m_pGrpPlotOptions-Show(false);
 }
 
 AdaptControlPositionsAndVisibility();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89357] New: GALLERY: Clip-Art gallery can't be displayed

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89357

Bug ID: 89357
   Summary: GALLERY: Clip-Art gallery can't be displayed
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: juergen.maeh...@uni-ulm.de

Try to enable gallery: No gallery is opened (usually a band below menue band)
Effective both in writer and draw, other components not tested.

-- 
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 'distro/collabora/viewer' - 2 commits - chart2/Library_chartcore.mk chart2/source

2015-02-13 Thread Jan Holesovsky
 chart2/Library_chartcore.mk  |3 
 chart2/source/chartcore.component|  137 --
 chart2/source/model/filter/XMLFilter.cxx |   14 
 chart2/source/model/main/Axis.cxx|7 
 chart2/source/model/main/CartesianCoordinateSystem.cxx   |   14 
 chart2/source/model/main/ChartModel.cxx  |7 
 chart2/source/model/main/DataSeries.cxx  |7 
 chart2/source/model/main/Diagram.cxx |7 
 chart2/source/model/main/FormattedString.cxx |7 
 chart2/source/model/main/GridProperties.cxx  |7 
 chart2/source/model/main/Legend.cxx  |7 
 chart2/source/model/main/PageBackground.cxx  |7 
 chart2/source/model/main/PolarCoordinateSystem.cxx   |   14 
 chart2/source/model/main/Title.cxx   |7 
 chart2/source/model/main/_serviceregistration_model.cxx  |  198 
--
 chart2/source/model/template/AreaChartType.cxx   |7 
 chart2/source/model/template/BarChartType.cxx|7 
 chart2/source/model/template/BubbleChartType.cxx |7 
 chart2/source/model/template/CandleStickChartType.cxx|7 
 chart2/source/model/template/ChartTypeManager.cxx|7 
 chart2/source/model/template/ColumnChartType.cxx |7 
 chart2/source/model/template/FilledNetChartType.cxx  |7 
 chart2/source/model/template/GL3DBarChartType.cxx|7 
 chart2/source/model/template/LineChartType.cxx   |7 
 chart2/source/model/template/NetChartType.cxx|7 
 chart2/source/model/template/PieChartType.cxx|7 
 chart2/source/model/template/ScatterChartType.cxx|7 
 chart2/source/model/template/_serviceregistration_charttypes.cxx |  128 --
 chart2/source/tools/CachedDataSequence.cxx   |7 
 chart2/source/tools/ConfigColorScheme.cxx|7 
 chart2/source/tools/DataSource.cxx   |7 
 chart2/source/tools/ErrorBar.cxx |7 
 chart2/source/tools/InternalDataProvider.cxx |7 
 chart2/source/tools/LabeledDataSequence.cxx  |7 
 chart2/source/tools/RegressionCurveModel.cxx |   50 ++
 chart2/source/tools/RegressionEquation.cxx   |7 
 chart2/source/tools/Scaling.cxx  |   28 +
 chart2/source/tools/_serviceregistration_tools.cxx   |  193 
-
 38 files changed, 407 insertions(+), 568 deletions(-)

New commits:
commit 4b900d98ac967a3a19d2025deffce45679f7ee5f
Author: Jan Holesovsky ke...@collabora.com
Date:   Fri Feb 13 09:14:18 2015 +0100

Add an overlooked constructor to chartcore.component.

com.sun.star.comp.chart2.report.XMLFilter was pointing to
com.sun.star.comp.chart2.XMLFilter by mistake.

Change-Id: Ia3c96cc98a4f81f2bb918200dc39eae1dbafdb58

diff --git a/chart2/source/chartcore.component 
b/chart2/source/chartcore.component
index 726274a..5928fb1 100644
--- a/chart2/source/chartcore.component
+++ b/chart2/source/chartcore.component
@@ -252,7 +252,7 @@
 service name=com.sun.star.document.ImportFilter/
   /implementation
   implementation name=com.sun.star.comp.chart2.report.XMLFilter
-constructor=com_sun_star_comp_chart2_XMLFilter_get_implementation
+constructor=com_sun_star_comp_chart2_report_XMLFilter_get_implementation
 service name=com.sun.star.document.ExportFilter/
 service name=com.sun.star.document.ImportFilter/
   /implementation
diff --git a/chart2/source/model/filter/XMLFilter.cxx 
b/chart2/source/model/filter/XMLFilter.cxx
index cbce9a3..3e18fb4 100644
--- a/chart2/source/model/filter/XMLFilter.cxx
+++ b/chart2/source/model/filter/XMLFilter.cxx
@@ -821,4 +821,11 @@ 
com_sun_star_comp_chart2_XMLFilter_get_implementation(css::uno::XComponentContex
 return cppu::acquire(new ::chart::XMLFilter(context));
 }
 
+extern C SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL
+com_sun_star_comp_chart2_report_XMLFilter_get_implementation(css::uno::XComponentContext
 *context,
+css::uno::Sequencecss::uno::Any const )
+{
+return cppu::acquire(new ::chart::XMLReportFilterHelper(context));
+}
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
commit 18b4281251f23f960a2d928d3e31b779de0466f7
Author: Ursache Vladimir ursa...@collabora.co.uk
Date:   Thu Feb 12 03:47:36 2015 +0200

Use constructors for services from chartcore.component.

Change-Id: I72227b45f305734060a669275044f6f9c8859bc5

diff --git a/chart2/Library_chartcore.mk b/chart2/Library_chartcore.mk
index 

[Libreoffice-bugs] [Bug 88427] PDF signatures - RFC3161 timestamps - Add configuration option for TSA URLs

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88427

--- Comment #4 from Tor Lillqvist t...@iki.fi ---
OK. Well, I already started working on being able to enter multiple TSA URLs
into LO (and have them persisted in the user configuration), so unless that
turns out to be horribly complicated, I'll continue on that. Then when doing
the PDF export, there will be the possibility to choose one of them, or none (=
local computer).

-- 
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 89358] New: array references for a text argument in functions are read in a non-intuitive way

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89358

Bug ID: 89358
   Summary: array references for a text argument in functions are
read in a non-intuitive way
   Product: LibreOffice
   Version: 4.1.6.2 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Spreadsheet
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: winfrieddonk...@libreoffice.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 89335] Internet Explorer receiving incorrectly mime content typed oxt and template downloads as ZIP from LO Extensions web server

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89335

--- Comment #4 from Florian Effenberger flo...@documentfoundation.org ---
I'll forward this to our extension site maintainer, Andreas Mantke (he doesn't
seem to have a BZ account).

-- 
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 68577] LO crash when opening PDF via Samba

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68577

Petr Ledvina petr.ledv...@centrum.cz changed:

   What|Removed |Added

Version|4.0.2.2 release |4.3.2.2 release

--- Comment #16 from Petr Ledvina petr.ledv...@centrum.cz ---
Still crashed, the same situation. I have Ubuntu 14.04 and LibreOffice 4.3.2.2 
ID: 430m0(Build:2)   /last version from repositary/ and the problem is the
same.
I try open any PDF file from SAMBA and LO has crashed. When I try opened PDF
from local adress, e.g. /home/user1/example.pdf, the document is correct open
in LibreOffice Draw.

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


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

2015-02-13 Thread David Tardon
 sw/qa/core/macros-test.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9d9e4b9f7de815984ca67e58bb8cea745c0b4568
Author: David Tardon dtar...@redhat.com
Date:   Fri Feb 13 12:22:17 2015 +0100

disable control shape grouping test for now

Change-Id: I29ca828a2049a72e2238986892c172e7c135b44b

diff --git a/sw/qa/core/macros-test.cxx b/sw/qa/core/macros-test.cxx
index a625dd0..800248b 100644
--- a/sw/qa/core/macros-test.cxx
+++ b/sw/qa/core/macros-test.cxx
@@ -86,7 +86,7 @@ public:
 CPPUNIT_TEST(testVba);
 #endif
 CPPUNIT_TEST(testBookmarkDeleteAndJoin);
-CPPUNIT_TEST(testControlShapeGrouping);
+// CPPUNIT_TEST(testControlShapeGrouping);
 CPPUNIT_TEST(testFdo55289);
 CPPUNIT_TEST(testFdo68983);
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89294] Scanner control/access: help needs to be updated to the new menu

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89294

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

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

--- Comment #2 from Adolfo Jayme f...@libreoffice.org ---
https://gerrit.libreoffice.org/gitweb?p=help.git;a=commitdiff;h=377e8876396a87ae09b82ce17b67d8bef5b26abe

-- 
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 57585] [EDITING FEATURE-REQUEST] Don't show the bullet of empty lines in Impress

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57585

--- Comment #2 from A (Andy) stgohi-lob...@yahoo.de ---
Reproducible with LO 4.4.0.3, Win 8.1

There should be only a bullet in the next line if I enter a text and not if I
want only to insert an empty line.

-- 
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 89294] Scanner control/access: help needs to be updated to the new menu

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89294

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |stanislav.hora...@gmail.com
   |desktop.org |
 Whiteboard||target:4.5.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-commits] core.git: Branch 'libreoffice-4-4' - sw/source

2015-02-13 Thread Caolán McNamara
 sw/source/core/undo/untbl.cxx |   25 +
 1 file changed, 13 insertions(+), 12 deletions(-)

New commits:
commit f8d3cec9a99edd29d8780f3bc5f0cc9764e9c8e5
Author: Caolán McNamara caol...@redhat.com
Date:   Fri Feb 13 10:33:37 2015 +

Resolves: tdf#79569 crash undoing tricky cell merge

Change-Id: I68d774d0d3758cdb67864d7939a7e1167dd9a7df
(cherry picked from commit 21796a5fb92fd9773017b782a654a8b5a190cc66)
Reviewed-on: https://gerrit.libreoffice.org/14467
Reviewed-by: Eike Rathke er...@redhat.com
Tested-by: Eike Rathke er...@redhat.com

diff --git a/sw/source/core/undo/untbl.cxx b/sw/source/core/undo/untbl.cxx
index aafa683..178cd03 100644
--- a/sw/source/core/undo/untbl.cxx
+++ b/sw/source/core/undo/untbl.cxx
@@ -1350,21 +1350,22 @@ void _SaveBox::CreateNew( SwTable rTbl, SwTableLine 
rParent, _SaveTable rSTbl
 {
 // search box for StartNode in old table
 SwTableBox* pBox = rTbl.GetTblBox( nSttNode );
-OSL_ENSURE( pBox, Where is my TableBox? );
-
-SwFrmFmt* pOld = pBox-GetFrmFmt();
-pBox-RegisterToFormat( *pFmt );
-if( !pOld-GetDepends() )
-delete pOld;
+if (pBox)
+{
+SwFrmFmt* pOld = pBox-GetFrmFmt();
+pBox-RegisterToFormat( *pFmt );
+if( !pOld-GetDepends() )
+delete pOld;
 
-pBox-setRowSpan( nRowSpan );
+pBox-setRowSpan( nRowSpan );
 
-SwTableBoxes* pTBoxes = pBox-GetUpper()-GetTabBoxes();
-pTBoxes-erase( std::find( pTBoxes-begin(), pTBoxes-end(), pBox ) );
+SwTableBoxes* pTBoxes = pBox-GetUpper()-GetTabBoxes();
+pTBoxes-erase( std::find( pTBoxes-begin(), pTBoxes-end(), pBox 
) );
 
-pBox-SetUpper( rParent );
-pTBoxes = rParent.GetTabBoxes();
-pTBoxes-push_back( pBox );
+pBox-SetUpper( rParent );
+pTBoxes = rParent.GetTabBoxes();
+pTBoxes-push_back( pBox );
+}
 }
 
 if( pNext )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-02-13 Thread Caolán McNamara
 sw/source/core/layout/tabfrm.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a4c3a56d886574a0af14806a3a3f7683873136dd
Author: Caolán McNamara caol...@redhat.com
Date:   Fri Feb 13 09:50:15 2015 +

Resolves: tdf#76636 crash on merging certain cells imported from a .doc

Change-Id: I61d5088a6f2e0b444b2943a2f9ce9feeb2e09c11
(cherry picked from commit e1f4022b9ea7ae99a31773c445d8229ba3bdea93)
Reviewed-on: https://gerrit.libreoffice.org/14463
Reviewed-by: Eike Rathke er...@redhat.com
Tested-by: Eike Rathke er...@redhat.com

diff --git a/sw/source/core/layout/tabfrm.cxx b/sw/source/core/layout/tabfrm.cxx
index 76b6be8..ad4f02e 100644
--- a/sw/source/core/layout/tabfrm.cxx
+++ b/sw/source/core/layout/tabfrm.cxx
@@ -4964,7 +4964,7 @@ long SwCellFrm::GetLayoutRowSpan() const
 if ( nRet  1 )
 {
 const SwFrm* pRow = GetUpper();
-const SwTabFrm* pTab = static_castconst SwTabFrm*(pRow-GetUpper());
+const SwTabFrm* pTab = pRow ? static_castconst 
SwTabFrm*(pRow-GetUpper()) : NULL;
 
 if ( pTab  pTab-IsFollow()  pRow == 
pTab-GetFirstNonHeadlineRow() )
 nRet = -nRet;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 71884] Error starting 4.2RC1 (32-bit) LibreOffice on OS X

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71884

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

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

--- Comment #28 from Michael Stahl mst...@redhat.com ---
apologies for any excessive grumpiness in my previous comment - it was caused
by looking at bugzilla before breakfast, which is clearly something i should
not be doing.

(if you re-open a 4.2 most-annoying bug like this one then a mail is sent to
the developer mailing list)

probably the 4.4 issue is about the known digital signature problem that came
up not via any change in LO but by OS X 10.9.5 suddenly changing the rules;
that should be fixed for 4.4.1.2, see bug 84352.

-- 
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] dev-tools.git: scripts/esc-bug-stats.pl

2015-02-13 Thread Michael Meeks
 scripts/esc-bug-stats.pl |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4413382a2b4a3d676d689a5be59f45fdadf65cf9
Author: Michael Meeks michael.me...@collabora.com
Date:   Fri Feb 13 11:21:41 2015 +

Rename 'LibreOffice' component.

diff --git a/scripts/esc-bug-stats.pl b/scripts/esc-bug-stats.pl
index f1a502b..bf96935 100755
--- a/scripts/esc-bug-stats.pl
+++ b/scripts/esc-bug-stats.pl
@@ -89,7 +89,7 @@ $component_count{'Migration'} = 0; # 
aBugzilla::get_deps(https://$Bugzilla::bug
 $component_count{'Crashes'} = 
Bugzilla::get_query(https://$Bugzilla::bugserver/buglist.cgi?keywords=regressionkeywords_type=allwordslist_id=296015short_desc=crashquery_based_on=CrashRegressionsquery_format=advancedbug_status=UNCONFIRMEDbug_status=NEWbug_status=ASSIGNEDbug_status=REOPENEDbug_status=NEEDINFOshort_desc_type=allwordssubstrproduct=LibreOfficeknown_name=CrashRegressions;);
 $component_count{'Borders'} = 
Bugzilla::get_query(https://$Bugzilla::bugserver/buglist.cgi?keywords=regressionkeywords_type=allwordslist_id=296016short_desc=borderquery_based_on=BorderRegressionsquery_format=advancedbug_status=UNCONFIRMEDbug_status=NEWbug_status=ASSIGNEDbug_status=REOPENEDbug_status=NEEDINFOshort_desc_type=allwordssubstrproduct=LibreOfficeknown_name=BorderRegressions;);
 
-my @reg_toquery = ( 'Spreadsheet', 'Presentation', 'Database', 'Drawing', 
'Libreoffice', 'Writer', 'BASIC', 'Chart', 'Extensions', 'Formula Editor', 
'Impress Remote', 'Installation', 'Linguistic', 'Printing and PDF export', 
'UI', 'filters and storage', 'framework', 'graphics stack', 'sdk' );
+my @reg_toquery = ( 'Spreadsheet', 'Presentation', 'Database', 'Drawing', 
'LibreOffice', 'Writer', 'BASIC', 'Chart', 'Extensions', 'Formula Editor', 
'Impress Remote', 'Installation', 'Linguistic', 'Printing and PDF export', 
'UI', 'filters and storage', 'framework', 'graphics stack', 'sdk' );
 for my $component (@reg_toquery) {
 my $component_uri = Bugzilla::uri_escape($component);
 $component_count{$component} = 
Bugzilla::get_query(https://$Bugzilla::bugserver/buglist.cgi?keywords=regressionkeywords_type=allwordslist_id=296025query_format=advancedbug_status=NEWbug_status=ASSIGNEDbug_status=REOPENEDbug_status=PLEASETESTcomponent=$component_uriproduct=LibreOffice;);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89365] New: Change from Numbering to Bullets does not work properly

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89365

Bug ID: 89365
   Summary: Change from Numbering to Bullets does not work
properly
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Presentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: stgohi-lob...@yahoo.de

If you want to change from Numbering to Bullets in IMPRESS it does not work
properly.

Steps to Reproduce:
1. Open IMPRESS
2. Write any text into the main text area
3. Click the Bullets On/Off button in the toolbar at the top

Interim Result: The entered line gets a bullet.

4. Click the Numbering On/Off button in the toolbar at the top

Interim Result: The line changes to a numbering.

5. Click the Bullets On/Off button in the toolbar at the top

Result: The line does not change to a bullet as expected, but has now no
bullet.  It should change to a bullet and in addition it is also not consistent
because it works the other direction properly.


Reproducible with LO 4.4.0.3, Win 8.1.

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


[Libreoffice-commits] core.git: Branch 'libreoffice-4-3' - 2 commits - sw/source

2015-02-13 Thread Caolán McNamara
 sw/source/core/layout/tabfrm.cxx |2 +-
 sw/source/core/undo/untbl.cxx|   25 +
 2 files changed, 14 insertions(+), 13 deletions(-)

New commits:
commit b273a7b723d95f5feabf79b6e8a83beead1ce1bf
Author: Caolán McNamara caol...@redhat.com
Date:   Fri Feb 13 10:33:37 2015 +

Resolves: tdf#79569 crash undoing tricky cell merge

Change-Id: I68d774d0d3758cdb67864d7939a7e1167dd9a7df
(cherry picked from commit 21796a5fb92fd9773017b782a654a8b5a190cc66)
Reviewed-on: https://gerrit.libreoffice.org/14468
Reviewed-by: Eike Rathke er...@redhat.com
Tested-by: Eike Rathke er...@redhat.com

diff --git a/sw/source/core/undo/untbl.cxx b/sw/source/core/undo/untbl.cxx
index e1d4833..7652462 100644
--- a/sw/source/core/undo/untbl.cxx
+++ b/sw/source/core/undo/untbl.cxx
@@ -1344,21 +1344,22 @@ void _SaveBox::CreateNew( SwTable rTbl, SwTableLine 
rParent, _SaveTable rSTbl
 {
 // search box for StartNode in old table
 SwTableBox* pBox = rTbl.GetTblBox( nSttNode );
-OSL_ENSURE( pBox, Where is my TableBox? );
-
-SwFrmFmt* pOld = pBox-GetFrmFmt();
-pBox-RegisterToFormat( *pFmt );
-if( !pOld-GetDepends() )
-delete pOld;
+if (pBox)
+{
+SwFrmFmt* pOld = pBox-GetFrmFmt();
+pBox-RegisterToFormat( *pFmt );
+if( !pOld-GetDepends() )
+delete pOld;
 
-pBox-setRowSpan( nRowSpan );
+pBox-setRowSpan( nRowSpan );
 
-SwTableBoxes* pTBoxes = pBox-GetUpper()-GetTabBoxes();
-pTBoxes-erase( std::find( pTBoxes-begin(), pTBoxes-end(), pBox ) );
+SwTableBoxes* pTBoxes = pBox-GetUpper()-GetTabBoxes();
+pTBoxes-erase( std::find( pTBoxes-begin(), pTBoxes-end(), pBox 
) );
 
-pBox-SetUpper( rParent );
-pTBoxes = rParent.GetTabBoxes();
-pTBoxes-push_back( pBox );
+pBox-SetUpper( rParent );
+pTBoxes = rParent.GetTabBoxes();
+pTBoxes-push_back( pBox );
+}
 }
 
 if( pNext )
commit a3c8e7deea306ba3efb513c8fa7311a995f7fc73
Author: Caolán McNamara caol...@redhat.com
Date:   Fri Feb 13 09:50:15 2015 +

Resolves: tdf#76636 crash on merging certain cells imported from a .doc

Change-Id: I61d5088a6f2e0b444b2943a2f9ce9feeb2e09c11
(cherry picked from commit e1f4022b9ea7ae99a31773c445d8229ba3bdea93)
Reviewed-on: https://gerrit.libreoffice.org/14464
Reviewed-by: Eike Rathke er...@redhat.com
Tested-by: Eike Rathke er...@redhat.com

diff --git a/sw/source/core/layout/tabfrm.cxx b/sw/source/core/layout/tabfrm.cxx
index 110459d..556fe22 100644
--- a/sw/source/core/layout/tabfrm.cxx
+++ b/sw/source/core/layout/tabfrm.cxx
@@ -4965,7 +4965,7 @@ long SwCellFrm::GetLayoutRowSpan() const
 if ( nRet  1 )
 {
 const SwFrm* pRow = GetUpper();
-const SwTabFrm* pTab = static_castconst SwTabFrm*(pRow-GetUpper());
+const SwTabFrm* pTab = pRow ? static_castconst 
SwTabFrm*(pRow-GetUpper()) : NULL;
 
 if ( pTab  pTab-IsFollow()  pRow == 
pTab-GetFirstNonHeadlineRow() )
 nRet = -nRet;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 42261] display of selected cells incorrect after inserting row/column above/left of selection

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42261

--- Comment #7 from A (Andy) stgohi-lob...@yahoo.de ---
Reproducible with LO 4.4.0.3, Win 8.1

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


[Libreoffice-commits] core.git: Branch 'feature/tiled-editing' - 6 commits - android/Bootstrap android/experimental desktop/source

2015-02-13 Thread Tomaž Vajngerl
 android/Bootstrap/src/org/libreoffice/kit/Document.java
   |   18 
 android/experimental/LOAndroid3/src/java/org/libreoffice/LOAbout.java  
   |   21 
 android/experimental/LOAndroid3/src/java/org/libreoffice/LOEvent.java  
   |   26 -
 android/experimental/LOAndroid3/src/java/org/libreoffice/LOEventFactory.java   
   |7 
 android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitThread.java  
   |   43 +
 
android/experimental/LOAndroid3/src/java/org/libreoffice/LibreOfficeMainActivity.java
 |7 
 android/experimental/LOAndroid3/src/java/org/libreoffice/TextCursorLayer.java  
   |1 
 android/experimental/LOAndroid3/src/java/org/libreoffice/TextCursorView.java   
   |4 
 
android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/ComposedTileLayer.java
 |7 
 
android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/GeckoLayerClient.java
  |   11 
 android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/SubTile.java
   |  236 +-
 desktop/source/lib/lokandroid.cxx  
   |7 
 12 files changed, 310 insertions(+), 78 deletions(-)

New commits:
commit fa72e738578a8fed3609dcc2c35730766325e6f5
Author: Tomaž Vajngerl tomaz.vajng...@collabora.co.uk
Date:   Fri Feb 13 20:35:40 2015 +0900

android: discard image buffer as soon as we upload to a texture

Before TileLayer (which SubTile was a subclass of) held the
image buffer for the whole life cycle of the tile, which wastes
memory in case of SubTile as the image doesn't change (or changes
only when invalidated) for the whole tile lifecycle. This change
changes the SubTile inheritance to a general Layer and adds modified
logic from SingleTileLayer and TileLayer. In addition it now
discards the buffer as soon as it has been uploaded to a texture
so that it doesn't takes up double the memory anymore.

Change-Id: Ia104687d2df529182af412102459952b53e87950

diff --git 
a/android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitThread.java 
b/android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitThread.java
index c28806c..44cb7e3 100644
--- a/android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitThread.java
+++ b/android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitThread.java
@@ -7,6 +7,7 @@ import android.util.Log;
 import android.view.KeyEvent;
 import android.view.MotionEvent;
 
+import org.mozilla.gecko.gfx.BufferedCairoImage;
 import org.mozilla.gecko.gfx.CairoImage;
 import org.mozilla.gecko.gfx.ComposedTileLayer;
 import org.mozilla.gecko.gfx.GeckoLayerClient;
@@ -38,7 +39,8 @@ public class LOKitThread extends Thread implements 
TileProvider.TileInvalidation
 CairoImage image = mTileProvider.createTile(tileId.x, tileId.y, 
tileId.size, tileId.zoom);
 if (image != null) {
 mLayerClient.beginDrawing();
-SubTile tile = new SubTile(image, tileId);
+SubTile tile = new SubTile(tileId);
+tile.setImage(image);
 composedTileLayer.addTile(tile);
 mLayerClient.endDrawing();
 mLayerClient.forceRender();
@@ -57,7 +59,8 @@ public class LOKitThread extends Thread implements 
TileProvider.TileInvalidation
 mLayerClient.invalidateTiles(tiles, rect);
 
 for (SubTile tile : tiles) {
-mTileProvider.rerenderTile(tile.getImage(), tile.id.x, tile.id.y, 
tile.id.size, tile.id.zoom);
+CairoImage image = mTileProvider.createTile(tile.id.x, tile.id.y, 
tile.id.size, tile.id.zoom);
+tile.setImage(image);
 }
 
 mLayerClient.beginDrawing();
diff --git 
a/android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/SubTile.java 
b/android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/SubTile.java
index b5af410..342dc3c 100644
--- 
a/android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/SubTile.java
+++ 
b/android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/SubTile.java
@@ -6,16 +6,64 @@
 package org.mozilla.gecko.gfx;
 
 import android.graphics.Rect;
+import android.graphics.RectF;
+import android.graphics.Region;
+import android.graphics.RegionIterator;
+import android.opengl.GLES20;
+import android.util.Log;
 
 import org.libreoffice.TileIdentifier;
 
-public class SubTile extends SingleTileLayer {
-public boolean markedForRemoval = false;
+import java.nio.ByteBuffer;
+import java.nio.FloatBuffer;
+
+public class SubTile extends Layer {
+private static String LOGTAG = SubTile.class.getSimpleName();
 public final TileIdentifier id;
 
-public SubTile(CairoImage mImage, TileIdentifier id) {
-super(mImage);
+private final RectF mBounds;
+private final RectF mTextureBounds;
+private final RectF mViewport;
+private final Rect mIntBounds;
+private final Rect mSubRect;
+

[Libreoffice-bugs] [Bug 89348] EDITING infinite loop after paste in SwCntntFrm::MakeAll

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89348

Lionel Elie Mamane lio...@mamane.lu changed:

   What|Removed |Added

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

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