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

2017-08-21 Thread Tamás Zolnai
 include/filter/msfilter/escherex.hxx|2 
 include/oox/export/vmlexport.hxx|   21 -
 oox/source/export/vmlexport.cxx |   27 ++
 oox/source/vml/vmlshape.cxx |2 
 sw/qa/extras/ooxmlexport/data/activex_control_align.odt |binary
 sw/qa/extras/ooxmlexport/ooxmlexport9.cxx   |   62 
 sw/qa/extras/ooxmlimport/ooxmlimport.cxx|   11 +-
 sw/source/filter/ww8/docxattributeoutput.cxx|9 +-
 8 files changed, 120 insertions(+), 14 deletions(-)

New commits:
commit 2d1fe7fb67ec1ff1b96912c0945d17d54aecb12e
Author: Tamás Zolnai 
Date:   Tue Aug 22 02:02:07 2017 +0200

Fix two issues in ActiveX DOCX import / export code

* Inline anchored VML shape had wrong vertical position
** In MSO inline shapes are positioned to the top of the baseline
* During export all shape ids were the same (shape_0)
** VML shapes used to be exported only as fallback,
   I guess that's why it did not cause any issue before.
** Override the shapeid generator with a new one, which
   actually generates unique shapeids.

Change-Id: I752f39d092d0b61d91824141655dae662dbeafbc
Reviewed-on: https://gerrit.libreoffice.org/41319
Reviewed-by: Tamás Zolnai 
Tested-by: Tamás Zolnai 

diff --git a/include/filter/msfilter/escherex.hxx 
b/include/filter/msfilter/escherex.hxx
index 14e1d69d5aab..f1468ef7f5df 100644
--- a/include/filter/msfilter/escherex.hxx
+++ b/include/filter/msfilter/escherex.hxx
@@ -1052,7 +1052,7 @@ public:
 
 /** Creates and returns a new shape identifier, updates the internal shape
 counters and registers the identifier in the DGG cluster table. */
-sal_uInt32   GenerateShapeId() { return mxGlobal->GenerateShapeId( 
mnCurrentDg, mbEscherSpgr ); }
+virtual sal_uInt32   GenerateShapeId() { return mxGlobal->GenerateShapeId( 
mnCurrentDg, mbEscherSpgr ); }
 
 /** Returns the graphic provider from the global object that has been
 passed to the constructor.
diff --git a/include/oox/export/vmlexport.hxx b/include/oox/export/vmlexport.hxx
index c098ace13cb7..ee40b933deaa 100644
--- a/include/oox/export/vmlexport.hxx
+++ b/include/oox/export/vmlexport.hxx
@@ -111,6 +111,17 @@ class OOX_DLLPUBLIC VMLExport : public EscherEx
 /// Use '#' mark for type attribute (check Type Attribute of VML shape in 
OOXML documentation)
 bool m_bUseHashMarkForType;
 
+/** There is a shapeid generation mechanism in EscherEx, but it does not 
seem to work
+*   so override the existing behavior to get actually unique ids.
+*/
+bool m_bOverrideShapeIdGeneration;
+
+/// Prefix for overriden shape id generation (used if 
m_bOverrideShapeIdGeneration is true)
+OString m_sShapeIDPrefix;
+
+/// Counter for generating shape ids (used if m_bOverrideShapeIdGeneration 
is true)
+sal_uInt64 m_nShapeIDCounter;
+
 public:
 VMLExport( ::sax_fastparser::FSHelperPtr const & 
pSerializer, VMLTextExport* pTextExport = nullptr);
 virtual ~VMLExport() override;
@@ -130,8 +141,9 @@ public:
 virtual void  AddSdrObjectVMLObject( const SdrObject& rObj) override;
 static bool IsWaterMarkShape(const OUString& rStr);
 
-voidSetSkipwzName() { m_bSkipwzName = true; }
-voidSetHashMarkForType() { m_bUseHashMarkForType = true; }
+voidSetSkipwzName(bool bSkipwzName) { m_bSkipwzName = bSkipwzName; }
+voidSetHashMarkForType(bool bUseHashMarkForType) { 
m_bUseHashMarkForType = bUseHashMarkForType; }
+voidOverrideShapeIDGen(bool bOverrideShapeIdGeneration, const OString 
sShapeIDPrefix = OString());
 protected:
 /// Add an attribute to the generated  element.
 ///
@@ -142,6 +154,9 @@ protected:
 using EscherEx::StartShape;
 using EscherEx::EndShape;
 
+/// Override shape ID generation when m_bOverrideShapeIdGeneration is set 
to true
+virtual sal_uInt32   GenerateShapeId() override;
+
 /// Start the shape for which we just collected the information.
 ///
 /// Returns the element's tag number, -1 means we wrote nothing.
@@ -165,7 +180,7 @@ private:
 
 private:
 /// Create an OString representing the id from a numerical id.
-static OString ShapeIdString( sal_uInt32 nId );
+OString ShapeIdString( sal_uInt32 nId );
 
 /// Add flip X and\or flip Y
 void AddFlipXY( );
diff --git a/oox/source/export/vmlexport.cxx b/oox/source/export/vmlexport.cxx
index a401c3c44465..f45edde6cc86 100644
--- a/oox/source/export/vmlexport.cxx
+++ b/oox/source/export/vmlexport.cxx
@@ -68,6 +68,8 @@ VMLExport::VMLExport( ::sax_fastparser::FSHelperPtr const & 
pSerializer, VMLText
 , m_aShapeTypeWritten( ESCHER_ShpInst_COUNT )
 , m_bSkipwzName( false )
 , m_bUseHashMarkForType( false )
+, 

[Libreoffice-bugs] [Bug 111888] change method of creating of variable in Writer's dialogue " Fields"

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111888

--- Comment #6 from kompilainenn <79045_79...@mail.ru> ---
(In reply to Dieter Praas from comment #5)
> @kompilainenn: I don't understand why you changed the version back to
> master. The earliest affected version is requested.

because this is 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 111954] New: The scale of the windows is off ( things are cut off on all the edges).

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111954

Bug ID: 111954
   Summary: The scale of the windows is off (things are cut off on
all the edges).
   Product: LibreOffice
   Version: 5.4.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: law97...@gmail.com

Created attachment 135714
  --> https://bugs.documentfoundation.org/attachment.cgi?id=135714=edit
scale issues - see how the edges are cut off, and the menu is missing.

The window has all the edges cut off.  I cannot see the menu, and the mouse
does not point to the spot where the click is registered (it is one or two rows
above where the mouse pointer is pointing.

-- 
You are receiving this mail because:
You 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 38394] EDITING: Can' t insert a French opening quote after an apostrophe using AutoCorrection

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=38394

--- Comment #10 from halima  ---
Faced same issue on LO Version: 5.4.0.3 (x64)
Build ID: 7556cbc6811c9d992f4064ab9287069087d7f62c
Threads CPU : 4; OS : Windows 6.19;

Also, as Milan Bouchet-Valat mentioned, the opening quote is not detected
correctly, the first one is a closing quote instead of the opening quote

-- 
You are receiving this mail because:
You 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 108760] [META] DOCX style bugs and enhancements

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108760
Bug 108760 depends on bug 98700, which changed state.

Bug 98700 Summary: FILESAVE: toggled "keep with next paragraph"  
incorrectly set when saving as DOCX
https://bugs.documentfoundation.org/show_bug.cgi?id=98700

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 57981] French : spaces before exclamation/ question marks in brackets deleted

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57981

halima  changed:

   What|Removed |Added

 CC||hal...@icraft.jp

--- Comment #13 from halima  ---
This bug is still present in LO  Version: 5.4.0.3 (x64)
Build ID: 7556cbc6811c9d992f4064ab9287069087d7f62c
Threads CPU : 4; OS : Windows 6.19; UI Render : par défaut; 
Locale : en-GB (fr_FR); 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


how to make

2017-08-21 Thread Ken. A Sandoval Ruiz
data validation.
I need help please with creating a dropdown which allows me to select som
data from it.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 111953] New: FILEOPEN no cross to delete unwanted recent documents in all themes except Human

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111953

Bug ID: 111953
   Summary: FILEOPEN no cross to delete unwanted recent documents
in all themes except Human
   Product: LibreOffice
   Version: 5.4.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: darwinev0l...@gmail.com

Linux Mint 18.2 Cinnamon 64-bit
LibreOffice 5.4.3
Hi, so this appears to be a theme problem. The default Tango doesn't show a
delete cross in the top right hand corner of a document thumbnail to delete it
from the recent documents list. Neither does Helpimg, nor Oxygen. The only one
I have that does is Human

-- 
You are receiving this mail because:
You 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 96039] Not possible to set shortcuts to view modes

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96039

--- Comment #5 from madmaze  ---
This issue also exists in the latest Dev Build:

Version: 5.4.2.0.0+
Build ID: 6abaa9b1696e25bbb90c98264bcb88d0661b38a6
CPU threads: 6; OS: Linux 4.4; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:libreoffice-5-4, Time:
2017-08-21_09:50:44
Locale: en-US (en_US.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 96039] Not possible to set shortcuts to view modes

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96039

--- Comment #4 from madmaze  ---
I am experiencing the same issue.
In the menu it allows me to assign F-keys to various views, this seems to work,
but not for the normal view.

My steps to reproduce:
1. Tools->Customize
2. Assign F2 to normal-view
3. Exit menu via OK
4. change to other view, hit F2, nothing happens

I should note this does work for other views like notes, outline, notes master
etc...

Version: 5.4.0.3
Build ID: 7556cbc6811c9d992f4064ab9287069087d7f62c
CPU threads: 6; OS: Linux 4.4; UI render: default; VCL: gtk2; 
Locale: en-US (en_US.UTF-8); Calc: group

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


[Libreoffice-commits] core.git: sc/source sd/inc sd/source starmath/inc starmath/source sw/inc sw/source

2017-08-21 Thread Takeshi Abe
 sc/source/filter/xml/xmlwrap.cxx  |4 +++-
 sd/inc/strings.hrc|1 -
 sd/source/filter/xml/sdxmlwrp.cxx |4 +++-
 starmath/inc/strings.hrc  |1 -
 starmath/source/mathmlimport.cxx  |5 +++--
 sw/inc/strings.hrc|1 -
 sw/source/filter/xml/swxml.cxx|5 +++--
 7 files changed, 12 insertions(+), 9 deletions(-)

New commits:
commit 508957dbf49be577188fb4c112405717957b2734
Author: Takeshi Abe 
Date:   Sat Aug 19 23:58:53 2017 +0900

tdf#108706 Unify loading document progress bar label

This also reduces the number of strings to be translated.

Change-Id: I032ba12c1e762ee3851658d439dfe2c81c6bd34f
Reviewed-on: https://gerrit.libreoffice.org/41329
Tested-by: Jenkins 
Reviewed-by: Takeshi Abe 

diff --git a/sc/source/filter/xml/xmlwrap.cxx b/sc/source/filter/xml/xmlwrap.cxx
index 392f420ca8a6..530f08b5ab0e 100644
--- a/sc/source/filter/xml/xmlwrap.cxx
+++ b/sc/source/filter/xml/xmlwrap.cxx
@@ -26,6 +26,8 @@
 #include 
 #include 
 #include 
+#include 
+#include 
 #include 
 #include 
 #include 
@@ -342,7 +344,7 @@ bool ScXMLImportWrapper::Import( ImportFlags nMode, 
ErrCode& rError )
 if (xStatusIndicator.is())
 {
 sal_Int32 nProgressRange(100);
-xStatusIndicator->start(ScGlobal::GetRscString(STR_LOAD_DOC), 
nProgressRange);
+xStatusIndicator->start(SvxResId(RID_SVXSTR_DOC_LOAD), nProgressRange);
 xInfoSet->setPropertyValue("ProgressRange", 
uno::makeAny(nProgressRange));
 }
 
diff --git a/sd/inc/strings.hrc b/sd/inc/strings.hrc
index 7d049670373f..a47b808609e3 100644
--- a/sd/inc/strings.hrc
+++ b/sd/inc/strings.hrc
@@ -334,7 +334,6 @@
 #define STR_PSEUDOSHEET_BACKGROUND  
NC_("STR_PSEUDOSHEET_BACKGROUND", "Background" )
 #define STR_PSEUDOSHEET_NOTES   
NC_("STR_PSEUDOSHEET_NOTES", "Notes" )
 #define STR_POWERPOINT_IMPORT   
NC_("STR_POWERPOINT_IMPORT", "PowerPoint Import")
-#define STR_LOAD_DOCNC_("STR_LOAD_DOC", 
"Load Document" )
 #define STR_SAVE_DOCNC_("STR_SAVE_DOC", 
"Save Document" )
 #define STR_POOLSHEET_BANDED_CELL   
NC_("STR_POOLSHEET_BANDED_CELL", "Banding cell" )
 #define STR_POOLSHEET_HEADER
NC_("STR_POOLSHEET_HEADER", "Header" )
diff --git a/sd/source/filter/xml/sdxmlwrp.cxx 
b/sd/source/filter/xml/sdxmlwrp.cxx
index 56a1368d78aa..fa3bcfa10cdf 100644
--- a/sd/source/filter/xml/sdxmlwrp.cxx
+++ b/sd/source/filter/xml/sdxmlwrp.cxx
@@ -30,6 +30,8 @@
 #include "drawdoc.hxx"
 #include "Outliner.hxx"
 #include 
+#include 
+#include 
 #include 
 
 #include "DrawDocShell.hxx"
@@ -524,7 +526,7 @@ bool SdXMLFilter::Import( ErrCode& nError )
 if(mxStatusIndicator.is())
 {
 sal_Int32 nProgressRange(100);
-OUString aMsg(SdResId(STR_LOAD_DOC));
+OUString aMsg(SvxResId(RID_SVXSTR_DOC_LOAD));
 mxStatusIndicator->start(aMsg, nProgressRange);
 
 // set ProgressRange
diff --git a/starmath/inc/strings.hrc b/starmath/inc/strings.hrc
index b000bfe62ca9..8ef050ec8a56 100644
--- a/starmath/inc/strings.hrc
+++ b/starmath/inc/strings.hrc
@@ -308,7 +308,6 @@
 #define STR_ALIGN_RIGHT NC_("STR_ALIGN_RIGHT", "right" )
 #define STR_CMDBOXWINDOWNC_("STR_CMDBOXWINDOW", "Commands" 
)
 #define RID_DOCUMENTSTR NC_("RID_DOCUMENTSTR", "Formula" )
-#define STR_STATSTR_READING NC_("STR_STATSTR_READING", 
"Loading document..." )
 #define STR_STATSTR_WRITING NC_("STR_STATSTR_WRITING", "Saving 
document..." )
 #define STR_MATH_DOCUMENT_FULLTYPE_CURRENT  
NC_("STR_MATH_DOCUMENT_FULLTYPE_CURRENT", "%PRODUCTNAME %PRODUCTVERSION 
Formula")
 #define RID_ERR_IDENT   NC_("RID_ERR_IDENT", "ERROR : " )
diff --git a/starmath/source/mathmlimport.cxx b/starmath/source/mathmlimport.cxx
index 5eac14f28977..97193e119172 100644
--- a/starmath/source/mathmlimport.cxx
+++ b/starmath/source/mathmlimport.cxx
@@ -54,13 +54,14 @@ one go*/
 #include 
 #include 
 #include 
+#include 
+#include 
 
 #include 
 
 #include "mathmlattr.hxx"
 #include "mathmlimport.hxx"
 #include "register.hxx"
-#include 
 #include 
 #include 
 #include 
@@ -161,7 +162,7 @@ ErrCode SmXMLImportWrapper::Import(SfxMedium )
 sal_Int32 nProgressRange(nSteps);
 if (xStatusIndicator.is())
 {
-xStatusIndicator->start(SmResId(STR_STATSTR_READING), nProgressRange);
+xStatusIndicator->start(SvxResId(RID_SVXSTR_DOC_LOAD), nProgressRange);
 }
 
 nSteps=0;
diff --git a/sw/inc/strings.hrc b/sw/inc/strings.hrc
index bbd31e3318f5..9c42670f24e0 100644
--- a/sw/inc/strings.hrc
+++ b/sw/inc/strings.hrc
@@ -262,7 +262,6 @@
 // Statusbar-titles
 #define STR_STATSTR_W4WREAD 

[Libreoffice-bugs] [Bug 108706] Unify loading document progress bar label

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108706

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-bugs] [Bug 108706] Unify loading document progress bar label

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108706

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

http://cgit.freedesktop.org/libreoffice/core/commit/?id=508957dbf49be577188fb4c112405717957b2734

tdf#108706 Unify loading document progress bar label

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-ux-advise] [Bug 108706] Unify loading document progress bar label

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108706

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.0.0

-- 
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 108706] Unify loading document progress bar label

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108706

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

http://cgit.freedesktop.org/libreoffice/core/commit/?id=508957dbf49be577188fb4c112405717957b2734

tdf#108706 Unify loading document progress bar label

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 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 111934] FILEOPEN: crash sigsev when opening file with invalid style: map

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111934

Xisco Faulí  changed:

   What|Removed |Added

   Priority|medium  |highest
   Severity|major   |critical

-- 
You are receiving this mail because:
You 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 111934] FILEOPEN: crash sigsev when opening file with invalid style: map

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111934

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
Version|5.1.6.2 release |Inherited From OOo

--- Comment #6 from Xisco Faulí  ---
Reproduced in

- Version: 5.2.0.0.alpha1+
Build ID: 5b168b3fa568e48e795234dc5fa454bf24c9805e
CPU Threads: 4; OS Version: Linux 4.8; UI Render: default; 
Locale: ca-ES (ca_ES.UTF-8)

- Version: 5.0.0.0.alpha1+
Build ID: 0db96caf0fcce09b87621c11b584a6d81cc7df86
Locale: ca-ES (ca_ES.UTF-8)

- Version: 4.3.0.0.alpha1+
Build ID: c15927f20d4727c3b8de68497b6949e72f9e6e9e

- Version 4.1.0.0.alpha0+ (Build ID: efca6f15609322f62a35619619a6d5fe5c9bd5a)

- 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 111952] LibreOffice crashes when i try to open word documents

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111952

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #1 from Xisco Faulí  ---
User and password is needed to download the document.
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 111930] A form created by Wizard with 1: 1-subform contains input fields with wrong sizes

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111930

Yan  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 111930] A form created by Wizard with 1: 1-subform contains input fields with wrong sizes

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111930

--- Comment #2 from Yan  ---
I tried, and it appears, hsqldb gives no such problems.

A few more remarks: With the MySQL direct access, the problem exists even
without sub-form. I have the impression, that the input fields are delimited by
the number of characters of the actual length of the immediately prior record.

-- 
You are receiving this mail because:
You 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 111923] Residual Effects

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111923

--- Comment #9 from Darrell  ---
Correction to comment 8. OpenGL is enabled for that test.

-- 
You are receiving this mail because:
You 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 111923] Residual Effects

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111923

--- Comment #8 from Darrell  ---
With hardware acceleration and OpenGL turned off, it doesn't show the residual
effects, but the semi-transparent text box is solid on transition and
transition is a bit choppy (same as the "Slide Transition Example" image). I'd
think it was my computer, but this happens on every computer I have 5.3/5.4
installed on, Windows 10 & 7.

-- 
You are receiving this mail because:
You 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 90796] [META] HiDPI / Retina bugs

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90796

Aron Budea  changed:

   What|Removed |Added

 Depends on||111947


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=111947
[Bug 111947] Cursor selection in wrong cell - LibreOffice Calc
-- 
You are receiving this mail because:
You 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 111947] Cursor selection in wrong cell - LibreOffice Calc

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111947

Aron Budea  changed:

   What|Removed |Added

 Blocks||90796


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=90796
[Bug 90796] [META] HiDPI / Retina bugs
-- 
You are receiving this mail because:
You 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 111939] Toggling off Autofilter with VBA macro does not restore filtered rows

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111939

--- Comment #3 from Aron Budea  ---
Raal, how old is your build? The commits that make the code work in general are
from a week or two ago, so it won't work with builds before that time.

Tamas, for me it behaves fine, all rows are shown as expected, tested with a
daily build from 08-11 and a recent master build from 08-19
(e62a8f32688203867fdddbc8ffa89a657b9f) in Windows 7. Could it be
OS-dependent?

-- 
You are receiving this mail because:
You 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 111952] New: LibreOffice crashes when i try to open word documents

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111952

Bug ID: 111952
   Summary: LibreOffice crashes when i try to open word documents
   Product: LibreOffice
   Version: 5.3.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kevinbdes...@yahoo.com

Description:
When i try to open a word document the system crashes and is in a continuous
(not responding) state. i have tried multiple times to correct and reload
document.

Steps to Reproduce:
https://nobts.blackboard.com/bbcswebdav/pid-348817-dt-content-rid-1888724_1/xid-1888724_11.
2.
3.

Actual Results:  
(not responding)

Expected Results:
opened that particular document


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko/20100101
Firefox/54.0

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


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

2017-08-21 Thread Markus Mohrhard
 ucb/source/ucp/webdav/DAVSessionFactory.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0e35b7738d9f276c0566df0f2cc0f1eed7900d6c
Author: Markus Mohrhard 
Date:   Tue Aug 22 00:24:08 2017 +0200

fix build regression from d347c2403605c5aa3ddd98fb605366914acab79f

Change-Id: Ia9e017732814d3f5b1f2efdaef45d96aa22daa46

diff --git a/ucb/source/ucp/webdav/DAVSessionFactory.cxx 
b/ucb/source/ucp/webdav/DAVSessionFactory.cxx
index 0809252bb5f2..24f7a54580e9 100644
--- a/ucb/source/ucp/webdav/DAVSessionFactory.cxx
+++ b/ucb/source/ucp/webdav/DAVSessionFactory.cxx
@@ -57,7 +57,7 @@ rtl::Reference< DAVSession > 
DAVSessionFactory::createDAVSession(
 std::unique_ptr< DAVSession > xElement(
 new SerfSession( this, inUri, *m_xProxyDecider.get() ) );
 
-aIt = m_aMap.emplace(  inUri, xElement.get() ) ).first;
+aIt = m_aMap.emplace(  inUri, xElement.get() ).first;
 aIt->second->m_aContainerIt = aIt;
 xElement.release();
 return aIt->second;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: onlineupdate/StaticLibrary_libmarverify.mk

2017-08-21 Thread Markus Mohrhard
 onlineupdate/StaticLibrary_libmarverify.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e531818579c27ab2e505f1ae960f8a0b9c1c0797
Author: Markus Mohrhard 
Date:   Tue Aug 22 00:20:12 2017 +0200

updater: fix error in linux part of updater makefiles

Change-Id: I2d32159364d34fb4154b7f88590045dc3a442bc3

diff --git a/onlineupdate/StaticLibrary_libmarverify.mk 
b/onlineupdate/StaticLibrary_libmarverify.mk
index d95aeb44f79c..fe866204f4ee 100644
--- a/onlineupdate/StaticLibrary_libmarverify.mk
+++ b/onlineupdate/StaticLibrary_libmarverify.mk
@@ -19,7 +19,7 @@ $(eval $(call gb_StaticLibrary_add_defs,libmarverify,\
-DUNICODE \
 ))
 else
-$(eval $(call gb_StaticLibrary_add_defs,libmar,\
+$(eval $(call gb_StaticLibrary_add_defs,libmarverify,\
-DMAR_NSS \
 ))
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 111920] Cells no automatically recalculated when formula is dependent of language and this is changed

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111920

--- Comment #3 from m.a.riosv  ---
[F9] recalcs all modified cells and dependents, but some matrix functions needs
a hard recalc.

Please @Eike can confirm what it's the proper behavior bere.

-- 
You are receiving this mail because:
You 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 111912] Spreadsheet is displaying cells with complex formulas and data dependencies with zero or some arbitrary value. These columns are feeds for x-y plots , and they begin to

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111912

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #10 from m.a.riosv  ---
There are spaces instead a blank cell in C71:E1999.

LibreOffice it's more restrictive on how convert text on numbers.

You have options about it on Menu/Tools/Options/LibreOffice Calc/Formula -
Detailed calculation settings - Custom - Details, and select the option that
fits what you like, I guess the firts 'Generate #VALUE! error'

Resolved as not a bug, please if you are not agree reopen it.

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


[Libreoffice-bugs] [Bug 109072] [META] XLS bug tracker

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109072

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||51673


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=51673
[Bug 51673] [XLS] MsoDrawing record content is missed on import
-- 
You are receiving this mail because:
You 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 51673] [XLS] MsoDrawing record content is missed on import

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51673

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||109072

--- Comment #6 from Thomas Lendo  ---
Can't see any shape when opening the attached file.

Version: 6.0.0.0.alpha0+
Build ID: bfd8a4e22fe584939f67b64c9c9495a466b16576
CPU threads: 4; OS: Linux 4.10; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2017-08-21_00:52:56
Locale: de-DE (de_DE.UTF-8); Calc: group


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 53273] Unwieldy name in Windows 8 "Open with" dialog

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53273

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||103303


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 103303] [META] Desktop integration bugs and enhancements

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103303

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||53273


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=53273
[Bug 53273] Unwieldy name in Windows 8 "Open with" dialog
-- 
You are receiving this mail because:
You 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 111920] Cells no automatically recalculated when formula is dependent of language and this is changed

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111920

Luis  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 CC||luismiguel.laco...@gmail.co
   ||m
 Ever confirmed|1   |0

--- Comment #2 from Luis  ---
When done a hard recalc all the cells are recalculated.

Also I think I have found a unexpected behaviour of standard recalculate (F9).

As specified pressing the F9 key should not recalculate the cells with the
formulas that use TEXT but in fact the cell in which is the cursor (but only
that cell) is recalculated.

-- 
You are receiving this mail because:
You 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: 3 commits - cppuhelper/source stoc/source

2017-08-21 Thread Michael Stahl
 cppuhelper/source/implbase_ex.cxx  |5 +
 stoc/source/proxy_factory/proxyfac.cxx |7 ---
 2 files changed, 9 insertions(+), 3 deletions(-)

New commits:
commit eda41a271ed319560f0ab111cd9566266ab1bb29
Author: Michael Stahl 
Date:   Mon Aug 21 23:05:09 2017 +0200

cppuhelper: fix double checked locking in getTypeEntries()

Change-Id: I73674f0293a57ed7c4d54aa6b68ff64d5ca4e7bd

diff --git a/cppuhelper/source/implbase_ex.cxx 
b/cppuhelper/source/implbase_ex.cxx
index 2b7b792e718a..d01f61983a91 100644
--- a/cppuhelper/source/implbase_ex.cxx
+++ b/cppuhelper/source/implbase_ex.cxx
@@ -105,9 +105,14 @@ static inline type_entry * getTypeEntries( class_data * cd 
)
 // ref is statically held by getCppuType()
 pEntry->m_type.typeRef = rType.getTypeLibType();
 }
+OSL_DOUBLE_CHECKED_LOCKING_MEMORY_BARRIER();
 cd->m_storedTypeRefs = true;
 }
 }
+else
+{
+OSL_DOUBLE_CHECKED_LOCKING_MEMORY_BARRIER();
+}
 return pEntries;
 }
 
commit 20a7ffd848ee9d9007ae1c9464713f9d1d125bce
Author: Michael Stahl 
Date:   Mon Aug 21 22:54:33 2017 +0200

stoc: remove extra braces

Change-Id: I3b6b77ba58832d7bfc350eeb5e589513b716a081

diff --git a/stoc/source/proxy_factory/proxyfac.cxx 
b/stoc/source/proxy_factory/proxyfac.cxx
index 49f380e86d0d..ae2c94f3c426 100644
--- a/stoc/source/proxy_factory/proxyfac.cxx
+++ b/stoc/source/proxy_factory/proxyfac.cxx
@@ -432,7 +432,6 @@ Reference< XInterface > SAL_CALL proxyfac_create(
 SAL_UNUSED_PARAMETER Reference< XComponentContext > const & )
 {
 Reference< XInterface > xRet;
-{
 static osl::Mutex s_mutex;
 // note: don't use ::osl::Mutex::getGlobalMutex() here, it deadlocks
 //   with getImplHelperInitMutex()
@@ -445,7 +444,6 @@ Reference< XInterface > SAL_CALL proxyfac_create(
 xRet = static_cast< ::cppu::OWeakObject * >(new FactoryImpl);
 rwInstance = xRet;
 }
-}
 return xRet;
 }
 
commit 7936368f9e7d0c50f7e3ebb987778029d0dcc22c
Author: Michael Stahl 
Date:   Mon Aug 21 22:40:57 2017 +0200

stoc: deadlock osl::Mutex::getGlobalMutex() vs getImplHelperInitMutex()

As found in a clang/ASAN build running UITest_writer_demo.

cppu::getTypeEntries locks getImplHelperInitMutex().

Let's try to replace the usage of getGlobalMutex() in proxyfac_create()
with a new static Mutex that is only used in that function.

{1: 7, 6: 1, 7: 1}
Thread 1 is waiting for 7
Thread 7 is waiting for 1

Thread 7 (Thread 0x7f34a147a700 (LWP 2530)):
2  osl_acquireMutex(oslMutexImpl*) (pMutex=0x7f34f620a3e0 
) at sal/osl/unx/mutex.cxx:97
3  osl::Mutex::acquire() (this=0x7f34f61f7da0 
) at include/osl/mutex.hxx:56
4  osl::Guard::Guard(osl::Mutex*) (this=0x7f349f6dc420, 
pT_=0x7f34f61f7da0 ) at 
include/osl/mutex.hxx:122
5  
com::sun::star::lang::cppu_detail_getUnoType(com::sun::star::lang::XSingleComponentFactory
 const*) () at 
workdir/UnoApiHeadersTarget/udkapi/normal/com/sun/star/lang/XSingleComponentFactory.hpp:69
6  cppu::UnoType::get() () 
at include/cppu/unotype.hxx:296
7  com::sun::star::lang::XSingleComponentFactory::static_type(void*) () at 
workdir/UnoApiHeadersTarget/udkapi/normal/com/sun/star/lang/XSingleComponentFactory.hpp:146
8  cppu::getTypeEntries(cppu::class_data*) (cd=0x7f34bddacb40 
, 
com::sun::star::lang::XSingleComponentFactory, 
com::sun::star::lang::XServiceInfo>::operator()()::s_cd>) at 
cppuhelper/source/implbase_ex.cxx:96
9  cppu::queryDeepNoXInterface(_typelib_TypeDescriptionReference const*, 
cppu::class_data*, void*) (pDemandedTDR=0x60f42940, cd=0x7f34bddacb40 
, 
com::sun::star::lang::XSingleComponentFactory, 
com::sun::star::lang::XServiceInfo>::operator()()::s_cd>, that=0x606000d3d3c0) 
at cppuhelper/source/implbase_ex.cxx:168
10 cppu::WeakImplHelper_query(com::sun::star::uno::Type const&, 
cppu::class_data*, void*, cppu::OWeakObject*) (rType=invalid uno::Type, 
cd=0x7f34bddacb40 
, 
com::sun::star::lang::XSingleComponentFactory, 
com::sun::star::lang::XServiceInfo>::operator()()::s_cd>, that=0x606000d3d3c0, 
pBase=0x606000d3d3c0) at cppuhelper/source/implbase_ex.cxx:296
11 cppu::WeakImplHelper::queryInterface(com::sun::star::uno::Type 
const&) (this=0x606000d3d3c0, aType=invalid uno::Type) at 
include/cppuhelper/implbase.hxx:108
12 non-virtual thunk to 

[Libreoffice-bugs] [Bug 108445] [META] Database import/open bugs and enhancements

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108445

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||51779


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=51779
[Bug 51779] support for SQL datatype INTERVAL
-- 
You are receiving this mail because:
You 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 51779] support for SQL datatype INTERVAL

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51779

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108445


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 52555] Protected form becomes editable after saving in DOC format

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=52555

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||104527


Referenced Bugs:

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


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

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||52555


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=52555
[Bug 52555] Protected form becomes editable after saving in DOC format
-- 
You are receiving this mail because:
You 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 108731] [META] Export formats available through File > Export...

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108731

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||50620


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=50620
[Bug 50620] Missing WordPerfect export filter
-- 
You are receiving this mail because:
You 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 50620] Missing WordPerfect export filter

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50620

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108731


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108731
[Bug 108731] [META] Export formats available through File > 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 103309] [META] Print dialog bugs and enhancements

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103309

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||53492


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=53492
[Bug 53492] Impress: Allign prints on paper
-- 
You are receiving this mail because:
You 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 53492] Impress: Allign prints on paper

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53492

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||103309


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 108198] [META] ODF export is unsuitable or invalid XML

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108198

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||53992


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=53992
[Bug 53992] FORMATTING MS-COMPAT: Handling of fo:wrap-option and sequential
 elements
-- 
You are receiving this mail because:
You 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 53992] FORMATTING MS-COMPAT: Handling of fo: wrap-option and sequential elements

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53992

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108198


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108198
[Bug 108198] [META] ODF export is unsuitable or invalid XML
-- 
You are receiving this mail because:
You 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 109012] unable to open .html file

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109012

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||111951


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 111882] Small fail rendering antialised font at end of word/paragraf.

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111882

--- Comment #11 from Luis  ---
Created attachment 135713
  --> https://bugs.documentfoundation.org/attachment.cgi?id=135713=edit
Comparison of text in list box

Tested in Windows 8.1

I have created a dialog with a list box control using font Tahoma size 8.
Then capture the control with diferent setings.

1) OpenGL enabled (use HW acel. can not be selected)

2) OpenGL disabled, HW aceleration enabled 

3) OpenGL disabled, HW aceleration disabled

All options show similar results (see attachement with zoomed text).

-- 
You are receiving this mail because:
You 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 88701] FILEOPEN: Problem with import of HTML/ MHTML files with extension XLS on Windows

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88701

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||111951


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 96499] FILEOPEN: HTML format .xls file shows NUMERIC cell value while TEXT type is expected

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96499

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||111951


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 108254] [META] Format filters (import/export) bugs and enhancements

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108254

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||111951


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 66037] FILEOPEN: MathML formulas in HTML documents are not imported correctly, HTML5 import filter needed

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66037

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||111951


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 96102] FILEOPEN: LibO hangs with 100% CPU when loading an .html incorrectly labeled as .doc

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96102

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||111951


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 44196] FILEOPEN: Open .html file into Calc adds absolute path to relative HREF= URL

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=44196

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||111951


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 51430] FILEOPEN: HTML documents without META Content-Type are opened with a Chinese codepage

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51430

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||111951


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 51345] FILEOPEN: x: num attribute is not handled while importing HTML files created by Excel 2003

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51345

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||111951


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 33037] Can't open HTML file --> freeze

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=33037

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||111951


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 40218] FILEOPEN: Calc confused by unclosed HTML tags

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=40218

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||111951


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 37753] libreoffice cannot import/open a valid .xhtml file.

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37753

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||111951


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 111951] [META] HTML import bugs and enhancements

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111951

Thomas Lendo  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Blocks||108254
 Depends on||51430, 33037, 40218, 96499,
   ||96102, 66037, 44196, 88701,
   ||51345, 37753, 109012
 Ever confirmed|0   |1
  Alias||HTML-Import


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=33037
[Bug 33037] Can't open HTML file --> freeze
https://bugs.documentfoundation.org/show_bug.cgi?id=37753
[Bug 37753] libreoffice cannot import/open a valid .xhtml file.
https://bugs.documentfoundation.org/show_bug.cgi?id=40218
[Bug 40218] FILEOPEN: Calc confused by unclosed HTML tags
https://bugs.documentfoundation.org/show_bug.cgi?id=44196
[Bug 44196] FILEOPEN: Open .html file into Calc adds absolute path to relative
HREF= URL
https://bugs.documentfoundation.org/show_bug.cgi?id=51345
[Bug 51345] FILEOPEN: x:num attribute is not handled while importing HTML files
created by Excel 2003
https://bugs.documentfoundation.org/show_bug.cgi?id=51430
[Bug 51430] FILEOPEN: HTML documents without META Content-Type are opened with
a Chinese codepage
https://bugs.documentfoundation.org/show_bug.cgi?id=66037
[Bug 66037] FILEOPEN: MathML formulas in HTML documents are not imported
correctly, HTML5 import filter needed
https://bugs.documentfoundation.org/show_bug.cgi?id=88701
[Bug 88701] FILEOPEN: Problem with import of HTML/ MHTML files with extension
XLS on Windows
https://bugs.documentfoundation.org/show_bug.cgi?id=96102
[Bug 96102] FILEOPEN: LibO hangs with 100% CPU when loading an .html
incorrectly labeled as .doc
https://bugs.documentfoundation.org/show_bug.cgi?id=96499
[Bug 96499] FILEOPEN: HTML format .xls file shows NUMERIC cell value while TEXT
type is expected
https://bugs.documentfoundation.org/show_bug.cgi?id=108254
[Bug 108254] [META] Format filters (import/export) bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=109012
[Bug 109012] unable to open .html 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 108799] [META] HTML export bugs and enhancements

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108799

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||89069


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=89069
[Bug 89069] FILESAVE: HTML output removes bold/italic from open-quote
characters
-- 
You are receiving this mail because:
You 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 89069] FILESAVE: HTML output removes bold/ italic from open-quote characters

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89069

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108799


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 89589] Change the size and position of the window display presentation.

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89589

Jean-Baptiste Faure  changed:

   What|Removed |Added

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

--- Comment #6 from Jean-Baptiste Faure  ---
How do you get the presentation in a window instead of full screen? Is it by
changing the choice in menu Slide Show > Slide Show Settings ?
When changing from "Full screen" to "In a window" I can change the size and
move the window in which the presentation is shown.

Set status to NEEDINFO, please set it back to UNCONFIRMED once requested
informations are provided.

Best regards. JBF

-- 
You are receiving this mail because:
You 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 106111] Display, PDF, print and print preview broken for all spreadsheets with line breaks, wrong scaling depending on zoom level (5.3 regression) ( steps in comment 40)

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106111

Steve Edmonds  changed:

   What|Removed |Added

 CC||st...@edmondsfamily.co.nz

--- Comment #57 from Steve Edmonds  ---
This effect also seems font related. If I change the font in a cell of
issue.ods from Arial to Andale Sans the problem virtually vanishes for me.

-- 
You are receiving this mail because:
You 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 111949] MAILMERGE: Wizards 3rd step page should change title according to the document type selected in 2nd step

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111949

Gabor Kelemen  changed:

   What|Removed |Added

 Blocks||102998


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 102998] [META] Mail merge bugs and enhancements

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102998

Gabor Kelemen  changed:

   What|Removed |Added

 Depends on||111949


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=111949
[Bug 111949] MAILMERGE: Wizards 3rd step page should change title according to
the document type selected in 2nd step
-- 
You are receiving this mail because:
You 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 111951] New: [META] HTML import bugs and enhancements

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111951

Bug ID: 111951
   Summary: [META] HTML import bugs and enhancements
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: filters and storage
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: thomas.le...@gmail.com

Meta bug for opening a html 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 111950] New: Icons needed for Mail Merge Toolbar

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111950

Bug ID: 111950
   Summary: Icons needed for Mail Merge Toolbar
   Product: LibreOffice
   Version: 6.0.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com

1, Start Writer from the command line in a debug build
2, Select View - Toolbars - Mail Merge
3, In the terminal the following warnings appear, indicating the lack of icons
belonging to the Mail Merge Toolbar - although the code is prepared for them:

 warn:ucb.ucp.gio:27404:1:ucb/source/ucp/gio/gio_content.cxx:393: ignoring
GError "Operation not supported" for <>
warn:fwk.uiconfiguration:27404:1:framework/source/uiconfiguration/ImageArrayData.cxx:74:
Failed to load image 'cmd/lc_mailmergeemaildocuments.png' from icon theme
'breeze'
warn:ucb.ucp.gio:27404:1:ucb/source/ucp/gio/gio_content.cxx:393: ignoring
GError "Operation not supported" for <>
warn:fwk.uiconfiguration:27404:1:framework/source/uiconfiguration/ImageArrayData.cxx:74:
Failed to load image 'cmd/lc_mailmergeexcludeentry.png' from icon theme
'breeze'
warn:ucb.ucp.gio:27404:1:ucb/source/ucp/gio/gio_content.cxx:393: ignoring
GError "Operation not supported" for <>
warn:fwk.uiconfiguration:27404:1:framework/source/uiconfiguration/ImageArrayData.cxx:74:
Failed to load image 'cmd/lc_mailmergecurrententry.png' from icon theme
'breeze'
warn:ucb.ucp.gio:27404:1:ucb/source/ucp/gio/gio_content.cxx:393: ignoring
GError "Operation not supported" for <>
warn:fwk.uiconfiguration:27404:1:framework/source/uiconfiguration/ImageArrayData.cxx:74:
Failed to load image 'cmd/lc_mailmergecreatedocuments.png' from icon theme
'breeze'
warn:ucb.ucp.gio:27404:1:ucb/source/ucp/gio/gio_content.cxx:393: ignoring
GError "Operation not supported" for <>
warn:fwk.uiconfiguration:27404:1:framework/source/uiconfiguration/ImageArrayData.cxx:74:
Failed to load image 'cmd/lc_mailmergesavedocuments.png' from icon theme
'breeze'
warn:ucb.ucp.gio:27404:1:ucb/source/ucp/gio/gio_content.cxx:393: ignoring
GError "Operation not supported" for <>
warn:fwk.uiconfiguration:27404:1:framework/source/uiconfiguration/ImageArrayData.cxx:74:
Failed to load image 'cmd/lc_mailmergeprintdocuments.png' from icon theme
'breeze'

My inspiration for filing this is
https://bugs.documentfoundation.org/show_bug.cgi?id=109118#c6

-- 
You are receiving this mail because:
You 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 111912] Spreadsheet is displaying cells with complex formulas and data dependencies with zero or some arbitrary value. These columns are feeds for x-y plots , and they begin to

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111912

--- Comment #9 from Mark Lytle  ---
Created attachment 135712
  --> https://bugs.documentfoundation.org/attachment.cgi?id=135712=edit
Same problem under LO 5.4 as noted earlier.

-- 
You are receiving this mail because:
You 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 51267] after removing registrymodifications.xcu the existing user/ basic/ dialog.xlc and scrip.xlc are overwritten and existing user libraries seem lost

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51267

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||107636


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 107636] [META] User profile bugs and enhancements

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107636

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||51267


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=51267
[Bug 51267] after removing registrymodifications.xcu the existing
user/basic/dialog.xlc and scrip.xlc are overwritten and existing user libraries
seem lost
-- 
You are receiving this mail because:
You 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 111949] New: MAILMERGE: Wizards 3rd step page should change title according to the document type selected in 2nd step

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111949

Bug ID: 111949
   Summary: MAILMERGE: Wizards 3rd step page should change title
according to the document type selected in 2nd step
   Product: LibreOffice
   Version: 5.4.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com

1, In the second step of the Mail Merge Wizard it is possible to select between
Letter and E-mail message document types.
2, The title of the third step in the left side Steps list changes according to
this choice: "Insert address block" if Letter is selected or "Select address
list" if E-mail message is selected.
3, When selecting the third step, the wizard page title is always Insert
Address Block in the right side. This is confusing if the E-mail types was
selected, as there is no address block to be selected in this case, only an
address list. 
See
http://nabble.documentfoundation.org/libreoffice-l10n-Errors-in-help-found-in-Pootle-td4218288.html
for an example of such confusion.

I think it would make sense to change the wizard page title depending on the
document 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 92717] VIEWING UI LibreOffice Impress Internet Presentation with 1 monitor and having 2 windows (1 for the presentation and 1 for the console)

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92717

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||jbfa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #4 from Jean-Baptiste Faure  ---
Valid enhancement request -> set to NEW.

Best regards. JBF

-- 
You are receiving this mail because:
You 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 111939] Toggling off Autofilter with VBA macro does not restore filtered rows

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111939

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #2 from raal  ---
LO 6 - error when run macro: BASIC runtime error.
'91'

Type: com.sun.star.lang.WrappedTargetRuntimeException
Message: non-RuntimeException occurred when accessing an interface type
attribute

-- 
You are receiving this mail because:
You 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 111948] [META] Insert file content issues

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111948

Thomas Lendo  changed:

   What|Removed |Added

  Alias|Inssert-File-Content|

-- 
You are receiving this mail because:
You 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 111948] [META] Insert file content issues

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111948

Thomas Lendo  changed:

   What|Removed |Added

  Alias||Insert-File-Content

-- 
You are receiving this mail because:
You 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 111495] FILEOPEN: Incorrect image colours in ole objects

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111495

raal  changed:

   What|Removed |Added

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

--- Comment #5 from raal  ---
Confirm. win7,LO 6.

-- 
You are receiving this mail because:
You 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 94857] default template location overwritten by installation

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94857

Jean-Baptiste Faure  changed:

   What|Removed |Added

Version|unspecified |5.0.2.2 release

-- 
You are receiving this mail because:
You 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: 2 commits - include/tools vcl/source

2017-08-21 Thread Andrea Gelmini
 include/tools/wintypes.hxx|1 -
 vcl/source/filter/wmf/wmf.cxx |2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 7462288deca02b8a9054ff657bad970246c352fa
Author: Andrea Gelmini 
Date:   Mon Aug 21 22:18:52 2017 +0200

WB_STDTABDIALOG no more used

Since commit 6df2c90c08b6

Change-Id: I2862e7c415b9f0d0d1ca2ea1a07e416222d81fd9
Reviewed-on: https://gerrit.libreoffice.org/41405
Reviewed-by: Julien Nabet 
Tested-by: Julien Nabet 

diff --git a/include/tools/wintypes.hxx b/include/tools/wintypes.hxx
index a6b3826698fa..5e2e6b5cf8c7 100644
--- a/include/tools/wintypes.hxx
+++ b/include/tools/wintypes.hxx
@@ -241,7 +241,6 @@ WinBits const WB_STDFLOATWIN =  WB_SIZEMOVE | 
WB_CLOSEABLE | WB_ROLLABLE
 WinBits const WB_STDDIALOG =WB_MOVEABLE | WB_CLOSEABLE;
 WinBits const WB_STDMODELESS =  WB_STDDIALOG;
 WinBits const WB_STDMODAL = WB_STDDIALOG;
-WinBits const WB_STDTABDIALOG = WB_STDDIALOG;
 WinBits const WB_STDTABCONTROL =0;
 WinBits const WB_STDPOPUP = WB_BORDER | WB_POPUP | WB_SYSTEMWINDOW 
| WB_3DLOOK | WB_DIALOGCONTROL;
 
commit ad6756527cd1272523536ec41f3a6cb74b7b673f
Author: Andrea Gelmini 
Date:   Mon Aug 21 22:06:22 2017 +0200

Fix typo

Change-Id: Ife6c317187915ba8df0351b7b96d481345343df6
Reviewed-on: https://gerrit.libreoffice.org/41404
Reviewed-by: Julien Nabet 
Tested-by: Julien Nabet 

diff --git a/vcl/source/filter/wmf/wmf.cxx b/vcl/source/filter/wmf/wmf.cxx
index ac56c74810f4..4bc8d11a6a01 100644
--- a/vcl/source/filter/wmf/wmf.cxx
+++ b/vcl/source/filter/wmf/wmf.cxx
@@ -25,7 +25,7 @@
 
 bool ReadWindowMetafile( SvStream& rStream, GDIMetaFile& rMTF )
 {
-// tdf#111484 Use new method to import Metafile. Take curent StreamPos
+// tdf#111484 Use new method to import Metafile. Take current StreamPos
 // into account (used by SwWW8ImplReader::ReadGrafFile and by
 // SwWw6ReadMetaStream, so do *not* ignore. OTOH XclImpDrawing::ReadWmf
 // is nice enough to copy to an own MemStream to avoid that indirect
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-08-21 Thread Andrea Gelmini
 sw/source/filter/html/wrthtml.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit cfa3a1c39ded1365d2cae78a15d5126e0c96a343
Author: Andrea Gelmini 
Date:   Mon Aug 21 22:05:24 2017 +0200

Fix typo in code

Change-Id: I1a26ab5e9c029c533b87c67499d6aebf871011e7
Reviewed-on: https://gerrit.libreoffice.org/41371
Reviewed-by: Julien Nabet 
Tested-by: Julien Nabet 

diff --git a/sw/source/filter/html/wrthtml.hxx 
b/sw/source/filter/html/wrthtml.hxx
index a081cd1a8d7b..e42b877eee10 100644
--- a/sw/source/filter/html/wrthtml.hxx
+++ b/sw/source/filter/html/wrthtml.hxx
@@ -236,7 +236,7 @@ struct SwHTMLFormatInfo
 {}
 
 // ctor for creating of the format information
-SwHTMLFormatInfo( const SwFormat *pFormat, SwDoc *pDoc, SwDoc *pTemlate,
+SwHTMLFormatInfo( const SwFormat *pFormat, SwDoc *pDoc, SwDoc *pTemplate,
bool bOutStyles, LanguageType eDfltLang=LANGUAGE_DONTKNOW,
sal_uInt16 nScript=CSS1_OUTMODE_ANY_SCRIPT );
 ~SwHTMLFormatInfo();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 108795] Cannot enter colon or semicolon in formula bar ( French version)

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108795

Eike Rathke  changed:

   What|Removed |Added

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

--- Comment #24 from Eike Rathke  ---
AHA! And now I finally can reproduce.. if the character/font attribution has a
French locale that does not match the default locale, weird things happen.
In your case the cell probably has a fr-FR attribute while the default locale
is fr-CA.
Investigating.

-- 
You are receiving this mail because:
You 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 111634] Multiple memory leaks in libmacabdrv1

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111634

--- Comment #26 from Julien Nabet  ---
(In reply to Alex Thurgood from comment #24)
> (In reply to Julien Nabet from comment #22)
> > Alex: do you have some link to explain more precisely how to run LO with
> > XCode?
> >
> 
> Hi Julien,
>  
> You don't need to build LO with XCode, indeed, I'm not even sure that you
> can (I managed once a very long time ago, but before the
> xcode-ide-integration script even existed - however, at the time, and it was
> completely by chance, I couldn't get any executable to run, so forget
> building with XCode).
> 
> You don't need Xcode to use Instruments.app, but the reason I mention it in
> my reports is that Xcode includes a menu entry for developer tools that
> includes Instruments.app. However, as I found out recently, and as Telesto
> has indicated, you can find and start it directly by just typing Instruments
> into the Spotlight search function. Once Instruments has started, you can
> point it to your instdir tree as the target for analysis. Starting the
> recording (having previously selected the analytical tool of your choice
> (memory allocation, leaks, time profiling, stack/call tree, etc) will then
> automatically launch LODev.app in your /instdir, and close LO once you stop
> recording.
> 
> I have to say that it is still a pretty slow process with a debug build,
> even with 8G RAM and 4 cores. Doing even the simplest of recordings can take
> 5 minutes or more each time.

I got only 4GB on my Mac from 2011 (i5, 2,5Ghz), hope that just launching
Instruments instead of use Instruments from xCode will help :-)

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


[Libreoffice-bugs] [Bug 80430] [META] LOCALHELP: Features x Documentation gap

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80430
Bug 80430 depends on bug 107040, which changed state.

Bug 107040 Summary: Calc, SUBTOTAL function: add help for function indexes 
101-111
https://bugs.documentfoundation.org/show_bug.cgi?id=107040

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 108795] Cannot enter colon or semicolon in formula bar ( French version)

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108795

--- Comment #23 from Eike Rathke  ---
(In reply to Miguel from comment #21)
> Well, on my system (5.4.0.3 on Linux Ubuntu 32 bit), when set to French
> (Canada), both with default CAD currency or with EUR-FR
Currency is completely irrelevant. Important is the language/locale of the
character/font attribution of the cell.

> a space is added
> both before ":" and before ";".
Not with fr-CA.

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


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

2017-08-21 Thread heiko tietze
 sfx2/source/dialog/infobar.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4438849e400ecef3cdf2f267dc75a76d4b11aba1
Author: heiko tietze 
Date:   Mon Aug 21 21:13:22 2017 +0200

tdf#111844 infobar icons on high dpi

scaling factor added

Change-Id: Iccfc76832ccfaaffb9950d4b591b379dfb0d9eca
Reviewed-on: https://gerrit.libreoffice.org/41401
Tested-by: Jenkins 
Reviewed-by: Heiko Tietze 

diff --git a/sfx2/source/dialog/infobar.cxx b/sfx2/source/dialog/infobar.cxx
index ec6814edce9c..a7db83925b74 100644
--- a/sfx2/source/dialog/infobar.cxx
+++ b/sfx2/source/dialog/infobar.cxx
@@ -289,7 +289,7 @@ void SfxInfoBarWindow::Resize()
 nX -= nButtonGap;
 }
 
-m_pImage->SetPosSizePixel(Point(4,4), Size(32, 32));
+m_pImage->SetPosSizePixel(Point(4,4), Size(32* fScaleFactor, 32* 
fScaleFactor));
 
 Point aMessagePosition(32 + 10 * fScaleFactor, 10 * fScaleFactor);
 Size aMessageSize(nX - 20 * fScaleFactor, 20 * fScaleFactor);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107327] Edit style command should be disabled when selecting a shape or textbox

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107327

--- Comment #6 from Cor Nouws  ---
(In reply to Yousuf Philips (jay) from comment #5)
> I'm saying that it should be context sensitive, which presently it isnt. :D

ah :) Sorry that I misread this!

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


[Libreoffice-bugs] [Bug 108239] Add paragraph style filtering identical to drop down menu toolbar control into sidebar

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108239

--- Comment #5 from Cor Nouws  ---
(In reply to Yousuf Philips (jay) from comment #4)

> The default selection should be one that is beneficial to both beginners and
> experts, which presently we dont have, while currently we default to
> hierarchical which is only beneficial to experts.

So that is a different discussion.
Maybe open a separate issue and make handling of this one depending on outcome
of that one?

(In reply to Cor Nouws from comment #3)
> (In reply to Yousuf Philips (jay) from comment #2)
>> So the same list found in the toolbar is also accessible in the sidebar.
> 
> Thus you assume that people would appreciate to find that list there too.

This assumption for me still has a (little) question mark ;)

-- 
You are receiving this mail because:
You 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 111634] Multiple memory leaks in libmacabdrv1

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111634

--- Comment #25 from Julien Nabet  ---
(In reply to Telesto from comment #23)
> Instruments is a separate application: Spotlight (CMD + Space), type:
> instruments

Found it, Ctrl + Space gives Spotlight then instruments

-- 
You are receiving this mail because:
You 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 111931] Android: Writer - Unable to insert image into file

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111931

Jean-Baptiste Faure  changed:

   What|Removed |Added

   Hardware|All |ARM
 OS|All |Android

-- 
You are receiving this mail because:
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: Build: Unit test ScFiltersTest::testUnicodeFileNameGnumeric() fails when LANG=en_US.iso88591

2017-08-21 Thread Michael Stahl
On 20.08.2017 17:59, Ulrich Gemkow wrote:
> Hello,
> 
> when building current master in Ubuntu 16.04 in a console 
> where LANG is set to US.iso88591 the unit test
> ScFiltersTest::testUnicodeFileNameGnumeric()
> in sc/qa/unit/subsequent_filters-test.cxx fails with the
> following assertion:
> 
> ===
> 
> assertion failed
> - Expression: xDocSh.is()
> 
> ScFiltersTest::testUnicodeFileNameGnumeric finished in: 10ms
> subsequent_filters-test.cxx:3937:Assertion
> Test name: ScFiltersTest::testUnicodeFileNameGnumeric
> assertion failed
> - Expression: xDocSh.is()
> 
> ===
> 
> The test passes when setting LANG to en_US.utf8.
> 
> I cannot judge whether this is acceptable behavior - today
> it is IMHO not very common to set LANG to something other
> than utf8.

quite frankly, if you set your build to a non-Unicode locale, it's a
case of "doctor, it hurts when i do this - well don't do that then".

it's bad enough that we had to deal with this nonsense on Windows, where
there OS doesn't allow setting a Unicode locale, but since MSVC 2015
added the "-utf-8" command line flag even that problem has gone away.

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


[Libreoffice-bugs] [Bug 111888] change method of creating of variable in Writer's dialogue " Fields"

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111888

--- Comment #5 from Dieter Praas  ---
@kompilainenn: I don't understand why you changed the version back to master.
The earliest affected version is requested.

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


GSoC weekly report - Solving MABs for Android Viewer - Ximeng Zu

2017-08-21 Thread Ximeng Zu
Hello,

 

I spent my last week working on zooming for Calc on Android Viewer. In
short, I didn't succeed. Since I implemented headers and the headers need to
be synced with the main GL content, and there is a syncing problem, we have
decided to fix the zoom and fix DPI = 96 to ensure headers and main GL
content sync. We thought if we do DPI = integer * 96 it also can work and I
succeeded in some cases, but turned out it's not stable and only 96 can work
all times. So, I pushed my patch to Gerrit for record, but noted "don't
merge". I also fixed minor bugs and did some code cleaning.

 

Ximeng

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


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

2017-08-21 Thread Noel Grandin
 include/tools/wintypes.hxx |2 --
 vcl/source/window/splitwin.cxx |   38 +++---
 vcl/source/window/toolbox.cxx  |2 +-
 3 files changed, 12 insertions(+), 30 deletions(-)

New commits:
commit 128282219cab1e94f092276067a40ee5a34b59ff
Author: Noel Grandin 
Date:   Mon Aug 21 11:13:53 2017 +0200

WB_FLATSPLITDRAW is dead

since

commit 2235846149e89dd9fe83cd4fbaf32908983aa571
Date:   Tue Nov 23 18:50:48 2010 +0100
vcl117: reduce duplication of enums

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

diff --git a/include/tools/wintypes.hxx b/include/tools/wintypes.hxx
index 1fb95291e028..a6b3826698fa 100644
--- a/include/tools/wintypes.hxx
+++ b/include/tools/wintypes.hxx
@@ -219,7 +219,6 @@ WinBits const WB_DOCKBORDER =   0x1000;
 
 // Window-Bits for SplitWindow
 WinBits const WB_NOSPLITDRAW =  0x0100;
-WinBits const WB_FLATSPLITDRAW =0x0200;
 
 // Window-Bits for MessageBoxen
 WinBits const WB_OK =   0x0010;
diff --git a/vcl/source/window/splitwin.cxx b/vcl/source/window/splitwin.cxx
index 4314a48d53b6..10854d9767bf 100644
--- a/vcl/source/window/splitwin.cxx
+++ b/vcl/source/window/splitwin.cxx
@@ -1009,7 +1009,7 @@ void SplitWindow::ImplDrawBack(vcl::RenderContext& 
rRenderContext, ImplSplitSet*
 }
 }
 
-static void ImplDrawSplit(vcl::RenderContext& rRenderContext, ImplSplitSet* 
pSet, bool bRows, bool bFlat, bool bDown = true)
+static void ImplDrawSplit(vcl::RenderContext& rRenderContext, ImplSplitSet* 
pSet, bool bRows, bool bDown)
 {
 if (pSet->mpItems.empty())
 return;
@@ -1034,31 +1034,23 @@ static void ImplDrawSplit(vcl::RenderContext& 
rRenderContext, ImplSplitSet* pSet
 nTop= rItems[i]->mnLeft;
 nBottom = rItems[i]->mnLeft+rItems[i]->mnWidth-1;
 
-if (bFlat)
-nPos--;
-
 if (bDown || (nItemSplitSize >= nSplitSize))
 {
 
rRenderContext.SetLineColor(rStyleSettings.GetLightColor());
 rRenderContext.DrawLine(Point(nTop, nPos + 1), 
Point(nBottom, nPos + 1));
 }
 nPos += nSplitSize-2;
-if (bFlat)
-nPos+=2;
 if ((!bDown && (nItemSplitSize >= 2)) ||
 (bDown  && (nItemSplitSize >= nSplitSize - 1)))
 {
 
rRenderContext.SetLineColor(rStyleSettings.GetShadowColor());
 rRenderContext.DrawLine(Point(nTop, nPos), Point(nBottom, 
nPos));
 }
-if (!bFlat)
+nPos++;
+if (!bDown || (nItemSplitSize >= nSplitSize))
 {
-nPos++;
-if (!bDown || (nItemSplitSize >= nSplitSize))
-{
-
rRenderContext.SetLineColor(rStyleSettings.GetDarkShadowColor());
-rRenderContext.DrawLine(Point(nTop, nPos), 
Point(nBottom, nPos));
-}
+
rRenderContext.SetLineColor(rStyleSettings.GetDarkShadowColor());
+rRenderContext.DrawLine(Point(nTop, nPos), Point(nBottom, 
nPos));
 }
 }
 else
@@ -1066,30 +1058,23 @@ static void ImplDrawSplit(vcl::RenderContext& 
rRenderContext, ImplSplitSet* pSet
 nTop= rItems[i]->mnTop;
 nBottom = rItems[i]->mnTop+pSet->mpItems[i]->mnHeight-1;
 
-if (bFlat)
-nPos--;
 if (bDown || (nItemSplitSize >= nSplitSize))
 {
 
rRenderContext.SetLineColor(rStyleSettings.GetLightColor());
 rRenderContext.DrawLine(Point(nPos + 1, nTop), 
Point(nPos+1, nBottom));
 }
 nPos += pSet->mnSplitSize - 2;
-if (bFlat)
-nPos += 2;
 if ((!bDown && (nItemSplitSize >= 2)) ||
 (bDown  && (nItemSplitSize >= nSplitSize - 1)))
 {
 
rRenderContext.SetLineColor(rStyleSettings.GetShadowColor());
 rRenderContext.DrawLine(Point(nPos, nTop), Point(nPos, 
nBottom));
 }
-if( !bFlat )
+nPos++;
+if (!bDown || (nItemSplitSize >= nSplitSize))
 {
-nPos++;
-if (!bDown || (nItemSplitSize >= nSplitSize))
-{
-
rRenderContext.SetLineColor(rStyleSettings.GetDarkShadowColor());
-rRenderContext.DrawLine(Point(nPos, nTop), Point(nPos, 
nBottom));
-

[Libreoffice-commits] help.git: source/text

2017-08-21 Thread Gabor Kelemen
 source/text/swriter/01/05060700.xhp  |2 +-
 source/text/swriter/guide/protection.xhp |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 8ecf172a2713f691ac63908676446fd86eefb2c1
Author: Gabor Kelemen 
Date:   Sun Jul 16 22:45:23 2017 +0200

Fix help pages after translator review


http://nabble.documentfoundation.org/libreoffice-l10n-Errors-in-help-found-in-Pootle-td4218288.html

Change-Id: I41a1ea18c9039e002135ac425ff21c296d65755b
Reviewed-on: https://gerrit.libreoffice.org/40014
Reviewed-by: Gabor Kelemen 
Tested-by: Gabor Kelemen 

diff --git a/source/text/swriter/01/05060700.xhp 
b/source/text/swriter/01/05060700.xhp
index 52ed1b90e..6b4e1a4df 100644
--- a/source/text/swriter/01/05060700.xhp
+++ b/source/text/swriter/01/05060700.xhp
@@ -363,7 +363,7 @@
 Frames allow 
you to link certain events to a function that then decides if the event is 
handled by $[officename] Writer or by the function. See the $[officename] Basic 
Help for more information.
 
 Macro 
From
-Lists the $[officename] program and any 
open $[officename] document. Within this list, select the location 
where you want to save the macros.
+Lists the $[officename] program and any 
open $[officename] document. Within this list, select the location 
where you want to pick the macro from.
 
 Existing Macros
 Lists the available macros. Select the 
macro that you want to assign to the selected event, and then click 
Assign.
diff --git a/source/text/swriter/guide/protection.xhp 
b/source/text/swriter/guide/protection.xhp
index a60c2f8b1..7163741e4 100644
--- a/source/text/swriter/guide/protection.xhp
+++ b/source/text/swriter/guide/protection.xhp
@@ -119,7 +119,7 @@
 Place the cursor in the cell or in the selected cells and 
choose the Table - Unprotect Cells in menu 
bar.
   
   
-For whole 
table, right-click on the table in the Navigator, and choose Table - 
Unprotect in the context menu or select the whole table and choose Tools - Unprotect Cells in menu bar.
+For whole 
table, right-click on the table in the Navigator, and choose Table - 
Unprotect in the context menu or select the whole table and choose Table - Unprotect Cells in menu bar.
   
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

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

New commits:
commit 8638951d73bdaed7f8a9052c94a9463a6779e909
Author: Gabor Kelemen 
Date:   Sun Jul 16 22:45:23 2017 +0200

Updated core
Project: help  8ecf172a2713f691ac63908676446fd86eefb2c1

Fix help pages after translator review


http://nabble.documentfoundation.org/libreoffice-l10n-Errors-in-help-found-in-Pootle-td4218288.html

Change-Id: I41a1ea18c9039e002135ac425ff21c296d65755b
Reviewed-on: https://gerrit.libreoffice.org/40014
Reviewed-by: Gabor Kelemen 
Tested-by: Gabor Kelemen 

diff --git a/helpcontent2 b/helpcontent2
index 12f5fcacd219..8ecf172a2713 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 12f5fcacd219532e748c24b96c3be143e1fec99f
+Subproject commit 8ecf172a2713f691ac63908676446fd86eefb2c1
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107605] Formatting with Cardo font causes line height problem

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107605

V Stuart Foote  changed:

   What|Removed |Added

 Depends on|55469   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=55469
[Bug 55469] Different line spacing across platforms
-- 
You are receiving this mail because:
You 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 111888] change method of creating of variable in Writer's dialogue " Fields"

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111888

kompilainenn <79045_79...@mail.ru> changed:

   What|Removed |Added

Version|5.3.5.2 release |6.0.0.0.alpha0+ 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 111888] change method of creating of variable in Writer's dialogue " Fields"

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111888

--- Comment #4 from kompilainenn <79045_79...@mail.ru> ---
(In reply to Mike Kaganski from comment #3)
> Well, I do believe that it's no value in creating variables without relevant
> fields. Because without a value-setting field, the variable is simply
> useless (at least), needlessly takes a bit of memory, and might confuse one
> later when one supposes that the variable has some meaningful value.

Ok, but i want after creating of variable insert in to document Input field. I
must delete variable field and insert instead it in to document Input field

I can offer else one method:
1. Do not delete text field "Value", but make this optional field. If option is
not active - variable == default, if option is active - user types value of
variable. By default this option not active.
2. In addition to button Insert, make it possible to create a variable without
insert field in document with using green checkbox.

-- 
You are receiving this mail because:
You 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 111934] FILEOPEN: crash sigsev when opening file with invalid style: map

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111934

Julien Nabet  changed:

   What|Removed |Added

   Keywords||haveBacktrace

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


[Libreoffice-bugs] [Bug 111934] FILEOPEN: crash sigsev when opening file with invalid style: map

2017-08-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111934

--- Comment #5 from Julien Nabet  ---
Created attachment 135711
  --> https://bugs.documentfoundation.org/attachment.cgi?id=135711=edit
bt with debug symbols

On pc Debian x86-64 with master sources updated today, I could reproduce this.
I attached an incomplete bt (because stack was quite big)

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


  1   2   3   4   5   6   7   >