[Libreoffice-bugs] [Bug 92026] FILEOPEN: Borders not proper in table from DOCX

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92026

--- Comment #5 from Lars Jødal  ---
A more simple case of border problems, which is likely to be part of this bug:

If top and bottom borders are added to the first row of a table, then a DOCX
version of the table will have borders for all rows.

To reproduce:
1. Create a new table in Writer.
2. Select whole table -> Table properties -> Borders, and remove all borders.
3. Select first row of table -> Table properties -> Borders, and add top and
bottom border.
4. Table now (correctly) has lines above and below first row, while the other
rows are without border.
5. Save as DOCX.

Found behaviour: When DOCX file is opened (in LO Writer or in MSO Word), all
rows of the table have border, not just the first row.

Expected behaviour: As 4. in list to reproduce: Only border for the first row.

This only applies to DOCX format. If DOC format is used, the bug does not
appear.
A similar bug can be produced by selecting the first column and adding left and
right border.

This has been tested with LO 5.4.3 and the upcoming LO 6.0.0.1 with identical
results. (Operating system was Windows 10, but the bug is not suspected to be
related to operating system.)

-- 
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: 6 commits - vcl/Library_vclplug_qt5.mk vcl/qt5

2018-01-07 Thread Noel Grandin
 vcl/Library_vclplug_qt5.mk   |2 -
 vcl/qt5/Qt5Bitmap.cxx|   16 ++--
 vcl/qt5/Qt5Bitmap.hxx|2 -
 vcl/qt5/Qt5Data.cxx  |   13 ++---
 vcl/qt5/Qt5Data.hxx  |3 +-
 vcl/qt5/Qt5Frame.cxx |   44 -
 vcl/qt5/Qt5Graphics.cxx  |   28 +
 vcl/qt5/Qt5Graphics.hxx  |2 -
 vcl/qt5/Qt5Graphics_Controls.cxx |   28 +++--
 vcl/qt5/Qt5Graphics_GDI.cxx  |   51 ++-
 vcl/qt5/Qt5Graphics_Text.cxx |   24 +-
 vcl/qt5/Qt5Instance.cxx  |2 -
 vcl/qt5/Qt5Object.cxx|4 +--
 13 files changed, 110 insertions(+), 109 deletions(-)

New commits:
commit 6c9adeed6186e7a65facffc6cb93277686f1b6e4
Author: Noel Grandin 
Date:   Mon Jan 8 09:44:05 2018 +0200

set_warnings_not_errors not necessary in qt5 plugin anymore

Change-Id: I8ed8c07ce5b34d6a03a2ec9a5f9782cd506529e5

diff --git a/vcl/Library_vclplug_qt5.mk b/vcl/Library_vclplug_qt5.mk
index fba78d738883..68758028d662 100644
--- a/vcl/Library_vclplug_qt5.mk
+++ b/vcl/Library_vclplug_qt5.mk
@@ -19,8 +19,6 @@
 
 $(eval $(call gb_Library_Library,vclplug_qt5))
 
-$(eval $(call gb_Library_set_warnings_not_errors,vclplug_qt5))
-
 $(eval $(call gb_Library_use_custom_headers,vclplug_qt5,vcl/qt5))
 
 $(eval $(call gb_Library_set_include,vclplug_qt5,\
commit 93dae42fd4e5c7425cd0dfa945acd2fa0512d27f
Author: Noel Grandin 
Date:   Mon Jan 8 09:43:42 2018 +0200

loplugin:useuniqueptr in qt5

Change-Id: Ic7135e6ca3be7848fa39cd442d6dd716ea090713

diff --git a/vcl/qt5/Qt5Data.cxx b/vcl/qt5/Qt5Data.cxx
index 7d529964eed9..5c5a341df208 100644
--- a/vcl/qt5/Qt5Data.cxx
+++ b/vcl/qt5/Qt5Data.cxx
@@ -27,20 +27,13 @@
 Qt5Data::Qt5Data(SalInstance* pInstance)
 : GenericUnixSalData(SAL_DATA_QT5, pInstance)
 {
-for (QCursor*& rpCsr : m_aCursors)
-rpCsr = nullptr;
-
 ImplSVData* pSVData = ImplGetSVData();
 
 // draw toolbars on separate lines
 pSVData->maNWFData.mbDockingAreaSeparateTB = true;
 }
 
-Qt5Data::~Qt5Data()
-{
-for (QCursor*& rpCsr : m_aCursors)
-delete rpCsr;
-}
+Qt5Data::~Qt5Data() {}
 
 static QCursor* getQCursorFromXBM(const unsigned char* pBitmap, const unsigned 
char* pMask,
   int nWidth, int nHeight, int nXHot, int 
nYHot)
@@ -184,7 +177,7 @@ QCursor& Qt5Data::getCursor(PointerStyle ePointerStyle)
 SAL_WARN("vcl.qt5", "pointer " << static_cast(ePointerStyle) 
<< "not implemented");
 }
 
-m_aCursors[ePointerStyle] = pCursor;
+m_aCursors[ePointerStyle].reset(pCursor);
 }
 
 return *m_aCursors[ePointerStyle];
diff --git a/vcl/qt5/Qt5Data.hxx b/vcl/qt5/Qt5Data.hxx
index a63d243b6967..f8cf4fb05e6a 100644
--- a/vcl/qt5/Qt5Data.hxx
+++ b/vcl/qt5/Qt5Data.hxx
@@ -23,12 +23,13 @@
 
 #include 
 #include 
+#include 
 
 class QCursor;
 
 class Qt5Data : public GenericUnixSalData
 {
-o3tl::enumarray m_aCursors;
+o3tl::enumarray m_aCursors;
 
 public:
 explicit Qt5Data(SalInstance* pInstance);
diff --git a/vcl/qt5/Qt5Graphics.cxx b/vcl/qt5/Qt5Graphics.cxx
index 411dfd7543b8..23249c5799c6 100644
--- a/vcl/qt5/Qt5Graphics.cxx
+++ b/vcl/qt5/Qt5Graphics.cxx
@@ -44,12 +44,7 @@ Qt5Graphics::Qt5Graphics( Qt5Frame *pFrame, QImage *pQImage )
 ResetClipRegion();
 }
 
-Qt5Graphics::~Qt5Graphics()
-{
-// release the text styles
-for (int i = 0; i < MAX_FALLBACK; ++i)
-delete m_pTextStyle[i];
-}
+Qt5Graphics::~Qt5Graphics() {}
 
 void Qt5Graphics::ChangeQImage(QImage* pQImage)
 {
diff --git a/vcl/qt5/Qt5Graphics.hxx b/vcl/qt5/Qt5Graphics.hxx
index 6e8332356d49..a9a71c64b5e2 100644
--- a/vcl/qt5/Qt5Graphics.hxx
+++ b/vcl/qt5/Qt5Graphics.hxx
@@ -49,7 +49,7 @@ class Qt5Graphics : public SalGraphics
 
 PhysicalFontCollection* m_pFontCollection;
 const Qt5FontFace* m_pFontData[MAX_FALLBACK];
-Qt5Font* m_pTextStyle[MAX_FALLBACK];
+std::unique_ptr m_pTextStyle[MAX_FALLBACK];
 SalColor m_aTextColor;
 
 Qt5Graphics(Qt5Frame* pFrame, QImage* pQImage);
diff --git a/vcl/qt5/Qt5Graphics_Text.cxx b/vcl/qt5/Qt5Graphics_Text.cxx
index ec07d50e4af6..8d25e97df786 100644
--- a/vcl/qt5/Qt5Graphics_Text.cxx
+++ b/vcl/qt5/Qt5Graphics_Text.cxx
@@ -39,8 +39,7 @@ void Qt5Graphics::SetFont(const FontSelectPattern* pReqFont, 
int nFallbackLevel)
 {
 if (!m_pTextStyle[i])
 break;
-delete m_pTextStyle[i];
-m_pTextStyle[i] = nullptr;
+m_pTextStyle[i].reset();
 }
 
 if (!pReqFont)
@@ -49,7 +48,7 @@ void Qt5Graphics::SetFont(const FontSelectPattern* pReqFont, 
int nFallbackLevel)
 else
 {
 m_pFontData[nFallbackLevel] = static_cast(pReqFont->mpFontData);
-m_pTextStyle[nFallbackLevel] = new Qt5Font(*pReqFont);
+

Possui Nível Superior? "Habilitar-se" em uma das 16 Licenciaturas em 12 meses com 50% de desconto! Solicite já seu cupom.

2018-01-07 Thread Instituto Faseb

Seu cliente de e-mail não pode ler este e-mail.
Para visualizá-lo on-line, por favor, clique aqui:
http://painel.educasebnews.com/fase/display.php?M=265696=c113bc4a4a724751d92172fb8ebe9c10=16=7=13


Para parar de receber nossos
Emails:http://painel.educasebnews.com/fase/unsubscribe.php?M=265696=c113bc4a4a724751d92172fb8ebe9c10=7=16
\Nkt-Marketer
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 35515] Autocorrection error to capitalize email addresses with periods in them

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35515

--- Comment #9 from tommy27  ---
same findings as in comment 3

tested under Win8.1 x64 using LibO 6.1.0.0.alpha0+
Build ID: 075b5ad5bdd230738ee30b0ea17a7fa9502c218b
CPU threads: 4; OS: Windows 6.3; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2017-12-22_00:40:12
Locale: it-IT (it_IT); Calc: group threaded

-- 
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 sw/source

2018-01-07 Thread Mike Kaganski
 sw/qa/extras/ooxmlexport/data/tdf114882.docx |binary
 sw/qa/extras/ooxmlexport/ooxmlexport11.cxx   |5 +++
 sw/source/filter/ww8/docxattributeoutput.cxx |   40 ++-
 sw/source/filter/ww8/docxattributeoutput.hxx |   26 ++---
 sw/source/filter/ww8/docxexport.cxx  |   30 
 5 files changed, 49 insertions(+), 52 deletions(-)

New commits:
commit 4f65853df16a599fe81576bbccbca6ea78488d54
Author: Mike Kaganski 
Date:   Sun Jan 7 23:53:02 2018 +0300

tdf#114882: don't try to close SDT when processing inner objects

Change-Id: Ib7e59e1a6c82d2d35a8466312a2571f76f2338b7
Reviewed-on: https://gerrit.libreoffice.org/47546
Tested-by: Jenkins 
Reviewed-by: Mike Kaganski 

diff --git a/sw/qa/extras/ooxmlexport/data/tdf114882.docx 
b/sw/qa/extras/ooxmlexport/data/tdf114882.docx
new file mode 100644
index ..8663f6b15557
Binary files /dev/null and b/sw/qa/extras/ooxmlexport/data/tdf114882.docx differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
index 00c362340ce5..46e31f89b6c8 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
@@ -197,6 +197,11 @@ DECLARE_OOXMLEXPORT_TEST(testTdf113399, "tdf113399.doc")
 CPPUNIT_ASSERT_EQUAL(static_cast(0), nPaddingValue);
 }
 
+DECLARE_OOXMLEXPORT_TEST(testTdf114882, "tdf114882.docx")
+{
+// fastserializer must not fail assertion because of mismatching elements
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index 3f6b78ef6932..fbcc5e634f2d 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -494,10 +494,10 @@ void DocxAttributeOutput::EndParagraph( 
ww8::WW8TableNodeInfoInner::Pointer_t pT
otherwise the StartParagraph function will use the 
previous existing
table reference attributes since the variable is being 
shared.
 */
-DocxTableExportContext aDMLTableExportContext;
-pushToTableExportContext(aDMLTableExportContext);
-m_rExport.SdrExporter().writeDMLTextFrame(, 
m_anchorId++);
-popFromTableExportContext(aDMLTableExportContext);
+{
+DocxTableExportContext aDMLTableExportContext(*this);
+m_rExport.SdrExporter().writeDMLTextFrame(, 
m_anchorId++);
+}
 m_pSerializer->endElementNS(XML_mc, XML_Choice);
 SetAlternateContentChoiceOpen( false );
 
@@ -508,10 +508,10 @@ void DocxAttributeOutput::EndParagraph( 
ww8::WW8TableNodeInfoInner::Pointer_t pT
 //reset the tableReference.
 
 m_pSerializer->startElementNS(XML_mc, XML_Fallback, FSEND);
-DocxTableExportContext aVMLTableExportContext;
-pushToTableExportContext(aVMLTableExportContext);
-m_rExport.SdrExporter().writeVMLTextFrame();
-popFromTableExportContext(aVMLTableExportContext);
+{
+DocxTableExportContext aVMLTableExportContext(*this);
+m_rExport.SdrExporter().writeVMLTextFrame();
+}
 m_rExport.m_pTableInfo = pOldTableInfo;
 
 m_pSerializer->endElementNS(XML_mc, XML_Fallback);
@@ -579,12 +579,10 @@ void DocxAttributeOutput::EndParagraph( 
ww8::WW8TableNodeInfoInner::Pointer_t pT
 {
 for ( const auto & pFrame : aFramePrTextbox )
 {
-DocxTableExportContext aTableExportContext;
-pushToTableExportContext(aTableExportContext);
+DocxTableExportContext aTableExportContext(*this);
 m_pCurrentFrame = pFrame.get();
 m_rExport.SdrExporter().writeOnlyTextOfFrame(pFrame.get());
 m_pCurrentFrame = nullptr;
-popFromTableExportContext(aTableExportContext);
 }
 aFramePrTextbox.clear();
 }
@@ -5310,7 +5308,6 @@ void DocxAttributeOutput::WritePostponedCustomShape()
 if (!m_pPostponedCustomShape)
 return;
 
-bool bStartedParaSdt = m_bStartedParaSdt;
 for( const auto & rPostponedDrawing : *m_pPostponedCustomShape)
 {
 if ( IsAlternateContentChoiceOpen() )
@@ -5318,7 +5315,6 @@ void DocxAttributeOutput::WritePostponedCustomShape()
 else
 
m_rExport.SdrExporter().writeDMLAndVMLDrawing(rPostponedDrawing.object, 
*rPostponedDrawing.frame, m_anchorId++);
 }
-m_bStartedParaSdt = bStartedParaSdt;
 m_pPostponedCustomShape.reset(nullptr);
 }
 
@@ -5331,7 +5327,6 @@ void DocxAttributeOutput::WritePostponedDMLDrawing()
 std::unique_ptr< std::vector > 

[Libreoffice-bugs] [Bug 109132] FILESAVE: ODS: VBA Macro name in Cell are converted to lowercase and macro is unknown

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109132

Aron Budea  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected
 CC||ba...@caesar.elte.hu,
   ||markus.mohrhard@googlemail.
   ||com
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=96
   ||549

--- Comment #3 from Aron Budea  ---
Bibisected to the comment referenced below, using repo bibisect-linux-64-5.2.
Adding Cc: to Markus Mohrhard.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=e8322dffb4dfc7015ee0842f133b79080eb2b0d8
author  Markus Mohrhard    
2016-04-09 09:36:45 +0200
committer   Markus Mohrhard    
2016-04-09 08:52:30 +

import all formatting properties for column style, tdf#96549

-- 
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: kit/ForKit.cpp wsd/LOOLWSD.cpp wsd/LOOLWSD.hpp

2018-01-07 Thread Ashod Nakashian
 kit/ForKit.cpp  |   16 ++--
 wsd/LOOLWSD.cpp |   19 ---
 wsd/LOOLWSD.hpp |1 +
 3 files changed, 31 insertions(+), 5 deletions(-)

New commits:
commit 94781ec6d989b7f96ac606faeee0fd7fa6fa3bea
Author: Ashod Nakashian 
Date:   Sun Jan 7 22:34:28 2018 -0500

wsd: log at trace level until first child is forked

Change-Id: I1b995b4714738f3bffd6dac58cf90ee6f1a32898
Reviewed-on: https://gerrit.libreoffice.org/47565
Reviewed-by: Ashod Nakashian 
Tested-by: Ashod Nakashian 

diff --git a/kit/ForKit.cpp b/kit/ForKit.cpp
index e399c116..48e4ebb5 100644
--- a/kit/ForKit.cpp
+++ b/kit/ForKit.cpp
@@ -52,6 +52,7 @@ static bool NoCapsForKit = false;
 #endif
 static bool DisplayVersion = false;
 static std::string UnitTestLibrary;
+static std::string LogLevel;
 static std::atomic ForkCounter(0);
 
 static std::map childJails;
@@ -245,6 +246,12 @@ static int createLibreOfficeKit(const std::string& 
childRoot,
 
 LOG_DBG("Forking a loolkit process with jailId: " << jailId << ".");
 
+if (LogLevel != "trace")
+{
+LOG_INF("Setting log-level to [" << LogLevel << "].");
+Log::logger().setLevel(LogLevel);
+}
+
 const Process::PID pid = fork();
 if (!pid)
 {
@@ -376,7 +383,12 @@ int main(int argc, char** argv)
 logProperties["path"] = std::string(logFilename);
 }
 
-Log::initialize("frk", logLevel ? logLevel : "", logColor != nullptr, 
logToFile, logProperties);
+Log::initialize("frk", "trace", logColor != nullptr, logToFile, 
logProperties);
+LogLevel = logLevel ? logLevel : "trace";
+if (LogLevel != "trace")
+{
+LOG_INF("Setting log-level to [trace] and delaying setting to 
requested [" << LogLevel << "].");
+}
 
 std::string childRoot;
 std::string loSubPath;
@@ -478,7 +490,7 @@ int main(int argc, char** argv)
 }
 
 // Setup & check environment
-std::string layers(
+const std::string layers(
 "xcsxcu:${BRAND_BASE_DIR}/share/registry "
 "res:${BRAND_BASE_DIR}/share/registry "
 
"bundledext:${${BRAND_BASE_DIR}/program/lounorc:BUNDLED_EXTENSIONS_USER}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/configmgr.ini
 "
diff --git a/wsd/LOOLWSD.cpp b/wsd/LOOLWSD.cpp
index 99174cca..b3336f01 100644
--- a/wsd/LOOLWSD.cpp
+++ b/wsd/LOOLWSD.cpp
@@ -562,6 +562,7 @@ std::string LOOLWSD::FileServerRoot;
 std::string LOOLWSD::LOKitVersion;
 std::string LOOLWSD::ConfigFile = LOOLWSD_CONFIGDIR "/loolwsd.xml";
 std::string LOOLWSD::ConfigDir = LOOLWSD_CONFIGDIR "/conf.d";
+std::string LOOLWSD::LogLevel = "trace";
 Util::RuntimeConstant LOOLWSD::SSLEnabled;
 Util::RuntimeConstant LOOLWSD::SSLTermination;
 std::set LOOLWSD::EditFileExtensions;
@@ -716,8 +717,9 @@ void LOOLWSD::initialize(Application& self)
 // Allow UT to manipulate before using configuration values.
 UnitWSD::get().configure(config());
 
-const auto logLevel = getConfigValue(conf, "logging.level", 
"trace");
-setenv("LOOL_LOGLEVEL", logLevel.c_str(), true);
+// Set the log-level after complete initialization to force maximum 
details at startup.
+LogLevel = getConfigValue(conf, "logging.level", "trace");
+setenv("LOOL_LOGLEVEL", LogLevel.c_str(), true);
 const auto withColor = getConfigValue(conf, "logging.color", true) 
&& isatty(fileno(stderr));
 if (withColor)
 {
@@ -755,7 +757,12 @@ void LOOLWSD::initialize(Application& self)
 }
 }
 
-Log::initialize("wsd", logLevel, withColor, logToFile, logProperties);
+// Log at trace level until we complete the initialization.
+Log::initialize("wsd", "trace", withColor, logToFile, logProperties);
+if (LogLevel != "trace")
+{
+LOG_INF("Setting log-level to [trace] and delaying setting to 
requested [" << LogLevel << "].");
+}
 
 #if ENABLE_SSL
 LOOLWSD::SSLEnabled.set(getConfigValue(conf, "ssl.enable", true));
@@ -2713,6 +2720,12 @@ int LOOLWSD::innerMain()
 }
 #endif
 
+if (LogLevel != "trace")
+{
+LOG_INF("Setting log-level to [" << LogLevel << "].");
+Log::logger().setLevel(LogLevel);
+}
+
 // Start the server.
 srv.start(ClientPortNumber);
 
diff --git a/wsd/LOOLWSD.hpp b/wsd/LOOLWSD.hpp
index 40a32b73..9e388a6c 100644
--- a/wsd/LOOLWSD.hpp
+++ b/wsd/LOOLWSD.hpp
@@ -55,6 +55,7 @@ public:
 static std::string ServerName;
 static std::string FileServerRoot;
 static std::string LOKitVersion;
+static std::string LogLevel;
 static std::atomic NumConnections;
 static bool TileCachePersistent;
 static std::unique_ptr TraceDumper;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 85299] FORMATTING: bullets list style not retained after roundtrip

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85299

--- Comment #15 from QA Administrators  ---
** Please read this message in its entirety before responding **

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

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

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
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 35515] Autocorrection error to capitalize email addresses with periods in them

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35515

--- Comment #8 from QA Administrators  ---
** Please read this message in its entirety before responding **

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

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

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
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 114251] Hang loading spreadsheet

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114251

--- Comment #32 from Jim Avera  ---
> It will be available in 5.4.5.

Please be careful.   5.4.x is the only version which currently works well with
this spreadsheet, so I'd hate to see the problems currently plaguing master
creep into that 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 114878] Fix "CSV injection" vulnerability

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114878

--- Comment #2 from Mike Kaganski  ---
Actually, this is not a "remote" code execution. And this doesn't differ from
any other spreadsheet file being opened in a spreadsheet application, where
formulas can appear. If you use XLS, or ODS, or anything, there are formulas,
and they may do all the same kind of things. The only difference here is that
it's not a widespread knowledge that CSV files can contain that, too, despite
the RFC says otherwise.

RFC is great, but current state (with billions of existing files that require
to keep working) is the de-facto standard. And that isn't gonna change. The
only things required (not here, but universally) is amendment to the RFC that
makes it up-to-date, and wide informing.

-- 
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 112950] PDF: Hebrew characters overlapping or very close together with David CLM font

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112950

Adolfo Jayme  changed:

   What|Removed |Added

 Resolution|FIXED   |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 114894] Text frames.

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114894

--- Comment #2 from Mike Kaganski  ---
AFAICT, OP meant Draw (which is mentioned as Component), and the feature isn't
available there...

-- 
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: uitest/demo_ui uitest/uitest

2018-01-07 Thread Markus Mohrhard
 uitest/demo_ui/edit.py   |4 ++--
 uitest/uitest/uihelper/common.py |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

New commits:
commit dbf83d315acc454b576355f2e5bd8412586827ac
Author: Markus Mohrhard 
Date:   Sun Jan 7 20:07:42 2018 +0100

uitest: add a shared helper method for selecting text

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

diff --git a/uitest/demo_ui/edit.py b/uitest/demo_ui/edit.py
index 6da14333a4d5..48ada3b1d15e 100644
--- a/uitest/demo_ui/edit.py
+++ b/uitest/demo_ui/edit.py
@@ -8,7 +8,7 @@
 from libreoffice.uno.propertyvalue import mkPropertyValues
 
 from uitest.framework import UITestCase
-from uitest.uihelper.common import type_text, get_state_as_dict
+from uitest.uihelper.common import type_text, get_state_as_dict, select_text
 
 import time
 
@@ -44,7 +44,7 @@ class EditTest(UITestCase):
 type_text(xEdit, "otherChars")
 self.assertEqual("siotherCharsgeName", 
get_state_as_dict(xEdit)["Text"])
 
-xEdit.executeAction("SELECT", mkPropertyValues({"FROM": "2", "TO": 
"12"}))
+select_text(xEdit, from_pos="2", to="12")
 self.assertEqual("otherChars", 
get_state_as_dict(xEdit)["SelectedText"])
 
 xAddBtn = xAddNameDlg.getChild("cancel")
diff --git a/uitest/uitest/uihelper/common.py b/uitest/uitest/uihelper/common.py
index a83230b5a723..5056ef764983 100644
--- a/uitest/uitest/uihelper/common.py
+++ b/uitest/uitest/uihelper/common.py
@@ -16,4 +16,7 @@ def type_text(ui_object, text):
 def select_pos(ui_object, pos):
 ui_object.executeAction("SELECT", mkPropertyValues({"POS": pos}))
 
+def select_text(ui_object, from_pos, to):
+ui_object.executeAction("SELECT", mkPropertyValues({"FROM": from_pos, 
"TO": to}))
+
 # vim: set shiftwidth=4 softtabstop=4 expandtab:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114180] FILESAVE XLSX Many custom chart wall properties are not preserved when the spreadsheet is saved as XLSX

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114180

--- Comment #4 from Commit Notification 
 ---
Markus Mohrhard committed a patch related to this issue.
It has been pushed to "master":

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

support exporting of hatch for chart background, tdf#114180

It will be available in 6.1.0.

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

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

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


[Libreoffice-bugs] [Bug 114180] FILESAVE XLSX Many custom chart wall properties are not preserved when the spreadsheet is saved as XLSX

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114180

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.1.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] core.git: include/oox oox/source

2018-01-07 Thread Markus Mohrhard
 include/oox/export/chartexport.hxx |1 +
 include/oox/export/drawingml.hxx   |3 +++
 oox/source/export/chartexport.cxx  |   22 ++
 oox/source/export/drawingml.cxx|   10 +++---
 4 files changed, 33 insertions(+), 3 deletions(-)

New commits:
commit 38df2698123d52461679b4bedadd693b23cb4794
Author: Markus Mohrhard 
Date:   Thu Dec 28 21:12:18 2017 +0100

support exporting of hatch for chart background, tdf#114180

It seems that the hatch properties can not easily be exported. MSO
just knows some hard-coded patterns.

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

diff --git a/include/oox/export/chartexport.hxx 
b/include/oox/export/chartexport.hxx
index 4ac5ee10bb2b..6d336f9a863b 100644
--- a/include/oox/export/chartexport.hxx
+++ b/include/oox/export/chartexport.hxx
@@ -139,6 +139,7 @@ private:
 void exportFill( const css::uno::Reference< css::beans::XPropertySet >& 
xPropSet );
 void exportGradientFill( const css::uno::Reference< 
css::beans::XPropertySet >& xPropSet );
 void exportBitmapFill( const css::uno::Reference< css::beans::XPropertySet 
>& xPropSet );
+void exportHatch(const css::uno::Reference& 
xPropSet);
 void exportDataTable( );
 
 void exportAreaChart( const css::uno::Reference< css::chart2::XChartType 
>& xChartType );
diff --git a/include/oox/export/drawingml.hxx b/include/oox/export/drawingml.hxx
index 14bd8eae4664..c8faa08001fd 100644
--- a/include/oox/export/drawingml.hxx
+++ b/include/oox/export/drawingml.hxx
@@ -27,6 +27,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -187,6 +188,8 @@ public:
 void WriteBlipFill( const css::uno::Reference< css::beans::XPropertySet >& 
rXPropSet,
  const OUString& sURLPropName, sal_Int32 nXmlNamespace 
);
 void WritePattFill( const css::uno::Reference< css::beans::XPropertySet >& 
rXPropSet );
+void WritePattFill(const css::uno::Reference& 
rXPropSet,
+const css::drawing::Hatch& rHatch);
 void WriteSrcRect( const css::uno::Reference< css::beans::XPropertySet >&, 
const OUString& );
 void WriteOutline( const css::uno::Reference< css::beans::XPropertySet >& 
rXPropSet );
 void WriteStretch( const css::uno::Reference< css::beans::XPropertySet >& 
rXPropSet, const OUString& rURL );
diff --git a/oox/source/export/chartexport.cxx 
b/oox/source/export/chartexport.cxx
index 83b96fb0f518..23a6b1a95d3a 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -1244,11 +1244,33 @@ void ChartExport::exportFill( const Reference< 
XPropertySet >& xPropSet )
 case FillStyle_BITMAP :
 exportBitmapFill( xPropSet );
 break;
+case FillStyle_HATCH:
+exportHatch(xPropSet);
+break;
 default:
 WriteFill( xPropSet );
 }
 }
 
+void ChartExport::exportHatch( const Reference< XPropertySet >& xPropSet )
+{
+if (!xPropSet.is())
+return;
+
+if (GetProperty(xPropSet, "FillHatchName"))
+{
+OUString aHatchName;
+mAny >>= aHatchName;
+uno::Reference< lang::XMultiServiceFactory > xFact( getModel(), 
uno::UNO_QUERY );
+uno::Reference< container::XNameAccess > xHatchTable( 
xFact->createInstance("com.sun.star.drawing.HatchTable"), uno::UNO_QUERY );
+uno::Any rValue = xHatchTable->getByName(aHatchName);
+css::drawing::Hatch aHatch;
+rValue >>= aHatch;
+WritePattFill(xPropSet, aHatch);
+}
+
+}
+
 void ChartExport::exportBitmapFill( const Reference< XPropertySet >& xPropSet )
 {
 if( xPropSet.is() )
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx
index bb60a5697c57..34dabd7802c9 100644
--- a/oox/source/export/drawingml.cxx
+++ b/oox/source/export/drawingml.cxx
@@ -1185,11 +1185,16 @@ void DrawingML::WritePattFill( const Reference< 
XPropertySet >& rXPropSet )
 {
 drawing::Hatch aHatch;
 mAny >>= aHatch;
+WritePattFill(rXPropSet, aHatch);
+}
+}
 
-mpFS->startElementNS( XML_a , XML_pattFill, XML_prst, 
GetHatchPattern(aHatch), FSEND );
+void DrawingML::WritePattFill(const Reference& rXPropSet, const 
css::drawing::Hatch& rHatch)
+{
+mpFS->startElementNS( XML_a , XML_pattFill, XML_prst, 
GetHatchPattern(rHatch), FSEND );
 
 mpFS->startElementNS( XML_a , XML_fgClr, FSEND );
-WriteColor(aHatch.Color);
+WriteColor(rHatch.Color);
 mpFS->endElementNS( XML_a , XML_fgClr );
 
 sal_uInt32 nColor = COL_WHITE;
@@ -1215,7 +1220,6 @@ void DrawingML::WritePattFill( const Reference< 
XPropertySet >& rXPropSet )
 mpFS->endElementNS( XML_a , XML_bgClr );
 
 mpFS->endElementNS( XML_a , 

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

2018-01-07 Thread Matthias Freund
 icon-themes/sifr/cmd/32/entirecell.png  |binary
 icon-themes/sifr/cmd/lc_entirecell.png  |binary
 icon-themes/sifr/cmd/sc_entirecell.png  |binary
 icon-themes/sifr_dark/cmd/32/entirecell.png |binary
 icon-themes/sifr_dark/cmd/lc_entirecell.png |binary
 icon-themes/sifr_dark/cmd/sc_entirecell.png |binary
 icon-themes/sifr_svg/cmd/32/entirecell.svg  |   33 +++-
 icon-themes/sifr_svg/cmd/lc_entirecell.svg  |6 +
 icon-themes/sifr_svg/cmd/sc_entirecell.svg  |6 +
 9 files changed, 16 insertions(+), 29 deletions(-)

New commits:
commit d436c4eaeb86a485bcc0206a15f9166063f5fe3e
Author: Matthias Freund 
Date:   Sun Jan 7 21:16:13 2018 +0100

tdf#75256 Sifr new entirecell icons

Change-Id: If1270a7f2910178d2755e462ad28d000e6bf549a
Reviewed-on: https://gerrit.libreoffice.org/47551
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/icon-themes/sifr/cmd/32/entirecell.png 
b/icon-themes/sifr/cmd/32/entirecell.png
new file mode 100644
index ..339a1cc895b2
Binary files /dev/null and b/icon-themes/sifr/cmd/32/entirecell.png differ
diff --git a/icon-themes/sifr/cmd/lc_entirecell.png 
b/icon-themes/sifr/cmd/lc_entirecell.png
new file mode 100644
index ..7c1655e08118
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_entirecell.png differ
diff --git a/icon-themes/sifr/cmd/sc_entirecell.png 
b/icon-themes/sifr/cmd/sc_entirecell.png
new file mode 100644
index ..fdd14baae4f0
Binary files /dev/null and b/icon-themes/sifr/cmd/sc_entirecell.png differ
diff --git a/icon-themes/sifr_dark/cmd/32/entirecell.png 
b/icon-themes/sifr_dark/cmd/32/entirecell.png
new file mode 100644
index ..9b0e6a3cb558
Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/entirecell.png differ
diff --git a/icon-themes/sifr_dark/cmd/lc_entirecell.png 
b/icon-themes/sifr_dark/cmd/lc_entirecell.png
new file mode 100644
index ..560c55ee6683
Binary files /dev/null and b/icon-themes/sifr_dark/cmd/lc_entirecell.png differ
diff --git a/icon-themes/sifr_dark/cmd/sc_entirecell.png 
b/icon-themes/sifr_dark/cmd/sc_entirecell.png
new file mode 100644
index ..c6cf5ff929cc
Binary files /dev/null and b/icon-themes/sifr_dark/cmd/sc_entirecell.png differ
diff --git a/icon-themes/sifr_svg/cmd/32/entirecell.svg 
b/icon-themes/sifr_svg/cmd/32/entirecell.svg
index 4529e747a44e..10d49172c3af 100644
--- a/icon-themes/sifr_svg/cmd/32/entirecell.svg
+++ b/icon-themes/sifr_svg/cmd/32/entirecell.svg
@@ -1,31 +1,6 @@
 http://www.w3.org/2000/svg;>
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
-  
-  
-  
-  
-  
- 
- 
- 
- 
- 
- 
- 
- 
- 
+ 
+ 
+ 
+ 
 
diff --git a/icon-themes/sifr_svg/cmd/lc_entirecell.svg 
b/icon-themes/sifr_svg/cmd/lc_entirecell.svg
new file mode 100644
index ..4e4ac7a62be6
--- /dev/null
+++ b/icon-themes/sifr_svg/cmd/lc_entirecell.svg
@@ -0,0 +1,6 @@
+http://www.w3.org/2000/svg;>
+ 
+ 
+ 
+ 
+
diff --git a/icon-themes/sifr_svg/cmd/sc_entirecell.svg 
b/icon-themes/sifr_svg/cmd/sc_entirecell.svg
new file mode 100644
index ..cee62efc6380
--- /dev/null
+++ b/icon-themes/sifr_svg/cmd/sc_entirecell.svg
@@ -0,0 +1,6 @@
+http://www.w3.org/2000/svg;>
+ 
+ 
+ 
+ 
+
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: uitest/demo_ui

2018-01-07 Thread Markus Mohrhard
 uitest/demo_ui/edit.py |   26 +-
 1 file changed, 25 insertions(+), 1 deletion(-)

New commits:
commit 02df8d4a7f9d35da1b8cb56dbb18e8e0effeec1e
Author: Markus Mohrhard 
Date:   Sun Jan 7 20:04:21 2018 +0100

uitest: add demo showing how to select text in Edit

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

diff --git a/uitest/demo_ui/edit.py b/uitest/demo_ui/edit.py
index 135a72447ea7..6da14333a4d5 100644
--- a/uitest/demo_ui/edit.py
+++ b/uitest/demo_ui/edit.py
@@ -8,7 +8,9 @@
 from libreoffice.uno.propertyvalue import mkPropertyValues
 
 from uitest.framework import UITestCase
-from uitest.uihelper.common import type_text
+from uitest.uihelper.common import type_text, get_state_as_dict
+
+import time
 
 class EditTest(UITestCase):
 
@@ -28,4 +30,26 @@ class EditTest(UITestCase):
 
 self.ui_test.close_doc()
 
+def test_select_text(self):
+
+self.ui_test.create_doc_in_start_center("calc")
+
+self.ui_test.execute_modeless_dialog_through_command(".uno:AddName")
+xAddNameDlg = self.xUITest.getTopFocusWindow()
+
+xEdit = xAddNameDlg.getChild("edit")
+
+type_text(xEdit, "simpleRangeName")
+xEdit.executeAction("SELECT", mkPropertyValues({"FROM": "2", "TO": 
"9"}))
+type_text(xEdit, "otherChars")
+self.assertEqual("siotherCharsgeName", 
get_state_as_dict(xEdit)["Text"])
+
+xEdit.executeAction("SELECT", mkPropertyValues({"FROM": "2", "TO": 
"12"}))
+self.assertEqual("otherChars", 
get_state_as_dict(xEdit)["SelectedText"])
+
+xAddBtn = xAddNameDlg.getChild("cancel")
+self.ui_test.close_dialog_through_button(xAddBtn)
+
+self.ui_test.close_doc()
+
 # vim: set shiftwidth=4 softtabstop=4 expandtab:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114902] In a control tables(grid), the change of size of the sources in the fields

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114902

jorojma...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 114902] New: In a control tables(grid), the change of size of the sources in the fields

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114902

Bug ID: 114902
   Summary: In a control tables(grid), the change of size of the
sources in the fields
   Product: LibreOffice
   Version: 5.4.4.2 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jorojma...@gmail.com

Created attachment 138948
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138948=edit
Control tables(grid), the change of size of the sources in the fields.

In a control tables(grid) within a form does not allow the change of size of
the sources in the fields, in openoffice 4.1.4 it allows it, but in libreoffice
5.4.4.2 it does not allow to enlarge the sources in the properties of the
control

I attached drawing in openoffice where you can see if it can be done.

-- 
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 114901] New: UI: TSCP Classification dialog: too much vertical white space and Part list too wide

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114901

Bug ID: 114901
   Summary: UI:  TSCP Classification dialog: too much vertical
white space and Part list too wide
   Product: LibreOffice
   Version: 6.0.0.0.alpha0+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: c...@nouenoff.nl

some visual improvements are needed in the dialog Classification 
(tool bar TSCP Classification)

There is too much vertical white space and the Part list too wide.
I'll attach a PDF showing old en desired.
Will provide a patch too.

-- 
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 114901] UI: TSCP Classification dialog: too much vertical white space and Part list too wide

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114901

Cor Nouws  changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
 CC||c...@nouenoff.nl
   Assignee|libreoffice-b...@lists.free |c...@nouenoff.nl
   |desktop.org |
 Ever confirmed|0   |1

--- Comment #1 from Cor Nouws  ---
Created attachment 138947
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138947=edit
pdf with existing situation on top - en below the improved one

patch: https://gerrit.libreoffice.org/47558

-- 
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 103705] Clone formatting does not copy all paragraph-level properties

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103705

--- Comment #11 from Heiko Tietze  ---
(In reply to Michael H. from comment #9)
> Can you confirm these steps and behaviors?

Yes, it works with ctrl. But why do I have to press ctrl for these properties
and the others not? Because of the paragraph style level... (RTFM myself). We
should update the tooltip accordingly.

-- 
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 112538] Cropped image created by MAC Impress cannot display correctly in the Windows Impress

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112538

--- Comment #9 from tryag...@navit-project.org ---
(In reply to tryagain from comment #8)

Sorry, I now unable to reproduce the problem as described in my earlier post. I
now have a file which is broken with any resolution set, and a bunch of files
which are good in this sense at any resolution.

> To reproduce the problem, run Impress inside Xephyr nested X server with
> -dpi option value different to display resolution used at document creation
> time, and see all cropped images being broken. Restart Xephyr with the same
> -dpi as your desktop, and see the document is fine again.

> I think storing cropped area size in pixel units would be a fix.

Sorry again, I have no such an easy solution now...

-- 
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 113998] Moving a bulleted list entry up/ down also moves the subsequent text line

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113998

--- Comment #3 from zyklo...@web.de ---
*** Bug 114888 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 103369] [META] Bullet, numbered, and outline list bugs and enhancements

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103369
Bug 103369 depends on bug 114888, which changed state.

Bug 114888 Summary: Headings are tied to list entries
https://bugs.documentfoundation.org/show_bug.cgi?id=114888

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 114888] Headings are tied to list entries

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114888

zyklo...@web.de changed:

   What|Removed |Added

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

--- Comment #7 from zyklo...@web.de ---
Ok, I completely forgot, I already reported this in #113998…

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

-- 
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 114899] VIEWING: smarter positioning of deleted text in track changes mode ( considering word boundaries)

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114899

Dieter Praas  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.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 107681] [META] Writer heading style bugs and enhancements

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107681
Bug 107681 depends on bug 114888, which changed state.

Bug 114888 Summary: Headings are tied to list entries
https://bugs.documentfoundation.org/show_bug.cgi?id=114888

   What|Removed |Added

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

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


[Libreoffice-ux-advise] [Bug 114899] VIEWING: smarter positioning of deleted text in track changes mode ( considering word boundaries)

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114899

Dieter Praas  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org

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


[Libreoffice-bugs] [Bug 114887] UI: with disabled OpenGL NAVIGATOR view is jumpy and flickering when moving cell cursor through document.

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114887

--- Comment #3 from Telesto  ---
Likely dupe candidate: bug 113714. Meta-tracker: bug 112889

-- 
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 107681] [META] Writer heading style bugs and enhancements

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107681

Dieter Praas  changed:

   What|Removed |Added

 Depends on||114888


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114888
[Bug 114888] Headings are tied to list entries
-- 
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 103369] [META] Bullet, numbered, and outline list bugs and enhancements

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103369

Dieter Praas  changed:

   What|Removed |Added

 Depends on||114888


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114888
[Bug 114888] Headings are tied to list entries
-- 
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 114888] Headings are tied to list entries

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114888

Dieter Praas  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Blocks||107681, 103369
 Ever confirmed|0   |1

--- Comment #6 from Dieter Praas  ---
I confirm it.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103369
[Bug 103369] [META] Bullet, numbered, and outline list bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=107681
[Bug 107681] [META] Writer heading style bugs and enhancements
-- 
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: sd/uiconfig

2018-01-07 Thread Laurent BP
 sd/uiconfig/sdraw/ui/copydlg.ui |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 2453c5a62cd2c4364d0258f7488ab23b83b5478b
Author: Laurent BP 
Date:   Thu Jan 4 14:00:04 2018 +0100

UI Duplicate dlg: enable negative angle

Duplicate dlg (Shift+F3) should accept negative angle
and angle between 359° and 360°

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

diff --git a/sd/uiconfig/sdraw/ui/copydlg.ui b/sd/uiconfig/sdraw/ui/copydlg.ui
index 8ba01c9f8aa3..4bb5f4195a8b 100644
--- a/sd/uiconfig/sdraw/ui/copydlg.ui
+++ b/sd/uiconfig/sdraw/ui/copydlg.ui
@@ -11,14 +11,15 @@
 10
   
   
-359
+-360
+360
 1
 10
   
   
 -100
 100
-0.10001
+0.1
 1
   
   
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-01-07 Thread Yousuf Philips
 sd/uiconfig/simpress/ui/slidetransitionspanel.ui |   16 ++--
 1 file changed, 14 insertions(+), 2 deletions(-)

New commits:
commit 0e5070b97fc0e2314af235809d2ebe37075ef188
Author: Yousuf Philips 
Date:   Wed Jan 3 18:51:32 2018 +0400

tdf#113880 improve slide transition sidebar deck

* added padding around transition list control
* make controls in 'modify transition' accessible
* correct alignment of variant label

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

diff --git a/sd/uiconfig/simpress/ui/slidetransitionspanel.ui 
b/sd/uiconfig/simpress/ui/slidetransitionspanel.ui
index 75a38cb89cc3..78c8f4dac49c 100644
--- a/sd/uiconfig/simpress/ui/slidetransitionspanel.ui
+++ b/sd/uiconfig/simpress/ui/slidetransitionspanel.ui
@@ -2,6 +2,7 @@
 
 
   
+  
   
 True
 False
@@ -30,7 +31,12 @@
 False
 True
 True
-
+6
+6
+6
+
+  
+
   
   
 False
@@ -69,6 +75,8 @@
 False
 end
 Duration:
+True
+transition_duration:0.00sec
 0
   
   
@@ -83,7 +91,6 @@
 True
 Select the 
speed of Slide Transition.
 True
-adjustment1
   
   
 1
@@ -96,6 +103,8 @@
 False
 end
 Sound:
+True
+sound_list
   
   
 0
@@ -136,7 +145,10 @@
   
 True
 False
+end
 Variant:
+True
+variant_list
   
   
 0
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114900] Calc labels on same column show stacked on graph

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114900

rainer  changed:

   What|Removed |Added

 CC||carnen...@gmail.com

--- Comment #1 from rainer  ---
Created attachment 138946
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138946=edit
example file

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


[Libreoffice-bugs] [Bug 114900] New: Calc labels on same column show stacked on graph

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114900

Bug ID: 114900
   Summary: Calc labels on same column show stacked on graph
   Product: LibreOffice
   Version: 5.4.4.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: carnen...@gmail.com

Created attachment 138945
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138945=edit
Example screenshot

When data is on a "wrapped" table (i.e., labels and their values are placed o
two or more lines or columns -- see attached image and/or ODS file), the
resulting graph (e.g., columns) will:

a) show values correctly as separate categories, but
b) place labels stacked accordingly to which column (or line) the belong (see
ODS file).

I would have expected the data in the labels field (as well as elsewhere) to be
treated as a single series in the given order, regardless of how each
individual cell maps on the spreadsheet (even if they are taken from separated
sheets!). At least, when introduced or customized manually in the Data Series
dialog window.

Is this related with hierarchical axis labels? I understand that this occurs
only when the first two or more columns or lines contain text (as per Calc
Guide 4.1, Fig. 77
https://wiki.documentfoundation.org/images/4/47/CG41-CalcGuideLO.pdf).

-- 
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 114897] Wrongly displayed characters of certain fonts

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114897

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #2 from V Stuart Foote  ---
Using our +X conversion, the PUA codepoint for the U+F0BD "WiFi" can be
applied.

But why is the WiFi glyph mapped to Unicode U+2126 Capital OMEGA? Other glyphs
are Unicode mapped as well. 

Seems to be a bit ill-implemented symbol font => NOB?

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


Fwd: [Libreoffice-commits] core.git: toolkit/Module_toolkit.mk

2018-01-07 Thread Markus Mohrhard
Hey Michael,

see the referenced commit. I disabled the test for now as it seems that
there are a number of problems. Maybe you can have a look at them.

Regards,
Markus

-- Forwarded message --
From: Markus Mohrhard 
Date: Sun, Jan 7, 2018 at 10:17 PM
Subject: [Libreoffice-commits] core.git: toolkit/Module_toolkit.mk
To: libreoffice-comm...@lists.freedesktop.org


 toolkit/Module_toolkit.mk |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 43dd63898c145ebeb918f1d6ce094cf5c68548c8
Author: Markus Mohrhard 
Date:   Sun Jan 7 22:15:13 2018 +0100

disable toolkit unit conversion test for now

There seems to be a bunch of problems:

On OSX the test crashes when no display can be found:
https://ci.libreoffice.org/job/lo_gerrit/25298/Config=
macosx_clang_dbgutil/console

On windows the position seems to be wrong on some boxes, e.g.:
D:/lode/dev/core/toolkit/qa/cppunit/UnitConversion.cxx(149) : error :
Assertion
Test name: `anonymous namespace'::ToolkitTest::testXUnitConversion
equality assertion failed
- Expected: 100
- Actual  : 72
- Window pos wrong

Change-Id: Id100817cf9024986f790c2bfbf2ddaefcd2dd080

diff --git a/toolkit/Module_toolkit.mk b/toolkit/Module_toolkit.mk
index b5e4bdee01b4..74a9d5d78ffc 100644
--- a/toolkit/Module_toolkit.mk
+++ b/toolkit/Module_toolkit.mk
@@ -23,9 +23,9 @@ $(eval $(call gb_Module_add_targets,toolkit,\
 Library_tk \
 ))

-$(eval $(call gb_Module_add_check_targets,toolkit,\
-CppunitTest_toolkit \
-))
+#$(eval $(call gb_Module_add_check_targets,toolkit,\
+#CppunitTest_toolkit \
+#))

 ifneq ($(OOO_JUNIT_JAR),)
 $(eval $(call gb_Module_add_subsequentcheck_targets,toolkit,\
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 103705] Clone formatting does not copy all paragraph-level properties

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103705

--- Comment #10 from V Stuart Foote  ---
(In reply to Heiko Tietze from comment #8)
> 
> Don't get this. Horizontal alignment, list style, and line spacing are not
> copied. So it's not solved IMHO.

But they are copied and applied...

With a selection made--using the "Clone formatting" button from the Standard
toolbar, there are 3 "apply" modes: 1) just character formatting, 2) character
formatting + paragraph formatting, and 3) just paragraph formatting.

The corresponding "apply" modes are 1) character (word boundry) based format --
by clicking on the target; 2) character & paragraph formatting -- by
+clicking on the target; 3) paragraph only formatting -- by
+clicking on the target.

The paint mode defaults to a single action--one selection -> one paint. But
that can be changed to allow multiple paints by double click on the "Clone
formatting" button, and a click to release when done applying format.

It is a little weird, but seems to work as designed.

-- 
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: toolkit/Module_toolkit.mk

2018-01-07 Thread Markus Mohrhard
 toolkit/Module_toolkit.mk |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 43dd63898c145ebeb918f1d6ce094cf5c68548c8
Author: Markus Mohrhard 
Date:   Sun Jan 7 22:15:13 2018 +0100

disable toolkit unit conversion test for now

There seems to be a bunch of problems:

On OSX the test crashes when no display can be found:

https://ci.libreoffice.org/job/lo_gerrit/25298/Config=macosx_clang_dbgutil/console

On windows the position seems to be wrong on some boxes, e.g.:
D:/lode/dev/core/toolkit/qa/cppunit/UnitConversion.cxx(149) : error : 
Assertion
Test name: `anonymous namespace'::ToolkitTest::testXUnitConversion
equality assertion failed
- Expected: 100
- Actual  : 72
- Window pos wrong

Change-Id: Id100817cf9024986f790c2bfbf2ddaefcd2dd080

diff --git a/toolkit/Module_toolkit.mk b/toolkit/Module_toolkit.mk
index b5e4bdee01b4..74a9d5d78ffc 100644
--- a/toolkit/Module_toolkit.mk
+++ b/toolkit/Module_toolkit.mk
@@ -23,9 +23,9 @@ $(eval $(call gb_Module_add_targets,toolkit,\
 Library_tk \
 ))
 
-$(eval $(call gb_Module_add_check_targets,toolkit,\
-CppunitTest_toolkit \
-))
+#$(eval $(call gb_Module_add_check_targets,toolkit,\
+#CppunitTest_toolkit \
+#))
 
 ifneq ($(OOO_JUNIT_JAR),)
 $(eval $(call gb_Module_add_subsequentcheck_targets,toolkit,\
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - set_soenv.in

2018-01-07 Thread Don Lewis
 set_soenv.in |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit d364c5bb7211ec60fadf8e065b2a1ffa830493fa
Author: Don Lewis 
Date:   Sun Jan 7 19:51:56 2018 +

Use $CC_PATH (with the trailing slash removed) instead of $COMPATH

when setting $PATH.  The latter has the trailing /bin removed from
the path to the compiler executable and results in /usr being
incorrectly added to $PATH.

Remove an older, FreeBSD-specific workaround.

diff --git a/set_soenv.in b/set_soenv.in
index b8e19203b58b..a68924f65467 100644
--- a/set_soenv.in
+++ b/set_soenv.in
@@ -359,7 +359,7 @@ elsif ( $platform =~ m/kfreebsd/ )
 elsif ( $platform =~ m/freebsd/ ) 
 { $BIG_SVX= "TRUE";
   $COM= "@COM_IS@";
-  $COMPATH= '@COMPATH@' . '/bin'; 
+  $COMPATH= '@COMPATH@'; 
   $CVER   = "C300";
   $GUI= "UNX";
   $GUIBASE= "unx";
@@ -1134,8 +1134,10 @@ if ($platform =~ 
m/linux|netbsd|odf1|freebsd|aix|solaris/)
} else {
   @javaBits = (); 
}
+   my $ccdir = "@CC_PATH@";
+   $ccdir =~ s/\/$//;
$PATH  = GetCorrectPath ($PATH,
-$COMPATH, $CC,
+$ccdir, $CC,
 $PERL_PATH, 'perl',
 @javaBits);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 103705] Clone formatting does not copy all paragraph-level properties

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103705

--- Comment #9 from Michael H.  ---
Using your own example attachment in this bug report, let's go through this
step by step:

A. Horizontal alignment
1) Place the cursor on the line containing "Center" centered on page 1
2) Activate the cloning tool
3) Hold down CTRL and left click on "Center" on page 2
> "Center" moves from left justification to centered. OK

B. List Style
1) Place the cursor on the line containing "Bullet A" bulleted on page 1
2) Activate the cloning tool
3) Hold down CTRL and left click on "Bullet A" on page 2
> "Bullet A" moves from left justification to indention with the same bullet. OK

C. Line Spacing
1) Place the cursor on the line containing "Line spacing" which has a 1.5 line
spacing on page 1
2) Activate the cloning tool
3) Hold down CTRL and left click on "Line spacing" on page 2
> "Style: Heading" drops down half a line. Checking the properties of "Line 
> spacing" it now has 1.5 line spacing. OK

Can you confirm these steps and behaviors?

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


Crash test update

2018-01-07 Thread Crashtest VM
New crashtest update available at 
http://dev-builds.libreoffice.org/crashtest/a0e136d2cbb3784ddfcbddcfed5d784c8e4c9a64/


exportCrashes.csv
Description: Binary data


importCrash.csv
Description: Binary data


validationErrors.csv
Description: Binary data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2018-01-07 Thread Markus Mohrhard
 svtools/source/uitest/uiobject.cxx |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

New commits:
commit 7d87e9063b401b56749fcb7ec8a7d16a6f462ee5
Author: Markus Mohrhard 
Date:   Sun Jan 7 19:46:08 2018 +0100

uitest: add more properties to SvSimpleTableContainer state map

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

diff --git a/svtools/source/uitest/uiobject.cxx 
b/svtools/source/uitest/uiobject.cxx
index 327f107f5f66..99eac13cabc5 100644
--- a/svtools/source/uitest/uiobject.cxx
+++ b/svtools/source/uitest/uiobject.cxx
@@ -179,7 +179,11 @@ StringMap SimpleTableUIObject::get_state()
 {
 StringMap aMap = TreeListUIObject::get_state();
 
-aMap["ColumnCount"] = OUString::number(mxTable->TabCount());
+aMap["ColumnCount"] = OUString::number(mxTable->GetColumnCount());
+aMap["RowCount"] = OUString::number(mxTable->GetRowCount());
+aMap["SelectedRowCount"] = 
OUString::number(mxTable->GetSelectedRowCount());
+aMap["SelectedColumnCount"] = 
OUString::number(mxTable->GetSelectedColumnCount());
+aMap["EntryCount"] = OUString::number(mxTable->GetEntryCount());
 
 return aMap;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 103705] Clone formatting does not copy all paragraph-level properties

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103705

--- Comment #8 from Heiko Tietze  ---
(In reply to V Stuart Foote from comment #7)
> The numbered list style threw me for a moment, but realize doing the clone
> continuing is the correct behavior.

Don't get this. Horizontal alignment, list style, and line spacing are not
copied. So it's not solved IMHO.

-- 
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 114882] Error Message: File format error found at SAXParseException: '[word/document.xml line 2]: Opening and ending tag mismatch: txbxContent line 0 and sdtContent ', Stream '

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114882

Mike Kaganski  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |mikekagan...@hotmail.com
   |desktop.org |

--- Comment #6 from Mike Kaganski  ---
A patch in gerrit: https://gerrit.libreoffice.org/47546

-- 
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 114888] Headings are tied to list entries

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114888

--- Comment #5 from zyklo...@web.de ---
And moving the bullet up or down (not to the left or right).

-- 
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 114888] Headings are tied to list entries

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114888

--- Comment #4 from zyklo...@web.de ---
Try the action “move with sub-entries”, please.

-- 
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 114888] Headings are tied to list entries

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114888

--- Comment #3 from Dieter Praas  ---
What do you mean with "move that entry up or down". If I demote or promote the
entry "bla" one level (using context menu or icon in the toolbar) it doesn't
move the heading.

Version: 5.4.3.2 (x64)
Build ID: 92a7159f7e4af62137622921e809f8546db437e5
CPU threads: 4; OS: Windows 6.19; UI render: default; 
Locale: de-DE (de_DE); Calc: group

-- 
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-4' - sax/source

2018-01-07 Thread Caolán McNamara
 sax/source/fastparser/fastparser.cxx |  154 +--
 1 file changed, 76 insertions(+), 78 deletions(-)

New commits:
commit 19110ae6255dd17d2dbbff82f44c55c266273c64
Author: Caolán McNamara 
Date:   Wed Nov 29 21:18:11 2017 +

ofz: always free with xmlFreeParserCtxt

Reviewed-on: https://gerrit.libreoffice.org/45533
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 
(cherry picked from commit 5591aa360874c9133d046eeaa1c315df1a441bc4)

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

diff --git a/sax/source/fastparser/fastparser.cxx 
b/sax/source/fastparser/fastparser.cxx
index eb15b19e94be..bbe7748b149a 100644
--- a/sax/source/fastparser/fastparser.cxx
+++ b/sax/source/fastparser/fastparser.cxx
@@ -735,6 +735,27 @@ sal_Int32 FastSaxParserImpl::GetTokenWithContextNamespace( 
sal_Int32 nNamespaceT
 return FastToken::DONTKNOW;
 }
 
+namespace
+{
+class ParserCleanup
+{
+private:
+FastSaxParserImpl& m_rParser;
+Entity& m_rEntity;
+public:
+ParserCleanup(FastSaxParserImpl& rParser, Entity& rEntity)
+: m_rParser(rParser)
+, m_rEntity(rEntity)
+{
+}
+~ParserCleanup()
+{
+//xmlFreeParserCtxt accepts a null arg
+xmlFreeParserCtxt(m_rEntity.mpParser);
+m_rParser.popEntity();
+}
+};
+}
 /***
 *
 * parseStream does Parser-startup initializations. The FastSaxParser::parse() 
method does
@@ -760,103 +781,80 @@ void FastSaxParserImpl::parseStream(const InputSource& 
maStructSource)
 
 pushEntity( entity );
 Entity& rEntity = getEntity();
-try
+ParserCleanup aEnsureFree(*this, rEntity);
+
+// start the document
+if( rEntity.mxDocumentHandler.is() )
 {
-// start the document
-if( rEntity.mxDocumentHandler.is() )
-{
-Reference< XLocator > xLoc( mxDocumentLocator.get() );
-rEntity.mxDocumentHandler->setDocumentLocator( xLoc );
-rEntity.mxDocumentHandler->startDocument();
-}
+Reference< XLocator > xLoc( mxDocumentLocator.get() );
+rEntity.mxDocumentHandler->setDocumentLocator( xLoc );
+rEntity.mxDocumentHandler->startDocument();
+}
 
-rEntity.mbEnableThreads = 
(rEntity.maStructSource.aInputStream->available() > 1);
+rEntity.mbEnableThreads = 
(rEntity.maStructSource.aInputStream->available() > 1);
 
-if (rEntity.mbEnableThreads)
-{
-rtl::Reference xParser;
-xParser = new ParserThread(this);
-xParser->launch();
-bool done = false;
-do {
-rEntity.maConsumeResume.wait();
-rEntity.maConsumeResume.reset();
-
-osl::ResettableMutexGuard aGuard(rEntity.maEventProtector);
-while (!rEntity.maPendingEvents.empty())
-{
-if (rEntity.maPendingEvents.size() <= 
Entity::mnEventLowWater)
-rEntity.maProduceResume.set(); // start producer again
+if (rEntity.mbEnableThreads)
+{
+rtl::Reference xParser;
+xParser = new ParserThread(this);
+xParser->launch();
+bool done = false;
+do {
+rEntity.maConsumeResume.wait();
+rEntity.maConsumeResume.reset();
+
+osl::ResettableMutexGuard aGuard(rEntity.maEventProtector);
+while (!rEntity.maPendingEvents.empty())
+{
+if (rEntity.maPendingEvents.size() <= Entity::mnEventLowWater)
+rEntity.maProduceResume.set(); // start producer again
 
-EventList *pEventList = rEntity.maPendingEvents.front();
-rEntity.maPendingEvents.pop();
-aGuard.clear(); // unlock
+EventList *pEventList = rEntity.maPendingEvents.front();
+rEntity.maPendingEvents.pop();
+aGuard.clear(); // unlock
 
-if (!consume(pEventList))
-done = true;
+if (!consume(pEventList))
+done = true;
 
-aGuard.reset(); // lock
+aGuard.reset(); // lock
 
-if ( rEntity.maPendingEvents.size() <= 
Entity::mnEventLowWater )
+if ( rEntity.maPendingEvents.size() <= Entity::mnEventLowWater 
)
+{
+aGuard.clear();
+for (auto aEventIt = pEventList->maEvents.begin();
+aEventIt != pEventList->maEvents.end(); ++aEventIt)
 {
-aGuard.clear();
- 

[Libreoffice-commits] core.git: Branch 'libreoffice-6-0' - sax/source

2018-01-07 Thread Caolán McNamara
 sax/source/fastparser/fastparser.cxx |  156 +--
 1 file changed, 77 insertions(+), 79 deletions(-)

New commits:
commit bd04d7be1f89600623c148a7837a694c1df388d7
Author: Caolán McNamara 
Date:   Wed Nov 29 21:18:11 2017 +

ofz: always free with xmlFreeParserCtxt

Change-Id: I90aed11ae0a29a0e9fc725b297e10a7ed30c9942
Reviewed-on: https://gerrit.libreoffice.org/45533
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 
(cherry picked from commit 5591aa360874c9133d046eeaa1c315df1a441bc4)
Reviewed-on: https://gerrit.libreoffice.org/47538
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sax/source/fastparser/fastparser.cxx 
b/sax/source/fastparser/fastparser.cxx
index 8c0286656764..1aa8811366ea 100644
--- a/sax/source/fastparser/fastparser.cxx
+++ b/sax/source/fastparser/fastparser.cxx
@@ -730,6 +730,27 @@ sal_Int32 FastSaxParserImpl::GetTokenWithContextNamespace( 
sal_Int32 nNamespaceT
 return FastToken::DONTKNOW;
 }
 
+namespace
+{
+class ParserCleanup
+{
+private:
+FastSaxParserImpl& m_rParser;
+Entity& m_rEntity;
+public:
+ParserCleanup(FastSaxParserImpl& rParser, Entity& rEntity)
+: m_rParser(rParser)
+, m_rEntity(rEntity)
+{
+}
+~ParserCleanup()
+{
+//xmlFreeParserCtxt accepts a null arg
+xmlFreeParserCtxt(m_rEntity.mpParser);
+m_rParser.popEntity();
+}
+};
+}
 /***
 *
 * parseStream does Parser-startup initializations. The FastSaxParser::parse() 
method does
@@ -755,104 +776,81 @@ void FastSaxParserImpl::parseStream(const InputSource& 
maStructSource)
 
 pushEntity( entity );
 Entity& rEntity = getEntity();
-try
+ParserCleanup aEnsureFree(*this, rEntity);
+
+// start the document
+if( rEntity.mxDocumentHandler.is() )
 {
-// start the document
-if( rEntity.mxDocumentHandler.is() )
-{
-Reference< XLocator > xLoc( mxDocumentLocator.get() );
-rEntity.mxDocumentHandler->setDocumentLocator( xLoc );
-rEntity.mxDocumentHandler->startDocument();
-}
+Reference< XLocator > xLoc( mxDocumentLocator.get() );
+rEntity.mxDocumentHandler->setDocumentLocator( xLoc );
+rEntity.mxDocumentHandler->startDocument();
+}
 
-rEntity.mbEnableThreads = 
rEntity.maStructSource.aInputStream->available() > 1
-&& !getenv("SAX_DISABLE_THREADS");
+rEntity.mbEnableThreads = rEntity.maStructSource.aInputStream->available() 
> 1
+&& !getenv("SAX_DISABLE_THREADS");
 
-if (rEntity.mbEnableThreads)
-{
-rtl::Reference xParser;
-xParser = new ParserThread(this);
-xParser->launch();
-bool done = false;
-do {
-rEntity.maConsumeResume.wait();
-rEntity.maConsumeResume.reset();
-
-osl::ResettableMutexGuard aGuard(rEntity.maEventProtector);
-while (!rEntity.maPendingEvents.empty())
-{
-if (rEntity.maPendingEvents.size() <= 
Entity::mnEventLowWater)
-rEntity.maProduceResume.set(); // start producer again
+if (rEntity.mbEnableThreads)
+{
+rtl::Reference xParser;
+xParser = new ParserThread(this);
+xParser->launch();
+bool done = false;
+do {
+rEntity.maConsumeResume.wait();
+rEntity.maConsumeResume.reset();
+
+osl::ResettableMutexGuard aGuard(rEntity.maEventProtector);
+while (!rEntity.maPendingEvents.empty())
+{
+if (rEntity.maPendingEvents.size() <= Entity::mnEventLowWater)
+rEntity.maProduceResume.set(); // start producer again
 
-std::unique_ptr xEventList = 
std::move(rEntity.maPendingEvents.front());
-rEntity.maPendingEvents.pop();
-aGuard.clear(); // unlock
+std::unique_ptr xEventList = 
std::move(rEntity.maPendingEvents.front());
+rEntity.maPendingEvents.pop();
+aGuard.clear(); // unlock
 
-if (!consume(*xEventList))
-done = true;
+if (!consume(*xEventList))
+done = true;
 
-aGuard.reset(); // lock
+aGuard.reset(); // lock
 
-if ( rEntity.maPendingEvents.size() <= 
Entity::mnEventLowWater )
+if ( rEntity.maPendingEvents.size() <= Entity::mnEventLowWater 
)
+{
+aGuard.clear();
+for (auto aEventIt = xEventList->maEvents.begin();
+aEventIt != 

[Libreoffice-bugs] [Bug 114881] Creating files from File > Wizards > Agenda crashed

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114881

--- Comment #6 from MM  ---
Also crashes with Letter & Fax Wizard.
Just start the wizard, press finish and try to save a file. Crash...

-- 
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 114881] Creating files from File > Wizards > Agenda crashed

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114881

MM  changed:

   What|Removed |Added

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

--- Comment #5 from MM  ---
Confirmed on window 7 x64 with Version: 6.0.0.1
Build ID: d2bec56d7865f05a1003dc88449f2b0fdd85309a
CPU threads: 3; OS: Windows 6.1; UI render: default

Confirmed on windows 10 x64 with Version: 6.0.0.1 (x64)
Build ID: d2bec56d7865f05a1003dc88449f2b0fdd85309a
CPU threads: 2; OS: Windows 10.0; UI render: default; 
Locale: en-US (en_US); Calc: 

Step 3 isn't necessary, just press finish and try to save a file.

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


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

2018-01-07 Thread Caolán McNamara
 filter/source/graphicfilter/ios2met/ios2met.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 0a3380ae54e9c33aa4773c6d9878b99b9636dabf
Author: Caolán McNamara 
Date:   Sun Jan 7 20:27:27 2018 +

ofz: fail early

Change-Id: I86790efea5ad4a12578477301959704fb09d67b6

diff --git a/filter/source/graphicfilter/ios2met/ios2met.cxx 
b/filter/source/graphicfilter/ios2met/ios2met.cxx
index b737ac664d14..faf82a7569ed 100644
--- a/filter/source/graphicfilter/ios2met/ios2met.cxx
+++ b/filter/source/graphicfilter/ios2met/ios2met.cxx
@@ -887,6 +887,8 @@ void OS2METReader::ReadRelLine(bool bGivenPos, sal_uInt16 
nOrderLen)
 if (bCoord32) nOrderLen-=8; else nOrderLen-=4;
 }
 else aP0=aAttr.aCurPos;
+if (nOrderLen > pOS2MET->remainingSize())
+throw css::uno::Exception("attempt to read past end of input", 
nullptr);
 nPolySize=nOrderLen/2;
 if (nPolySize==0) return;
 tools::Polygon aPolygon(nPolySize);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114898] SIGSEGV on soffice startup with java-8-openjdk-i386

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114898

Mike Kaganski  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #3 from Mike Kaganski  ---
Well, comparing the backtrace from comment 0 with attachment 134497, I am now
sure this is indeed a dupe. Please revert if you suppose that closing this is
wrong, and mention the reason for such revert.

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

-- 
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 108619] Java Crash on x86 in jfw_plugin_startJavaVirtualMachine w/ recent linux kernels

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108619

Mike Kaganski  changed:

   What|Removed |Added

 CC||traumsch...@riseup.net

--- Comment #30 from Mike Kaganski  ---
*** Bug 114898 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-commits] core.git: sw/source

2018-01-07 Thread Caolán McNamara
 sw/source/filter/html/htmltab.cxx |   64 +++---
 sw/source/filter/html/swhtml.hxx  |2 +
 2 files changed, 35 insertions(+), 31 deletions(-)

New commits:
commit 6d05e0945054459ed04d50ae16731f933be48664
Author: Caolán McNamara 
Date:   Sun Jan 7 15:21:28 2018 +

ofz#5007 Null-dereference READ

Change-Id: I830483071ce481fd14b0d1227c90e492e125f35e
Reviewed-on: https://gerrit.libreoffice.org/47537
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/sw/source/filter/html/htmltab.cxx 
b/sw/source/filter/html/htmltab.cxx
index 59cc59c64e5f..1f44e0bd138c 100644
--- a/sw/source/filter/html/htmltab.cxx
+++ b/sw/source/filter/html/htmltab.cxx
@@ -5042,6 +5042,37 @@ namespace
 };
 }
 
+void SwHTMLParser::DeleteSection(SwStartNode* pSttNd)
+{
+//if section to be deleted contains a pending m_pMarquee, it will be 
deleted
+//so clear m_pMarquee pointer if that's the case
+SwFrameFormat* pObjectFormat = m_pMarquee ? ::FindFrameFormat(m_pMarquee) 
: nullptr;
+FrameDeleteWatch aWatch(pObjectFormat);
+
+//similarly for footnotes
+if (m_pFootEndNoteImpl)
+{
+SwNodeIndex aSttIdx(*pSttNd), aEndIdx(*pSttNd->EndOfSectionNode());
+
m_pFootEndNoteImpl->aTextFootnotes.erase(std::remove_if(m_pFootEndNoteImpl->aTextFootnotes.begin(),
+m_pFootEndNoteImpl->aTextFootnotes.end(), IndexInRange(aSttIdx, 
aEndIdx)), m_pFootEndNoteImpl->aTextFootnotes.end());
+if (m_pFootEndNoteImpl->aTextFootnotes.empty())
+{
+delete m_pFootEndNoteImpl;
+m_pFootEndNoteImpl = nullptr;
+}
+}
+
+m_xDoc->getIDocumentContentOperations().DeleteSection(pSttNd);
+
+if (pObjectFormat)
+{
+if (aWatch.WasDeleted())
+m_pMarquee = nullptr;
+else
+pObjectFormat->Remove();
+}
+}
+
 std::shared_ptr SwHTMLParser::BuildTable(SvxAdjust eParentAdjust,
 bool bIsParentHead,
 bool bHasParentSection,
@@ -5256,7 +5287,7 @@ std::shared_ptr 
SwHTMLParser::BuildTable(SvxAdjust eParentAdjust,
 // The section isn't needed anymore
 m_pPam->SetMark();
 m_pPam->DeleteMark();
-m_xDoc->getIDocumentContentOperations().DeleteSection( 
const_cast(pCapStNd) );
+DeleteSection(const_cast(pCapStNd));
 m_xTable->SetCaption( nullptr, false );
 }
 
@@ -5305,37 +5336,8 @@ std::shared_ptr 
SwHTMLParser::BuildTable(SvxAdjust eParentAdjust,
 {
 m_pPam->SetMark();
 m_pPam->DeleteMark();
-
-SwStartNode* pSttNd = const_cast(pCapStNd);
-
-//if section to be deleted contains a pending m_pMarquee, it will 
be deleted
-//so clear m_pMarquee pointer if that's the case
-SwFrameFormat* pObjectFormat = m_pMarquee ? 
::FindFrameFormat(m_pMarquee) : nullptr;
-FrameDeleteWatch aWatch(pObjectFormat);
-
-//similarly for footnotes
-if (m_pFootEndNoteImpl)
-{
-SwNodeIndex aSttIdx(*pSttNd), 
aEndIdx(*pSttNd->EndOfSectionNode());
-
m_pFootEndNoteImpl->aTextFootnotes.erase(std::remove_if(m_pFootEndNoteImpl->aTextFootnotes.begin(),
-m_pFootEndNoteImpl->aTextFootnotes.end(), 
IndexInRange(aSttIdx, aEndIdx)), m_pFootEndNoteImpl->aTextFootnotes.end());
-if (m_pFootEndNoteImpl->aTextFootnotes.empty())
-{
-delete m_pFootEndNoteImpl;
-m_pFootEndNoteImpl = nullptr;
-}
-}
-
-m_xDoc->getIDocumentContentOperations().DeleteSection(pSttNd);
+DeleteSection(const_cast(pCapStNd));
 xCurTable->SetCaption( nullptr, false );
-
-if (pObjectFormat)
-{
-if (aWatch.WasDeleted())
-m_pMarquee = nullptr;
-else
-pObjectFormat->Remove();
-}
 }
 }
 
diff --git a/sw/source/filter/html/swhtml.hxx b/sw/source/filter/html/swhtml.hxx
index 92d090bcddc9..e16394053623 100644
--- a/sw/source/filter/html/swhtml.hxx
+++ b/sw/source/filter/html/swhtml.hxx
@@ -661,6 +661,8 @@ class SwHTMLParser : public SfxHTMLParser, public SwClient
 // tags realized via character styles
 void NewCharFormat( HtmlTokenId nToken );
 
+void DeleteSection(SwStartNode* pSttNd);
+
 // 
 public:
 static SvxNumType GetNumType( const OUString& rStr, SvxNumType eDfltType );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-01-07 Thread Caolán McNamara
 lotuswordpro/source/filter/lwptoc.cxx |   18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

New commits:
commit 19f0a4cb75e0430502d003fa00ff47801912af03
Author: Caolán McNamara 
Date:   Sun Jan 7 15:06:59 2018 +

ofz#5012 Direct-leak

Change-Id: Ic4d5d9086c64559a2c8c06f20a8b6f461b84d440
Reviewed-on: https://gerrit.libreoffice.org/47535
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/lotuswordpro/source/filter/lwptoc.cxx 
b/lotuswordpro/source/filter/lwptoc.cxx
index 4e94e7aac4b2..38a41e580f9c 100644
--- a/lotuswordpro/source/filter/lwptoc.cxx
+++ b/lotuswordpro/source/filter/lwptoc.cxx
@@ -261,25 +261,25 @@ void  LwpTocSuperLayout::XFConvert(XFContentContainer* 
pCont)
  */
 void  LwpTocSuperLayout::XFConvertFrame(XFContentContainer* pCont, sal_Int32 
nStart, sal_Int32 nEnd, bool bAll)
 {
-if(m_pFrame)
+if (m_pFrame)
 {
-XFFrame* pXFFrame = nullptr;
+rtl::Reference xXFFrame;
 if(nEnd < nStart)
 {
-pXFFrame = new XFFrame();
+xXFFrame.set(new XFFrame);
 }
 else
 {
-pXFFrame = new XFFloatFrame(nStart, nEnd, bAll);
+xXFFrame.set(new XFFloatFrame(nStart, nEnd, bAll));
 }
 
-m_pFrame->Parse(pXFFrame, static_cast(nStart));
+m_pFrame->Parse(xXFFrame.get(), static_cast(nStart));
 
 //parse table, and add table to frame or TOC
 LwpTableLayout * pTableLayout = GetTableLayout();
 if (pTableLayout)
 {
-XFContentContainer * pTableContainer = pXFFrame;
+XFContentContainer* pTableContainer = xXFFrame.get();
 // if *this is a TOCSuperTableLayout and it's located in a cell
 // add the frame to upper level and add TOCSuperTableLayout into 
the frame
 rtl::Reference xContainer(GetContainerLayout());
@@ -288,13 +288,13 @@ void  
LwpTocSuperLayout::XFConvertFrame(XFContentContainer* pCont, sal_Int32 nSt
 if (xContainer->IsCell())
 {
 pTableContainer = pCont; // TOC contain table directly
-pXFFrame->Add(pCont);
-m_pCont->Add(pXFFrame);
+xXFFrame->Add(pCont);
+m_pCont->Add(xXFFrame.get());
 }
 else
 {
 //add frame to the container
-pCont->Add(pXFFrame);
+pCont->Add(xXFFrame.get());
 }
 pTableLayout->XFConvert(pTableContainer);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-01-07 Thread Caolán McNamara
 lotuswordpro/source/filter/lwppagelayout.cxx |8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

New commits:
commit 9dad387df78f4043ca0c718f27ed06006fa7128a
Author: Caolán McNamara 
Date:   Sun Jan 7 15:14:34 2018 +

ofz#4979 Divide-by-zero

Change-Id: I0ac848950bdab54a8cc2659206758f1b13e32757
Reviewed-on: https://gerrit.libreoffice.org/47536
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/lotuswordpro/source/filter/lwppagelayout.cxx 
b/lotuswordpro/source/filter/lwppagelayout.cxx
index 193bdbbedb69..8ee43071bb95 100644
--- a/lotuswordpro/source/filter/lwppagelayout.cxx
+++ b/lotuswordpro/source/filter/lwppagelayout.cxx
@@ -288,9 +288,13 @@ void LwpPageLayout::ParseFootNoteSeparator(XFPageMaster * 
pm1)
 enumXFAlignType eAlignType = enumXFAlignStart;
 if(rFootnoteSep.GetIndent() > 0)
 {
+const double fMarginWidth = GetMarginWidth();
+if (fMarginWidth == 0.0)
+throw o3tl::divide_by_zero();
+
 //SODC don't support indent
-sal_uInt32 nIndentPercent =  
static_cast(100*LwpTools::ConvertFromUnitsToMetric(rFootnoteSep.GetIndent())/GetMarginWidth());
-if(nIndentPercent + nLengthPercent >= 100)
+sal_uInt32 nIndentPercent =  
static_cast(100*LwpTools::ConvertFromUnitsToMetric(rFootnoteSep.GetIndent())
 / fMarginWidth);
+if (nIndentPercent + nLengthPercent >= 100)
 eAlignType = enumXFAlignEnd;
 }
 if(aColor.IsValidColor())
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-01-07 Thread Caolán McNamara
 tools/source/generic/bigint.cxx |   12 +++-
 1 file changed, 7 insertions(+), 5 deletions(-)

New commits:
commit 44b938040f312def227c9ed72d1f83811cf67f1a
Author: Caolán McNamara 
Date:   Sat Jan 6 21:01:32 2018 +

ofz#4995 Integer-overflow

Change-Id: Iad6e1c90cb099077809cc5684f683a0ba25b303b
Reviewed-on: https://gerrit.libreoffice.org/47519
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/tools/source/generic/bigint.cxx b/tools/source/generic/bigint.cxx
index 883e3804617d..e4afdb6be55e 100644
--- a/tools/source/generic/bigint.cxx
+++ b/tools/source/generic/bigint.cxx
@@ -51,17 +51,19 @@ void BigInt::MakeBigInt( const BigInt& rVal )
 }
 else
 {
-sal_Int32 nTmp = rVal.nVal;
-
-nVal   = rVal.nVal;
+nVal = rVal.nVal;
 bIsBig = true;
-if ( nTmp < 0 )
+sal_uInt32 nTmp;
+if (nVal < 0)
 {
 bIsNeg = true;
-nTmp = -nTmp;
+nTmp = -static_cast(nVal);
 }
 else
+{
 bIsNeg = false;
+nTmp = nVal;
+}
 
 nNum[0] = (sal_uInt16)(nTmp & 0xL);
 nNum[1] = (sal_uInt16)(nTmp >> 16);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114898] SIGSEGV on soffice startup with java-8-openjdk-i386

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114898

--- Comment #2 from Mike Kaganski  ---
I strongly suspect this to be a duplicate of bug 108619; however, just wanted
to mention that you wrote "start libreoffice with a specific document" in Steps
to reproduce. But if you suspect this to be document-specific, then you should
understand that it's impossible to reproduce this without such document
attached here.

-- 
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 114898] SIGSEGV on soffice startup with java-8-openjdk-i386

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114898

Mike Kaganski  changed:

   What|Removed |Added

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

-- 
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 108619] Java Crash on x86 in jfw_plugin_startJavaVirtualMachine w/ recent linux kernels

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108619

Mike Kaganski  changed:

   What|Removed |Added

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

-- 
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 104017] FILESAVE: DOC: New rows are displayed on table after RT

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104017

Telesto  changed:

   What|Removed |Added

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

--- Comment #3 from Telesto  ---
Adding bug 93366 as See also. It's also a regression from
ee9f23bb94b4c2c8c4db6466ecca272a092e9492

-- 
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 93366] Table jumps to the next page when saving DOC file

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93366

Telesto  changed:

   What|Removed |Added

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

-- 
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 114882] Error Message: File format error found at SAXParseException: '[word/document.xml line 2]: Opening and ending tag mismatch: txbxContent line 0 and sdtContent ', Stream '

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114882

Mike Kaganski  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected
 CC||vmik...@collabora.co.uk

--- Comment #5 from Mike Kaganski  ---
This has something to do with one (or both) of following commits:

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

author  Miklos Vajna   2014-06-18 11:57:31 +0200
committer   Miklos Vajna   2014-06-18 12:09:15
+0200
commit  d379d18666aa42031359ca8eb34b0021960347ae
treed0324e2297be256e8c291cd6e17676f68f9f072d
parent  8e67a7796f598de2f11b694542bccb48343f0d9a
oox: import WPS shape with text as shape with textbox

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

author  Miklos Vajna   2014-10-08 18:00:34 +0200
committer   Miklos Vajna   2014-10-08 18:14:55
+0200
commit  ab52bb712c335e88cf100b3b8336a46b7673eb98
tree724b951cef11afe5c5059fba7fb0808069ebcf42
parent  d61f8185e660a6820351b8cea3ac51d344f0ab3e
DOCX export: fix handling of shapes containing and also anchored inside tables

Before the first, it saved valid XML. After second, it started to save invalid
XML. Between them, the file cannot be saved at all.

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


[Libreoffice-bugs] [Bug 114883] Tables in this .doc are laid out almost entirely off of the page

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114883

Telesto  changed:

   What|Removed |Added

   Keywords||filter:doc
Version|6.0.0.1 rc  |Inherited From OOo

--- Comment #4 from Telesto  ---
Repro with:
LibreOffice 3.3.0 
OOO330m19 (Build:6)
tag libreoffice-3.3.0.4

-- 
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 35574] doc with embedded tables formatting issues

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35574

--- Comment #10 from Eyal Rozenberg  ---
Still seeing this with LO 6.0.0.1 RC.

-- 
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 114899] New: VIEWING: smarter positioning of deleted text in track changes mode ( considering word boundaries)

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114899

Bug ID: 114899
   Summary: VIEWING: smarter positioning of deleted text in track
changes mode (considering word boundaries)
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: registracije+lofficeb...@lynxlynx.info

Editing in track changes mode can be quite annoying, since the mishmash is hard
to read (cf. bug 46188). One small improvement would be to avoid word
"splitting" when rewriting them. 

When a user selects some text and types in something new, the cursor position
depends on the side she made the selection from (left: end, right:start of the
selection). This is fine if you are replacing anything but the start (left
sel.) or end (right sel.) of the string. So no problem if you're changing the
middle of the string.

Example: rewriting the "ban" in a RTL selected "banana" with "Hav" will
produce: "Hav-ban-ana". Since the two surviving parts are now split, the
resulting word is harder to read.

My suggestion is to add a heuristic, wherein the cursor position is overriden
(flipped) if it was placed at a word boundary. That would make the example turn
out as "-ban-Havana". 

No idea if this is truly appropriate for a VIEWING tag.

-- 
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 114898] SIGSEGV on soffice startup with java-8-openjdk-i386

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114898

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||ba...@caesar.elte.hu
 Ever confirmed|0   |1

--- Comment #1 from Aron Budea  ---
LibreOffice 5.3.1.2 is outdated, please try with a current version, eg. 5.4.4.

-- 
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 114894] Text frames.

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114894

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |INVALID

--- Comment #1 from V Stuart Foote  ---
Always has been available to insert and link frames onto a Writer document
page.

https://help.libreoffice.org/6.0/en-US/text/swriter/guide/text_frame.html?DbPAR=WRITER#bm_id3149487

-- 
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 65463] Writer: Index entry in ToC should be clickable

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65463

Buovjaga  changed:

   What|Removed |Added

Version|5.4.3.2 release |Inherited From OOo
   Severity|normal  |enhancement

-- 
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: configure.ac

2018-01-07 Thread Stephan Bergmann
 configure.ac |   24 +---
 1 file changed, 17 insertions(+), 7 deletions(-)

New commits:
commit 7df57f6993cab4ba0f1fccce92394c4dfe46f067
Author: Stephan Bergmann 
Date:   Fri Jan 5 17:20:11 2018 +0100

Find JDK 9 on Windows

Change-Id: I8854d0e7fb23602e5ca20309fc79890b4f31a70e
Reviewed-on: https://gerrit.libreoffice.org/47479
Tested-by: Jenkins 
Reviewed-by: Stephan Bergmann 

diff --git a/configure.ac b/configure.ac
index ce7598305e54..7ef4a6c6a334 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6563,13 +6563,23 @@ if test "$ENABLE_JAVA" != ""; then
 fi
 
 if test -z "$with_jdk_home"; then
-for ver in 1.8 1.7 1.6; do
-reg_get_value "$bitness" 
"HKEY_LOCAL_MACHINE/SOFTWARE/JavaSoft/Java Development Kit/$ver/JavaHome"
-if test -n "$regvalue"; then
-_jdk_home=$regvalue
-break
-fi
-done
+dnl See 
 section "Windows Registry Key Changes":
+reg_get_value "$bitness" 
"HKEY_LOCAL_MACHINE/SOFTWARE/JavaSoft/JDK/CurrentVersion"
+if test -n "$regvalue"; then
+ver=$regvalue
+reg_get_value "$bitness" 
"HKEY_LOCAL_MACHINE/SOFTWARE/JavaSoft/JDK/$ver/JavaHome"
+_jdk_home=$regvalue
+fi
+if test -z "$with_jdk_home"; then
+for ver in 1.8 1.7 1.6; do
+reg_get_value "$bitness" 
"HKEY_LOCAL_MACHINE/SOFTWARE/JavaSoft/Java Development Kit/$ver/JavaHome"
+if test -n "$regvalue"; then
+_jdk_home=$regvalue
+break
+fi
+done
+fi
 if test -f "$_jdk_home/lib/jvm.lib" -a -f 
"$_jdk_home/bin/java.exe"; then
 with_jdk_home="$_jdk_home"
 howfound="found automatically"
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114898] New: SIGSEGV on soffice startup with java-8-openjdk-i386

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114898

Bug ID: 114898
   Summary: SIGSEGV on soffice startup with java-8-openjdk-i386
   Product: LibreOffice
   Version: 5.3.1.2 release
  Hardware: x86 (IA32)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: traumsch...@riseup.net

Description:
Opening a document libreoffice crashes on startup with
openjdk-8-jre-headless:i386 (8u151-b12-0ubuntu0.17.04.2) installed.

OS: Ubuntu Zesty
$ libreoffice --version
LibreOffice 5.3.1.2 30m0(Build:2)

warning: Currently logging to gdbtrace.log.  Turn the logging off and on to
make the new setting effective.
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/i386-linux-gnu/libthread_db.so.1".
[New Thread 0xafc6eb40 (LWP 28644)]
[New Thread 0xae432b40 (LWP 28645)]
[New Thread 0xadaffb40 (LWP 28646)]
[New Thread 0xacfaeb40 (LWP 28647)]
[New Thread 0xac7adb40 (LWP 28648)]
[New Thread 0xabcebb40 (LWP 28649)]
[New Thread 0xab4eab40 (LWP 28650)]
[New Thread 0xaace9b40 (LWP 28651)]
[Thread 0xaace9b40 (LWP 28651) exited]
[Thread 0xabcebb40 (LWP 28649) exited]
[Thread 0xae432b40 (LWP 28645) exited]
[New Thread 0xae432b40 (LWP 28654)]
[New Thread 0xabcebb40 (LWP 28657)]
[Thread 0xabcebb40 (LWP 28657) exited]
[Thread 0xae432b40 (LWP 28654) exited]

Thread 1 "soffice.bin" received signal SIGSEGV, Segmentation fault.
0xa612f375 in ?? () from
/usr/lib/jvm/java-8-openjdk-i386/jre/lib/i386/server/libjvm.so
#0  0xa612f375 in  () at
/usr/lib/jvm/java-8-openjdk-i386/jre/lib/i386/server/libjvm.so
#1  0xa6131b84 in  () at
/usr/lib/jvm/java-8-openjdk-i386/jre/lib/i386/server/libjvm.so
#2  0xa613c0c8 in  () at
/usr/lib/jvm/java-8-openjdk-i386/jre/lib/i386/server/libjvm.so
#3  0xa627963e in  () at
/usr/lib/jvm/java-8-openjdk-i386/jre/lib/i386/server/libjvm.so
#4  0xa5f302c5 in JNI_CreateJavaVM () at
/usr/lib/jvm/java-8-openjdk-i386/jre/lib/i386/server/libjvm.so
#5  0xb2c3c941 in  () at /usr/lib/libreoffice/program/libjvmfwklo.so
#6  0xb2c4cf74 in jfw_startVM(JavaInfo const*, JavaVMOption*, long, JavaVM_**,
JNIEnv_**) () at /usr/lib/libreoffice/program/libjvmfwklo.so
#7  0xa6961d65 in  () at /usr/lib/libreoffice/program/libjavavmlo.so
#8  0xa6aae9a3 in  () at /usr/lib/libreoffice/program/libjavaloaderlo.so
#9  0xa6ab085f in  () at /usr/lib/libreoffice/program/libjavaloaderlo.so
#10 0xb2cf1278 in  () at
/usr/lib/libreoffice/program/libuno_cppuhelpergcc3.so.3
#11 0xb2cf35d4 in  () at
/usr/lib/libreoffice/program/libuno_cppuhelpergcc3.so.3
#12 0xb2cf3705 in  () at
/usr/lib/libreoffice/program/libuno_cppuhelpergcc3.so.3
#13 0xb2cef2f7 in  () at
/usr/lib/libreoffice/program/libuno_cppuhelpergcc3.so.3
#14 0xb53ca5d5 in  () at /usr/lib/libreoffice/program/libmergedlo.so
#15 0xb53ccf6a in  () at /usr/lib/libreoffice/program/libmergedlo.so
#16 0xb53ceb99 in  () at /usr/lib/libreoffice/program/libmergedlo.so
#17 0xb53cf3a5 in  () at /usr/lib/libreoffice/program/libmergedlo.so
#18 0xb5472fb7 in  () at /usr/lib/libreoffice/program/libmergedlo.so
#19 0xb5510262 in  () at /usr/lib/libreoffice/program/libmergedlo.so
#20 0xb6ad1494 in Menu::Activate() () at
/usr/lib/libreoffice/program/libmergedlo.so
#21 0xb6ad15b0 in Menu::HandleMenuActivateEvent(Menu*) const () at
/usr/lib/libreoffice/program/libmergedlo.so
#22 0xaf3cce59 in  () at /usr/lib/libreoffice/program/libvclplug_gtk3lo.so
#23 0xaf3cce69 in  () at /usr/lib/libreoffice/program/libvclplug_gtk3lo.so
#24 0xaf3cd000 in  () at /usr/lib/libreoffice/program/libvclplug_gtk3lo.so
#25 0xb6ad471b in  () at /usr/lib/libreoffice/program/libmergedlo.so
#26 0xb6b10f90 in SystemWindow::SetMenuBar(MenuBar*) () at
/usr/lib/libreoffice/program/libmergedlo.so
#27 0xb541dd4c in  () at /usr/lib/libreoffice/program/libmergedlo.so
#28 0xb58f43cf in  () at /usr/lib/libreoffice/program/libmergedlo.so
#29 0xb58f81bd in  () at /usr/lib/libreoffice/program/libmergedlo.so
#30 0xb5ba5034 in  () at /usr/lib/libreoffice/program/libmergedlo.so
#31 0xb5ba6234 in
SfxBaseController::attachFrame(com::sun::star::uno::Reference
const&) () at /usr/lib/libreoffice/program/libmergedlo.so
#32 0xb5b90803 in  () at /usr/lib/libreoffice/program/libmergedlo.so
#33 0xb5446d85 in  () at /usr/lib/libreoffice/program/libmergedlo.so
#34 0xb54475d9 in  () at /usr/lib/libreoffice/program/libmergedlo.so
#35 0xb53d37a3 in  () at /usr/lib/libreoffice/program/libmergedlo.so
#36 0xb53d463b in  () at /usr/lib/libreoffice/program/libmergedlo.so
#37 0xb4e4f2d1 in
comphelper::SynchronousDispatch::dispatch(com::sun::star::uno::Reference
const&, rtl::OUString const&, rtl::OUString const&, long,
com::sun::star::uno::Sequence const&) ()
at /usr/lib/libreoffice/program/libmergedlo.so
#38 0xb5bf38d4 in  () at /usr/lib/libreoffice/program/libmergedlo.so
#39 0xb5bff073 in  () at 

[Libreoffice-bugs] [Bug 65463] Writer: Index entry in ToC should be clickable

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65463

nicho...@the3rdrock.com changed:

   What|Removed |Added

 CC||nicho...@the3rdrock.com
Version|Inherited From OOo  |5.4.3.2 release
   Severity|enhancement |normal

--- Comment #17 from nicho...@the3rdrock.com ---
Still a bug. Windows user here.

Index marks are not hyperlinked in a ToC.

-- 
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 114895] Printing the work prepared in LibreOffice Draw.

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114895

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |WORKSFORME

--- Comment #1 from V Stuart Foote  ---
Easily accomplished now inserting OLE object from file for each copy of the
Draw canvas object. Page layout including margins is done on the document to
hold the result (Writer, or Draw), the inserted OLE objects can then be
distributed as needed.

-- 
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 114888] Headings are tied to list entries

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114888

zyklo...@web.de changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 114888] Headings are tied to list entries

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114888

--- Comment #2 from zyklo...@web.de ---
Created attachment 138944
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138944=edit
Sample

Error #1, thanks!

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


[Libreoffice-bugs] [Bug 114888] Headings are tied to list entries

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114888

Dieter Praas  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||dgp-m...@gmx.de
 Ever confirmed|0   |1

--- Comment #1 from Dieter Praas  ---
The example document you mentioned is missing => NEEDINFO.

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


[Libreoffice-ux-advise] [Bug 103396] Trim marks are not available for use when a professional printer requires them

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103396

--- Comment #6 from V Stuart Foote  ---
*** Bug 114891 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 103683] PDF export mediabox trimbox cropbox bleedbox artbox

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103683

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 103396] Trim marks are not available for use when a professional printer requires them

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103396

--- Comment #6 from V Stuart Foote  ---
*** Bug 114891 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 114891] The size of the page

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114891

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||3683
 Resolution|--- |DUPLICATE

--- Comment #1 from V Stuart Foote  ---


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

-- 
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 103683] PDF export mediabox trimbox cropbox bleedbox artbox

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103683

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 103396] Trim marks are not available for use when a professional printer requires them

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103396

V Stuart Foote  changed:

   What|Removed |Added

 CC||d...@10g.pl

--- Comment #5 from V Stuart Foote  ---
*** Bug 114892 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 114892] Margin in print

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114892

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||3683
 Resolution|--- |DUPLICATE

--- Comment #1 from V Stuart Foote  ---
Sure there is, see bug 103396 and other issues of the DTP support meta bug
99525

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

-- 
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 114887] UI: with disabled OpenGL NAVIGATOR view is jumpy and flickering when moving cell cursor through document.

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114887

Rainer Bielefeld Retired  changed:

   What|Removed |Added

Summary|UI: NAVIGATOR view is jumpy |UI: with disabled OpenGL
   |and flickering when moving  |NAVIGATOR view is jumpy and
   |cell cursor thorugh |flickering when moving cell
   |document.   |cursor through document.

--- Comment #2 from Rainer Bielefeld Retired  
---
e) At leas with my test  Version: 5.4.4.2 (x64) Using OpenGL heals the problem
e1) Disabling OpenGL can't be a solution because there are several OpenGL
related Bugs, even CRASHes like 
"Bug 114736 - Crash when opening a particular presentation (OpenGL) "

-- 
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 114736] Crash when opening a particular presentation (OpenGL)

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114736

Rainer Bielefeld Retired  changed:

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #11 from Rainer Bielefeld Retired  
---
Still REPRODUCIBLE with Version: 6.1.0.0.alpha0+ (x64)
Build ID: c926a1e34672afaa5b7de0e3b08b1537e88fbb6f CPU threads: 4; OS: Windows
6.1; UI render: default; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2017-12-24_01:10:03
Locale: de-DE (de_DE); Calc: CL, my default user profile, Tango theme

-- 
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 107831] [META] Paragraph-level bugs and enhancements

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107831
Bug 107831 depends on bug 103705, which changed state.

Bug 103705 Summary: Clone formatting does not copy all paragraph-level 
properties
https://bugs.documentfoundation.org/show_bug.cgi?id=103705

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 103705] Clone formatting does not copy all paragraph-level properties

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103705

V Stuart Foote  changed:

   What|Removed |Added

   Keywords|regression  |
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #7 from V Stuart Foote  ---
(In reply to Michael H. from comment #6)
> Can you be more specific VSF? I tested on 6.0.0.1 and most of it does work,
> though some seems a little buggy, but hard to tell.
> 
> Can you say what exactly using the Example Attachment is not working?

Sorry, just went back through the example. 

The click, +click, and +click does apply the selection's
character, paragaph+character, or paragraph only formatting respectively.

The numbered list style threw me for a moment, but realize doing the clone
continuing is the correct behavior.

@Heiko, are you good with this now?

-- 
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 107318] [META] Clone formatting (aka Format Paintbrush) and Clear direct formatting issues

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107318
Bug 107318 depends on bug 103705, which changed state.

Bug 103705 Summary: Clone formatting does not copy all paragraph-level 
properties
https://bugs.documentfoundation.org/show_bug.cgi?id=103705

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 114897] Wrongly displayed characters of certain fonts

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114897

--- Comment #1 from Peter  ---
Created attachment 138943
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138943=edit
Font with the described 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 114897] New: Wrongly displayed characters of certain fonts

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114897

Bug ID: 114897
   Summary: Wrongly displayed characters of certain fonts
   Product: LibreOffice
   Version: 6.0.0.1 rc
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: peter77ka...@gmail.com

Description:
This bug is in Calc as well as in Writer.
I installed special font on my computer but some characters are not displayed
correctly. For example character with ASCII code 189 (or 178,179, 185, 186,
etc), however, majority of characters is displayed correctly.
I tested the font in other Windows apps (Excel, Word, Notepad) and all the
characters are displayed correctly.

Steps to Reproduce:
1. Install font SenaKJR (can be downloaded here:
http://www.gvd.cz/cz/data/fonty/fonty_SENA.zip)
2. in calc enter formula =CHAR(189)
3. change font of the cell to SenaKJR

Actual Results:  
(˝) character is displayed, which is character corresponding to the ASCII code,
however, not in this font. 

Expected Results:
There should be wifi logo displayed, which is the correct character for the
ascii code 189 in the font.


Reproducible: Always


User Profile Reset: No



Additional Info:
Many other characters are displayed correctly.
If I save the spreadsheet with this character in Calc and re-open it in Excel,
it displays correctly: WiFi logo.


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko/20100101
Firefox/57.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] core.git: Branch 'libreoffice-6-0' - wizards/com

2018-01-07 Thread Julien Nabet
 wizards/com/sun/star/wizards/common/strings.hrc |8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

New commits:
commit 0e2cd1b44cf1794ac93aa59b6ec103276e40ae46
Author: Julien Nabet 
Date:   Sun Jan 7 01:19:18 2018 +0100

tdf#114873: localize Letter, fax and agenda wizards

Since we use contextual messages, we need to concatenate:
- context
- EOT character
- the message itself
see https://www.gnu.org/software/gettext/manual/html_node/MO-Files.html

A priori, regression from 00657aef09d854c74fb426a935a3e8b1fc390bb0

Change-Id: Ie3e781e30ce09f0121afff2f0eb0769b1fbd2114
Reviewed-on: https://gerrit.libreoffice.org/47531
Reviewed-by: Julien Nabet 
Tested-by: Jenkins 

diff --git a/wizards/com/sun/star/wizards/common/strings.hrc 
b/wizards/com/sun/star/wizards/common/strings.hrc
index fc43b334342c..46a2097c25cd 100644
--- a/wizards/com/sun/star/wizards/common/strings.hrc
+++ b/wizards/com/sun/star/wizards/common/strings.hrc
@@ -20,7 +20,13 @@ gettext.bindtextdomain('wiz', unohelper.fileUrlToSystemPath(
 gettext.textdomain('wiz')
 
 def NC_(context, string):
-return gettext.gettext(string)
+# Contextual strings are stored with the concatenation of
+# the context, a EOT byte, and the original string, instead of the 
original string
+# see https://www.gnu.org/software/gettext/manual/html_node/MO-Files.html
+ret = gettext.gettext(context + chr(4) + string)
+if ret.find(chr(4)) == -1:
+return ret
+return string
 
 # common section
 RID_COMMON_START_0  = NC_("RID_COMMON_START_0", "The 
directory '%1' could not be created.There may not be enough space left on 
your hard disk.")
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114887] UI: NAVIGATOR view is jumpy and flickering when moving cell cursor thorugh document.

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114887

Rainer Bielefeld Retired  changed:

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de
Version|5.4.4.2 release |5.0.4.2 release
 OS|All |Windows (All)

--- Comment #1 from Rainer Bielefeld Retired  
---
a1) Still a problem with Version: 6.1.0.0.alpha0+ (x64)
Build ID: c926a1e34672afaa5b7de0e3b08b1537e88fbb6f CPU threads: 4; OS: 
Windows 6.1; UI render: default; TinderBox: Win-x86_64@42, 
Branch:master, Time: 2017-12-24_01:10:03
Locale: de-DE (de_DE); Calc: CL, my default user profile, Tango theme 
a2) Already reproducible with Version: 5.0.4.2  
Build-ID: 2b9802c1994aa0b7dc6079e128979269cf95bc78 
Gebietsschema: de-DE (de_DE) standardprofile 
a3) was still ok with Version: 4.2.4.2  
Build ID: 63150712c6d317d27ce2db16eb94c2f3d7b699f8  own user profile

b) Using a newly created User Profile does not heal the problem
c) Graphic- Hardware Acceleration without influence
d) Also reproducible on a different PC with WIN10

-- 
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 114896] New: Block of attraction line.

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114896

Bug ID: 114896
   Summary: Block of attraction line.
   Product: LibreOffice
   Version: 5.4.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: d...@10g.pl

Description:
Block of attraction line.
Currently, the snap line can be edited (or repositioned) or deleted. There is
no lock option against accidental displacement.
Important.

Actual Results:  
...

Expected Results:
...


Reproducible: Always


User Profile Reset: No



Additional Info:
...


User-Agent: Mozilla/5.0 (Windows NT 6.0; rv:52.0) Gecko/20100101 Firefox/52.0

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


[Libreoffice-bugs] [Bug 114610] [META] Object rotation bugs and enhancements

2018-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114610

Telesto  changed:

   What|Removed |Added

 Depends on||90293


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=90293
[Bug 90293] Unifying shape rotation accessibility
-- 
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   >