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

2015-03-16 Thread Bjoern Michaelsen
 sw/inc/calbck.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f3d41e1f5360629e2127da8d83c372c14e6e3b57
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Mon Mar 16 21:35:02 2015 +0100

fix stray SAL_OVERRIDE

Change-Id: I1c4ca34547217635732dea1cb5ce65a234274f7c

diff --git a/sw/inc/calbck.hxx b/sw/inc/calbck.hxx
index 88a9cb0..4c76fe9 100644
--- a/sw/inc/calbck.hxx
+++ b/sw/inc/calbck.hxx
@@ -117,7 +117,7 @@ public:
 // should be called only from SwModify the client is registered in
 // mba: IMHO this method should be pure virtual
 // DO NOT USE IN NEW CODE! use SwClientNotify instead.
-virtual void Modify( const SfxPoolItem* pOldValue, const SfxPoolItem* 
pNewValue ) SAL_OVERRIDE
+virtual void Modify( const SfxPoolItem* pOldValue, const SfxPoolItem* 
pNewValue )
 { CheckRegistration( pOldValue, pNewValue ); }
 // when overriding this, you MUST call SwClient::SwClientModify() in the 
override!
 virtual void SwClientNotify( const SwModify, const SfxHint rHint)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'feature/vclref' - reportdesign/source sd/source starmath/source sw/inc sw/source

2015-03-16 Thread Michael Meeks
 reportdesign/source/ui/misc/statusbarcontroller.cxx |2 +-
 reportdesign/source/ui/misc/toolboxcontroller.cxx   |2 +-
 sd/source/ui/view/DocumentRenderer.cxx  |5 +++--
 starmath/source/unomodel.cxx|4 ++--
 sw/inc/printdata.hxx|2 +-
 sw/source/core/view/printdata.cxx   |3 +--
 6 files changed, 9 insertions(+), 9 deletions(-)

New commits:
commit 54fbea8679ff37bc4b2914b41da22b782be3a9d2
Author: Michael Meeks michael.me...@collabora.com
Date:   Mon Mar 16 21:46:08 2015 +

more toolkit API adaptations.

Change-Id: I55e3153bf38af376fe367d575ceb19f5b4405e1c

diff --git a/reportdesign/source/ui/misc/statusbarcontroller.cxx 
b/reportdesign/source/ui/misc/statusbarcontroller.cxx
index cbc9afa..8646cb3 100644
--- a/reportdesign/source/ui/misc/statusbarcontroller.cxx
+++ b/reportdesign/source/ui/misc/statusbarcontroller.cxx
@@ -86,7 +86,7 @@ void SAL_CALL OStatusbarController::initialize( const 
Sequence Any  _rArgumen
 SolarMutexGuard aSolarMutexGuard;
 ::osl::MutexGuard aGuard(m_aMutex);
 
-StatusBar* pStatusBar = 
static_castStatusBar*(VCLUnoHelper::GetWindow(m_xParentWindow));
+VclPtr StatusBar  pStatusBar = 
static_castStatusBar*(VCLUnoHelper::GetWindow(m_xParentWindow).get());
 if ( pStatusBar )
 {
 const sal_uInt16 nCount = pStatusBar-GetItemCount();
diff --git a/reportdesign/source/ui/misc/toolboxcontroller.cxx 
b/reportdesign/source/ui/misc/toolboxcontroller.cxx
index cb83281..d2b5ad8 100644
--- a/reportdesign/source/ui/misc/toolboxcontroller.cxx
+++ b/reportdesign/source/ui/misc/toolboxcontroller.cxx
@@ -127,7 +127,7 @@ void SAL_CALL OToolboxController::initialize( const 
Sequence Any  _rArguments
 SolarMutexGuard aSolarMutexGuard;
 ::osl::MutexGuard aGuard(m_aMutex);
 
-ToolBox*pToolBox = 
static_castToolBox*(VCLUnoHelper::GetWindow(getParent()));
+VclPtr ToolBox  pToolBox = 
static_castToolBox*(VCLUnoHelper::GetWindow(getParent()).get());
 if ( pToolBox )
 {
 const sal_uInt16 nCount = pToolBox-GetItemCount();
diff --git a/sd/source/ui/view/DocumentRenderer.cxx 
b/sd/source/ui/view/DocumentRenderer.cxx
index ec4dd2c..fe12b05 100644
--- a/sd/source/ui/view/DocumentRenderer.cxx
+++ b/sd/source/ui/view/DocumentRenderer.cxx
@@ -1195,8 +1195,9 @@ public:
 if (aDev = xRenderDevice)
 {
 VCLXDevice* pDevice = VCLXDevice::GetImplementation(xRenderDevice);
-OutputDevice* pOut = pDevice ? pDevice-GetOutputDevice() : NULL;
-mpPrinter = dynamic_castPrinter*(pOut);
+VclPtr OutputDevice  pOut = pDevice ? pDevice-GetOutputDevice()
+  : VclPtr OutputDevice ();
+mpPrinter = dynamic_castPrinter*(pOut.get());
 Size aPageSizePixel = mpPrinter ? mpPrinter-GetPaperSizePixel() : 
Size();
 if( aPageSizePixel != maPrinterPageSizePixel )
 {
diff --git a/starmath/source/unomodel.cxx b/starmath/source/unomodel.cxx
index 591c1f2..d47292b 100644
--- a/starmath/source/unomodel.cxx
+++ b/starmath/source/unomodel.cxx
@@ -1037,8 +1037,8 @@ void SAL_CALL SmModel::render(
 if (xRenderDevice.is())
 {
 VCLXDevice*   pDevice = VCLXDevice::GetImplementation( xRenderDevice );
-OutputDevice* pOut = pDevice ? pDevice-GetOutputDevice() : NULL;
-
+VclRef OutputDevice pOut = pDevice ? pDevice-GetOutputDevice()
+ : VclRef OutputDevice ();
 if (!pOut)
 throw RuntimeException();
 
diff --git a/sw/inc/printdata.hxx b/sw/inc/printdata.hxx
index 95a5c2a..8e3e17b 100644
--- a/sw/inc/printdata.hxx
+++ b/sw/inc/printdata.hxx
@@ -172,7 +172,7 @@ public:
 
 class SwPrintUIOptions : public vcl::PrinterOptionsHelper
 {
-OutputDevice* m_pLast;
+VclPtr OutputDevice  m_pLast;
 const SwPrintData  m_rDefaultPrintData;
 
 public:
diff --git a/sw/source/core/view/printdata.cxx 
b/sw/source/core/view/printdata.cxx
index bb1a4996..3fbe894 100644
--- a/sw/source/core/view/printdata.cxx
+++ b/sw/source/core/view/printdata.cxx
@@ -158,7 +158,6 @@ SwPrintUIOptions::SwPrintUIOptions(
 bool bHasSelection,
 bool bHasPostIts,
 const SwPrintData rDefaultPrintData ) :
-m_pLast( NULL ),
 m_rDefaultPrintData( rDefaultPrintData )
 {
 ResStringArray aLocalizedStrings( SW_RES( STR_PRINTOPTUI ) );
@@ -487,7 +486,7 @@ bool SwPrintUIOptions::processPropertiesAndCheckFormat( 
const uno::Sequence bea
 if (pDevice)
 pOut = pDevice-GetOutputDevice();
 }
-bChanged = bChanged || (pOut != m_pLast);
+bChanged = bChanged || (pOut.get() != m_pLast.get());
 if( pOut )
 m_pLast = pOut;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'private/moggi/conditional-format-api' - 300 commits - accessibility/inc accessibility/source android/Bootstrap android/experimental basctl/inc basctl/source bas

2015-03-16 Thread Markus Mohrhard
Rebased ref, commits from common ancestor:
commit 0e216e0096e7c069affa640c5048f66e10af0494
Author: Markus Mohrhard markus.mohrh...@collabora.co.uk
Date:   Mon Mar 16 23:14:08 2015 +0100

add test for one of the ScCondFormatsObj methods

Change-Id: I05fc54a2153fd90d03d2575bdd9bde30a54d71c1

diff --git a/sc/qa/extras/new_cond_format.cxx b/sc/qa/extras/new_cond_format.cxx
index 3200998..cd4826c 100644
--- a/sc/qa/extras/new_cond_format.cxx
+++ b/sc/qa/extras/new_cond_format.cxx
@@ -33,10 +33,12 @@ public:
 uno::Reference uno::XInterface  init();
 void testRequestCondFormatListFromSheet();
 void testCondFormatListProperties();
+void testCondFormatListFormats();
 
 CPPUNIT_TEST_SUITE(ScConditionalFormatTest);
 CPPUNIT_TEST(testRequestCondFormatListFromSheet);
 CPPUNIT_TEST(testCondFormatListProperties);
+CPPUNIT_TEST(testCondFormatListFormats);
 CPPUNIT_TEST_SUITE_END();
 private:
 
@@ -104,6 +106,20 @@ void 
ScConditionalFormatTest::testCondFormatListProperties()
 CPPUNIT_ASSERT_EQUAL(sal_Int32(4), xCondFormat-getLength());
 }
 
+void ScConditionalFormatTest::testCondFormatListFormats()
+{
+uno::Referencesheet::XConditionalFormats xCondFormatList =
+getConditionalFormatList(init());
+
+uno::Sequenceuno::Referencesheet::XConditionalFormat  xCondFormats =
+xCondFormatList-getConditionalFormats();
+CPPUNIT_ASSERT_EQUAL(sal_Int32(4), xCondFormats.getLength());
+for (sal_Int32 i = 0, n = xCondFormats.getLength(); i  n; ++i)
+{
+CPPUNIT_ASSERT(xCondFormats[i].is());
+}
+}
+
 void ScConditionalFormatTest::setUp()
 {
 nTest++;
commit ad9ce9c2796025cdac6fe97cec93683026a28f70
Author: Markus Mohrhard markus.mohrh...@collabora.co.uk
Date:   Mon Mar 16 22:50:18 2015 +0100

integrate ScConditionalFormat UNO object correctly

Change-Id: I8da8d954dc7bcdf0a8c2f78eeb6b2403eb75d9e3

diff --git a/sc/source/ui/inc/condformatuno.hxx 
b/sc/source/ui/inc/condformatuno.hxx
index 2546403..ec9218c 100644
--- a/sc/source/ui/inc/condformatuno.hxx
+++ b/sc/source/ui/inc/condformatuno.hxx
@@ -21,8 +21,10 @@
 #include com/sun/star/sheet/XIconSetEntry.hpp
 
 #include cppuhelper/implbase1.hxx
+#include cppuhelper/implbase2.hxx
 #include svl/itemprop.hxx
 #include svl/lstner.hxx
+#include rtl/ref.hxx
 
 class ScDocument;
 class ScDocShell;
@@ -75,18 +77,18 @@ public:
 throw(::com::sun::star::uno::RuntimeException,
   std::exception) SAL_OVERRIDE;
 
-private:
 ScConditionalFormatList* getCoreObject();
+
+private:
 SCTAB mnTab;
 ScDocShell* mpDocShell;
 };
 
-class ScCondFormatObj : public com::sun::star::sheet::XConditionalFormat,
-public com::sun::star::beans::XPropertySet,
-public cppu::OWeakObject
+class ScCondFormatObj : public 
cppu::WeakImplHelper2com::sun::star::sheet::XConditionalFormat,
+com::sun::star::beans::XPropertySet
 {
 public:
-ScCondFormatObj(ScDocument* pDoc, ScConditionalFormat* pList);
+ScCondFormatObj(ScDocShell* pDocShell, rtl::ReferenceScCondFormatsObj 
xCondFormats, sal_Int32 nKey);
 
 virtual ~ScCondFormatObj();
 
@@ -101,6 +103,24 @@ public:
 throw(::com::sun::star::uno::RuntimeException,
   std::exception) SAL_OVERRIDE;
 
+// XIndexAccess
+
+virtual SAL_CALL uno::Type getElementType()
+throw(::com::sun::star::uno::RuntimeException,
+  std::exception) SAL_OVERRIDE;
+
+virtual SAL_CALL sal_Bool hasElements()
+throw(::com::sun::star::uno::RuntimeException,
+  std::exception) SAL_OVERRIDE;
+
+virtual SAL_CALL sal_Int32 getCount()
+throw(::com::sun::star::uno::RuntimeException,
+  std::exception) SAL_OVERRIDE;
+
+virtual SAL_CALL uno::Any getByIndex(sal_Int32 nIndex)
+throw(::com::sun::star::uno::RuntimeException,
+  std::exception) SAL_OVERRIDE;
+
 // XPropertySet
 virtual ::com::sun::star::uno::Reference 
::com::sun::star::beans::XPropertySetInfo 
 SAL_CALL getPropertySetInfo()
@@ -142,9 +162,13 @@ public:
 
::com::sun::star::lang::WrappedTargetException,
 ::com::sun::star::uno::RuntimeException, 
std::exception) SAL_OVERRIDE;
 
+ScConditionalFormat* getCoreObject();
+
 private:
-ScConditionalFormat* mpFormat;
+rtl::ReferenceScCondFormatsObj mxCondFormatList;
+ScDocShell* mpDocShell;
 SfxItemPropertySet maPropSet;
+sal_Int32 mnKey;
 };
 
 class ScConditionEntryObj : public com::sun::star::beans::XPropertySet,
diff --git a/sc/source/ui/unoobj/condformatuno.cxx 

[Libreoffice-bugs] [Bug 62274] Unable to switch spell-check language for the text selected

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62274

--- Comment #2 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 58246] : Arrowhead size not undoable.

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=58246

--- Comment #6 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 60962] EDITING: Copy (OLE) object sets document changed flag

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60962

--- Comment #2 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 60296] XHTML Export describes product as OpenOffice.org

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60296

--- Comment #3 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 65940] FORMATTING: Style/templates not persistent

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65940

--- Comment #2 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 65713] PRINTING: size of printed embedded WMF image differs from on-screen size

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65713

--- Comment #2 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 48148] EDITING: Spell Grammar disallows change in the dialog box - Lightproof issue

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=48148

--- Comment #4 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 56759] FORMATTING: master slide does not show the selecte bullet

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=56759

--- Comment #8 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 59472] Calc locks other open spreadsheets when selecting cells for function in function guide

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59472

--- Comment #4 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 65774] formula's 'catalog' diacritics have different vertical spacing

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65774

--- Comment #4 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 56266] FILESAVE: Track/record changes: interdependentant revision marks not correctly saved to ODT file

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=56266

--- Comment #4 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 90048] Add Nicer Looking Default Styles

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90048

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||jmadero@gmail.com
 Ever confirmed|0   |1

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


被动只能被人选择,主动你可以选择客户

2015-03-16 Thread voluntarywusmu

做外贸,开发客户只是等询盘不够的,怎样才能提高您每天开发客户效率呢?获得
更多一对一回复优质询盘?拓展您的客户群体?提升客户的质量?
答案就是要“主动出击”
Q 994335531 电话020-22920064在线为您演示,让您知道您的同行都是怎么去主动
开发客户,提升客户质量的。
我已邀请您填写表单 被动只能被人选择,主动你可以选择客户。 要填写此表
单,请访问:
https://docs.google.com/forms/d/1TnxsbeBCEIKHlaLj6EgBAPpwQ-lQc8zkMP0hzIdAUF8/viewform?c=0w=1usp=mail_form_link
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 75025] LibreOffice 4.3 most annoying bugs

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

Bug 79147 Summary: Transient / HiContrast theme mis-selection race on start
https://bugs.documentfoundation.org/show_bug.cgi?id=79147

   What|Removed |Added

 Status|NEW |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 90044] New: Writer crashes when opening DOCX

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90044

Bug ID: 90044
   Summary: Writer crashes when opening DOCX
   Product: LibreOffice
   Version: 4.4.1.2 rc
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: apels...@ya.ru

Created attachment 114137
  -- https://bugs.documentfoundation.org/attachment.cgi?id=114137action=edit
windows backtrace

I have a big business DOCX document (~22MB) originally created in MsWord.
It contains all kinds of stuff - tables, graphics, comments, etc...

When the document is double-clicked Writer shows it and keeps loading in
background for about 1,5 minutes. during that period I can scroll the document
from top to bottom without any problems but even if I do absolutely nothing,
after 1,5 minutes it consistently crashes. If I discard recovering, it gives a
fatal error Unknown SEH Exception.

It fails on Windows since LO version 4.2.4.1 up to current release 4.4.1.2
I also tested it on Linux with LO 3.5.4.2 - it seems to be working.  
There are no problems in MsWord as well.

Windows Backtrace file is attached.

-- 
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 'origin/private/moggi/conditional-format-api' - 0 commits -

2015-03-16 Thread Unknown
Rebased ref, commits from common ancestor:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 53717] VIEWING: EPS Objects on transparent background WRITER shows WHITE.

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53717

--- Comment #2 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 64131] EDITING: DDE function does not work for Name Ranges with Local Scope

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64131

--- Comment #6 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 66019] Improve table accessibility by adding current cel location in toolbar and easy way to jump to particular cell

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66019

--- Comment #2 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 65982] Different line height in Writer in Linux than in Windows

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65982

--- Comment #2 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 57208] EDITING: Opening a file cursor location

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57208

--- Comment #2 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 59794] resizing arrow resizes different arrow

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59794

--- Comment #4 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 59752] Unable to hide the Frame of Object

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59752

--- Comment #3 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 57358] VIEWING: Rotated Text in Metafile rendered wrong

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57358

--- Comment #7 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 57823] EDITING: Insert/OverWrite Mode inoperative

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57823

--- Comment #3 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 65542] FILESAVE: Writer loses drawings when saving in Microsoft Word 6 format.

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65542

--- Comment #2 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 57181] FILESAVE as pptx: slide names replaced by default names

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57181

--- Comment #6 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 56187] Standard Filter gets wrong criteria from Autofilter and vice versa

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=56187

--- Comment #2 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 59813] EDITING: Insert picture does not retain directory

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59813

--- Comment #9 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 55344] Document windows open in the middle of screen and not next to previously opened window

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55344

--- Comment #11 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 53701] EDITING: Incorrect auto completion is made - word (combinations) with punctuation / full stop

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53701

--- Comment #11 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 64441] EDITING: PIVOT TABLE, lose data fields updating PT with the Spanish UI a file created with the English UI

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64441

--- Comment #12 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 90021] Inserting an email address deletes document content.

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90021

Gordo gordon1dr...@yahoo.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


[Libreoffice-ux-advise] [Bug 87702] SIDEBAR: Properties tab Area content panel needs shadow options

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87702

--- Comment #5 from Jay Philips philip...@hotmail.com ---
Created attachment 114141
  -- https://bugs.documentfoundation.org/attachment.cgi?id=114141action=edit
shadow section mockup

-- 
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 56783] One or more blank lines between an image and its border

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=56783

--- Comment #4 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 55972] CONFIGURATION: 'Export URLs relative to file system' should be default for PDF-Export

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55972

--- Comment #2 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 63198] Spellcheck Replace all choices are forgotten after resume

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63198

--- Comment #6 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 65563] RTL text (Arabic/Hebrew) appear LTR during input in cells although the text layout is RTL!

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65563

--- Comment #9 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 62178] Wrong in to MSWord2003 exported formula when it contains only one parenthesis

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62178

--- Comment #6 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 58647] EDITING: Copy paste a bullet list from Impress into writer destroys format of writer file

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=58647

--- Comment #2 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 40497] User-defined cell format in Calc was particularly broken

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=40497

--- Comment #4 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 53335] PDF: The hatchings inside the rectangle(rounded) spill outside a bit when exported to pdf file

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53335

--- Comment #7 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 58381] Unable to format Endnote page style to use multi-column layout

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=58381

--- Comment #3 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 44222] EDITING FORMATTING: Numbering incorrect after updating simultaneously linked sections

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=44222

--- Comment #3 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 62603] Regular expression replacements affect formatting in undesired ways

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62603

--- Comment #5 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 65230] changing superscript size changes rendered body text size in Formula Editor

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65230

--- Comment #3 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 90048] New: Add Nicer Looking Default Styles

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90048

Bug ID: 90048
   Summary: Add Nicer Looking Default Styles
   Product: LibreOffice
   Version: 4.4.1.2 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jmadero@gmail.com
CC: libreoffice-ux-adv...@lists.freedesktop.org

The current styles are pretty plain - generally speaking they are basically
just using bold, italics, and size. I suggest making an enhanced set of styles
that are nicer looking, mixing color as well as bold, italics, size, underline
(or lower border all the way across the screen)

If we hope to move people to use styles - they should look nicer and more
appealing :)

Possible suggestion - I'm willing to work on this if the enhancement is
approved for moving forward.



https://drive.google.com/file/d/0B2kdRhc960qdN2JSMDhGVDBrS2M/view?usp=sharing

-- 
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 90048] New: Add Nicer Looking Default Styles

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90048

Bug ID: 90048
   Summary: Add Nicer Looking Default Styles
   Product: LibreOffice
   Version: 4.4.1.2 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-b...@lists.freedesktop.org
  Reporter: jmadero@gmail.com
CC: libreoffice-ux-advise@lists.freedesktop.org

The current styles are pretty plain - generally speaking they are basically
just using bold, italics, and size. I suggest making an enhanced set of styles
that are nicer looking, mixing color as well as bold, italics, size, underline
(or lower border all the way across the screen)

If we hope to move people to use styles - they should look nicer and more
appealing :)

Possible suggestion - I'm willing to work on this if the enhancement is
approved for moving forward.



https://drive.google.com/file/d/0B2kdRhc960qdN2JSMDhGVDBrS2M/view?usp=sharing

-- 
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 90048] Add Nicer Looking Default Styles

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90048

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||jmadero@gmail.com
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 64441] EDITING: PIVOT TABLE, lose data fields updating PT with the Spanish UI a file created with the English UI

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64441

--- Comment #13 from m.a.riosv mari...@miguelangel.mobi ---
Present and reproducible:
Win7x64
Versión: 4.4.2.1
Id. de compilación: 93fc8832889bf050a10ec6d0171dae213adc9b55
Configuration: es_ES

-- 
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 87702] SIDEBAR: Properties tab Area content panel needs shadow options

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87702

--- Comment #6 from Jay Philips philip...@hotmail.com ---
Forgot to mention that the angle drop down list has angles in 45 degree
intervals and the distance drop down has values from 0pt to 50pt in intervals
of 5s.

-- 
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 87702] SIDEBAR: Properties tab Area content panel needs shadow options

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87702

--- Comment #6 from Jay Philips philip...@hotmail.com ---
Forgot to mention that the angle drop down list has angles in 45 degree
intervals and the distance drop down has values from 0pt to 50pt in intervals
of 5s.

-- 
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 75668] FORMATTING Difficult to read the cell notes because of the transparent background

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75668

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #13 from Joel Madero jmadero@gmail.com ---
Moving this back to UNCONFIRMED - let's try to get someone to test with KDE

-- 
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 89873] UI: some dialog windows not being painted

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89873

--- Comment #16 from Matthew Francis fdb...@neosheffield.co.uk ---
Still occurs on master in Writer with Insert - Indexes and Tables - Indexes
and Tables...

File - Print... also isn't painted initially, although it sorts itself out
after a while

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


[Libreoffice-bugs] [Bug 64070] Handle is not initialized exception

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64070

--- Comment #4 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 90010] Images embedded in password protected document are lost on save

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90010

--- Comment #2 from Peter Ryan peter...@gmail.com ---
I just tried a PNG and it also worked perfectly. Then tried again with a Jpeg
(a different one from before) and it failed.

I shouldn't have assumed it would be all image types!

-- 
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 90021] Inserting an email address deletes document content.

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90021

--- Comment #3 from Gordo gordon1dr...@yahoo.com ---
Created attachment 114140
  -- https://bugs.documentfoundation.org/attachment.cgi?id=114140action=edit
malformed rtf file

I can confirm that the data does not display.  Opening the file with wordpad
also fails to display the data.  Opening the file with notepad shows that the
data is still there.

I think the data has become part of the link.

Removing the brackets before saving keeps the data.

Version: 4.4.1.2
Build ID: 45e2de17089c24a1fa810c8f975a7171ba4cd432

-- 
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 90046] EDITING: pasting a footnote crashes Writer

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90046

--- Comment #2 from Joel Madero jmadero@gmail.com ---
*** Bug 90047 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 90047] EDITING: pasting a footnote crashes Writer

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90047

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||jmadero@gmail.com
 Resolution|--- |DUPLICATE

--- Comment #1 from Joel Madero jmadero@gmail.com ---
This is a duplicate. Closing it.

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

-- 
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 87702] SIDEBAR: Properties tab Area content panel needs shadow options

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87702

--- Comment #5 from Jay Philips philip...@hotmail.com ---
Created attachment 114141
  -- https://bugs.documentfoundation.org/attachment.cgi?id=114141action=edit
shadow section mockup

-- 
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 64131] EDITING: DDE function does not work for Name Ranges with Local Scope

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64131

--- Comment #7 from m.a.riosv mari...@miguelangel.mobi ---
Reproducible:
Win7x64
Version: 4.4.2.1
Build ID: 93fc8832889bf050a10ec6d0171dae213adc9b55

-- 
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 89999] Subscript and superscript have problems retaining FORMATTING

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=8

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

   What|Removed |Added

 CC||fdb...@neosheffield.co.uk
 Whiteboard|bibisectRequest |bibisected

--- Comment #2 from Matthew Francis fdb...@neosheffield.co.uk ---
Bibisect results from 43all:

1711ac6e2188f8fed8e027a2241fe878c898a604 is the first bad commit
commit 1711ac6e2188f8fed8e027a2241fe878c898a604
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Fri Oct 18 02:26:52 2013 +

source-hash-8a569f1c4decc7440e9dae1af35d7fa59c3b0121


That range is pretty sparse of relevant looking commits, and my money is on
this one:

commit 21661ebfbec9ea162582bbc7ab46607eb9095f1a
Author: Kohei Yoshida kohei.yosh...@gmail.com
Date:   Wed Aug 21 19:16:23 2013 -0400

fdo#60740: Populate auto styles from edit cells without using UNO API.

Not using UNO API here alone made this code fly.

Change-Id: Ib3eff168bbe49e49fb413909b7a14057f808cdf9

-- 
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 65453] : Installed 'variant' Font not recognised used by LO Writer

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65453

--- Comment #5 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 63444] Prevent Dialogs, Lists, etc in RTL sheets from expanding outside of LibreOffice Window

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63444

--- Comment #17 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 56467] Formula exported to svg result in formula loss

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=56467

--- Comment #5 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 53074] index entry corrupted by copy and paste within entry

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53074

--- Comment #7 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 62456] Vertically flipped shape anchored to cell at wrong position when reopen .ods

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62456

--- Comment #2 from QA Administrators qa-ad...@libreoffice.org ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (4.4.1 or later)
https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

  If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a
particular meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to inherited from OOo;
4b. If the bug was not present in 3.3 - add regression to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-03-16

-- 
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 90001] EDITING: Delete firsts or lasts sheets used in 3D formulas generates a #REF error

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90001

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

   What|Removed |Added

 CC||fdb...@neosheffield.co.uk
Version|unspecified |4.2.7.2 release
 Whiteboard||bibisected

--- Comment #3 from Matthew Francis fdb...@neosheffield.co.uk ---
Bibisect result from 43all:

ba096f438393091574da98fe7b8e6b05182a8971 is the first bad commit
commit ba096f438393091574da98fe7b8e6b05182a8971
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Thu Oct 17 20:00:21 2013 +

source-hash-8499e78ca03c792f4fa2650e02b519094ba0baa8


# bad: [752769ad0d2179e17ea0a08cc9004df7b890305b]
source-hash-60c64b437c6678dd1d3fa3a6fc2b7da0480890d4
# good: [c2069a369d738078124812312d51f21ea1ce2421]
source-hash-f160e4935c474a5293b3d3c11b3d538efb4767a0
git bisect start 'last42onmaster' 'last41onmaster'
# bad: [186181c7d6a957b0fcdbc7ff66866f1abfff988e]
source-hash-79850f25987d12c8ee91dfd0f699a562f341bf67
git bisect bad 186181c7d6a957b0fcdbc7ff66866f1abfff988e
# good: [4e504a2344a5356cdcabe4a091f2e626b40aaede]
source-hash-f39e8cadc74573a787641615406777da5a9e5343
git bisect good 4e504a2344a5356cdcabe4a091f2e626b40aaede
# bad: [92e8808c5d3f3e54366b8bf66bcbd7bb65089c3e]
source-hash-d1cbaee70d3f922937a1993914436c8fc899ebfc
git bisect bad 92e8808c5d3f3e54366b8bf66bcbd7bb65089c3e
# bad: [c685b5d1aeea7ba2813f740e4c5297152e17a6b5]
source-hash-83ff6c0f4101fe4f25c2b4a58c70b40de8cc2ff2
git bisect bad c685b5d1aeea7ba2813f740e4c5297152e17a6b5
# bad: [ba096f438393091574da98fe7b8e6b05182a8971]
source-hash-8499e78ca03c792f4fa2650e02b519094ba0baa8
git bisect bad ba096f438393091574da98fe7b8e6b05182a8971
# good: [b5e6283a204221f3f9f830c2b3b75c195f8a51bc]
source-hash-f4546b72702dbe30505594a8307dd402e81a0303
git bisect good b5e6283a204221f3f9f830c2b3b75c195f8a51bc
# good: [2d9baecf3ce2ea1ec8bea3e842eed595061eeef6]
source-hash-ff51a2b64571a8d72ff4d8a8181d17cf98c42e69
git bisect good 2d9baecf3ce2ea1ec8bea3e842eed595061eeef6
# first bad commit: [ba096f438393091574da98fe7b8e6b05182a8971]
source-hash-8499e78ca03c792f4fa2650e02b519094ba0baa8

-- 
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 90049] New: rotate command fails in draw

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90049

Bug ID: 90049
   Summary: rotate command fails in draw
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: greeni...@internode.on.net

The rotate command in drop down box fails all the time

-- 
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 42897] FORMATTING: Conditional formatting displays wrong cell background.

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42897

Laszlo Kis-Adam dfighter1...@gmail.com changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |dfighter1...@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 86706] Wrong data being highlighted when selecting a point on scatterplot

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86706

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

   Priority|medium  |low
 Whiteboard||needsDevEval
   Severity|normal  |minor

--- Comment #3 from Joel Madero jmadero@gmail.com ---
Because there is a workaround I am prioritizing as such:

Minor - can slow down but will not prevent high quality/professional work;
Low - default


Possibly an easy hack so asking for advice from devs.

-- 
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 45269] Presentation does not Look the same on Linux and Windows

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45269

--- Comment #10 from mensoif_ger...@yahoo.fr ---
The Bug is still present in version 4.4.1.2 on debian

-- 
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 87109] can't drag-move selection if it's not rectangular

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87109

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from Joel Madero jmadero@gmail.com ---
Moving this back to UNCONFIRMED as it seems like the instructions are indeed
pretty straight forward.

Thanks for your patience.

-- 
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 83191] SPELLCHECK: starting apostrophe ignored

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83191

Ad Verburg adw.verb...@zeelandnet.nl changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #4 from Ad Verburg adw.verb...@zeelandnet.nl ---
In reply on comment1:
The fresh version did not change my complain.
the only fact I noticed was that now there are different apostrophes, '
(U+0027) and ’(U=2019).
Have a look at the screen-print. Notice the red wave line after the correction,
indicating there still is something wrong.
Ad.

-- 
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: 5 commits - sw/inc sw/source

2015-03-16 Thread Bjoern Michaelsen
 sw/inc/switerator.hxx   |2 +-
 sw/source/core/attr/cellatr.cxx |4 ++--
 sw/source/core/doc/tblrwcl.cxx  |2 +-
 sw/source/core/docnode/node.cxx |4 ++--
 sw/source/core/docnode/node2lay.cxx |8 
 sw/source/core/docnode/section.cxx  |6 +++---
 sw/source/core/draw/dcontact.cxx|4 ++--
 sw/source/core/fields/docufld.cxx   |2 +-
 sw/source/core/frmedt/feshview.cxx  |2 +-
 sw/source/core/layout/atrfrm.cxx|   14 +++---
 sw/source/core/layout/fly.cxx   |4 ++--
 sw/source/core/layout/flypos.cxx|4 ++--
 sw/source/core/layout/frmtool.cxx   |2 +-
 sw/source/core/table/swtable.cxx|   14 +++---
 sw/source/core/txtnode/ndtxt.cxx|3 +--
 sw/source/core/undo/unattr.cxx  |4 ++--
 sw/source/core/unocore/unodraw.cxx  |2 +-
 sw/source/core/unocore/unoframe.cxx |6 +++---
 sw/source/core/unocore/unoobj2.cxx  |2 +-
 sw/source/core/unocore/unotbl.cxx   |8 
 20 files changed, 48 insertions(+), 49 deletions(-)

New commits:
commit 5a751d32b99e330d6656efc337829778e2b58bdb
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Sun Mar 15 02:55:35 2015 +0100

make SwIterator final

Change-Id: I48ef94ca7681c3ef5cf04aad79eab4b7dd84ca2d

diff --git a/sw/inc/switerator.hxx b/sw/inc/switerator.hxx
index 7d2e27a..9df5906 100644
--- a/sw/inc/switerator.hxx
+++ b/sw/inc/switerator.hxx
@@ -22,7 +22,7 @@
 #include calbck.hxx
 #include sal/log.hxx
 
-template class TElementType, class TSource  class SwIterator
+template class TElementType, class TSource  class SwIterator SAL_FINAL
 {
 SwClientIter aClientIter;
 public:
commit 553a058ec877e5ea858dbc47eec456033a6323ab
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Sat Mar 14 20:43:43 2015 +0100

core: dont use 'shortcut' that is longer than the original

Change-Id: I0154e484a4f4d6ce6672ddf35d1869157a61f71e

diff --git a/sw/source/core/attr/cellatr.cxx b/sw/source/core/attr/cellatr.cxx
index 2ef00af..79f2a52 100644
--- a/sw/source/core/attr/cellatr.cxx
+++ b/sw/source/core/attr/cellatr.cxx
@@ -82,7 +82,7 @@ const SwNode* SwTblBoxFormula::GetNodeOfFormula() const
 const SwNode* pRet = 0;
 if( pDefinedIn )
 {
-SwTableBox* pBox = SwIteratorSwTableBox,SwModify::FirstElement( 
*pDefinedIn );
+SwTableBox* pBox = SwIteratorSwTableBox,SwModify( *pDefinedIn 
).First();
 if( pBox )
 pRet = pBox-GetSttNd();
 }
@@ -93,7 +93,7 @@ SwTableBox* SwTblBoxFormula::GetTableBox()
 {
 SwTableBox* pBox = 0;
 if( pDefinedIn )
-pBox = SwIteratorSwTableBox,SwModify::FirstElement( *pDefinedIn );
+pBox = SwIteratorSwTableBox,SwModify( *pDefinedIn ).First();
 return pBox;
 }
 
diff --git a/sw/source/core/doc/tblrwcl.cxx b/sw/source/core/doc/tblrwcl.cxx
index d0bdb86..d144b9e 100644
--- a/sw/source/core/doc/tblrwcl.cxx
+++ b/sw/source/core/doc/tblrwcl.cxx
@@ -586,7 +586,7 @@ bool SwTable::_InsertRow( SwDoc* pDoc, const SwSelBoxes 
rBoxes,
 
 // Find Lines for the layout update
 const bool bLayout = !IsNewModel() 
-0 != SwIteratorSwTabFrm,SwFmt( *GetFrmFmt() ).First();
+nullptr != SwIteratorSwTabFrm,SwFmt( *GetFrmFmt() ).First();
 
 if ( bLayout )
 {
diff --git a/sw/source/core/draw/dcontact.cxx b/sw/source/core/draw/dcontact.cxx
index 4490134..040a498 100644
--- a/sw/source/core/draw/dcontact.cxx
+++ b/sw/source/core/draw/dcontact.cxx
@@ -639,7 +639,7 @@ void SwDrawContact::GetTextObjectsFromFmt( 
std::listSdrTextObj* rTextObjects,
 const SwFrmFmt* pFly = (*pDoc-GetSpzFrmFmts())[n];
 if( pFly-IsA( TYPE(SwDrawFrmFmt) ) )
 {
-SwDrawContact* pContact = 
SwIteratorSwDrawContact,SwFrmFmt::FirstElement(*pFly);
+SwDrawContact* pContact = 
SwIteratorSwDrawContact,SwFrmFmt(*pFly).First();
 if( pContact )
 {
 SdrObject* pSdrO = pContact-GetMaster();
@@ -1794,7 +1794,7 @@ void SwDrawContact::ConnectToLayout( const SwFmtAnchor* 
pAnch )
 {
 SwNodeIndex aIdx( pAnch-GetCntntAnchor()-nNode );
 SwCntntNode* pCNd = 
pDrawFrmFmt-GetDoc()-GetNodes().GoNext( aIdx );
-if ( SwIteratorSwFrm,SwCntntNode::FirstElement( 
*pCNd ) )
+if ( SwIteratorSwFrm,SwCntntNode( *pCNd ).First() )
 pModify = pCNd;
 else
 {
diff --git a/sw/source/core/fields/docufld.cxx 
b/sw/source/core/fields/docufld.cxx
index 2a74a43..d6631e7 100644
--- a/sw/source/core/fields/docufld.cxx
+++ b/sw/source/core/fields/docufld.cxx
@@ -159,7 +159,7 @@ void SwPageNumberFieldType::ChangeExpansion( SwDoc* pDoc,
 const SwCntntNode* pNd = PTR_CAST( SwCntntNode, 
pDesc-GetDefinedIn() );
 if( pNd )
 {
-if ( 

[Libreoffice-bugs] [Bug 42346] FILESAVE: Cross-references to numbered items (object, graphic, table) turn to plain text on export to .doc or .docx

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42346

--- Comment #37 from Jean-Sébastien Gosselin jnsebgosse...@gmail.com ---
(In reply to andis.lazdins from comment #36)
 (In reply to V Stuart Foote from comment #35)
  
  And, again, why not send as native OASIS ODF 1.2? 
 
 Short answer - I don't want to loose my job and I want to use Libreoffice :)
 
 Good luck and patience to developers!

I'm in the same situation. My bosses kindly allow me to work in LO, but they
expect a working .doc or .docx document at the end of the day.

That being said, I understand the position of LO developers. It feels to me
that they are better working in improving features for the current ODT format
than trying to achieve perfect compatibility with a proprietary format that is
continually in development and for which thay have no control at all. Handling
the hybrid environment problem on the MS Word side seems a more efficient
approach, since .odt is an open format, but .doc is not. 

Sad but True, maybe the use of LO is not adequate for all situation in all
context.

-- 
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' - 2 commits - android/experimental editeng/source include/tools libreofficekit/source tools/source

2015-03-16 Thread Miklos Vajna
 
android/experimental/LOAndroid3/src/java/org/libreoffice/InvalidationHandler.java
 |8 +++---
 editeng/source/editeng/impedit.cxx 
   |   13 +-
 include/tools/gen.hxx  
   |1 
 libreofficekit/source/gtk/lokdocview.cxx   
   |8 +++---
 tools/source/generic/gen.cxx   
   |2 -
 5 files changed, 22 insertions(+), 10 deletions(-)

New commits:
commit 72aeee3a21dbd7dd8ebe3f1d6ffb027d94d89f97
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Mon Mar 16 15:33:25 2015 +0100

Rectangle::toString(): output position, then size

This order seems to be less confusing.

Change-Id: I95a7e3e2f6244915c820bb86e67745a14e2d

diff --git 
a/android/experimental/LOAndroid3/src/java/org/libreoffice/InvalidationHandler.java
 
b/android/experimental/LOAndroid3/src/java/org/libreoffice/InvalidationHandler.java
index 22aeda3..d94c93a 100644
--- 
a/android/experimental/LOAndroid3/src/java/org/libreoffice/InvalidationHandler.java
+++ 
b/android/experimental/LOAndroid3/src/java/org/libreoffice/InvalidationHandler.java
@@ -97,10 +97,10 @@ public class InvalidationHandler implements 
Document.MessageCallback {
 return null;
 }
 
-int width = Integer.decode(coordinates[0]);
-int height = Integer.decode(coordinates[1]);
-int x = Integer.decode(coordinates[2]);
-int y = Integer.decode(coordinates[3]);
+int x = Integer.decode(coordinates[0]);
+int y = Integer.decode(coordinates[1]);
+int width = Integer.decode(coordinates[2]);
+int height = Integer.decode(coordinates[3]);
 
 float dpi = (float) LOKitShell.getDpi();
 
diff --git a/include/tools/gen.hxx b/include/tools/gen.hxx
index b17cb19..c5d898b 100644
--- a/include/tools/gen.hxx
+++ b/include/tools/gen.hxx
@@ -440,6 +440,7 @@ public:
 voidsetY( long n ) { nBottom += n-nTop; nTop = n; }
 voidsetWidth( long n ) { nRight = nLeft + n; }
 voidsetHeight( long n ) { nBottom = nTop + n; }
+/// Returns the string representation of the rectangle, format is x, y, 
width, height.
 rtl::OStringtoString() const;
 
 private:
diff --git a/libreofficekit/source/gtk/lokdocview.cxx 
b/libreofficekit/source/gtk/lokdocview.cxx
index 1f542b5..03fab48 100644
--- a/libreofficekit/source/gtk/lokdocview.cxx
+++ b/libreofficekit/source/gtk/lokdocview.cxx
@@ -741,19 +741,19 @@ static GdkRectangle lcl_payloadToRectangle(const char* 
pPayload)
 gchar** ppCoordinate = ppCoordinates;
 if (!*ppCoordinate)
 return aRet;
-aRet.width = atoi(*ppCoordinate);
+aRet.x = atoi(*ppCoordinate);
 ++ppCoordinate;
 if (!*ppCoordinate)
 return aRet;
-aRet.height = atoi(*ppCoordinate);
+aRet.y = atoi(*ppCoordinate);
 ++ppCoordinate;
 if (!*ppCoordinate)
 return aRet;
-aRet.x = atoi(*ppCoordinate);
+aRet.width = atoi(*ppCoordinate);
 ++ppCoordinate;
 if (!*ppCoordinate)
 return aRet;
-aRet.y = atoi(*ppCoordinate);
+aRet.height = atoi(*ppCoordinate);
 g_strfreev(ppCoordinates);
 return aRet;
 }
diff --git a/tools/source/generic/gen.cxx b/tools/source/generic/gen.cxx
index e2a61c5..925d4d6 100644
--- a/tools/source/generic/gen.cxx
+++ b/tools/source/generic/gen.cxx
@@ -198,7 +198,7 @@ SvStream WriteRectangle( SvStream rOStream, const 
Rectangle rRect )
 OString Rectangle::toString() const
 {
 std::stringstream ss;
-ss  getWidth()  ,   getHeight()  ,   getX()  ,   
getY();
+ss  getX()  ,   getY()  ,   getWidth()  ,   
getHeight();
 return ss.str().c_str();
 }
 
commit a7d2e4af1f3e9f039f6688904d170a996edb5788
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Mon Mar 16 12:18:18 2015 +0100

ImpEditView::DrawSelection: emit TEXT_SELECTION_START/END callbacks

Change-Id: I5ea37875aa36cc30847643721b369bbe491101e8

diff --git a/editeng/source/editeng/impedit.cxx 
b/editeng/source/editeng/impedit.cxx
index ed456a1..5f102f5 100644
--- a/editeng/source/editeng/impedit.cxx
+++ b/editeng/source/editeng/impedit.cxx
@@ -326,8 +326,19 @@ void ImpEditView::DrawSelection( EditSelection aTmpSel, 
vcl::Region* pRegion, Ou
 {
 std::vectorRectangle aRectangles;
 pRegion-GetRegionRectangles(aRectangles);
-std::stringstream ss;
 
+if (!aRectangles.empty())
+{
+Rectangle rStart = aRectangles.front();
+Rectangle aStart = Rectangle(rStart.Left(), rStart.Top(), 
rStart.Left() + 1, rStart.Bottom());
+libreOfficeKitCallback(LOK_CALLBACK_TEXT_SELECTION_START, 
aStart.toString().getStr());
+
+Rectangle rEnd = aRectangles.back();
+Rectangle aEnd = Rectangle(rEnd.Right() - 1, rEnd.Top(), 

[Libreoffice-bugs] [Bug 42346] FILESAVE: Cross-references to numbered items (object, graphic, table) turn to plain text on export to .doc or .docx

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42346

--- Comment #35 from V Stuart Foote vstuart.fo...@utsa.edu ---
(In reply to andis.lazdins from comment #34)
 ... Generally, if I'm sending something as .doc and not .pdf, it is
 supposed for further editing, most probably with Microsoft Word and, most
 probably, by a person which don't know and don't want to know anything about
 Libreoffice, but want to have working cross-references besides other
 functionality...

And, again, why not send as native OASIS ODF 1.2? Rather than depending on
export filters to a proprietary MSO binary format, or a marginally functional
OOXML specification?

Office 365 Word, and Word 2013 handle ODF 1.2 reasonably well. At least as well
as LibreOffice documents exported to MSO .doc or OOXML .docx--of course for
specific uses like cross reference footnoting and YMMV.

ODF 1.2, or emerging 1.3, will likely never be perfect, especially as Microsoft
screws their own users on format consistency inter-release, but it is
functional for exchange. And as noted, if collaborative editing is not
needed--exchange of filter exported PDF is often sufficient.

-- 
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: build fails in postprocess/qa/services.cxx

2015-03-16 Thread Stephan Bergmann

On 03/14/2015 09:49 PM, Christina Roßmanith wrote:

services.cxx:231:Assertion
Test name: (anonymous namespace)::Test::test
forced failure
- - creating com.sun.star.wizards.agenda.CallWizard caused
com.sun.star.uno.RuntimeException unsatisfied query for interface of
type com.sun.star.loader.XImplementationLoader!


I assume you configured --disable-python, in which case 
http://cgit.freedesktop.org/libreoffice/core/commit/?id=1f61e1378d45f27df22e0380038a25bf86926c48 
Exclude Python components if --disable-python should fix that.

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


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

2015-03-16 Thread Miklos Vajna
 sw/qa/extras/tiledrendering/tiledrendering.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit e6fb43ca7f2e96e0bc0cd0b162828c6d0771ef28
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Mon Mar 16 14:55:40 2015 +0100

CppunitTest_sw_tiledrendering: disable part of testSetGraphicSelection on 
OS X

Till we find out why tb60 is happy, but not tb59.

Change-Id: I5c6b3ba07cc188e776c03508d1a1c696a9b9cd0c

diff --git a/sw/qa/extras/tiledrendering/tiledrendering.cxx 
b/sw/qa/extras/tiledrendering/tiledrendering.cxx
index c5ebde7..e7dd779 100644
--- a/sw/qa/extras/tiledrendering/tiledrendering.cxx
+++ b/sw/qa/extras/tiledrendering/tiledrendering.cxx
@@ -85,7 +85,9 @@ void SwTiledRenderingTest::testSetGraphicSelection()
 Rectangle aShapeAfter = pObject-GetSnapRect();
 // Check that a resize happened, but aspect ratio is not kept.
 CPPUNIT_ASSERT_EQUAL(aShapeBefore.getWidth(), aShapeAfter.getWidth());
+#if !defined(MACOSX) // FIXME
 CPPUNIT_ASSERT_EQUAL(aShapeBefore.getHeight() + 1000, 
aShapeAfter.getHeight());
+#endif
 }
 
 void SwTiledRenderingTest::testResetSelection()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88986] EDITING: Insert Frame dialog shows empty lists for area fill types

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88986

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

 CC||caol...@redhat.com,
   ||vstuart.fo...@utsa.edu

--- Comment #3 from V Stuart Foote vstuart.fo...@utsa.edu ---
remains valid issue with current builds of master

Version: 4.5.0.0.alpha0+
Build ID: 460b17d2712a80331a83329d2951f3e0303835cd
TinderBox: Win-x86@62-TDF, Branch:MASTER, Time: 2015-03-14_23:10:42
Locale: en_US

-- 
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 85610] Track Changes does not keep Footnote marked as deleted

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85610

saxyw...@gmail.com changed:

   What|Removed |Added

 Status|NEW |UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #4 from saxyw...@gmail.com ---
@Beluga,
Yes, the first attachment PDF shows the footnote #3 on page 5 as it should be,
but when you open the embedded ODF in LibreOffice, footnote #3 is not marked as
deleted.

@Gordo,
Thanks!
I get the same results.

This latest file has the same problem: When the changes are shown, they are not
shown correctly.


I'm still getting the same results using Version: 4.4.1.2
Build ID: 45e2de17089c24a1fa810c8f975a7171ba4cd432
Locale: en_US

-- 
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 86774] UI: Text with buttons in Template manager is gray, as if button is not active

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86774

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 Status|REOPENED|NEW

--- Comment #18 from Cor Nouws c...@nouenoff.nl ---
thus new again

-- 
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 83191] SPELLCHECK: starting apostrophe ignored

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83191

--- Comment #3 from Ad Verburg adw.verb...@zeelandnet.nl ---
Created attachment 114128
  -- https://bugs.documentfoundation.org/attachment.cgi?id=114128action=edit
screenshot after spellcheck

-- 
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/cp-4.3' - oox/source

2015-03-16 Thread Markus Mohrhard
 oox/source/drawingml/chart/chartspacefragment.cxx |6 +-
 oox/source/drawingml/chart/chartspacemodel.cxx|2 +-
 2 files changed, 6 insertions(+), 2 deletions(-)

New commits:
commit a6c9a2cd61222b06f2a2c5614c555971087eae6c
Author: Markus Mohrhard markus.mohrh...@collabora.co.uk
Date:   Tue Mar 10 14:42:26 2015 +0100

handle one more place with MSO 2007 vs OOXML spec for charts

Change-Id: I7dbc3017f2bba7b186174be2e4fd8c9ce7005d34
(cherry picked from commit 708d201884c4940647dc65e43e887803f06dce87)

diff --git a/oox/source/drawingml/chart/chartspacefragment.cxx 
b/oox/source/drawingml/chart/chartspacefragment.cxx
index 4818bad..923d0ff 100644
--- a/oox/source/drawingml/chart/chartspacefragment.cxx
+++ b/oox/source/drawingml/chart/chartspacefragment.cxx
@@ -95,8 +95,12 @@ ContextHandlerRef ChartSpaceFragment::onCreateContext( 
sal_Int32 nElement, const
 case C_TOKEN( backWall ):
 return new WallFloorContext( *this, 
mrModel.mxBackWall.create() );
 case C_TOKEN( dispBlanksAs ):
-mrModel.mnDispBlanksAs = rAttribs.getToken( XML_val, 
XML_zero );
+{
+bool bMSO2007Document = getFilter().isMSO2007Document();
+// default value is XML_gap for MSO 2007 and XML_zero in 
OOXML
+mrModel.mnDispBlanksAs = rAttribs.getToken( XML_val, 
bMSO2007Document ? XML_gap : XML_zero );
 return 0;
+}
 case C_TOKEN( floor ):
 return new WallFloorContext( *this, 
mrModel.mxFloor.create() );
 case C_TOKEN( legend ):
diff --git a/oox/source/drawingml/chart/chartspacemodel.cxx 
b/oox/source/drawingml/chart/chartspacemodel.cxx
index b76a55c..c22c519 100644
--- a/oox/source/drawingml/chart/chartspacemodel.cxx
+++ b/oox/source/drawingml/chart/chartspacemodel.cxx
@@ -24,7 +24,7 @@ namespace drawingml {
 namespace chart {
 
 ChartSpaceModel::ChartSpaceModel(bool bMSO2007Doc) :
-mnDispBlanksAs( XML_gap ),  // not zero as specified, TODO: OOXML_spec
+mnDispBlanksAs( bMSO2007Doc ? XML_gap : XML_zero ),  // difference between 
OOXML spec and MSO 2007
 mnStyle( 2 ),
 mbAutoTitleDel( !bMSO2007Doc ), // difference between OOXML spec and MSO 
2007
 mbPlotVisOnly( false ),
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-03-16 Thread Adolfo Jayme Barrientos
 include/svtools/htmlkywd.hxx  |   10 
 sal/qa/osl/socket/osl_Socket_Const_orig.h |1 
 svtools/source/svhtml/parhtml.cxx |   34 --
 3 files changed, 1 insertion(+), 44 deletions(-)

New commits:
commit ea7f16bf0b5e195d65e51c624b0fb37980bf2b95
Author: Adolfo Jayme Barrientos fit...@ubuntu.com
Date:   Fri Mar 13 22:32:14 2015 -0600

tdf#89361 Remove remnants of Gopher support

Change-Id: Ib2038a43b0d49a525199329a2c79d5779f5322fa
Reviewed-on: https://gerrit.libreoffice.org/14471
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Michael Stahl mst...@redhat.com

diff --git a/include/svtools/htmlkywd.hxx b/include/svtools/htmlkywd.hxx
index 4d52d02..54309a7 100644
--- a/include/svtools/htmlkywd.hxx
+++ b/include/svtools/htmlkywd.hxx
@@ -657,17 +657,7 @@
 
 // internal graphics names
 #define OOO_STRING_SVTOOLS_HTML_private_image private:image/
-#define OOO_STRING_SVTOOLS_HTML_internal_gopher internal-gopher-
 #define OOO_STRING_SVTOOLS_HTML_internal_icon internal-icon-
-#define OOO_STRING_SVTOOLS_HTML_INT_GOPHER_binary binary
-#define OOO_STRING_SVTOOLS_HTML_INT_GOPHER_image image
-#define OOO_STRING_SVTOOLS_HTML_INT_GOPHER_index index
-#define OOO_STRING_SVTOOLS_HTML_INT_GOPHER_menu menu
-#define OOO_STRING_SVTOOLS_HTML_INT_GOPHER_movie movie
-#define OOO_STRING_SVTOOLS_HTML_INT_GOPHER_sound sound
-#define OOO_STRING_SVTOOLS_HTML_INT_GOPHER_telnet telnet
-#define OOO_STRING_SVTOOLS_HTML_INT_GOPHER_text text
-#define OOO_STRING_SVTOOLS_HTML_INT_GOPHER_unknown unknown
 #define OOO_STRING_SVTOOLS_HTML_INT_ICON_baddata baddata
 #define OOO_STRING_SVTOOLS_HTML_INT_ICON_delayed delayed
 #define OOO_STRING_SVTOOLS_HTML_INT_ICON_embed embed
diff --git a/sal/qa/osl/socket/osl_Socket_Const_orig.h 
b/sal/qa/osl/socket/osl_Socket_Const_orig.h
index 28e2fdc..c59e8a2 100644
--- a/sal/qa/osl/socket/osl_Socket_Const_orig.h
+++ b/sal/qa/osl/socket/osl_Socket_Const_orig.h
@@ -107,7 +107,6 @@ extern C
 
 OSLTEST_DECLARE( ServiceFTP,  ftp );
 OSLTEST_DECLARE( ServiceTELNET,  telnet );
-OSLTEST_DECLARE( ServiceGOPHER,  gopher );
 OSLTEST_DECLARE( ServiceIMAP,  imap );
 OSLTEST_DECLARE( ServiceHTTPS,  https );
 OSLTEST_DECLARE( ServiceNETBIOS,  netbios-dgm );
diff --git a/svtools/source/svhtml/parhtml.cxx 
b/svtools/source/svhtml/parhtml.cxx
index cfbb59b..11e173c 100644
--- a/svtools/source/svhtml/parhtml.cxx
+++ b/svtools/source/svhtml/parhtml.cxx
@@ -1842,41 +1842,9 @@ int HTMLParser::FilterListing( int nToken )
 
 bool HTMLParser::InternalImgToPrivateURL( OUString rURL )
 {
-if( rURL.getLength()  19 || 'i' != rURL[0] ||
-rURL.compareTo( OOO_STRING_SVTOOLS_HTML_internal_gopher, 9 ) != 0 )
-return false;
-
 bool bFound = false;
 
-if( rURL.startsWith( OOO_STRING_SVTOOLS_HTML_internal_gopher ) )
-{
-OUString aName( rURL.copy(16) );
-switch( aName[0] )
-{
-case 'b':
-bFound = aName == OOO_STRING_SVTOOLS_HTML_INT_GOPHER_binary;
-break;
-case 'i':
-bFound = aName == OOO_STRING_SVTOOLS_HTML_INT_GOPHER_image ||
- aName == OOO_STRING_SVTOOLS_HTML_INT_GOPHER_index;
-break;
-case 'm':
-bFound = aName == OOO_STRING_SVTOOLS_HTML_INT_GOPHER_menu ||
- aName == OOO_STRING_SVTOOLS_HTML_INT_GOPHER_movie;
-break;
-case 's':
-bFound = aName == OOO_STRING_SVTOOLS_HTML_INT_GOPHER_sound;
-break;
-case 't':
-bFound = aName == OOO_STRING_SVTOOLS_HTML_INT_GOPHER_telnet ||
- aName == OOO_STRING_SVTOOLS_HTML_INT_GOPHER_text;
-break;
-case 'u':
-bFound = aName == OOO_STRING_SVTOOLS_HTML_INT_GOPHER_unknown;
-break;
-}
-}
-else if( rURL.startsWith( OOO_STRING_SVTOOLS_HTML_internal_icon ) )
+if( rURL.startsWith( OOO_STRING_SVTOOLS_HTML_internal_icon ) )
 {
 OUString aName( rURL.copy(14) );
 switch( aName[0] )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: configure.ac

2015-03-16 Thread Stephan Bergmann
 configure.ac |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit d44240ec532d2537575eadd043407b750761c373
Author: Stephan Bergmann sberg...@redhat.com
Date:   Mon Mar 16 11:11:28 2015 +0100

Adapt configure.ac check to new Clang -fno-sanitize-recover=... syntax

...in Clang trunk towards 3.7 (ugly to come up with a standards-conforming 
sed
BRE, though)

Change-Id: I82196433ad153ae29b92ab15e58d6806ec4ccf26

diff --git a/configure.ac b/configure.ac
index e8d4fe8..49ad20a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11203,7 +11203,8 @@ int main(int argc, char **argv) {
 #   ^~~
 #   vptr for 'QObjectPrivate'
 save_CXX=$CXX
-CXX=$(printf %s $CXX | sed -e s/-fno-sanitize-recover//)
+CXX=$(printf %s $CXX
+| sed -e s/-fno-sanitize-recover\(=[0-9A-Za-z,_-]*\)*//)
 save_CXXFLAGS=$CXXFLAGS
 CXXFLAGS=$CXXFLAGS $KDE4_CFLAGS
 save_LIBS=$LIBS
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-03-16 Thread László Németh
 sw/source/core/frmedt/fecopy.cxx |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

New commits:
commit f42608ecab31dc3d626a7b30a779b6591b1f7dd6
Author: László Németh laszlo.nem...@collabora.com
Date:   Mon Mar 16 11:04:46 2015 +0100

fdo#37156 insert table copy as nested table in non-starting cell position

Cherry-picked from 7600a2942ce2b9dac66836105bed6620d55abec2

Change-Id: I7584ed179e92abcb10ef0e3a7e4e0d30d24f86bf

diff --git a/sw/source/core/frmedt/fecopy.cxx b/sw/source/core/frmedt/fecopy.cxx
index 8c5b6b9..5bac3ab 100644
--- a/sw/source/core/frmedt/fecopy.cxx
+++ b/sw/source/core/frmedt/fecopy.cxx
@@ -824,7 +824,12 @@ sal_Bool SwFEShell::Paste( SwDoc* pClpDoc, sal_Bool 
bIncludingPageFrames )
 FOREACHPAM_START(GetCrsr())
 
 if( pSrcNd 
-0 != ( pDestNd = GetDoc()-IsIdxInTbl( PCURCRSR-GetPoint()-nNode 
)))
+0 != ( pDestNd = GetDoc()-IsIdxInTbl( PCURCRSR-GetPoint()-nNode 
)) 
+// are we at the beginning of the cell? (if not, we will insert a 
nested table)
+// first paragraph of the cell?
+PCURCRSR-GetNode().GetIndex() == 
PCURCRSR-GetNode().FindTableBoxStartNode()-GetIndex()+1 
+// beginning of the paragraph?
+!PCURCRSR-GetPoint()-nContent.GetIndex())
 {
 SwPosition aDestPos( *PCURCRSR-GetPoint() );
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 90029] Crash with form (frm::TimeFieldColumn)

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90029

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

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

tdf#90029: FM_PROP_DATE/TIME confusion

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 90029] Crash with form (frm::TimeFieldColumn)

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90029

--- Comment #6 from Lionel Elie Mamane lio...@mamane.lu ---
This rings a bell, I get the impression I recently fixed exactly the same
confusion betweeen Time and Date property, certainly at another place in the
code.

-- 
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 42346] FILESAVE: Cross-references to numbered items (object, graphic, table) turn to plain text on export to .doc or .docx

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42346

--- Comment #31 from Tomislav Nakic-Alfirevic na...@gmx.com ---
(In reply to Tomislav Nakic-Alfirevic from comment #30)

 I'm afraid these are the kinds of issues which prevent use of LO in a hybrid
 (MS/LO) environment, especially when they go unresolved for 3.5 years.

One workaround that I've found is to use .docx instead of .doc: the references
remain intact after closing and reopening the document.

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


[Libreoffice-bugs] [Bug 90036] New: FORMATTING: Cannot reset numbering in bullets/numbers

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90036

Bug ID: 90036
   Summary: FORMATTING: Cannot reset numbering in bullets/numbers
   Product: LibreOffice
   Version: 4.4.1.2 rc
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cytan...@yahoo.com

Created attachment 114126
  -- https://bugs.documentfoundation.org/attachment.cgi?id=114126action=edit
Example of bullets numbering bug.

The numbering in bullets cannot be reset to (1). Any other number seems to
work but not (1). See attached example.

-- 
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/vclref' - framework/source

2015-03-16 Thread Michael Meeks
 framework/source/layoutmanager/toolbarlayoutmanager.cxx |   14 +++---
 framework/source/uielement/popuptoolbarcontroller.cxx   |6 +++---
 2 files changed, 10 insertions(+), 10 deletions(-)

New commits:
commit d999fa979139c34d050560dfb99978ce427471be
Author: Michael Meeks michael.me...@collabora.com
Date:   Mon Mar 16 13:25:26 2015 +

framework: fix for toolkit updates.

Change-Id: I1629cb6574361d6dd855140d61f38229ab593ed7

diff --git a/framework/source/layoutmanager/toolbarlayoutmanager.cxx 
b/framework/source/layoutmanager/toolbarlayoutmanager.cxx
index b044bad..356d5de 100644
--- a/framework/source/layoutmanager/toolbarlayoutmanager.cxx
+++ b/framework/source/layoutmanager/toolbarlayoutmanager.cxx
@@ -1031,14 +1031,14 @@ void ToolbarLayoutManager::setParentWindow(
 if ( xParentWindow.is() )
 {
 SolarMutexGuard aGuard;
-::DockingAreaWindow* pWindow = dynamic_cast ::DockingAreaWindow* 
(VCLUnoHelper::GetWindow( xTopDockWindow ) );
+VclPtr ::DockingAreaWindow  pWindow = dynamic_cast 
::DockingAreaWindow* (VCLUnoHelper::GetWindow( xTopDockWindow ).get() );
 if( pWindow ) pWindow-SetAlign( WINDOWALIGN_TOP );
-pWindow = dynamic_cast ::DockingAreaWindow* 
(VCLUnoHelper::GetWindow( xBottomDockWindow ) );
-if( pWindow ) pWindow-SetAlign( WINDOWALIGN_BOTTOM );
-pWindow = dynamic_cast ::DockingAreaWindow* 
(VCLUnoHelper::GetWindow( xLeftDockWindow ) );
-if( pWindow ) pWindow-SetAlign( WINDOWALIGN_LEFT );
-pWindow = dynamic_cast ::DockingAreaWindow* 
(VCLUnoHelper::GetWindow( xRightDockWindow ) );
-if( pWindow ) pWindow-SetAlign( WINDOWALIGN_RIGHT );
+pWindow = dynamic_cast ::DockingAreaWindow* 
(VCLUnoHelper::GetWindow( xBottomDockWindow ).get() );
+if( pWindow ) pWindow-SetAlign( WINDOWALIGN_BOTTOM );
+pWindow = dynamic_cast ::DockingAreaWindow* 
(VCLUnoHelper::GetWindow( xLeftDockWindow ).get() );
+if( pWindow ) pWindow-SetAlign( WINDOWALIGN_LEFT );
+pWindow = dynamic_cast ::DockingAreaWindow* 
(VCLUnoHelper::GetWindow( xRightDockWindow ).get() );
+if( pWindow ) pWindow-SetAlign( WINDOWALIGN_RIGHT );
 implts_reparentToolbars();
 }
 else
diff --git a/framework/source/uielement/popuptoolbarcontroller.cxx 
b/framework/source/uielement/popuptoolbarcontroller.cxx
index fbb2808..625ee1b 100644
--- a/framework/source/uielement/popuptoolbarcontroller.cxx
+++ b/framework/source/uielement/popuptoolbarcontroller.cxx
@@ -146,7 +146,7 @@ throw ( css::uno::Exception, css::uno::RuntimeException, 
std::exception )
 }
 
 SolarMutexGuard aSolarLock;
-ToolBox* pToolBox = static_cast ToolBox* ( VCLUnoHelper::GetWindow( 
getParent() ) );
+VclPtr ToolBox  pToolBox = static_cast ToolBox* ( 
VCLUnoHelper::GetWindow( getParent() ).get() );
 if ( pToolBox )
 {
 ToolBoxItemBits nCurStyle( pToolBox-GetItemBits( m_nToolBoxId ) );
@@ -181,7 +181,7 @@ PopupMenuToolbarController::createPopupWindow()
 createPopupMenuController();
 
 SolarMutexGuard aSolarLock;
-ToolBox* pToolBox = static_cast ToolBox* ( VCLUnoHelper::GetWindow( 
getParent() ) );
+VclPtr ToolBox  pToolBox = static_cast ToolBox* ( 
VCLUnoHelper::GetWindow( getParent() ).get() );
 if ( !pToolBox )
 return xRet;
 
@@ -539,7 +539,7 @@ static bool Impl_ExistURLInMenu(
 void NewToolbarController::setItemImage( const OUString rCommand )
 {
 SolarMutexGuard aSolarLock;
-ToolBox* pToolBox = static_cast ToolBox* ( VCLUnoHelper::GetWindow( 
getParent() ) );
+VclPtr ToolBox pToolBox = static_cast ToolBox* ( 
VCLUnoHelper::GetWindow( getParent() ).get() );
 if ( !pToolBox )
 return;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-03-16 Thread Markus Mohrhard
 oox/source/drawingml/chart/chartspacefragment.cxx |6 +-
 oox/source/drawingml/chart/chartspacemodel.cxx|2 +-
 2 files changed, 6 insertions(+), 2 deletions(-)

New commits:
commit 5da802443023e0a43cb6979b0fd82bc5b76311d8
Author: Markus Mohrhard markus.mohrh...@collabora.co.uk
Date:   Tue Mar 10 14:42:26 2015 +0100

handle one more place with MSO 2007 vs OOXML spec for charts

Change-Id: I7dbc3017f2bba7b186174be2e4fd8c9ce7005d34
(cherry picked from commit 708d201884c4940647dc65e43e887803f06dce87)

diff --git a/oox/source/drawingml/chart/chartspacefragment.cxx 
b/oox/source/drawingml/chart/chartspacefragment.cxx
index 8df7f3b..cbcc905 100644
--- a/oox/source/drawingml/chart/chartspacefragment.cxx
+++ b/oox/source/drawingml/chart/chartspacefragment.cxx
@@ -91,8 +91,12 @@ ContextHandlerRef ChartSpaceFragment::onCreateContext( 
sal_Int32 nElement, const
 case C_TOKEN( backWall ):
 return new WallFloorContext( *this, 
mrModel.mxBackWall.create() );
 case C_TOKEN( dispBlanksAs ):
-mrModel.mnDispBlanksAs = rAttribs.getToken( XML_val, 
XML_zero );
+{
+bool bMSO2007Document = getFilter().isMSO2007Document();
+// default value is XML_gap for MSO 2007 and XML_zero in 
OOXML
+mrModel.mnDispBlanksAs = rAttribs.getToken( XML_val, 
bMSO2007Document ? XML_gap : XML_zero );
 return 0;
+}
 case C_TOKEN( floor ):
 return new WallFloorContext( *this, 
mrModel.mxFloor.create() );
 case C_TOKEN( legend ):
diff --git a/oox/source/drawingml/chart/chartspacemodel.cxx 
b/oox/source/drawingml/chart/chartspacemodel.cxx
index da86a4b..7dee6a2 100644
--- a/oox/source/drawingml/chart/chartspacemodel.cxx
+++ b/oox/source/drawingml/chart/chartspacemodel.cxx
@@ -26,7 +26,7 @@ namespace chart {
 // 
 
 ChartSpaceModel::ChartSpaceModel(bool bMSO2007Doc) :
-mnDispBlanksAs( XML_gap ),  // not zero as specified, TODO: OOXML_spec
+mnDispBlanksAs( bMSO2007Doc ? XML_gap : XML_zero ),  // difference between 
OOXML spec and MSO 2007
 mnStyle( 2 ),
 mbAutoTitleDel( !bMSO2007Doc ), // difference between OOXML spec and MSO 
2007
 mbPlotVisOnly( false ),
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88986] EDITING: Insert Frame dialog shows empty lists for area fill types

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88986

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

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

-- 
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/vclref' - avmedia/source basctl/source chart2/source compilerplugins/clang cui/source dbaccess/source extensions/source include/avmedia include/svx repo

2015-03-16 Thread Noel Grandin
 avmedia/source/viewer/mediawindow_impl.cxx  |1 
 avmedia/source/viewer/mediawindow_impl.hxx  |2 
 basctl/source/basicide/baside2.hxx  |2 
 basctl/source/basicide/baside2b.cxx |1 
 basctl/source/basicide/brkdlg.cxx   |1 
 basctl/source/basicide/brkdlg.hxx   |2 
 basctl/source/basicide/layout.cxx   |2 
 basctl/source/basicide/layout.hxx   |2 
 basctl/source/inc/basidesh.hxx  |6 
 chart2/source/controller/dialogs/DataBrowser.cxx|6 
 chart2/source/controller/dialogs/dlg_DataEditor.cxx |1 
 chart2/source/controller/dialogs/tp_ChartType.cxx   |4 
 chart2/source/controller/inc/dlg_DataEditor.hxx |4 
 chart2/source/controller/main/ElementSelector.hxx   |2 
 compilerplugins/clang/vclwidgets.cxx|   16 ++
 cui/source/factory/dlgfact.cxx  |2 
 cui/source/options/optaboutconfig.cxx   |1 
 cui/source/options/optaboutconfig.hxx   |2 
 dbaccess/source/ui/app/AppDetailPageHelper.cxx  |   10 -
 dbaccess/source/ui/app/AppDetailPageHelper.hxx  |4 
 dbaccess/source/ui/control/RelationControl.cxx  |4 
 dbaccess/source/ui/dlg/textconnectionsettings.cxx   |1 
 dbaccess/source/ui/inc/textconnectionsettings.hxx   |4 
 extensions/source/propctrlr/browserlistbox.cxx  |1 
 extensions/source/propctrlr/browserlistbox.hxx  |3 
 extensions/source/propctrlr/formlinkdialog.cxx  |4 
 extensions/source/propctrlr/formlinkdialog.hxx  |8 -
 include/avmedia/mediawindow.hxx |3 
 include/svx/sidebar/Popup.hxx   |4 
 reportdesign/source/ui/dlg/AddField.cxx |1 
 reportdesign/source/ui/dlg/CondFormat.cxx   |6 
 reportdesign/source/ui/dlg/Navigator.cxx|2 
 reportdesign/source/ui/inc/AddField.hxx |2 
 reportdesign/source/ui/inc/CondFormat.hxx   |3 
 reportdesign/source/ui/inc/DesignView.hxx   |4 
 reportdesign/source/ui/inc/MarkedSection.hxx|2 
 reportdesign/source/ui/inc/ReportController.hxx |2 
 reportdesign/source/ui/inc/ReportWindow.hxx |4 
 reportdesign/source/ui/inc/ScrollHelper.hxx |4 
 reportdesign/source/ui/inc/ViewsWindow.hxx  |9 -
 reportdesign/source/ui/report/DesignView.cxx|8 -
 reportdesign/source/ui/report/FixedTextColor.cxx|2 
 reportdesign/source/ui/report/FormattedFieldBeautifier.cxx  |2 
 reportdesign/source/ui/report/ReportController.cxx  |   31 ++--
 reportdesign/source/ui/report/ReportWindow.cxx  |6 
 reportdesign/source/ui/report/ScrollHelper.cxx  |4 
 reportdesign/source/ui/report/ViewsWindow.cxx   |   30 ++--
 reportdesign/source/ui/report/propbrw.cxx   |2 
 sc/source/ui/app/inputwin.cxx   |1 
 sc/source/ui/condformat/condformatdlg.cxx   |   71 
+-
 sc/source/ui/condformat/condformatdlgentry.cxx  |   24 +--
 sc/source/ui/inc/checklistmenu.hxx  |2 
 sc/source/ui/inc/condformatdlg.hxx  |6 
 sc/source/ui/inc/condformatdlgentry.hxx |2 
 sc/source/ui/inc/conflictsdlg.hxx   |2 
 sc/source/ui/inc/datafdlg.hxx   |6 
 sc/source/ui/inc/gridwin.hxx|4 
 sc/source/ui/inc/inputwin.hxx   |2 
 sc/source/ui/inc/optsolver.hxx  |8 -
 sc/source/ui/inc/tabview.hxx|   12 -
 sc/source/ui/inc/viewfunc.hxx   |2 
 sc/source/ui/miscdlgs/conflictsdlg.cxx  |1 
 sc/source/ui/miscdlgs/datafdlg.cxx  |   38 ++---
 sc/source/ui/miscdlgs/optsolver.cxx |8 -
 sc/source/ui/view/gridwin.cxx   |4 
 sc/source/ui/view/tabview.cxx   |   12 -
 sc/source/ui/view/tabview5.cxx  |   10 -
 sc/source/ui/view/viewfun3.cxx  |

[Libreoffice-bugs] [Bug 83191] SPELLCHECK: starting apostrophe ignored

2015-03-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83191

raal r...@post.cz 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


  1   2   3   4   >