[Libreoffice-commits] core.git: compilerplugins/clang

2016-12-21 Thread Stephan Bergmann
 compilerplugins/clang/fpcomparison.cxx |5 -
 1 file changed, 5 deletions(-)

New commits:
commit c74688dfd40351cead1644d8cfe9dad4622d9edc
Author: Stephan Bergmann 
Date:   Thu Dec 22 08:58:09 2016 +0100

That whitelisted code is already gone again

Change-Id: I1fa04b51823ac9707f0dd3d7c8209c69e917ef28

diff --git a/compilerplugins/clang/fpcomparison.cxx 
b/compilerplugins/clang/fpcomparison.cxx
index 5bc5d95..025d4e0 100644
--- a/compilerplugins/clang/fpcomparison.cxx
+++ b/compilerplugins/clang/fpcomparison.cxx
@@ -322,11 +322,6 @@ bool FpComparison::ignore(FunctionDecl* function)
 || 
dc.Function("testPlotAreaManualLayoutXLSX").Class("Chart2ExportTest").GlobalNamespace()
 || 
dc.Function("testLegendManualLayoutXLSX").Class("Chart2ExportTest").GlobalNamespace()
 || 
dc.Function("SetScreenNumber").Class("AquaSalFrame").GlobalNamespace()
-|| dc.Function("encode_glyph").GlobalNamespace()
-|| dc.Function("LayoutText").Class("SimpleWinLayout").GlobalNamespace()
-|| 
dc.Function("DisableFontScaling").Class("WinLayout").GlobalNamespace()
-|| dc.Function("LayoutText").Class("UniscribeLayout").GlobalNamespace()
-|| 
dc.Function("GetTextLayout").Class("WinSalGraphics").GlobalNamespace()
 || (vclFloatDevicePixel
 && 
(dc.Function("Justify").Class("GenericSalLayout").GlobalNamespace()
 || 
dc.Function("AdjustLayout").Class("MultiSalLayout").GlobalNamespace(
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: compilerplugins/clang

2016-12-21 Thread Stephan Bergmann
 compilerplugins/clang/implicitboolconversion.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 595ff0c6ea68b99e3730e0f0616f9bd7d391c8ac
Author: Stephan Bergmann 
Date:   Thu Dec 22 08:54:04 2016 +0100

Also don't warn for plain C code

...as needed by clang-cl for
bean/native/win32/com_sun_star_comp_beans_LocalOfficeWindow.c

Change-Id: I862afb6b549015d951a898ee415370540ffab1f6

diff --git a/compilerplugins/clang/implicitboolconversion.cxx 
b/compilerplugins/clang/implicitboolconversion.cxx
index 629a507..9bb8be2 100644
--- a/compilerplugins/clang/implicitboolconversion.cxx
+++ b/compilerplugins/clang/implicitboolconversion.cxx
@@ -995,7 +995,7 @@ void ImplicitBoolConversion::checkCXXConstructExpr(
 }
 
 void ImplicitBoolConversion::reportWarning(ImplicitCastExpr const * expr) {
-if (!compiler.getLangOpts().ObjC2 || compiler.getLangOpts().CPlusPlus) {
+if (compiler.getLangOpts().CPlusPlus) {
 report(
 DiagnosticsEngine::Warning,
 "implicit conversion (%0) from %1 to %2", expr->getLocStart())
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-12-21 Thread Justin Luth
 sw/qa/extras/ooxmlexport/ooxmlexport8.cxx|4 ++--
 writerfilter/source/dmapper/DomainMapper.cxx |4 +++-
 2 files changed, 5 insertions(+), 3 deletions(-)

New commits:
commit a21035c779167ec0e84ac21b9e5cdf6f2553ab30
Author: Justin Luth 
Date:   Tue Dec 20 13:51:26 2016 +0300

related to tdf#97417: fix unit test's early para numbering

The unit test's first blank page already started the paragraph
numbering. Setting it so that a contentless, single paragraph
section will not display numbering.  In fact, no dummy paragraph
should have numbering, but that would get complicated.

This is in preparation for tdf#104710.

Change-Id: I98c9926cb3cd1e3fe3cd43bf46cab22bfbec7eba
Reviewed-on: https://gerrit.libreoffice.org/32235
Tested-by: Jenkins 
Reviewed-by: Miklos Vajna 
(cherry picked from commit c829e01e973ac32fb625925ce83f843ad30d94db)
Reviewed-on: https://gerrit.libreoffice.org/32326
Reviewed-by: Justin Luth 

diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx
index 52e6806..732730f 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx
@@ -2017,8 +2017,8 @@ DECLARE_OOXMLEXPORT_TEST(testTdf92157, "tdf92157.docx")
 DECLARE_OOXMLEXPORT_TEST(testTdf97417, "section_break_numbering.docx")
 {
 uno::Reference xProps(getParagraph(1), 
uno::UNO_QUERY_THROW);
-//CPPUNIT_ASSERT_MESSAGE("1st page: first paragraph erroneous numbering",
-//!xProps->getPropertyValue("NumberingRules").hasValue());
+CPPUNIT_ASSERT_MESSAGE("1st page: first paragraph erroneous numbering",
+!xProps->getPropertyValue("NumberingRules").hasValue());
 // paragraph with numbering and section break was removed by writerfilter
 // but its numbering was copied to all following paragraphs
 CPPUNIT_ASSERT_MESSAGE("2nd page: first paragraph missing numbering",
diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index 45f2764..f79ad82 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -3281,7 +3281,9 @@ void DomainMapper::lcl_utext(const sal_uInt8 * data_, 
size_t len)
&& !( pContext && pContext->isSet(PROP_BREAK_TYPE) )
&& !m_pImpl->GetIsDummyParaAddedForTableInSection()
&& !m_pImpl->GetIsPreviousParagraphFramed();
-PropertyMapPtr xContext = bRemove ? 
m_pImpl->GetTopContextOfType(CONTEXT_PARAGRAPH) : PropertyMapPtr();
+
+const bool bNoNumbering = bRemove || (!m_pImpl->GetParaChanged() 
&& m_pImpl->GetParaSectpr() && bSingleParagraph);
+PropertyMapPtr xContext = bNoNumbering ? 
m_pImpl->GetTopContextOfType(CONTEXT_PARAGRAPH) : PropertyMapPtr();
 if (xContext)
 {
 // tdf#97417 delete numbering of the paragraph
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-12-21 Thread Justin Luth
 sw/qa/extras/ooxmlimport/ooxmlimport.cxx |2 --
 1 file changed, 2 deletions(-)

New commits:
commit 9c2b0c55cd91ed5b85a1df7df3b2cd12afffde91
Author: Justin Luth 
Date:   Thu Dec 22 10:39:21 2016 +0300

fix tinderbox: ooxmlimport # of paragraphs assert

Test name: testTdf75573_lostTable::Import
equality assertion failed
- Expected: 6
- Actual  : 7
- # of paragraphs

Change-Id: I90791785dab35146e58de4f6a38cd86164f422e0
Reviewed-on: https://gerrit.libreoffice.org/32327
Reviewed-by: Justin Luth 
Tested-by: Justin Luth 

diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 
b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index 7fd1f03..b1ccafc 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -736,8 +736,6 @@ DECLARE_OOXMLIMPORT_TEST(testTdf75573_lostTable, 
"tdf75573_lostTable.docx")
 uno::Reference 
xDraws(xDrawPageSupplier->getDrawPage(), uno::UNO_QUERY);
 CPPUNIT_ASSERT_EQUAL_MESSAGE("# of frames/shapes", sal_Int32(0), 
xDraws->getCount() );
 
-CPPUNIT_ASSERT_EQUAL_MESSAGE("# of paragraphs", 6, getParagraphs() );
-
 CPPUNIT_ASSERT_EQUAL_MESSAGE("# of pages", 3, getPages() );
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-12-21 Thread Justin Luth
 sw/qa/extras/ooxmlimport/ooxmlimport.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit cc07f1c044b47e08b1fb0cab631be057b34ee1bc
Author: Justin Luth 
Date:   Thu Dec 22 09:00:42 2016 +0300

fix tinderbox int to sal_Int32 conversion failure

note: template argument deduction/substitution failed:
sw/qa/extras/ooxmlimport/ooxmlimport.cxx:737:186:
note: deduced conflicting types for parameter
‘const T’ (‘int’ and ‘sal_Int32 {aka long 
int}’)

CPPUNIT_ASSERT_EQUAL_MESSAGE("# of frames/shapes", 0, xDraws->getCount() );

Change-Id: I96d074a420ac16d9c5e3a3d200372289366039e9
Reviewed-on: https://gerrit.libreoffice.org/32325
Reviewed-by: Justin Luth 
Tested-by: Justin Luth 

diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 
b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index 2372307..7fd1f03 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -730,11 +730,11 @@ DECLARE_OOXMLIMPORT_TEST(testTdf75573_lostTable, 
"tdf75573_lostTable.docx")
 {
 uno::Reference xTablesSupplier(mxComponent, 
uno::UNO_QUERY);
 uno::Reference 
xTables(xTablesSupplier->getTextTables(), uno::UNO_QUERY);
-CPPUNIT_ASSERT_EQUAL_MESSAGE("# of tables", 1, xTables->getCount() );
+CPPUNIT_ASSERT_EQUAL_MESSAGE("# of tables", sal_Int32(1), 
xTables->getCount() );
 
 uno::Reference xDrawPageSupplier(mxComponent, 
uno::UNO_QUERY);
 uno::Reference 
xDraws(xDrawPageSupplier->getDrawPage(), uno::UNO_QUERY);
-CPPUNIT_ASSERT_EQUAL_MESSAGE("# of frames/shapes", 0, xDraws->getCount() );
+CPPUNIT_ASSERT_EQUAL_MESSAGE("# of frames/shapes", sal_Int32(0), 
xDraws->getCount() );
 
 CPPUNIT_ASSERT_EQUAL_MESSAGE("# of paragraphs", 6, getParagraphs() );
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104741] PDF EXPORT: Extra line added to the output file

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104741

Fakabbir amin  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |fakab...@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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104741] PDF EXPORT: Extra line added to the output file

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104741

Fakabbir amin  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

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


[Libreoffice-bugs] [Bug 104770] Scanned PDF shows hidden text

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104770

Fakabbir amin  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |fakab...@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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104770] Scanned PDF shows hidden text

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104770

Fakabbir amin  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

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


[Libreoffice-bugs] [Bug 104849] Find report

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104849

--- Comment #3 from Andreas Säger  ---
Created attachment 129855
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129855=edit
Spreadsheet, Dialog, Basic

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


[Libreoffice-commits] core.git: offapi/com ucb/source xmlsecurity/qa xmlsecurity/source xmlsecurity/workben

2016-12-21 Thread Tor Lillqvist
 offapi/com/sun/star/xml/crypto/XSEInitializer.idl   |5 -
 ucb/source/ucp/cmis/certvalidation_handler.cxx  |2 
 ucb/source/ucp/webdav-neon/NeonSession.cxx  |2 
 ucb/source/ucp/webdav/SerfSession.cxx   |2 
 xmlsecurity/qa/certext/SanCertExt.cxx   |2 
 xmlsecurity/qa/unit/pdfsigning/pdfsigning.cxx   |   10 +-
 xmlsecurity/source/helper/documentsignaturemanager.cxx  |2 
 xmlsecurity/source/xmlsec/mscrypt/seinitializer_mscryptimpl.cxx |   43 
+-
 xmlsecurity/source/xmlsec/mscrypt/seinitializer_mscryptimpl.hxx |2 
 xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.cxx |2 
 xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.hxx |2 
 xmlsecurity/workben/pdfverify.cxx   |2 
 12 files changed, 58 insertions(+), 18 deletions(-)

New commits:
commit b1c145876007352a59f389126746c8ef0f660ee5
Author: Tor Lillqvist 
Date:   Thu Dec 22 08:16:23 2016 +0200

Revert "[API CHANGE] createSecurityContext() was always called with an 
empty string"

I got cold feet. I don't want to have to revert this many years later
instead, when some obscure 3rd-party software stops working.

This reverts commit e1ce7bad62f07faf8f21adac6c3848d142f61953.

diff --git a/offapi/com/sun/star/xml/crypto/XSEInitializer.idl 
b/offapi/com/sun/star/xml/crypto/XSEInitializer.idl
index 2c1beeb..fc8ce62 100644
--- a/offapi/com/sun/star/xml/crypto/XSEInitializer.idl
+++ b/offapi/com/sun/star/xml/crypto/XSEInitializer.idl
@@ -35,9 +35,12 @@ interface XSEInitializer : com::sun::star::uno::XInterface
 /**
Creates a security context.
 
+   @param aString
+reserved for internal use.
+
@returnthe security context created
  */
-::com::sun::star::xml::crypto::XXMLSecurityContext createSecurityContext();
+::com::sun::star::xml::crypto::XXMLSecurityContext createSecurityContext( 
[in] string aString );
 
 /**
  * Frees a security context.
diff --git a/ucb/source/ucp/cmis/certvalidation_handler.cxx 
b/ucb/source/ucp/cmis/certvalidation_handler.cxx
index cf2993c..f13c75b 100644
--- a/ucb/source/ucp/cmis/certvalidation_handler.cxx
+++ b/ucb/source/ucp/cmis/certvalidation_handler.cxx
@@ -46,7 +46,7 @@ namespace cmis
 if ( xSEInitializer.is() )
 {
 uno::Reference< xml::crypto::XXMLSecurityContext > 
xSecurityContext(
-xSEInitializer->createSecurityContext() );
+xSEInitializer->createSecurityContext( OUString() ) );
 
 uno::Reference< xml::crypto::XSecurityEnvironment > 
xSecurityEnv(
 xSecurityContext->getSecurityEnvironment() );
diff --git a/ucb/source/ucp/webdav-neon/NeonSession.cxx 
b/ucb/source/ucp/webdav-neon/NeonSession.cxx
index f2570c7..d614a79 100644
--- a/ucb/source/ucp/webdav-neon/NeonSession.cxx
+++ b/ucb/source/ucp/webdav-neon/NeonSession.cxx
@@ -398,7 +398,7 @@ extern "C" int NeonSession_CertificationNotify( void 
*userdata,
 return 1;
 
 uno::Reference< xml::crypto::XXMLSecurityContext > xSecurityContext(
-xSEInitializer->createSecurityContext() );
+xSEInitializer->createSecurityContext( OUString() ) );
 
 uno::Reference< xml::crypto::XSecurityEnvironment > xSecurityEnv(
 xSecurityContext->getSecurityEnvironment() );
diff --git a/ucb/source/ucp/webdav/SerfSession.cxx 
b/ucb/source/ucp/webdav/SerfSession.cxx
index 6ee053f..40c8ffe 100644
--- a/ucb/source/ucp/webdav/SerfSession.cxx
+++ b/ucb/source/ucp/webdav/SerfSession.cxx
@@ -373,7 +373,7 @@ apr_status_t SerfSession::verifySerfCertificateChain (
 css::uno::Reference< css::xml::crypto::XSEInitializer > xSEInitializer 
=
 css::xml::crypto::SEInitializer::create( xContext );
 
-xSecurityContext = xSEInitializer->createSecurityContext();
+xSecurityContext = xSEInitializer->createSecurityContext( OUString() );
 if (xSecurityContext.is())
 xSecurityEnv = xSecurityContext->getSecurityEnvironment();
 
diff --git a/xmlsecurity/qa/certext/SanCertExt.cxx 
b/xmlsecurity/qa/certext/SanCertExt.cxx
index 3102ca0..43254fd 100644
--- a/xmlsecurity/qa/certext/SanCertExt.cxx
+++ b/xmlsecurity/qa/certext/SanCertExt.cxx
@@ -126,7 +126,7 @@ namespace {
 uno::Reference< lang::XMultiServiceFactory > 
factory(context->getServiceManager(), uno::UNO_QUERY_THROW);
 uno::Reference< xml::crypto::XSEInitializer > xSEInitializer = 
xml::crypto::SEInitializer::create(context);
 uno::Reference< xml::crypto::XXMLSecurityContext > xSecurityContext(
-xSEInitializer->createSecurityContext());
+xSEInitializer->createSecurityContext(OUString()));
 return xSecurityContext->getSecurityEnvironment();
 }
 
diff --git 

[Libreoffice-bugs] [Bug 104771] Graphics unit is not displayed correctly in the converted file.

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104771

Fakabbir amin  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |fakab...@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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104771] Graphics unit is not displayed correctly in the converted file.

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104771

Fakabbir amin  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

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


[Libreoffice-bugs] [Bug 104820] Line thickness is not kept when using xlsx format internal in LibreOffice

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104820

Bartosz  changed:

   What|Removed |Added

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

--- Comment #2 from Bartosz  ---


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

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


[Libreoffice-bugs] [Bug 61148] FORMATTING: Different thickness of lines for LibreOffice Calc and Microsoft Excel

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61148

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

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


[Libreoffice-bugs] [Bug 104820] Line thickness is not kept when using xlsx format internal in LibreOffice

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104820

--- Comment #1 from Bartosz  ---
It is limitation of xls/xlsx format.
We cannot do much to fix that.

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


[Libreoffice-bugs] [Bug 104821] Xlsx hairline border is imported as a solid border in Calc while there' s a better substitute

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104821

Bartosz  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Bartosz  ---
As I know there is a problem with printing such hairstyle cell border:
- Excel is printing hairstyle cell border as solid line.
- LibreOffice is printing hairstyle cell border as grey/dotted line.

Could you please compare these styles after printing, and confirm that?

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


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

2016-12-21 Thread Noel Grandin
 drawinglayer/source/primitive2d/animatedprimitive2d.cxx |   14 +--
 drawinglayer/source/primitive2d/backgroundcolorprimitive2d.cxx  |4 -
 drawinglayer/source/primitive2d/baseprimitive2d.cxx |   38 
--
 drawinglayer/source/primitive2d/controlprimitive2d.cxx  |4 -
 drawinglayer/source/primitive2d/cropprimitive2d.cxx |6 -
 drawinglayer/source/primitive2d/fillhatchprimitive2d.cxx|6 -
 drawinglayer/source/primitive2d/graphicprimitivehelper2d.cxx|   10 +-
 drawinglayer/source/primitive2d/gridprimitive2d.cxx |4 -
 drawinglayer/source/primitive2d/groupprimitive2d.cxx|4 -
 drawinglayer/source/primitive2d/helplineprimitive2d.cxx |4 -
 drawinglayer/source/primitive2d/hiddengeometryprimitive2d.cxx   |2 
 drawinglayer/source/primitive2d/patternfillprimitive2d.cxx  |4 -
 drawinglayer/source/primitive2d/polygonprimitive2d.cxx  |4 -
 drawinglayer/source/primitive2d/primitivetools2d.cxx|   16 ++--
 drawinglayer/source/primitive2d/sceneprimitive2d.cxx|4 -
 drawinglayer/source/primitive2d/shadowprimitive2d.cxx   |4 -
 drawinglayer/source/primitive2d/texteffectprimitive2d.cxx   |4 -
 drawinglayer/source/primitive2d/unifiedtransparenceprimitive2d.cxx  |6 -
 drawinglayer/source/processor2d/hittestprocessor2d.cxx  |2 
 include/drawinglayer/primitive2d/animatedprimitive2d.hxx|6 -
 include/drawinglayer/primitive2d/backgroundcolorprimitive2d.hxx |2 
 include/drawinglayer/primitive2d/baseprimitive2d.hxx|   22 
-
 include/drawinglayer/primitive2d/controlprimitive2d.hxx |2 
 include/drawinglayer/primitive2d/cropprimitive2d.hxx|2 
 include/drawinglayer/primitive2d/fillhatchprimitive2d.hxx   |2 
 include/drawinglayer/primitive2d/gridprimitive2d.hxx|2 
 include/drawinglayer/primitive2d/groupprimitive2d.hxx   |4 -
 include/drawinglayer/primitive2d/helplineprimitive2d.hxx|2 
 include/drawinglayer/primitive2d/hiddengeometryprimitive2d.hxx  |2 
 include/drawinglayer/primitive2d/patternfillprimitive2d.hxx |2 
 include/drawinglayer/primitive2d/polygonprimitive2d.hxx |2 
 include/drawinglayer/primitive2d/primitivetools2d.hxx   |8 +-
 include/drawinglayer/primitive2d/sceneprimitive2d.hxx   |2 
 include/drawinglayer/primitive2d/shadowprimitive2d.hxx  |2 
 include/drawinglayer/primitive2d/texteffectprimitive2d.hxx  |2 
 include/drawinglayer/primitive2d/unifiedtransparenceprimitive2d.hxx |2 
 svx/inc/sdr/primitive2d/sdrole2primitive2d.hxx  |2 
 svx/inc/sdr/primitive2d/sdrtextprimitive2d.hxx  |2 
 svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx|6 -
 svx/source/sdr/primitive2d/sdrole2primitive2d.cxx   |4 -
 svx/source/sdr/primitive2d/sdrtextprimitive2d.cxx   |4 -
 sw/source/core/draw/dflyobj.cxx |6 -
 42 files changed, 134 insertions(+), 96 deletions(-)

New commits:
commit cc15806b527cc02c57bd92211fda259e33963106
Author: Noel Grandin 
Date:   Mon Nov 14 09:11:35 2016 +0200

convert BasePrimitive2D::get2DDecomposition to use a visitor

which lets us avoid constructing the decomposition when we are only
interesting in the bounding box, e.g. for hit testing

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

diff --git a/drawinglayer/source/primitive2d/animatedprimitive2d.cxx 
b/drawinglayer/source/primitive2d/animatedprimitive2d.cxx
index 13564af..63c2527 100644
--- a/drawinglayer/source/primitive2d/animatedprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/animatedprimitive2d.cxx
@@ -64,7 +64,7 @@ namespace drawinglayer
 return false;
 }
 
-void 
AnimatedSwitchPrimitive2D::get2DDecomposition(Primitive2DContainer& rContainer, 
const geometry::ViewInformation2D& rViewInformation) const
+void 
AnimatedSwitchPrimitive2D::get2DDecomposition(Primitive2DDecompositionVisitor& 
rVisitor, const geometry::ViewInformation2D& rViewInformation) const
 {
 if(!getChildren().empty())
 {
@@ -78,7 +78,7 @@ namespace drawinglayer
 }
 
 const Primitive2DReference xRef(getChildren()[nIndex], 
uno::UNO_QUERY_THROW);
-rContainer.push_back(xRef);
+rVisitor.append(xRef);
 }
 }
 
@@ -100,7 +100,7 @@ namespace drawinglayer
 {

[Libreoffice-commits] core.git: 2 commits - include/vcl vcl/source

2016-12-21 Thread Noel Grandin
 include/vcl/layout.hxx|   12 ++--
 include/vcl/outdev.hxx|2 +-
 vcl/source/window/layout.cxx  |   10 +-
 vcl/source/window/window2.cxx |   12 ++--
 4 files changed, 18 insertions(+), 18 deletions(-)

New commits:
commit 21907d647c58594e58fde0d6507f63f6207fe4bd
Author: Noel Grandin 
Date:   Wed Dec 21 15:51:29 2016 +0200

convert VclSizeGroupMode to scoped enum

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

diff --git a/include/vcl/layout.hxx b/include/vcl/layout.hxx
index e137178..d487a9e 100644
--- a/include/vcl/layout.hxx
+++ b/include/vcl/layout.hxx
@@ -569,12 +569,12 @@ public:
 virtual void Command(const CommandEvent& rCEvt) override;
 };
 
-enum VclSizeGroupMode
+enum class VclSizeGroupMode
 {
-VCL_SIZE_GROUP_NONE,
-VCL_SIZE_GROUP_HORIZONTAL,
-VCL_SIZE_GROUP_VERTICAL,
-VCL_SIZE_GROUP_BOTH
+NONE,
+Horizontal,
+Vertical,
+Both
 };
 
 class VCL_DLLPUBLIC VclSizeGroup
@@ -588,7 +588,7 @@ private:
 public:
 VclSizeGroup()
 : m_bIgnoreHidden(false)
-, m_eMode(VCL_SIZE_GROUP_HORIZONTAL)
+, m_eMode(VclSizeGroupMode::Horizontal)
 {
 }
 void insert(vcl::Window *pWindow)
diff --git a/vcl/source/window/layout.cxx b/vcl/source/window/layout.cxx
index 9a51658..0b8795a 100644
--- a/vcl/source/window/layout.cxx
+++ b/vcl/source/window/layout.cxx
@@ -2135,15 +2135,15 @@ bool VclSizeGroup::set_property(const OString , 
const OString )
 set_ignore_hidden(toBool(rValue));
 else if (rKey == "mode")
 {
-VclSizeGroupMode eMode = VCL_SIZE_GROUP_HORIZONTAL;
+VclSizeGroupMode eMode = VclSizeGroupMode::Horizontal;
 if (rValue.equals("none"))
-eMode = VCL_SIZE_GROUP_NONE;
+eMode = VclSizeGroupMode::NONE;
 else if (rValue.equals("horizontal"))
-eMode = VCL_SIZE_GROUP_HORIZONTAL;
+eMode = VclSizeGroupMode::Horizontal;
 else if (rValue.equals("vertical"))
-eMode = VCL_SIZE_GROUP_VERTICAL;
+eMode = VclSizeGroupMode::Vertical;
 else if (rValue.equals("both"))
-eMode = VCL_SIZE_GROUP_BOTH;
+eMode = VclSizeGroupMode::Both;
 else
 {
 SAL_WARN("vcl.layout", "unknown size group mode" << 
rValue.getStr());
diff --git a/vcl/source/window/window2.cxx b/vcl/source/window/window2.cxx
index beeb364..b6f4ea4 100644
--- a/vcl/source/window/window2.cxx
+++ b/vcl/source/window/window2.cxx
@@ -1367,7 +1367,7 @@ void Window::queue_resize(StateChangedType eReason)
 }
 
 WindowImpl *pWindowImpl = mpWindowImpl->mpBorderWindow ? 
mpWindowImpl->mpBorderWindow->mpWindowImpl.get() : mpWindowImpl.get();
-if (pWindowImpl->m_xSizeGroup && pWindowImpl->m_xSizeGroup->get_mode() != 
VCL_SIZE_GROUP_NONE)
+if (pWindowImpl->m_xSizeGroup && pWindowImpl->m_xSizeGroup->get_mode() != 
VclSizeGroupMode::NONE)
 {
 std::set  = 
pWindowImpl->m_xSizeGroup->get_widgets();
 for (VclPtr const & pOther : rWindows)
@@ -1665,7 +1665,7 @@ Size Window::get_preferred_size() const
 if (pWindowImpl->m_xSizeGroup)
 {
 const VclSizeGroupMode eMode = pWindowImpl->m_xSizeGroup->get_mode();
-if (eMode != VCL_SIZE_GROUP_NONE)
+if (eMode != VclSizeGroupMode::NONE)
 {
 const bool bIgnoreInHidden = 
pWindowImpl->m_xSizeGroup->get_ignore_hidden();
 const std::set  = 
pWindowImpl->m_xSizeGroup->get_widgets();
@@ -1677,9 +1677,9 @@ Size Window::get_preferred_size() const
 if (bIgnoreInHidden && !pOther->IsVisible())
 continue;
 Size aOtherSize = pOther->get_ungrouped_preferred_size();
-if (eMode == VCL_SIZE_GROUP_BOTH || eMode == 
VCL_SIZE_GROUP_HORIZONTAL)
+if (eMode == VclSizeGroupMode::Both || eMode == 
VclSizeGroupMode::Horizontal)
 aRet.Width() = std::max(aRet.Width(), aOtherSize.Width());
-if (eMode == VCL_SIZE_GROUP_BOTH || eMode == 
VCL_SIZE_GROUP_VERTICAL)
+if (eMode == VclSizeGroupMode::Both || eMode == 
VclSizeGroupMode::Vertical)
 aRet.Height() = std::max(aRet.Height(), 
aOtherSize.Height());
 }
 }
@@ -1934,7 +1934,7 @@ void Window::add_to_size_group(const 
std::shared_ptr& xGroup)
 //To-Do, multiple groups
 pWindowImpl->m_xSizeGroup = xGroup;
 pWindowImpl->m_xSizeGroup->insert(this);
-if (VCL_SIZE_GROUP_NONE != pWindowImpl->m_xSizeGroup->get_mode())
+if (VclSizeGroupMode::NONE != pWindowImpl->m_xSizeGroup->get_mode())
 queue_resize();
 }
 
@@ -1944,7 +1944,7 @@ void Window::remove_from_all_size_groups()
 //To-Do, multiple groups
 if 

[Libreoffice-commits] core.git: 2 commits - cui/source include/vcl svtools/source svx/source vcl/source vcl/workben

2016-12-21 Thread Noel Grandin
 cui/source/dialogs/cuigrfflt.cxx   |   24 ++--
 include/vcl/bitmap.hxx |   38 -
 include/vcl/layout.hxx |   16 ++---
 svtools/source/graphic/transformer.cxx |2 -
 svx/source/dialog/grfflt.cxx   |   16 ++---
 vcl/source/gdi/bitmap4.cxx |   32 +--
 vcl/source/window/layout.cxx   |   26 +++---
 vcl/workben/outdevgrind.cxx|2 -
 vcl/workben/vcldemo.cxx|2 -
 9 files changed, 79 insertions(+), 79 deletions(-)

New commits:
commit 41f7878ccbc457ef0431c999d38d9d77265d5dc7
Author: Noel Grandin 
Date:   Wed Dec 21 17:06:15 2016 +0200

convert BmpFilter to scoped enum

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

diff --git a/cui/source/dialogs/cuigrfflt.cxx b/cui/source/dialogs/cuigrfflt.cxx
index f90faf9..947a7e8 100644
--- a/cui/source/dialogs/cuigrfflt.cxx
+++ b/cui/source/dialogs/cuigrfflt.cxx
@@ -242,10 +242,10 @@ Graphic GraphicFilterMosaic::GetFilteredGraphic( const 
Graphic& rGraphic,
 {
 Animation aAnim( rGraphic.GetAnimation() );
 
-if( aAnim.Filter( BMP_FILTER_MOSAIC,  ) )
+if( aAnim.Filter( BmpFilter::Mosaic,  ) )
 {
 if( IsEnhanceEdges() )
-aAnim.Filter( BMP_FILTER_SHARPEN );
+aAnim.Filter( BmpFilter::Sharpen );
 
 aRet = aAnim;
 }
@@ -254,10 +254,10 @@ Graphic GraphicFilterMosaic::GetFilteredGraphic( const 
Graphic& rGraphic,
 {
 BitmapEx aBmpEx( rGraphic.GetBitmapEx() );
 
-if( aBmpEx.Filter( BMP_FILTER_MOSAIC,  ) )
+if( aBmpEx.Filter( BmpFilter::Mosaic,  ) )
 {
 if( IsEnhanceEdges() )
-(void)aBmpEx.Filter( BMP_FILTER_SHARPEN );
+(void)aBmpEx.Filter( BmpFilter::Sharpen );
 
 aRet = aBmpEx;
 }
@@ -308,7 +308,7 @@ Graphic GraphicFilterSmooth::GetFilteredGraphic( const 
Graphic& rGraphic, double
 {
 Animation aAnim( rGraphic.GetAnimation() );
 
-if( aAnim.Filter( BMP_FILTER_SMOOTH,  ) )
+if( aAnim.Filter( BmpFilter::Smooth,  ) )
 {
 aRet = aAnim;
 }
@@ -317,7 +317,7 @@ Graphic GraphicFilterSmooth::GetFilteredGraphic( const 
Graphic& rGraphic, double
 {
 BitmapEx aBmpEx( rGraphic.GetBitmapEx() );
 
-if( aBmpEx.Filter( BMP_FILTER_SMOOTH,  ) )
+if( aBmpEx.Filter( BmpFilter::Smooth,  ) )
 {
 aRet = aBmpEx;
 }
@@ -379,7 +379,7 @@ Graphic GraphicFilterSolarize::GetFilteredGraphic( const 
Graphic& rGraphic, doub
 {
 Animation aAnim( rGraphic.GetAnimation() );
 
-if( aAnim.Filter( BMP_FILTER_SOLARIZE,  ) )
+if( aAnim.Filter( BmpFilter::Solarize,  ) )
 {
 if( IsInvert() )
 aAnim.Invert();
@@ -391,7 +391,7 @@ Graphic GraphicFilterSolarize::GetFilteredGraphic( const 
Graphic& rGraphic, doub
 {
 BitmapEx aBmpEx( rGraphic.GetBitmapEx() );
 
-if( aBmpEx.Filter( BMP_FILTER_SOLARIZE,  ) )
+if( aBmpEx.Filter( BmpFilter::Solarize,  ) )
 {
 if( IsInvert() )
 aBmpEx.Invert();
@@ -441,14 +441,14 @@ Graphic GraphicFilterSepia::GetFilteredGraphic( const 
Graphic& rGraphic, double,
 {
 Animation aAnim( rGraphic.GetAnimation() );
 
-if( aAnim.Filter( BMP_FILTER_SEPIA,  ) )
+if( aAnim.Filter( BmpFilter::Sepia,  ) )
 aRet = aAnim;
 }
 else
 {
 BitmapEx aBmpEx( rGraphic.GetBitmapEx() );
 
-if( aBmpEx.Filter( BMP_FILTER_SEPIA,  ) )
+if( aBmpEx.Filter( BmpFilter::Sepia,  ) )
 aRet = aBmpEx;
 }
 
@@ -584,14 +584,14 @@ Graphic GraphicFilterEmboss::GetFilteredGraphic( const 
Graphic& rGraphic, double
 {
 Animation aAnim( rGraphic.GetAnimation() );
 
-if( aAnim.Filter( BMP_FILTER_EMBOSS_GREY,  ) )
+if( aAnim.Filter( BmpFilter::EmbossGrey,  ) )
 aRet = aAnim;
 }
 else
 {
 BitmapEx aBmpEx( rGraphic.GetBitmapEx() );
 
-if( aBmpEx.Filter( BMP_FILTER_EMBOSS_GREY,  ) )
+if( aBmpEx.Filter( BmpFilter::EmbossGrey,  ) )
 aRet = aBmpEx;
 }
 
diff --git a/include/vcl/bitmap.hxx b/include/vcl/bitmap.hxx
index 95f715d..751fa9a 100644
--- a/include/vcl/bitmap.hxx
+++ b/include/vcl/bitmap.hxx
@@ -106,20 +106,20 @@ enum BmpReduce
 BMP_REDUCE_POPULAR = 1
 };
 
-enum BmpFilter
+enum class BmpFilter
 {
-BMP_FILTER_SMOOTH = 0,
-BMP_FILTER_SHARPEN = 1,
-BMP_FILTER_REMOVENOISE = 2,
-BMP_FILTER_SOBEL_GREY = 3,
-BMP_FILTER_EMBOSS_GREY = 4,
-BMP_FILTER_SOLARIZE = 5,
-BMP_FILTER_SEPIA = 6,
-

[Libreoffice-bugs] [Bug 104852] New: today is cool day 1 855 338 0710 at email support phone number at email support number

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104852

Bug ID: 104852
   Summary: today is cool day 1 855 338 0710  at email support
phone number at email support number
   Product: cppunit
   Version: 1.13
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jaima...@gmail.com

very very gaming janu 1 855 338 0710  at email support phone number at
email support number AT tech email support number AT tech email support
phone number aaj kafi acha di nahi tu kabhi yaad hai 1 855 338 0710  at email
support phone number at email support number AT tech email support number
AT tech email support phone number

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


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

2016-12-21 Thread Justin Luth
 sw/qa/extras/ooxmlexport/ooxmlexport8.cxx |   12 
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |4 ++--
 2 files changed, 10 insertions(+), 6 deletions(-)

New commits:
commit 7e38087bf2a4d9d9edd0c98f965531002e0be777
Author: Justin Luth 
Date:   Tue Dec 20 12:19:43 2016 +0300

related to tdf#97417: fix unit test page count

The unit test should have been showing a blank page before the
content page.

Non-section paragraphs should not remove the first/last status.
Frames were already excluded, now this patch also
excludes header/footer paragraphs.

This is in preparation for tdf#104710.

Change-Id: I686944843302160d6f6bbbcb73f01c836179aa9f
Reviewed-on: https://gerrit.libreoffice.org/32234
Reviewed-by: Justin Luth 
Tested-by: Justin Luth 
(cherry picked from commit 893698741a78e56d74b87caff24f67742ddd892b)
Reviewed-on: https://gerrit.libreoffice.org/32323
Tested-by: Jenkins 

diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx
index eff96c7..52e6806 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx
@@ -2016,14 +2016,18 @@ DECLARE_OOXMLEXPORT_TEST(testTdf92157, "tdf92157.docx")
 
 DECLARE_OOXMLEXPORT_TEST(testTdf97417, "section_break_numbering.docx")
 {
+uno::Reference xProps(getParagraph(1), 
uno::UNO_QUERY_THROW);
+//CPPUNIT_ASSERT_MESSAGE("1st page: first paragraph erroneous numbering",
+//!xProps->getPropertyValue("NumberingRules").hasValue());
 // paragraph with numbering and section break was removed by writerfilter
 // but its numbering was copied to all following paragraphs
-CPPUNIT_ASSERT_MESSAGE("first paragraph missing numbering",
-getProperty(getParagraph(1), 
"NumberingRules").is());
-uno::Reference const xProps(getParagraph(2), 
uno::UNO_QUERY_THROW);
-CPPUNIT_ASSERT_MESSAGE("second paragraph erroneous numbering",
+CPPUNIT_ASSERT_MESSAGE("2nd page: first paragraph missing numbering",
+getProperty(getParagraph(2), 
"NumberingRules").is());
+xProps = uno::Reference(getParagraph(3), 
uno::UNO_QUERY_THROW);
+CPPUNIT_ASSERT_MESSAGE("2nd page: second paragraph erroneous numbering",
 !xProps->getPropertyValue("NumberingRules").hasValue());
 
+CPPUNIT_ASSERT_EQUAL(2, getPages());
 }
 
 DECLARE_OOXMLEXPORT_TEST(testTdf94043, "tdf94043.docx")
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 1268634..013518f 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -1210,8 +1210,8 @@ void DomainMapper_Impl::finishParagraph( const 
PropertyMapPtr& pPropertyMap )
 SetIsPreviousParagraphFramed(false);
 
 m_bParaChanged = false;
-if (!pParaContext || !pParaContext->IsFrameMode())
-{ // If the paragraph is in a frame, it's not a paragraph of the section 
itself.
+if( !IsInHeaderFooter() && (!pParaContext || !pParaContext->IsFrameMode()) 
)
+{ // If the paragraph is in a frame or header/footer, it's not a paragraph 
of the section itself.
 m_bIsFirstParaInSection = false;
 m_bIsLastParaInSection = false;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


5.2.4.1 RC bugfix list missing

2016-12-21 Thread Tommy

hi there.
the 5.2.4.1 RC bugfix list is not yet published here:
https://wiki.documentfoundation.org/ReleasePlan/5.2#5.2.4_release

don't know who has to take care about it.

bye, Tommy

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


[Libreoffice-bugs] [Bug 104851] Text Becomes Invisible after Color Change

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104851

tommy27  changed:

   What|Removed |Added

 CC||ba...@quipo.it

--- Comment #1 from tommy27  ---
would you please upload a simple test file?

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


[Libreoffice-bugs] [Bug 104843] Cannot uninstall WebDAV integration cleanly

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104843

tommy27  changed:

   What|Removed |Added

 CC||ba...@quipo.it,
   ||giuseppe.castagno@acca-esse
   ||.eu

--- Comment #2 from tommy27  ---
I put Beppe Castagno on CC list since he's an expert of WebDAV

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


[Libreoffice-bugs] [Bug 104849] Find report

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104849

tommy27  changed:

   What|Removed |Added

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

--- Comment #2 from tommy27  ---
@Andreas
please take a look at bug 92160 as suggested by m.a.riosv
and tell if your issue still persists.

you need to test with a 5.2.4 or 5.3.0 pre-release
http://dev-builds.libreoffice.org/pre-releases/

if bug is still there set back status to UNCONFIRMED
if it's gone change it to RESOLVED FIXED

NEEDINFO until then

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


[Libreoffice-bugs] [Bug 92160] Calc crash : bad allocation on Find & Replace

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92160

tommy27  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 99829] Window Size change reverts when switching apps

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99829

tommy27  changed:

   What|Removed |Added

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

--- Comment #7 from tommy27  ---
thanks for feedback.
in this case when a bug is gone but we don't know which exact committ fixed it,
we label it as RESOLVED WORKSFORME

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


[Libreoffice-bugs] [Bug 83614] EDITING: Option to disable search results in Replace All

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83614

--- Comment #10 from andis.lazd...@gmail.com ---
Thank you for good news! I got feeling that in 5.1.x and 5.2.x up to now, the
dialogue is not showing results for certain range, but when it goes for some 10
thousands, it tries to show the result window. 
I can only replace up to about 1 records, when it is more LO crashes during
the operation. When I'll have more time, I'll try to find limiting number.

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


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

2016-12-21 Thread Justin Luth
 sw/qa/extras/ooxmlimport/data/tdf75573_lostTable.docx |binary
 sw/qa/extras/ooxmlimport/ooxmlimport.cxx  |   15 +++
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |8 
 3 files changed, 19 insertions(+), 4 deletions(-)

New commits:
commit 34324bff1252dc5a51c9408f9502654453f319b6
Author: Justin Luth 
Date:   Wed Dec 21 07:32:14 2016 +0300

tdf#75573 - relocate code: alternate stream already started

moving this keeps the original fix and prevents losing a table
in this unit test

fixes regression commit ecea3431ca761369d8180a74eba2877533050516

Change-Id: I5e94760649020ddf1c468d52b91aaf0521bbfdda
Reviewed-on: https://gerrit.libreoffice.org/32269
Reviewed-by: Justin Luth 
Tested-by: Justin Luth 

diff --git a/sw/qa/extras/ooxmlimport/data/tdf75573_lostTable.docx 
b/sw/qa/extras/ooxmlimport/data/tdf75573_lostTable.docx
new file mode 100644
index 000..8ddb661
Binary files /dev/null and 
b/sw/qa/extras/ooxmlimport/data/tdf75573_lostTable.docx differ
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 
b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index eb45e22..2372307 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -726,6 +726,21 @@ DECLARE_OOXMLIMPORT_TEST(testTdf75573, 
"tdf75573_page1frame.docx")
 CPPUNIT_ASSERT(!bProt);
 }
 
+DECLARE_OOXMLIMPORT_TEST(testTdf75573_lostTable, "tdf75573_lostTable.docx")
+{
+uno::Reference xTablesSupplier(mxComponent, 
uno::UNO_QUERY);
+uno::Reference 
xTables(xTablesSupplier->getTextTables(), uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("# of tables", 1, xTables->getCount() );
+
+uno::Reference xDrawPageSupplier(mxComponent, 
uno::UNO_QUERY);
+uno::Reference 
xDraws(xDrawPageSupplier->getDrawPage(), uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("# of frames/shapes", 0, xDraws->getCount() );
+
+CPPUNIT_ASSERT_EQUAL_MESSAGE("# of paragraphs", 6, getParagraphs() );
+
+CPPUNIT_ASSERT_EQUAL_MESSAGE("# of pages", 3, getPages() );
+}
+
 DECLARE_OOXMLIMPORT_TEST(testMultiColumnSeparator, 
"multi-column-separator-with-line.docx")
 {
 uno::Reference xTextSection = getProperty< 
uno::Reference >(getParagraph(1, "First data."), 
"TextSection");
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 9997f1a..07e008f 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -5282,16 +5282,16 @@ void DomainMapper_Impl::substream(Id rName,
 }
 #endif
 
+//finalize any waiting frames before starting alternate streams
+CheckUnregisteredFrameConversion();
+ExecuteFrameConversion();
+
 appendTableManager();
 // Appending a TableManager resets its TableHandler, so we need to append
 // that as well, or tables won't be imported properly in headers/footers.
 appendTableHandler();
 getTableManager().startLevel();
 
-//finalize any waiting frames before starting alternate streams
-CheckUnregisteredFrameConversion();
-ExecuteFrameConversion();
-
 //import of page header/footer
 
 switch( rName )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-12-21 Thread Justin Luth
 sw/qa/extras/ooxmlexport/ooxmlexport9.cxx  |4 
 sw/qa/extras/ooxmlimport/data/tdf103975_notPageBreakB.docx |binary
 sw/qa/extras/ooxmlimport/data/tdf103975_notPageBreakC.docx |binary
 sw/qa/extras/ooxmlimport/ooxmlimport.cxx   |   56 +
 writerfilter/source/dmapper/DomainMapper.cxx   |3 
 writerfilter/source/dmapper/PropertyMap.hxx|2 
 6 files changed, 62 insertions(+), 3 deletions(-)

New commits:
commit e37563c304e52f1d2385868c9b33e0145493d2bd
Author: Justin Luth 
Date:   Tue Dec 20 15:54:18 2016 +0300

tdf#104710 bRemove: only prevent w/BREAK_TYPE for defined Sections

fixes regression from fix for bug 103975 which prevented removal of
empty paragraphs if there was a page/column break.  This patch adds
the requirement that there is also a defined SectionBreak.

I did a bad thing with unit test rhbz988516 (which was re-used as
the unit test for bug 103975). I didn't first check in MSWord
to see how many pages it really ought to have, and when it started
round-tripping with 3 pages I was happy.  Well, the proper page count
according to MSO is 2 (a hard page/break and Section/newPage combine
to form a single pagebreak). Undoing the regression fixes that too.

The regression was commit 7b250d56981f78e77454a2a3fd670731b2358e75

Change-Id: I15e9df2d260954f02a9e183d9f48c1d267494b49
Reviewed-on: https://gerrit.libreoffice.org/32236
Tested-by: Jenkins 
Reviewed-by: Miklos Vajna 
Reviewed-by: Justin Luth 

diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx
index 1e20ff4..002d064 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx
@@ -81,13 +81,13 @@ DECLARE_OOXMLEXPORT_TEST(testRhbz988516, "rhbz988516.docx")
 {
 // The problem was that the list properties of the footer leaked into body
 CPPUNIT_ASSERT_EQUAL(OUString(), getProperty(getParagraph(1), 
"NumberingStyleName"));
-CPPUNIT_ASSERT_EQUAL(OUString("Enclosure 3"), 
getParagraph(3)->getString());
+CPPUNIT_ASSERT_EQUAL(OUString("Enclosure 3"), 
getParagraph(2)->getString());
 CPPUNIT_ASSERT_EQUAL(OUString(), getProperty(getParagraph(2), 
"NumberingStyleName"));
 CPPUNIT_ASSERT_EQUAL(OUString(), getProperty(getParagraph(3), 
"NumberingStyleName"));
 CPPUNIT_ASSERT_EQUAL(OUString(), getProperty(getParagraph(4), 
"NumberingStyleName"));
 
 // tdf#103975 The problem was that an empty paragraph with page break info 
was removed.
-CPPUNIT_ASSERT_EQUAL( 3, getPages() );
+CPPUNIT_ASSERT_EQUAL( 2, getPages() );
 }
 
 DECLARE_OOXMLEXPORT_TEST(testTdf103389, "tdf103389.docx")
diff --git a/sw/qa/extras/ooxmlimport/data/tdf103975_notPageBreakB.docx 
b/sw/qa/extras/ooxmlimport/data/tdf103975_notPageBreakB.docx
new file mode 100755
index 000..a7b880d
Binary files /dev/null and 
b/sw/qa/extras/ooxmlimport/data/tdf103975_notPageBreakB.docx differ
diff --git a/sw/qa/extras/ooxmlimport/data/tdf103975_notPageBreakC.docx 
b/sw/qa/extras/ooxmlimport/data/tdf103975_notPageBreakC.docx
new file mode 100755
index 000..52767ab
Binary files /dev/null and 
b/sw/qa/extras/ooxmlimport/data/tdf103975_notPageBreakC.docx differ
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 
b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index 14be1f8..eb45e22 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -130,6 +130,62 @@ DECLARE_SW_IMPORT_TEST(testMathMalformedXml, 
"math-malformed_xml.docx", FailTest
 CPPUNIT_ASSERT(!mxComponent.is());
 }
 
+DECLARE_OOXMLIMPORT_TEST(testTdf103975_notPageBreakB, 
"tdf103975_notPageBreakB.docx")
+{
+// turn on View Formatting Marks to see these documents.
+uno::Reference xTextSection = getProperty< 
uno::Reference >(getParagraph(1), "TextSection");
+CPPUNIT_ASSERT(xTextSection.is());
+uno::Reference xTextColumns = getProperty< 
uno::Reference >(xTextSection, "TextColumns");
+CPPUNIT_ASSERT_EQUAL(sal_Int16(2), xTextColumns->getColumnCount());
+
+xTextSection = getProperty< uno::Reference 
>(getParagraph(2), "TextSection");
+CPPUNIT_ASSERT(xTextSection.is());
+xTextColumns = getProperty< uno::Reference 
>(xTextSection, "TextColumns");
+CPPUNIT_ASSERT_EQUAL(sal_Int16(2), xTextColumns->getColumnCount());
+
+xTextSection = getProperty< uno::Reference 
>(getParagraph(3), "TextSection");
+CPPUNIT_ASSERT(xTextSection.is());
+xTextColumns = getProperty< uno::Reference 
>(xTextSection, "TextColumns");
+CPPUNIT_ASSERT_EQUAL(sal_Int16(0), xTextColumns->getColumnCount());
+
+xTextSection = getProperty< uno::Reference 
>(getParagraph(4), "TextSection");
+CPPUNIT_ASSERT(xTextSection.is());
+xTextColumns = getProperty< uno::Reference 
>(xTextSection, "TextColumns");
+

[Libreoffice-bugs] [Bug 104851] New: Text Becomes Invisible after Color Change

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104851

Bug ID: 104851
   Summary: Text Becomes Invisible after Color Change
   Product: LibreOffice
   Version: 5.1.6.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: b...@twics.org

When changing the color of a text item in an outline, after the color change,
the text becomes invisible. If I click on a different slide, then back to the
previous slide, the text reappears in the correct (changed) color. This is not
100% reproducible but very common. It seems to be more common when the text
originally has the color attribute "Automatic," but that may just be by chance.

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


[Libreoffice-bugs] [Bug 104527] [META] DOC bug tracker

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104527

Luke  changed:

   What|Removed |Added

 Depends on|104016  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104016
[Bug 104016] FILEOPEN: RTF: incorrect bullets indention and spacing
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104016] FILEOPEN: RTF: incorrect bullets indention and spacing

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104016

Luke  changed:

   What|Removed |Added

 Blocks|104527  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104527
[Bug 104527] [META] DOC bug tracker
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103735] Text box always be nestled on the left edge of the page in LTR (vertical) direction

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103735

--- Comment #6 from Volga  ---
I have tested an image in the file, it doesn’t be affected.

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


[Libreoffice-commits] core.git: 11 commits - sc/qa uitest/libreoffice uitest/manual_tests uitest/uitest

2016-12-21 Thread Markus Mohrhard
 sc/qa/extras/sccellrangeobj.cxx  |   26 +---
 uitest/libreoffice/calc/document.py  |4 
 uitest/manual_tests/calc.py  |  176 +++
 uitest/manual_tests/data/cell_recalc.ods |binary
 uitest/uitest/test.py|   25 
 5 files changed, 214 insertions(+), 17 deletions(-)

New commits:
commit c06be281e7bd97d8db5549cdc886c9761ac9c015
Author: Markus Mohrhard 
Date:   Thu Dec 22 01:13:07 2016 +0100

uitest: convert random number manual test to automated testing

http://manual-test.libreoffice.org/manage/case/143/

Change-Id: Iff337668834cc729398a79719701627689b56dfd

diff --git a/uitest/manual_tests/calc.py b/uitest/manual_tests/calc.py
index bcc8f3c..2f7f5f4 100644
--- a/uitest/manual_tests/calc.py
+++ b/uitest/manual_tests/calc.py
@@ -192,4 +192,43 @@ class ManualCalcTests(UITestCase):
 
 self.ui_test.close_doc()
 
+# http://manual-test.libreoffice.org/manage/case/143/
+def test_random_numbers(self):
+self.ui_test.create_doc_in_start_center("calc")
+xGridWin = self.xUITest.getTopFocusWindow().getChild("grid_window")
+
+xGridWin.executeAction("SELECT", mkPropertyValues({"RANGE": "A2:A10"}))
+
+
self.ui_test.execute_modeless_dialog_through_command(".uno:RandomNumberGeneratorDialog")
+xRandomNumberDlg = self.xUITest.getTopFocusWindow()
+xDistributionLstBox = xRandomNumberDlg.getChild("distribution-combo")
+xDistributionLstBox.executeAction("SELECT", mkPropertyValues({"POS": 
"1"}))
+
+xMin = xRandomNumberDlg.getChild("parameter1-spin")
+xMin.executeAction("TYPE", mkPropertyValues({"KEYCODE": "CTRL+A"}))
+xMin.executeAction("TYPE", mkPropertyValues({"TEXT": "-2"}))
+xMax = xRandomNumberDlg.getChild("parameter2-spin")
+xMax.executeAction("TYPE", mkPropertyValues({"KEYCODE": "CTRL+A"}))
+xMax.executeAction("TYPE", mkPropertyValues({"TEXT": "10"}))
+
+xApplyBtn = xRandomNumberDlg.getChild("apply")
+xApplyBtn.executeAction("CLICK", tuple())
+
+doc = self.ui_test.get_component()
+
+def check_random_values():
+for i in range(1, 9):
+val = get_cell_by_position(doc, 0, 0, i).getValue()
+self.assertTrue(val <= 10 and val >= -2)
+
+check_random_values()
+
+xOkBtn = xRandomNumberDlg.getChild("ok")
+self.ui_test.close_dialog_through_button(xOkBtn)
+
+# we might want to check that clicking 'ok' actually changes the values
+check_random_values()
+
+self.ui_test.close_doc()
+
 # vim: set shiftwidth=4 softtabstop=4 expandtab:
commit ad5416b663ef647c289eb290195c1350242038fa
Author: Markus Mohrhard 
Date:   Thu Dec 22 00:47:54 2016 +0100

uitest: convert cell recalculation manual test to automated testing

http://manual-test.libreoffice.org/manage/case/151/

Change-Id: I6b4e857eb949b29b03817058f8fb3a93ace13309

diff --git a/uitest/manual_tests/calc.py b/uitest/manual_tests/calc.py
index cbe2f8f..bcc8f3c 100644
--- a/uitest/manual_tests/calc.py
+++ b/uitest/manual_tests/calc.py
@@ -12,9 +12,13 @@ from libreoffice.calc.document import get_cell_by_position
 
 from uitest.uihelper.common import get_state_as_dict
 from uitest.uihelper.calc import enter_text_to_cell
+from uitest.path import get_srcdir_url
 
 import time
 
+def get_url_for_data_file(file_name):
+return get_srcdir_url() + "/uitest/manual_tests/data/" + file_name
+
 class ManualCalcTests(UITestCase):
 
 # http://manual-test.libreoffice.org/manage/case/189/
@@ -169,4 +173,23 @@ class ManualCalcTests(UITestCase):
 
 self.ui_test.close_doc()
 
+# http://manual-test.libreoffice.org/manage/case/151/
+def test_cell_recalc(self):
+doc = self.ui_test.load_file(get_url_for_data_file("cell_recalc.ods"))
+
+xGridWin = self.xUITest.getTopFocusWindow().getChild("grid_window")
+xGridWin.executeAction("SELECT", mkPropertyValues({"RANGE": "D2:D9"}))
+self.xUITest.executeCommand(".uno:Cut")
+
+self.assertEqual(get_cell_by_position(doc, 0, 3, 15).getValue(), 0)
+
+self.xUITest.executeCommand(".uno:Undo")
+
+for i in range(1, 9):
+self.assertTrue(get_cell_by_position(doc, 0, 3, i).getValue() != 0)
+
+self.assertEqual(get_cell_by_position(doc, 0, 3, 15).getValue(), 195)
+
+self.ui_test.close_doc()
+
 # vim: set shiftwidth=4 softtabstop=4 expandtab:
diff --git a/uitest/manual_tests/data/cell_recalc.ods 
b/uitest/manual_tests/data/cell_recalc.ods
new file mode 100644
index 000..4b125fd
Binary files /dev/null and b/uitest/manual_tests/data/cell_recalc.ods differ
commit c3b36b460e71c4e3e0cd5eefcdc7b2b5340b502e
Author: Markus Mohrhard 
Date:   Thu Dec 22 00:02:17 2016 +0100

uitest: add reference to moztrap

Change-Id: 

[Libreoffice-ux-advise] [Bug 104737] Bullets and Numbering: inconsistent naming of last tab page

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104737

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:5.4.0|target:5.4.0 target:5.3.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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


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

2016-12-21 Thread Tamás Zolnai
 svx/source/tbxctrls/bulletsnumbering.cxx  |   15 +--
 sw/source/ui/fmtui/tmpdlg.cxx |2 +-
 sw/source/ui/misc/num.cxx |2 +-
 sw/uiconfig/swriter/ui/bulletsandnumbering.ui |4 ++--
 sw/uiconfig/swriter/ui/templatedialog16.ui|4 ++--
 5 files changed, 7 insertions(+), 20 deletions(-)

New commits:
commit 51cb1ebcc46030ed9526d18a0e2e9279a4edf438
Author: Tamás Zolnai 
Date:   Wed Dec 21 01:15:45 2016 +

tdf#104737: Bullets and Numbering: inconsistent naming of last tab page

Change-Id: Id1d1d92933c110942fd232067620e8224686a915
Reviewed-on: https://gerrit.libreoffice.org/32256
Tested-by: Jenkins 
Reviewed-by: Maxim Monastirsky 
Reviewed-by: Tamás Zolnai 
(cherry picked from commit 584c745ea484e1f8047278fc83b41b30a90f884d)
Reviewed-on: https://gerrit.libreoffice.org/32321
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/svx/source/tbxctrls/bulletsnumbering.cxx 
b/svx/source/tbxctrls/bulletsnumbering.cxx
index 9da0da2..5671bf9 100644
--- a/svx/source/tbxctrls/bulletsnumbering.cxx
+++ b/svx/source/tbxctrls/bulletsnumbering.cxx
@@ -48,7 +48,6 @@ class NumberingToolBoxControl : public 
svt::PopupWindowController
 public:
 explicit NumberingToolBoxControl( const css::uno::Reference< 
css::uno::XComponentContext >& rxContext );
 virtual VclPtr createPopupWindow( vcl::Window* pParent ) 
override;
-bool IsInImpressDraw();
 
 // XStatusListener
 virtual void SAL_CALL statusChanged( const css::frame::FeatureStateEvent& 
rEvent )
@@ -189,14 +188,7 @@ void NumberingPopup::VSSelectHdl(void* pControl)
 }
 else if ( getSelectedEntryId() == 1 )
 {
-OUString aPageName;
-if ( mrController.IsInImpressDraw() )
-aPageName = "customize";
-else
-// Writer variants
-aPageName = "options";
-
-auto aArgs( comphelper::InitPropertySequence( { { "Page", 
css::uno::makeAny( aPageName ) } } ) );
+auto aArgs( comphelper::InitPropertySequence( { { "Page", 
css::uno::makeAny( OUString("customize") ) } } ) );
 mrController.dispatchCommand( ".uno:OutlineBullet", aArgs );
 }
 }
@@ -214,11 +206,6 @@ VclPtr 
NumberingToolBoxControl::createPopupWindow( vcl::Window* pPa
 return VclPtr::Create( *this, pParent, mePageType );
 }
 
-bool NumberingToolBoxControl::IsInImpressDraw()
-{
-return ( m_sModuleName == "com.sun.star.presentation.PresentationDocument" 
||
- m_sModuleName == "com.sun.star.drawing.DrawingDocument" );
-}
 
 void SAL_CALL NumberingToolBoxControl::statusChanged( const 
css::frame::FeatureStateEvent& rEvent )
 throw ( css::uno::RuntimeException, std::exception )
diff --git a/sw/source/ui/fmtui/tmpdlg.cxx b/sw/source/ui/fmtui/tmpdlg.cxx
index f1262f6..f5e4314 100644
--- a/sw/source/ui/fmtui/tmpdlg.cxx
+++ b/sw/source/ui/fmtui/tmpdlg.cxx
@@ -315,7 +315,7 @@ SwTemplateDlg::SwTemplateDlg(vcl::Window* pParent,
 m_nBulletId = AddTabPage("bullets", RID_SVXPAGE_PICK_BULLET);
 m_nNumId = AddTabPage("outline", RID_SVXPAGE_PICK_NUM);
 m_nBmpId = AddTabPage("graphics", RID_SVXPAGE_PICK_BMP);
-m_nNumOptId = AddTabPage("options", RID_SVXPAGE_NUM_OPTIONS );
+m_nNumOptId = AddTabPage("customize", RID_SVXPAGE_NUM_OPTIONS );
 m_nNumPosId = AddTabPage("position", RID_SVXPAGE_NUM_POSITION );
 }
 break;
diff --git a/sw/source/ui/misc/num.cxx b/sw/source/ui/misc/num.cxx
index ac2b5ad..ed7c94e 100644
--- a/sw/source/ui/misc/num.cxx
+++ b/sw/source/ui/misc/num.cxx
@@ -960,7 +960,7 @@ 
SwSvxNumBulletTabDialog::SwSvxNumBulletTabDialog(vcl::Window* pParent,
 m_nBulletPageId = AddTabPage("bullets", RID_SVXPAGE_PICK_BULLET );
 AddTabPage("outlinenum", RID_SVXPAGE_PICK_NUM );
 AddTabPage("graphics", RID_SVXPAGE_PICK_BMP );
-m_nOptionsPageId = AddTabPage("options", RID_SVXPAGE_NUM_OPTIONS );
+m_nOptionsPageId = AddTabPage("customize", RID_SVXPAGE_NUM_OPTIONS );
 m_nPositionPageId = AddTabPage("position", RID_SVXPAGE_NUM_POSITION );
 }
 
diff --git a/sw/uiconfig/swriter/ui/bulletsandnumbering.ui 
b/sw/uiconfig/swriter/ui/bulletsandnumbering.ui
index 537e9ff..8d37037 100644
--- a/sw/uiconfig/swriter/ui/bulletsandnumbering.ui
+++ b/sw/uiconfig/swriter/ui/bulletsandnumbering.ui
@@ -177,10 +177,10 @@
   
 
 
-  
+  
 True
 False
-Options
+Customize
   
   
 5
diff --git a/sw/uiconfig/swriter/ui/templatedialog16.ui 
b/sw/uiconfig/swriter/ui/templatedialog16.ui
index 28bf3fb..a9cba6d 100644
--- a/sw/uiconfig/swriter/ui/templatedialog16.ui
+++ 

[Libreoffice-bugs] [Bug 104016] FILEOPEN: RTF: incorrect bullets indention and spacing

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104016

Luke  changed:

   What|Removed |Added

   Keywords|filter:doc  |
Summary|FILEOPEN: DOC: incorrect|FILEOPEN: RTF: incorrect
   |bullets indention and   |bullets indention and
   |spacing |spacing

--- Comment #9 from Luke  ---
Bug doc is an RTF file with a .doc extension.

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


[Libreoffice-bugs] [Bug 46733] Deleting columns in a table can delete several columns if any cells in that column are merged with other cells

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46733

--- Comment #16 from Todd  ---
Guys!

This was reported on 2012-02-28.  This bug is an ABSOLUTE PAIN IN THE ASS !!! 
If you let it go any longer, you guys might as well change your names to Open
Office.  They NEVER fixed their bugs either.

Fix this NOW.  Stop dragging your feet!  FOUR YEARS IS LONG ENOUGH!

Many thanks,
-T

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


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

2016-12-21 Thread Maxim Monastirsky
 vcl/source/window/dockmgr.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 2a4cd80abcf9e515d1ce3b3a944b573bdc42bff2
Author: Maxim Monastirsky 
Date:   Thu Dec 22 02:01:59 2016 +0200

Fix ToolbarMenu position

Change-Id: I3a6380845687a809e155ebcf8ff8d3b2e5e6a4ec

diff --git a/vcl/source/window/dockmgr.cxx b/vcl/source/window/dockmgr.cxx
index ac587a6..0393836 100644
--- a/vcl/source/window/dockmgr.cxx
+++ b/vcl/source/window/dockmgr.cxx
@@ -968,11 +968,11 @@ void ImplDockingWindowWrapper::StartPopupMode( ToolBox 
*pParentToolBox, FloatWin
 mpOldBorderWin = nullptr;  // no border window found
 
 bool bAllowTearOff = bool( nFlags & FloatWinPopupFlags::AllowTearOff );
-bool bIsToolBox = GetWindow()->GetType() == WINDOW_TOOLBOX;
+bool bUseStdPopup = bAllowTearOff && GetWindow()->GetType() != 
WINDOW_TOOLBOX;
 
 // the new parent for popup mode
 VclPtr pWin;
-if ( bAllowTearOff && !bIsToolBox )
+if ( bUseStdPopup )
 pWin = VclPtr::Create( mpParent, WB_STDPOPUP );
 else
 pWin = VclPtr::Create( mpParent, this, 
bAllowTearOff );
@@ -988,7 +988,7 @@ void ImplDockingWindowWrapper::StartPopupMode( ToolBox 
*pParentToolBox, FloatWin
 GetWindow()->mpWindowImpl->mnBottomBorder  = 0;
 
 // position toolbox below the drag grip
-if ( bIsToolBox )
+if ( !bUseStdPopup )
 GetWindow()->SetPosPixel( static_cast( pWin.get() 
)->GetToolboxPosition() );
 
 // reparent borderwindow and window
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 103775] Font color/Highlighting button issue

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103775

--- Comment #2 from Commit Notification 
 ---
Henry Castro committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/online/commit/?id=65bfc63ace567501912e4b6399ff8f81cc62516e

tdf#103775: Font color/Highlighting button issue

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


[Libreoffice-bugs] [Bug 103775] Font color/Highlighting button issue

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103775

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:5.4.0

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


[Libreoffice-commits] online.git: loleaflet/dist

2016-12-21 Thread Henry Castro
 loleaflet/dist/toolbar/toolbar.js |   44 ++
 1 file changed, 44 insertions(+)

New commits:
commit 65bfc63ace567501912e4b6399ff8f81cc62516e
Author: Henry Castro 
Date:   Wed Dec 21 19:50:04 2016 -0400

tdf#103775: Font color/Highlighting button issue

diff --git a/loleaflet/dist/toolbar/toolbar.js 
b/loleaflet/dist/toolbar/toolbar.js
index 6d77909..3ef80bd 100644
--- a/loleaflet/dist/toolbar/toolbar.js
+++ b/loleaflet/dist/toolbar/toolbar.js
@@ -423,6 +423,28 @@ $(function () {
if (!L.DomUtil.get('fontcolorindicator')) {
var fontColorIndicator = 
L.DomUtil.create('div', 'font-color-indicator', 
L.DomUtil.get('tb_toolbar-up_item_fontcolor'));
fontColorIndicator.id = 'fontcolorindicator';
+   L.DomEvent.on(fontColorIndicator, 'mouseover', 
function () {
+   var button = 
fontColorIndicator.parentNode.firstChild;
+   $(button).addClass('over');
+   });
+   L.DomEvent.on(fontColorIndicator, 'mouseout', 
function () {
+   var button = 
fontColorIndicator.parentNode.firstChild;
+   $(button).removeClass('over');
+   });
+   L.DomEvent.on(fontColorIndicator, 'mousedown', 
function () {
+   var button = 
fontColorIndicator.parentNode.firstChild;
+   $(button).addClass('down');
+   });
+   L.DomEvent.on(fontColorIndicator, 'mouseup', 
function () {
+   var button = 
fontColorIndicator.parentNode.firstChild;
+   $(button).removeClass('down');
+   });
+   fontColorIndicator.addEventListener('click', 
function () {
+   var toolbar = w2ui['toolbar-up'];
+   if (toolbar) {
+   toolbar.click('fontcolor', 
window.event);
+   }
+   }, false);
 

$('#fontColorPicker').colorpicker({showOn:'none', hideButton:true});
$('#fontColorPicker').on('change.color', 
onColorPick);
@@ -431,6 +453,28 @@ $(function () {
if (!L.DomUtil.get('backcolorindicator')) {
var backColorIndicator = 
L.DomUtil.create('div', 'back-color-indicator', 
L.DomUtil.get('tb_toolbar-up_item_backcolor'));
backColorIndicator.id = 'backcolorindicator';
+   L.DomEvent.on(backColorIndicator, 'mouseover', 
function () {
+   var button = 
backColorIndicator.parentNode.firstChild;
+   $(button).addClass('over');
+   });
+   L.DomEvent.on(backColorIndicator, 'mouseout', 
function () {
+   var button = 
backColorIndicator.parentNode.firstChild;
+   $(button).removeClass('over');
+   });
+   L.DomEvent.on(backColorIndicator, 'mousedown', 
function () {
+   var button = 
backColorIndicator.parentNode.firstChild;
+   $(button).addClass('down');
+   });
+   L.DomEvent.on(backColorIndicator, 'mouseup', 
function () {
+   var button = 
backColorIndicator.parentNode.firstChild;
+   $(button).removeClass('down');
+   });
+   backColorIndicator.addEventListener('click', 
function () {
+   var toolbar = w2ui['toolbar-up'];
+   if (toolbar) {
+   toolbar.click('backcolor', 
window.event);
+   }
+   }, false);
 

$('#backColorPicker').colorpicker({showOn:'none', hideButton:true});
$('#backColorPicker').on('change.color', 
onColorPick);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89803] Macros: BubbleSortList doesn't sort correctly.

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89803

--- Comment #3 from Pierre Lepage  ---
You wrote: "In Libre-Office Macros/Tools/Strings exists the macro
"BubbleSortList".". Where did you find the BASIC code in LibreOffice?

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


[Libreoffice-bugs] [Bug 104849] Find report

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104849

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Can be considered as solved on tdf#92160?

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


[Libreoffice-bugs] [Bug 100015] Unary and Binary Operators images missing

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100015

--- Comment #13 from Commit Notification 
 ---
Gabor Kelemen committed a patch related to this issue.
It has been pushed to "libreoffice-5-3":

http://cgit.freedesktop.org/libreoffice/help/commit/?id=e511aad844fd2fa16077db4d11311b5710f45b64=libreoffice-5-3

tdf#100015 Fix icon paths on the unary and binary operators pages

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


[Libreoffice-commits] help.git: Branch 'libreoffice-5-3' - source/text

2016-12-21 Thread Gabor Kelemen
 source/text/smath/01/03090100.xhp |   32 
 source/text/smath/01/03091501.xhp |   32 
 2 files changed, 32 insertions(+), 32 deletions(-)

New commits:
commit e511aad844fd2fa16077db4d11311b5710f45b64
Author: Gabor Kelemen 
Date:   Sat Oct 29 16:28:43 2016 +0200

tdf#100015 Fix icon paths on the unary and binary operators pages

Change-Id: Ib26d9ac56cd413940ec2c2c71fea281726358c88
Reviewed-on: https://gerrit.libreoffice.org/30374
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 
Reviewed-on: https://gerrit.libreoffice.org/32300
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/source/text/smath/01/03090100.xhp 
b/source/text/smath/01/03090100.xhp
index 42fcda8..9e101bf 100644
--- a/source/text/smath/01/03090100.xhp
+++ b/source/text/smath/01/03090100.xhp
@@ -70,7 +70,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -85,7 +85,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -100,7 +100,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -115,7 +115,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -130,7 +130,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -145,7 +145,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -160,7 +160,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -175,7 +175,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -190,7 +190,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -205,7 +205,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -220,7 +220,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -235,7 +235,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -250,7 +250,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -265,7 +265,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -280,7 +280,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -295,7 +295,7 @@
 
 
 
-Icon
+Icon

 
 
diff --git a/source/text/smath/01/03091501.xhp 
b/source/text/smath/01/03091501.xhp
index b0e0494..3d2e602 100644
--- a/source/text/smath/01/03091501.xhp
+++ b/source/text/smath/01/03091501.xhp
@@ -54,7 +54,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -69,7 +69,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -84,7 +84,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -99,7 +99,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -114,7 +114,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -129,7 +129,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -144,7 +144,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -159,7 +159,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -174,7 +174,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -217,7 +217,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -232,7 +232,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -247,7 +247,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -262,7 +262,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -329,7 +329,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -357,7 +357,7 @@
 
 
 
-Icon
+Icon

 
 
@@ -372,7 +372,7 @@
 
 
 
-Icon
+Icon

 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - helpcontent2

2016-12-21 Thread Gabor Kelemen
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit eb319362c94f1c17beb355a53f392a9bcf939822
Author: Gabor Kelemen 
Date:   Sat Oct 29 16:28:43 2016 +0200

Updated core
Project: help  e511aad844fd2fa16077db4d11311b5710f45b64

tdf#100015 Fix icon paths on the unary and binary operators pages

Change-Id: Ib26d9ac56cd413940ec2c2c71fea281726358c88
Reviewed-on: https://gerrit.libreoffice.org/30374
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 
Reviewed-on: https://gerrit.libreoffice.org/32300
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/helpcontent2 b/helpcontent2
index 3d9e4e0..e511aad 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 3d9e4e094a7ebd9f16c931fcdbf95d144f80b2b0
+Subproject commit e511aad844fd2fa16077db4d11311b5710f45b64
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104850] HELPWIKI: Handle item type

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104850

Adolfo Jayme  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #2 from Adolfo Jayme  ---
> Here I'm requesting permission to backport to the 5-3 branch.

No need to ask for permission to anyone; just propose in Gerrit as you have
done.
And while it’s in the beta phase, you can merge backports on your own — when it
enters the RC phase, you’ll need a review from another person to merge it.

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


[Libreoffice-bugs] [Bug 104744] FILEOPEN: DOC and RTF Spacing Totally Lost on Import

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104744

Miklos Vajna  changed:

   What|Removed |Added

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

--- Comment #9 from Miklos Vajna  ---
Attachment 129806 is an RTF file, just with a .doc extension, don't be
confused. ;-)

I'll take care of the unexpected 0 margin.

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


[Libreoffice-bugs] [Bug 104850] HELPWIKI: Handle item type

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104850

--- Comment #1 from Commit Notification 
 ---
Gabor Kelemen committed a patch related to this issue.
It has been pushed to "libreoffice-5-3":

http://cgit.freedesktop.org/libreoffice/help/commit/?id=3d9e4e094a7ebd9f16c931fcdbf95d144f80b2b0=libreoffice-5-3

tdf#104850 Handle 'acronym' item type

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


[Libreoffice-commits] help.git: Branch 'libreoffice-5-3' - to-wiki/wikiconv2.py

2016-12-21 Thread Gabor Kelemen
 to-wiki/wikiconv2.py |9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

New commits:
commit 3d9e4e094a7ebd9f16c931fcdbf95d144f80b2b0
Author: Gabor Kelemen 
Date:   Sun Dec 4 23:25:22 2016 +0100

tdf#104850 Handle 'acronym' item type

This was throwing an exception and not generating a wiki page
Format with a simple italic text for now - better ideas welcome!

Change-Id: I1b08c6b6dd2e96eef3cac4808fe23f911dc06cd3
Reviewed-on: https://gerrit.libreoffice.org/31609
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 
Reviewed-on: https://gerrit.libreoffice.org/32316
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/to-wiki/wikiconv2.py b/to-wiki/wikiconv2.py
index b239419..1910828 100755
--- a/to-wiki/wikiconv2.py
+++ b/to-wiki/wikiconv2.py
@@ -996,7 +996,8 @@ class Switch(SwitchInline):
 
 class Item(ElementBase):
 replace_type = \
-{'start':{'code': '',
+{'start':{'acronym' : '\'\'',
+  'code': '',
   'input': '',
   'keycode': '{{KeyCode|',
   'tasto': '{{KeyCode|',
@@ -1008,7 +1009,8 @@ class Item(ElementBase):
   'productname': '',
   'unknown': ''
  },
- 'end':{'code': '',
+ 'end':{'acronym' : '\'\'',
+'code': '',
 'input': '',
 'keycode': '}}',
 'tasto': '}}',
@@ -1020,7 +1022,8 @@ class Item(ElementBase):
 'productname': '',
 'unknown': ''
},
- 'templ':{'code': False,
+ 'templ':{'acronym': False,
+  'code': False,
   'input': False,
   'keycode': True,
   'tasto': True,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104850] HELPWIKI: Handle item type

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104850

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:5.3.0.1

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - helpcontent2

2016-12-21 Thread Gabor Kelemen
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b7081e2527ca933056f7389c082271af71acd5b2
Author: Gabor Kelemen 
Date:   Sun Dec 4 23:25:22 2016 +0100

Updated core
Project: help  3d9e4e094a7ebd9f16c931fcdbf95d144f80b2b0

tdf#104850 Handle 'acronym' item type

This was throwing an exception and not generating a wiki page
Format with a simple italic text for now - better ideas welcome!

Change-Id: I1b08c6b6dd2e96eef3cac4808fe23f911dc06cd3
Reviewed-on: https://gerrit.libreoffice.org/31609
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 
Reviewed-on: https://gerrit.libreoffice.org/32316
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/helpcontent2 b/helpcontent2
index ab89fad..3d9e4e0 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit ab89fadc6ce05765c0b6819647a97832433fa585
+Subproject commit 3d9e4e094a7ebd9f16c931fcdbf95d144f80b2b0
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 92160] Calc crash : bad allocation on Find & Replace

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92160

V Stuart Foote  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 101912] [META] Accessibility (a11y) bugs and enhancements

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101912
Bug 101912 depends on bug 104818, which changed state.

Bug 104818 Summary: Alias uno commands shows wrong label when a11y enabled
https://bugs.documentfoundation.org/show_bug.cgi?id=104818

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 85811] [META] Main menu bugs and enhancements

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85811
Bug 85811 depends on bug 104818, which changed state.

Bug 104818 Summary: Alias uno commands shows wrong label when a11y enabled
https://bugs.documentfoundation.org/show_bug.cgi?id=104818

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 83614] EDITING: Option to disable search results in Replace All

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83614

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=92
   ||160

--- Comment #9 from V Stuart Foote  ---
Can't disable, but for 5.2.4 search/replace will not show more that 1000
results to resolve bug 92160

=-ref-=

https://cgit.freedesktop.org/libreoffice/core/commit/?h=libreoffice-5-2=1a093a2c06c30c17e483614e36a75907e7d0991f

https://cgit.freedesktop.org/libreoffice/core/commit/?id=ba68e6dd7ad99ef2a2720f327813d13550b98966

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


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

2016-12-21 Thread Maxim Monastirsky
 framework/source/uielement/menubarmanager.cxx |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit c9303b98ad69213fe346d0657a8bca5ac8fa3bd7
Author: Maxim Monastirsky 
Date:   Thu Dec 22 01:03:31 2016 +0200

tdf#104818 Show the right label when a11y enabled

Change-Id: If4da5b9435e96e3830bac3d01e06f7ddc87754eb

diff --git a/framework/source/uielement/menubarmanager.cxx 
b/framework/source/uielement/menubarmanager.cxx
index 530df3e..0a50c02 100644
--- a/framework/source/uielement/menubarmanager.cxx
+++ b/framework/source/uielement/menubarmanager.cxx
@@ -1172,11 +1172,6 @@ void MenuBarManager::FillMenuManager( Menu* pMenu, const 
Reference< XFrame >& rF
 {
 sal_uInt16 nItemId = FillItemCommand(aItemCommand,pMenu, i );
 
-// Command can be just an alias to another command.
-OUString aRealCommand = 
vcl::CommandInfoProvider::Instance().GetRealCommandForCommand( aItemCommand, 
m_xFrame );
-if ( !aRealCommand.isEmpty() )
-aItemCommand = aRealCommand;
-
 // Set module identifier when provided from outside
 if ( !rModuleIdentifier.isEmpty() )
 {
@@ -1191,6 +1186,11 @@ void MenuBarManager::FillMenuManager( Menu* pMenu, const 
Reference< XFrame >& rF
 pMenu->SetItemText( nItemId, RetrieveLabelFromCommand( 
aItemCommand ));
 }
 
+// Command can be just an alias to another command.
+OUString aRealCommand = 
vcl::CommandInfoProvider::Instance().GetRealCommandForCommand( aItemCommand, 
m_xFrame );
+if ( !aRealCommand.isEmpty() )
+aItemCommand = aRealCommand;
+
 Reference< XDispatch > xDispatch;
 Reference< XStatusListener > xStatusListener;
 VclPtr pPopup = pMenu->GetPopupMenu( nItemId );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 103908] Vertical text in table header is rendered with overlapping characters

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103908

Joerg  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 103908] Vertical text in table header is rendered with overlapping characters

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103908

--- Comment #21 from Joerg  ---
I just verified this with
libreoffice-5-3~2016-12-16_12.19.09_LibreOfficeDev_5.3.0.0.beta2_Win_x86_en-US_de_ar_ja_ru_vec_qtz
and
libo-master~2016-11-29_23.29.46_LibreOfficeDev_5.4.0.0.alpha0_Win_x86

In both versions thevertical text is drawn correct!

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


[Libreoffice-bugs] [Bug 104850] New: HELPWIKI: Handle item type

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104850

Bug ID: 104850
   Summary: HELPWIKI: Handle  item type
   Product: LibreOffice
   Version: 5.3.0.0.beta2
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com

python2 help-to-wiki.py -r -n 
Generating the titles...
Path to the .po files not provided, using "../translations/source"
Currently generating helpwiki pages in the 5.3 branch gives exceptions like
this because of the new  item type:

$ python2 help-to-wiki.py -r -n 
Generating the main wiki pages...
Warning: Unhandled element "switch" in "default"
(source/text/shared/01/0210.xhp)
Warning: Unhandled element "case" in "default"
(source/text/shared/01/0210.xhp)
Unhandled item type "acronym".
Exception in thread Thread-380:
Traceback (most recent call last):
  File "/usr/lib/python2.7/threading.py", line 810, in __bootstrap_inner
self.run()
  File "/home/gabor/src/core/helpcontent2/to-wiki/wikiconv2.py", line 1391, in
run
file.write(parser.get_all())
  File "/home/gabor/src/core/helpcontent2/to-wiki/wikiconv2.py", line 1305, in
get_all
return self.head_obj.get_all()
  File "/home/gabor/src/core/helpcontent2/to-wiki/wikiconv2.py", line 369, in
get_all
text = text + i.get_all()
  File "/home/gabor/src/core/helpcontent2/to-wiki/wikiconv2.py", line 1170, in
get_all
raise UnhandledItemType('Paragraph id: '+str(self.id))
UnhandledItemType: Paragraph id: par_id030820161744123676

Unhandled item type "acronym".

(and three more similar exceptions)

This is already fixed in master: 
https://cgit.freedesktop.org/libreoffice/help/commit/?id=7de8eed8b1b908c9e37f6e2499f37768a2354d27

Here I'm requesting permission to backport to the 5-3 branch.

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


[Libreoffice-bugs] [Bug 99829] Window Size change reverts when switching apps

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99829

--- Comment #6 from Frank  ---
(In reply to tommy27 from comment #5)
Hi Tommy:

I no longer see this using either the 5.2.3.2 build or the 5.3.0.0.beta1 builds
on the 16.04.1 Ubuntu.

I would say that it has been fixed, although I'm sorry to say I can't pin down
when that might have happened.

As far as I'm concerned this bug can be closed.

Frank

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


[Libreoffice-bugs] [Bug 44462] Provide a proper 'File Association Manager' for the windows version of Libreoffice

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=44462

--- Comment #15 from Mike Kaganski  ---
(In reply to Pedro from comment #13)
> Here is how Irfanview (a Windows freeware image viewer) handles the file
> association problem.

Btw: IrfanView is a *Windows* program. LibreOffice is *cross-platform* program.
It may be run on MacOS/Linux/Android/*BSD/...

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


[Libreoffice-bugs] [Bug 44462] Provide a proper 'File Association Manager' for the windows version of Libreoffice

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=44462

--- Comment #14 from Mike Kaganski  ---
(In reply to Pedro from comment #12)
> So instead of solving the problem for the most commonly used files
> you believe that is is easier to instruct users to reinstall LibreOffice
> every time the associations are broken???

:) Which of the comment 11 made you believe so? My words meant that we register
all *supported* formats - and *some* most-often-used - while installing; then
we use OS feature to set the program default handler of supported files that
user wants, without reinstalling. BTW, registration of *supported formats* is
never reset, even by MS - only registration of default handler does :)

> And in case you are unaware, Microsoft resets file
> associations that are not associated to the program of their liking on every
> other Windows 10 update. I have had to associate JPG (not exactly a MS file
> format) to the program I prefer instead of the MS defined APP several times
> now on a 6 months old Windows 10 laptop...

So, how's that relevant here? Or do you think that doing something inside LO
would prevent this from happening? :) It will continue to be reset each time OS
wants that; it's only MS that can fix its bugs regardless of where the setting
originated that broke with next OS update.

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


[Libreoffice-bugs] [Bug 44462] Provide a proper 'File Association Manager' for the windows version of Libreoffice

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=44462

--- Comment #13 from Pedro  ---
Created attachment 129854
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129854=edit
Screenshot of Irfanview's file association dialog

Here is how Irfanview (a Windows freeware image viewer) handles the file
association problem.

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


[Libreoffice-bugs] [Bug 44462] Provide a proper 'File Association Manager' for the windows version of Libreoffice

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=44462

--- Comment #12 from Pedro  ---

> Second, doing so, we cannot stop with MSO file types only. Why? We can
> handle a multitude of formats, textual, spreadsheets, graphical,
> presentations, ... Where to stop? And by doing that, you will eventually
> loose the presumed ease of seeing associations of MSO files in one place.

Right... So instead of solving the problem for the most commonly used files you
believe that is is easier to instruct users to reinstall LibreOffice every time
the associations are broken???
TBH I would rather have an option to select which files are associated with
LibreOffice instead of the installer using a black box approach...

> Third, you may be unaware of this, but Windows "Default Programs" has a mode
> that already makes what you need: it is called "Set defaults by app". There
> you just choose a program (e.g. LibreOffice), and choose defaults for that
> program in one place. See e.g.
> https://www.cnet.com/how-to/how-to-set-default-programs-in-windows-10/

Again, right... And in case you are unaware, Microsoft resets file associations
that are not associated to the program of their liking on every other Windows
10 update. I have had to associate JPG (not exactly a MS file format) to the
program I prefer instead of the MS defined APP several times now on a 6 months
old Windows 10 laptop...

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


[Libreoffice-bugs] [Bug 104832] CRASH when selecting OLE (Visio?) object (in a DOC file)

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104832

--- Comment #3 from Julien Nabet  ---
Created attachment 129853
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129853=edit
bt with symbols from console log

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


[Libreoffice-bugs] [Bug 104832] CRASH when selecting OLE (Visio?) object (in a DOC file)

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104832

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I don't reproduce this
with gtk3, gtk, kde4 or gen rendering
but when opening the file, I noticed these logs:
warn:legacy.tools:22030:1:svx/source/svdraw/svdoole2.cxx:1335: The destination
model must have a persistence! Please submit an issue!
warn:legacy.tools:22030:1:svx/source/svdraw/svdoole2.cxx:1336: The source and
the destination models should have different persistences! Problems are
possible!

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


Re: Please add an option to set bug reports to "Private"

2016-12-21 Thread toki


On 12/21/2016 06:08 AM, "Christoph Schäfer" wrote:

> I'd be grateful if you could add an option to your bugtracker to hide bug 
> reports and/or sample files from public view, 

That is not going to happen. For starters any Tom, Dick, or Harry that
wants to be a LibO developer can be. (^1)

>bugs and issues don't exist unless they show up in the bugtracker.
>The advantage of those files is that they have been created by real
graphics professionals for real customers and are far more valuable than
simple unit tests.

Option # 1 is to retain a Tier 3 support firm, to fix those bugs, and
send them upstream.
https://www.libreoffice.org/get-help/professional-support/ is a good
starting point, for finding such a firm.

Option # 2 is to create similar content using the Lorem Ipsum
equivalent, and upload that along with your bug report.

Option # 3 is to file the bug report, with precise, exact, intricate
step by step details on how to reproduce the bug.

^1: More precisely, can contribute code.  Whether or not their code is
included in the software a slightly different issue.

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


[Libreoffice-bugs] [Bug 104817] Fileopen: ODT loads slow in 5.4+

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104817

tommy27  changed:

   What|Removed |Added

 CC||ba...@quipo.it

--- Comment #3 from tommy27  ---
tested under Win8.1 x64
I see no performance difference between LibO 5.2.3.3 and 5.4.0.0.alpha0+

Build ID: 9cfb2f2f03b5ec086487fd483298466db0b09010
CPU Threads: 4; OS Version: Windows 6.29; UI Render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2016-12-20_23:58:02
Locale: it-IT (it_IT); Calc: group

@Timur
would you please retest with the latest daily?

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


[Libreoffice-bugs] [Bug 104830] Crash when exiting Writer after copying to clipboard

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104830

Julien Nabet  changed:

   What|Removed |Added

   Keywords||haveBacktrace

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


[Libreoffice-bugs] [Bug 104687] paste text crash (GTK2)

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104687

--- Comment #12 from Julien Nabet  ---
Reverting
https://cgit.freedesktop.org/libreoffice/core/commit/?id=a0ef7474521413c8967559a635e6fdc0d88f1df6
make disappear the crash here but not for tdf#104481

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


[Libreoffice-bugs] [Bug 44462] Provide a proper 'File Association Manager' for the windows version of Libreoffice

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=44462

--- Comment #11 from Mike Kaganski  ---
Well, first of all, there are functions that are best done by OS/desktop
manager. This one is one of them. More generally, it is not good to duplicate
any OS-provided functionality in program, because doing this, the program takes
responsibility to catch up with any changes in OS function; it should do that
for any OS/DM it works on; it will need to fix its own bugs in this
implementation etc. Now it is done by proper registration using proper method
(installer technology suited for that kind of tasks and doing most of the job)
- some small tweaks are only needed.

Second, doing so, we cannot stop with MSO file types only. Why? We can handle a
multitude of formats, textual, spreadsheets, graphical, presentations, ...
Where to stop? And by doing that, you will eventually loose the presumed ease
of seeing associations of MSO files in one place.

Third, you may be unaware of this, but Windows "Default Programs" has a mode
that already makes what you need: it is called "Set defaults by app". There you
just choose a program (e.g. LibreOffice), and choose defaults for that program
in one place. See e.g.
https://www.cnet.com/how-to/how-to-set-default-programs-in-windows-10/

Lastly: it's not hammer's job to check if its owner uses it by default for
hammering nails.

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


[Libreoffice-bugs] [Bug 70998] Termchange: Graphic/Picture -> Image

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70998

Tamsil Amani  changed:

   What|Removed |Added

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

--- Comment #49 from Tamsil Amani  ---
I've assigned this bug to myself.

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


[Libreoffice-bugs] [Bug 104849] Find report

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104849

tommy27  changed:

   What|Removed |Added

 CC||ba...@quipo.it
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=72
   ||413

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


[Libreoffice-bugs] [Bug 104687] paste text crash (GTK2)

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104687

--- Comment #11 from Julien Nabet  ---
Created attachment 129852
  --> https://bugs.documentfoundation.org/attachment.cgi?id=129852=edit
3 bts got with __cxa_throw

Michael: I followed your advice from
https://bugs.documentfoundation.org/show_bug.cgi?id=104481#c4
Hope these 3 bt help.

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


[Libreoffice-bugs] [Bug 104846] The bottom edge of glyph are clipped (using Linux Libertine G )

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104846

V Stuart Foote  changed:

   What|Removed |Added

 Blocks|104242  |103729


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103729
[Bug 103729] [META] tracker HarfBuzz based common text layout regressions
https://bugs.documentfoundation.org/show_bug.cgi?id=104242
[Bug 104242] Temporarily remove OpenGL setting as default rendering for Windows
builds
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 99829] Window Size change reverts when switching apps

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99829

tommy27  changed:

   What|Removed |Added

 CC||ba...@quipo.it

--- Comment #5 from tommy27  ---
@Frank
are you still seeing this issue with latest LibO 5.2.3.3?

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


[Libreoffice-bugs] [Bug 104687] paste text crash (GTK2)

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104687

Julien Nabet  changed:

   What|Removed |Added

   Keywords||haveBacktrace

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


[Libreoffice-bugs] [Bug 104242] Temporarily remove OpenGL setting as default rendering for Windows builds

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104242

V Stuart Foote  changed:

   What|Removed |Added

 Depends on|104846  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104846
[Bug 104846] The bottom edge of glyph are clipped (using Linux Libertine G)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104846] The bottom edge of glyph are clipped (using Linux Libertine G )

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104846

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||vstuart.fo...@utsa.edu
 Blocks||104242
 Ever confirmed|0   |1

--- Comment #3 from V Stuart Foote  ---
Confirming the clipping on Windows 8.1 Ent 64-bit en-US with both OpenGL and
default rendering with the new HarfBuzz layout
Version: 5.3.0.0.beta2 (x64)
Build ID: a7e30712ad6d8bc9286007b37aa581983e0caba3
CPU Threads: 8; OS Version: Windows 6.29; UI Render: default; Layout Engine:
new; 
Locale: en-US (en_US); Calc: CL

However, on current master [1] with OpenGL enabled the Graphite glyphs are no
longer clipped. With default rendering they are clipped on the bottom edge.

Also with new layout, with OpenGL the extra high Graphite glyphs seem to be
sensitive to the "spacing to contents" of the table cell.

To demonstrate, open with OpenGL enabled on current master and locate the table
with the example liga row. 

The Graphite ligatures on the last row are clipped.

Then, grab the right edge of the table and drag it wider by a character or so.
Notice the glyphs for the ligatures for gf, gfi, will show their full
descenders. While glyphs on the bottom are clipped.

Drag it wider and when the gy ligature is brought up--the entire line of glyphs
is again clipped.

So, not sure this is a shapping issue for the Graphite fonts, or an issue with
the table cells and the way "spacing to border" is applied to glyphs with over
height ascenders and descenders. 

=-ref-=
[1]
Version: 5.4.0.0.alpha0+
Build ID: 36750bc977b3210b23b7822abd395b30a78af6f5
CPU Threads: 8; OS Version: Windows 6.29; UI Render: GL; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-12-21_00:18:41
Locale: en-US (en_US); Calc: CL


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104242
[Bug 104242] Temporarily remove OpenGL setting as default rendering for Windows
builds
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104242] Temporarily remove OpenGL setting as default rendering for Windows builds

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104242

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||104846


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104846
[Bug 104846] The bottom edge of glyph are clipped (using Linux Libertine G)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 89446] Setting cell properties of impress table are very slow in Linux

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89446

tommy27  changed:

   What|Removed |Added

Summary|Setting cell properties of  |Setting cell properties of
   |impress table are very slow |impress table are very slow
   |in linux|in Linux

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


[Libreoffice-bugs] [Bug 89446] Setting cell properties of impress table are very slow in linux

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89446

tommy27  changed:

   What|Removed |Added

 CC||ba...@quipo.it

--- Comment #4 from tommy27  ---
@Jason S.
did you follow Jan Iversen's advise?

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


[Libreoffice-bugs] [Bug 79365] UI: sidebar dropdown cropped on high resolution screen with OS scaling factor 2

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79365

--- Comment #8 from tommy27  ---
@freddi34
is bug still present in LibO 5.2.3.3?

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


[Libreoffice-bugs] [Bug 72641] [ALL_INDIC] Improper rendering when user enters input(INDIC) in search box in LibO applications

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72641

tommy27  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||ba...@quipo.it
Summary|[ALL_INDIC] Improper|[ALL_INDIC] Improper
   |rendering when user enters  |rendering when user enters
   |input(INDIC) in search box  |input(INDIC) in search box
   |in libre office |in LibO applications
   |applications.   |
 Ever confirmed|0   |1

--- Comment #6 from tommy27  ---
@bbarve
please give an update of this bug status using latest LibO 5.2.3.3

if bug is still there revert status to UNCONFIRMED
if bug is gone change it to RESOLVED WORKSFORME

status NEEINFO until then

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


[Libreoffice-bugs] [Bug 104793] "Unknown application" visual bug in Windows 10 " set default file handler" application interface

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104793

--- Comment #9 from Mike Kaganski  ---
Well, first of all, there are functions that are best done by OS/desktop
manager. This one is one of them. More generally, it is not good to duplicate
any OS-provided functionality in program, because doing this, the program takes
responsibility to catch up with any changes in OS function; it should do that
for any OS/DM it works on; it will need to fix its own bugs in this
implementation etc. Now it is done by proper registration using proper method
(installer technology suited for that kind of tasks and doing most of the job)
- some small tweaks are only needed.

Second, doing so, we cannot stop with MSO file types only. Why? We can handle a
multitude of formats, textual, spreadsheets, graphical, presentations, ...
Where to stop? And by doing that, you will eventually loose the presumed ease
of seeing associations of MSO files in one place.

Third, you may be unaware of this, but Windows "Default Programs" has a mode
that already makes what you need: it is called "Set defaults by app". There you
just choose a program (e.g. LibreOffice), and choose defaults for that program
in one place. See e.g.
https://www.cnet.com/how-to/how-to-set-default-programs-in-windows-10/

Lastly: it's not hammer's job to check if its owner uses it by default for
hammering nails.

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


[Libreoffice-bugs] [Bug 57158] Impossible to use the 'Styles and Formatting' window to set the same page style for more than 1 page unless they are the last pages of the document

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57158

--- Comment #21 from Cor Nouws  ---
and by all means: Olivier, Robert: feel free to make an issue with a clear
proposal (as suggested) describing a UI/action that would help.
Thanks! Cor

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


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

2016-12-21 Thread Stephan Bergmann
 extensions/source/propctrlr/taborder.cxx |   77 ---
 extensions/source/propctrlr/taborder.hxx |4 -
 2 files changed, 40 insertions(+), 41 deletions(-)

New commits:
commit 87d1657d6bd68e4a3d8ba461078a7bb1dc9ed121
Author: Stephan Bergmann 
Date:   Wed Dec 21 21:43:27 2016 +0100

loplugin:staticmethods

Change-Id: I04d3095c657deb72a20fa803964912cf6baf268b

diff --git a/extensions/source/propctrlr/taborder.cxx 
b/extensions/source/propctrlr/taborder.cxx
index 4724a40..cf2b0ed 100644
--- a/extensions/source/propctrlr/taborder.cxx
+++ b/extensions/source/propctrlr/taborder.cxx
@@ -40,6 +40,46 @@ namespace pcr
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::datatransfer;
 
+namespace {
+
+Image GetImage( const Reference< XPropertySet >& _rxSet )
+{
+sal_uInt16 nImageId = RID_SVXBMP_CONTROL;
+// TODO: classify controls also in Basic propbrw
+if ( _rxSet.is() && ::comphelper::hasProperty( PROPERTY_CLASSID, 
_rxSet ) )
+{
+switch( ::comphelper::getINT16( _rxSet->getPropertyValue( 
PROPERTY_CLASSID ) ) )
+{
+case FormComponentType::COMMANDBUTTON:  nImageId = 
RID_SVXBMP_BUTTON; break;
+case FormComponentType::FIXEDTEXT:  nImageId = 
RID_SVXBMP_FIXEDTEXT; break;
+case FormComponentType::TEXTFIELD:  nImageId = 
RID_SVXBMP_EDITBOX; break;
+case FormComponentType::RADIOBUTTON:nImageId = 
RID_SVXBMP_RADIOBUTTON; break;
+case FormComponentType::CHECKBOX:   nImageId = 
RID_SVXBMP_CHECKBOX; break;
+case FormComponentType::LISTBOX:nImageId = 
RID_SVXBMP_LISTBOX; break;
+case FormComponentType::COMBOBOX:   nImageId = 
RID_SVXBMP_COMBOBOX; break;
+case FormComponentType::GROUPBOX:   nImageId = 
RID_SVXBMP_GROUPBOX; break;
+case FormComponentType::IMAGEBUTTON:nImageId = 
RID_SVXBMP_IMAGEBUTTON; break;
+case FormComponentType::FILECONTROL:nImageId = 
RID_SVXBMP_FILECONTROL; break;
+case FormComponentType::HIDDENCONTROL:  nImageId = 
RID_SVXBMP_HIDDEN; break;
+case FormComponentType::DATEFIELD:  nImageId = 
RID_SVXBMP_DATEFIELD; break;
+case FormComponentType::TIMEFIELD:  nImageId = 
RID_SVXBMP_TIMEFIELD; break;
+case FormComponentType::NUMERICFIELD:   nImageId = 
RID_SVXBMP_NUMERICFIELD; break;
+case FormComponentType::CURRENCYFIELD:  nImageId = 
RID_SVXBMP_CURRENCYFIELD; break;
+case FormComponentType::PATTERNFIELD:   nImageId = 
RID_SVXBMP_PATTERNFIELD; break;
+case FormComponentType::IMAGECONTROL:   nImageId = 
RID_SVXBMP_IMAGECONTROL; break;
+case FormComponentType::GRIDCONTROL:nImageId = 
RID_SVXBMP_GRID; break;
+case FormComponentType::SCROLLBAR:  nImageId = 
RID_SVXBMP_SCROLLBAR; break;
+case FormComponentType::SPINBUTTON: nImageId = 
RID_SVXBMP_SPINBUTTON; break;
+case FormComponentType::NAVIGATIONBAR:  nImageId = 
RID_SVXBMP_NAVIGATIONBAR; break;
+default:
+OSL_FAIL( "TabOrderDialog::GetImage: unknown control type" );
+}
+}
+
+return Image(BitmapEx(PcrRes(nImageId)));;
+}
+
+}
 
 //= OSimpleTabModel
 
@@ -126,43 +166,6 @@ namespace pcr
 ModalDialog::dispose();
 }
 
-Image TabOrderDialog::GetImage( const Reference< XPropertySet >& _rxSet )
-{
-sal_uInt16 nImageId = RID_SVXBMP_CONTROL;
-// TODO: classify controls also in Basic propbrw
-if ( _rxSet.is() && ::comphelper::hasProperty( PROPERTY_CLASSID, 
_rxSet ) )
-{
-switch( ::comphelper::getINT16( _rxSet->getPropertyValue( 
PROPERTY_CLASSID ) ) )
-{
-case FormComponentType::COMMANDBUTTON:  nImageId = 
RID_SVXBMP_BUTTON; break;
-case FormComponentType::FIXEDTEXT:  nImageId = 
RID_SVXBMP_FIXEDTEXT; break;
-case FormComponentType::TEXTFIELD:  nImageId = 
RID_SVXBMP_EDITBOX; break;
-case FormComponentType::RADIOBUTTON:nImageId = 
RID_SVXBMP_RADIOBUTTON; break;
-case FormComponentType::CHECKBOX:   nImageId = 
RID_SVXBMP_CHECKBOX; break;
-case FormComponentType::LISTBOX:nImageId = 
RID_SVXBMP_LISTBOX; break;
-case FormComponentType::COMBOBOX:   nImageId = 
RID_SVXBMP_COMBOBOX; break;
-case FormComponentType::GROUPBOX:   nImageId = 
RID_SVXBMP_GROUPBOX; break;
-case FormComponentType::IMAGEBUTTON:nImageId = 
RID_SVXBMP_IMAGEBUTTON; break;
-case FormComponentType::FILECONTROL:nImageId = 
RID_SVXBMP_FILECONTROL; break;
-case FormComponentType::HIDDENCONTROL:  nImageId = 
RID_SVXBMP_HIDDEN; break;
-case FormComponentType::DATEFIELD:  nImageId = 
RID_SVXBMP_DATEFIELD; break;
-

[Libreoffice-bugs] [Bug 83614] EDITING: Option to disable search results in Replace All

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83614

Cor Nouws  changed:

   What|Removed |Added

   Keywords||needsDevEval
 CC||c...@nouenoff.nl,
   ||j...@documentfoundation.org
   Severity|normal  |enhancement

--- Comment #8 from Cor Nouws  ---
I think this is valid as an enhancement request.
Maybe even easyHack little more interesting..?

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


[Libreoffice-bugs] [Bug 104849] New: Find report

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104849

Bug ID: 104849
   Summary: Find report
   Product: LibreOffice
   Version: 5.2.3.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ville...@t-online.de

After correcting a column of 250,000 numbers it tries to write 250,000 cell
addresses into a list box which takes by a magnitude more time than the
replacement process. In fact I killed the process and fired up OpenOffice.
If such feature is really, really desired by the Excel fans, then it should be
possible to disable it. Furthermore, such feature should be supervised by an
experienced Calc developer who knows that a search run returns a collection
com.sun.star.sheet.SheetCellRanges with interface XSheetCellRanges having
method getRangeAddressesAsString. In my case, this method would return an array
of one string "Sheet1.A1:A25"
http://www.openoffice.org/api/docs/common/ref/com/sun/star/sheet/XSheetCellRanges.html#getRangeAddressesAsString

Issue #72413 has not been fixed in a satisfactory manner. The feature needs to
be reimplemented by a more experienced Calc developer. And it needs a config
option to get rid of it.

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


[Libreoffice-bugs] [Bug 104847] FILEOPEN DOC: Cross-page table to short, changing the page layout

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104847

--- Comment #1 from Mike Kaganski  ---
This is caused by commit 6f5024de2e1a5cc533527e45b33d9a415467c48d.

And it is not a bug, it works as intended.
The minimal row height ensures that if the row content is shorter than the
minimal value, then minimal value is used. In LO, when that minimal height
couldn't fit to page, then the row didn't split to next page. But now we have
fixed that, and when we flow to next page, we add the height to what was left
on first page.

E.g., in this file, the minimal row height is 27.56 cm, and page body height is
only 29.7 cm - 2*2 cm = 25.7 cm. If there were no text in the row, then the
first 25.7 cm should be on first page, and the rest of 1.86 cm should go to
second. But there is much data in the row, it takes total of 48.05 cm, which
puts 22.35 cm to the second page. That second page has yet another 3.35 cm free
space left, which is taken by the text.

That MS Word repeats the minimal height on each page is its own bug. Saying
that, I must add that we cannot mimic its bug, because if we try to put the
minimal height on each page, it will revert us to the previous state, where we
won't be able to see the table below the first page.

The proper way of fixing this is unfortunately to fix the document itself, by
setting the text after the table to start on the next page.

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


[Libreoffice-bugs] [Bug 57158] Impossible to use the 'Styles and Formatting' window to set the same page style for more than 1 page unless they are the last pages of the document

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57158

tommy27  changed:

   What|Removed |Added

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

--- Comment #20 from tommy27  ---
Ok, Cor.
let's mark it this way.

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


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

2016-12-21 Thread Caolán McNamara
 extensions/source/propctrlr/formresid.hrc  |2 +-
 extensions/source/propctrlr/pcrmiscres.src |2 +-
 extensions/source/propctrlr/taborder.cxx   |2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 20bd8d0426380b5ae52c83923f2eb747a5abf8b0
Author: Caolán McNamara 
Date:   Wed Dec 21 20:19:43 2016 +

-Werror,-Wmacro-redefined

Change-Id: Ifd246b642979df0d8b1aa20a59f8c73dc9ddc1b2

diff --git a/extensions/source/propctrlr/formresid.hrc 
b/extensions/source/propctrlr/formresid.hrc
index 6019632..52cc1f6 100644
--- a/extensions/source/propctrlr/formresid.hrc
+++ b/extensions/source/propctrlr/formresid.hrc
@@ -315,7 +315,7 @@
 #define RID_SVXBMP_CHECKBOX ( RID_PROPCONTROLLER_START + 36 )
 #define RID_SVXBMP_FIXEDTEXT( RID_PROPCONTROLLER_START + 37 )
 #define RID_SVXBMP_GROUPBOX ( RID_PROPCONTROLLER_START + 38 )
-#define RID_SVXBMP_EDIT ( RID_PROPCONTROLLER_START + 39 )
+#define RID_SVXBMP_EDITBOX  ( RID_PROPCONTROLLER_START + 39 )
 #define RID_SVXBMP_LISTBOX  ( RID_PROPCONTROLLER_START + 40 )
 #define RID_SVXBMP_COMBOBOX ( RID_PROPCONTROLLER_START + 41 )
 #define RID_SVXBMP_GRID ( RID_PROPCONTROLLER_START + 42 )
diff --git a/extensions/source/propctrlr/pcrmiscres.src 
b/extensions/source/propctrlr/pcrmiscres.src
index a856d02..58a393c 100644
--- a/extensions/source/propctrlr/pcrmiscres.src
+++ b/extensions/source/propctrlr/pcrmiscres.src
@@ -55,7 +55,7 @@ Bitmap RID_SVXBMP_GROUPBOX
 File = "sx10598.png";
 };
 
-Bitmap RID_SVXBMP_EDIT
+Bitmap RID_SVXBMP_EDITBOX
 {
 File = "sx10599.png";
 };
diff --git a/extensions/source/propctrlr/taborder.cxx 
b/extensions/source/propctrlr/taborder.cxx
index 617a34e..4724a40 100644
--- a/extensions/source/propctrlr/taborder.cxx
+++ b/extensions/source/propctrlr/taborder.cxx
@@ -136,7 +136,7 @@ namespace pcr
 {
 case FormComponentType::COMMANDBUTTON:  nImageId = 
RID_SVXBMP_BUTTON; break;
 case FormComponentType::FIXEDTEXT:  nImageId = 
RID_SVXBMP_FIXEDTEXT; break;
-case FormComponentType::TEXTFIELD:  nImageId = 
RID_SVXBMP_EDIT; break;
+case FormComponentType::TEXTFIELD:  nImageId = 
RID_SVXBMP_EDITBOX; break;
 case FormComponentType::RADIOBUTTON:nImageId = 
RID_SVXBMP_RADIOBUTTON; break;
 case FormComponentType::CHECKBOX:   nImageId = 
RID_SVXBMP_CHECKBOX; break;
 case FormComponentType::LISTBOX:nImageId = 
RID_SVXBMP_LISTBOX; break;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 44462] Provide a proper 'File Association Manager' for the windows version of Libreoffice

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=44462

--- Comment #10 from Charles  ---
Hi Mike...

Virtually copy/pasting my comment in the other bug here...

I have to disagree that resolving bug 104793 should automatically resolve this
one, because - well, because resolving it does *not* resolve this one.

However, bug 104793 begs a question...

Is there a way to make these changes programatically in Windows 10, without
being dumped to the Default Programs screen?

I think the answer is yes, because I don't recall being dropped to that screen
when I first installed LibO on my laptop after clean installing windows 10.

But I ask this because this is what happens when I install Firefox for someone.
With Windows 7, you just clicked 'OK' on the first run to set it as default.
Done. In Windows 10, after you click OK to set it as default, you're then
brought to the Windows Default Programs settings page where you have to
manually select Firefox and change it.

Now I'm off to open a bug for Firefox to set itself as the default without
getting dropped to that screen - but I have a feeling that because Microsoft
really wants users to use Edge, they may not let another web browser take over
as the default without the extra hassle.

So, if there is a way to accomplish these changes without having to jump
through those hoops, and it is possible to properly manage these fully from
within LibO - which apparently is the case - I still think this bug would be a
valuable addition, simply because it puts all of the relevant file associations
in one place and let's you see at a glance which one is set for LibO and which
for MSO.

What I would do for this bug though is to add a single option to 'Allow Windows
to control these for me', which could be made default if the devs so desired.

Thanks for listening.

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


[Libreoffice-bugs] [Bug 104793] "Unknown application" visual bug in Windows 10 " set default file handler" application interface

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104793

--- Comment #8 from Charles  ---
Hi Mike...

As the OP for bug 44462, I have to disagree that resolving this bug should
automatically resolve mine, because - well, because resolving this one does
*not* resolve mine.

However, this bug begs a question...

Is there a way to make these changes programatically, without being dumped to
the Default Programs screen?

I think the answer is yes, because I don't recall being dropped to that screen
when I first installed LibO on my laptop after clean installing windows 10.

But I ask this because this is what happens when I install Firefox for someone.
With Windows 7, you just clicked 'OK' on the first run to set it as default.
Done. In Windows 10, after you click OK to set it as default, you're then
brought to the Windows Default Programs settings page where you have to
manually select Firefox and change it.

Now I'm off to open a bug for Firefox to set itself as the default without
getting dropped to that screen - but I have a feeling that because Microsoft
really wants users to use Edge, they may not let another web browser take over
as the default without the extra hassle.

So, if there is a way to accomplish these changes without having to jump
through those hoops, and it is possible to properly manage these fully from
within LibO - which apparently is the case - I still think bug 44462 would be a
valuable addition, simply because it puts all of the relevant file associations
in one place and let's you see at a glance which one is set for LibO and which
for MSO.

What I would do for my bug though is to add a single option to 'Allow Windows
to control these for me', which could be made default if the devs so desired.

Of course, my being the OP for bug 44462 doesn't have anything to do with this
opinion. ;)

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


[Libreoffice-bugs] [Bug 51691] LO Writer do not display properly MS Word file.

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51691

Mike Kaganski  changed:

   What|Removed |Added

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

--- Comment #10 from Mike Kaganski  ---


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

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


[Libreoffice-bugs] [Bug 99274] Can't open a DOC file: Writer freezes

2016-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99274

Telesto  changed:

   What|Removed |Added

 Blocks|104527  |104848


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104527
[Bug 104527] [META] DOC bug tracker
https://bugs.documentfoundation.org/show_bug.cgi?id=104848
[Bug 104848] [META] DOC file opening issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


  1   2   3   4   5   >