[Libreoffice-bugs] [Bug 112797] FILEOPEN: DOCX - Writer shows immediately after opening file the ' There are changes to be saved' icon [floppy disk with star]

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112797

--- Comment #12 from Mike  ---
Created attachment 137438
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137438=edit
Screenshots and description

-- 
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 112797] FILEOPEN: DOCX - Writer shows immediately after opening file the ' There are changes to be saved' icon [floppy disk with star]

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112797

Mike  changed:

   What|Removed |Added

 CC||bugzilla@mkr.email

--- Comment #11 from Mike  ---
Created attachment 137437
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137437=edit
Minimum test case

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


[Libreoffice-commits] core.git: configure.ac

2017-11-01 Thread David Tardon
 configure.ac |6 --
 1 file changed, 6 deletions(-)

New commits:
commit da5be4f3d78e2665a1d3c7443f24adecbb0940cf
Author: David Tardon 
Date:   Wed Nov 1 19:08:25 2017 +0100

remove a NPAPI plugin leftover

Change-Id: I4284ed8e59477e508cec3f02a6d1bf2aa3978dd8
Reviewed-on: https://gerrit.libreoffice.org/44177
Tested-by: Jenkins 
Reviewed-by: David Tardon 

diff --git a/configure.ac b/configure.ac
index 30e0de323c99..162e779427c0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9066,12 +9066,6 @@ fi
 
 if test "$USING_X11" = TRUE; then
 dnl ===
-dnl Check for Composite.h for Mozilla plugin
-dnl ===
-AC_CHECK_HEADERS(X11/Composite.h,[],[AC_MSG_ERROR([Xt headers not found])],
- [#include ])
-
-dnl ===
 dnl Check for extension headers
 dnl ===
 AC_CHECK_HEADERS(X11/extensions/shape.h,[],[AC_MSG_ERROR([libXext headers 
not found])],
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-ux-advise] [Bug 101443] Wrong width/placement of Calc multiline scrollbar

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101443

--- Comment #11 from Jean-Francois Nifenecker 
 ---
Agreed with JBF. The proposed change makes the button way too small. The
current situation makes it prominent.
On a user POV, the change would lead users to overlook this widget (well, some
already do).

-- 
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 101443] Wrong width/placement of Calc multiline scrollbar

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101443

--- Comment #11 from Jean-Francois Nifenecker 
 ---
Agreed with JBF. The proposed change makes the button way too small. The
current situation makes it prominent.
On a user POV, the change would lead users to overlook this widget (well, some
already do).

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


Yash Srivastav license statement

2017-11-01 Thread Yash Srivastav
All of my past & future contributions to LibreOffice may be licensed under
the MPLv2/LGPLv3+ dual license.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2017-11-01 Thread Julien Nabet
 forms/source/component/FormattedField.cxx|   16 
 forms/source/component/refvaluecomponent.cxx |   10 +-
 2 files changed, 13 insertions(+), 13 deletions(-)

New commits:
commit 98b03cdc63bdf72a054a7fd17226673e34a3ba3e
Author: Julien Nabet 
Date:   Wed Nov 1 20:59:57 2017 +0100

Replace lists by vectors (forms)

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

diff --git a/forms/source/component/FormattedField.cxx 
b/forms/source/component/FormattedField.cxx
index ff3ca9b054f2..c84c219cc309 100644
--- a/forms/source/component/FormattedField.cxx
+++ b/forms/source/component/FormattedField.cxx
@@ -53,7 +53,7 @@
 #include 
 #include 
 #include 
-#include 
+#include 
 #include 
 
 
@@ -970,26 +970,26 @@ Any OFormattedModel::translateDbColumnToControlValue()
 
 Sequence< Type > OFormattedModel::getSupportedBindingTypes()
 {
-::std::list< Type > aTypes;
-aTypes.push_back( cppu::UnoType< double >::get() );
+::std::vector< Type > aTypes;
 switch ( m_nKeyType & ~NumberFormat::DEFINED )
 {
 case NumberFormat::DATE:
-aTypes.push_front(cppu::UnoType< css::util::Date >::get() );
+aTypes.push_back(cppu::UnoType< css::util::Date >::get() );
 break;
 case NumberFormat::TIME:
-aTypes.push_front(cppu::UnoType< css::util::Time >::get() );
+aTypes.push_back(cppu::UnoType< css::util::Time >::get() );
 break;
 case NumberFormat::DATETIME:
-aTypes.push_front(cppu::UnoType< css::util::DateTime >::get() );
+aTypes.push_back(cppu::UnoType< css::util::DateTime >::get() );
 break;
 case NumberFormat::TEXT:
-aTypes.push_front(cppu::UnoType< OUString >::get() );
+aTypes.push_back(cppu::UnoType< OUString >::get() );
 break;
 case NumberFormat::LOGICAL:
-aTypes.push_front(cppu::UnoType< sal_Bool >::get() );
+aTypes.push_back(cppu::UnoType< sal_Bool >::get() );
 break;
 }
+aTypes.push_back( cppu::UnoType< double >::get() );
 return comphelper::containerToSequence(aTypes);
 }
 
diff --git a/forms/source/component/refvaluecomponent.cxx 
b/forms/source/component/refvaluecomponent.cxx
index fbb4aeed1ab6..c85fa5784503 100644
--- a/forms/source/component/refvaluecomponent.cxx
+++ b/forms/source/component/refvaluecomponent.cxx
@@ -21,7 +21,7 @@
 
 #include 
 
-#include 
+#include 
 
 
 namespace frm
@@ -162,12 +162,12 @@ namespace frm
 
 Sequence< Type > OReferenceValueComponent::getSupportedBindingTypes()
 {
-::std::list< Type > aTypes;
-aTypes.push_back( cppu::UnoType::get() );
+::std::vector< Type > aTypes;
 
 if ( !m_sReferenceValue.isEmpty() )
-aTypes.push_front( cppu::UnoType::get() );
-// push_front, because this is the preferred type
+aTypes.push_back( cppu::UnoType::get() );
+
+aTypes.push_back( cppu::UnoType::get() );
 
 return comphelper::containerToSequence(aTypes);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 113347] Scrolling with the horizontal/ vertical toolbar is sluggish with OpenGL enabled

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113347

--- Comment #7 from Commit Notification 
 ---
Mike Kaganski committed a patch related to this issue.
It has been pushed to "master":

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

Related: tdf#113347: properly check HRESULT value

It will be available in 6.0.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 113347] Scrolling with the horizontal/ vertical toolbar is sluggish with OpenGL enabled

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113347

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.0.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: vcl/win

2017-11-01 Thread Mike Kaganski
 vcl/win/gdi/DWriteTextRenderer.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 11459949e920fab6074bab85e3e1a748e9aee1ee
Author: Mike Kaganski 
Date:   Wed Nov 1 22:11:01 2017 +0200

Related: tdf#113347: properly check HRESULT value

HRESULT's "success" value S_OK is 0; they are failed when their values are
negative. So, the incorrect check resulted in false failures.

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

diff --git a/vcl/win/gdi/DWriteTextRenderer.cxx 
b/vcl/win/gdi/DWriteTextRenderer.cxx
index 95dd9e9d9b97..9819ef205aa1 100644
--- a/vcl/win/gdi/DWriteTextRenderer.cxx
+++ b/vcl/win/gdi/DWriteTextRenderer.cxx
@@ -341,7 +341,7 @@ bool D2DWriteTextOutRenderer::BindFont(HDC hDC)
 
 // Initially bind to an empty rectangle to get access to the font face,
 //  we'll update it once we've calculated a bounding rect in DrawGlyphs
-if (!BindDC(mhDC = hDC))
+if (FAILED(BindDC(mhDC = hDC)))
 return false;
 
 mlfEmHeight = 0;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 113585] Auto Filter Columns are Treated Separately in the Attached ODS File

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113585

--- Comment #1 from Kevin Suo  ---
Version:5.4.2.2
Build ID:22b09f6418e8c2d508a9eaf86b2399209b0990f4
CPU Thread:4; OS: Linux 4.13; UI Rendering:Default; VCL: gtk2; 
Locale: zh-CN (zh_CN.UTF-8); Calc: single

Fedora 26 x64.

-- 
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 113585] New: Auto Filter Columns are Treated Separately in the Attached ODS File

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113585

Bug ID: 113585
   Summary: Auto Filter Columns are Treated Separately in the
Attached ODS File
   Product: LibreOffice
   Version: 5.4.2.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: suokunl...@126.com

Created attachment 137436
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137436=edit
test ods file

The attached .ods file has two columns of data. In the most recent libreoffice
version, these two columns are treated separately when doing auto-filtering.

Steps to Reproduce:
1. Click on the drop-down list to filter-out "201607" in column B.
2. Click on the drop-down list to observe the items as shown in the filter-list
in column A.

Current Behaviour:
In step 2, all the items are shown in the filtered list.

Expected Behaviour:
Only 07-2016 is shown in step 2.



Further Information:
Apparently Calc is treating these two columns as separate data:
* If you select cell B1, click the autofilter toolbar icon to remove the
autofilter status, only autofilter for column A is removed. It should remove
both.
* If you select A1:B3692, then click the autofilter toolbar icon to remove the
autofilter, then filter on both columns are removed, but if you click the icon
to set autofilter again, then filter is set separately again.

The ods file was generated using LibreOffice, I am not sure which version was
used to create this file.

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


[Libreoffice-bugs] [Bug 113515] LibreOffice Versions 5.3.x.x and 5.4.x.x install on freshly installed Linux Mint 18.2 or Ubuntu 17.10 but won 't run 5.1.6.2 runs fine

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113515

--- Comment #4 from Carlos Sevcik  ---
It is also seeking libuuid.so.1 in /lib/i386-linux-gnu which actually is in
/lib/x86_64-linux-gnu

-- 
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 113584] FORMCONTROLS: List Box "Linked cell" field blank upon file reopen

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113584

--- Comment #1 from Bret R  ---
Created attachment 137435
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137435=edit
Calc Testing File w/ Screenshot

-- 
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 113584] New: FORMCONTROLS: List Box "Linked cell" field blank upon file reopen

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113584

Bug ID: 113584
   Summary: FORMCONTROLS: List Box "Linked cell" field blank upon
file reopen
   Product: LibreOffice
   Version: 5.4.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bretro...@hotmail.com

Description:
When opening a saved file with a list box (or creating a new one from a
template), the Data/Linked Cell field is blank instead of maintaining the cell
reference previously entered.

Works as expected in 5.3.3.2, doesn't work in 5.4.2.2.

I noticed a patch related to the listbox control was posted in response to bug
79250 and made live as of 5.4.0. Could this possibly be linked?

Steps to Reproduce:
1. Create blank Calc spreadsheet
2. Create Form Control with a list of entries
3. Add a reference in "Linked cell" under Properties:List Box, Data tab
4. Turn off Design Mode and verify that the created Listbox works
5. Save file & close
6. Open file

Actual Results:  
The "Linked cell" field in the Form Control properties Data tab is blank, and
the Listbox does not function.

Expected Results:
The "Linked cell" field in the Form Control properties Data tab should retain
its earlier value, and the Listbox should function.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 5.4.2.2 (x64)
Build ID: 22b09f6418e8c2d508a9eaf86b2399209b0990f4
CPU threads: 4; OS: Windows 6.1; UI render: default; 
Locale: en-US (en_US); Calc: CL


User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:56.0) Gecko/20100101
Firefox/56.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 113572] Copying a chart converts data ranges to data table

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113572

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
Doing some test,
- Copying and pasting including the ranges with the chart data, copy data
ranges on the source file, but with a wrong path.
- Copying the sheet to a new file (right-click on the sheet tab), seems copy
data range fine.

Bug https://bugs.documentfoundation.org/show_bug.cgi?id=101653 is about this
matter.

-- 
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 'feature/qt5' - 139 commits - basctl/source basegfx/source basic/source canvas/source chart2/source codemaker/source compilerplugins/clang config_host/config_qt5

2017-11-01 Thread Thorsten Behrens
Rebased ref, commits from common ancestor:
commit a341b4559c36227fb69eab56c1cfa0b057a09d2c
Author: Thorsten Behrens 
Date:   Thu Nov 2 01:49:00 2017 +0100

QT5 fixup non-qt5 build

Change-Id: Ifea73d81ba3863fd6a99453cb38303eb729f6ff4

diff --git a/vcl/source/gdi/CommonSalLayout.cxx 
b/vcl/source/gdi/CommonSalLayout.cxx
index 132766753174..936369983d14 100644
--- a/vcl/source/gdi/CommonSalLayout.cxx
+++ b/vcl/source/gdi/CommonSalLayout.cxx
@@ -70,8 +70,8 @@ hb_blob_t* getFontTable(hb_face_t* /*face*/, hb_tag_t 
nTableTag, void* pUserData
 }
 #else
 const char* pBuffer = nullptr;
-CommonSalLayout *pLayout = static_cast( pUserData );
 #if ENABLE_QT5
+CommonSalLayout *pLayout = static_cast( pUserData );
 QByteArray aTable;
 if ( pLayout->mbUseQt5 )
 {
@@ -83,8 +83,9 @@ hb_blob_t* getFontTable(hb_face_t* /*face*/, hb_tag_t 
nTableTag, void* pUserData
 else
 #endif
 {
+FreetypeFont* pFont = static_cast(pUserData);
 pBuffer = reinterpret_cast(
-pLayout->mpFreetypeFont->GetTable(pTagName, ) );
+pFont->GetTable(pTagName, ) );
 }
 #endif
 
@@ -256,41 +257,44 @@ CommonSalLayout::CommonSalLayout(const CoreTextStyle& 
rCoreTextStyle)
 
 #else
 
+#if ENABLE_QT5
 CommonSalLayout::CommonSalLayout(const FontSelectPattern ,
  FreetypeFont *pFreetypeFont,
  Qt5Font *pQt5Font, bool bUseQt5)
 : mrFontSelData(rFSP)
 , mpFreetypeFont(pFreetypeFont)
-#if ENABLE_QT5
 , mbUseQt5(bUseQt5)
 , mpQFont(pQt5Font)
-#endif
 , mpVertGlyphs(nullptr)
 {
-#if ENABLE_QT5
 if (mbUseQt5)
 mpHbFont = mpQFont->GetHbFont();
 else
-#endif
 mpHbFont = mpFreetypeFont->GetHbFont();
 if (!mpHbFont)
 {
 hb_face_t* pHbFace = hb_face_create_for_tables(getFontTable, this, 
nullptr);
 
 mpHbFont = createHbFont(pHbFace);
-#if ENABLE_QT5
 if (mbUseQt5)
 mpQFont->SetHbFont(mpHbFont);
 else
-#endif
 mpFreetypeFont->SetHbFont(mpHbFont);
 }
 }
+#endif
 
-CommonSalLayout::CommonSalLayout(FreetypeFont& rFreetypeFont)
-: CommonSalLayout(rFreetypeFont.GetFontSelData(),
-  , nullptr, false)
+CommonSalLayout::CommonSalLayout(FreetypeFont& rFreetypeFont) :
+mrFontSelData(rFreetypeFont.GetFontSelData())
+,   mpFreetypeFont()
+,   mpVertGlyphs(nullptr)
 {
+mpHbFont = rFreetypeFont.GetHbFont();
+if (!mpHbFont)
+{
+hb_face_t* pHbFace = hb_face_create_for_tables(getFontTable, 
, nullptr);
+mpHbFont = createHbFont(pHbFace);
+}
 }
 
 #if ENABLE_QT5
commit 8d654277ef2c81fb89cbb18d74c89631593b3937
Author: Thorsten Behrens 
Date:   Thu Nov 2 01:46:38 2017 +0100

vcl: fix dbg_util build after enum class change

Fixup after 74ab2a686144545255a2f07dde3f14f66f37753e

Change-Id: I57492bdee7cc4d3676b476a2a867211e5aa0bd13

diff --git a/vcl/unx/generic/printer/ppdparser.cxx 
b/vcl/unx/generic/printer/ppdparser.cxx
index d9c21bb2b998..d8bbd11e4b50 100644
--- a/vcl/unx/generic/printer/ppdparser.cxx
+++ b/vcl/unx/generic/printer/ppdparser.cxx
@@ -782,12 +782,12 @@ PPDParser::PPDParser( const OUString& rFile ) :
 char const* pSetupType = "";
 switch( pKey->m_eSetupType )
 {
-case PPDKey::ExitServer:pSetupType = "ExitServer";break;
-case PPDKey::Prolog:pSetupType = "Prolog";break;
-case PPDKey::DocumentSetup: pSetupType = "DocumentSetup";break;
-case PPDKey::PageSetup: pSetupType = "PageSetup";break;
-case PPDKey::JCLSetup:  pSetupType = "JCLSetup";break;
-case PPDKey::AnySetup:  pSetupType = "AnySetup";break;
+case PPDKey::SetupType::ExitServer:pSetupType = 
"ExitServer";break;
+case PPDKey::SetupType::Prolog:pSetupType = 
"Prolog";break;
+case PPDKey::SetupType::DocumentSetup: pSetupType = 
"DocumentSetup";break;
+case PPDKey::SetupType::PageSetup: pSetupType = 
"PageSetup";break;
+case PPDKey::SetupType::JCLSetup:  pSetupType = 
"JCLSetup";break;
+case PPDKey::SetupType::AnySetup:  pSetupType = 
"AnySetup";break;
 default: break;
 };
 SAL_INFO("vcl.unx.print", "\t\"" << pKey->getKey() << "\" ("
commit 1bc785dd7a79f46d3a616cad26842bd0850841fb
Author: Jan-Marek Glogowski 
Date:   Mon Oct 30 16:11:09 2017 +0100

QT5 implement Graphics damage tracking

Since we implement SalGraphics handling like the gtk3 backend, we
need damage tracking to queue updates.

Since there is no native damage tracking in Qt5, we have to log
the damage in our subclassed QPainter, which will queue an update
on destruction.

Change-Id: 

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

2017-11-01 Thread Thorsten Behrens
 vcl/unx/generic/printer/ppdparser.cxx |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit afe501df00733a80af464d0eac3809c833388877
Author: Thorsten Behrens 
Date:   Thu Nov 2 01:46:38 2017 +0100

vcl: fix dbg_util build after enum class change

Fixup after 74ab2a686144545255a2f07dde3f14f66f37753e

Change-Id: I57492bdee7cc4d3676b476a2a867211e5aa0bd13

diff --git a/vcl/unx/generic/printer/ppdparser.cxx 
b/vcl/unx/generic/printer/ppdparser.cxx
index d9c21bb2b998..d8bbd11e4b50 100644
--- a/vcl/unx/generic/printer/ppdparser.cxx
+++ b/vcl/unx/generic/printer/ppdparser.cxx
@@ -782,12 +782,12 @@ PPDParser::PPDParser( const OUString& rFile ) :
 char const* pSetupType = "";
 switch( pKey->m_eSetupType )
 {
-case PPDKey::ExitServer:pSetupType = "ExitServer";break;
-case PPDKey::Prolog:pSetupType = "Prolog";break;
-case PPDKey::DocumentSetup: pSetupType = "DocumentSetup";break;
-case PPDKey::PageSetup: pSetupType = "PageSetup";break;
-case PPDKey::JCLSetup:  pSetupType = "JCLSetup";break;
-case PPDKey::AnySetup:  pSetupType = "AnySetup";break;
+case PPDKey::SetupType::ExitServer:pSetupType = 
"ExitServer";break;
+case PPDKey::SetupType::Prolog:pSetupType = 
"Prolog";break;
+case PPDKey::SetupType::DocumentSetup: pSetupType = 
"DocumentSetup";break;
+case PPDKey::SetupType::PageSetup: pSetupType = 
"PageSetup";break;
+case PPDKey::SetupType::JCLSetup:  pSetupType = 
"JCLSetup";break;
+case PPDKey::SetupType::AnySetup:  pSetupType = 
"AnySetup";break;
 default: break;
 };
 SAL_INFO("vcl.unx.print", "\t\"" << pKey->getKey() << "\" ("
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 113563] EDITING Couldn't edit shape style separately.

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113563

--- Comment #4 from t.tsuz...@minocraft.co.jp ---
This is my misunderstand.
I'm sorry for bothering a lot of people.
I thought style menu at right click of shape mean editing selected shape style
like 'power point'.
I could edit shape by using property menu at right pane.
thank you

-- 
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 41739] Math equation editor: "newline" fails after symbols

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=41739

Christopher M. Penalver  changed:

   What|Removed |Added

   See Also||https://launchpad.net/bugs/
   ||281053
 QA Contact||christopher.m.penalver@gmai
   ||l.com

--- Comment #16 from Christopher M. Penalver  
---
Reproducible verbatim to the Description in:
Version: 5.4.3.1 (x64)
Build ID: 32c8895c6cae21571f364dbb059f419a743ee44d
CPU threads: 8; OS: Windows 6.19; UI render: GL; 
Locale: en-US (en_US); Calc: group
Windows 10 x64

-- 
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 107555] Apply the 'Default Style' table style to newly inserted tables

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107555

--- Comment #4 from Jim Raykowski  ---
Here is a link to a patch for this

https://gerrit.libreoffice.org/#/c/44147/

-- 
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 50202] FORMATTING: Rotated RTL text mixed with numbers produces complete mess

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50202

--- Comment #9 from Omer Zak  ---
Created attachment 137434
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137434=edit
File as exported to PDF

Vertical text is now outside of the two vertical boxes at top right.

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


[Libreoffice-bugs] [Bug 50202] FORMATTING: Rotated RTL text mixed with numbers produces complete mess

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50202

--- Comment #8 from Omer Zak  ---
Created attachment 137433
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137433=edit
What is being displayed by Writer

All text is at least enclosed in the boxes.

-- 
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 50202] FORMATTING: Rotated RTL text mixed with numbers produces complete mess

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50202

--- Comment #7 from Omer Zak  ---
Still happens in:

Version: 5.4.2.2.0+
Build ID: 1:5.4.2-3~bpo9+1
CPU threads: 8; OS: Linux 4.9; UI render: default; VCL: gtk2; 
Locale: en-US (en_US.utf8); Calc: group

OS: Debian 64bit Stretch (Debian 9.2, with some backported packages)

Also, export to PDF does not faithfully reproduce the mess being seen.
I am attaching both screenshot and PDF export.

-- 
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 113011] crashed when trying to edit a formula

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113011

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #4 from Xisco Faulí  ---
(In reply to John Haggerty from comment #2)
> Created attachment 136891 [details]
> copy of sheet being worked on when crash took place
> 
> Hi folks,
> 
> I've recreated the worksheet as closely as I can recall to the state it was
> in immediately before the crash - I made other changes to it between the
> recovery and creating this attachment but I doubt that they are relevant.
> 
> The circumstances of the crash were:
> I deleted rows 1291 and 1292.
> I then attempted to edit cell H1279 to remove the references to cells H1291
> and H1292 which by then had become #REF!s.
> The crash occurred before I had finished editing / exited cell H1279.
> 
> Regards,
> 
> John

If you reproduce the steps describe above again, Does it crash?

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the question is answered

-- 
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 113011] crashed when trying to edit a formula

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113011

Xisco Faulí  changed:

   What|Removed |Added

URL|http://crashreport.libreoff |
   |ice.org/stats/crash_details |
   |/830c5678-cbb2-4181-8b2e-68 |
   |3fc2f267e2  |

-- 
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 113011] crashed when trying to edit a formula

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113011

Xisco Faulí  changed:

   What|Removed |Added

Crash report or||["EditDoc::GetObject(long)"
crash signature||]

-- 
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 113572] Copying a chart converts data ranges to data table

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113572

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||xiscofa...@libreoffice.org

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


[Libreoffice-bugs] [Bug 113572] Copying a chart converts data ranges to data table

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113572

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||xiscofa...@libreoffice.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-ux-advise] [Bug 104033] Feature Request: To add MS Excel Camera option to Calc' s Edit menu

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104033

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #4 from V Stuart Foote  ---
UI is out of line, questionable use case and not clear there'd be any dev
interest in the effort.

So, WONTFIX

-- 
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 105584] [META] Calc image bugs and enhancements

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105584
Bug 105584 depends on bug 104033, which changed state.

Bug 104033 Summary: Feature Request: To add MS Excel Camera option to Calc's 
Edit menu
https://bugs.documentfoundation.org/show_bug.cgi?id=104033

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WONTFIX

-- 
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 104033] Feature Request: To add MS Excel Camera option to Calc' s Edit menu

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104033

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #4 from V Stuart Foote  ---
UI is out of line, questionable use case and not clear there'd be any dev
interest in the effort.

So, WONTFIX

-- 
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 106156] Line spacing has changed for some Adobe typefaces ( at least Palatino, Times, Garamond)

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106156

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #6 from Xisco Faulí  ---
I'm wondering if it was fixed by 0c8b749e602b6743857a9bc4efb24b6183690311...

Could you please try to reproduce it with a master build from
http://dev-builds.libreoffice.org/daily/master/ ?
You can install it alongside the standard version.
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the bug is still present in the master build

-- 
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 49320] FILEOPEN: DOCX - Numbers that arent proceeded by english text are treated as CTL/ RTL text in a RTL document

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49320

--- Comment #11 from Omer Zak  ---
Created attachment 137432
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137432=edit
PDF export showing the remaining bug in version 5.4.2

This PDF file demonstrates both bug fixes and remaining bug in version 5.4.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 94806] Cannot activate Impress remote

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94806

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #5 from Xisco Faulí  ---
> thank you very much for reporting this bug :) I cannot - however - reproduce
> it, sorry ... :( Did you enable "Tools - Options - LibreOffice Impress -
> Enable remote control" (below the "Presentation" section)? After enabling it
> there, I see the menu entry "Slide Show - Impress Remote".

Dear Reporter,
Could you please answer the question above?
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the question is answered

-- 
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 101473] [EDITING] Function wizard crashes LibO when evaluating addin that implement XVolatileResult

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101473

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #7 from Xisco Faulí  ---
Dear Reporter,
Could you please try to reproduce it with the latest version of LibreOffice
from https://www.libreoffice.org/download/libreoffice-fresh/ ?
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the bug is still present in the latest version.

-- 
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 105084] 64-Bit Windows LibreOffice Applications hang on startup

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105084

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||needsDevAdvice
 CC||xiscofa...@libreoffice.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 113583] New: Help file recognized by OS (Windows 10) but not by LibreOffice program

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113583

Bug ID: 113583
   Summary: Help file recognized by OS (Windows 10) but not by
LibreOffice program
   Product: LibreOffice
   Version: 5.4.2.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: d...@helperdave.ch

Description:
Latest build 5.4.2.2 GB installs beautifully. The corresponding help file seems
to install (programs and features) but is not available through the help
function in the LibreOffice program itself. Could it be a 32/64 mismatch?
OS: Win 10-64, 1709 running on an i7 5th generation.


Steps to Reproduce:
1. install 5.4.2.2 over 5.2x
2. install help file
3. try to use it from Writer

Actual Results:  
error message saying program is not installed; click the message off and Writer
still works

Expected Results:
I'd have expected the locally installed help file to work


Reproducible: Always


User Profile Reset: No



Additional Info:
[Information automatically included from LibreOffice]
Locale: en-US
Module: StartModule
[Information guessed from browser]
OS: Windows 10-64 1709
OS is 64bit: yes
Help/About:
Version: 5.4.2.2 (x64)
Build ID: 22b09f6418e8c2d508a9eaf86b2399209b0990f4
CPU threads: 4; OS: Windows 6.19; UI render: GL; 
Locale: de-CH (de_CH); Calc: group
Note that the computer is configured in English, not German, though it is in
Switzerland


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:56.0) Gecko/20100101
Firefox/56.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 49320] FILEOPEN: DOCX - Numbers that arent proceeded by english text are treated as CTL/ RTL text in a RTL document

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49320

--- Comment #10 from Omer Zak  ---
Tested in:

Version: 5.4.2.2.0+
Build ID: 1:5.4.2-3~bpo9+1
CPU threads: 8; OS: Linux 4.9; UI render: default; VCL: gtk2; 
Locale: en-US (en_US.utf8); Calc: group

OS: Debian 64bit Stretch (Debian 9.2, with some backported packages)

1. Parentheses seem to be around the right text, in the right place and
direction.
2. Text is now left-justified.

However, the numbers are to the right of the paragraph text instead of to the
left.

-- 
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 105945] Impress master slide for "Centered Text" slide layout

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105945

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #6 from Xisco Faulí  ---
(In reply to Buovjaga from comment #5)
> (In reply to kubi from comment #4)
> > It is totally irrelevant what are the exact steps.
> 
> Well, how else am I supposed to reproduce the issue? A screenshot would also
> be nice.

Dear Reporter,
Could you please answer the question above?
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the question is answered

-- 
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 105887] FORMATTING: Fonts messed up when saving in file and transfer styles

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105887

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #4 from Xisco Faulí  ---
(In reply to Buovjaga from comment #3)
> (In reply to Ernesto from comment #2)
> > Created attachment 131315 [details]
> > Problematic file. Slow to load.
> 
> I can't copy the styles from this file to a new file. I click the New style
> button in the Sidebar, Load styles, From file. Then I check the font of
> paragraph style Text body: it does not have Calisto MT like in Manual.odt.
> 
> I also tried File - Properties - Font - Embed fonts in document before
> loading styles.
> 
> Are you able to load them?
> 
> Arch Linux 64-bit, KDE Plasma 5
> Version: 5.4.0.0.alpha0+
> Build ID: 7ec0500e20cf273d70c4fbddb4063b8f8295307c
> CPU Threads: 8; OS Version: Linux 4.9; UI Render: default; VCL: kde4; 
> Locale: fi-FI (fi_FI.UTF-8); Calc: group
> Built on February 18th 2016

Dear Reporter,
Could you please answer the question above?
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the question is answered

-- 
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 103630] Alphabetical index retaining deleted information from Concordance-File.sdi file

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103630

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #6 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. 
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested document is provided.
(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.)

-- 
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 105404] Draw very slow dividing vector graphic

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105404

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
Version|5.2.4.2 release |Inherited From OOo
 Ever confirmed|0   |1

--- Comment #6 from Xisco Faulí  ---
I do confirm in

Version: 6.0.0.0.alpha1+
Build ID: e90329ff3896cf33528b47830f49fcd05590bd6a
CPU threads: 4; OS: Linux 4.10; UI render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group

if I select the whole chart by dragging the mouse and Shape - break from the
content menu

Same behaviour in

LibreOffice 3.3.0 
OOO330m19 (Build:6)
tag libreoffice-3.3.0.4

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


[Libreoffice-bugs] [Bug 105679] PDF Filter: does not respect last value of ExportOnlyNotesPages setting

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105679

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #4 from Xisco Faulí  ---
(In reply to Zach Travis from comment #3)
> I would like to add a patch but have not yet had time to do so.

Ok, no problem. Whenever you have time. It's great you're around though. You
can join @libreoffice-dev IRC channel if you have any question ->
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-dev

Assigning it yourself. Looking forward to seeing your patch!!

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


Re: ESC / Rome discussion ...

2017-11-01 Thread Thorsten Behrens
Stephan Bergmann wrote:
> I'd propose to have three things:
> 
+1 - I think that nicely addresses all concerns.

Cheers,

-- Thorsten


signature.asc
Description: Digital signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 106278] Worksheet Comment Parent is Nothing, expecting a Range object of associated cell

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106278

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||needsDevAdvice

-- 
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 104804] PDF Export Named Destinations missing

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104804

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #10 from Xisco Faulí  ---
@Buovjaga, Any change the documentation can be improved here? Should a
different issue be created?

-- 
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 101443] Wrong width/placement of Calc multiline scrollbar

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101443

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||xiscofa...@libreoffice.org

--- Comment #10 from Xisco Faulí  ---
Adding UX team...

-- 
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 101443] Wrong width/placement of Calc multiline scrollbar

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101443

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||xiscofa...@libreoffice.org

--- Comment #10 from Xisco Faulí  ---
Adding UX team...

-- 
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 104033] Feature Request: To add MS Excel Camera option to Calc' s Edit menu

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104033

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #3 from Xisco Faulí  ---
@Heiko, @V Stuart,
should this enhancement be accepted or rejected then?

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


[Libreoffice-ux-advise] [Bug 104033] Feature Request: To add MS Excel Camera option to Calc' s Edit menu

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104033

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #3 from Xisco Faulí  ---
@Heiko, @V Stuart,
should this enhancement be accepted or rejected then?

-- 
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 105679] PDF Filter: does not respect last value of ExportOnlyNotesPages setting

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105679

--- Comment #3 from Zach Travis  ---
I would like to add a patch but have not yet had time to do so.

-- 
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 105679] PDF Filter: does not respect last value of ExportOnlyNotesPages setting

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105679

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #2 from Xisco Faulí  ---
Dear Zach,
Could you please submit it to gerrit as described here:
https://wiki.documentfoundation.org/Development/gerrit/SubmitPatch?

-- 
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 104193] Writer' s AutoCorrect Word Completion list is deleted during a LibO version upgrade

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104193

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #14 from Xisco Faulí  ---
Dear Reporter,
I couldn't find any similar report in our Bugzilla.
Could you please share the list with us?

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested document is provided.
(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.)

-- 
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 45147] right-to-left words appear in the wrong order in the CSV import dialog

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45147

--- Comment #11 from Omer Zak  ---
The bug in the RTL CSV Text import dialog still happens in:

Version: 5.4.2.2.0+
Build ID: 1:5.4.2-3~bpo9+1
CPU threads: 8; OS: Linux 4.9; UI render: default; VCL: gtk2; 
Locale: en-US (en_US.utf8); Calc: group

OS: Debian 64bit Stretch (Debian 9.2, with some backported packages)


By the way:
When I exported to a PDF file, the PDF file looked OK (also the attached PDF
export using 4.5 alpha from Jan 25th 2015 looked OK).

-- 
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 93445] [l10n, Russian] All CDFs for discrete distributions should be marked “in Western tradition”

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93445

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #6 from Xisco Faulí  ---
Dear Reporter,
Could you please try to reproduce it with the latest version of LibreOffice
from https://www.libreoffice.org/download/libreoffice-fresh/ ?
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the bug is still present in the latest version.

-- 
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 100914] Webdateien - add Google Drive error

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100914

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #9 from Xisco Faulí  ---
(In reply to Giuseppe Castagno (aka beppec56) from comment #7)
> Tested per bug 101630, comment 3.
> 
> Seems Google is changing again the login pages for Google drive.
> 
> I think LO users are hit at different times, depending on the Country they
> are when they login, in my case (Italy) Google drive stopped working in the
> last few days.

@Giuseppe,
is it still the case in master?

-- 
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 95424] LO Impress: Export PDF with password protection for copying content doesn' t protect copy of content

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95424

--- Comment #8 from Pavlos K. Ponos  ---
Hello,

reproduced once more in following version:

Version: 5.2.7.2
Build ID: 1:5.2.7-1
CPU Threads: 2; OS Version: Linux 4.9; UI Render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); Calc: group

I'm running Debian Stretch.

-- 
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 106041] Specific characters at the beginning of a paragraph

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106041

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #9 from Xisco Faulí  ---
(In reply to Buovjaga from comment #8)
> Butch: so you tried -- in a clean document? I have autocorrecting of -- to
> long dash as well and it does not get an own XML element, when I open
> content.xml.
> I don't get, why German would be different..
> 
> Win 7 Pro 64-bit Version: 5.4.0.0.alpha0+
> Build ID: eb7b03b052ffe8c2c577b2349987653db6c53f76
> CPU threads: 4; OS: Windows 6.1; UI render: default; 
> TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2017-02-26_22:34:18
> Locale: fi-FI (fi_FI); Calc: CL

Dear Reporter,
Could you please answer the question above?
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the question is answered

-- 
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 105761] libreoffice-gtk3 causing longer time to open documents from file explorer on Ubuntu systems

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105761

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #7 from Xisco Faulí  ---
> Steps to Reproduce:
> 1. Open Nautilus File explorer while all LibreOffice windows are closed
> 2. Select LibreOffice document to open

Once you select the document, what happens if you move the cursor? Does it take
the same amount of time?
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the question is answered

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


[Libreoffice-commits] core.git: include/tools opencl/inc tools/Library_tl.mk tools/source

2017-11-01 Thread Tomaž Vajngerl
 include/tools/XmlWalker.hxx  |   55 ++
 include/tools/XmlWriter.hxx  |   58 +++
 opencl/inc/opencl_device_selection.h |  182 +--
 tools/Library_tl.mk  |4 
 tools/source/xml/XmlWalker.cxx   |  112 +
 tools/source/xml/XmlWriter.cxx   |  119 ++
 6 files changed, 356 insertions(+), 174 deletions(-)

New commits:
commit 1f8c3e3b78e0abb96d06a51eca354ae7ade5deb2
Author: Tomaž Vajngerl 
Date:   Wed Nov 1 12:46:35 2017 +0900

Extract XmlWriter and XmlWalker from opencl into tools

In opencl we read and writer the profile xml with custom classes
XmlWriter and XmlWalker for reading. This classes are useful in
other places (very similar XmlWriter is used in test), so extract
the code from opencl and move it to a more common place - tools.

Refactoring of other usages will follow.

Change-Id: I8363e87b7c30083d299080adec3f99cb33ebe4cc
Reviewed-on: https://gerrit.libreoffice.org/44149
Tested-by: Jenkins 
Reviewed-by: Tomaž Vajngerl 

diff --git a/include/tools/XmlWalker.hxx b/include/tools/XmlWalker.hxx
new file mode 100644
index ..4d4bc88f363c
--- /dev/null
+++ b/include/tools/XmlWalker.hxx
@@ -0,0 +1,55 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#ifndef INCLUDED_TOOLS_XMLWALKER_HXX
+#define INCLUDED_TOOLS_XMLWALKER_HXX
+
+#include 
+#include 
+#include 
+
+namespace tools {
+
+struct XmlWalkerImpl;
+
+/**
+ * XmlWalker main purpose is to make it easier for walking the
+ * parsed XML DOM tree.
+ *
+ * It hides all the libxml2 and C -isms and makes the usage more
+ * comfortable from LO developer point of view.
+ *
+ */
+class TOOLS_DLLPUBLIC XmlWalker final
+{
+private:
+std::unique_ptr mpImpl;
+
+public:
+XmlWalker();
+
+~XmlWalker();
+
+bool open(SvStream* pStream);
+
+OString name();
+
+OString content();
+void children();
+void parent();
+void next();
+bool isValid() const;
+OString attribute(OString sName);
+};
+
+} // end tools namespace
+
+#endif // INCLUDED_TOOLS_XMLWRITER_HXX
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/tools/XmlWriter.hxx b/include/tools/XmlWriter.hxx
new file mode 100644
index ..c454f4139803
--- /dev/null
+++ b/include/tools/XmlWriter.hxx
@@ -0,0 +1,58 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#ifndef INCLUDED_TOOLS_XMLWRITER_HXX
+#define INCLUDED_TOOLS_XMLWRITER_HXX
+
+#include 
+#include 
+#include 
+
+namespace tools {
+
+struct XmlWriterImpl;
+
+/**
+ * XmlWriter writes a XML to a SvStream. It uses libxml2 for writing but hides
+ * all the internal libxml2 workings and uses types that are native for LO
+ * development.
+ *
+ * The codepage used for XML is always "utf-8" and the output is indented so it
+ * is easier to read.
+ *
+ */
+class TOOLS_DLLPUBLIC XmlWriter final
+{
+private:
+std::unique_ptr mpImpl;
+public:
+
+XmlWriter(SvStream* pStream);
+
+~XmlWriter();
+
+bool startDocument();
+void endDocument();
+
+void startElement(const OString& sName);
+void endElement();
+
+void attribute(const OString& sTagName, const OString& aValue);
+void attribute(const OString& sTagName, const OUString& aValue);
+void attribute(const OString& sTagName, sal_Int32 aNumber);
+
+void content(const OString& sValue);
+void content(const OUString& sValue);
+};
+
+} // end tools namespace
+
+#endif // INCLUDED_TOOLS_XMLWRITER_HXX
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/opencl/inc/opencl_device_selection.h 
b/opencl/inc/opencl_device_selection.h
index 54caf183f2aa..5ebc87a9410c 100644
--- a/opencl/inc/opencl_device_selection.h
+++ b/opencl/inc/opencl_device_selection.h
@@ -21,9 +21,9 @@
 #include 
 
 #include 
-#include 
-#include 
 #include 
+#include 
+#include 
 #include 
 
 #include 
@@ -235,172 +235,6 @@ inline ds_status 
initDSProfile(std::unique_ptr& rProfile, OString co
 return DS_SUCCESS;
 }
 
-/**
- * XmlWriter writes a XML to a SvStream. It uses libxml2 for writing but hides
- * all the internal libxml2 workings and uses types that are native for LO
- * development.
- *
- * The codepage used for XML is always "utf-8" and the output is indented so it

[Libreoffice-bugs] [Bug 113568] DOCX IMPORT: TOC style is inherited incorrectly

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113568

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #1 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. 
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested document is provided.
(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.)

-- 
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 113573] When scrolling, Writer blacks my screen (like sleep)

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113573

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1

--- Comment #2 from V Stuart Foote  ---
What graphics GPU and driver? And is this with or without OpenGL support
enabled.

Copy and post details from Help -> About LibreOffice dialog, and also the
system summary and display panels from running msinfo32.exe.

-- 
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 113576] LibreOffice 5.4.2 does not support 800 x 600 resolution projector

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113576

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #2 from V Stuart Foote  ---
System requirements are for 1024x768 at 256 color.

But, may be able to work around. Set your display to 800x600 and launch
directly to Impress (simpress.exe) from the C:/Program Files/LibreOffice
5/program directory. Rather than soffice.exe (which takes you through the Start
Center) and forces minimum 620px height.

=-ref-=
https://www.libreoffice.org/get-help/system-requirements/

-- 
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 86610] Firefox theme results are limited to nine; there is no pagination

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86610

Xisco Faulí  changed:

   What|Removed |Added

Version|5.4.2.2 release |4.4 all versions

-- 
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 83260] CRASH: autocorrect with change tracking halts LibreOffice

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83260

--- Comment #9 from Xisco Faulí  ---
Interestingly, I can reproduce it with a local build

Version: 6.0.0.0.alpha1+
Build ID: fc4f2f1b0f8c286e9ae259c44fb249261a8ac47f
CPU threads: 4; OS: Linux 4.10; UI render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group

but not with a daily build

Version: 6.0.0.0.alpha1+
Build ID: e90329ff3896cf33528b47830f49fcd05590bd6a
CPU threads: 4; OS: Linux 4.10; UI render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.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: compilerplugins/clang external/graphite external/libcmis sal/textenc solenv/gbuild

2017-11-01 Thread Stephan Bergmann
 compilerplugins/clang/test/externvar.cxx|2 +-
 compilerplugins/clang/test/unnecessaryoverride-dtor.cxx |2 +-
 external/graphite/StaticLibrary_graphite.mk |1 +
 external/libcmis/StaticLibrary_libcmis.mk   |5 +
 sal/textenc/generate/gb180302000.tab|2 +-
 solenv/gbuild/platform/com_GCC_class.mk |1 -
 6 files changed, 9 insertions(+), 4 deletions(-)

New commits:
commit ecbaf980625a9e7b06abe91c7c70e78f6ad469a7
Author: Stephan Bergmann 
Date:   Wed Nov 1 18:16:40 2017 +0100

-I$(dir $(3)) in gb_CObject__command_pattern is no longer needed

...at least in com_GCC_class.mk (com_MSC_class.mk will be addressed in a 
follow-
up commit), after the recent loplugin:includeform clean-up.

Two static libraries built from external sources needed adjustment, two
compilerplugin tests needed adjustment (which wasn't found by
loplugin:includeform, by design), and one more adjustment in
sal/textenc/generate/.

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

diff --git a/compilerplugins/clang/test/externvar.cxx 
b/compilerplugins/clang/test/externvar.cxx
index 51f743fbba83..c4b30d6625f0 100644
--- a/compilerplugins/clang/test/externvar.cxx
+++ b/compilerplugins/clang/test/externvar.cxx
@@ -7,7 +7,7 @@
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  */
 
-#include 
+#include "externvar.hxx"
 
 int v1;
 int v2; // expected-error {{variable with external linkage not declared in an 
include file [loplugin:externvar]}} expected-note {{should either have internal 
linkage or be declared in an include file [loplugin:externvar]}}
diff --git a/compilerplugins/clang/test/unnecessaryoverride-dtor.cxx 
b/compilerplugins/clang/test/unnecessaryoverride-dtor.cxx
index 518ec711d6d2..b54957be2d7a 100644
--- a/compilerplugins/clang/test/unnecessaryoverride-dtor.cxx
+++ b/compilerplugins/clang/test/unnecessaryoverride-dtor.cxx
@@ -11,7 +11,7 @@
 
 #include 
 
-#include 
+#include "unnecessaryoverride-dtor.hxx"
 
 struct NonVirtualBase {};
 
diff --git a/external/graphite/StaticLibrary_graphite.mk 
b/external/graphite/StaticLibrary_graphite.mk
index b0ec4cc50682..8c16482ba11b 100644
--- a/external/graphite/StaticLibrary_graphite.mk
+++ b/external/graphite/StaticLibrary_graphite.mk
@@ -15,6 +15,7 @@ $(eval $(call 
gb_StaticLibrary_set_warnings_not_errors,graphite))
 
 $(eval $(call gb_StaticLibrary_set_include,graphite,\
-I$(call gb_UnpackedTarball_get_dir,graphite/include) \
+   -I$(call gb_UnpackedTarball_get_dir,graphite/src) \
$$(INCLUDE) \
 ))
 
diff --git a/external/libcmis/StaticLibrary_libcmis.mk 
b/external/libcmis/StaticLibrary_libcmis.mk
index 705cc6c6451d..b7e662465479 100644
--- a/external/libcmis/StaticLibrary_libcmis.mk
+++ b/external/libcmis/StaticLibrary_libcmis.mk
@@ -23,6 +23,11 @@ $(eval $(call gb_StaticLibrary_add_cxxflags,libcmis,\
 ))
 endif
 
+$(eval $(call gb_StaticLibrary_set_include,libcmis, \
+-I$(call gb_UnpackedTarball_get_dir,libcmis/src/libcmis) \
+$$(INCLUDE) \
+))
+
 $(eval $(call gb_StaticLibrary_use_unpacked,libcmis,libcmis))
 
 $(eval $(call gb_StaticLibrary_use_externals,libcmis,\
diff --git a/sal/textenc/generate/gb180302000.tab 
b/sal/textenc/generate/gb180302000.tab
index d932a4e7bd7c..00fc5134c727 100644
--- a/sal/textenc/generate/gb180302000.tab
+++ b/sal/textenc/generate/gb180302000.tab
@@ -20,7 +20,7 @@
 
 #include 
 
-#include 
+#include "../convertgb18030.hxx"
 
 static sal_Unicode const aImplGb180302000ToUnicodeData[] = {
   0x4E02,0x4E04,0x4E05,0x4E06,0x4E0F,0x4E12,0x4E17,0x4E1F,
diff --git a/solenv/gbuild/platform/com_GCC_class.mk 
b/solenv/gbuild/platform/com_GCC_class.mk
index 09db3a19dae6..efdefca98913 100644
--- a/solenv/gbuild/platform/com_GCC_class.mk
+++ b/solenv/gbuild/platform/com_GCC_class.mk
@@ -60,7 +60,6 @@ $(call gb_Helper_abbreviate_dirs,\
-c $(3) \
-o $(1) \
$(if $(COMPILER_TEST),,$(call 
gb_cxx_dep_generation_options,$(1),$(4))) \
-   -I$(dir $(3)) \
$(INCLUDE) \
$(PCHFLAGS) \
$(if $(COMPILER_TEST),,$(call gb_cxx_dep_copy,$(4))) \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-11-01 Thread Stephan Bergmann
 sw/source/core/docnode/swthreadmanager.cxx |2 +-
 sw/source/core/docnode/threadlistener.cxx  |2 +-
 sw/source/core/docnode/threadmanager.cxx   |2 +-
 sw/source/core/docnode/threadmanager.hxx   |   12 ++--
 4 files changed, 9 insertions(+), 9 deletions(-)

New commits:
commit b085d3561a84d2590ec52bec4a020566955c9689
Author: Stephan Bergmann 
Date:   Wed Nov 1 18:13:54 2017 +0100

threadmanager.hxx is only included from sw/source/core/docnode

...but itself includes sw/source/core/docnode/cancellablejob.hxx, which only
happens to work because of -I$(dir $(3)) in gb_CObject__command_pattern (in
solenv/gbuild/platform/com_{GCC,MSC}_class.mk).  Clean that up by moving the
file.

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

diff --git a/sw/source/core/docnode/swthreadmanager.cxx 
b/sw/source/core/docnode/swthreadmanager.cxx
index 365a8f6f3584..cadbfda29887 100644
--- a/sw/source/core/docnode/swthreadmanager.cxx
+++ b/sw/source/core/docnode/swthreadmanager.cxx
@@ -20,7 +20,7 @@
 #include 
 #include 
 #include 
-#include 
+#include "threadmanager.hxx"
 
 /** class to manage threads in Writer - it conforms the singleton pattern
 
diff --git a/sw/source/core/docnode/threadlistener.cxx 
b/sw/source/core/docnode/threadlistener.cxx
index 8ba757283896..5ace4c00231a 100644
--- a/sw/source/core/docnode/threadlistener.cxx
+++ b/sw/source/core/docnode/threadlistener.cxx
@@ -17,7 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 #include 
-#include 
+#include "threadmanager.hxx"
 
 /** helper class to observe threads
 
diff --git a/sw/source/core/docnode/threadmanager.cxx 
b/sw/source/core/docnode/threadmanager.cxx
index e6b2b70d3034..46a75c490fb7 100644
--- a/sw/source/core/docnode/threadmanager.cxx
+++ b/sw/source/core/docnode/threadmanager.cxx
@@ -16,7 +16,7 @@
  *   except in compliance with the License. You may obtain a copy of
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
-#include 
+#include "threadmanager.hxx"
 
 #include 
 
diff --git a/sw/source/core/inc/threadmanager.hxx 
b/sw/source/core/docnode/threadmanager.hxx
similarity index 94%
rename from sw/source/core/inc/threadmanager.hxx
rename to sw/source/core/docnode/threadmanager.hxx
index 6705def95dde..fa648292de8f 100644
--- a/sw/source/core/inc/threadmanager.hxx
+++ b/sw/source/core/docnode/threadmanager.hxx
@@ -16,8 +16,8 @@
  *   except in compliance with the License. You may obtain a copy of
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
-#ifndef INCLUDED_SW_SOURCE_CORE_INC_THREADMANAGER_HXX
-#define INCLUDED_SW_SOURCE_CORE_INC_THREADMANAGER_HXX
+#ifndef INCLUDED_SW_SOURCE_CORE_DOCNODE_THREADMANAGER_HXX
+#define INCLUDED_SW_SOURCE_CORE_DOCNODE_THREADMANAGER_HXX
 
 #include 
 #include 
@@ -28,12 +28,12 @@
 #include 
 #include 
 #include 
-#include "observablethread.hxx"
-#include 
-#include "threadlistener.hxx"
+#include 
+#include "cancellablejob.hxx"
+#include 
 
 #include 
-#include "ifinishedthreadlistener.hxx"
+#include 
 
 
 /** class to manage threads
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 113581] Memory leak in LO 5.4.x (w/ Notebookbar)

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113581

--- Comment #2 from Eduardo  ---
Forgot to mention that memory is released after about 10 seconds after Libre is
closed.

I discovered this the hard way :)
I found that pressing exactly shift is the issue by accident tbh.

Initially I edited large doc and went into doc properties, wanted to change one
property, so I  selected existing text with shift + end, everything froze up
after 10 sec because all by 32GB were used, which is another mystery, why
pressing shift once in large doc triggers this type of behavior.

-- 
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: svx/inc svx/source

2017-11-01 Thread Stephan Bergmann
 svx/source/dialog/page.hrc |6 +++---
 svx/source/dialog/papersizelistbox.cxx |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 7124613c81a77d504b2b9de5dadb17ab736255e6
Author: Stephan Bergmann 
Date:   Wed Nov 1 18:12:06 2017 +0100

page.hrc is only included from svx/source/dialog

...but itself includes svx/source/dialog/page.h, which only happens to work
because of -I$(dir $(3)) in gb_CObject__command_pattern (in
solenv/gbuild/platform/com_{GCC,MSC}_class.mk).  Clean that up by moving the
file.

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

diff --git a/svx/inc/page.hrc b/svx/source/dialog/page.hrc
similarity index 98%
rename from svx/inc/page.hrc
rename to svx/source/dialog/page.hrc
index 2907c6ee72f2..fc42b08e21f3 100644
--- a/svx/inc/page.hrc
+++ b/svx/source/dialog/page.hrc
@@ -17,10 +17,10 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_SVX_INC_PAGE_HRC
-#define INCLUDED_SVX_INC_PAGE_HRC
+#ifndef INCLUDED_SVX_SOURCE_DIALOG_PAGE_HRC
+#define INCLUDED_SVX_SOURCE_DIALOG_PAGE_HRC
 
-#include 
+#include "page.h"
 #include 
 
 #define NC_(Context, String) (Context "\004" u8##String)
diff --git a/svx/source/dialog/papersizelistbox.cxx 
b/svx/source/dialog/papersizelistbox.cxx
index 94d93aa92caa..1ec9c17c0da4 100644
--- a/svx/source/dialog/papersizelistbox.cxx
+++ b/svx/source/dialog/papersizelistbox.cxx
@@ -21,7 +21,7 @@
 #include 
 #include 
 #include 
-#include 
+#include "page.hrc"
 
 PaperSizeListBox::PaperSizeListBox(vcl::Window* pParent)
 : ListBox( pParent, WB_BORDER | WB_DROPDOWN)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 2 commits - sc/source svl/source

2017-11-01 Thread Stephan Bergmann
 sc/source/filter/starcalc/scflt.cxx|2 +-
 sc/source/filter/starcalc/scflt.hxx|6 +++---
 svl/source/passwordcontainer/passwordcontainer.cxx |2 +-
 svl/source/passwordcontainer/passwordcontainer.hxx |8 
 4 files changed, 9 insertions(+), 9 deletions(-)

New commits:
commit de4787b543d15a67bcf0828203e76061da5f4914
Author: Stephan Bergmann 
Date:   Wed Nov 1 18:10:37 2017 +0100

passwordcontainer.hxx is only included from svl/source/passwordcontainer

...but itself includes svl/source/passwordcontainer/syscreds.hxx, which only
happens to work because of -I$(dir $(3)) in gb_CObject__command_pattern (in
solenv/gbuild/platform/com_{GCC,MSC}_class.mk).  Clean that up by moving the
file.

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

diff --git a/svl/source/passwordcontainer/passwordcontainer.cxx 
b/svl/source/passwordcontainer/passwordcontainer.cxx
index 2905f63e115e..c2e8b7100028 100644
--- a/svl/source/passwordcontainer/passwordcontainer.cxx
+++ b/svl/source/passwordcontainer/passwordcontainer.cxx
@@ -18,7 +18,7 @@
  */
 
 
-#include 
+#include "passwordcontainer.hxx"
 
 #include 
 #include 
diff --git a/svl/source/inc/passwordcontainer.hxx 
b/svl/source/passwordcontainer/passwordcontainer.hxx
similarity index 98%
rename from svl/source/inc/passwordcontainer.hxx
rename to svl/source/passwordcontainer/passwordcontainer.hxx
index bda69d6a745f..67ad63e72722 100644
--- a/svl/source/inc/passwordcontainer.hxx
+++ b/svl/source/passwordcontainer/passwordcontainer.hxx
@@ -16,8 +16,8 @@
  *   except in compliance with the License. You may obtain a copy of
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
-#ifndef INCLUDED_SVL_SOURCE_INC_PASSWORDCONTAINER_HXX
-#define INCLUDED_SVL_SOURCE_INC_PASSWORDCONTAINER_HXX
+#ifndef INCLUDED_SVL_SOURCE_PASSWORDCONTAINER_PASSWORDCONTAINER_HXX
+#define INCLUDED_SVL_SOURCE_PASSWORDCONTAINER_PASSWORDCONTAINER_HXX
 
 #include 
 #include 
@@ -39,7 +39,7 @@
 #include 
 #include 
 
-#include 
+#include "syscreds.hxx"
 
 #define MEMORY_RECORD 0
 #define PERSISTENT_RECORD 1
@@ -366,6 +366,6 @@ public:
 };
 
 
-#endif // INCLUDED_SVL_SOURCE_INC_PASSWORDCONTAINER_HXX
+#endif
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
commit f9da456711619c3fe501000945290d887fc4a468
Author: Stephan Bergmann 
Date:   Wed Nov 1 18:07:24 2017 +0100

scflt.hxx is only included from sc/source/filter/starcalc

...but itself includes sc/source/filter/starcalc/collect.hxx, which only 
happens
to work because of -I$(dir $(3)) in gb_CObject__command_pattern (in
solenv/gbuild/platform/com_{GCC,MSC}_class.mk).  Clean that up by moving the
file.

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

diff --git a/sc/source/filter/starcalc/scflt.cxx 
b/sc/source/filter/starcalc/scflt.cxx
index 84ecf76a0c84..f1e74b1544c8 100644
--- a/sc/source/filter/starcalc/scflt.cxx
+++ b/sc/source/filter/starcalc/scflt.cxx
@@ -58,7 +58,7 @@
 #include 
 #include 
 #include 
-#include 
+#include "scflt.hxx"
 #include 
 #include 
 #include 
diff --git a/sc/source/filter/inc/scflt.hxx 
b/sc/source/filter/starcalc/scflt.hxx
similarity index 99%
rename from sc/source/filter/inc/scflt.hxx
rename to sc/source/filter/starcalc/scflt.hxx
index 6dd4a27438dc..aeb10e086250 100644
--- a/sc/source/filter/inc/scflt.hxx
+++ b/sc/source/filter/starcalc/scflt.hxx
@@ -17,12 +17,12 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_SC_SOURCE_FILTER_INC_SCFLT_HXX
-#define INCLUDED_SC_SOURCE_FILTER_INC_SCFLT_HXX
+#ifndef INCLUDED_SC_SOURCE_FILTER_STARCALC_SCFLT_HXX
+#define INCLUDED_SC_SOURCE_FILTER_STARCALC_SCFLT_HXX
 
 #include 
 #include 
-#include 
+#include "collect.hxx"
 #include 
 
 // Error numbers
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 83260] CRASH: autocorrect with change tracking halts LibreOffice

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83260

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||haveBacktrace
Summary|autocorrect with change |CRASH: autocorrect with
   |tracking halts LibreOffice  |change tracking halts
   ||LibreOffice

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


[Libreoffice-bugs] [Bug 113529] Exporting to PDF with wrong characters.

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113529

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #2 from Aron Budea  ---
Could you please also upload the ODT file, and a screenshot of the PDF where
some of the incorrect characters are circled for reference?

Change back status to UNCONFIRMED after providing the 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-bugs] [Bug 45028] label of connector gets written through line

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45028

--- Comment #32 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 77940] Formatting error when use equation insert on the component '=' in relation operation

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77940

--- Comment #9 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 100243] System freezes when attempting to print while OpenGL is enabled

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100243

--- Comment #14 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 92726] Presentation Minimizer does not preserve animations when making static replacements for OLE objects

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92726

--- Comment #5 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-ux-advise] [Bug 45028] label of connector gets written through line

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45028

--- Comment #32 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 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 98844] The accuracy of the calculation?

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98844

--- Comment #9 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 41739] Math equation editor: "newline" fails after symbols

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=41739

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 113529] Exporting to PDF with wrong characters.

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113529

Aron Budea  changed:

   What|Removed |Added

 Attachment #137379|text/plain  |application/pdf
  mime type||

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


[Libreoffice-bugs] [Bug 104753] Missing option do have a symbol with a subscript and a prime symbol in LibO Math

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104753

Xisco Faulí  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 113581] Memory leak in LO 5.4.x (w/ Notebookbar)

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113581

--- Comment #1 from Eduardo  ---
Created attachment 137431
  --> https://bugs.documentfoundation.org/attachment.cgi?id=137431=edit
Video (10fps) of the issue

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


[Libreoffice-bugs] [Bug 113582] New: Export as PDF reduces arrow line width compared to display

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113582

Bug ID: 113582
   Summary: Export as PDF reduces arrow line width compared to
display
   Product: LibreOffice
   Version: 5.4.1.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mattreecebent...@gmail.com

Line width of arrows in Impress at default looks normal,
however when exported to PDF the widths reduce to almost nothing.

Adjustment of line widths to 0.04cm is necessary to achieve the same onscreen
visual in export.

This is assumed to be a cross-platform bug but has not been tested outside of
Windows.

-- 
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 113581] New: Memory leak in LO 5.4.x (w/ Notebookbar)

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113581

Bug ID: 113581
   Summary: Memory leak in LO 5.4.x (w/ Notebookbar)
   Product: LibreOffice
   Version: 5.4.2.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ed...@inbox.lv

Description:
LibreOffice leaks memory when  is pressed multiple times in document
properties -> custom properties and Notebookbar is enabled

Steps to Reproduce:
1. Make sure Notebookbar is enabled
2. Open new document in writer or calc
3. Go to document properties -> custom properties
4. Press and release  buttons for some time and watch how memory fills
up

Actual Results:  
Libre "eats" all available memory, including swap

Expected Results:
Libre does not "eat" more memory when pressing shift


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Use htop or similar to watch how memory fills up.
Important note: soffice.bin process does NOT consume more memory, but available
memory decreases rapidly, I can fill up my 16GB in one minute just by pressing
 rapidly.
Ubuntu 16.04.3 + ppa:libreoffice/ppa (version 5.4.2-rc2)


User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like
Gecko) Ubuntu Chromium/62.0.3202.62 Chrome/62.0.3202.62 Safari/537.36

-- 
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 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de
Summary|FORMATING: Rotated text |FORMATING: Text does not
   |does not fit to contour in  |fit to contour in rotated
   |a custom shape  |polygon or bézier curve

--- Comment #10 from Regina Henschel  ---
Changed subject, because "Adjust to contour" is not available for custom
shapes, but only for polygons, bézier curves and legacy rectangle and circles.

For legacy rectangles and circles the text position is correct, but not for
polygons and bézier curves. I see the error in Version: 6.0.0.0.alpha1+
Build ID: d30522e46ca884e9bc74af21711d9537e8118859
CPU threads: 4; OS: Windows 6.1; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2017-10-29_23:13:14
Locale: de-DE (de_DE); Calc: group

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


[Libreoffice-commits] core.git: Branch 'private/swe/libreoffice-5-2+backports' - writerfilter/source

2017-11-01 Thread Serge Krot
 writerfilter/source/dmapper/DomainMapper.cxx |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 0dd909fff3117c8b30c33da48939215b44595c39
Author: Serge Krot 
Date:   Wed Sep 27 21:20:03 2017 +0200

related tdf#87533: handle LN_EG_SectPrContents_bidi correctly

Change-Id: I90d220550d24fb964cf4e528a1f506033f05de95
Reviewed-on: https://gerrit.libreoffice.org/42896
Tested-by: Jenkins 
Reviewed-by: Thorsten Behrens 
Reviewed-on: https://gerrit.libreoffice.org/44176
Tested-by: Thorsten Behrens 

diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index 138fca3f7863..46aef6bf81c7 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -1473,7 +1473,10 @@ void DomainMapper::sprmWithProps( Sprm& rSprm, const 
PropertyMapPtr& rContext )
 break;
 case NS_ooxml::LN_EG_SectPrContents_bidi:
 if (pSectionContext != nullptr)
-pSectionContext->Insert(PROP_WRITING_MODE, uno::makeAny( 
text::WritingMode2::RL_TB));
+{
+const sal_Int16 writingMode = (nIntValue != 0) ? 
sal_Int16(text::WritingMode2::RL_TB) : sal_Int16(text::WritingMode2::LR_TB);
+pSectionContext->Insert(PROP_WRITING_MODE, 
uno::makeAny(writingMode));
+}
 break;
 case NS_ooxml::LN_EG_RPrBase_highlight:
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'private/swe/libreoffice-5-2+backports' - sw/qa writerfilter/source

2017-11-01 Thread Serge Krot
 sw/qa/extras/ooxmlimport/data/tdf87533_bidi.docx |binary
 writerfilter/source/dmapper/StyleSheetTable.cxx  |   42 ++-
 2 files changed, 34 insertions(+), 8 deletions(-)

New commits:
commit 70ff72e0d5f31f0ed06ee3a23acea50e3cfa6eb4
Author: Serge Krot 
Date:   Thu Sep 28 12:53:30 2017 +0200

tdf#87533 Fixed initialization of writing mode for paragraph

During parsing of the docx the paragraph without w:bidi
should take this value from style or from default paragraph properties,

tdf#87533 explicitly set writing mode value based on default properties

Change-Id: Ie33f0d1cd3551c4053a47e6faf7dcac71765db65
3fcf514a901f0630d749ba0ddb6361d6db3ce1b5
Reviewed-on: https://gerrit.libreoffice.org/42895
Tested-by: Jenkins 
Reviewed-by: Thorsten Behrens 
Reviewed-on: https://gerrit.libreoffice.org/44175
Tested-by: Thorsten Behrens 

diff --git a/sw/qa/extras/ooxmlimport/data/tdf87533_bidi.docx 
b/sw/qa/extras/ooxmlimport/data/tdf87533_bidi.docx
new file mode 100644
index ..11e6511cac19
Binary files /dev/null and b/sw/qa/extras/ooxmlimport/data/tdf87533_bidi.docx 
differ
diff --git a/writerfilter/source/dmapper/StyleSheetTable.cxx 
b/writerfilter/source/dmapper/StyleSheetTable.cxx
index ae00da431bd3..73348739d36f 100644
--- a/writerfilter/source/dmapper/StyleSheetTable.cxx
+++ b/writerfilter/source/dmapper/StyleSheetTable.cxx
@@ -1033,10 +1033,33 @@ void StyleSheetTable::ApplyStyleSheets( const 
FontTablePtr& rFontTable )
 pEntry->pProperties->Insert(PROP_PARA_WIDOWS, aTwo, 
false);
 pEntry->pProperties->Insert(PROP_PARA_ORPHANS, aTwo, 
false);
 
-// Left-to-right direction if not already set
-pEntry->pProperties->Insert(PROP_WRITING_MODE, 
uno::makeAny( sal_Int16(text::WritingMode_LR_TB) ), false);
-// Left alignment if not already set
-pEntry->pProperties->Insert(PROP_PARA_ADJUST, 
uno::makeAny( sal_Int16(style::ParagraphAdjust_LEFT) ), false);
+// tdf#87533 explicitly set writing mode value based 
on default paragraph properties
+// specified inside styles.xml: 

+{
+const PropertyMapPtr & propertyMap = 
m_pImpl->m_pDefaultParaProps;
+
+boost::optional writingMode;
+if (propertyMap && (writingMode = 
propertyMap->getProperty(PROP_WRITING_MODE)))
+{
+pEntry->pProperties->Insert(PROP_WRITING_MODE, 
writingMode->second, false);
+}
+else
+{
+// Left-to-right direction if not already set
+pEntry->pProperties->Insert(PROP_WRITING_MODE, 
uno::makeAny(sal_Int16(text::WritingMode_LR_TB)), false);
+}
+
+boost::optional paraAdjust;
+if (propertyMap && (paraAdjust = 
propertyMap->getProperty(PROP_PARA_ADJUST)))
+{
+pEntry->pProperties->Insert(PROP_PARA_ADJUST, 
paraAdjust->second, false);
+}
+else
+{
+// Left alignment if not already set
+pEntry->pProperties->Insert(PROP_PARA_ADJUST, 
uno::makeAny(sal_Int16(style::ParagraphAdjust_LEFT)), false);
+}
+}
 }
 
 auto aPropValues = comphelper::sequenceToContainer< 
std::vector >(pEntry->pProperties->GetPropertyValues());
@@ -1437,6 +1460,8 @@ OUString StyleSheetTable::ConvertStyleName( const 
OUString& rWWName, bool bExten
 ++aIt;
 }
 }
+
+// create a map only once
 if(m_pImpl->m_aStyleNameMap.empty())
 {
 for( sal_uInt32 nPair = 0; nPair < SAL_N_ELEMENTS(aStyleNamePairs)/2; 
++nPair)
@@ -1450,15 +1475,15 @@ OUString StyleSheetTable::ConvertStyleName( const 
OUString& rWWName, bool bExten
 }
 }
 }
+
+// find style-name using map
 StringPairMap_t::iterator aIt = m_pImpl->m_aStyleNameMap.find( sRet );
-bool bConverted = false;
+
 if (aIt != m_pImpl->m_aStyleNameMap.end())
 {
-bConverted = true;
 sRet = aIt->second;
 }
-
-if (!bConverted)
+else
 {
 // SwStyleNameMapper doc says: If the UI style name equals a
 // programmatic name, then it must append " (user)" to the end.
@@ -1466,6 +1491,7 @@ OUString StyleSheetTable::ConvertStyleName( const 
OUString& rWWName, bool bExten
 if (aReservedIt != 

[Libreoffice-bugs] [Bug 35563] FORMATTING: Add text wrapping around images

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35563

Regina Henschel  changed:

   What|Removed |Added

 CC||m...@samtuke.com

--- Comment #17 from Regina Henschel  ---
*** Bug 113575 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 113575] FORMATTING Allow object / image wrap in Impress

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113575

Regina Henschel  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||rb.hensc...@t-online.de
 Resolution|--- |DUPLICATE

--- Comment #1 from Regina Henschel  ---
Impress does not have continuous text as Writer it has, but has only single
graphic objects. Your request is the same as if you would intersect a
"Text-box"-shape (that form the T icon) and a circle in Writer.

Nevertheless it is a valid request and has been already requested before.

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

-- 
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 99525] [META][SUPER] Enhance Draw's DTP capabilities

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99525
Bug 99525 depends on bug 99339, which changed state.

Bug 99339 Summary: FORMATTING: Add text wrapping around images in Draw
https://bugs.documentfoundation.org/show_bug.cgi?id=99339

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 105815] [META] Draw image bugs and enhancements

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105815
Bug 105815 depends on bug 99339, which changed state.

Bug 99339 Summary: FORMATTING: Add text wrapping around images in Draw
https://bugs.documentfoundation.org/show_bug.cgi?id=99339

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 35563] FORMATTING: Add text wrapping around images

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35563

--- Comment #16 from Regina Henschel  ---
*** Bug 99339 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-ux-advise] [Bug 99339] FORMATTING: Add text wrapping around images in Draw

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99339

Regina Henschel  changed:

   What|Removed |Added

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

--- Comment #4 from Regina Henschel  ---


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

-- 
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-ux-advise] [Bug 99525] [META][SUPER] Enhance Draw's DTP capabilities

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99525
Bug 99525 depends on bug 99339, which changed state.

Bug 99339 Summary: FORMATTING: Add text wrapping around images in Draw
https://bugs.documentfoundation.org/show_bug.cgi?id=99339

   What|Removed |Added

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

-- 
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 99339] FORMATTING: Add text wrapping around images in Draw

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99339

Regina Henschel  changed:

   What|Removed |Added

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

--- Comment #4 from Regina Henschel  ---


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

-- 
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 86610] Firefox theme results are limited to nine; there is no pagination

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86610

Adolfo Jayme  changed:

   What|Removed |Added

Summary|Don't select 'firefox   |Firefox theme results are
   |theme'. |limited to nine; there is
   ||no pagination
   Severity|minor   |enhancement

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


[Libreoffice-bugs] [Bug 112648] (Japanese) Buttons and tooltips on chart property pane are not localized

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112648

Adolfo Jayme  changed:

   What|Removed |Added

Summary|LOCALIZATION Buttons and|(Japanese) Buttons and
   |tooltips on chart property  |tooltips on chart property
   |pane are not localized  |pane are not localized

-- 
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 93433] incomplete display of long autocorrect list in the replacement table and possible data loss when saving

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93433

--- Comment #36 from tommy27  ---
very strange... how can the same file be sorted in a different alphabetic order
in 2 different computers?

maybe you have a different locale setting in which the ø is shown after the
z...

in my computer the "ø" entries are at the the top of the list and the last are
the "z" ones.

-- 
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 113532] Bundle and use open source Arabic fonts by default

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113532

--- Comment #4 from Yousuf Philips (jay)  ---
(In reply to Khaled Hosny from comment #3)
> No link. Arabeyes do not design these fonts (I know be cause I used to
> maintain them at some point) and the person who released these fonts under
> GPL never answered my queries about the source of these fonts. Some web
> search should reveal that some of these fonts are still distributed
> elsewhere by their original designers under a non-free license.

Quite unfortunate that this is the case (though i knew you used to maintain
them :D).

> The fonts were not accompanied by a LICENSE file, only a copyright notice
> inside the fonts referring to GPL without specifying a license version. If
> they were still distributed by KACST hopefully a LICENSE file would be
> present or some one would answer queries about the license (again, my
> attempts to clarify this went nowhere).

It is mentioned in the font description that "KACST holds the copyright of the
included Arabic font which is donated under GPL by KACST", so as they didnt
mention which version of the GPL, we shouldn't distribute it?

> There are not that many free Arabic fonts actually, in addition to the
> sources you mentioned there is also Google Fonts:
> https://fonts.google.com/?subset=arabic

Have seen the fonts at google fonts before, do you have any recommendations?

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


  1   2   3   4   >