[Bug 51154] cppunit warning cleaning
https://bugs.freedesktop.org/show_bug.cgi?id=51154 Markus Mohrhard changed: What|Removed |Added Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #10 from Markus Mohrhard --- Marking this as fixed. Thanks everybody. -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Libreoffice-commits] core.git: Branch 'private/kohei/calc-shared-string' - sc/source
sc/source/core/data/cellvalue.cxx |8 1 file changed, 4 insertions(+), 4 deletions(-) New commits: commit 438d12eb5e3f0fabbeb1ab8546dbd08b69751665 Author: Kohei Yoshida Date: Fri Oct 4 20:36:54 2013 -0400 Slight optimization when copying OUString. Change-Id: If934e18c0fd68d89d838ca9717aa2e4616bc3b6a diff --git a/sc/source/core/data/cellvalue.cxx b/sc/source/core/data/cellvalue.cxx index ba71d1e..7a7f941 100644 --- a/sc/source/core/data/cellvalue.cxx +++ b/sc/source/core/data/cellvalue.cxx @@ -163,7 +163,7 @@ ScCellValue::ScCellValue( const ScRefCellValue& rCell ) : meType(rCell.meType), switch (rCell.meType) { case CELLTYPE_STRING: -mpString = new OUString(*rCell.mpString); +mpString = new OUString(rCell.mpString->pData); break; case CELLTYPE_EDIT: mpEditText = rCell.mpEditText->Clone(); @@ -186,7 +186,7 @@ ScCellValue::ScCellValue( const ScCellValue& r ) : meType(r.meType), mfValue(r.m switch (r.meType) { case CELLTYPE_STRING: -mpString = new OUString(*r.mpString); +mpString = new OUString(r.mpString->pData); break; case CELLTYPE_EDIT: mpEditText = r.mpEditText->Clone(); @@ -272,7 +272,7 @@ void ScCellValue::assign( const ScDocument& rDoc, const ScAddress& rPos ) switch (meType) { case CELLTYPE_STRING: -mpString = new OUString(*aRefVal.mpString); +mpString = new OUString(aRefVal.mpString->pData); break; case CELLTYPE_EDIT: if (aRefVal.mpEditText) @@ -297,7 +297,7 @@ void ScCellValue::assign( const ScCellValue& rOther, ScDocument& rDestDoc, int n switch (meType) { case CELLTYPE_STRING: -mpString = new OUString(*rOther.mpString); +mpString = new OUString(rOther.mpString->pData); break; case CELLTYPE_EDIT: { ___ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
[Libreoffice-commits] core.git: bridges/source
bridges/source/cpp_uno/gcc3_linux_intel/except.cxx |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) New commits: commit e31a3abfc7c5f30442ec5288e2d698af01d4f831 Author: Thomas Arnhold Date: Fri Oct 4 16:43:52 2013 +0200 WaE: -Wunused-variable Change-Id: I31bdce7f31185faebaf8a8a2162669b185def0c9 diff --git a/bridges/source/cpp_uno/gcc3_linux_intel/except.cxx b/bridges/source/cpp_uno/gcc3_linux_intel/except.cxx index 3eaceb4..a49bd95 100644 --- a/bridges/source/cpp_uno/gcc3_linux_intel/except.cxx +++ b/bridges/source/cpp_uno/gcc3_linux_intel/except.cxx @@ -158,7 +158,7 @@ type_info * RTTI::getRTTI( typelib_CompoundTypeDescription *pTypeDescr ) SAL_THR { pair< t_rtti_map::iterator, bool > insertion( m_rttis.insert( t_rtti_map::value_type( unoName, rtti ) ) ); -OSL_ENSURE( insertion.second, "### inserting new rtti failed?!" ); +SAL_WARN_IF( !insertion.second, "bridges", "### inserting new rtti failed?!" ); } else { @@ -189,7 +189,7 @@ type_info * RTTI::getRTTI( typelib_CompoundTypeDescription *pTypeDescr ) SAL_THR pair< t_rtti_map::iterator, bool > insertion( m_generatedRttis.insert( t_rtti_map::value_type( unoName, rtti ) ) ); -OSL_ENSURE( insertion.second, "### inserting new generated rtti failed?!" ); +SAL_WARN_IF( !insertion.second, "bridges", "### inserting new generated rtti failed?!" ); } else // taking already generated rtti { ___ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
[Libreoffice-commits] core.git: Branch 'private/kohei/calc-shared-string' - editeng/source include/editeng include/svl sc/inc sc/qa sc/source svl/Library_svl.mk svl/qa svl/source
editeng/source/editeng/editobj.cxx | 20 ++-- editeng/source/editeng/editobj2.hxx| 14 +-- include/editeng/editobj.hxx|8 - include/svl/sharedstringpool.hxx | 94 + include/svl/stringpool.hxx | 94 - sc/inc/document.hxx|8 - sc/inc/formulagroup.hxx|4 sc/qa/unit/ucalc.cxx |4 sc/source/core/data/column3.cxx|2 sc/source/core/data/documen2.cxx |8 - sc/source/core/data/documentimport.cxx |2 sc/source/core/tool/interpr1.cxx |2 svl/Library_svl.mk |2 svl/qa/unit/svl.cxx|6 - svl/source/misc/sharedstringpool.cxx | 145 + svl/source/misc/stringpool.cxx | 145 - 16 files changed, 279 insertions(+), 279 deletions(-) New commits: commit 6ba52e44e9719185b0726e241d178bcbbda67ae4 Author: Kohei Yoshida Date: Fri Oct 4 19:13:26 2013 -0400 Rename StringPool to SharedStringPool because that's what it is. Change-Id: I2fc3ce4f0c2291d402cb470346d5561373fb51e7 diff --git a/editeng/source/editeng/editobj.cxx b/editeng/source/editeng/editobj.cxx index 4e6af47..3a5d41c 100644 --- a/editeng/source/editeng/editobj.cxx +++ b/editeng/source/editeng/editobj.cxx @@ -44,7 +44,7 @@ #include #include -#include "svl/stringpool.hxx" +#include "svl/sharedstringpool.hxx" #include #include @@ -149,17 +149,17 @@ ContentInfo::~ContentInfo() aAttribs.clear(); } -void ContentInfo::NormalizeString( svl::StringPool& rPool ) +void ContentInfo::NormalizeString( svl::SharedStringPool& rPool ) { aText = OUString(rPool.intern(aText)); } -sal_uIntPtr ContentInfo::GetStringID( const svl::StringPool& rPool ) const +sal_uIntPtr ContentInfo::GetStringID( const svl::SharedStringPool& rPool ) const { return rPool.getIdentifier(aText); } -sal_uIntPtr ContentInfo::GetStringIDIgnoreCase( const svl::StringPool& rPool ) const +sal_uIntPtr ContentInfo::GetStringIDIgnoreCase( const svl::SharedStringPool& rPool ) const { return rPool.getIdentifierIgnoreCase(aText); } @@ -332,17 +332,17 @@ editeng::FieldUpdater EditTextObject::GetFieldUpdater() return mpImpl->GetFieldUpdater(); } -void EditTextObject::NormalizeString( svl::StringPool& rPool ) +void EditTextObject::NormalizeString( svl::SharedStringPool& rPool ) { mpImpl->NormalizeString(rPool); } -bool EditTextObject::GetStringIDs( const svl::StringPool& rPool, std::vector& rIDs ) const +bool EditTextObject::GetStringIDs( const svl::SharedStringPool& rPool, std::vector& rIDs ) const { return mpImpl->GetStringIDs(rPool, rIDs); } -bool EditTextObject::GetStringIDsIgnoreCase( const svl::StringPool& rPool, std::vector& rIDs ) const +bool EditTextObject::GetStringIDsIgnoreCase( const svl::SharedStringPool& rPool, std::vector& rIDs ) const { return mpImpl->GetStringIDsIgnoreCase(rPool, rIDs); } @@ -633,7 +633,7 @@ void EditTextObjectImpl::SetUserType( sal_uInt16 n ) nUserType = n; } -void EditTextObjectImpl::NormalizeString( svl::StringPool& rPool ) +void EditTextObjectImpl::NormalizeString( svl::SharedStringPool& rPool ) { ContentInfosType::iterator it = aContents.begin(), itEnd = aContents.end(); for (; it != itEnd; ++it) @@ -643,7 +643,7 @@ void EditTextObjectImpl::NormalizeString( svl::StringPool& rPool ) } } -bool EditTextObjectImpl::GetStringIDs( const svl::StringPool& rPool, std::vector& rIDs ) const +bool EditTextObjectImpl::GetStringIDs( const svl::SharedStringPool& rPool, std::vector& rIDs ) const { std::vector aIDs; aIDs.reserve(aContents.size()); @@ -662,7 +662,7 @@ bool EditTextObjectImpl::GetStringIDs( const svl::StringPool& rPool, std::vector return true; } -bool EditTextObjectImpl::GetStringIDsIgnoreCase( const svl::StringPool& rPool, std::vector& rIDs ) const +bool EditTextObjectImpl::GetStringIDsIgnoreCase( const svl::SharedStringPool& rPool, std::vector& rIDs ) const { std::vector aIDs; aIDs.reserve(aContents.size()); diff --git a/editeng/source/editeng/editobj2.hxx b/editeng/source/editeng/editobj2.hxx index d2118d7..20dafe9 100644 --- a/editeng/source/editeng/editobj2.hxx +++ b/editeng/source/editeng/editobj2.hxx @@ -37,7 +37,7 @@ struct Section; namespace svl { -class StringPool; +class SharedStringPool; } @@ -142,9 +142,9 @@ private: public: ~ContentInfo(); -void NormalizeString( svl::StringPool& rPool ); -sal_uIntPtr GetStringID( const svl::StringPool& rPool ) const; -sal_uIntPtr GetStringIDIgnoreCase( const svl::StringPool& rPool ) const; +void NormalizeString( svl::SharedStringPool& rPool ); +sal_uIntPtr GetStringID( const svl::SharedStringPool& rPool ) const; +sal_uIntPtr GetStringIDIgnoreCase( const svl::SharedStringPool& rPool ) const; const
[Libreoffice-commits] core.git: Branch 'private/moggi/abstract-chart-rendering' - chart2/source
chart2/source/view/axes/VCartesianAxis.cxx | 16 chart2/source/view/axes/VCoordinateSystem.cxx| 16 chart2/source/view/axes/VPolarAngleAxis.cxx | 12 +++--- chart2/source/view/charttypes/AreaChart.cxx | 14 +++ chart2/source/view/charttypes/BubbleChart.cxx|2 - chart2/source/view/charttypes/PieChart.cxx |6 +-- chart2/source/view/charttypes/VSeriesPlotter.cxx | 26 ++--- chart2/source/view/diagram/VDiagram.cxx | 22 +-- chart2/source/view/inc/AbstractShapeFactory.hxx |3 + chart2/source/view/inc/LabelPositionHelper.hxx |6 +-- chart2/source/view/inc/PlotterBase.hxx |4 +- chart2/source/view/inc/PlottingPositionHelper.hxx|4 +- chart2/source/view/inc/PolarLabelPositionHelper.hxx |2 - chart2/source/view/inc/ShapeFactory.hxx |4 +- chart2/source/view/inc/VDiagram.hxx |6 +-- chart2/source/view/main/AbstractShapeFactory.cxx | 18 + chart2/source/view/main/ChartView.cxx| 36 ++- chart2/source/view/main/DataPointSymbolSupplier.cxx |8 ++-- chart2/source/view/main/DrawModelWrapper.cxx |8 ++-- chart2/source/view/main/LabelPositionHelper.cxx |4 +- chart2/source/view/main/PlotterBase.cxx |4 +- chart2/source/view/main/PlottingPositionHelper.cxx |4 +- chart2/source/view/main/PolarLabelPositionHelper.cxx |2 - chart2/source/view/main/VLegend.cxx |6 +-- chart2/source/view/main/VLegendSymbolFactory.cxx | 10 ++--- 25 files changed, 134 insertions(+), 109 deletions(-) New commits: commit f9291f231dddcce96779fc0839d440b8a06cbedd Author: Markus Mohrhard Date: Sat Oct 5 01:50:11 2013 +0200 make it possible to switch between different ShapeFactories Change-Id: I49f6b16182c25ead486a15ab86f722902b36933e diff --git a/chart2/source/view/axes/VCartesianAxis.cxx b/chart2/source/view/axes/VCartesianAxis.cxx index b022fdf..be3922b 100644 --- a/chart2/source/view/axes/VCartesianAxis.cxx +++ b/chart2/source/view/axes/VCartesianAxis.cxx @@ -21,7 +21,7 @@ #include "VCartesianAxis.hxx" #include "PlottingPositionHelper.hxx" -#include "ShapeFactory.hxx" +#include "AbstractShapeFactory.hxx" #include "CommonConverters.hxx" #include "macros.hxx" #include "ViewDefines.hxx" @@ -93,11 +93,11 @@ Reference< drawing::XShape > createSingleLabel( // #i78696# use mathematically correct rotation now const double fRotationAnglePi(rAxisLabelProperties.fRotationAngleDegree * (F_PI / -180.0)); -uno::Any aATransformation = ShapeFactory::makeTransformation( rAnchorScreenPosition2D, fRotationAnglePi ); -OUString aLabel = ShapeFactory::getStackedString( rLabel, rAxisLabelProperties.bStackCharacters ); +uno::Any aATransformation = AbstractShapeFactory::makeTransformation( rAnchorScreenPosition2D, fRotationAnglePi ); +OUString aLabel = AbstractShapeFactory::getStackedString( rLabel, rAxisLabelProperties.bStackCharacters ); -Reference< drawing::XShape > xShape2DText = ShapeFactory(xShapeFactory) -.createText( xTarget, aLabel, rPropNames, rPropValues, aATransformation ); +Reference< drawing::XShape > xShape2DText = AbstractShapeFactory::getOrCreateShapeFactory(xShapeFactory) +->createText( xTarget, aLabel, rPropNames, rPropValues, aATransformation ); LabelPositionHelper::correctPositionForRotation( xShape2DText , rAxisProperties.m_aLabelAlignment, rAxisLabelProperties.fRotationAngleDegree, rAxisProperties.m_bComplexCategories ); @@ -113,7 +113,7 @@ bool lcl_doesShapeOverlapWithTickmark( const Reference< drawing::XShape >& xShap if(!xShape.is()) return false; -::basegfx::B2IRectangle aShapeRect = BaseGFXHelper::makeRectangle(xShape->getPosition(),ShapeFactory::getSizeAfterRotation( xShape, fRotationAngleDegree )); +::basegfx::B2IRectangle aShapeRect = BaseGFXHelper::makeRectangle(xShape->getPosition(),AbstractShapeFactory::getSizeAfterRotation( xShape, fRotationAngleDegree )); if( bIsVerticalAxis ) { @@ -293,7 +293,7 @@ B2DVector lcl_getLabelsDistance( TickIter& rIter, const B2DVector& rDistanceTick xShape2DText = pTickInfo->xTextShape; if( xShape2DText.is() ) { -awt::Size aSize = ShapeFactory::getSizeAfterRotation( xShape2DText, fRotationAngleDegree ); +awt::Size aSize = AbstractShapeFactory::getSizeAfterRotation( xShape2DText, fRotationAngleDegree ); if(fabs(aStaggerDirection.getX())>fabs(aStaggerDirection.getY())) nDistance = ::std::max(nDistance,aSize.Width); else @@ -1525,7 +1525,7 @@ void VCartesianAxis::updatePositions() // #i78696# use mathematically correct rotation now const double fRotationAnglePi(fRota
[Libreoffice-commits] core.git: Changes to 'private/moggi/abstract-chart-rendering'
New branch 'private/moggi/abstract-chart-rendering' available with the following commits: commit 325ee8524f6a027bb051f12a6a1c5ccee9b8072e Author: Markus Mohrhard Date: Sat Oct 5 00:57:25 2013 +0200 create an AbstractFactory and add a DummyShapeFactory for testing commit 5b5051b2964e1325b39e0703491cc60655c0eac0 Author: Markus Mohrhard Date: Thu Oct 3 03:16:23 2013 +0200 remove unused parameter Change-Id: If08c9c3de0b8aa0b842c0ebfc03bb4ff0134bbb3 commit e7db08229a12d382ba0385cb51681e11449c791f Author: Markus Mohrhard Date: Wed Oct 2 17:19:12 2013 +0200 use CPPUNITTRACE now and explain how to use with visual studio Change-Id: Ic8a76ac6eb96fe82707512ad8e00fef8309111ef ___ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
[Libreoffice-commits] core.git: Changes to 'refs/tags/suse-4.0-17'
Tag 'suse-4.0-17' created by Andras Timar at 2013-10-04 22:49 -0700 suse-4.0-17 Changes since suse-4.0-15-4: --- 0 files changed --- ___ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
[Libreoffice-commits] translations.git: Changes to 'refs/tags/suse-4.0-17'
Tag 'suse-4.0-17' created by Andras Timar at 2013-10-04 22:49 -0700 suse-4.0-17 Changes since libreoffice-4.0.2.2-4: --- 0 files changed --- ___ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
[Libreoffice-commits] help.git: Changes to 'refs/tags/suse-4.0-17'
Tag 'suse-4.0-17' created by Andras Timar at 2013-10-04 22:49 -0700 suse-4.0-17 Changes since libreoffice-4.0.2.2: Petr Mladek (1): Branch suse-4.0 --- 0 files changed --- ___ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/suse-4.0-17'
Tag 'suse-4.0-17' created by Andras Timar at 2013-10-04 22:49 -0700 suse-4.0-17 Changes since libreoffice-4.0.2.2-10: --- 0 files changed --- ___ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
[Bug 36104] [FILESAVE] National symbols corrupted when saved in the MS Excel 5.0 format
https://bugs.freedesktop.org/show_bug.cgi?id=36104 Urmas changed: What|Removed |Added Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #6 from Urmas --- Sadly the Excel 95 format support has never reached maturity before being removed. -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 31609] Support different smart quote settings by language.
https://bugs.freedesktop.org/show_bug.cgi?id=31609 Urmas changed: What|Removed |Added Status|NEW |RESOLVED Resolution|--- |WORKSFORME --- Comment #9 from Urmas --- There is a separate quote style for each language. -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Libreoffice-commits] core.git: 3 commits - Makefile.in sc/source shell/source solenv/gbuild
Makefile.in |8 ++-- sc/source/filter/excel/xeformula.cxx |4 ++-- shell/source/win32/shlxthandler/ooofilt/stream_helper.cxx |3 ++- solenv/gbuild/Module.mk |4 4 files changed, 14 insertions(+), 5 deletions(-) New commits: commit 6cea76189fb8d9fbb358f757157df66c7ea31c85 Author: Tor Lillqvist Date: Fri Oct 4 19:36:57 2013 +0200 fdo#67534: try to avoid file locking in Explorer shell extensions Change-Id: I287395f6c25b1bfb9b9482166ae6f34d9af8f455 diff --git a/shell/source/win32/shlxthandler/ooofilt/stream_helper.cxx b/shell/source/win32/shlxthandler/ooofilt/stream_helper.cxx index 3b77d28..f1fb321 100644 --- a/shell/source/win32/shlxthandler/ooofilt/stream_helper.cxx +++ b/shell/source/win32/shlxthandler/ooofilt/stream_helper.cxx @@ -106,7 +106,8 @@ long BufferStream::sseek (long offset, int origin) FileStream::FileStream(const char *filename) : file(0) { -file = fopen(filename, "rb"); +// fdo#67534: avoid locking to not interfere with soffice opening the file +file = _fsopen(filename, "rb", _SH_DENYNO); } FileStream::~FileStream() commit 738ae33f7e1503a72ef6e31318f80257f173042d Author: Michael Stahl Date: Fri Oct 4 19:36:07 2013 +0200 warning C4701: potentially uninitialized local variables Change-Id: Ia153de4928ff99e8943450be27fa5ddeada8608c diff --git a/sc/source/filter/excel/xeformula.cxx b/sc/source/filter/excel/xeformula.cxx index 7db3bb5..662ae07 100644 --- a/sc/source/filter/excel/xeformula.cxx +++ b/sc/source/filter/excel/xeformula.cxx @@ -1250,7 +1250,7 @@ void XclExpFmlaCompImpl::ProcessDdeLink( const XclExpScToken& rTokData ) if( mxData->mbOk ) mxData->mbOk = aApplic.Len() && aTopic.Len() && aItem.Len(); if( mxData->mbOk ) { -sal_uInt16 nExtSheet, nExtName; +sal_uInt16 nExtSheet(0), nExtName(0); if( mxData->mpLinkMgr && mxData->mpLinkMgr->InsertDde( nExtSheet, nExtName, aApplic, aTopic, aItem ) ) AppendNameXToken( nExtSheet, nExtName, rTokData.mnSpaces ); else @@ -2377,7 +2377,7 @@ void XclExpFmlaCompImpl::AppendAddInCallToken( const XclExpExtFuncData& rExtFunc void XclExpFmlaCompImpl::AppendEuroToolCallToken( const XclExpExtFuncData& rExtFuncData, sal_uInt8 nSpaces ) { -sal_uInt16 nExtSheet, nExtName; +sal_uInt16 nExtSheet(0), nExtName(0); if( mxData->mpLinkMgr && mxData->mpLinkMgr->InsertEuroTool( nExtSheet, nExtName, rExtFuncData.maFuncName ) ) AppendNameXToken( nExtSheet, nExtName, nSpaces ); else commit bbadfca2cad32f1da9cca225df0b12cdde84d593 Author: Michael Stahl Date: Thu Oct 3 18:49:25 2013 +0200 refactor make check to run subsequentcheck parallel to instset ... which saves 4 minutes on a "make check" here, when configured --with-package-format="archive" Change-Id: I415e0e95ae7f4e289fa4797643f5d744015d80ad diff --git a/Makefile.in b/Makefile.in index 5e46409..a9764bf 100644 --- a/Makefile.in +++ b/Makefile.in @@ -229,8 +229,11 @@ bootstrap: compilerplugins # # Build # +# Note: if invoked as "make check" this will also run subsequentcheck! +# build: bootstrap fetch $(if $(filter $(INPATH),$(INPATH_FOR_BUILD)),,cross-toolset) - $(GNUMAKE) -j $(PARALLELISM) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild + $(GNUMAKE) -j $(PARALLELISM) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild \ + all $(if $(filter check,$(MAKECMDGOALS)),subsequentcheck) ifneq ($(filter-out WNT MACOSX IOS ANDROID,$(OS)),) install-gdb-printers -a $(INSTDIR) endif @@ -373,7 +376,8 @@ findunusedcode: | grep -v ^WSObject \ > unusedcode.easy -check: build subsequentcheck +# the actual running of subsequentcheck is now done in "build" target => faster +check: build dump-deps: @$(SRCDIR)/bin/module-deps.pl $(GNUMAKE) $(SRCDIR)/Makefile.gbuild diff --git a/solenv/gbuild/Module.mk b/solenv/gbuild/Module.mk index 7b3aad94..98930ed 100644 --- a/solenv/gbuild/Module.mk +++ b/solenv/gbuild/Module.mk @@ -229,10 +229,14 @@ $(call gb_Module_get_clean_target,$(1)) : $$(gb_Module_CURRENTCLEANTARGET) endef +# has order dependency on AllModulesButInstsetNative to be able to run +# subsequentcheck in the same make process on "make check" define gb_Module_add_subsequentcheck_target $(call gb_Module__read_targetfile,$(1),$(2),subsequentcheck target) $(call gb_Module_get_subsequentcheck_target,$(1)) : $$(gb_Module_CURRENTTARGET) +$$(gb_Module_CURRENTTARGET) :| \ + $(call gb_Postprocess_get_target,AllModulesButInstsetNative) $(call gb_Module_get_clean_target,$(1)) : $$(gb_Module_CURRENTCLEANTARGET) endef ___ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
[Libreoffice-commits] core.git: Branch 'libreoffice-4-0' - vcl/source
vcl/source/fontsubset/sft.cxx |7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) New commits: commit d4b7546df3f9650b1773b9ad0cdd93aa01ae1097 Author: Herbert Dürr Date: Fri Oct 4 15:14:22 2013 + Resolves: #i123417# handle subsetting of empty ttf compound glyphs gracefully (cherry picked from commit d519b07ecd4b67cedf1fe3e1860ef33a48a01ae4) Signed-off-by: Caolán McNamara Conflicts: vcl/source/fontsubset/sft.cxx Change-Id: I51d4a97f1f01be49cb5ab058019cd153e23437bd (cherry picked from commit 6489f97fc428446c53c17f885963776cdcc21490) Signed-off-by: Caolán McNamara diff --git a/vcl/source/fontsubset/sft.cxx b/vcl/source/fontsubset/sft.cxx index e110c12..a8e8e00 100644 --- a/vcl/source/fontsubset/sft.cxx +++ b/vcl/source/fontsubset/sft.cxx @@ -745,7 +745,10 @@ static int GetCompoundTTOutline(TrueTypeFont *ttf, sal_uInt32 glyphID, ControlPo } while (flags & MORE_COMPONENTS); - +// #i123417# some fonts like IFAOGrec have no outline points in some compound glyphs +// so this unlikely but possible scenario should be handled gracefully +if( myPoints.empty() ) +return 0; np = myPoints.size(); @@ -2620,7 +2623,7 @@ GlyphData *GetTTRawGlyphData(TrueTypeFont *ttf, sal_uInt32 glyphID) /* now calculate npoints and ncontours */ ControlPoint *cp; n = GetTTGlyphPoints(ttf, glyphID, &cp); -if (n != -1) +if (n > 0) { int m = 0; for (int i = 0; i < n; i++) ___ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - vcl/source
vcl/source/fontsubset/sft.cxx |7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) New commits: commit 7275a1e905bfe1757b84925c94a49a6c62a2efb5 Author: Herbert Dürr Date: Fri Oct 4 15:14:22 2013 + Resolves: #i123417# handle subsetting of empty ttf compound glyphs gracefully (cherry picked from commit d519b07ecd4b67cedf1fe3e1860ef33a48a01ae4) Signed-off-by: Caolán McNamara Conflicts: vcl/source/fontsubset/sft.cxx Change-Id: I51d4a97f1f01be49cb5ab058019cd153e23437bd (cherry picked from commit 6489f97fc428446c53c17f885963776cdcc21490) Signed-off-by: Caolán McNamara diff --git a/vcl/source/fontsubset/sft.cxx b/vcl/source/fontsubset/sft.cxx index 07d469b..f1bec51 100644 --- a/vcl/source/fontsubset/sft.cxx +++ b/vcl/source/fontsubset/sft.cxx @@ -745,7 +745,10 @@ static int GetCompoundTTOutline(TrueTypeFont *ttf, sal_uInt32 glyphID, ControlPo } while (flags & MORE_COMPONENTS); - +// #i123417# some fonts like IFAOGrec have no outline points in some compound glyphs +// so this unlikely but possible scenario should be handled gracefully +if( myPoints.empty() ) +return 0; np = myPoints.size(); @@ -2620,7 +2623,7 @@ GlyphData *GetTTRawGlyphData(TrueTypeFont *ttf, sal_uInt32 glyphID) /* now calculate npoints and ncontours */ ControlPoint *cp; n = GetTTGlyphPoints(ttf, glyphID, &cp); -if (n != -1) +if (n > 0) { int m = 0; for (int i = 0; i < n; i++) ___ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
[Libreoffice-commits] core.git: 3 commits - basic/source chart2/source cui/source desktop/source editeng/source filter/source framework/source include/svtools m4/ax_boost_base.m4 package/source qadevO
basic/source/comp/symtbl.cxx |2 - chart2/source/controller/accessibility/AccessibleBase.cxx |2 - cui/source/tabpages/tpgradnt.cxx |2 - desktop/source/app/app.cxx|2 - editeng/source/editeng/impedit.cxx|2 - filter/source/graphicfilter/ieps/ieps.cxx |2 - framework/source/services/desktop.cxx |2 - framework/source/services/frame.cxx |2 - include/svtools/ruler.hxx |2 - m4/ax_boost_base.m4 |2 - package/source/zippackage/ZipPackageFolder.cxx|2 - qadevOOo/runner/helper/ProcessHandler.java|2 - qadevOOo/runner/util/utils.java |2 - sc/inc/formularesult.hxx |2 - sd/source/ui/inc/ViewShellManager.hxx |2 - sw/inc/frmfmt.hxx |2 - sw/inc/printdata.hxx |2 - sw/qa/extras/ooxmlexport/ooxmlexport.cxx |4 ++ sw/source/core/docnode/ndcopy.cxx |2 - sw/source/core/text/txtfly.cxx|2 - sw/source/core/text/widorp.cxx|2 - sw/source/core/unocore/SwXTextDefaults.cxx|4 +- sw/source/core/unocore/unoobj2.cxx|2 - sw/source/filter/ww8/docxattributeoutput.cxx | 26 ++ wizards/source/euro/Common.xba|4 +- wizards/source/importwizard/Main.xba |2 - wizards/source/tools/Misc.xba |4 +- xmloff/source/chart/SchXMLExport.cxx |2 - 28 files changed, 53 insertions(+), 35 deletions(-) New commits: commit 457e0aef522583675247029e77cb212fb65d6cd1 Author: Jan Holesovsky Date: Fri Oct 4 20:21:55 2013 +0200 DOCX styles: Check that we roundtrip rPrDefaults. Change-Id: I3aef9fdedf9877d1243940c429e05ff36f7fa760 diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx index 223f26f..f771ef9 100644 --- a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx +++ b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx @@ -1402,6 +1402,10 @@ void Test::testStyleInheritance() assertXPath(pXmlStyles, "/w:styles/w:style[2]", "styleId", "Heading1"); // w:ind was copied from the parent (Normal) style without a good reason. assertXPath(pXmlStyles, "/w:styles/w:style[2]/w:pPr/w:ind", 0); + +// Check that we output real content of rPrDefault +assertXPath(pXmlStyles, "/w:styles/w:docDefaults/w:rPrDefault/w:rPr/w:rFonts", "ascii", "Times New Roman"); +assertXPath(pXmlStyles, "/w:styles/w:docDefaults/w:rPrDefault/w:rPr/w:lang", "bidi", "ar-SA"); } void Test::testSmartart() commit 9f8fb9fce00caf167284a737a6477e34c9cb Author: Jan Holesovsky Date: Fri Oct 4 20:10:01 2013 +0200 DOCX styles: Output real rPrDefault's. Not complete - to be checked which of the properties are we supposed to output; so far we support only w:rFont and w:lang. Change-Id: I142dd075735ba2c5cb1022768bfecf793148078f diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx index d215e25..8e3c1c3 100644 --- a/sw/source/filter/ww8/docxattributeoutput.cxx +++ b/sw/source/filter/ww8/docxattributeoutput.cxx @@ -2358,13 +2358,27 @@ void DocxAttributeOutput::StartStyles() void DocxAttributeOutput::DocDefaults( ) { -// To-Do : fill the '' node with actual data - // Write the '' section here -m_pSerializer->startElementNS( XML_w, XML_docDefaults, FSEND ); -m_pSerializer->singleElementNS( XML_w, XML_rPrDefault, FSEND ); -m_pSerializer->singleElementNS( XML_w, XML_pPrDefault, FSEND ); -m_pSerializer->endElementNS( XML_w, XML_docDefaults ); +m_pSerializer->startElementNS(XML_w, XML_docDefaults, FSEND); + +// Output the default run properties +m_pSerializer->startElementNS(XML_w, XML_rPrDefault, FSEND); +StartRunProperties(); + +// TODO find out which run properties do we want to write +const RES_CHRATR aDefaultRunProperties[] = { +RES_CHRATR_FONT, RES_CHRATR_CJK_FONT, RES_CHRATR_CTL_FONT, +RES_CHRATR_LANGUAGE, RES_CHRATR_CJK_LANGUAGE, RES_CHRATR_CTL_LANGUAGE, +}; +for (size_t i = 0; i < SAL_N_ELEMENTS(aDefaultRunProperties); ++i) +OutputItem(m_rExport.pDoc->GetDefault(aDefaultRunProperties[i])); + +EndRunProperties(NULL); +m_pSerializer->endElementNS(XML_w, XML_rPrDefault); + +// TODO should we output some paragraph properties too? +m_pSerializer->singleElementNS(XML_w, XML_pPrDefault, FSEND); +m_pSerializer->endElementNS(XML_w, XML_docDefaults); } void DocxAttri
[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - d5/19b07ecd4b67cedf1fe3e1860ef33a48a01ae4
d5/19b07ecd4b67cedf1fe3e1860ef33a48a01ae4 |1 + 1 file changed, 1 insertion(+) New commits: commit a181cf241de818781a09023818b380b5965e12ec Author: Caolán McNamara Date: Fri Oct 4 20:29:48 2013 +0100 Notes added by 'git notes add' diff --git a/d5/19b07ecd4b67cedf1fe3e1860ef33a48a01ae4 b/d5/19b07ecd4b67cedf1fe3e1860ef33a48a01ae4 new file mode 100644 index 000..1335e8a --- /dev/null +++ b/d5/19b07ecd4b67cedf1fe3e1860ef33a48a01ae4 @@ -0,0 +1 @@ +merged as: 6489f97fc428446c53c17f885963776cdcc21490 ___ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
[Libreoffice-commits] core.git: vcl/source
vcl/source/fontsubset/sft.cxx |7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) New commits: commit 6489f97fc428446c53c17f885963776cdcc21490 Author: Herbert Dürr Date: Fri Oct 4 15:14:22 2013 + Resolves: #i123417# handle subsetting of empty ttf compound glyphs gracefully (cherry picked from commit d519b07ecd4b67cedf1fe3e1860ef33a48a01ae4) Conflicts: vcl/source/fontsubset/sft.cxx Change-Id: I51d4a97f1f01be49cb5ab058019cd153e23437bd diff --git a/vcl/source/fontsubset/sft.cxx b/vcl/source/fontsubset/sft.cxx index 4bdc48e..38199c1 100644 --- a/vcl/source/fontsubset/sft.cxx +++ b/vcl/source/fontsubset/sft.cxx @@ -720,7 +720,10 @@ static int GetCompoundTTOutline(TrueTypeFont *ttf, sal_uInt32 glyphID, ControlPo } while (flags & MORE_COMPONENTS); - +// #i123417# some fonts like IFAOGrec have no outline points in some compound glyphs +// so this unlikely but possible scenario should be handled gracefully +if( myPoints.empty() ) +return 0; np = myPoints.size(); @@ -2595,7 +2598,7 @@ GlyphData *GetTTRawGlyphData(TrueTypeFont *ttf, sal_uInt32 glyphID) /* now calculate npoints and ncontours */ ControlPoint *cp; n = GetTTGlyphPoints(ttf, glyphID, &cp); -if (n != -1) +if (n > 0) { int m = 0; for (int i = 0; i < n; i++) ___ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
Re: draw a graphic::XGraphic on a rendering::XCanvas ?
On Thu, 2013-10-03 at 23:42 +0200, Thorsten Behrens wrote: > Caolan McNamara wrote: > > So I have a graphic::XGraphic and I want to draw it onto a > > rendering::XCanvas. How do I do that? > > > > I mean, XCanvas has a drawBitmap which takes a rendering::XBitmap but > > it's not clear to me how to get from graphic::XGraphic to > > rendering::XBitmap or if that's even the right approach. > > > Well, XGraphic can contain other things but bitmaps. Bitmaps are > easy, vcl bitmaps convert trivially to rendering::XBitmaps. Fair enough, that's all I fundamentally want to do in this case (507c1c9905ce02c376be4e57a937cde8d01d2c26) anyway. Does seem a bit odd that we seem to have so much parallel stacks of drawing infrastructures. C. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Libreoffice-commits] core.git: Branch 'private/kohei/calc-shared-string' - sc/inc sc/source
sc/inc/queryentry.hxx |3 + sc/source/core/tool/interpr1.cxx | 56 +++-- sc/source/core/tool/queryentry.cxx |2 - 3 files changed, 56 insertions(+), 5 deletions(-) New commits: commit db79eb60fb977b83190fb16880f240b21ceaf878 Author: Kohei Yoshida Date: Fri Oct 4 15:21:36 2013 -0400 Some attempt to store string ID's into query items. Change-Id: I8db7cd327728be0974405eabb0fd58156ba231d6 diff --git a/sc/inc/queryentry.hxx b/sc/inc/queryentry.hxx index a3baea6..636372e 100644 --- a/sc/inc/queryentry.hxx +++ b/sc/inc/queryentry.hxx @@ -42,8 +42,9 @@ struct SC_DLLPUBLIC ScQueryEntry QueryType meType; doublemfVal; OUString maString; +sal_uIntPtr mnStrId; -Item() : meType(ByValue), mfVal(0.0) {} +Item() : meType(ByValue), mfVal(0.0), mnStrId(0) {} bool operator== (const Item& r) const; }; diff --git a/sc/source/core/tool/interpr1.cxx b/sc/source/core/tool/interpr1.cxx index a997c92..b8e424a 100644 --- a/sc/source/core/tool/interpr1.cxx +++ b/sc/source/core/tool/interpr1.cxx @@ -60,6 +60,7 @@ #include #include +#include "svl/stringpool.hxx" #include #include @@ -6448,6 +6449,43 @@ void ScInterpreter::ScHLookup() CalculateLookup(true); } +namespace { + +#if 1 +bool isFilterByEqualString( const ScQueryParam& ) +{ +return false; +} +#else +bool isFilterByEqualString( const ScQueryParam& rParam ) +{ +if (rParam.bRegExp) +// filter by regular expression. +return false; + +if (!rParam.GetEntryCount()) +// No entries. +return false; + +const ScQueryEntry& rEntry = rParam.GetEntry(0); +if (rEntry.eOp != SC_EQUAL) +return false; + +const ScQueryEntry::QueryItemsType& rItems = rEntry.GetQueryItems(); +if (rItems.size() != 1) +// Multi-item query is not supported. +return false; + +if (rItems[0].meType != ScQueryEntry::ByString) +// Not by string equality. +return false; + +return true; +} +#endif + +} + void ScInterpreter::CalculateLookup(bool bHLookup) { sal_uInt8 nParamCount = GetByte(); @@ -6684,9 +6722,18 @@ void ScInterpreter::CalculateLookup(bool bHLookup) } else { -ScAddress aResultPos( nCol1, nRow1, nTab1); -bFound = LookupQueryWithCache( aResultPos, aParam); -nRow = aResultPos.Row(); +if (isFilterByEqualString(aParam)) +{ +nRow = nRow1; +bFound = true; +} +else +{ +ScAddress aResultPos( nCol1, nRow1, nTab1); +bFound = LookupQueryWithCache( aResultPos, aParam); +nRow = aResultPos.Row(); +} + nCol = nSpIndex; } @@ -6716,6 +6763,7 @@ bool ScInterpreter::FillEntry(ScQueryEntry& rEntry) const OUString& sStr = GetString(); rItem.meType = ScQueryEntry::ByString; rItem.maString = sStr; +rItem.mnStrId = pDok->GetCellStringPool().getIdentifierIgnoreCase(rItem.maString); } break; case svDoubleRef : @@ -6740,6 +6788,7 @@ bool ScInterpreter::FillEntry(ScQueryEntry& rEntry) GetCellString(aStr, aCell); rItem.meType = ScQueryEntry::ByString; rItem.maString = aStr; +rItem.mnStrId = pDok->GetCellStringPool().getIdentifierIgnoreCase(rItem.maString); } } break; @@ -6748,6 +6797,7 @@ bool ScInterpreter::FillEntry(ScQueryEntry& rEntry) OUString aStr; const ScMatValType nType = GetDoubleOrStringFromMatrix(rItem.mfVal, aStr); rItem.maString = aStr; +rItem.mnStrId = pDok->GetCellStringPool().getIdentifierIgnoreCase(rItem.maString); rItem.meType = ScMatrix::IsNonValueType(nType) ? ScQueryEntry::ByString : ScQueryEntry::ByValue; } diff --git a/sc/source/core/tool/queryentry.cxx b/sc/source/core/tool/queryentry.cxx index 1ac1a89..e061d0f 100644 --- a/sc/source/core/tool/queryentry.cxx +++ b/sc/source/core/tool/queryentry.cxx @@ -32,7 +32,7 @@ bool ScQueryEntry::Item::operator== (const Item& r) const { -return meType == r.meType && mfVal == r.mfVal && maString.equals(r.maString); +return meType == r.meType && mfVal == r.mfVal && maString.equals(r.maString) && mnStrId == r.mnStrId; } ScQueryEntry::ScQueryEntry() : ___ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
[Libreoffice-commits] core.git: avmedia/source include/avmedia slideshow/source
avmedia/source/viewer/mediawindow.cxx | 15 ++-- include/avmedia/mediawindow.hxx |4 ++ slideshow/source/engine/shapes/viewmediashape.cxx | 41 +++--- 3 files changed, 53 insertions(+), 7 deletions(-) New commits: commit 507c1c9905ce02c376be4e57a937cde8d01d2c26 Author: Caolán McNamara Date: Fri Oct 4 14:48:11 2013 +0100 Resolves: rhbz#1012379 draw audio-placeholder in presentation mode Change-Id: Ied61f9b4947e1a6eda04c442d95037cc1c7ef460 diff --git a/avmedia/source/viewer/mediawindow.cxx b/avmedia/source/viewer/mediawindow.cxx index 02e5b63..183a955 100644 --- a/avmedia/source/viewer/mediawindow.cxx +++ b/avmedia/source/viewer/mediawindow.cxx @@ -433,7 +433,7 @@ uno::Reference< graphic::XGraphic > MediaWindow::grabFrame( const OUString& rURL if( !aPrefSize.Width && !aPrefSize.Height ) { -const BitmapEx aBmpEx( AVMEDIA_RESID( AVMEDIA_BMP_AUDIOLOGO ) ); +const BitmapEx aBmpEx( getAudioLogo() ); apGraphic.reset( new Graphic( aBmpEx ) ); } } @@ -441,7 +441,7 @@ uno::Reference< graphic::XGraphic > MediaWindow::grabFrame( const OUString& rURL if( !xRet.is() && !apGraphic.get() && bAllowToCreateReplacementGraphic ) { -const BitmapEx aBmpEx( AVMEDIA_RESID( AVMEDIA_BMP_EMPTYLOGO ) ); +const BitmapEx aBmpEx( getEmptyLogo() ); apGraphic.reset( new Graphic( aBmpEx ) ); } @@ -451,6 +451,17 @@ uno::Reference< graphic::XGraphic > MediaWindow::grabFrame( const OUString& rURL return xRet; } +BitmapEx MediaWindow::getAudioLogo() +{ +return BitmapEx(AVMEDIA_RESID(AVMEDIA_BMP_AUDIOLOGO)); +} + +BitmapEx MediaWindow::getEmptyLogo() +{ +return BitmapEx(AVMEDIA_RESID(AVMEDIA_BMP_EMPTYLOGO)); +} + + } // namespace avemdia /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/avmedia/mediawindow.hxx b/include/avmedia/mediawindow.hxx index a5cb5dc..dcf4f36 100644 --- a/include/avmedia/mediawindow.hxx +++ b/include/avmedia/mediawindow.hxx @@ -27,6 +27,7 @@ #include #include #include +#include #include #define AVMEDIA_FRAMEGRABBER_DEFAULTFRAME -1.0 @@ -107,6 +108,9 @@ namespace avmedia bool bAllowToCreateReplacementGraphic = false, double fMediaTime = AVMEDIA_FRAMEGRABBER_DEFAULTFRAME ); +static BitmapEx getAudioLogo(); +static BitmapEx getEmptyLogo(); + private: // default: disabled copy/assignment diff --git a/slideshow/source/engine/shapes/viewmediashape.cxx b/slideshow/source/engine/shapes/viewmediashape.cxx index 2da034a..b788a0f 100644 --- a/slideshow/source/engine/shapes/viewmediashape.cxx +++ b/slideshow/source/engine/shapes/viewmediashape.cxx @@ -28,10 +28,12 @@ #include #include -#include +#include #include +#include #include +#include #include #include #include @@ -184,10 +186,32 @@ namespace slideshow if( !mpMediaWindow.get() && !mxPlayerWindow.is() ) { -// fill the shape background with black -fillRect( pCanvas, - rBounds, - 0x00FFU ); +// draw placeholder for no-video (no window) case +// no window and player == audio icon +// no window and no player == broken icon +BitmapEx aAudioLogo(mxPlayer.is() ? +avmedia::MediaWindow::getAudioLogo() : avmedia::MediaWindow::getEmptyLogo() ); + +uno::Reference< rendering::XBitmap > xBitmap(vcl::unotools::xBitmapFromBitmapEx( +pCanvas->getUNOCanvas()->getDevice(), aAudioLogo)); + +rendering::ViewState aViewState; +aViewState.AffineTransform = pCanvas->getViewState().AffineTransform; + +rendering::RenderState aRenderState; +::canvas::tools::initRenderState( aRenderState ); + +const ::Size aBmpSize( aAudioLogo.GetSizePixel() ); + +const ::basegfx::B2DVector aScale( rBounds.getWidth() / aBmpSize.Width(), + rBounds.getHeight() / aBmpSize.Height() ); +const basegfx::B2DHomMatrix aTranslation(basegfx::tools::createScaleTranslateB2DHomMatrix( +aScale, rBounds.getMinimum())); +::canvas::tools::setRenderStateTransform( aRenderState, aTranslation ); + +pCanvas->getUNOCanvas()->drawBitmap( xBitmap, + aViewState, + aRenderState ); } return true; @@ -463,6 +487,13 @@ namespace slidesh
Re: minutes of ESC call ...
On Thu, Oct 03, 2013 at 04:58:34PM +0100, Michael Meeks wrote: > + CC all developers' mailing list on all the easy hacks (Bjoern) done, see for example https://bugs.freedesktop.org/show_bug.cgi?id=68849#c3 Best, Bjoern ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 40694] Error in message warning that the column limit was exceeded for MS-Excel format
https://bugs.freedesktop.org/show_bug.cgi?id=40694 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #12 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 55324] Too many preprocessors (cpp)
https://bugs.freedesktop.org/show_bug.cgi?id=55324 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #3 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 38819] Make localisation stand-alone
https://bugs.freedesktop.org/show_bug.cgi?id=38819 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #3 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 42982] improve UNO API error reporting
https://bugs.freedesktop.org/show_bug.cgi?id=42982 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #11 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 38879] Add git history/log parser for tinderbox
https://bugs.freedesktop.org/show_bug.cgi?id=38879 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #5 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 38886] Synchronize command text and visual cursor
https://bugs.freedesktop.org/show_bug.cgi?id=38886 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #2 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 35300] Selection behavior oddity with Split Window
https://bugs.freedesktop.org/show_bug.cgi?id=35300 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #7 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 65219] [EasyHack] unit tests fail to clean up temp files
https://bugs.freedesktop.org/show_bug.cgi?id=65219 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #3 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 42075] Add a scan-button to the "select scanner"-dialog
https://bugs.freedesktop.org/show_bug.cgi?id=42075 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #4 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 50763] HTML Import doesnt parse inline base64 images correctly
https://bugs.freedesktop.org/show_bug.cgi?id=50763 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #4 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 33848] UI – Zoom slider should not hide when Slides sidebar is in use
https://bugs.freedesktop.org/show_bug.cgi?id=33848 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #14 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 63436] Support for ODF fields as written by KWord
https://bugs.freedesktop.org/show_bug.cgi?id=63436 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #1 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 66154] Make MAB notifications a daily digest
https://bugs.freedesktop.org/show_bug.cgi?id=66154 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #1 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 39632] Consolidate GetMsiProperty()
https://bugs.freedesktop.org/show_bug.cgi?id=39632 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #10 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 45618] Implement 3d slideshow transition framework also for windows
https://bugs.freedesktop.org/show_bug.cgi?id=45618 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #4 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 60924] move libraries to autoinstallation in scp2
https://bugs.freedesktop.org/show_bug.cgi?id=60924 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #60 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 60909] Out of space warning ...
https://bugs.freedesktop.org/show_bug.cgi?id=60909 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #2 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 60689] replace SUPD variable ...
https://bugs.freedesktop.org/show_bug.cgi?id=60689 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #7 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 38814] Snappier rendering: paint at idle, not on timeout
https://bugs.freedesktop.org/show_bug.cgi?id=38814 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #2 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 36800] "Find & replace" does not search single cell
https://bugs.freedesktop.org/show_bug.cgi?id=36800 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #16 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 51154] cppunit warning cleaning
https://bugs.freedesktop.org/show_bug.cgi?id=51154 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #9 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 47652] Provide stacktraces for crashes in existing bug reports
https://bugs.freedesktop.org/show_bug.cgi?id=47652 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #3 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 39596] use the CLang++ static analyser to find bugs
https://bugs.freedesktop.org/show_bug.cgi?id=39596 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #20 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 32581] [EDITING] Add the possibility to retrieve the filename of a movie or sound inserted in a document
https://bugs.freedesktop.org/show_bug.cgi?id=32581 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #7 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 51358] SVG: Add support for more slide transitions to svg documents exported by Impress
https://bugs.freedesktop.org/show_bug.cgi?id=51358 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #2 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 34965] Make Impress slides editable during presentation
https://bugs.freedesktop.org/show_bug.cgi?id=34965 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #14 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 47667] Create chart test documents
https://bugs.freedesktop.org/show_bug.cgi?id=47667 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #14 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 53092] Integrate bugzilla with gerrit
https://bugs.freedesktop.org/show_bug.cgi?id=53092 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #7 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 64911] Check strict version of bundled libs when building against external copies in ./configure
https://bugs.freedesktop.org/show_bug.cgi?id=64911 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #1 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 63962] Remove LibreOffice icon themes hardcoding
https://bugs.freedesktop.org/show_bug.cgi?id=63962 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #6 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 43227] FILEOPEN: UI to set workgroup (system DB) for opening MS Access (.mdb) files
https://bugs.freedesktop.org/show_bug.cgi?id=43227 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #1 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 31609] Support different smart quote settings by language.
https://bugs.freedesktop.org/show_bug.cgi?id=31609 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #8 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 36311] DDE link between two spreadsheets: updated values not saved
https://bugs.freedesktop.org/show_bug.cgi?id=36311 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #14 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 62957] FILESAVE: Save Last Slide Position in Impress
https://bugs.freedesktop.org/show_bug.cgi?id=62957 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #7 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 39440] cppcheck cleanliness
https://bugs.freedesktop.org/show_bug.cgi?id=39440 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #17 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 33655] allow admins to hide "enable experimental features" option
https://bugs.freedesktop.org/show_bug.cgi?id=33655 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #10 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 55380] Clients of GlobalEventBroadcaster should use DocumentEventBroadcaster/Listener
https://bugs.freedesktop.org/show_bug.cgi?id=55380 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #2 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 43059] apply sixgill static analyser to the code ...
https://bugs.freedesktop.org/show_bug.cgi?id=43059 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #9 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 38841] Fuzz XML file filters
https://bugs.freedesktop.org/show_bug.cgi?id=38841 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #4 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 38809] Improve Structure / Cache efficiency
https://bugs.freedesktop.org/show_bug.cgi?id=38809 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #2 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 38125] Wildcards "*" need to operate the same as in Excel
https://bugs.freedesktop.org/show_bug.cgi?id=38125 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #12 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 39625] Make existing cppunittests work
https://bugs.freedesktop.org/show_bug.cgi?id=39625 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #11 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 43369] Specific UI for collecting PostgreSQL connection settings
https://bugs.freedesktop.org/show_bug.cgi?id=43369 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #4 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 47320] DrMemory windows warning cleanup ...
https://bugs.freedesktop.org/show_bug.cgi?id=47320 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #6 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 34465] get rid of all calls to virtual const SfxPoolItem* Put( const SfxPoolItem&, USHORT nWhich)
https://bugs.freedesktop.org/show_bug.cgi?id=34465 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #10 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 38277] Floating toolbar title does not react on right-click
https://bugs.freedesktop.org/show_bug.cgi?id=38277 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #2 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 39593] copy/paste code detector / fixing
https://bugs.freedesktop.org/show_bug.cgi?id=39593 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #11 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 69973] gtk+ recent-files integration improvements
https://bugs.freedesktop.org/show_bug.cgi?id=69973 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #1 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 60698] kill pointless one-file library ...
https://bugs.freedesktop.org/show_bug.cgi?id=60698 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #1 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 53583] Helper tool collecting user configuration
https://bugs.freedesktop.org/show_bug.cgi?id=53583 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #3 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 60662] Adapt zoom dialog to HIG
https://bugs.freedesktop.org/show_bug.cgi?id=60662 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #2 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 60414] VIEWING: Responsive layout
https://bugs.freedesktop.org/show_bug.cgi?id=60414 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #3 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 33831] Media wiki export pictures as files
https://bugs.freedesktop.org/show_bug.cgi?id=33831 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #5 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 46200] [RFE] Use the Scroll Lock key as a toggling lock key like Excel
https://bugs.freedesktop.org/show_bug.cgi?id=46200 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #4 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 56676] EDITING: Tables in databases based on calc are unwriteable - Form Properties show them as writable
https://bugs.freedesktop.org/show_bug.cgi?id=56676 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #8 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 53675] Run, test and torture Daily Builds
https://bugs.freedesktop.org/show_bug.cgi?id=53675 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #1 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 45735] Automatic check at start-up whether LO is default program for ODF-file formats
https://bugs.freedesktop.org/show_bug.cgi?id=45735 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #7 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 40469] Modifed Frame Style Options Not Preserved, "Keep Ratio" Option Unavailable
https://bugs.freedesktop.org/show_bug.cgi?id=40469 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #6 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 60664] Adapt thesaurus dialog to HIG
https://bugs.freedesktop.org/show_bug.cgi?id=60664 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #2 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 38889] Make macro editing easier
https://bugs.freedesktop.org/show_bug.cgi?id=38889 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #10 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 47653] Create VirtualBox image to generate stacktraces for crashes
https://bugs.freedesktop.org/show_bug.cgi?id=47653 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #5 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 30873] Field variables break with additional formats
https://bugs.freedesktop.org/show_bug.cgi?id=30873 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #11 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 45789] automatic row height in reports
https://bugs.freedesktop.org/show_bug.cgi?id=45789 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #13 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 38808] Removal of ATL dependency on Windows
https://bugs.freedesktop.org/show_bug.cgi?id=38808 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #2 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 47958] gross cut/paste signal emission nonsense
https://bugs.freedesktop.org/show_bug.cgi?id=47958 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #10 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 64945] inconvenient localized symbol code
https://bugs.freedesktop.org/show_bug.cgi?id=64945 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #2 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 50050] Make LE (Link End) Index/Table Entry component character style match LS (Link Start) by default
https://bugs.freedesktop.org/show_bug.cgi?id=50050 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #2 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 45615] Implement additional 3d slideshow transitions
https://bugs.freedesktop.org/show_bug.cgi?id=45615 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #3 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 53676] Link bugs from different bug trackers
https://bugs.freedesktop.org/show_bug.cgi?id=53676 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #2 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 32419] When inserted on Writer, get "Base size" for formulas from underlining paragraph
https://bugs.freedesktop.org/show_bug.cgi?id=32419 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #6 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 50100] [Task] Verify a Bugfix
https://bugs.freedesktop.org/show_bug.cgi?id=50100 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #2 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 42949] accelerating compile times ...
https://bugs.freedesktop.org/show_bug.cgi?id=42949 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #12 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 47800] : inserting formula by "fn+f3" is not working with czech language
https://bugs.freedesktop.org/show_bug.cgi?id=47800 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #6 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 38890] Remove hard-coded project URLs
https://bugs.freedesktop.org/show_bug.cgi?id=38890 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #2 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 67664] query wizard in need of love
https://bugs.freedesktop.org/show_bug.cgi?id=67664 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #1 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 56903] Moz-free Outlook Address Book driver
https://bugs.freedesktop.org/show_bug.cgi?id=56903 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #2 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 69079] Creating a new themes in the gallery the files are always created as file "new theme.*" instead of "sdxxx.*" - existing files will be overwritten and leads to data loss.
https://bugs.freedesktop.org/show_bug.cgi?id=69079 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #7 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice
[Bug 63315] sign windows binaries during build
https://bugs.freedesktop.org/show_bug.cgi?id=63315 Björn Michaelsen changed: What|Removed |Added CC||libreoffice@lists.freedeskt ||op.org --- Comment #1 from Björn Michaelsen --- adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details -- You are receiving this mail because: You are on the CC list for the bug. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice