[Libreoffice-bugs] [Bug 104444] [META] DOCX limitations related to tables

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

Telesto  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


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

2016-12-06 Thread Stephan Bergmann
 compilerplugins/clang/vclwidgets.cxx |  141 ++-
 1 file changed, 73 insertions(+), 68 deletions(-)

New commits:
commit 9e258eca6d51774fb52e45c25ebec567390db5d6
Author: Stephan Bergmann 
Date:   Wed Dec 7 07:27:24 2016 +0100

Replace calls to get(Qualified)NameAsString with stuff from check.hxx

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

diff --git a/compilerplugins/clang/vclwidgets.cxx 
b/compilerplugins/clang/vclwidgets.cxx
index b373d93..bb0ad54 100644
--- a/compilerplugins/clang/vclwidgets.cxx
+++ b/compilerplugins/clang/vclwidgets.cxx
@@ -51,11 +51,6 @@ private:
 bool mbCheckingMemcpy = false;
 };
 
-static bool startsWith(const std::string& s, const char* other)
-{
-return s.compare(0, strlen(other), other) == 0;
-}
-
 #define BASE_REF_COUNTED_CLASS "VclReferenceBase"
 
 bool BaseCheckNotWindowSubclass(
@@ -65,17 +60,18 @@ bool BaseCheckNotWindowSubclass(
 #endif
 )
 {
-if (BaseDefinition && BaseDefinition->getQualifiedNameAsString() == 
BASE_REF_COUNTED_CLASS) {
-return false;
-}
-return true;
+return !loplugin::DeclCheck(BaseDefinition).Class(BASE_REF_COUNTED_CLASS)
+.GlobalNamespace();
 }
 
 bool isDerivedFromVclReferenceBase(const CXXRecordDecl *decl) {
 if (!decl)
 return false;
-if (decl->getQualifiedNameAsString() == BASE_REF_COUNTED_CLASS)
+if (loplugin::DeclCheck(decl).Class(BASE_REF_COUNTED_CLASS)
+.GlobalNamespace())
+{
 return true;
+}
 if (!decl->hasDefinition()) {
 return false;
 }
@@ -91,17 +87,13 @@ bool isDerivedFromVclReferenceBase(const CXXRecordDecl 
*decl) {
 bool containsVclReferenceBaseSubclass(const Type* pType0);
 
 bool containsVclReferenceBaseSubclass(const QualType& qType) {
-auto t = qType->getAs();
-if (t != nullptr) {
-auto d = dyn_cast(t->getDecl());
-if (d != nullptr) {
-std::string name(d->getQualifiedNameAsString());
-if (name == "ScopedVclPtr" || name == "ScopedVclPtrInstance"
-|| name == "VclPtr" || name == "VclPtrInstance")
-{
-return false;
-}
-}
+auto check = loplugin::TypeCheck(qType);
+if (check.Class("ScopedVclPtr").GlobalNamespace()
+|| check.Class("ScopedVclPtrInstance").GlobalNamespace()
+|| check.Class("VclPtr").GlobalNamespace()
+|| check.Class("VclPtrInstance").GlobalNamespace())
+{
+return false;
 }
 return containsVclReferenceBaseSubclass(qType.getTypePtr());
 }
@@ -116,11 +108,11 @@ bool containsVclReferenceBaseSubclass(const Type* pType0) 
{
 if (pRecordDecl) {
 const ClassTemplateSpecializationDecl* pTemplate = 
dyn_cast(pRecordDecl);
 if (pTemplate) {
-auto name = pTemplate->getQualifiedNameAsString();
-if (name == "VclStatusListener") {
+auto check = loplugin::DeclCheck(pTemplate);
+if (check.Class("VclStatusListener").GlobalNamespace()) {
 return false;
 }
-bool link = name == "Link";
+bool link = bool(check.Class("Link").GlobalNamespace());
 for(unsigned i=0; igetTemplateArgs().size(); ++i) {
 const TemplateArgument& rArg = pTemplate->getTemplateArgs()[i];
 if (rArg.getKind() == TemplateArgument::ArgKind::Type &&
@@ -157,7 +149,9 @@ bool VCLWidgets::VisitCXXDestructorDecl(const 
CXXDestructorDecl* pCXXDestructorD
 }
 const CXXRecordDecl * pRecordDecl = pCXXDestructorDecl->getParent();
 // ignore
-if (pRecordDecl->getQualifiedNameAsString() == BASE_REF_COUNTED_CLASS) {
+if (loplugin::DeclCheck(pRecordDecl).Class(BASE_REF_COUNTED_CLASS)
+.GlobalNamespace())
+{
 return true;
 }
 // check if this class is derived from VclReferenceBase
@@ -171,8 +165,9 @@ bool VCLWidgets::VisitCXXDestructorDecl(const 
CXXDestructorDecl* pCXXDestructorD
 {
 const RecordType *pFieldRecordType = 
fieldDecl->getType()->getAs();
 if (pFieldRecordType) {
-const CXXRecordDecl *pFieldRecordTypeDecl = 
dyn_cast(pFieldRecordType->getDecl());
-if (startsWith(pFieldRecordTypeDecl->getQualifiedNameAsString(), 
"VclPtr")) {
+if (loplugin::DeclCheck(pFieldRecordType->getDecl())
+.Class("VclPtr").GlobalNamespace())
+{
bFoundVclPtrField = true;
break;
 }
@@ -183,7 +178,9 @@ bool VCLWidgets::VisitCXXDestructorDecl(const 
CXXDestructorDecl* pCXXDestructorD
 for(auto methodDecl = pRecordDecl->method_begin();
 methodDecl != pRecordDecl->method_end(); ++methodDecl)
 {
-if (methodDecl->isInstance() && methodDecl->param_size()==0 && 

[Libreoffice-commits] core.git: accessibility/inc accessibility/source avmedia/source basctl/source chart2/source cui/source dbaccess/source desktop/source extensions/source filter/source framework/so

2016-12-06 Thread Noel Grandin
 accessibility/inc/extended/listboxaccessible.hxx |2 
 accessibility/source/extended/accessibleiconchoicectrl.cxx   |4 
 accessibility/source/extended/accessiblelistbox.cxx  |   22 
 accessibility/source/extended/accessibletabbar.cxx   |   12 
 accessibility/source/extended/accessibletabbarbase.cxx   |6 
 accessibility/source/extended/accessibletabbarpagelist.cxx   |   22 
 accessibility/source/extended/accessibletablistboxtable.cxx  |   25 
 accessibility/source/extended/listboxaccessible.cxx  |3 
 accessibility/source/extended/textwindowaccessibility.cxx|7 
 accessibility/source/standard/accessiblemenubasecomponent.cxx|   32 -
 accessibility/source/standard/vclxaccessiblebox.cxx  |   48 -
 accessibility/source/standard/vclxaccessiblebutton.cxx   |2 
 accessibility/source/standard/vclxaccessiblecheckbox.cxx |2 
 accessibility/source/standard/vclxaccessibledropdowncombobox.cxx |4 
 accessibility/source/standard/vclxaccessibleedit.cxx |6 
 accessibility/source/standard/vclxaccessiblelist.cxx |   36 -
 accessibility/source/standard/vclxaccessiblemenubar.cxx  |   10 
 accessibility/source/standard/vclxaccessibleradiobutton.cxx  |2 
 accessibility/source/standard/vclxaccessiblescrollbar.cxx|2 
 accessibility/source/standard/vclxaccessiblestatusbar.cxx|   22 
 accessibility/source/standard/vclxaccessibletabcontrol.cxx   |   26 
 accessibility/source/standard/vclxaccessibletextcomponent.cxx|2 
 accessibility/source/standard/vclxaccessibletoolbox.cxx  |   44 -
 avmedia/source/opengl/oglwindow.cxx  |   10 
 avmedia/source/viewer/mediaevent_impl.cxx|   12 
 basctl/source/accessibility/accessibledialogwindow.cxx   |   22 
 chart2/source/controller/dialogs/dlg_CreationWizard_UNO.cxx  |2 
 cui/source/dialogs/screenshotannotationdlg.cxx   |8 
 cui/source/options/fontsubs.cxx  |2 
 cui/source/options/optfltr.cxx   |2 
 cui/source/tabpages/autocdlg.cxx |2 
 dbaccess/source/ui/app/AppDetailView.cxx |4 
 dbaccess/source/ui/control/dbtreelistbox.cxx |2 
 dbaccess/source/ui/dlg/admincontrols.cxx |   14 
 dbaccess/source/ui/misc/ToolBoxHelper.cxx|2 
 dbaccess/source/ui/querydesign/TableWindowAccess.cxx |2 
 desktop/source/deployment/gui/dp_gui_dialog2.cxx |2 
 desktop/source/splash/splash.cxx |2 
 extensions/source/update/ui/updatecheckui.cxx|   19 
 filter/source/pdf/pdffilter.cxx  |2 
 framework/source/dispatch/windowcommanddispatch.cxx  |4 
 framework/source/layoutmanager/toolbarlayoutmanager.cxx  |4 
 include/svtools/dialogcontrolling.hxx|8 
 include/svtools/ivctrl.hxx   |2 
 include/svtools/treelistbox.hxx  |2 
 include/vcl/ctrl.hxx |2 
 include/vcl/menu.hxx |2 
 include/vcl/svapp.hxx|8 
 include/vcl/vclevent.hxx |  305 
--
 include/vcl/window.hxx   |3 
 reportdesign/source/ui/report/ReportController.cxx   |2 
 reportdesign/source/ui/report/ReportControllerObserver.cxx   |4 
 sc/source/ui/Accessibility/AccessibleDocument.cxx|5 
 sc/source/ui/app/inputhdl.cxx|4 
 sc/source/ui/cctrl/checklistmenu.cxx |2 
 sd/source/ui/accessibility/AccessibleDocumentViewBase.cxx|8 
 sd/source/ui/accessibility/AccessibleSlideSorterView.cxx |8 
 sd/source/ui/annotations/annotationtag.cxx   |9 
 sd/source/ui/app/sdmod1.cxx  |2 
 sd/source/ui/dlg/LayerTabBar.cxx |4 
 sd/source/ui/framework/factories/FullScreenPane.cxx  |6 
 sd/source/ui/sidebar/LayoutMenu.cxx  |4 
 sd/source/ui/slideshow/showwin.cxx   |2 
 sd/source/ui/slideshow/slideshowimpl.cxx |2 
 sd/source/ui/slidesorter/controller/SlideSorterController.cxx|   12 
 sd/source/ui/slidesorter/inc/controller/SlsProperties.hxx|2 
 sd/source/ui/view/FormShellManager.cxx   |8 
 

[Libreoffice-bugs] [Bug 103919] Mailmerge e-mail does not send all merged documents

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

--- Comment #6 from Ferdi  ---
Thanks for the reply, I had a little holiday, so could not test this yet. Will
download and install 5.3.0 beta and test with that. I'll post results here.

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


[Libreoffice-bugs] [Bug 104361] autotext only takes into account first ttf file (bau file?)

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

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

On pc Debian x86-64 with master sources updated yesterday, when choosing an
entry in the list and clicking ok, I noticed this on console:
warn:legacy.osl:9585:1:sw/source/core/doc/DocumentListsManager.cxx:98:
 - a list for the provided
list style name already exists. Serious defect.

I attached bt from this log.

I also noticed logs like these:
warn:legacy.osl:9585:1:xmloff/source/core/xmlerror.cxx:178: An error or a
warning has occurred during XML import/export!
Error-Id: 0x4002000d
Flags: 4 SEVERE
Class: 2 FORMAT
Number: d
Parameters:
0: office:border-color
Exception-Message: Root element unknown
Position:
Public Identifier: 
System Identifier: BlockList.xml
Row, Column: 1,112

warn:xmloff.core:9585:1:xmloff/source/core/xmlimp.cxx:755:
SvXMLImport::endElement: popped context has wrong prefix

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


[Libreoffice-bugs] [Bug 104361] autotext only takes into account first ttf file (bau file?)

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

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-commits] core.git: vcl/source

2016-12-06 Thread Mark Page
 vcl/source/gdi/region.cxx |   76 --
 1 file changed, 34 insertions(+), 42 deletions(-)

New commits:
commit ed80d28d9f019a1afa2edd66e115eae26ea19963
Author: Mark Page 
Date:   Tue Dec 6 08:29:50 2016 +

Convert region to use std::unique_ptr

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

diff --git a/vcl/source/gdi/region.cxx b/vcl/source/gdi/region.cxx
index e9f5c42..51fe138 100644
--- a/vcl/source/gdi/region.cxx
+++ b/vcl/source/gdi/region.cxx
@@ -33,6 +33,7 @@
 #include 
 #include 
 #include 
+#include 
 
 namespace
 {
@@ -84,12 +85,12 @@ namespace
 A new RegionBand object is returned that contains the bands that
 represent the given poly-polygon.
 */
-RegionBand* ImplRectilinearPolygonToBands(const tools::PolyPolygon& 
rPolyPoly)
+std::unique_ptr ImplRectilinearPolygonToBands(const 
tools::PolyPolygon& rPolyPoly)
 {
 OSL_ASSERT(ImplIsPolygonRectilinear (rPolyPoly));
 
 // Create a new RegionBand object as container of the bands.
-RegionBand* pRegionBand = new RegionBand();
+std::unique_ptr pRegionBand( 
o3tl::make_unique() );
 long nLineId = 0;
 
 // Iterate over all polygons.
@@ -182,12 +183,12 @@ namespace
 /** Convert a general polygon (one for which ImplIsPolygonRectilinear()
 returns ) to bands.
 */
-RegionBand* ImplGeneralPolygonToBands(const tools::PolyPolygon& rPolyPoly, 
const Rectangle& rPolygonBoundingBox)
+std::unique_ptr ImplGeneralPolygonToBands(const 
tools::PolyPolygon& rPolyPoly, const Rectangle& rPolygonBoundingBox)
 {
 long nLineID = 0;
 
 // initialisation and creation of Bands
-RegionBand* pRegionBand = new RegionBand();
+std::unique_ptr pRegionBand( 
o3tl::make_unique() );
 pRegionBand->CreateBandRange(rPolygonBoundingBox.Top(), 
rPolygonBoundingBox.Bottom());
 
 // insert polygons
@@ -231,9 +232,9 @@ bool vcl::Region::IsEmpty() const
 }
 
 
-RegionBand* ImplCreateRegionBandFromPolyPolygon(const tools::PolyPolygon& 
rPolyPolygon)
+std::unique_ptr ImplCreateRegionBandFromPolyPolygon(const 
tools::PolyPolygon& rPolyPolygon)
 {
-RegionBand* pRetval = nullptr;
+std::unique_ptr pRetval;
 
 if(rPolyPolygon.Count())
 {
@@ -268,8 +269,7 @@ RegionBand* ImplCreateRegionBandFromPolyPolygon(const 
tools::PolyPolygon& rPolyP
 // of seps are joined.
 if(!pRetval->OptimizeBandList())
 {
-delete pRetval;
-pRetval = nullptr;
+pRetval.reset();
 }
 }
 }
@@ -571,7 +571,7 @@ bool vcl::Region::Union( const Rectangle& rRect )
 return true;
 }
 
-RegionBand* pNew = new RegionBand(*pCurrent);
+std::unique_ptr pNew( 
o3tl::make_unique(*pCurrent));
 
 // get justified rectangle
 const long nLeft(std::min(rRect.Left(), rRect.Right()));
@@ -588,11 +588,10 @@ bool vcl::Region::Union( const Rectangle& rRect )
 // cleanup
 if(!pNew->OptimizeBandList())
 {
-delete pNew;
-pNew = nullptr;
+pNew.reset();
 }
 
-mpRegionBand.reset(pNew);
+mpRegionBand = std::move(pNew);
 return true;
 }
 
@@ -664,7 +663,7 @@ bool vcl::Region::Intersect( const Rectangle& rRect )
 return true;
 }
 
-RegionBand* pNew = new RegionBand(*pCurrent);
+std::unique_ptr pNew( 
o3tl::make_unique(*pCurrent));
 
 // get justified rectangle
 const long nLeft(std::min(rRect.Left(), rRect.Right()));
@@ -681,11 +680,10 @@ bool vcl::Region::Intersect( const Rectangle& rRect )
 // cleanup
 if(!pNew->OptimizeBandList())
 {
-delete pNew;
-pNew = nullptr;
+pNew.reset();
 }
 
-mpRegionBand.reset(pNew);
+mpRegionBand = std::move(pNew);
 return true;
 }
 
@@ -745,7 +743,7 @@ bool vcl::Region::Exclude( const Rectangle& rRect )
 return true;
 }
 
-RegionBand* pNew = new RegionBand(*pCurrent);
+std::unique_ptr pNew( 
o3tl::make_unique(*pCurrent));
 
 // get justified rectangle
 const long nLeft(std::min(rRect.Left(), rRect.Right()));
@@ -762,11 +760,10 @@ bool vcl::Region::Exclude( const Rectangle& rRect )
 // cleanup
 if(!pNew->OptimizeBandList())
 {
-delete pNew;
-pNew = nullptr;
+pNew.reset();
 }
 
-mpRegionBand.reset(pNew);
+mpRegionBand = std::move(pNew);
 return true;
 }
 
@@ -830,7 +827,7 @@ bool vcl::Region::XOr( const Rectangle& rRect )
 }
 
 // only region band mode possibility left here or null/empty
-RegionBand* pNew = new RegionBand(*getRegionBand());
+std::unique_ptr pNew( 

[Libreoffice-bugs] [Bug 88206] Change uses of cppu::WeakImplHelper* and cppu:: ImplInheritanceHelper* to use variadic variants instead

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

--- Comment #79 from Commit Notification 
 ---
Jochen Nitschke committed a patch related to this issue.
It has been pushed to "master":

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

tdf#88206 replace cppu::WeakImplHelper* in ucbhelper

It will be available in 5.4.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-commits] core.git: include/ucbhelper

2016-12-06 Thread Jochen Nitschke
 include/ucbhelper/activedatasink.hxx |4 ++--
 include/ucbhelper/activedatastreamer.hxx |4 ++--
 include/ucbhelper/commandenvironment.hxx |4 ++--
 include/ucbhelper/fd_inputstream.hxx |4 ++--
 include/ucbhelper/interceptedinteraction.hxx |4 ++--
 5 files changed, 10 insertions(+), 10 deletions(-)

New commits:
commit ad1f2e699ac3c2b9c3cea7d2d3589fbc3749fc0a
Author: Jochen Nitschke 
Date:   Tue Dec 6 17:40:04 2016 +0100

tdf#88206 replace cppu::WeakImplHelper* in ucbhelper

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

diff --git a/include/ucbhelper/activedatasink.hxx 
b/include/ucbhelper/activedatasink.hxx
index 3e6c3ba..fda23bd 100644
--- a/include/ucbhelper/activedatasink.hxx
+++ b/include/ucbhelper/activedatasink.hxx
@@ -22,7 +22,7 @@
 
 #include 
 #include 
-#include 
+#include 
 
 namespace ucbhelper
 {
@@ -34,7 +34,7 @@ namespace ucbhelper
   */
 
 class UCBHELPER_DLLPUBLIC ActiveDataSink :
-public cppu::WeakImplHelper1< css::io::XActiveDataSink >
+public cppu::WeakImplHelper< css::io::XActiveDataSink >
 {
 css::uno::Reference< css::io::XInputStream > m_xStream;
 
diff --git a/include/ucbhelper/activedatastreamer.hxx 
b/include/ucbhelper/activedatastreamer.hxx
index 4516c3b..618aaf7 100644
--- a/include/ucbhelper/activedatastreamer.hxx
+++ b/include/ucbhelper/activedatastreamer.hxx
@@ -21,7 +21,7 @@
 #define INCLUDED_UCBHELPER_ACTIVEDATASTREAMER_HXX
 
 #include 
-#include 
+#include 
 
 namespace ucbhelper
 {
@@ -34,7 +34,7 @@ namespace ucbhelper
   */
 
 class ActiveDataStreamer :
-public cppu::WeakImplHelper1< css::io::XActiveDataStreamer >
+public cppu::WeakImplHelper< css::io::XActiveDataStreamer >
 {
 css::uno::Reference< css::io::XStream > m_xStream;
 
diff --git a/include/ucbhelper/commandenvironment.hxx 
b/include/ucbhelper/commandenvironment.hxx
index dff68b1..c11e448 100644
--- a/include/ucbhelper/commandenvironment.hxx
+++ b/include/ucbhelper/commandenvironment.hxx
@@ -22,7 +22,7 @@
 
 #include 
 #include 
-#include 
+#include 
 #include 
 
 namespace ucbhelper
@@ -35,7 +35,7 @@ struct CommandEnvironment_Impl;
   * be used to supply environments to commands executed by UCB contents.
   */
 class UCBHELPER_DLLPUBLIC CommandEnvironment :
-public cppu::WeakImplHelper1< css::ucb::XCommandEnvironment >
+public cppu::WeakImplHelper< css::ucb::XCommandEnvironment >
 {
 std::unique_ptr m_pImpl;
 
diff --git a/include/ucbhelper/fd_inputstream.hxx 
b/include/ucbhelper/fd_inputstream.hxx
index b0b12e6..a80d661 100644
--- a/include/ucbhelper/fd_inputstream.hxx
+++ b/include/ucbhelper/fd_inputstream.hxx
@@ -25,14 +25,14 @@
 #include 
 #include 
 #include 
-#include 
+#include 
 #include 
 
 #include 
 
 namespace ucbhelper
 {
-typedef ::cppu::WeakImplHelper2<
+typedef cppu::WeakImplHelper<
 css::io::XInputStream,
 css::io::XSeekable > FdInputStream_Base;
 
diff --git a/include/ucbhelper/interceptedinteraction.hxx 
b/include/ucbhelper/interceptedinteraction.hxx
index 72d6bd3..6a723f5 100644
--- a/include/ucbhelper/interceptedinteraction.hxx
+++ b/include/ucbhelper/interceptedinteraction.hxx
@@ -25,7 +25,7 @@
 #include 
 
 #include 
-#include 
+#include 
 #include 
 
 
@@ -40,7 +40,7 @@ namespace ucbhelper{
   only
 - or as base class if interactions must be modified.
  */
-class UCBHELPER_DLLPUBLIC InterceptedInteraction : public 
::cppu::WeakImplHelper1< css::task::XInteractionHandler >
+class UCBHELPER_DLLPUBLIC InterceptedInteraction : public 
::cppu::WeakImplHelper< css::task::XInteractionHandler >
 {
 
 // types
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88206] Change uses of cppu::WeakImplHelper* and cppu:: ImplInheritanceHelper* to use variadic variants instead

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

--- Comment #78 from Commit Notification 
 ---
Jochen Nitschke committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=43de0518bc1f0b7aa8d57132a11cae6fa411680f

tdf#88206 replace cppu::WeakImplHelper* in toolkit

It will be available in 5.4.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-commits] core.git: include/toolkit

2016-12-06 Thread Jochen Nitschke
 include/toolkit/awt/animatedimagespeer.hxx   |   12 +--
 include/toolkit/awt/vclxtabpagecontainer.hxx |   10 -
 include/toolkit/awt/vclxwindow.hxx   |   24 +++---
 include/toolkit/awt/vclxwindows.hxx  |   29 +--
 include/toolkit/controls/roadmapentry.hxx|5 +---
 5 files changed, 39 insertions(+), 41 deletions(-)

New commits:
commit 43de0518bc1f0b7aa8d57132a11cae6fa411680f
Author: Jochen Nitschke 
Date:   Tue Dec 6 19:35:55 2016 +0100

tdf#88206 replace cppu::WeakImplHelper* in toolkit

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

diff --git a/include/toolkit/awt/animatedimagespeer.hxx 
b/include/toolkit/awt/animatedimagespeer.hxx
index c2bccd99..f328fce 100644
--- a/include/toolkit/awt/animatedimagespeer.hxx
+++ b/include/toolkit/awt/animatedimagespeer.hxx
@@ -25,7 +25,7 @@
 #include 
 #include 
 
-#include 
+#include 
 
 #include 
 
@@ -36,11 +36,11 @@ namespace toolkit
 //= AnimatedImagesPeer
 
 struct AnimatedImagesPeer_Data;
-typedef ::cppu::ImplInheritanceHelper3  <   VCLXWindow
-,   css::awt::XAnimation
-,   
css::container::XContainerListener
-,   css::util::XModifyListener
->   AnimatedImagesPeer_Base;
+typedef cppu::ImplInheritanceHelper< VCLXWindow,
+ css::awt::XAnimation,
+ css::container::XContainerListener,
+ css::util::XModifyListener
+   > AnimatedImagesPeer_Base;
 
 class AnimatedImagesPeer:public AnimatedImagesPeer_Base
 {
diff --git a/include/toolkit/awt/vclxtabpagecontainer.hxx 
b/include/toolkit/awt/vclxtabpagecontainer.hxx
index d36f325..0e80537 100644
--- a/include/toolkit/awt/vclxtabpagecontainer.hxx
+++ b/include/toolkit/awt/vclxtabpagecontainer.hxx
@@ -29,15 +29,15 @@
 #include 
 #include 
 #include 
+#include 
 #include 
-#include 
 #include 
 
 
-typedef ::cppu::ImplInheritanceHelper2  VCLXTabPageContainer_Base;
+typedef cppu::ImplInheritanceHelper< VCLXContainer,
+ css::awt::tab::XTabPageContainer,
+ css::container::XContainerListener
+   > VCLXTabPageContainer_Base;
 class VCLXTabPageContainer : public VCLXTabPageContainer_Base
 {
 public:
diff --git a/include/toolkit/awt/vclxwindow.hxx 
b/include/toolkit/awt/vclxwindow.hxx
index 611e1da..7ee6ed5 100644
--- a/include/toolkit/awt/vclxwindow.hxx
+++ b/include/toolkit/awt/vclxwindow.hxx
@@ -36,8 +36,8 @@
 #include 
 #include 
 
+#include 
 #include 
-#include 
 #include 
 
 #include 
@@ -61,17 +61,17 @@ namespace toolkit
 
 class UnoPropertyArrayHelper;
 class VCLXWindowImpl;
-typedef ::cppu::ImplInheritanceHelper9  <   VCLXDevice
-,   css::awt::XWindow2
-,   css::awt::XVclWindowPeer
-,   css::awt::XLayoutConstrains
-,   css::awt::XView
-,   css::awt::XDockableWindow
-,   css::accessibility::XAccessible
-,   css::lang::XEventListener
-,   css::beans::XPropertySetInfo
-,   css::awt::XStyleSettingsSupplier
->   VCLXWindow_Base;
+typedef cppu::ImplInheritanceHelper< VCLXDevice,
+ css::awt::XWindow2,
+ css::awt::XVclWindowPeer,
+ css::awt::XLayoutConstrains,
+ css::awt::XView,
+ css::awt::XDockableWindow,
+ css::accessibility::XAccessible,
+ css::lang::XEventListener,
+ css::beans::XPropertySetInfo,
+ css::awt::XStyleSettingsSupplier
+   > VCLXWindow_Base;
 
 class TOOLKIT_DLLPUBLIC VCLXWindow : public VCLXWindow_Base
 {
diff --git a/include/toolkit/awt/vclxwindows.hxx 
b/include/toolkit/awt/vclxwindows.hxx

[Libreoffice-bugs] [Bug 90317] page format change ignored - incompatibility with word

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

Luke  changed:

   What|Removed |Added

   Keywords||filter:docx

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


[Libreoffice-bugs] [Bug 104420] FILEOPEN: DOCX: missing page and paragraph

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

Justin L  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |jl...@mail.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 104449] [META] DOCX Textbox related limitations

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

--- Comment #1 from Luke  ---
See http://www.addbalance.com/word/frames_textboxes.htm
For a comparision of DOCX textbox vs text frame.

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


[Libreoffice-bugs] [Bug 104412] DirectoryNameoutofPath no longer works

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

Adolfo Jayme  changed:

   What|Removed |Added

 Status|NEW |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 104442] [META] DOCX limitations related to shapes

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

Luke  changed:

   What|Removed |Added

 Depends on||66058


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=66058
[Bug 66058] FILEOPEN: .docx elbow connector routing in diagrams import bug
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 66058] FILEOPEN: .docx elbow connector routing in diagrams import bug

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

Luke  changed:

   What|Removed |Added

 Blocks||104442


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 104420] FILEOPEN: DOCX: missing page and paragraph

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

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

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

tdf#104420 writerfilter: no dummy para in headers

It will be available in 5.4.0.

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

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

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


[Libreoffice-bugs] [Bug 104420] FILEOPEN: DOCX: missing page and paragraph

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:5.4.0

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


[Libreoffice-bugs] [Bug 104442] [META] DOCX limitations related to shapes

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

Luke  changed:

   What|Removed |Added

 Depends on||99497


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=99497
[Bug 99497] an 'arc' saved in .docx becomes a filled closed shape
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 99497] an 'arc' saved in .docx becomes a filled closed shape

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

Luke  changed:

   What|Removed |Added

 Blocks||104442


Referenced Bugs:

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


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

2016-12-06 Thread Justin Luth
 sw/qa/extras/ooxmlexport/data/tdf104420_lostParagraph.docx |binary
 sw/qa/extras/ooxmlexport/ooxmlexport9.cxx  |6 ++
 writerfilter/source/dmapper/DomainMapper.cxx   |3 ++-
 3 files changed, 8 insertions(+), 1 deletion(-)

New commits:
commit b71c09a31c245f2fc1e1ff3760206bb121869633
Author: Justin Luth 
Date:   Tue Dec 6 19:20:51 2016 +0300

tdf#104420 writerfilter: no dummy para in headers

Change-Id: I22bf2d85e01ce5a084babdc07a11ada0790f4933
Reviewed-on: https://gerrit.libreoffice.org/31710
Tested-by: Jenkins 
Reviewed-by: Justin Luth 

diff --git a/sw/qa/extras/ooxmlexport/data/tdf104420_lostParagraph.docx 
b/sw/qa/extras/ooxmlexport/data/tdf104420_lostParagraph.docx
new file mode 100755
index 000..b5d9988
Binary files /dev/null and 
b/sw/qa/extras/ooxmlexport/data/tdf104420_lostParagraph.docx differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx
index f4bd83e..57768cd 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx
@@ -55,6 +55,12 @@ DECLARE_OOXMLEXPORT_TEST(testTdf89377, 
"tdf89377_tableWithBreakBeforeParaStyle.d
 CPPUNIT_ASSERT_EQUAL( 3, getPages() );
 }
 
+DECLARE_OOXMLEXPORT_TEST(testTdf104420, "tdf104420_lostParagraph.docx")
+{
+// the add/remove dummy paragraph was losing an entire header and paragraph
+CPPUNIT_ASSERT_EQUAL( 2, getPages() );
+}
+
 DECLARE_OOXMLEXPORT_TEST(testTdf41542_borderlessPadding, 
"tdf41542_borderlessPadding.odt")
 {
 // the page style's borderless padding should force this to 3 pages, not 1
diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index 439ecf2..929671a 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -2547,7 +2547,8 @@ void DomainMapper::sprmWithProps( Sprm& rSprm, const 
PropertyMapPtr& rContext )
  * and remove it again when lcl_endSectionGroup is called
  */
 if(m_pImpl->m_nTableDepth == 0 && 
m_pImpl->GetIsFirstParagraphInSection()
-&& !m_pImpl->GetIsDummyParaAddedForTableInSection() && 
!m_pImpl->GetIsTextFrameInserted())
+&& !m_pImpl->GetIsDummyParaAddedForTableInSection() && 
!m_pImpl->GetIsTextFrameInserted()
+&& !IsInHeaderFooter())
 {
 m_pImpl->AddDummyParaForTableInSection();
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Luke  changed:

   What|Removed |Added

 CC||lukebe...@hotmail.com

--- Comment #7 from Luke  ---
Since we can already search by the filter:docx keyword, it makes much more
sense to split this into  
(1) DOCX features Writer is not capable of and 
(2) native features that are not properly imported/exported.

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


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

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

--- Comment #21 from Volga  ---
(In reply to Michael Meeks from comment #18)
> ie. IMHO cleartype is a disaster waiting to happen for the goal of a
> cross-platform acceleration - at least, until we have a high quality GPU
> based glyph rendering - which (no doubt) is coming. This seems to be the
> conclusion of Microsoft too - they don't use ClearType in Office 2016. 

I also heard Chinese netizens trend to use MacType (which uses FreeType as
beckend) to replace ClearType for screen rendering.

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


[Libreoffice-bugs] [Bug 104222] FILESAVE: PPTX: performance regression at save time in Linux, write error in Windows

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

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
Version|5.3.0.0.alpha0+ |5.2.0.4 release
Summary|FILESAVE: PPTX: performance |FILESAVE: PPTX: performance
   |regression at save time |regression at save time in
   ||Linux, write error in
   ||Windows
 Whiteboard||interoperability

--- Comment #2 from Aron Budea  ---
There's already a writer error in 5.2.0.4 / Windows 7.

So it seems like this is a performance regression in Linux, and an error in
Windows.

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


[Libreoffice-bugs] [Bug 95117] Allow Find and Replace in selection (of objects)

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

--- Comment #5 from MarjaE  ---
There's a check-box under options, but after selecting a group of groups, it's
still grayed out.

-- 
You are receiving this mail because:
You 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 95117] Allow Find and Replace in selection (of objects)

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

--- Comment #5 from MarjaE  ---
There's a check-box under options, but after selecting a group of groups, it's
still grayed out.

-- 
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 103627] Writer ignores +

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

Terrence Enger  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #6 from Terrence Enger  ---
The bug is apparent in debian-stretch 64-bit on xfce desktop in LO
version 5.2.3.3 as distributed with debian-stretch and daily dbgutil
bibisect repository version 2016-12-06.

Based on comment 5, I am setting bug status NEW.  If I have left any
questions unanswered, please ask me again.

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


[Libreoffice-bugs] [Bug 103819] Mongolian ellipsis always display as three dots within vertical layout

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

--- Comment #12 from Volga  ---
Oh yeah, it works without OGL.

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


[Libreoffice-bugs] [Bug 92775] Can Not resize image when in whatever working on - ex: bithdaycard, CD paper jacket and etc

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

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #3 from Aron Budea  ---
Regarding the first question, the image can be right clicked, and via "Position
and size" menu the position/dimension of the image can be adjusted to multiple
decimals of accuracy.

Regarding the second question, label printing is available at File -> New ->
Labels menu, and has a huge amount of predefined label sizes.

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


[Libreoffice-bugs] [Bug 104455] New: can' t use page-up and page-down keys to navigated downloaded documents (' enable editing')

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

Bug ID: 104455
   Summary: can't use page-up and page-down keys to navigated
downloaded documents ('enable editing')
   Product: LibreOffice
   Version: 5.1.6.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: j...@curioussymbols.com

For some reason, the read-only protections placed on documents downloaded from
the internet result in keyboard bindings like page-up and page-down from being
disabled.

I routinely use the keyboard to navigate documents, which has the result that I
routinely have to click the 'enable editing' button when reading a downloaded
document. This renders the read-only feature fairly useless as a result.

Would it be possible to make sure that basic keyboard navigation still works
with downloaded documents, somehow?

There are aspects of this that make it a security issue, since it leads people
to click 'enable editing' when they otherwise wouldn't need to.

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


[Libreoffice-bugs] [Bug 104401] Export as PDF, no JPEG compression

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

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #1 from Aron Budea  ---
Duplicate of bug 99723 or bug 101458, fix should come with 5.2.4 update.

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

-- 
You are receiving this mail because:
You 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: starmath/qa

2016-12-06 Thread Takeshi Abe
 starmath/qa/extras/data/color.mml |   20 
 starmath/qa/extras/mmlimport-test.cxx |   24 
 2 files changed, 44 insertions(+)

New commits:
commit f7834582a7f8ce53175f60b3ca3e62475a78f277
Author: Takeshi Abe 
Date:   Tue Dec 6 18:14:17 2016 +0900

starmath: Add unit test for importing MathML's mathcolor

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

diff --git a/starmath/qa/extras/data/color.mml 
b/starmath/qa/extras/data/color.mml
new file mode 100644
index 000..6aad87b
--- /dev/null
+++ b/starmath/qa/extras/data/color.mml
@@ -0,0 +1,20 @@
+http://www.w3.org/1998/Math/MathML;>
+  
+b
+w
+r
+g
+b
+y
+s
+g
+m
+p
+l
+o
+n
+t
+a
+f
+  
+
diff --git a/starmath/qa/extras/mmlimport-test.cxx 
b/starmath/qa/extras/mmlimport-test.cxx
index 01ae2ff..aa9e0f7 100644
--- a/starmath/qa/extras/mmlimport-test.cxx
+++ b/starmath/qa/extras/mmlimport-test.cxx
@@ -29,6 +29,7 @@ public:
 virtual void setUp() override;
 virtual void tearDown() override;
 
+void testColor();
 void testSimple();
 void testNsPrefixMath();
 void testMaction();
@@ -38,6 +39,7 @@ public:
 void testTdf103500();
 
 CPPUNIT_TEST_SUITE(Test);
+CPPUNIT_TEST(testColor);
 CPPUNIT_TEST(testSimple);
 CPPUNIT_TEST(testNsPrefixMath);
 CPPUNIT_TEST(testMaction);
@@ -90,6 +92,28 @@ void Test::tearDown()
 BootstrapFixture::tearDown();
 }
 
+void Test::testColor()
+{
+loadURL(m_directories.getURLFromSrc("starmath/qa/extras/data/color.mml"));
+CPPUNIT_ASSERT_EQUAL(OUString("{{color black b}"
+  " {color white w}"
+  " {color red r}"
+  " {color green g}"
+  " {color blue b}"
+  " {color yellow y}"
+  " {color silver s}"
+  " {color gray g}"
+  " {color maroon m}"
+  " {color purple p}"
+  " {color lime l}"
+  " {color olive o}"
+  " {color navy n}"
+  " {color teal t}"
+  " {color aqua a}"
+  " {color fuchsia f}}"),
+ mxDocShell->GetText());
+}
+
 void Test::testSimple()
 {
 loadURL(m_directories.getURLFromSrc("starmath/qa/extras/data/simple.mml"));
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-12-06 Thread Takeshi Abe
 starmath/source/node.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 4b6c66daa8a4865bd7e3350c4a0307575d2aff63
Author: Takeshi Abe 
Date:   Tue Dec 6 11:55:48 2016 +0900

starmath: Require that they are non-0 vectors

Otherwise, division by zero would happen.

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

diff --git a/starmath/source/node.cxx b/starmath/source/node.cxx
index a37236d..e941c2d 100644
--- a/starmath/source/node.cxx
+++ b/starmath/source/node.cxx
@@ -903,7 +903,7 @@ double Det(const Point , const Point )
 bool IsPointInLine(const Point ,
const Point , const Point )
 {
-OSL_ENSURE(rHeading2 != Point(), "Sm : 0 vector");
+assert(rHeading2 != Point());
 
 bool bRes = false;
 static const double eps = 5.0 * DBL_EPSILON;
@@ -928,8 +928,8 @@ sal_uInt16 GetLineIntersectionPoint(Point ,
 const Point& rPoint1, const Point ,
 const Point& rPoint2, const Point )
 {
-OSL_ENSURE(rHeading1 != Point(), "Sm : 0 vector");
-OSL_ENSURE(rHeading2 != Point(), "Sm : 0 vector");
+assert(rHeading1 != Point());
+assert(rHeading2 != Point());
 
 sal_uInt16 nRes = 1;
 static const double eps = 5.0 * DBL_EPSILON;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-12-06 Thread Takeshi Abe
 sw/source/uibase/dochdl/swdtflvr.cxx |2 --
 1 file changed, 2 deletions(-)

New commits:
commit 798c832dc35f65786f6ec30d5e851a27886e8cfd
Author: Takeshi Abe 
Date:   Tue Dec 6 02:29:40 2016 +0900

sw: Kill unused SwRewriter

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

diff --git a/sw/source/uibase/dochdl/swdtflvr.cxx 
b/sw/source/uibase/dochdl/swdtflvr.cxx
index 7566fb1..3b03c30 100644
--- a/sw/source/uibase/dochdl/swdtflvr.cxx
+++ b/sw/source/uibase/dochdl/swdtflvr.cxx
@@ -3233,8 +3233,6 @@ bool SwTransferable::PrivatePaste( SwWrtShell& rShell )
 
 const int nSelection = rShell.GetSelectionType();
 
-SwRewriter aRewriter;
-
 SwTrnsfrActionAndUndo aAction( , UNDO_PASTE_CLIPBOARD);
 
 bool bKillPaMs = false;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 103060] Japanese era representation is not correct

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

Takeshi Abe  changed:

   What|Removed |Added

 Status|NEW |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 103209] Background color setting isn't reflected to BasicIDE

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

Takeshi Abe  changed:

   What|Removed |Added

 Status|NEW |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 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||75318


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=75318
[Bug 75318] FORMATTING: shape in .docx file is out of page bounds
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75318] FORMATTING: shape in .docx file is out of page bounds

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

Telesto  changed:

   What|Removed |Added

   Keywords||filter:docx
 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 104449] [META] DOCX Textbox related limitations

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

Telesto  changed:

   What|Removed |Added

 Depends on||75456


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=75456
[Bug 75456] FILEOPEN: DOCX Importing fails to import line break in vertical
text-box
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75456] FILEOPEN: DOCX Importing fails to import line break in vertical text-box

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

Telesto  changed:

   What|Removed |Added

 Blocks||104449


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 76541] FILEOPEN: Incorrect formula view when it contains 2 equal signs, DOC, DOCX

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

Telesto  changed:

   What|Removed |Added

   Keywords||filter:docx
 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||76541


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=76541
[Bug 76541] FILEOPEN: Incorrect formula view when it contains 2 equal signs,
DOC, DOCX
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 76586] FILEOPEN DOCX Column width not imported properly

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

Telesto  changed:

   What|Removed |Added

 Blocks||10


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 104444] [META] DOCX limitations related to tables

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

Telesto  changed:

   What|Removed |Added

 Depends on||76586


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=76586
[Bug 76586] FILEOPEN DOCX Column width not imported properly
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||76683


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=76683
[Bug 76683] FILEOPEN: DOCX Text Document opens without 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 76683] FILEOPEN: DOCX Text Document opens without content

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

Telesto  changed:

   What|Removed |Added

 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 77760] FILEOPEN: DOCX Text and Tables switch position

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

Telesto  changed:

   What|Removed |Added

 Blocks||10


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 104444] [META] DOCX limitations related to tables

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

Telesto  changed:

   What|Removed |Added

 Depends on||77760


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=77760
[Bug 77760] FILEOPEN: DOCX Text and Tables switch position
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||77794


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=77794
[Bug 77794] FILEOPEN: incorrect placement of image in .docx 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 77794] FILEOPEN: incorrect placement of image in .docx file

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

Telesto  changed:

   What|Removed |Added

 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 78352] FILEOPEN: DOCX space between bullet and text

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

Telesto  changed:

   What|Removed |Added

   Keywords||filter:docx
 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||78352


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=78352
[Bug 78352] FILEOPEN: DOCX space between bullet and 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 78657] FILESAVE: When saving a DOCX that has a picture with a hyperlink on it - the hyperlink is lost

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

Telesto  changed:

   What|Removed |Added

 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||78657


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=78657
[Bug 78657] FILESAVE: When saving a DOCX that has a picture with a hyperlink on
it - the hyperlink is 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 78755] [FILEOPEN]: DOCX import filter - the 2nd table is placed on the page incorrectly

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

Telesto  changed:

   What|Removed |Added

 Blocks||10


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 104444] [META] DOCX limitations related to tables

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

Telesto  changed:

   What|Removed |Added

 Depends on||78755


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=78755
[Bug 78755] [FILEOPEN]: DOCX import filter - the 2nd table is placed on the
page incorrectly
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||78749


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=78749
[Bug 78749] [FILEOPEN]: DOCX import filter loses the frame’s (object’s)
background bitmap
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 78749] [FILEOPEN]: DOCX import filter l =?UTF-8?Q?oses=20the=20frame=E2=80=99s=20?=(=?UTF-8?Q?object=E2=80=99s?=) background bitmap

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

Telesto  changed:

   What|Removed |Added

   Keywords||filter:docx
 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 81341] DOCX: Preservation: Fields:Date And Time: Edit Time is converted to plain text after RT

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

Telesto  changed:

   What|Removed |Added

 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||81341


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81341
[Bug 81341] DOCX: Preservation: Fields:Date And Time:Edit Time is converted to
plain text after RT
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||81507


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81507
[Bug 81507] FILEOPEN:  w:sdtContent not retained when saved DOCX opened in MS
Word
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 81507] FILEOPEN: w: sdtContent not retained when saved DOCX opened in MS Word

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

Telesto  changed:

   What|Removed |Added

 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 81675] FILEOPEN: DOCX indent for list/heading incorrectly imported

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

Telesto  changed:

   What|Removed |Added

 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||81675


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81675
[Bug 81675] FILEOPEN: DOCX indent for list/heading incorrectly imported
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||82175


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=82175
[Bug 82175] FILEOPEN: DOCX line spacing in frame is not correct
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 82175] FILEOPEN: DOCX line spacing in frame is not correct

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

Telesto  changed:

   What|Removed |Added

 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 82177] FILESAVE: DOCX cell top border gets added (wrong rendering of node

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

Telesto  changed:

   What|Removed |Added

 Blocks||10


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 104451] FILESAVE Regression. Out of memory during resave .xlsx file

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

--- Comment #2 from Bartosz  ---
It looks like commit:
https://cgit.freedesktop.org/libreoffice/core/commit/?id=5239cefff56875c7bb45c046977f1724aace0cfb

is causing performance regression.

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


[Libreoffice-bugs] [Bug 104444] [META] DOCX limitations related to tables

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

Telesto  changed:

   What|Removed |Added

 Depends on||82177


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=82177
[Bug 82177] FILESAVE: DOCX cell top border gets added (wrong rendering of
 node
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 82348] FILEOPEN: DOCX IMPORT: style is being corrupted by direct formatting

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

Telesto  changed:

   What|Removed |Added

   Keywords||filter:docx
 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||82348


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=82348
[Bug 82348] FILEOPEN: DOCX IMPORT: style is being corrupted by direct
formatting
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||83136


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=83136
[Bug 83136] FILEOPEN: DOCX form import broken page layout
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 83136] FILEOPEN: DOCX form import broken page layout

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

Telesto  changed:

   What|Removed |Added

   Keywords||filter:docx
 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||83309


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=83309
[Bug 83309] FILEOPEN: text paragraph indentation/tab stops in .DOCX displayed
incorrectly
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 83309] FILEOPEN: text paragraph indentation/ tab stops in .DOCX displayed incorrectly

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

Telesto  changed:

   What|Removed |Added

 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||84427


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=84427
[Bug 84427] FILESAVE: Video files not saved in DOC or DOCX
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84427] FILESAVE: Video files not saved in DOC or DOCX

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

Telesto  changed:

   What|Removed |Added

 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||85127


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=85127
[Bug 85127] FILEOPEN: DOCX - Image border not preserved
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 85127] FILEOPEN: DOCX - Image border not preserved

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

Telesto  changed:

   What|Removed |Added

 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||85162


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=85162
[Bug 85162] FORMATTING: wrong page numbers (with not standard Word field) in
particular .docx
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 85162] FORMATTING: wrong page numbers (with not standard Word field) in particular .docx

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

Telesto  changed:

   What|Removed |Added

   Keywords||filter:docx
 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||85757


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=85757
[Bug 85757] Background image transparency not retained on doc, docx and pdf
files
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 85757] Background image transparency not retained on doc, docx and pdf files

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

Telesto  changed:

   What|Removed |Added

 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||85994


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=85994
[Bug 85994] Images in DOCX are Fliped Horizontally when in Right-to-Left 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 85994] Images in DOCX are Fliped Horizontally when in Right-to-Left Format

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

Telesto  changed:

   What|Removed |Added

 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 86536] 4.4.0.0.beta1: couldn' t mouse click on TextBox for edit when selection on shape

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

Telesto  changed:

   What|Removed |Added

 Blocks||103494


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103494
[Bug 103494] [META] Textbox 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 103494] [META] Textbox bugs and enhancements

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

Telesto  changed:

   What|Removed |Added

 Depends on||86536


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=86536
[Bug 86536] 4.4.0.0.beta1: couldn't mouse click on TextBox for edit when
selection on shape
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||90906


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=90906
[Bug 90906] FILEOPEN: DOCX - Incorrect text background color with automatic
font color in table header
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90906] FILEOPEN: DOCX - Incorrect text background color with automatic font color in table header

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

Telesto  changed:

   What|Removed |Added

 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 104449] [META] DOCX Textbox related limitations

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

Bug 98991 Summary: FILESAVE DOCX: Rotation Lost of Exported Text Boxes
https://bugs.documentfoundation.org/show_bug.cgi?id=98991

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 82627] FILEOPEN Text boxes with rotation in Docx MS Word 2010 are shown without rotation in Writer

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

Luke  changed:

   What|Removed |Added

 CC||ing...@inbox.lv

--- Comment #8 from Luke  ---
*** Bug 98991 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 98991] FILESAVE DOCX: Rotation Lost of Exported Text Boxes

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

Luke  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE
Summary|Rotated textboxes save in   |FILESAVE DOCX: Rotation
   |doc and docx different  |Lost of Exported Text Boxes
   |direction   |

--- Comment #6 from Luke  ---
The MS-DOC spec does not allow text to be rotated with its textbox. That is a
new feature in OOXML.

For the docx issue, the exported document opens perfectly in MS Word 2013. This
is an import, not export issue. which makes it a dupe of Bug 82627.

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

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


[Libreoffice-bugs] [Bug 88171] [Meta] Tracking bug for limitations of binary DOC format

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

Bug 98991 Summary: FILESAVE DOCX: Rotation Lost of Exported Text Boxes
https://bugs.documentfoundation.org/show_bug.cgi?id=98991

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||90613


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=90613
[Bug 90613] FILEOPEN: DOCX import blank document created from MSO normal.dotm
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90613] FILEOPEN: DOCX import blank document created from MSO normal.dotm

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

Telesto  changed:

   What|Removed |Added

   Keywords||filter:docx
 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||90947


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=90947
[Bug 90947] Formulas form DOCX: unable to resize
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90947] Formulas form DOCX: unable to resize

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

Telesto  changed:

   What|Removed |Added

   Keywords||filter:docx
 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 91408] DOCX: Images anchored with 'as character' should aligned along the line

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

Telesto  changed:

   What|Removed |Added

   Keywords||filter:docx
 Blocks||88173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) 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 88173] [Meta] Tracking bug for limitations of DOCX (OOXML) format

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

Telesto  changed:

   What|Removed |Added

 Depends on||91408


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=91408
[Bug 91408] DOCX: Images anchored with 'as character' should aligned along the
line
-- 
You are receiving this mail because:
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   8   >