[Libreoffice-bugs] [Bug 114363] ToC Index update causes entries to duplicate if ToC created from Outline and Additional heading styles

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114363

Timur  changed:

   What|Removed |Added

 Status|REOPENED|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #13 from Timur  ---
Please don't set wrong status yourself. Reopened is where fix doesn't work. 
This one is not confirmed, not only a behavior but a possible fix. You may wait
for a dev or UX to confirm, but cannot do it yourself.

-- 
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 114743] PRINT: angled text does not display

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114743

--- Comment #2 from Xavier Van Wijmeersch  ---
can reproduce with

Version: 6.0.0.1.0+
Build ID: 203b913155812706e9be14c5fe2b8f543cc4fdc7
CPU threads: 8; OS: Linux 4.9; UI render: default; VCL: kde4; 
Locale: nl-BE (en_US.UTF-8); Calc: group

Version: 6.1.0.0.alpha0+
Build ID: 7f15b7ae482be5994c6803b982c13cbc036a734f
CPU threads: 8; OS: Linux 4.9; UI render: default; VCL: kde4; 
Locale: nl-BE (en_US.UTF-8); Calc: group threaded

but not with

Version: 5.4.5.0.0+
Build ID: a61f45499856aad9910d82af1312a163504c15c2
CPU threads: 8; OS: Linux 4.9; UI render: default; VCL: kde4; 
Locale: nl-BE (en_US.UTF-8); 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: sc/inc sc/source

2017-12-28 Thread Jochen Nitschke
 sc/inc/queryparam.hxx  |6 +--
 sc/source/core/tool/queryparam.cxx |   58 +
 2 files changed, 24 insertions(+), 40 deletions(-)

New commits:
commit db8085636aec89205fdc944ec55ef11645705a97
Author: Jochen Nitschke 
Date:   Thu Dec 28 00:35:41 2017 +0100

simplify copy of ScQueryParam

define copy assignment for ScQueryParamBase and use
default copy implementations for other structs.

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

diff --git a/sc/inc/queryparam.hxx b/sc/inc/queryparam.hxx
index 0c704789e004..cde359ec7a72 100644
--- a/sc/inc/queryparam.hxx
+++ b/sc/inc/queryparam.hxx
@@ -77,6 +77,7 @@ public:
 protected:
 ScQueryParamBase();
 ScQueryParamBase(const ScQueryParamBase& r);
+ScQueryParamBase& operator=(const ScQueryParamBase& r);
 
 EntriesType m_Entries;
 };
@@ -107,7 +108,6 @@ struct ScQueryParamTable
 SCTAB   nTab;
 
 ScQueryParamTable();
-ScQueryParamTable(const ScQueryParamTable& r);
 virtual ~ScQueryParamTable();
 };
 
@@ -134,11 +134,11 @@ struct SC_DLLPUBLIC ScQueryParam : public 
ScQueryParamBase, public ScQueryParamT
 SCROW   nDestRow;
 
 ScQueryParam();
-ScQueryParam( const ScQueryParam& r );
+ScQueryParam( const ScQueryParam& );
 ScQueryParam( const ScDBQueryParamInternal& r );
 virtual ~ScQueryParam() override;
 
-ScQueryParam&   operator=  ( const ScQueryParam& r );
+ScQueryParam&   operator=  ( const ScQueryParam& );
 booloperator== ( const ScQueryParam& rOther ) const;
 voidClear();
 voidClearDestParams();
diff --git a/sc/source/core/tool/queryparam.cxx 
b/sc/source/core/tool/queryparam.cxx
index 60bf01366886..269eb700bb83 100644
--- a/sc/source/core/tool/queryparam.cxx
+++ b/sc/source/core/tool/queryparam.cxx
@@ -87,6 +87,25 @@ ScQueryParamBase::ScQueryParamBase(const ScQueryParamBase& 
r) :
 }
 }
 
+ScQueryParamBase& ScQueryParamBase::operator=(const ScQueryParamBase& r)
+{
+eSearchType = r.eSearchType;
+bHasHeader  = r.bHasHeader;
+bByRow = r.bByRow;
+bInplace = r.bInplace;
+bCaseSens = r.bCaseSens;
+bDuplicate = r.bDuplicate;
+mbRangeLookup = r.mbRangeLookup;
+
+m_Entries.clear();
+for (auto const& it : r.m_Entries)
+{
+m_Entries.push_back(o3tl::make_unique(*it));
+}
+
+return *this;
+}
+
 ScQueryParamBase::~ScQueryParamBase()
 {
 }
@@ -283,11 +302,6 @@ ScQueryParamTable::ScQueryParamTable() :
 {
 }
 
-ScQueryParamTable::ScQueryParamTable(const ScQueryParamTable& r) :
-nCol1(r.nCol1),nRow1(r.nRow1),nCol2(r.nCol2),nRow2(r.nRow2),nTab(r.nTab)
-{
-}
-
 ScQueryParamTable::~ScQueryParamTable()
 {
 }
@@ -303,12 +317,7 @@ ScQueryParam::ScQueryParam() :
 Clear();
 }
 
-ScQueryParam::ScQueryParam( const ScQueryParam& r ) :
-ScQueryParamBase(r),
-ScQueryParamTable(r),
-bDestPers(r.bDestPers), nDestTab(r.nDestTab), nDestCol(r.nDestCol), 
nDestRow(r.nDestRow)
-{
-}
+ScQueryParam::ScQueryParam( const ScQueryParam& ) = default;
 
 ScQueryParam::ScQueryParam( const ScDBQueryParamInternal& r ) :
 ScQueryParamBase(r),
@@ -349,32 +358,7 @@ void ScQueryParam::ClearDestParams()
 nDestRow = 0;
 }
 
-ScQueryParam& ScQueryParam::operator=( const ScQueryParam& r )
-{
-nCol1   = r.nCol1;
-nRow1   = r.nRow1;
-nCol2   = r.nCol2;
-nRow2   = r.nRow2;
-nTab= r.nTab;
-nDestTab= r.nDestTab;
-nDestCol= r.nDestCol;
-nDestRow= r.nDestRow;
-bHasHeader  = r.bHasHeader;
-bInplace= r.bInplace;
-bCaseSens   = r.bCaseSens;
-eSearchType = r.eSearchType;
-bDuplicate  = r.bDuplicate;
-bByRow  = r.bByRow;
-bDestPers   = r.bDestPers;
-
-m_Entries.clear();
-for (auto const& it : r.m_Entries)
-{
-m_Entries.push_back(o3tl::make_unique(*it));
-}
-
-return *this;
-}
+ScQueryParam& ScQueryParam::operator=( const ScQueryParam& ) = default;
 
 bool ScQueryParam::operator==( const ScQueryParam& rOther ) const
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-12-28 Thread Noel Grandin
 include/svx/ClassificationField.hxx   |2 +-
 include/svx/EnhancedCustomShapeFunctionParser.hxx |2 +-
 include/svx/colorbox.hxx  |6 +++---
 include/svx/dataaccessdescriptor.hxx  |2 +-
 include/svx/dlgctl3d.hxx  |2 +-
 include/svx/sdr/attribute/sdrformtextattribute.hxx|2 +-
 include/svx/sdrpagewindow.hxx |4 ++--
 include/svx/svdmrkv.hxx   |6 +++---
 include/svx/svdograf.hxx  |4 ++--
 include/svx/svdomedia.hxx |2 +-
 include/svx/svdoole2.hxx  |4 ++--
 include/svx/tbxcolorupdate.hxx|2 +-
 include/svx/unoshape.hxx  |2 +-
 include/svx/xit.hxx   |2 +-
 sc/source/ui/view/gridwin.cxx |2 +-
 svx/inc/galobj.hxx|2 +-
 svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx |2 +-
 svx/source/dialog/dlgctl3d.cxx|2 +-
 svx/source/dialog/framelinkarray.cxx  |4 ++--
 svx/source/form/dataaccessdescriptor.cxx  |2 +-
 svx/source/gallery2/galobj.cxx|2 +-
 svx/source/sdr/attribute/sdrformtextattribute.cxx |2 +-
 svx/source/svdraw/sdrpagewindow.cxx   |4 ++--
 svx/source/svdraw/svdograf.cxx|2 +-
 svx/source/svdraw/svdomedia.cxx   |2 +-
 svx/source/svdraw/svdoole2.cxx|4 ++--
 svx/source/svdraw/svdotextdecomposition.cxx   |4 ++--
 svx/source/tbxctrls/tbcontrl.cxx  |2 +-
 svx/source/unodraw/unoshape.cxx   |2 +-
 29 files changed, 40 insertions(+), 40 deletions(-)

New commits:
commit e0eb09405b2f4d95532d37bc37054a51e5a0177b
Author: Noel Grandin 
Date:   Thu Dec 28 19:48:26 2017 +0200

loplugin:passstuffbyref improved return in svx

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

diff --git a/include/svx/ClassificationField.hxx 
b/include/svx/ClassificationField.hxx
index 53989f868fc8..3eb4955dd1f1 100644
--- a/include/svx/ClassificationField.hxx
+++ b/include/svx/ClassificationField.hxx
@@ -44,7 +44,7 @@ public:
 }
 
 /// Returns the text to display, which is the Abbreviated Name, if 
provided, otherwise Name.
-OUString getDisplayText() const
+OUString const & getDisplayText() const
 {
 return !msAbbreviatedName.isEmpty() ? msAbbreviatedName : msName;
 }
diff --git a/include/svx/EnhancedCustomShapeFunctionParser.hxx 
b/include/svx/EnhancedCustomShapeFunctionParser.hxx
index 828a4ef4251b..bc1d97bd5879 100644
--- a/include/svx/EnhancedCustomShapeFunctionParser.hxx
+++ b/include/svx/EnhancedCustomShapeFunctionParser.hxx
@@ -233,7 +233,7 @@ public:
 @return the generated function object.
*/
 
-SVX_DLLPUBLIC static std::shared_ptr parseFunction( const 
OUString& rFunction, const EnhancedCustomShape2d& rCustoShape );
+SVX_DLLPUBLIC static std::shared_ptr const & 
parseFunction( const OUString& rFunction, const EnhancedCustomShape2d& 
rCustoShape );
 
 // this is a singleton
 FunctionParser() = delete;
diff --git a/include/svx/colorbox.hxx b/include/svx/colorbox.hxx
index f9655b28bc27..8ffbc12db77f 100644
--- a/include/svx/colorbox.hxx
+++ b/include/svx/colorbox.hxx
@@ -46,7 +46,7 @@ private:
 void Selected(const NamedColor& rNamedColor);
 void createColorWindow();
 void LockWidthRequest();
-VclPtr getColorWindow() const;
+VclPtr const & getColorWindow() const;
 public:
 SvxColorListBox(vcl::Window* pParent, WinBits nStyle = 0);
 virtual ~SvxColorListBox() override;
@@ -59,8 +59,8 @@ public:
 
 void SetSlotId(sal_uInt16 nSlotId, bool bShowNoneButton = false);
 
-Color GetSelectEntryColor() const { return m_aSelectedColor.first; }
-NamedColor GetSelectedEntry() const { return m_aSelectedColor; }
+Color const & GetSelectEntryColor() const { return m_aSelectedColor.first; 
}
+NamedColor const & GetSelectedEntry() const { return m_aSelectedColor; }
 
 void SelectEntry(const NamedColor& rColor);
 void SelectEntry(const Color& rColor);
diff --git a/include/svx/dataaccessdescriptor.hxx 
b/include/svx/dataaccessdescriptor.hxx
index 4a810a5950f2..e66e96513356 100644
--- a/include/svx/dataaccessdescriptor.hxx

[Libreoffice-commits] core.git: connectivity/source include/connectivity sdext/source ucb/source

2017-12-28 Thread Noel Grandin
 connectivity/source/commontools/RowFunctionParser.cxx |2 +-
 connectivity/source/commontools/TTableHelper.cxx  |   10 +-
 connectivity/source/commontools/statementcomposer.cxx |2 +-
 connectivity/source/inc/RowFunctionParser.hxx |2 +-
 include/connectivity/TTableHelper.hxx |   10 +-
 include/connectivity/statementcomposer.hxx|2 +-
 sdext/source/presenter/PresenterPaneBorderPainter.cxx |4 ++--
 ucb/source/cacher/cachedcontentresultset.cxx  |2 +-
 ucb/source/cacher/cachedcontentresultset.hxx  |2 +-
 ucb/source/core/providermap.hxx   |4 ++--
 ucb/source/ucp/webdav-neon/NeonSession.hxx|2 +-
 11 files changed, 21 insertions(+), 21 deletions(-)

New commits:
commit 31f71635a136daf36d554e0c20db9ae0d1686c23
Author: Noel Grandin 
Date:   Thu Dec 28 13:48:31 2017 +0200

loplugin:passstuffbyref improved return in ucb,connectivity

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

diff --git a/connectivity/source/commontools/RowFunctionParser.cxx 
b/connectivity/source/commontools/RowFunctionParser.cxx
index 2b3fa75b324c..afdbac9c9a52 100644
--- a/connectivity/source/commontools/RowFunctionParser.cxx
+++ b/connectivity/source/commontools/RowFunctionParser.cxx
@@ -400,7 +400,7 @@ const ParserContextSharedPtr& getParserContext()
 
 }
 
-std::shared_ptr FunctionParser::parseFunction( const OUString& 
_sFunction)
+std::shared_ptr const & FunctionParser::parseFunction( const 
OUString& _sFunction)
 {
 // TODO(Q1): Check if a combination of the RTL_UNICODETOTEXT_FLAGS_*
 // gives better conversion robustness here (we might want to map space
diff --git a/connectivity/source/commontools/TTableHelper.cxx 
b/connectivity/source/commontools/TTableHelper.cxx
index a30a19985394..2124e3366b08 100644
--- a/connectivity/source/commontools/TTableHelper.cxx
+++ b/connectivity/source/commontools/TTableHelper.cxx
@@ -594,27 +594,27 @@ OUString OTableHelper::getTypeCreatePattern() const
 return OUString();
 }
 
-Reference< XConnection> OTableHelper::getConnection() const
+Reference< XConnection> const & OTableHelper::getConnection() const
 {
 return m_pImpl->m_xConnection;
 }
 
-Reference< css::sdb::tools::XTableRename>  
OTableHelper::getRenameService() const
+Reference< css::sdb::tools::XTableRename> const & 
OTableHelper::getRenameService() const
 {
 return m_pImpl->m_xRename;
 }
 
-Reference< css::sdb::tools::XTableAlteration>  OTableHelper::getAlterService() 
const
+Reference< css::sdb::tools::XTableAlteration> const & 
OTableHelper::getAlterService() const
 {
 return m_pImpl->m_xAlter;
 }
 
-Reference< css::sdb::tools::XKeyAlteration>  OTableHelper::getKeyService() 
const
+Reference< css::sdb::tools::XKeyAlteration> const & 
OTableHelper::getKeyService() const
 {
 return m_pImpl->m_xKeyAlter;
 }
 
-Reference< css::sdb::tools::XIndexAlteration>  OTableHelper::getIndexService() 
const
+Reference< css::sdb::tools::XIndexAlteration> const & 
OTableHelper::getIndexService() const
 {
 return m_pImpl->m_xIndexAlter;
 }
diff --git a/connectivity/source/commontools/statementcomposer.cxx 
b/connectivity/source/commontools/statementcomposer.cxx
index f72afe40f2c1..499e7f167e39 100644
--- a/connectivity/source/commontools/statementcomposer.cxx
+++ b/connectivity/source/commontools/statementcomposer.cxx
@@ -266,7 +266,7 @@ namespace dbtools
 }
 
 
-Reference< XSingleSelectQueryComposer > StatementComposer::getComposer()
+Reference< XSingleSelectQueryComposer > const & 
StatementComposer::getComposer()
 {
 lcl_ensureUpToDateComposer_nothrow( *m_pData );
 return m_pData->xComposer;
diff --git a/connectivity/source/inc/RowFunctionParser.hxx 
b/connectivity/source/inc/RowFunctionParser.hxx
index df2c7ba2bf4e..b338d34e2cfe 100644
--- a/connectivity/source/inc/RowFunctionParser.hxx
+++ b/connectivity/source/inc/RowFunctionParser.hxx
@@ -97,7 +97,7 @@ public:
 @return the generated function object.
*/
 
-static std::shared_ptr parseFunction( const OUString& 
_sFunction);
+static std::shared_ptr const & parseFunction( const 
OUString& _sFunction);
 
 private:
 // disabled constructor/destructor, since this is
diff --git a/include/connectivity/TTableHelper.hxx 
b/include/connectivity/TTableHelper.hxx
index aa462dd50fc3..54d941421860 100644
--- a/include/connectivity/TTableHelper.hxx
+++ b/include/connectivity/TTableHelper.hxx
@@ -136,7 +136,7 @@ namespace connectivity
 );
 
 virtual css::uno::Reference< css::sdbc::XDatabaseMetaData> 
getMetaData() const override;
-css::uno::Reference< css::sdbc::XConnection> getConnection() const;
+css::uno::Reference< css::sdbc::XConnection> const 

[Libreoffice-bugs] [Bug 114746] New: Poor Asian fonts setting in default templates of Impress

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114746

Bug ID: 114746
   Summary: Poor Asian fonts setting in default templates of
Impress
   Product: LibreOffice
   Version: 6.0.0.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: pswo10...@gmail.com

Created attachment 138729
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138729=edit
The screenshot of the Font tab of the "Title" style in the first slide of the
Progress template

Tested in Daily build (2017-12-28_10.01.02) and Chinese (traditional) locale
(zh-tw).

The default templates of Impress provide poor default Asian fonts settings. 
Let's take the "Progress" template for example.

How reproducible: always
Reproduce Steps:
1. Install Daily Build and set the locale to Chinese (traditional) in Tools >
Options > Language Settings > Language > Language Of "Locale setting" to
"Chinese (traditional)" and enable Default Languages for Documents "Asain:"
checkbox then seclect "Chinese (traditional)"
2. Press OK and restart
3. Open Impress and select any of the default templates, such as "Progress" for
example here.

Actual Result of the styles in the first slide of the Progress template:
In the Font tab of the "Title" style:
Western Text Font
Family: Liberation SansStyle: BoldSize: 75

Asian Text Font
Family: 思源宋體Style: RegularSize: 24

In the Font tab of the "Outline 1" style:
Western Text Font
Family: Liberation SansStyle: RegularSize: 36

Asian Text Font
Family: 思源宋體Style: RegularSize: 24

Expected result:
1. Sans-serif font families should mapped to any 黑體/方體/ゴシック (Hei/Fung/Gothic
typeface). In the case of zh-tw locale, it should map to the CJK_HEADING of
zh-tw locale defined in VCL.xcu.
2. Serif font families should map to any 明體/宋體/明朝體 (Ming/Sung/Mincho typeface).
 In the case of zh-tw locale, it should map to the CJK_TEXT of zh-tw locale
defined in VCL.xcu.
3. The Asian Text Font "Style" and "Size" should be in coherent with Western
Text Font Style and Size. If it is Bold and 75 points for Western Text, it is
better to be the same for Asian Text. 

Bottom line:
Mostly all the templates have the problems on Asian Text Font Family, Style and
Size. It is best to have a corresponding setting for each locale. If that
cannot be done, just use the same generic font family (matchmaking for Sans and
Serif fonts), the same style (Regular, Bold, etc.), and the same size.

PS. here is a brief view of the first candidate CJK font of zh-tw locale in
VCL.xcu:
CJK_HEADING: 思源黑體 (Source Han Sans)
CJK_TEXT: 思源宋體 (Source Han Serif)
CJK_PRESENTATION: 思源黑體 (Source Han Sans)
CJK_SPREADSHEET: 思源黑體 (Source Han Sans)

-- 
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 114746] Poor Asian fonts setting in default templates of Impress

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114746

Cheng-Chia Tseng  changed:

   What|Removed |Added

 Blocks||83066


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=83066
[Bug 83066] [META] CJK (Chinese, Japanese, Korean, and Vietnamese) language
issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 83066] [META] CJK (Chinese, Japanese, Korean, and Vietnamese) language issues

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83066

Cheng-Chia Tseng  changed:

   What|Removed |Added

 Depends on||114746


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114746
[Bug 114746] Poor Asian fonts setting in default templates of Impress
-- 
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 114745] New: Help is out of date

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114745

Bug ID: 114745
   Summary: Help is out of date
   Product: LibreOffice
   Version: 5.4.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mrzen...@gmail.com

I wanted to know how to change the background of a document to be an image on
my computer.  I clicked on Help, and it said to click on Format -> Page and
select the Background tab.

There is no Background tab on that page.

The correct tab is the Area tab, and that has 6 buttons, none of which (to a
user) is clearly the one to set a background image (Bitmap - how is that
anything a normal, non-techie user would recognize as a place to set the
background image?).

At least if this was explained in the Help section, that would be a minimum,
but if this is going to reach the millions of people who use MS Office, it has
to be less cryptic to the overwhelming majority of folks who are not
developers.

I wish I could say that this is the only one, but I have seen errors like this
elsewhere.  I will report them as soon as I see another.

-- 
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 114717] SPELL: spellchecker does nonsense suggestions for de-DE

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114717

Rainer Bielefeld Retired  changed:

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #4 from Rainer Bielefeld Retired  
---
Created attachment 138728
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138728=edit
Some more test results

I did a more detailed search in the directories, for details pleas see attached
"dictionarysearch.odt". Nonsense word "Brennerdbetrieb" has not been found in
any of the directories.

-- 
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 114744] New: Show Columns does not take effect automatically.

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114744

Bug ID: 114744
   Summary: Show Columns does not take effect automatically.
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: richardaguil...@gmail.com

Description:
I have one excel file that originally created from Microsoft Excel and have
hidden columns. I highlighted the range columns and then right click and select
Show columns but it does not display the hidden columns. I tried to double
click also then border between the two columns for I'm thinking it will display
but nothing happen.However, when I zoom-in the worksheet that were only the
hidden columns displayed.

Steps to Reproduce:
1.Create/Open MSExcel file with hidden columns.
2.Highlight the columns you want to show the columns.
3.Click Show Columns

Actual Results:  
Nothing.

Expected Results:
Display hidden columns


Reproducible: Always


User Profile Reset: No



Additional Info:


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-bugs] [Bug 114743] PRINT: angled text does not display

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114743

--- Comment #1 from Elmar  ---
Created attachment 138727
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138727=edit
angled text display not working

-- 
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 114743] New: PRINT: angled text does not display

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114743

Bug ID: 114743
   Summary: PRINT: angled text does not display
   Product: LibreOffice
   Version: 6.1.0.0.alpha0+ Master
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rob...@iafrica.com

Description:
If do a heading and show text say at 45degrees it does not display

Steps to Reproduce:
1. Create spreadsheet (or open existing ods with angled text)
2. Add text to cells
3. set angle to 45degrees

Actual Results:  
displays blank contents
Also: if change position (say to centre) text disappears in display (but is
still there)

Expected Results:
Should display cell contents


Reproducible: Always


User Profile Reset: No



Additional Info:
[Information automatically included from LibreOffice]
Locale: en-US
Module: SpreadsheetDocument
[Information guessed from browser]
OS: Linux (All)
OS is 64bit: yes


User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; 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-bugs] [Bug 114363] ToC Index update causes entries to duplicate if ToC created from Outline and Additional heading styles

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114363

jens.troe...@light-speed.de changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|NOTABUG |---

--- Comment #12 from jens.troe...@light-speed.de ---
I disagree.

Considering that the document is a DOCX Word native format I take it that Word
is the reference and defines the baseline behavior. When I update the ToC in
Word, entries are _not_ duplicated. It seems that AOO does not have this
problem either.

Clearly there is a regression between Word and LO.

So instead of expecting LO users to tweak the document's settings after it's
loaded (see this comment:
https://bugs.documentfoundation.org/show_bug.cgi?id=114363#c9), I think LO
should handle this like the baseline reference: without duplicating entries and
without expecting the user to tweak anything.

-- 
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 114742] LibreOffice Calc doesn' t have New Style in Conditional Format window

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114742

--- Comment #4 from Thomas Woltjer  ---
Created attachment 138726
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138726=edit
Screenshot with new style in conditional formatting window.

-- 
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 114742] LibreOffice Calc doesn' t have New Style in Conditional Format window

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114742

Thomas Woltjer  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

--- Comment #3 from Thomas Woltjer  ---
This button has moved to be an entry in the style drop down menu (see attached
image). Marking this as not a bug. If this isn't showing up for you, please
change the status back to unconfirmed. 

(Note: It was also this way in LO 5.4; which older version are/were you using?)

Best, Thomas

-- 
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 104717] Repeated copy/paste is broken in Calc

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104717

--- Comment #12 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 101952] UI bug when switching "Maximize" and "Unmaximize" when using gen/X11 backend

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101952

--- Comment #7 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 63136] table cell is set to align=bottom, but cell contents are at top

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63136

--- Comment #6 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 85797] text box in a drawing object doesn't resize well

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85797

--- Comment #10 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 61899] SVG: sample .svg very slow on resize or scale

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61899

--- 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 48634] FILEOPEN: Import Excel VBA basic runtime error

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=48634

--- Comment #13 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-commits] core.git: Branch 'aoo/trunk' - config.guess config.sub

2017-12-28 Thread Matthias Seidel
 config.guess |5 -
 config.sub   |   15 ++-
 2 files changed, 18 insertions(+), 2 deletions(-)

New commits:
commit 4a73f51f4c83e5c59d4ccf68164bd0544533576e
Author: Matthias Seidel 
Date:   Thu Dec 28 23:32:40 2017 +

Updated to the latest version:

- config.guess: 2017-12-17
- config.sub: 2017-11-23

diff --git a/config.guess b/config.guess
index 31e01efec3e3..770cb5c7eb04 100755
--- a/config.guess
+++ b/config.guess
@@ -2,7 +2,7 @@
 # Attempt to guess a canonical system name.
 #   Copyright 1992-2017 Free Software Foundation, Inc.
 
-timestamp='2017-11-07'
+timestamp='2017-12-17'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -265,6 +265,9 @@ case 
"${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
 *:Redox:*:*)
echo ${UNAME_MACHINE}-unknown-redox
exit ;;
+mips:OSF1:*.*)
+echo mips-dec-osf1
+exit ;;
 alpha:OSF1:*:*)
case $UNAME_RELEASE in
*4.0)
diff --git a/config.sub b/config.sub
index fb5794786954..00f68b8e5f3d 100755
--- a/config.sub
+++ b/config.sub
@@ -2,7 +2,7 @@
 # Configuration validation subroutine script.
 #   Copyright 1992-2017 Free Software Foundation, Inc.
 
-timestamp='2017-11-04'
+timestamp='2017-11-23'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -1546,6 +1546,19 @@ case $os in
-dicos*)
os=-dicos
;;
+   -pikeos*)
+   # Until real need of OS specific support for
+   # particular features comes up, bare metal
+   # configurations are quite functional.
+   case $basic_machine in
+   arm*)
+   os=-eabi
+   ;;
+   *)
+   os=-elf
+   ;;
+   esac
+   ;;
-nacl*)
;;
-ios)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114742] LibreOffice Calc doesn' t have New Style in Conditional Format window

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114742

--- Comment #2 from jimj_...@yahoo.ca ---
Created attachment 138725
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138725=edit
LO Calc with Conditional Formatting

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

2017-12-28 Thread Markus Mohrhard
 chart2/qa/extras/chart2export.cxx |   11 ++
 chart2/qa/extras/data/xlsx/pie_chart_datapoint_explosion.xlsx |binary
 2 files changed, 11 insertions(+)

New commits:
commit 38f5e768b0f858f8f990a8f297396821c75d45dc
Author: Markus Mohrhard 
Date:   Thu Dec 28 21:10:44 2017 +0100

add test for tdf#114182

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

diff --git a/chart2/qa/extras/chart2export.cxx 
b/chart2/qa/extras/chart2export.cxx
index 67aa996c89d5..b68f969cb90b 100644
--- a/chart2/qa/extras/chart2export.cxx
+++ b/chart2/qa/extras/chart2export.cxx
@@ -101,6 +101,7 @@ public:
 void testMultipleAxisXLSX();
 void testAxisTitleRotationXLSX();
 void testAxisCrossBetweenXSLX();
+void testPieChartDataPointExplosionXLSX();
 
 CPPUNIT_TEST_SUITE(Chart2ExportTest);
 CPPUNIT_TEST(testErrorBarXLSX);
@@ -166,6 +167,7 @@ public:
 CPPUNIT_TEST(testMultipleAxisXLSX);
 CPPUNIT_TEST(testAxisTitleRotationXLSX);
 CPPUNIT_TEST(testAxisCrossBetweenXSLX);
+CPPUNIT_TEST(testPieChartDataPointExplosionXLSX);
 CPPUNIT_TEST_SUITE_END();
 
 protected:
@@ -1546,6 +1548,15 @@ void Chart2ExportTest::testAxisCrossBetweenXSLX()
 assertXPath(pXmlDoc, "(//c:crossBetween)[1]", "val", "midCat");
 }
 
+void Chart2ExportTest::testPieChartDataPointExplosionXLSX()
+{
+load("/chart2/qa/extras/data/xlsx/", "pie_chart_datapoint_explosion.xlsx");
+xmlDocPtr pXmlDoc = parseExport("xl/charts/chart", "Calc Office Open XML");
+CPPUNIT_ASSERT(pXmlDoc);
+
+assertXPath(pXmlDoc, 
"/c:chartSpace/c:chart/c:plotArea/c:pieChart/c:ser/c:dPt/c:explosion", "val", 
"28");
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(Chart2ExportTest);
 
 CPPUNIT_PLUGIN_IMPLEMENT();
diff --git a/chart2/qa/extras/data/xlsx/pie_chart_datapoint_explosion.xlsx 
b/chart2/qa/extras/data/xlsx/pie_chart_datapoint_explosion.xlsx
new file mode 100644
index ..273ebeb82ede
Binary files /dev/null and 
b/chart2/qa/extras/data/xlsx/pie_chart_datapoint_explosion.xlsx differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-12-28 Thread Markus Mohrhard
 include/oox/export/chartexport.hxx |2 +-
 oox/source/export/chartexport.cxx  |   24 ++--
 2 files changed, 23 insertions(+), 3 deletions(-)

New commits:
commit 629cfd2c1d3a43048fdb87853fa886b19105a786
Author: Markus Mohrhard 
Date:   Thu Dec 28 01:04:27 2017 +0100

export explosion property for pie chart property, tdf#114182

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

diff --git a/include/oox/export/chartexport.hxx 
b/include/oox/export/chartexport.hxx
index 6b1e9f8fadde..4ac5ee10bb2b 100644
--- a/include/oox/export/chartexport.hxx
+++ b/include/oox/export/chartexport.hxx
@@ -176,7 +176,7 @@ private:
 void exportTextProps(const css::uno::Reference< css::beans::XPropertySet 
>& xPropSet);
 void exportDataPoints(
 const css::uno::Reference< css::beans::XPropertySet >& 
xSeriesProperties,
-sal_Int32 nSeriesLength );
+sal_Int32 nSeriesLength, sal_Int32 eChartType );
 void exportDataLabels( const 
css::uno::Reference& xSeries, sal_Int32 
nSeriesLength, sal_Int32 eChartType );
 void exportGrouping( bool isBar = false );
 void exportTrendlines( const css::uno::Reference< css::chart2::XDataSeries 
>& xSeries );
diff --git a/oox/source/export/chartexport.cxx 
b/oox/source/export/chartexport.cxx
index f0d639a497a3..83b96fb0f518 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -1960,7 +1960,7 @@ void ChartExport::exportSeries( const 
Reference& xChartType,
 }
 
 // export data points
-exportDataPoints( uno::Reference< beans::XPropertySet >( 
rSeriesSeq[nSeriesIdx], uno::UNO_QUERY ), nSeriesLength );
+exportDataPoints( uno::Reference< beans::XPropertySet >( 
rSeriesSeq[nSeriesIdx], uno::UNO_QUERY ), nSeriesLength, eChartType );
 
 // export data labels
 exportDataLabels(rSeriesSeq[nSeriesIdx], nSeriesLength, 
eChartType);
@@ -2992,7 +2992,7 @@ void ChartExport::exportDataLabels(
 
 void ChartExport::exportDataPoints(
 const uno::Reference< beans::XPropertySet > & xSeriesProperties,
-sal_Int32 nSeriesLength )
+sal_Int32 nSeriesLength, sal_Int32 eChartType )
 {
 uno::Reference< chart2::XDataSeries > xSeries( xSeriesProperties, 
uno::UNO_QUERY );
 bool bVaryColorsByPoint = false;
@@ -3045,6 +3045,26 @@ void ChartExport::exportDataPoints(
 pFS->singleElement( FSNS( XML_c, XML_idx ),
 XML_val, I32S(nElement),
 FSEND );
+
+switch (eChartType)
+{
+case chart::TYPEID_PIE:
+case chart::TYPEID_DOUGHNUT:
+{
+if( xPropSet.is() && GetProperty( xPropSet, 
"SegmentOffset") )
+{
+sal_Int32 nOffset = 0;
+mAny >>= nOffset;
+if (nOffset)
+pFS->singleElement( FSNS( XML_c, XML_explosion 
),
+XML_val, I32S( nOffset ),
+FSEND );
+}
+break;
+}
+default:
+break;
+}
 exportShapeProps( xPropSet );
 
 pFS->endElement( FSNS( XML_c, XML_dPt ) );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-12-28 Thread andreas kainz
 icon-themes/elementary/cmd/sc_editglossary.png |binary
 icon-themes/elementary/links.txt   |   14 +-
 icon-themes/elementary_svg/cmd/sc_editglossary.svg |1 +
 icon-themes/elementary_svg/links.txt   |   14 +-
 4 files changed, 27 insertions(+), 2 deletions(-)

New commits:
commit 367b10fb833aa854c2c52c91757c40bdd10be97d
Author: andreas kainz 
Date:   Fri Dec 29 00:10:11 2017 +0100

Elementary-Icons: update links for writer menue

Change-Id: Ifa487bd055b4a3cef9bf8c9b9f0f7d40f3fc0417
Reviewed-on: https://gerrit.libreoffice.org/47160
Tested-by: Jenkins 
Reviewed-by: andreas_kainz 

diff --git a/icon-themes/elementary/cmd/sc_editglossary.png 
b/icon-themes/elementary/cmd/sc_editglossary.png
new file mode 100644
index ..a3dc0c1a1354
Binary files /dev/null and b/icon-themes/elementary/cmd/sc_editglossary.png 
differ
diff --git a/icon-themes/elementary/links.txt b/icon-themes/elementary/links.txt
index eb18ba561b9f..c2c376ed2404 100644
--- a/icon-themes/elementary/links.txt
+++ b/icon-themes/elementary/links.txt
@@ -73,6 +73,7 @@ cmd/lc_insertrowbreak.png cmd/lc_insertpagebreak.png
 cmd/lc_insertrowsbefore.png cmd/lc_insertrows.png
 cmd/lc_insertspreadsheet.png cmd/lc_togglesheetgrid.png
 cmd/lc_inserttimefield.png cmd/lc_timefield.png
+cmd/lc_tracechangemode.png cmd/lc_trackchanges.png
 
 cmd/sc_insobjctrl.png cmd/sc_newdoc.png
 cmd/sc_insert.png cmd/sc_togglesheetgrid.png
@@ -112,7 +113,7 @@ cmd/sc_inserttimefield.png cmd/sc_timefield.png
 cmd/sc_showtrackedchanges.png cmd/sc_addwatch.png
 cmd/lc_showtrackedchanges.png cmd/lc_addwatch.png
 cmd/sc_tracechangemode.png cmd/sc_trackchanges.png
-cmd/lc_tracechangemode.png cmd/lc_trackchanges.png
+cmd/sc_numberformatmenu.png cmd/sc_numberformatstandard.png
 
 # Zoom
 cmd/lc_previewzoom.png cmd/lc_zoomprevious.png
@@ -276,6 +277,8 @@ cmd/sc_basicshapes.circle-pie.png cmd/sc_pie.png
 cmd/sc_flowchartshapes.flowchart-merge.png 
cmd/sc_fontworkshapetype.fontwork-triangle-down.png
 cmd/sc_fontworkshapetype.fontwork-fade-down.png 
cmd/sc_basicshapes.trapezoid.png
 cmd/sc_flowchartshapes.flowchart-magnetic-disk.png cmd/sc_basicshapes.can.png
+cmd/sc_shapesmenu.png cmd/sc_basicshapes.round-quadrat.png
+cmd/sc_shapeslinemenu.png cmd/sc_line.png
 
 # Open
 cmd/lc_openfromwriter.png cmd/lc_open.png
@@ -378,6 +381,13 @@ cmd/sc_romanliststyle.png cmd/sc_defaultnumbering.png
 cmd/lc_defaultparastyle.png cmd/lc_controlcodes.png
 cmd/sc_defaultparastyle.png cmd/sc_controlcodes.png
 
+# Format
+cmd/sc_formattextmenu.png cmd/sc_bold.png
+cmd/sc_formatspacingmenu.png cmd/sc_paraspaceincrease.png
+cmd/sc_textalign.png cmd/sc_alignleft.png
+cmd/sc_formatbulletsmenu.png cmd/sc_defaultbullet.png
+cmd/sc_formatframemenu.png cmd/sc_chainframes.png
+
 # Group
 cmd/lc_leaveallgroups.png cmd/lc_leavegroup.png
 cmd/sc_leaveallgroups.png cmd/sc_leavegroup.png
@@ -701,6 +711,8 @@ cmd/sc_presentation.png cmd/sc_dia.png
 # Style
 cmd/lc_editstyled.png cmd/lc_editstyle.png
 cmd/sc_editstyled.png cmd/sc_editstyle.png
+cmd/lc_viewsidebarstyles.png cmd/lc_designerdialog.png
+cmd/sc_viewsidebarstyles.png cmd/sc_designerdialog.png
 
 # Outline
 cmd/lc_outlineright.png cmd/lc_decrementlevel.png
diff --git a/icon-themes/elementary_svg/cmd/sc_editglossary.svg 
b/icon-themes/elementary_svg/cmd/sc_editglossary.svg
new file mode 100644
index ..cf51ae935cef
--- /dev/null
+++ b/icon-themes/elementary_svg/cmd/sc_editglossary.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
diff --git a/icon-themes/elementary_svg/links.txt 
b/icon-themes/elementary_svg/links.txt
index adcfe8fd4f11..67aef15fc03d 100644
--- a/icon-themes/elementary_svg/links.txt
+++ b/icon-themes/elementary_svg/links.txt
@@ -73,6 +73,7 @@ cmd/lc_insertrowbreak.svg cmd/lc_insertpagebreak.svg
 cmd/lc_insertrowsbefore.svg cmd/lc_insertrows.svg
 cmd/lc_insertspreadsheet.svg cmd/lc_togglesheetgrid.svg
 cmd/lc_inserttimefield.svg cmd/lc_timefield.svg
+cmd/lc_tracechangemode.svg cmd/lc_trackchanges.svg
 
 cmd/sc_insobjctrl.svg cmd/sc_newdoc.svg
 cmd/sc_insert.svg cmd/sc_togglesheetgrid.svg
@@ -112,7 +113,7 @@ cmd/sc_inserttimefield.svg cmd/sc_timefield.svg
 cmd/sc_showtrackedchanges.svg cmd/sc_addwatch.svg
 cmd/lc_showtrackedchanges.svg cmd/lc_addwatch.svg
 cmd/sc_tracechangemode.svg cmd/sc_trackchanges.svg
-cmd/lc_tracechangemode.svg cmd/lc_trackchanges.svg
+cmd/sc_numberformatmenu.svg cmd/sc_numberformatstandard.svg
 
 # Zoom
 cmd/lc_previewzoom.svg cmd/lc_zoomprevious.svg
@@ -276,6 +277,8 @@ cmd/sc_basicshapes.circle-pie.svg cmd/sc_pie.svg
 cmd/sc_flowchartshapes.flowchart-merge.svg 
cmd/sc_fontworkshapetype.fontwork-triangle-down.svg
 cmd/sc_fontworkshapetype.fontwork-fade-down.svg 
cmd/sc_basicshapes.trapezoid.svg
 cmd/sc_flowchartshapes.flowchart-magnetic-disk.svg cmd/sc_basicshapes.can.svg
+cmd/sc_shapesmenu.svg 

[Libreoffice-bugs] [Bug 108567] [META] Splash screen and initialization related bugs and enhancements

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108567
Bug 108567 depends on bug 112990, which changed state.

Bug 112990 Summary: LO60master on macOS: crashing at start with OpenGL enabled
https://bugs.documentfoundation.org/show_bug.cgi?id=112990

   What|Removed |Added

 Status|RESOLVED|REOPENED
 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 112990] LO60master on macOS: crashing at start with OpenGL enabled

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112990

Martin Srebotnjak  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|DUPLICATE   |---

--- Comment #32 from Martin Srebotnjak  ---
This is not the same bug.
On OSX it crashes all the time, with any document being opened or created.
It is a wider bug. And this one affects only macOS!
So I will now reopen it and *ONLY IF* the patch for that bug helps this bug
then we can consider closing this ...

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

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114736

--- Comment #9 from Martin Srebotnjak  ---
Do not close ticket  Bug 112990 because that is a bug that does not happen only
with presentations. As you can read in that bug report - LO crashes all the
time, just upon opening or creating *any* kind of document.
So do reopen that bug report and unmark it as a duplicate of this one.
Maybe this should be marked as a duplicate of that one - it is a subset of the
issues at hand.
Please check things before you take action.

-- 
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 114672] [UI] Elementary icons for border of table in Writer are not distinguishable

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114672

andreas_k  changed:

   What|Removed |Added

 CC||kain...@gmail.com

--- Comment #6 from andreas_k  ---
the problem was something like a sizing issue. thanks for submit the bug
report.

problem should be solved in Elementary with this patch
https://gerrit.libreoffice.org/#/c/47162/

-- 
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 114742] LibreOffice Calc doesn' t have New Style in Conditional Format window

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114742

jimj_...@yahoo.ca changed:

   What|Removed |Added

 CC||jimj_...@yahoo.ca

--- Comment #1 from jimj_...@yahoo.ca ---
Created attachment 138724
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138724=edit
LO Calc 6.0.0alpha1 with missing New Style button

-- 
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 114742] New: LibreOffice Calc doesn' t have New Style in Conditional Format window

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114742

Bug ID: 114742
   Summary: LibreOffice Calc doesn't have New Style in Conditional
Format window
   Product: LibreOffice
   Version: 6.0.0.0.alpha1+
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jimj_...@yahoo.ca

Description:
Years ago I learned you can make alternating coloured lines (striped) in Calc
by programming an ISEVEN(ROW()) in the Format > Conditial Formatting >
Condition Cell Value Is ...Then type in the ISEVEN(ROW()) ... then press the
New Style button to colour all the odd (or even) lines.

The New Style button is missing in LO 6.0alpha1 release.

Actual Results:  
Cannot change the Default colours for Odd or Even lines in Calc.

Expected Results:
Alternating striped colours (defined by the user).
This feature has been in Calc for several years.


Reproducible: Always


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:54.0) Gecko/20100101
Firefox/54.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 114741] EDITING cannot enter times between 4:11: - 4:13: in spreadsheet cell / column

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114741

V Stuart Foote  changed:

   What|Removed |Added

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

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


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

-- 
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 103206] FILEOPEN: Vertical numbers (added with a table/ frame in the header) missing from left margin in DOCX (Pleading document)

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103206

--- Comment #4 from Cor Nouws  ---
still wrong in 
Version: 6.1.0.0.alpha0+
Build ID: a9b202a6b7000e7af34f2a639ca207122a3968bf
CPU threads: 4; OS: Linux 4.13; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2017-12-26_23:09:36
Locale: nl-NL (nl_NL.UTF-8); Calc: group threaded

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


[Libreoffice-bugs] [Bug 114664] The paragraph style is lost after delete and undo

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114664

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
 Ever confirmed|0   |1

--- Comment #3 from raal  ---
I can confirm with Version: 6.1.0.0.alpha0+
Build ID: 88f6ffeb9e0c0b942c2b0bc9d60af7bb7a6caaf8
CPU threads: 4; OS: Linux 4.4; UI render: default; VCL: gtk2;

-- 
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 100526] [FILEOPEN] New line/ paragraph missing after field in table in frame in header in specific DOCX

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100526

--- Comment #5 from Cor Nouws  ---
still a problem in 
Version: 6.1.0.0.alpha0+
Build ID: a9b202a6b7000e7af34f2a639ca207122a3968bf
CPU threads: 4; OS: Linux 4.13; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2017-12-26_23:09:36
Locale: nl-NL (nl_NL.UTF-8); 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-bugs] [Bug 83844] FILEOPEN: DOC - Hanging paragraph indent not imported correctly

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83844

Cor Nouws  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #6 from Cor Nouws  ---
partiallay improved in 
Version: 6.1.0.0.alpha0+
Build ID: a9b202a6b7000e7af34f2a639ca207122a3968bf
CPU threads: 4; OS: Linux 4.13; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2017-12-26_23:09:36
Locale: nl-NL (nl_NL.UTF-8); Calc: group threaded


@overs...@hotmail.com: can you please look at the issue and specify the current
problem?

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


[Libreoffice-bugs] [Bug 100514] [FILESAVE] After saving specific DOCX as ODT, the headers / footers are broken

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100514

Cor Nouws  changed:

   What|Removed |Added

Summary|[FILESAVE] After saving |[FILESAVE] After saving
   |specific DOCX, either as|specific DOCX as ODT, the
   |DOCX or as ODT, the headers |headers / footers are
   |/ footers are broken|broken

--- Comment #7 from Cor Nouws  ---
(In reply to Cor Nouws from comment #0)

> Save as docx, close and reopen
>  > > header page 1 is the same
>header other pages now have same blue image as page 1
>text box from header other pages is lost

Works OK in master :)

> Save as odt, close and reopen
>  > header page 1 is the same
>header other pages is empty
>text box from header other pages is now on page 1

Still a problem in 
Version: 6.1.0.0.alpha0+
Build ID: a9b202a6b7000e7af34f2a639ca207122a3968bf
CPU threads: 4; OS: Linux 4.13; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2017-12-26_23:09:36
Locale: nl-NL (nl_NL.UTF-8); 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-bugs] [Bug 114555] Calc does not give warning when opening file containing a sheet with more than 1024 columns

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114555

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #2 from raal  ---
Created attachment 138723
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138723=edit
warning for csv file

Hi, for csv file it works. Please,could you attach testing xlsx file with more
then 1024 columns?

-- 
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 100139] Can' t work on specific docx file with tracked changes visible (specials fonts, two huge tables..)

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100139

Cor Nouws  changed:

   What|Removed |Added

Summary|Can't work on specific docx |Can't work on specific docx
   |file with tracked changes   |file with tracked changes
   |visible |visible (specials fonts,
   ||two huge tables..)

--- Comment #5 from Cor Nouws  ---
still the same problem in 
Version: 6.1.0.0.alpha0+
Build ID: a9b202a6b7000e7af34f2a639ca207122a3968bf
CPU threads: 4; OS: Linux 4.13; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2017-12-26_23:09:36
Locale: nl-NL (nl_NL.UTF-8); 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-bugs] [Bug 114739] UI Crashes when selecting Firefox theme

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114739

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #3 from raal  ---
No crash with Version: 6.1.0.0.alpha0+
Build ID: 88f6ffeb9e0c0b942c2b0bc9d60af7bb7a6caaf8
CPU threads: 4; OS: Linux 4.4; UI render: default; VCL: gtk2;

-- 
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 114741] New: EDITING cannot enter times between 4:11: - 4:13: in spreadsheet cell / column

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114741

Bug ID: 114741
   Summary: EDITING cannot enter times between 4:11: - 4:13: in
spreadsheet cell / column
   Product: LibreOffice
   Version: 5.1.6.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: m...@debewerkingamsterdam.nl

Description:
in a column formatted as time hh:mm:ss, I cannot enter a time between 4:10: and
4:12:  (inclusive)
When entering the second semi colon, the displayed value turns to 4 in bold
Other times are OK

Steps to Reproduce:
1. open a spreadsheet
2. format a column as time hh:mm:ss
3. enter 4:11:

Actual Results:  
the displayed value after typing 4:11:35 becomes 435. 4 in a larger font and
bold

The same is true when entering 4:10 or 4:12

Expected Results:
value should be displayed as 4:11:35


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
Versie: 5.1.6.2 
Build ID: 1:5.1.6~rc2-0ubuntu1~xenial2
CPU Threads: 4; Versie besturingssysteem:Linux 4.4; UI Render: standaard; 
Locale: en-GB (nl_NL.UTF-8); Calc: group


User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; 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: cui/source

2017-12-28 Thread Julien Nabet
 cui/source/inc/treeopt.hxx |2 +-
 cui/source/options/treeopt.cxx |   31 +--
 2 files changed, 14 insertions(+), 19 deletions(-)

New commits:
commit 7794b2d96f5259b062ca6bd9db265a086631593f
Author: Julien Nabet 
Date:   Thu Dec 28 18:10:32 2017 +0100

Use unique_ptr for VectorOfNodes (cui/treeopt)

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

diff --git a/cui/source/inc/treeopt.hxx b/cui/source/inc/treeopt.hxx
index 3eadd58ef5d4..126d96e49442 100644
--- a/cui/source/inc/treeopt.hxx
+++ b/cui/source/inc/treeopt.hxx
@@ -95,7 +95,7 @@ struct OptionsNode
 m_bAllModules( bAllModules ) {}
 };
 
-typedef std::vector< OptionsNode* > VectorOfNodes;
+typedef std::vector< std::unique_ptr > VectorOfNodes;
 
 struct LastPageSaver
 {
diff --git a/cui/source/options/treeopt.cxx b/cui/source/options/treeopt.cxx
index 07be7d1a788c..065ebf51a764 100644
--- a/cui/source/options/treeopt.cxx
+++ b/cui/source/options/treeopt.cxx
@@ -1863,12 +1863,10 @@ VectorOfNodes OfaTreeOptionsDialog::LoadNodes(
 OUString sTemp = getGroupName( sLabel, !rExtensionId.isEmpty() );
 if ( !sTemp.isEmpty() )
 sLabel = sTemp;
-OptionsNode* pNode =
-new OptionsNode( sNodeId, sLabel, sPageURL, bAllModules );
+std::unique_ptr pNode(new OptionsNode(sNodeId, 
sLabel, sPageURL, bAllModules));
 
-if ( rExtensionId.isEmpty() && !isNodeActive( pNode, pModule ) )
+if ( rExtensionId.isEmpty() && !isNodeActive( pNode.get(), pModule 
) )
 {
-delete pNode;
 continue;
 }
 
@@ -1938,10 +1936,8 @@ VectorOfNodes OfaTreeOptionsDialog::LoadNodes(
 // do not insert nodes without leaves
 if ( pNode->m_aLeaves.size() > 0 || pNode->m_aGroupedLeaves.size() 
> 0 )
 {
-pModule ? aNodeList.push_back( pNode ) : 
aOutNodeList.push_back( pNode );
+pModule ? aNodeList.push_back( std::move(pNode) ) : 
aOutNodeList.push_back( std::move(pNode) );
 }
-else
-delete pNode;
 }
 }
 
@@ -1952,18 +1948,17 @@ VectorOfNodes OfaTreeOptionsDialog::LoadNodes(
 OUString sNodeId = i->m_sId;
 for ( auto j = aNodeList.begin(); j != aNodeList.end(); ++j )
 {
-OptionsNode* pNode = *j;
-if ( pNode->m_sId == sNodeId )
+if ( (*j)->m_sId == sNodeId )
 {
-aOutNodeList.push_back( pNode );
+aOutNodeList.push_back( std::move(*j) );
 aNodeList.erase( j );
 break;
 }
 }
 }
 
-for ( auto const & i: aNodeList )
-aOutNodeList.push_back( i );
+for ( auto & i: aNodeList )
+aOutNodeList.push_back( std::move(i) );
 }
 return aOutNodeList;
 }
@@ -2014,21 +2009,21 @@ static void lcl_insertLeaf(
 
 void  OfaTreeOptionsDialog::InsertNodes( const VectorOfNodes& rNodeList )
 {
-for (OptionsNode* pNode : rNodeList)
+for (auto const& node : rNodeList)
 {
-if ( pNode->m_aLeaves.size() > 0 || pNode->m_aGroupedLeaves.size() > 0 
)
+if ( node->m_aLeaves.size() > 0 || node->m_aGroupedLeaves.size() > 0 )
 {
-for ( auto const & j: pNode->m_aGroupedLeaves )
+for ( auto const & j: node->m_aGroupedLeaves )
 {
 for ( size_t k = 0; k < j.size(); ++k )
 {
-lcl_insertLeaf( this, pNode, j[k].get(), *pTreeLB );
+lcl_insertLeaf( this, node.get(), j[k].get(), *pTreeLB );
 }
 }
 
-for ( auto const & j: pNode->m_aLeaves )
+for ( auto const & j: node->m_aLeaves )
 {
-lcl_insertLeaf( this, pNode, j.get(), *pTreeLB );
+lcl_insertLeaf( this, node.get(), j.get(), *pTreeLB );
 }
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114717] SPELL: spellchecker does nonsense suggestions for de-DE

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114717

--- Comment #3 from Marco A.G.Pinto  ---
My suggestion as a dictionary maintainer is that you should try to select one
by one the nonsense words from the suggestions.

If all of them don't show as typos, is because they are in the speller.

The hyphenated one means that the speller has A and B. Ex: A-B

Hunspell accepts A-B if A and B exist.

-- 
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 96009] FILESAVE: DOCX - Extra top border appears on last row of table

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96009

Eyal Rozenberg  changed:

   What|Removed |Added

 CC||eyal...@technion.ac.il

--- Comment #9 from Eyal Rozenberg  ---
I wonder if there isn't some duplication between this and the other bugs
reported on extra borders when saving to DOCX.

-- 
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 93234] TABLE: FILESAVE: Adding unneeded extra table borders when exporting to .docx

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93234

Eyal Rozenberg  changed:

   What|Removed |Added

 CC||eyal...@technion.ac.il

--- Comment #10 from Eyal Rozenberg  ---
Reproduced with
Version: 6.0.0.0.beta2

-- 
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 92190] PRINTs landscape despite configured as portrait (Mac OS)

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92190

--- Comment #111 from DS  ---
Please forgive me. I saw that it was reported as fixed, but for some reason
thought that my version was higher than 5.4.4 but still broken. Extreme
apologies! Thank you very much for resolving this. It is greatly appreciated.

-- 
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 114656] RTL Expanded spacing affected by diacritical marks

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114656

raal  changed:

   What|Removed |Added

 Blocks||112812


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 112812] [META] Hebrew language-specific RTL issues

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112812

raal  changed:

   What|Removed |Added

 Depends on||114656


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114656
[Bug 114656] RTL Expanded spacing affected by diacritical marks
-- 
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 114656] RTL Expanded spacing affected by diacritical marks

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114656

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
Version|5.1.6.2 release |4.1.0.4 release
 Ever confirmed|0   |1

--- Comment #6 from raal  ---
I can confirm with Version 4.1.0.0.alpha0+ (Build ID:
efca6f15609322f62a35619619a6d5fe5c9bd5a) and 6.1; Linux

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


[Libreoffice-bugs] [Bug 114655] [MacOS] Can't open Preferences : LibreOffice 6.0 RC1 crash every time.

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114655

--- Comment #9 from Aron Budea  ---
Could someone try getting debug information as described here?
https://wiki.documentfoundation.org/QA/BugReport/Debug_Information#Mac_OSX

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

2017-12-28 Thread Caolán McNamara
 sw/source/uibase/config/modcfg.cxx |   12 ++--
 1 file changed, 10 insertions(+), 2 deletions(-)

New commits:
commit 7facb7d6362d7fcb3aaf60ab9ab4768213e1d3d6
Author: Caolán McNamara 
Date:   Thu Dec 28 21:50:59 2017 +

ofz#4746 Invalid-bool-value

Change-Id: I9be8bc2d37bbefa20861ea76522ed9ef985195fa

diff --git a/sw/source/uibase/config/modcfg.cxx 
b/sw/source/uibase/config/modcfg.cxx
index c40ff766a7e0..2c320993e6ca 100644
--- a/sw/source/uibase/config/modcfg.cxx
+++ b/sw/source/uibase/config/modcfg.cxx
@@ -1120,9 +1120,17 @@ const Sequence& 
SwTableConfig::GetPropertyNames()
 return aNames;
 }
 
-SwTableConfig::SwTableConfig(bool bWeb) :
-ConfigItem(bWeb ? OUString("Office.WriterWeb/Table") : 
OUString("Office.Writer/Table"),
+SwTableConfig::SwTableConfig(bool bWeb)
+: ConfigItem(bWeb ? OUString("Office.WriterWeb/Table") : 
OUString("Office.Writer/Table"),
 ConfigItemMode::DelayedUpdate|ConfigItemMode::ReleaseTree)
+, nTableHMove(0)
+, nTableVMove(0)
+, nTableHInsert(0)
+, nTableVInsert(0)
+, eTableChgMode(TableChgMode::FixedWidthChangeAbs)
+, bInsTableFormatNum(false)
+, bInsTableChangeNumFormat(false)
+, bInsTableAlignNum(false)
 {
 Load();
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-12-28 Thread Caolán McNamara
 starmath/source/mathmlattr.hxx |4 
 1 file changed, 4 insertions(+)

New commits:
commit 4da1a70fe0511172f3cf4a22594a9f94c9c0a73f
Author: Caolán McNamara 
Date:   Thu Dec 28 21:29:53 2017 +

ofz#4765: Conditional jump or move depends on uninitialised value

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

diff --git a/starmath/source/mathmlattr.hxx b/starmath/source/mathmlattr.hxx
index 42948f43ccdf..a794e2f482a6 100644
--- a/starmath/source/mathmlattr.hxx
+++ b/starmath/source/mathmlattr.hxx
@@ -43,6 +43,10 @@ struct MathMLAttributeLengthValue
 {
 Fraction aNumber;
 MathMLLengthUnit eUnit;
+MathMLAttributeLengthValue()
+: eUnit(MathMLLengthUnit::None)
+{
+}
 };
 
 sal_Int32 ParseMathMLAttributeLengthValue(const OUString , 
MathMLAttributeLengthValue& rV);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-12-28 Thread Caolán McNamara
 starmath/source/mathmlimport.cxx |9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

New commits:
commit 8f0a740bd6ab84c7d95944b448b4ade4f2ce3e89
Author: Caolán McNamara 
Date:   Thu Dec 28 21:23:54 2017 +

ofz#4733: align size types

Change-Id: I43d136b131ba43401871a6afa455386f050d6c1e

diff --git a/starmath/source/mathmlimport.cxx b/starmath/source/mathmlimport.cxx
index 270388d0258b..0caa425e8cba 100644
--- a/starmath/source/mathmlimport.cxx
+++ b/starmath/source/mathmlimport.cxx
@@ -2646,10 +2646,10 @@ void SmXMLTableContext_Impl::EndElement()
 SmNodeStack aReverseStack;
 aExpressionArray.resize(rNodeStack.size()-nElementCount);
 
-auto nRows = rNodeStack.size()-nElementCount;
-sal_uInt16 nCols = 0;
+size_t nRows = rNodeStack.size()-nElementCount;
+size_t nCols = 0;
 
-for (auto i=nRows;i > 0;i--)
+for (size_t i = nRows; i > 0; --i)
 {
 SmNode* pArray = rNodeStack.front().release();
 rNodeStack.pop_front();
@@ -2672,8 +2672,7 @@ void SmXMLTableContext_Impl::EndElement()
 pArray = pExprNode;
 }
 
-if (pArray->GetNumSubNodes() > nCols)
-nCols = pArray->GetNumSubNodes();
+nCols = std::max(nCols, pArray->GetNumSubNodes());
 aReverseStack.push_front(std::unique_ptr(pArray));
 }
 aExpressionArray.resize(nCols*nRows);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 108728] [META] Dictionaries bugs and enhancements

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108728

Aron Budea  changed:

   What|Removed |Added

 Depends on||114717


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114717
[Bug 114717] SPELL: spellchecker does nonsense suggestions for de-DE
-- 
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 114717] SPELL: spellchecker does nonsense suggestions for de-DE

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114717

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
 Blocks||108728

--- Comment #2 from Aron Budea  ---
The straightforward explanation is that the words can be generated from the
dictionary (words + grammar rules). I don't know if that's the case, so I'd
suggest to first contact the extension/dictionary owner about these errors.

The shipped dictionaries are in \share\extensions.
The installed extensions seem to be in \share\uno_packages\cache\uno_packages, if they are for all useres, and in
\uno_packages\cache\uno_packages if they are for a single user.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108728
[Bug 108728] [META] Dictionaries 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-bugs] [Bug 89676] 4.4.x: Bundled templates are not localizable

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89676

Laurent BP  changed:

   What|Removed |Added

 Whiteboard|target:6.0.0.2 target:6.1.0 |target:6.0.0.2

-- 
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 114740] Arabic Letter Heh (ه) is render incorrectly when isolated

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114740

antan...@yahoo.es 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 114740] Arabic Letter Heh (ه) is render incorrectly when isolated

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114740

--- Comment #4 from antan...@yahoo.es ---
Created attachment 138722
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138722=edit
Arabic Letter Heh Isolated Form - Document

-- 
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 89676] 4.4.x: Bundled templates are not localizable

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89676

--- Comment #27 from Commit Notification 
 ---
Laurent BP committed a patch related to this issue.
It has been pushed to "master":

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

follow-up tdf#89676 Add some explanation in comment

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 89676] 4.4.x: Bundled templates are not localizable

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89676

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.0.0.2  |target:6.0.0.2 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: sfx2/inc

2017-12-28 Thread Laurent BP
 sfx2/inc/strings.hxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 4e2d22bc92d85aa7b3b490c295f3f9d969d6fe33
Author: Laurent BP 
Date:   Wed Dec 27 23:24:48 2017 +0100

follow-up tdf#89676 Add some explanation in comment

Change-Id: I740b91e801dc658551ff7ec848f7e4941b9273af
Reviewed-on: https://gerrit.libreoffice.org/47113
Reviewed-by: Gabor Kelemen 
Tested-by: Gabor Kelemen 
Tested-by: Jenkins 

diff --git a/sfx2/inc/strings.hxx b/sfx2/inc/strings.hxx
index 1e319b266e50..39a441e742dc 100644
--- a/sfx2/inc/strings.hxx
+++ b/sfx2/inc/strings.hxx
@@ -13,6 +13,7 @@
 #define STR_HTML_GENERATOR "%PRODUCTNAME %PRODUCTVERSION%PRODUCTEXTENSION (%1)"
 
 // Do not translate STR_TEMPLATE_NAME*_DEF names!!
+// STR_TEMPLATE_NAME*_DEF strings must EXACTLY fit dc:title tag in meta.xml of 
each template file
 #define STR_TEMPLATE_NAME1_DEF  "Alizarin"
 #define STR_TEMPLATE_NAME2_DEF  "Beehive"
 #define STR_TEMPLATE_NAME3_DEF  "Blue Curve"
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114567] HYPERLINK DIALOG: "Target in document" dialog should display the level of headings

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114567

tagezi  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||lera.goncha...@gmail.com
   Assignee|libreoffice-b...@lists.free |lera.goncha...@gmail.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 114548] Invalid replace by Regular Expression

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114548

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #2 from Aron Budea  ---
ReinRaus, can you give a specific example? Replacing paragraph end characters
works for me as well.

-- 
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 114740] Arabic Letter Heh (ه) is render incorrectly when isolated

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114740

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #3 from Xisco Faulí  ---
Thank you for reporting the bug. Please attach a sample document, as this makes
it easier for us to verify the bug. 
(Please note that the attachment will be public, remove any sensitive
information before attaching it. 
See
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
for help on how to do so.)

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested document is provided.

-- 
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 114740] Arabic Letter Heh (ه) is render incorrectly when isolated

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114740

--- Comment #2 from antan...@yahoo.es ---
The letter displays correctly if Persian, instead of Arabic, is selected as the
font language.

-- 
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 114719] New standard palette: names of purple and violet are switched

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114719

--- Comment #5 from Mihkel Tõnnov  ---
(In reply to V Stuart Foote from comment #4)
> What is labeled as Violet is Violet, what is labeled as Purple is Purple.

What is labelled as Violet should be labelled as Purple, and what is labelled
Purple should be labelled Violet.

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


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

2017-12-28 Thread Caolán McNamara
 vcl/inc/printerinfomanager.hxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 956e467a296d6745157db1bb456bc0046b8736bc
Author: Caolán McNamara 
Date:   Thu Dec 28 20:09:42 2017 +

coverity#1311653 Uninitialized scalar field

Change-Id: I3006cf4397df6b04fa66bd181470756f39dac1e5

diff --git a/vcl/inc/printerinfomanager.hxx b/vcl/inc/printerinfomanager.hxx
index 0cb01f155075..212d75f47739 100644
--- a/vcl/inc/printerinfomanager.hxx
+++ b/vcl/inc/printerinfomanager.hxx
@@ -57,6 +57,7 @@ struct PrinterInfo : JobData
 
 PrinterInfo()
 : JobData()
+, meSetupMode(PrinterSetupMode::SingleJob)
 {}
 };
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-12-28 Thread Caolán McNamara
 writerfilter/source/ooxml/OOXMLFastContextHandler.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 996fbf1cefff1d991e4c89919797e5f0daeaafa9
Author: Caolán McNamara 
Date:   Wed Dec 27 21:02:53 2017 +

ofz#4814 asserts and Null-dereference on broken shape

the attempt is made, but the shape isn't there, so m_bShapeSent
wasn't set, so it will get called again and the markstacks are popped
to many times. Lets set it when the effort is made.

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

diff --git a/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx 
b/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx
index 138954023f89..9379fa95f3b4 100644
--- a/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx
+++ b/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx
@@ -1662,12 +1662,12 @@ void OOXMLFastContextHandlerShape::sendShape( Token_t 
Element )
 awt::Point aPosition = mpStream->getPositionOffset();
 mrShapeContext->setPosition(aPosition);
 uno::Reference xShape(mrShapeContext->getShape());
+m_bShapeSent = true;
 if (xShape.is())
 {
 OOXMLValue::Pointer_t
 pValue(new OOXMLShapeValue(xShape));
 newProperty(NS_ooxml::LN_shape, pValue);
-m_bShapeSent = true;
 
 bool bIsPicture = Element == ( NMSP_dmlPicture | XML_pic );
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114719] New standard palette: names of purple and violet are switched

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114719

--- Comment #4 from V Stuart Foote  ---
(In reply to Heiko Tietze from comment #3)
> After reading through the references I agree with Mihkel to exchange the
> color names Purple and Violet.

Sorry, as noted the actual colors are fine. What is labeled as Violet is
Violet, what is labeled as Purple is Purple.

So we would be "swapping" their column placement on the 12 col x 10 row matrix.

-- 
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 114739] UI Crashes when selecting Firefox theme

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114739

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #2 from Xisco Faulí  ---
it might be a duplicate of bug 105316 or bug 99837

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

2017-12-28 Thread Julien Nabet
 dbaccess/source/core/api/RowSetCache.cxx |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit c91281c9507e07330e1d7b04ca0674dd459ed2f7
Author: Julien Nabet 
Date:   Thu Dec 28 18:26:13 2017 +0100

Use returned iterator (dbaccess/rowsetcache)

Change-Id: If53bbc8e3cdbbf71bed0d343f1ff358b72c46d21
Reviewed-on: https://gerrit.libreoffice.org/47147
Reviewed-by: Noel Grandin 
Tested-by: Jenkins 
Reviewed-by: Julien Nabet 

diff --git a/dbaccess/source/core/api/RowSetCache.cxx 
b/dbaccess/source/core/api/RowSetCache.cxx
index 923a41cc8356..cd5ad186380b 100644
--- a/dbaccess/source/core/api/RowSetCache.cxx
+++ b/dbaccess/source/core/api/RowSetCache.cxx
@@ -1441,8 +1441,7 @@ void ORowSetCache::deleteIterator(const ORowSetBase* 
_pRowSet)
 {
 if ( aCacheIter->second.pRowSet == _pRowSet )
 {
-m_aCacheIterators.erase(aCacheIter);
-aCacheIter = m_aCacheIterators.begin();
+aCacheIter = m_aCacheIterators.erase(aCacheIter);
 }
 else
 ++aCacheIter;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114739] UI Crashes when selecting Firefox theme

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114739

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today,I don't reproduce this
but I got an hang.
Indeed, after this:
warn:ucb.ucp.webdav:14926:15003:ucb/source/ucp/webdav-neon/NeonSession.cxx:1816:
Neon returned NE_ERROR, http response status code was: 0 'Could not parse
response status line'
I get this one ad libitum:
(pkix_CacheCert_Add: PKIX_PL_HashTable_Add for Certs skipped: entry existed

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

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114251

Jim Avera  changed:

   What|Removed |Added

 Attachment #138719|--backtrace log opening |gdbtrace-nodbg-hang3-master
description|hang3.ods on 12/26 master   |2017-12-26.log (segfault;
   |(no symbols)|no symbols)

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

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114251

Jim Avera  changed:

   What|Removed |Added

 Attachment #138720|0   |1
is obsolete||

--- Comment #30 from Jim Avera  ---
Created attachment 138721
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138721=edit
gdbtrace-dbg-hang3-master2017-12-28.log (assert fails)

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

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114736

Aron Budea  changed:

   What|Removed |Added

 CC||mi...@filmsi.net

--- Comment #8 from Aron Budea  ---
*** Bug 112990 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 112990] LO60master on macOS: crashing at start with OpenGL enabled

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112990

Aron Budea  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||ba...@caesar.elte.hu
 Resolution|--- |DUPLICATE

--- Comment #31 from Aron Budea  ---
There's now a Windows repro as well, which produces the same backtrace as the
one in comment 20, let me close this ticket as duplicate.

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

-- 
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 108567] [META] Splash screen and initialization related bugs and enhancements

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108567
Bug 108567 depends on bug 112990, which changed state.

Bug 112990 Summary: LO60master on macOS: crashing at start with OpenGL enabled
https://bugs.documentfoundation.org/show_bug.cgi?id=112990

   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 105831] UI enhancement: Add a donate button in Help menu / About box / elsewhere

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105831

Cor Nouws  changed:

   What|Removed |Added

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

--- Comment #12 from Cor Nouws  ---
I see a Donate entry in Help in Versie: 6.0.0.1
Build ID: d2bec56d7865f05a1003dc88449f2b0fdd85309a
CPU-threads: 4; Besturingssysteem: Linux 4.13; UI-render: standaard; VCL: gtk2; 
Locale: nl-NL (nl_NL.UTF-8); Calc: group

Version: 6.1.0.0.alpha0+
Build ID: a9b202a6b7000e7af34f2a639ca207122a3968bf
CPU threads: 4; OS: Linux 4.13; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2017-12-26_23:09:36
Locale: nl-NL (nl_NL.UTF-8); Calc: group threaded

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

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114251

--- Comment #29 from Jim Avera  ---
Created attachment 138720
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138720=edit
--backtrace log of assert fails opening hang3.ods on 12/28 WITH debug syms

-- 
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 89606] [META] Table of Contents and Indexes bugs and enhancements

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89606
Bug 89606 depends on bug 44282, which changed state.

Bug 44282 Summary: [FORMATING] [TOC] space missing between text and outline 
numbering
https://bugs.documentfoundation.org/show_bug.cgi?id=44282

   What|Removed |Added

 Status|ASSIGNED|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 103370] [META] Outline/Chapter numbering bugs and enhancements

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103370
Bug 103370 depends on bug 44282, which changed state.

Bug 44282 Summary: [FORMATING] [TOC] space missing between text and outline 
numbering
https://bugs.documentfoundation.org/show_bug.cgi?id=44282

   What|Removed |Added

 Status|ASSIGNED|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 114736] Crash when opening a particular presentation

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114736

--- Comment #7 from Aron Budea  ---
Seems to be the duplicate of bug 112990 (based on comment 5 and bug 112990
comment 20), but this ticket is probably easier to work with.

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

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114251

--- Comment #28 from Jim Avera  ---
Created attachment 138719
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138719=edit
--backtrace log opening hang3.ods on 12/26 master (no symbols)

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

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114251

--- Comment #27 from Jim Avera  ---
There were some bad formulas on some sheets in the prior demos, so I uploade a
new one (hang3.ods).  Please use that one to avoid being distracted.

Running the 12/26 non-dbg master, hang3.ods segfaults while opening. 
  See gdbtrace-nodbg-hang3-master2017-12-26.log

Running 12/28 dbg master build, hang3.ods gets assertion failures
and subsequent SIGABRTs
  See gdbtrace-dbg-hang3-master2017-12-28.log

The exact build info is in the gdb log files.

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

2017-12-28 Thread Julien Nabet
 dbaccess/source/core/api/RowSetCache.cxx |   49 ++-
 1 file changed, 29 insertions(+), 20 deletions(-)

New commits:
commit 9c89caa036feb0977922f3452e324b97d13bb735
Author: Julien Nabet 
Date:   Thu Dec 28 19:01:14 2017 +0100

Optimize a bit RowSetCache (dbacess)

Change-Id: I051cb40b5dd854a4a104eae7124564cab8a35de1
Reviewed-on: https://gerrit.libreoffice.org/47151
Reviewed-by: Lionel Elie Mamane 
Tested-by: Jenkins 

diff --git a/dbaccess/source/core/api/RowSetCache.cxx 
b/dbaccess/source/core/api/RowSetCache.cxx
index d635e12a7331..923a41cc8356 100644
--- a/dbaccess/source/core/api/RowSetCache.cxx
+++ b/dbaccess/source/core/api/RowSetCache.cxx
@@ -913,28 +913,31 @@ void ORowSetCache::moveWindow()
 }
 
 std::rotate(m_pMatrix->begin(), aEnd, aNewEnd);
-// now correct the iterator in our iterator vector
-//  rotateCacheIterator(aEnd-m_pMatrix->begin()); //can't be 
used because they decrement and here we need to increment
-ORowSetCacheMap::iterator aCacheIter = 
m_aCacheIterators.begin();
-const ORowSetCacheMap::const_iterator aCacheEnd  = 
m_aCacheIterators.end();
-for(;aCacheIter != aCacheEnd;++aCacheIter)
+if (!m_bModified)
 {
-if ( !aCacheIter->second.pRowSet->isInsertRow()
-&& aCacheIter->second.aIterator != m_pMatrix->end() && 
!m_bModified )
+// now correct the iterator in our iterator vector
+//  rotateCacheIterator(aEnd-m_pMatrix->begin()); //can't 
be used because they decrement and here we need to increment
+ORowSetCacheMap::iterator aCacheIter = 
m_aCacheIterators.begin();
+const ORowSetCacheMap::const_iterator aCacheEnd  = 
m_aCacheIterators.end();
+for(;aCacheIter != aCacheEnd;++aCacheIter)
 {
-const ptrdiff_t nDist = (aCacheIter->second.aIterator 
- m_pMatrix->begin());
-if ( nDist >= nOverlapSize )
-{
-// That's from outside the overlap area; 
invalidate iterator.
-aCacheIter->second.aIterator = m_pMatrix->end();
-}
-else
+if ( !aCacheIter->second.pRowSet->isInsertRow()
+&& aCacheIter->second.aIterator != 
m_pMatrix->end() )
 {
-// Inside overlap area: move to correct position
-CHECK_MATRIX_POS( (nDist + nStartPosOffset) );
-aCacheIter->second.aIterator += nStartPosOffset;
-OSL_ENSURE(aCacheIter->second.aIterator >= 
m_pMatrix->begin()
+const ptrdiff_t nDist = 
(aCacheIter->second.aIterator - m_pMatrix->begin());
+if ( nDist >= nOverlapSize )
+{
+// That's from outside the overlap area; 
invalidate iterator.
+aCacheIter->second.aIterator = 
m_pMatrix->end();
+}
+else
+{
+// Inside overlap area: move to correct 
position
+CHECK_MATRIX_POS( (nDist + nStartPosOffset) );
+aCacheIter->second.aIterator += 
nStartPosOffset;
+OSL_ENSURE(aCacheIter->second.aIterator >= 
m_pMatrix->begin()
 && aCacheIter->second.aIterator < 
m_pMatrix->end(),"Iterator out of area!");
+}
 }
 }
 }
@@ -1448,6 +1451,9 @@ void ORowSetCache::deleteIterator(const ORowSetBase* 
_pRowSet)
 
 void ORowSetCache::rotateCacheIterator(ORowSetMatrix::difference_type _nDist)
 {
+if (m_bModified)
+return;
+
 if(_nDist)
 {
 // now correct the iterator in our iterator vector
@@ -1456,7 +1462,7 @@ void 
ORowSetCache::rotateCacheIterator(ORowSetMatrix::difference_type _nDist)
 for(;aCacheIter != aCacheEnd;++aCacheIter)
 {
 if ( !aCacheIter->second.pRowSet->isInsertRow()
-&& aCacheIter->second.aIterator != m_pMatrix->end() && 
!m_bModified )
+&& aCacheIter->second.aIterator != m_pMatrix->end())
 {
 ptrdiff_t nDist = (aCacheIter->second.aIterator - 
m_pMatrix->begin());
 if(nDist < _nDist)
@@ -1477,11 +1483,14 @@ void 
ORowSetCache::rotateCacheIterator(ORowSetMatrix::difference_type _nDist)
 
 void ORowSetCache::rotateAllCacheIterators()
 {
+if (m_bModified)
+  

[Libreoffice-bugs] [Bug 114251] Hang loading spreadsheet

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114251

Jim Avera  changed:

   What|Removed |Added

 Attachment #138673|0   |1
is obsolete||

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

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114251

Jim Avera  changed:

   What|Removed |Added

 Attachment #138222|0   |1
is obsolete||

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

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114251

--- Comment #26 from Jim Avera  ---
Created attachment 138718
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138718=edit
hang3.ods - please use this one (removed sheets with old broken formulas)

-- 
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 111349] Error in pasting as unformatted text (steps in comment 5)

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111349

--- Comment #10 from V Stuart Foote  ---
(In reply to Kevin Suo from comment #9)
> Bug 114706 contains more general case to reproduce.

Yes, agree it is not related to the delimiters, "" or any other. Issue is with
the plain text paste/import action.

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

2017-12-28 Thread Julien Nabet
 dbaccess/source/core/api/RowSetBase.cxx|5 ++---
 dbaccess/source/core/api/RowSetCache.cxx   |   13 -
 dbaccess/source/ui/browser/formadapter.cxx |   11 ---
 dbaccess/source/ui/querydesign/querycontroller.cxx |4 ++--
 4 files changed, 12 insertions(+), 21 deletions(-)

New commits:
commit f2dafc6e2ccaee058276d8ddb02bea3c9bc095a2
Author: Julien Nabet 
Date:   Thu Dec 28 18:43:27 2017 +0100

Use for-range loops in dbaccess

Change-Id: I0be3aba4f03dcaba188670548901e4aef59c5ec0
Reviewed-on: https://gerrit.libreoffice.org/47148
Reviewed-by: Noel Grandin 
Tested-by: Jenkins 
Reviewed-by: Julien Nabet 

diff --git a/dbaccess/source/core/api/RowSetBase.cxx 
b/dbaccess/source/core/api/RowSetBase.cxx
index 48226e2d61c8..6cfe0b756002 100644
--- a/dbaccess/source/core/api/RowSetBase.cxx
+++ b/dbaccess/source/core/api/RowSetBase.cxx
@@ -1427,10 +1427,9 @@ void ORowSetNotifier::firePropertyChange()
 OSL_ENSURE(m_pImpl.get(),"Illegal CTor call, use the other one!");
 if( m_pImpl.get() )
 {
-std::vector::const_iterator aIter = 
m_pImpl->aChangedColumns.begin();
-for(;aIter != m_pImpl->aChangedColumns.end();++aIter)
+for (auto const& changedColumn : m_pImpl->aChangedColumns)
 {
-m_pRowSet->firePropertyChange((*aIter)-1 
,m_pImpl->aRow[(*aIter)-1], ORowSetBase::GrantNotifierAccess());
+m_pRowSet->firePropertyChange(changedColumn-1 
,m_pImpl->aRow[changedColumn-1], ORowSetBase::GrantNotifierAccess());
 }
 if ( !m_pImpl->aChangedColumns.empty() )
 m_pRowSet->fireProperty(PROPERTY_ID_ISMODIFIED,true,false, 
ORowSetBase::GrantNotifierAccess());
diff --git a/dbaccess/source/core/api/RowSetCache.cxx 
b/dbaccess/source/core/api/RowSetCache.cxx
index 78bb0140f5a6..d635e12a7331 100644
--- a/dbaccess/source/core/api/RowSetCache.cxx
+++ b/dbaccess/source/core/api/RowSetCache.cxx
@@ -1723,19 +1723,14 @@ void 
ORowSetCache::impl_updateRowFromCache_throw(ORowSetValueVector::Vector& io_
 {
 if ( o_ChangedColumns.size() > 1 )
 {
-ORowSetMatrix::const_iterator aIter = m_pMatrix->begin();
-for(;aIter != m_pMatrix->end();++aIter)
+for (auto const& elem : *m_pMatrix)
 {
-if ( aIter->is() && 
m_xCacheSet->updateColumnValues((*aIter)->get(),io_aRow,o_ChangedColumns))
+if ( elem.is() && 
m_xCacheSet->updateColumnValues(elem->get(),io_aRow,o_ChangedColumns))
 {
-break;
+return;
 }
 }
-
-if ( aIter == m_pMatrix->end() )
-{
-m_xCacheSet->fillMissingValues(io_aRow);
-}
+m_xCacheSet->fillMissingValues(io_aRow);
 }
 }
 
diff --git a/dbaccess/source/ui/browser/formadapter.cxx 
b/dbaccess/source/ui/browser/formadapter.cxx
index 1fd7948ceafc..4660111c2c01 100644
--- a/dbaccess/source/ui/browser/formadapter.cxx
+++ b/dbaccess/source/ui/browser/formadapter.cxx
@@ -1087,20 +1087,17 @@ void SAL_CALL SbaXFormAdapter::dispose()
 m_aContainerListeners.disposeAndClear(aEvt);
 
 // dispose all children
-for (   std::vector< Reference< css::form::XFormComponent > 
>::const_iterator aIter = m_aChildren.begin();
-aIter != m_aChildren.end();
-++aIter
-)
+for (auto const& child : m_aChildren)
 {
-Reference< css::beans::XPropertySet >  xSet(*aIter, UNO_QUERY);
+Reference< css::beans::XPropertySet >  xSet(child, UNO_QUERY);
 if (xSet.is())
 xSet->removePropertyChangeListener(PROPERTY_NAME, 
static_cast(this));
 
-Reference< css::container::XChild >  xChild(*aIter, UNO_QUERY);
+Reference< css::container::XChild >  xChild(child, UNO_QUERY);
 if (xChild.is())
 xChild->setParent(Reference< XInterface > ());
 
-Reference< css::lang::XComponent >  xComp(*aIter, UNO_QUERY);
+Reference< css::lang::XComponent >  xComp(child, UNO_QUERY);
 if (xComp.is())
 xComp->dispose();
 }
diff --git a/dbaccess/source/ui/querydesign/querycontroller.cxx 
b/dbaccess/source/ui/querydesign/querycontroller.cxx
index aadc8f0fe7fa..32bf474fad65 100644
--- a/dbaccess/source/ui/querydesign/querycontroller.cxx
+++ b/dbaccess/source/ui/querydesign/querycontroller.cxx
@@ -1643,8 +1643,8 @@ static OUString concatComment( const OUString& rQuery, 
const std::vector< Commen
 // Obtaining the needed size once should be faster than reallocating.
 // Also add a blank or linefeed for each comment.
 sal_Int32 nBufSize = nLen + nComments;
-for (std::vector< CommentStrip >::const_iterator it( rComments.begin()); 
it != rComments.end(); ++it)
-nBufSize += (*it).maComment.getLength();
+for (auto const& comment : rComments)
+nBufSize += 

[Libreoffice-bugs] [Bug 100657] DOC: display chapter name instead of chapter number in caption numbering

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100657

Cor Nouws  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #5 from Cor Nouws  ---
(In reply to Andrey Skvortsov from comment #1)
> Created attachment 125963 [details]
> PDF from Word

Result is the same in Version: 6.1.0.0.alpha0+
Build ID: a9b202a6b7000e7af34f2a639ca207122a3968bf
CPU threads: 4; OS: Linux 4.13; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2017-12-26_23:09:36
Locale: nl-NL (nl_NL.UTF-8); 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-bugs] [Bug 104527] [META] DOC (binary) format bug tracker

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104527
Bug 104527 depends on bug 100657, which changed state.

Bug 100657 Summary: DOC: display chapter name instead of chapter number in 
caption numbering
https://bugs.documentfoundation.org/show_bug.cgi?id=100657

   What|Removed |Added

 Status|NEW |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 114721] Special char: find the char by drawing it

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114721

V Stuart Foote  changed:

   What|Removed |Added

 CC||akshaydeepi...@gmail.com,
   ||f...@libreoffice.org,
   ||ke...@collabora.com,
   ||michael.me...@collabora.com
   ||, s.mehrbr...@gmail.com,
   ||vstuart.fo...@utsa.edu

--- Comment #1 from V Stuart Foote  ---
Hi Vincent, thank you for posting--you've obviously put a lot of work into it.
Would think arranging a branch on LO project Gerret is the way to go--you can
fully test with assistance of other project devs, and then migrate when stable.

Not my area of expertise, but I would think using an Artificial Neural Network
(NN) based recognition of a search glyph trace input against a training library
of prepared NN for existing on system fonts might work for doing our
handwritten "drawing" of a glyph. Is there a better data model to hold the NN
training of the fonts and match the user input against? Tesseract-ocr or
Caffe... [1][2]

Otherwise assume the FANN project's libfann 2.2.0 + [3][4] is license
compatible and can be compiled cross platform Windows, macOS, Linux, Android.

I notice you've set GUI to include a 80x150 px character input pad--but that
might be made a bit wider--and would square 150x150px facilitate resampling of
the node? 

And since then key in implementing the NN search is the FANN "resampling" of
the input to an NN node for search. Will working with 15x15px nodes and NN
trainings of the fonts provide sufficient resolution to differentiate glyphs
from more complex Unicode blocks/scripts (think of CJK "traditional" glyphs).

I'd think using an NN based on 32x32, or possibly 64x64 px matrix might be
required.  

Of course the more complex NN would require a larger cache to match
against--and building dynamically is out of the question. Also, some of the
fonts that would benefit from handwritten "drawing" search are going to hold
tens-of-thousands of glyphs, would a FANN based search scale that large?

Another issue would be UI--selecting and training the NN of each target font in
cache on system would be required.  The project could not host the NN for the
fonts (bandwidth and storage).  So, project could deploy a few of the FANN
based NN trainings with installation packaging, but LibreOffice GUI would have
to guide the user's selection of additional fonts to parse and hold
locally--and include some estimate of the size of the NN cache.

Finally, returns of NN search must remain keyed to Unicode point of the source
font as that remains significant--not clear the FANN would keeps the Unicode
details of the matching glyphs.

=-ref-=
[1] https://github.com/tesseract-ocr/
[2] https://github.com/BVLC/caffe

[3] https://github.com/libfann/fann
[4] http://leenissen.dk/fann/html/files2/advancedusage-txt.html

-- 
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 104520] [META] DOCX (OOXML) bug tracker

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104520
Bug 104520 depends on bug 101580, which changed state.

Bug 101580 Summary: DOC(X): Writer don't handle changes if text was moved
https://bugs.documentfoundation.org/show_bug.cgi?id=101580

   What|Removed |Added

 Status|NEW |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 101580] DOC(X): Writer don't handle changes if text was moved

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101580

Cor Nouws  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #7 from Cor Nouws  ---
works OK in Version: 6.1.0.0.alpha0+
Build ID: a9b202a6b7000e7af34f2a639ca207122a3968bf
CPU threads: 4; OS: Linux 4.13; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2017-12-26_23:09:36
Locale: nl-NL (nl_NL.UTF-8); Calc: group threaded


Dragging content makes changes tracked.

-- 
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 104444] [META] DOCX (OOXML) table-related issues

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=10
Bug 10 depends on bug 99817, which changed state.

Bug 99817 Summary: FILEOPEN: Table put in text box, flowing over more pages, 
only shown on first page
https://bugs.documentfoundation.org/show_bug.cgi?id=99817

   What|Removed |Added

 Status|NEW |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 99817] FILEOPEN: Table put in text box, flowing over more pages, only shown on first page

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99817

Cor Nouws  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #9 from Cor Nouws  ---
(In reply to Mike Kaganski from comment #5)

> Actually, MS Word also shows only the part of the table that fits to the
> page. Floating elements (like text boxes) are not meant to go to following
> pages.

So that is the same as in the PDF's I just attached.
Only there is some difference in flow of content over the pages.
Different bug. Closing this one as WorksForMe

(Tested in Version: 6.1.0.0.alpha0+
Build ID: a9b202a6b7000e7af34f2a639ca207122a3968bf
CPU threads: 4; OS: Linux 4.13; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2017-12-26_23:09:36
Locale: nl-NL (nl_NL.UTF-8); 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-bugs] [Bug 99817] FILEOPEN: Table put in text box, flowing over more pages, only shown on first page

2017-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99817

--- Comment #8 from Cor Nouws  ---
Created attachment 138717
  --> https://bugs.documentfoundation.org/attachment.cgi?id=138717=edit
pdf from daily 20171226 - extra page

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


  1   2   3   >