From 2471784335eeb6c06e0ee54342d6260c2efac8e9 Mon Sep 17 00:00:00 2001 From: andreas kainz Date: Thu, 12 Mar 2020 15:09:02 +0100 Subject: tdf#130208 use TableCellBackgroundColor instead of BackgroundColor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I2f1d5fdf976f9e787d64098a091022182156e401 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90408 Tested-by: Jenkins Reviewed-by: andreas_kainz (cherry picked from commit 2a5dfda892ca444eca2a0fcba2b28b9c9fd2915e) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90403 Reviewed-by: Xisco Faulí --- sw/uiconfig/swriter/ui/notebookbar.ui | 2 +- sw/uiconfig/swriter/ui/notebookbar_compact.ui | 2 +- sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui | 4 ++-- sw/uiconfig/swriter/ui/notebookbar_single.ui | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sw/uiconfig/swriter/ui/notebookbar.ui b/sw/uiconfig/swriter/ui/notebookbar.ui index 0cc64ef83294..335a1b7fb5df 100644 --- a/sw/uiconfig/swriter/ui/notebookbar.ui +++ b/sw/uiconfig/swriter/ui/notebookbar.ui @@ -10692,7 +10692,7 @@ True False - .uno:BackgroundColor + .uno:TableCellBackgroundColor False diff --git a/sw/uiconfig/swriter/ui/notebookbar_compact.ui b/sw/uiconfig/swriter/ui/notebookbar_compact.ui index 6760c607c84b..18b51e7776d1 100644 --- a/sw/uiconfig/swriter/ui/notebookbar_compact.ui +++ b/sw/uiconfig/swriter/ui/notebookbar_compact.ui @@ -9767,7 +9767,7 @@ True False - .uno:BackgroundColor + .uno:TableCellBackgroundColor False diff --git a/sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui b/sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui index 206a86f0e881..259161e66950 100644 --- a/sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui +++ b/sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui @@ -5685,7 +5685,7 @@ True False - .uno:BackgroundColor + .uno:TableCellBackgroundColor False @@ -6213,7 +6213,7 @@ True False - .uno:BackgroundColor + .uno:TableCellBackgroundColor False diff --git a/sw/uiconfig/swriter/ui/notebookbar_single.ui b/sw/uiconfig/swriter/ui/notebookbar_single.ui index aa1e24a11446..0f1faa7faee4 100644 --- a/sw/uiconfig/swriter/ui/notebookbar_single.ui +++ b/sw/uiconfig/swriter/ui/notebookbar_single.ui @@ -2678,7 +2678,7 @@ True False - .uno:BackgroundColor + .uno:TableCellBackgroundColor False -- cgit v1.2.3 From 6a3ceff3be9ee42199fdcbd434f5964ae55d13e5 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Thu, 19 Mar 2020 20:01:44 +0100 Subject: make: map slowcheck to gbuild's build and slowcheck MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is meant to to fix the Jenkins Windows/macOS buildbots after they started to run 'make unitcheck slowcheck'. (cherry picked from commit 4054a30e2b2fa254dfb20718ce757ceb2f638fd5) Change-Id: I128448ca3a190969c0cc0f02d2c27bc0a373129b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90793 Tested-by: Jenkins Reviewed-by: Luboš Luňák --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 50b995df7499..ce2dd29358bf 100644 --- a/Makefile.in +++ b/Makefile.in @@ -13,7 +13,7 @@ gb_Top_MODULE_CHECK_TARGETS := slowcheck unitcheck subsequentcheck perfcheck uic MAKECMDGOALS?=all build_goal:=$(if $(filter build check,$(MAKECMDGOALS)),all)\ - $(if $(filter build-nocheck uicheck,$(MAKECMDGOALS)),build)\ + $(if $(filter build-nocheck slowcheck uicheck,$(MAKECMDGOALS)),build)\ $(if $(filter check,$(MAKECMDGOALS)),subsequentcheck $(if $(filter Linux, $(shell uname)), uicheck))\ $(filter all build-l10n-only build-non-l10n-only debugrun help showmodules translations $(gb_Top_MODULE_CHECK_TARGETS) check packageinfo gbuildtojson,$(MAKECMDGOALS)) -- cgit v1.2.3 From 2e0c3a325734925b72a77839dc3849d684fccd46 Mon Sep 17 00:00:00 2001 From: Luboš Luňák Date: Fri, 20 Mar 2020 19:15:12 +0100 Subject: fix test dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I'm not sure if this is the right dependency, but this test is paired in Module_dbaccess.mk with CppunitTest_dbaccess_hsqldb_test and that one uses this too, and it makes the dependencies work. Change-Id: Ib7d1dff99ed5e6f91f11d6a583475323a3307ad6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90835 Tested-by: Jenkins Reviewed-by: Luboš Luňák (cherry picked from commit 5ef77a5af1ffa8f83fa6d803494bc0afe3742375) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90817 --- dbaccess/CppunitTest_dbaccess_RowSetClones.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dbaccess/CppunitTest_dbaccess_RowSetClones.mk b/dbaccess/CppunitTest_dbaccess_RowSetClones.mk index 27e47b40ce06..ac11256d6bfd 100644 --- a/dbaccess/CppunitTest_dbaccess_RowSetClones.mk +++ b/dbaccess/CppunitTest_dbaccess_RowSetClones.mk @@ -54,6 +54,10 @@ $(eval $(call gb_CppunitTest_use_libraries,dbaccess_RowSetClones, \ xo \ )) +$(eval $(call gb_CppunitTest_use_jars,dbaccess_RowSetClones, \ + sdbc_hsqldb \ +)) + $(eval $(call gb_CppunitTest_use_api,dbaccess_RowSetClones,\ offapi \ oovbaapi \ -- cgit v1.2.3 From dd3347f50881cdadc186bfaa605391062f73bd00 Mon Sep 17 00:00:00 2001 From: Luboš Luňák Date: Fri, 20 Mar 2020 13:05:18 +0100 Subject: fix CppunitTest_sw_accessible_relation_set dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit warn:sal.osl:4733:4733:sal/osl/unx/module.cxx:162: dlopen(/home/seli/build/suse/l1/instdir/program/libacclo.so, 1): /home/seli/build/suse/l1/instdir/program/libacclo.so: cannot open shared object file: No such file or directory warn:legacy.osl:4733:4733:toolkit/source/helper/accessibilityclient.cxx:183: AccessibilityClient::ensureInitialized: could not load the library, or not retrieve the needed symbol! Change-Id: I72ea338ae69ffabe2187f4725ec13deea9a2afd6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90789 Tested-by: Luboš Luňák Reviewed-by: Luboš Luňák (cherry picked from commit 6bc2b598d6b748a130b84d4a7e07f3b3c34fe3e1) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90810 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- sw/CppunitTest_sw_accessible_relation_set.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sw/CppunitTest_sw_accessible_relation_set.mk b/sw/CppunitTest_sw_accessible_relation_set.mk index 90b500f429aa..ddb1754426c5 100644 --- a/sw/CppunitTest_sw_accessible_relation_set.mk +++ b/sw/CppunitTest_sw_accessible_relation_set.mk @@ -58,4 +58,7 @@ $(eval $(call gb_CppunitTest_use_rdb,sw_accessible_relation_set,services)) $(eval $(call gb_CppunitTest_use_configuration,sw_accessible_relation_set)) +# we need to explicitly depend on Library_acc because it's dynamically loaded +$(call gb_CppunitTest_get_target,sw_accessible_relation_set) : $(call gb_Library_get_target,acc) + # vim: set noet sw=4 ts=4: -- cgit v1.2.3 From eb505fdbf8799a7930200d67e8b9f0aef229c3c4 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 19 Mar 2020 16:00:45 +0100 Subject: Missing test dependency `make clean && make CppunitTest_sw_apitests` SIGABRT'ed with [...] > warn:vcl.builder:2929395:2929395:vcl/source/window/builder.cxx:462: DBG_UNHANDLED_EXCEPTION in VclBuilder::VclBuilder(vcl::Window*, const rtl::OUString&, const rtl::OUString&, const rtl::OString&, const com::sun::star::uno::Reference&, bool, const NotebookBarAddonsItem*) > when: Unable to read .ui file exception: com.sun.star.container.NoSuchElementException message: file:///.../instdir/share/config/soffice.cfg/svx/ui/sidebarstylespanel.ui > warn:sfx.sidebar:2929395:2929395:sfx2/source/sidebar/SidebarController.cxx:976: Cannot create panel private:resource/toolpanel/SvxPanelFactory/StylesPropertyPanel com.sun.star.container.NoSuchElementException message: file:///.../instdir/share/config/soffice.cfg/svx/ui/sidebarstylespanel.ui > warn:vcl.builder:2929395:2929395:vcl/source/window/builder.cxx:462: DBG_UNHANDLED_EXCEPTION in VclBuilder::VclBuilder(vcl::Window*, const rtl::OUString&, const rtl::OUString&, const rtl::OString&, const com::sun::star::uno::Reference&, bool, const NotebookBarAddonsItem*) > when: Unable to read .ui file exception: com.sun.star.container.NoSuchElementException message: file:///.../instdir/share/config/soffice.cfg/svx/ui/sidebartextpanel.ui > warn:sfx.sidebar:2929395:2929395:sfx2/source/sidebar/SidebarController.cxx:976: Cannot create panel private:resource/toolpanel/SvxPanelFactory/TextPropertyPanel com.sun.star.container.NoSuchElementException message: file:///.../instdir/share/config/soffice.cfg/svx/ui/sidebartextpanel.ui > warn:vcl.builder:2929395:2929395:vcl/source/window/builder.cxx:462: DBG_UNHANDLED_EXCEPTION in VclBuilder::VclBuilder(vcl::Window*, const rtl::OUString&, const rtl::OUString&, const rtl::OString&, const com::sun::star::uno::Reference&, bool, const NotebookBarAddonsItem*) > when: Unable to read .ui file exception: com.sun.star.container.NoSuchElementException message: file:///.../instdir/share/config/soffice.cfg/svx/ui/sidebarparagraph.ui > warn:legacy.osl:2929395:2929395:vcl/source/window/window.cxx:269: Window ( 7Control()) with live children destroyed: 7VclVBox() > Window ( 7Control()) with live children destroyed: 7VclVBox() Change-Id: I89b6365bdabfea75e53a2bce7f8639061390e038 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90754 Tested-by: Jenkins Reviewed-by: Stephan Bergmann (cherry picked from commit 61d8d991a27c3bfe70e3b8d3b4ce4d8a41d18d2d) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90644 --- sw/CppunitTest_sw_apitests.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sw/CppunitTest_sw_apitests.mk b/sw/CppunitTest_sw_apitests.mk index dec7bc7e3de2..d65c058fc97c 100644 --- a/sw/CppunitTest_sw_apitests.mk +++ b/sw/CppunitTest_sw_apitests.mk @@ -74,4 +74,8 @@ $(eval $(call gb_CppunitTest_use_configuration,sw_apitests)) $(eval $(call gb_CppunitTest_use_rdb,sw_apitests,services)) +$(eval $(call gb_CppunitTest_use_uiconfigs,sw_apitests, \ + svx \ +)) + # vim: set noet sw=4 ts=4: -- cgit v1.2.3 From 6a39d880cc0d4a7bcfcbf65cd80d0d09d6be241c Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Fri, 20 Mar 2020 23:54:54 +0100 Subject: tdf#100706: get blink cursor delay for MacOS See https://bugs.documentfoundation.org/show_bug.cgi?id=100706#c1 Change-Id: I2e471f093ce18c8716108c4ba793c2124e489295 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90855 Tested-by: Jenkins Reviewed-by: Noel Grandin --- vcl/inc/osx/salframe.h | 2 ++ vcl/osx/salframe.cxx | 18 ++++++++++++++++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/vcl/inc/osx/salframe.h b/vcl/inc/osx/salframe.h index 2fcdef3609e9..3d0f19f418a0 100644 --- a/vcl/inc/osx/salframe.h +++ b/vcl/inc/osx/salframe.h @@ -95,6 +95,8 @@ public: bool mbGeometryDidChange; + int mnBlinkCursorDelay; + public: /** Constructor diff --git a/vcl/osx/salframe.cxx b/vcl/osx/salframe.cxx index 1bd88a810bc0..9065a3de2ff5 100644 --- a/vcl/osx/salframe.cxx +++ b/vcl/osx/salframe.cxx @@ -82,7 +82,8 @@ AquaSalFrame::AquaSalFrame( SalFrame* pParent, SalFrameStyleFlags salFrameStyle mePointerStyle( PointerStyle::Arrow ), mnTrackingRectTag( 0 ), mrClippingPath( nullptr ), - mnICOptions( InputContextFlags::NONE ) + mnICOptions( InputContextFlags::NONE ), + mnBlinkCursorDelay ( 500 ) { mpParent = dynamic_cast(pParent); @@ -90,6 +91,19 @@ AquaSalFrame::AquaSalFrame( SalFrame* pParent, SalFrameStyleFlags salFrameStyle SalData* pSalData = GetSalData(); pSalData->mpInstance->insertFrame( this ); + NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults]; + if (userDefaults != nil) + { + id setting = [userDefaults objectForKey: @"NSTextInsertionPointBlinkPeriodOn"]; + if (setting) + mnBlinkCursorDelay = [setting intValue]; + else + { + setting = [userDefaults objectForKey: @"NSTextInsertionPointBlinkPeriodOff"]; + if (setting) + mnBlinkCursorDelay = [setting intValue]; + } + } } AquaSalFrame::~AquaSalFrame() @@ -1279,7 +1293,7 @@ SAL_WNODEPRECATED_DECLARATIONS_POP aStyleSettings.SetMenuBarRolloverTextColor( aMenuTextColor ); aStyleSettings.SetMenuBarHighlightTextColor(aStyleSettings.GetMenuHighlightTextColor()); - aStyleSettings.SetCursorBlinkTime( 500 ); + aStyleSettings.SetCursorBlinkTime( mnBlinkCursorDelay ); // no mnemonics on macOS aStyleSettings.SetOptions( aStyleSettings.GetOptions() | StyleSettingsOptions::NoMnemonics ); -- cgit v1.2.3 From d61012dd84dc418c8cd4e90122f431997aafa634 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Tue, 10 Mar 2020 18:10:07 +0100 Subject: tdf#61274 sd PDF export: fix links ending up on wrong pages with hidden slides SdPage::IsExcluded() decides if a slide is hidden, SdXImpressDocument::render() checks for this and returns early if needed. In that case PDFExport::ExportSelection() detects that the produced metafile has no actions and avoids creating a PDF page. Then Impress links are created using the vcl::PDFExtOutDevData::CreateLink() call in drawinglayer::processor2d::VclMetafileProcessor2D::processTextHierarchyFieldPrimitive2D(), not specifying the PDF page number explicitly. This means the link is created on the "current" page number, set in vcl::PDFExtOutDevData::SetCurrentPageNumber(), called by PDFExport::ExportSelection(), but that filter/ code can't know about hidden slides in sd/. Fix the problem by setting the page number again in SdXImpressDocument::render(), that way the link created by drawinglayer will end on the correct page. (cherry picked from commit 01dbb38680aa39a4d3bc7afd05d44a4b2c9bc6ab) Conflicts: vcl/qa/cppunit/pdfexport/pdfexport.cxx Change-Id: Ic29e345d45bc7c944d65e6e450f1d742dd0e9f8c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90551 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos --- sd/source/ui/unoidl/unomodel.cxx | 8 +++++ vcl/qa/cppunit/pdfexport/data/link-wrong-page.odp | Bin 0 -> 12293 bytes vcl/qa/cppunit/pdfexport/pdfexport.cxx | 34 ++++++++++++++++++++++ 3 files changed, 42 insertions(+) create mode 100644 vcl/qa/cppunit/pdfexport/data/link-wrong-page.odp diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx index 6f7510488a30..8bc98bbc6693 100644 --- a/sd/source/ui/unoidl/unomodel.cxx +++ b/sd/source/ui/unoidl/unomodel.cxx @@ -1884,6 +1884,14 @@ void SAL_CALL SdXImpressDocument::render( sal_Int32 nRenderer, const uno::Any& r (pPDFExtOutDevData && pPDFExtOutDevData->GetIsExportHiddenSlides())) ) return; + if (pPDFExtOutDevData) + { + // Calculate the page number in the PDF output, which may be smaller than the page number in + // case of hidden slides. + sal_Int32 nOutputPageNum = CalcOutputPageNum(pPDFExtOutDevData, mpDoc, nPageNumber); + pPDFExtOutDevData->SetCurrentPageNumber(nOutputPageNum); + } + std::unique_ptr<::sd::ClientView> pView( new ::sd::ClientView( mpDocShell, pOut ) ); ::tools::Rectangle aVisArea( Point(), mpDoc->GetSdPage( static_cast(nPageNumber) - 1, ePageKind )->GetSize() ); vcl::Region aRegion( aVisArea ); diff --git a/vcl/qa/cppunit/pdfexport/data/link-wrong-page.odp b/vcl/qa/cppunit/pdfexport/data/link-wrong-page.odp new file mode 100644 index 000000000000..b6787aff6684 Binary files /dev/null and b/vcl/qa/cppunit/pdfexport/data/link-wrong-page.odp differ diff --git a/vcl/qa/cppunit/pdfexport/pdfexport.cxx b/vcl/qa/cppunit/pdfexport/pdfexport.cxx index 9b95717d4349..48f12080f74b 100644 --- a/vcl/qa/cppunit/pdfexport/pdfexport.cxx +++ b/vcl/qa/cppunit/pdfexport/pdfexport.cxx @@ -137,6 +137,7 @@ public: void testTdf121615(); void testTocLink(); void testPdfImageResourceInlineXObjectRef(); + void testLinkWrongPage(); CPPUNIT_TEST_SUITE(PdfExportTest); CPPUNIT_TEST(testTdf106059); @@ -174,6 +175,7 @@ public: CPPUNIT_TEST(testTdf121615); CPPUNIT_TEST(testTocLink); CPPUNIT_TEST(testPdfImageResourceInlineXObjectRef); + CPPUNIT_TEST(testLinkWrongPage); CPPUNIT_TEST_SUITE_END(); }; @@ -1861,6 +1863,38 @@ void PdfExportTest::testTocLink() CPPUNIT_ASSERT(FPDFLink_Enumerate(pPdfPage.get(), &nStartPos, &pLinkAnnot)); } +bool HasLinksOnPage(PageHolder& pPdfPage) +{ + int nStartPos = 0; + FPDF_LINK pLinkAnnot = nullptr; + return FPDFLink_Enumerate(pPdfPage.get(), &nStartPos, &pLinkAnnot); +} + +void PdfExportTest::testLinkWrongPage() +{ + // Import the bugdoc and export as PDF. + OUString aURL = m_directories.getURLFromSrc(DATA_DIRECTORY) + "link-wrong-page.odp"; + utl::MediaDescriptor aMediaDescriptor; + aMediaDescriptor["FilterName"] <<= OUString("impress_pdf_Export"); + DocumentHolder pPdfDocument = exportAndParse(aURL, aMediaDescriptor); + + // The document has 2 pages. + CPPUNIT_ASSERT_EQUAL(2, FPDF_GetPageCount(pPdfDocument.get())); + + // First page should have 1 link (2nd slide, 1st was hidden). + PageHolder pPdfPage(FPDF_LoadPage(pPdfDocument.get(), /*page_index=*/0)); + CPPUNIT_ASSERT(pPdfPage.get()); + + // Without the accompanying fix in place, this test would have failed, as the link of the first + // page went to the second page due to the hidden first slide. + CPPUNIT_ASSERT(HasLinksOnPage(pPdfPage)); + + // Second page should have no links (3rd slide). + PageHolder pPdfPage2(FPDF_LoadPage(pPdfDocument.get(), /*page_index=*/1)); + CPPUNIT_ASSERT(pPdfPage2.get()); + CPPUNIT_ASSERT(!HasLinksOnPage(pPdfPage2)); +} + void PdfExportTest::testPdfImageResourceInlineXObjectRef() { // Create an empty document. -- cgit v1.2.3 From 2f98d1179479f81b2c4d99004d8fcf7c1bc0c6a5 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 20 Mar 2020 09:15:05 +0100 Subject: Missing test dependencies `make clean && make CppunitTest_sw_xhtmlexport` SIGABRT'ed with [...] > warn:vcl.builder:649768:649768:vcl/source/window/builder.cxx:462: DBG_UNHANDLED_EXCEPTION in VclBuilder::VclBuilder(vcl::Window *, const rtl::OUString &, const rtl::OUString &, const rtl::OString &, const css::uno::Reference &, bool, const NotebookBarAddonsItem *) > when: Unable to read .ui file exception: com.sun.star.container.NoSuchElementException message: file:///.../instdir/share/config/soffice.cfg/svx/ui/sidebarstylespanel.ui > warn:sfx.sidebar:649768:649768:sfx2/source/sidebar/SidebarController.cxx:976: Cannot create panel private:resource/toolpanel/SvxPanelFactory/StylesPropertyPanel com.sun.star.container.NoSuchElementException message: file:///.../instdir/share/config/soffice.cfg/svx/ui/sidebarstylespanel.ui > warn:vcl.builder:649768:649768:vcl/source/window/builder.cxx:462: DBG_UNHANDLED_EXCEPTION in VclBuilder::VclBuilder(vcl::Window *, const rtl::OUString &, const rtl::OUString &, const rtl::OString &, const css::uno::Reference &, bool, const NotebookBarAddonsItem *) > when: Unable to read .ui file exception: com.sun.star.container.NoSuchElementException message: file:///.../instdir/share/config/soffice.cfg/svx/ui/sidebartextpanel.ui > warn:sfx.sidebar:649768:649768:sfx2/source/sidebar/SidebarController.cxx:976: Cannot create panel private:resource/toolpanel/SvxPanelFactory/TextPropertyPanel com.sun.star.container.NoSuchElementException message: file:///.../instdir/share/config/soffice.cfg/svx/ui/sidebartextpanel.ui > warn:vcl.builder:649768:649768:vcl/source/window/builder.cxx:462: DBG_UNHANDLED_EXCEPTION in VclBuilder::VclBuilder(vcl::Window *, const rtl::OUString &, const rtl::OUString &, const rtl::OString &, const css::uno::Reference &, bool, const NotebookBarAddonsItem *) > when: Unable to read .ui file exception: com.sun.star.container.NoSuchElementException message: file:///.../instdir/share/config/soffice.cfg/svx/ui/sidebarparagraph.ui > warn:legacy.osl:649768:649768:vcl/source/window/window.cxx:269: Window ( 7Control()) with live children destroyed: 7VclVBox() > Window ( 7Control()) with live children destroyed: 7VclVBox() and then still failed with [...] > I/O warning : failed to load external entity "file:///.../instdir/share/xslt/export/xhtml/opendoc2xhtml.xsl" > error > xsltParseStylesheetFile : cannot parse file:///.../instdir/share/xslt/export/xhtml/opendoc2xhtml.xsl > warn:filter.xslt:662169:662186:filter/source/xsltfilter/XSLTFilter.cxx:234: XSLTFilter::error was called: com.sun.star.uno.Exception message: failed to load external entity "file:///.../instdir/share/xslt/export/xhtml/opendoc2xhtml.xsl" > > warn:xmloff:662169:662169:xmloff/source/core/xmlerror.cxx:169: An error or a warning has occurred during XML import/export! > Error-Id: 0x60040004 > Flags: 6 ERROR SEVERE > Class: 4 API > Number: 4 > Parameters: > Exception-Message: com.sun.star.uno.RuntimeException: "" > > warn:sfx.doc:662169:662169:sfx2/source/doc/sfxbasemodel.cxx:3096: Storing has failed, no error is set! > image-mimetype.odt: > unknown:0:testImageEmbedding::Import_Export > An uncaught exception of type com.sun.star.io.IOException > - SfxBaseModel::impl_store failed: 0xc10(Error Area:Io Class:Write Code:16) and then still failed with [...] > I/O warning : failed to load external entity "file:///.../instdir/share/xslt/export/common/styles/style_collector.xsl" > compilation error: file file:///.../instdir/share/xslt/export/xhtml/opendoc2xhtml.xsl line 55 element include > xsl:include : unable to load file:///.../instdir/share/xslt/export/common/styles/style_collector.xsl > I/O warning : failed to load external entity "file:///.../instdir/share/xslt/export/common/styles/style_mapping_css.xsl" > compilation error: file file:///.../instdir/share/xslt/export/xhtml/opendoc2xhtml.xsl line 58 element include > xsl:include : unable to load file:///.../instdir/share/xslt/export/common/styles/style_mapping_css.xsl > I/O warning : failed to load external entity "file:///.../instdir/share/xslt/common/measure_conversion.xsl" > compilation error: file file:///.../instdir/share/xslt/export/xhtml/body.xsl line 28 element import > xsl:import : unable to load file:///.../instdir/share/xslt/common/measure_conversion.xsl > I/O warning : failed to load external entity "file:///.../instdir/share/xslt/export/common/body.xsl" > compilation error: file file:///.../instdir/share/xslt/export/xhtml/body.xsl line 31 element import > xsl:import : unable to load file:///.../instdir/share/xslt/export/common/body.xsl > I/O warning : failed to load external entity "file:///.../instdir/share/xslt/export/common/table/table.xsl" > compilation error: file file:///.../instdir/share/xslt/export/xhtml/body.xsl line 34 element import > xsl:import : unable to load file:///.../instdir/share/xslt/export/common/table/table.xsl > warn:filter.xslt:662890:662907:filter/source/xsltfilter/XSLTFilter.cxx:234: XSLTFilter::error was called: com.sun.star.uno.Exception message: failed to load external entity "file:///.../instdir/share/xslt/export/common/table/table.xsl" > > warn:xmloff:662890:662890:xmloff/source/core/xmlerror.cxx:169: An error or a warning has occurred during XML import/export! > Error-Id: 0x60040004 > Flags: 6 ERROR SEVERE > Class: 4 API > Number: 4 > Parameters: > Exception-Message: com.sun.star.uno.RuntimeException: "" > > warn:sfx.doc:662890:662890:sfx2/source/doc/sfxbasemodel.cxx:3096: Storing has failed, no error is set! > image-mimetype.odt: > unknown:0:testImageEmbedding::Import_Export > An uncaught exception of type com.sun.star.io.IOException > - SfxBaseModel::impl_store failed: 0xc10(Error Area:Io Class:Write Code:16) Change-Id: I295222448be208582003c62e3d610f6fe743af3d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90772 Tested-by: Jenkins Reviewed-by: Stephan Bergmann (cherry picked from commit f7efe5a7fe8ade48fe376eb817017b26892f95b3) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90812 --- sw/CppunitTest_sw_xhtmlexport.mk | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/sw/CppunitTest_sw_xhtmlexport.mk b/sw/CppunitTest_sw_xhtmlexport.mk index 61f4700e08c4..70c3af41d6d8 100644 --- a/sw/CppunitTest_sw_xhtmlexport.mk +++ b/sw/CppunitTest_sw_xhtmlexport.mk @@ -58,4 +58,13 @@ $(eval $(call gb_CppunitTest_use_rdb,sw_xhtmlexport,services)) $(eval $(call gb_CppunitTest_use_configuration,sw_xhtmlexport)) +$(eval $(call gb_CppunitTest_use_packages,sw_xhtmlexport, \ + filter_xhtml \ + filter_xslt \ +)) + +$(eval $(call gb_CppunitTest_use_uiconfigs,sw_xhtmlexport, \ + svx \ +)) + # vim: set noet sw=4 ts=4: -- cgit v1.2.3 From 647cc8b966ae89839a847d0b10e73b3187c3090e Mon Sep 17 00:00:00 2001 From: Rizal Muttaqin Date: Sun, 22 Mar 2020 12:54:52 +0700 Subject: Colibre: fix for tdf#131454, Wrong icons for Valid Signature Change-Id: I16790b6f668823be346a6d8b51de4a98ac3eb5d3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90874 Tested-by: Jenkins Reviewed-by: Rizal Muttaqin (cherry picked from commit 8fe403c536234ff84ac2301e67e0f5483ba99b5b) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90819 --- icon-themes/colibre/cmd/32/signature.png | Bin 689 -> 928 bytes icon-themes/colibre/cmd/32/signaturelinedialog.png | Bin 901 -> 1051 bytes icon-themes/colibre/cmd/lc_signature.png | Bin 542 -> 785 bytes icon-themes/colibre/cmd/lc_signaturelinedialog.png | Bin 688 -> 898 bytes icon-themes/colibre/cmd/sc_signature.png | Bin 428 -> 619 bytes icon-themes/colibre/cmd/sc_signaturelinedialog.png | Bin 573 -> 683 bytes icon-themes/colibre/links.txt | 2 +- icon-themes/colibre_svg/cmd/32/signature.svg | 2 +- icon-themes/colibre_svg/cmd/32/signaturelinedialog.svg | 2 +- icon-themes/colibre_svg/cmd/lc_signature.svg | 2 +- icon-themes/colibre_svg/cmd/lc_signaturelinedialog.svg | 2 +- icon-themes/colibre_svg/cmd/sc_signature.svg | 2 +- icon-themes/colibre_svg/cmd/sc_signaturelinedialog.svg | 2 +- 13 files changed, 7 insertions(+), 7 deletions(-) diff --git a/icon-themes/colibre/cmd/32/signature.png b/icon-themes/colibre/cmd/32/signature.png index 2b30b8dc4b45..c17b4d69c319 100644 Binary files a/icon-themes/colibre/cmd/32/signature.png and b/icon-themes/colibre/cmd/32/signature.png differ diff --git a/icon-themes/colibre/cmd/32/signaturelinedialog.png b/icon-themes/colibre/cmd/32/signaturelinedialog.png index 95a119714fbe..0f845793cb5f 100644 Binary files a/icon-themes/colibre/cmd/32/signaturelinedialog.png and b/icon-themes/colibre/cmd/32/signaturelinedialog.png differ diff --git a/icon-themes/colibre/cmd/lc_signature.png b/icon-themes/colibre/cmd/lc_signature.png index 7cc88bc830cd..54dd06960ba3 100644 Binary files a/icon-themes/colibre/cmd/lc_signature.png and b/icon-themes/colibre/cmd/lc_signature.png differ diff --git a/icon-themes/colibre/cmd/lc_signaturelinedialog.png b/icon-themes/colibre/cmd/lc_signaturelinedialog.png index 28af02718db1..cf07980d465e 100644 Binary files a/icon-themes/colibre/cmd/lc_signaturelinedialog.png and b/icon-themes/colibre/cmd/lc_signaturelinedialog.png differ diff --git a/icon-themes/colibre/cmd/sc_signature.png b/icon-themes/colibre/cmd/sc_signature.png index 6205a3c58693..ac2db0c661f2 100644 Binary files a/icon-themes/colibre/cmd/sc_signature.png and b/icon-themes/colibre/cmd/sc_signature.png differ diff --git a/icon-themes/colibre/cmd/sc_signaturelinedialog.png b/icon-themes/colibre/cmd/sc_signaturelinedialog.png index 42a6aea4e512..a49b9ecbea07 100644 Binary files a/icon-themes/colibre/cmd/sc_signaturelinedialog.png and b/icon-themes/colibre/cmd/sc_signaturelinedialog.png differ diff --git a/icon-themes/colibre/links.txt b/icon-themes/colibre/links.txt index 07d0124d77ab..c0fe87e0bc76 100644 --- a/icon-themes/colibre/links.txt +++ b/icon-themes/colibre/links.txt @@ -2342,7 +2342,7 @@ cmd/sc_wrapmenu.png cmd/sc_wrapon.png # xmlsecurity # ============================================== xmlsecurity/res/key_12.png dbaccess/res/pkey.png -xmlsecurity/res/signet_11x16.png xmlsecurity/res/notcertificate_16.png +xmlsecurity/res/signet_11x16.png xmlsecurity/res/certificate_16.png cmd/32/columnoperations.png cmd/32/entirecolumn.png cmd/32/rowoperations.png cmd/32/entirerow.png diff --git a/icon-themes/colibre_svg/cmd/32/signature.svg b/icon-themes/colibre_svg/cmd/32/signature.svg index 3681e2c159f8..a87db5097cb8 100644 --- a/icon-themes/colibre_svg/cmd/32/signature.svg +++ b/icon-themes/colibre_svg/cmd/32/signature.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/colibre_svg/cmd/32/signaturelinedialog.svg b/icon-themes/colibre_svg/cmd/32/signaturelinedialog.svg index bfce0c0be75e..da3c8d6b569b 100644 --- a/icon-themes/colibre_svg/cmd/32/signaturelinedialog.svg +++ b/icon-themes/colibre_svg/cmd/32/signaturelinedialog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/colibre_svg/cmd/lc_signature.svg b/icon-themes/colibre_svg/cmd/lc_signature.svg index e71e61ecba03..f078638ca7a5 100644 --- a/icon-themes/colibre_svg/cmd/lc_signature.svg +++ b/icon-themes/colibre_svg/cmd/lc_signature.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/colibre_svg/cmd/lc_signaturelinedialog.svg b/icon-themes/colibre_svg/cmd/lc_signaturelinedialog.svg index 02a0be497418..0c6ca5547255 100644 --- a/icon-themes/colibre_svg/cmd/lc_signaturelinedialog.svg +++ b/icon-themes/colibre_svg/cmd/lc_signaturelinedialog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/colibre_svg/cmd/sc_signature.svg b/icon-themes/colibre_svg/cmd/sc_signature.svg index 29500a3ae93c..808f66ab1fc9 100644 --- a/icon-themes/colibre_svg/cmd/sc_signature.svg +++ b/icon-themes/colibre_svg/cmd/sc_signature.svg @@ -1 +1 @@ -/> \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/colibre_svg/cmd/sc_signaturelinedialog.svg b/icon-themes/colibre_svg/cmd/sc_signaturelinedialog.svg index 011b08cd540a..6a9d59a8fd81 100644 --- a/icon-themes/colibre_svg/cmd/sc_signaturelinedialog.svg +++ b/icon-themes/colibre_svg/cmd/sc_signaturelinedialog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file -- cgit v1.2.3 From 2de34614f65c0db153a0e8390c17a9fd0748c7d3 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Sun, 22 Mar 2020 14:48:39 +0100 Subject: tdf#131464: fix create an index of Writer in Japanese locale in i18npool/source/collator/collator_unicode.cxx, we got: 177 // replace algorithm name to implementation name. 178 if (rAlgorithm == "phonetic (alphanumeric first)") 179 aBuf.append("phonetic_alphanumeric_first"); 180 else if (rAlgorithm == "phonetic (alphanumeric last)") 181 aBuf.append("phonetic_alphanumeric_last"); 182 else 183 aBuf.append(rAlgorithm); So don't add extra ja_ before "phonetic..." Also we already add "ja" in buffer with line: 158 aBuf.append("get_").append(rLocale.Language).append("_"); so right functions from ICU will be retrieved Change-Id: I163c3ca4bb4dcfa1e5d29313190c5ba3e6396c4f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90877 Tested-by: Jenkins Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90889 Reviewed-by: Eike Rathke --- i18npool/source/indexentry/indexentrysupplier_ja_phonetic.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/i18npool/source/indexentry/indexentrysupplier_ja_phonetic.cxx b/i18npool/source/indexentry/indexentrysupplier_ja_phonetic.cxx index 012dbf3b65cb..30758b103cf3 100644 --- a/i18npool/source/indexentry/indexentrysupplier_ja_phonetic.cxx +++ b/i18npool/source/indexentry/indexentrysupplier_ja_phonetic.cxx @@ -63,7 +63,7 @@ sal_Int16 SAL_CALL IndexEntrySupplier_ja_phonetic::compareIndexEntry( return result; } -static const sal_Char first[] = "ja_phonetic (alphanumeric first)"; +static const sal_Char first[] = "phonetic (alphanumeric first)"; sal_Bool SAL_CALL IndexEntrySupplier_ja_phonetic_alphanumeric_first_by_syllable::loadAlgorithm( const css::lang::Locale& rLocale, const OUString& /*SortAlgorithm*/, sal_Int32 collatorOptions ) @@ -77,7 +77,7 @@ sal_Bool SAL_CALL IndexEntrySupplier_ja_phonetic_alphanumeric_first_by_consonant return collator->loadCollatorAlgorithm(first, rLocale, collatorOptions) == 0; } -static const sal_Char last[] = "ja_phonetic (alphanumeric last)"; +static const sal_Char last[] = "phonetic (alphanumeric last)"; sal_Bool SAL_CALL IndexEntrySupplier_ja_phonetic_alphanumeric_last_by_syllable::loadAlgorithm( const css::lang::Locale& rLocale, const OUString& /*SortAlgorithm*/, sal_Int32 collatorOptions ) -- cgit v1.2.3 From e73871e273c815461626782b2b055c946c6042d2 Mon Sep 17 00:00:00 2001 From: Justin Luth Date: Tue, 17 Mar 2020 21:18:41 +0300 Subject: tdf#130746: avoid nullptr dereference Change-Id: I32979a23caffea844f1c8eac9f408b18f0768b62 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90661 Tested-by: Jenkins Reviewed-by: Justin Luth (cherry picked from commit 81588ff2f0eb55576a5288778be2dfb5b4bc5e81) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90632 Reviewed-by: Michael Stahl --- sw/source/core/layout/frmtool.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sw/source/core/layout/frmtool.cxx b/sw/source/core/layout/frmtool.cxx index 0cad5caca44a..eafc4fd48a49 100644 --- a/sw/source/core/layout/frmtool.cxx +++ b/sw/source/core/layout/frmtool.cxx @@ -3451,9 +3451,9 @@ bool IsFrameInSameContext( const SwFrame *pInnerFrame, const SwFrame *pFrame ) static SwTwips lcl_CalcCellRstHeight( SwLayoutFrame *pCell ) { - if ( pCell->Lower()->IsContentFrame() || pCell->Lower()->IsSctFrame() ) + SwFrame *pLow = pCell->Lower(); + if ( pLow && (pLow->IsContentFrame() || pLow->IsSctFrame()) ) { - SwFrame *pLow = pCell->Lower(); long nHeight = 0, nFlyAdd = 0; do { @@ -3480,7 +3480,6 @@ static SwTwips lcl_CalcCellRstHeight( SwLayoutFrame *pCell ) else { long nRstHeight = 0; - SwFrame *pLow = pCell->Lower(); while (pLow && pLow->IsLayoutFrame()) { nRstHeight += ::CalcRowRstHeight(static_cast(pLow)); -- cgit v1.2.3 From a3b00e6192f8185eed574aa6782fec0ee42f091f Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 23 Mar 2020 16:42:07 +0000 Subject: tdf#131434 ensure expander icon column is created which the normal ::insert case does, but the bulk insert omitted Change-Id: I9b236e5f0e91292539164d39f0f90e109a1b503e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90825 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos --- vcl/source/app/salvtables.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx index 6b092f4d89cd..72db47b4e4f7 100644 --- a/vcl/source/app/salvtables.cxx +++ b/vcl/source/app/salvtables.cxx @@ -3591,9 +3591,11 @@ public: if (pFixedWidths) set_column_fixed_widths(*pFixedWidths); + Image aDummy; for (int i = 0; i < nSourceCount; ++i) { aVclIter.iter = new SvTreeListEntry; + aVclIter.iter->AddItem(std::make_unique(aDummy, aDummy, false)); m_xTreeView->Insert(aVclIter.iter, nullptr, TREELIST_APPEND); func(aVclIter, i); -- cgit v1.2.3 From 1f00568191325f134ff85599078ef0d5a6a3efa7 Mon Sep 17 00:00:00 2001 From: Christian Lohmaier Date: Tue, 24 Mar 2020 12:58:11 +0100 Subject: Update git submodules * Update translations from branch 'libreoffice-6-4' to d0b2687510429e3f329f5f6beaeabb0e966df450 - update translations for 6.4.3 rc1 and force-fix errors using pocheck Change-Id: I91472b8a05d87407a754370f592224d85d0770d9 --- translations | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/translations b/translations index 27997432892d..d0b268751042 160000 --- a/translations +++ b/translations @@ -1 +1 @@ -Subproject commit 27997432892d8cb1f8f8226194d0a637851ad13d +Subproject commit d0b2687510429e3f329f5f6beaeabb0e966df450 -- cgit v1.2.3 From 6fa0ff78550cd321116c9d9673cbcf49fc11a547 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Mon, 23 Mar 2020 14:30:26 +0100 Subject: python3: upgrade to release 3.7.7 Fixes CVE-2020-8315; this only affects Windows 7 and is a regression in Python 3.6. Change-Id: Ic1706e064a1b03ca1de6361794ed4586a89821d9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90916 Tested-by: Jenkins Reviewed-by: Michael Stahl (cherry picked from commit 74c811da0dedb205976eae69d8589fd91bbaefa2) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90824 Reviewed-by: Thorsten Behrens --- configure.ac | 2 +- download.lst | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 2ef84e8a4a95..a33302329280 100644 --- a/configure.ac +++ b/configure.ac @@ -8787,7 +8787,7 @@ internal) SYSTEM_PYTHON= PYTHON_VERSION_MAJOR=3 PYTHON_VERSION_MINOR=7 - PYTHON_VERSION=${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}.6 + PYTHON_VERSION=${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}.7 if ! grep -q -i python.*${PYTHON_VERSION} ${SRC_ROOT}/download.lst; then AC_MSG_ERROR([PYTHON_VERSION ${PYTHON_VERSION} but no matching file in download.lst]) fi diff --git a/download.lst b/download.lst index 8895fc25a1b0..8a98a1d0e379 100644 --- a/download.lst +++ b/download.lst @@ -212,8 +212,8 @@ export POPPLER_SHA256SUM := 234f8e573ea57fb6a008e7c1e56bfae1af5d1adf0e65f47555e1 export POPPLER_TARBALL := poppler-0.82.0.tar.xz export POSTGRESQL_SHA256SUM := a754c02f7051c2f21e52f8669a421b50485afcde9a581674d6106326b189d126 export POSTGRESQL_TARBALL := postgresql-9.2.24.tar.bz2 -export PYTHON_SHA256SUM := 55a2cce72049f0794e9a11a84862e9039af9183603b78bc60d89539f82cf533f -export PYTHON_TARBALL := Python-3.7.6.tar.xz +export PYTHON_SHA256SUM := 06a0a9f1bf0d8cd1e4121194d666c4e28ddae4dd54346de6c343206599f02136 +export PYTHON_TARBALL := Python-3.7.7.tar.xz export QRCODEGEN_SHA256SUM := fcdf9fd69fde07ae4dca2351d84271a9de8093002f733b77c70f52f1630f6e4a export QRCODEGEN_TARBALL := QR-Code-generator-1.4.0.tar.gz export QXP_SHA256SUM := e137b6b110120a52c98edd02ebdc4095ee08d0d5295a94316a981750095a945c -- cgit v1.2.3 From 63b573faf984875cda7a879e696ea75fae81df57 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Tue, 24 Mar 2020 10:48:04 +0100 Subject: icu: add patch to fix CVE-2020-10531 Change-Id: I0aca4af1bd79f28bf1c920a4d05e80948106aaac Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90971 Tested-by: Jenkins Reviewed-by: Michael Stahl (cherry picked from commit 002d1152dc418f7d624409e76cd9d4ac0b42c7f8) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90975 Reviewed-by: Thorsten Behrens --- external/icu/UnpackedTarball_icu.mk | 1 + ...7d08bc04a4296982fcef8b6b8a354a9e4e7afca.patch.2 | 118 +++++++++++++++++++++ 2 files changed, 119 insertions(+) create mode 100644 external/icu/b7d08bc04a4296982fcef8b6b8a354a9e4e7afca.patch.2 diff --git a/external/icu/UnpackedTarball_icu.mk b/external/icu/UnpackedTarball_icu.mk index d615a1fe855e..d785264bebad 100644 --- a/external/icu/UnpackedTarball_icu.mk +++ b/external/icu/UnpackedTarball_icu.mk @@ -39,6 +39,7 @@ $(eval $(call gb_UnpackedTarball_add_patches,icu,\ external/icu/char8_t.patch \ external/icu/c++20-comparison.patch \ external/icu/ubsan.patch \ + external/icu/b7d08bc04a4296982fcef8b6b8a354a9e4e7afca.patch.2 \ )) $(eval $(call gb_UnpackedTarball_add_file,icu,source/data/brkitr/khmerdict.dict,external/icu/khmerdict.dict)) diff --git a/external/icu/b7d08bc04a4296982fcef8b6b8a354a9e4e7afca.patch.2 b/external/icu/b7d08bc04a4296982fcef8b6b8a354a9e4e7afca.patch.2 new file mode 100644 index 000000000000..07b3db6774be --- /dev/null +++ b/external/icu/b7d08bc04a4296982fcef8b6b8a354a9e4e7afca.patch.2 @@ -0,0 +1,118 @@ +From b7d08bc04a4296982fcef8b6b8a354a9e4e7afca Mon Sep 17 00:00:00 2001 +From: Frank Tang +Date: Sat, 1 Feb 2020 02:39:04 +0000 +Subject: [PATCH] ICU-20958 Prevent SEGV_MAPERR in append + +See #971 +--- + icu4c/source/common/unistr.cpp | 6 ++- + icu4c/source/test/intltest/ustrtest.cpp | 62 +++++++++++++++++++++++++ + icu4c/source/test/intltest/ustrtest.h | 1 + + 3 files changed, 68 insertions(+), 1 deletion(-) + +diff --git a/icu4c/source/common/unistr.cpp b/icu4c/source/common/unistr.cpp +index 901bb3358ba..077b4d6ef20 100644 +--- a/icu4c/source/common/unistr.cpp ++++ b/icu4c/source/common/unistr.cpp +@@ -1563,7 +1563,11 @@ UnicodeString::doAppend(const UChar *srcChars, int32_t srcStart, int32_t srcLeng + } + + int32_t oldLength = length(); +- int32_t newLength = oldLength + srcLength; ++ int32_t newLength; ++ if (uprv_add32_overflow(oldLength, srcLength, &newLength)) { ++ setToBogus(); ++ return *this; ++ } + + // Check for append onto ourself + const UChar* oldArray = getArrayStart(); +diff --git a/icu4c/source/test/intltest/ustrtest.cpp b/icu4c/source/test/intltest/ustrtest.cpp +index b6515ea813c..ad38bdf53a3 100644 +--- a/icu4c/source/test/intltest/ustrtest.cpp ++++ b/icu4c/source/test/intltest/ustrtest.cpp +@@ -67,6 +67,7 @@ void UnicodeStringTest::runIndexedTest( int32_t index, UBool exec, const char* & + TESTCASE_AUTO(TestWCharPointers); + TESTCASE_AUTO(TestNullPointers); + TESTCASE_AUTO(TestUnicodeStringInsertAppendToSelf); ++ TESTCASE_AUTO(TestLargeAppend); + TESTCASE_AUTO_END; + } + +@@ -2310,3 +2311,64 @@ void UnicodeStringTest::TestUnicodeStringInsertAppendToSelf() { + str.insert(2, sub); + assertEquals("", u"abbcdcde", str); + } ++ ++void UnicodeStringTest::TestLargeAppend() { ++ if(quick) return; ++ ++ IcuTestErrorCode status(*this, "TestLargeAppend"); ++ // Make a large UnicodeString ++ int32_t len = 0xAFFFFFF; ++ UnicodeString str; ++ char16_t *buf = str.getBuffer(len); ++ // A fast way to set buffer to valid Unicode. ++ // 4E4E is a valid unicode character ++ uprv_memset(buf, 0x4e, len * 2); ++ str.releaseBuffer(len); ++ UnicodeString dest; ++ // Append it 16 times ++ // 0xAFFFFFF times 16 is 0xA4FFFFF1, ++ // which is greater than INT32_MAX, which is 0x7FFFFFFF. ++ int64_t total = 0; ++ for (int32_t i = 0; i < 16; i++) { ++ dest.append(str); ++ total += len; ++ if (total <= INT32_MAX) { ++ assertFalse("dest is not bogus", dest.isBogus()); ++ } else { ++ assertTrue("dest should be bogus", dest.isBogus()); ++ } ++ } ++ dest.remove(); ++ total = 0; ++ for (int32_t i = 0; i < 16; i++) { ++ dest.append(str); ++ total += len; ++ if (total + len <= INT32_MAX) { ++ assertFalse("dest is not bogus", dest.isBogus()); ++ } else if (total <= INT32_MAX) { ++ // Check that a string of exactly the maximum size works ++ UnicodeString str2; ++ int32_t remain = INT32_MAX - total; ++ char16_t *buf2 = str2.getBuffer(remain); ++ if (buf2 == nullptr) { ++ // if somehow memory allocation fail, return the test ++ return; ++ } ++ uprv_memset(buf2, 0x4e, remain * 2); ++ str2.releaseBuffer(remain); ++ dest.append(str2); ++ total += remain; ++ assertEquals("When a string of exactly the maximum size works", (int64_t)INT32_MAX, total); ++ assertEquals("When a string of exactly the maximum size works", INT32_MAX, dest.length()); ++ assertFalse("dest is not bogus", dest.isBogus()); ++ ++ // Check that a string size+1 goes bogus ++ str2.truncate(1); ++ dest.append(str2); ++ total++; ++ assertTrue("dest should be bogus", dest.isBogus()); ++ } else { ++ assertTrue("dest should be bogus", dest.isBogus()); ++ } ++ } ++} +diff --git a/icu4c/source/test/intltest/ustrtest.h b/icu4c/source/test/intltest/ustrtest.h +index 218befdcc68..4a356a92c7a 100644 +--- a/icu4c/source/test/intltest/ustrtest.h ++++ b/icu4c/source/test/intltest/ustrtest.h +@@ -97,6 +97,7 @@ class UnicodeStringTest: public IntlTest { + void TestWCharPointers(); + void TestNullPointers(); + void TestUnicodeStringInsertAppendToSelf(); ++ void TestLargeAppend(); + }; + + #endif -- cgit v1.2.3 From 20350a085110a1baa789e8ba2e3a1a5e57b299e6 Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz Date: Fri, 20 Mar 2020 07:51:53 +0100 Subject: Fix build with boost < 1.68 Follow-up fix for 73cac1031131021819a0fbd4d60554196aea230c "tdf130839: Corrects second level left margin in Smartart" Change-Id: Ie194062ba33cf505ad33fbfdc73c2f764b61d0aa Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90770 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- oox/source/drawingml/diagram/diagramlayoutatoms.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oox/source/drawingml/diagram/diagramlayoutatoms.cxx b/oox/source/drawingml/diagram/diagramlayoutatoms.cxx index 1b6a821f3a0a..ff83dde63fa3 100644 --- a/oox/source/drawingml/diagram/diagramlayoutatoms.cxx +++ b/oox/source/drawingml/diagram/diagramlayoutatoms.cxx @@ -1224,13 +1224,13 @@ void AlgAtom::layoutShape( const ShapePtr& rShape, aParagraph->getProperties().setLevel(nLevel); if (nLevel >= nStartBulletsAtLevel) { - if (!aParagraph->getProperties().getParaLeftMargin().has_value()) + if (aParagraph->getProperties().getParaLeftMargin().get_ptr() == nullptr) { sal_Int32 nLeftMargin = 285750 * (nLevel - nStartBulletsAtLevel + 1) / EMU_PER_HMM; aParagraph->getProperties().getParaLeftMargin() = nLeftMargin; } - if (!aParagraph->getProperties().getFirstLineIndentation().has_value()) + if (aParagraph->getProperties().getFirstLineIndentation().get_ptr() == nullptr) aParagraph->getProperties().getFirstLineIndentation() = -285750 / EMU_PER_HMM; // It is not possible to change the bullet style for text. -- cgit v1.2.3 From b2da60d74b3e93212601f924d0a3a493ccdaa6ba Mon Sep 17 00:00:00 2001 From: Rizal Muttaqin Date: Tue, 24 Mar 2020 07:26:59 +0700 Subject: Breeze, Colibre, elementary, Karasa Jaga :Fix for tdf#131509 Change italic in Spanish to K from C Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90966 Tested-by: Jenkins Reviewed-by: Rizal Muttaqin (cherry picked from commit 70b9775af71b0e1a4b4d0760d2884631184db5ae) Change-Id: Ie82625f8a605de67c036a76ce438de1e883203f0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90949 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos --- icon-themes/breeze/links.txt | 6 +++--- icon-themes/breeze_dark/links.txt | 6 +++--- icon-themes/colibre/cmd/es/lc_italic.png | Bin 640 -> 0 bytes icon-themes/colibre/cmd/es/sc_italic.png | Bin 357 -> 0 bytes icon-themes/colibre/links.txt | 5 +++++ icon-themes/colibre_svg/cmd/es/lc_italic.svg | 1 - icon-themes/colibre_svg/cmd/es/sc_italic.svg | 1 - icon-themes/elementary/links.txt | 6 +++--- icon-themes/karasa_jaga/links.txt | 6 +++--- 9 files changed, 17 insertions(+), 14 deletions(-) delete mode 100644 icon-themes/colibre/cmd/es/lc_italic.png delete mode 100644 icon-themes/colibre/cmd/es/sc_italic.png delete mode 100644 icon-themes/colibre_svg/cmd/es/lc_italic.svg delete mode 100644 icon-themes/colibre_svg/cmd/es/sc_italic.svg diff --git a/icon-themes/breeze/links.txt b/icon-themes/breeze/links.txt index 6c920fbc6a6f..fbde0395da5b 100644 --- a/icon-themes/breeze/links.txt +++ b/icon-themes/breeze/links.txt @@ -435,7 +435,7 @@ cmd/32/ar/bulletliststyle.png cmd/32/ar/defaultbullet.png cmd/32/ar/numberliststyle.png cmd/32/ar/defaultnumbering.png cmd/32/ca/underlinesimple.png cmd/32/ca/underline.png cmd/32/es/bold.png cmd/32/ca/bold.png -cmd/32/es/italic.png cmd/32/ca/italic.png +cmd/32/es/italic.png cmd/32/de/italic.png cmd/32/es/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png cmd/32/es/numberformatdecimal.png cmd/32/de/numberformatdecimal.png cmd/32/es/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png @@ -542,7 +542,7 @@ cmd/ar/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png cmd/ca/lc_underlinesimple.png cmd/ca/lc_underline.png cmd/ca/sc_underlinesimple.png cmd/ca/sc_underline.png cmd/es/lc_bold.png cmd/ca/lc_bold.png -cmd/es/lc_italic.png cmd/ca/lc_italic.png +cmd/es/lc_italic.png cmd/de/lc_italic.png cmd/es/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png cmd/es/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png cmd/es/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png @@ -551,7 +551,7 @@ cmd/es/lc_underline.png cmd/ca/lc_underline.png cmd/es/lc_underlinedouble.png cmd/ca/lc_underlinedouble.png cmd/es/lc_underlinesimple.png cmd/ca/lc_underline.png cmd/es/sc_bold.png cmd/ca/sc_bold.png -cmd/es/sc_italic.png cmd/ca/sc_italic.png +cmd/es/sc_italic.png cmd/de/sc_italic.png cmd/es/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png cmd/es/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png cmd/es/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png diff --git a/icon-themes/breeze_dark/links.txt b/icon-themes/breeze_dark/links.txt index 6c920fbc6a6f..fbde0395da5b 100644 --- a/icon-themes/breeze_dark/links.txt +++ b/icon-themes/breeze_dark/links.txt @@ -435,7 +435,7 @@ cmd/32/ar/bulletliststyle.png cmd/32/ar/defaultbullet.png cmd/32/ar/numberliststyle.png cmd/32/ar/defaultnumbering.png cmd/32/ca/underlinesimple.png cmd/32/ca/underline.png cmd/32/es/bold.png cmd/32/ca/bold.png -cmd/32/es/italic.png cmd/32/ca/italic.png +cmd/32/es/italic.png cmd/32/de/italic.png cmd/32/es/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png cmd/32/es/numberformatdecimal.png cmd/32/de/numberformatdecimal.png cmd/32/es/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png @@ -542,7 +542,7 @@ cmd/ar/sc_numberliststyle.png cmd/ar/sc_defaultnumbering.png cmd/ca/lc_underlinesimple.png cmd/ca/lc_underline.png cmd/ca/sc_underlinesimple.png cmd/ca/sc_underline.png cmd/es/lc_bold.png cmd/ca/lc_bold.png -cmd/es/lc_italic.png cmd/ca/lc_italic.png +cmd/es/lc_italic.png cmd/de/lc_italic.png cmd/es/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png cmd/es/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png cmd/es/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png @@ -551,7 +551,7 @@ cmd/es/lc_underline.png cmd/ca/lc_underline.png cmd/es/lc_underlinedouble.png cmd/ca/lc_underlinedouble.png cmd/es/lc_underlinesimple.png cmd/ca/lc_underline.png cmd/es/sc_bold.png cmd/ca/sc_bold.png -cmd/es/sc_italic.png cmd/ca/sc_italic.png +cmd/es/sc_italic.png cmd/de/sc_italic.png cmd/es/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png cmd/es/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png cmd/es/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png diff --git a/icon-themes/colibre/cmd/es/lc_italic.png b/icon-themes/colibre/cmd/es/lc_italic.png deleted file mode 100644 index e1a33363abb1..000000000000 Binary files a/icon-themes/colibre/cmd/es/lc_italic.png and /dev/null differ diff --git a/icon-themes/colibre/cmd/es/sc_italic.png b/icon-themes/colibre/cmd/es/sc_italic.png deleted file mode 100644 index 561293ec7efe..000000000000 Binary files a/icon-themes/colibre/cmd/es/sc_italic.png and /dev/null differ diff --git a/icon-themes/colibre/links.txt b/icon-themes/colibre/links.txt index c0fe87e0bc76..e534400cf852 100644 --- a/icon-themes/colibre/links.txt +++ b/icon-themes/colibre/links.txt @@ -399,6 +399,11 @@ cmd/sc_notevisible.png cmd/sc_shownote.png cmd/sc_showallnotes.png cmd/sc_showannotations.png cmd/sc_showchanges.png cmd/sc_addwatch.png +# Locale language support +cmd/32/es/italic.png cmd/32/de/italic.png +cmd/es/lc_italic.png cmd/de/lc_italic.png +cmd/es/sc_italic.png cmd/de/sc_italic.png + # Template Menu cmd/32/templatemenu.png cmd/32/adddirect.png cmd/lc_templatemenu.png cmd/lc_adddirect.png diff --git a/icon-themes/colibre_svg/cmd/es/lc_italic.svg b/icon-themes/colibre_svg/cmd/es/lc_italic.svg deleted file mode 100644 index 42ac0d2dd70a..000000000000 --- a/icon-themes/colibre_svg/cmd/es/lc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/colibre_svg/cmd/es/sc_italic.svg b/icon-themes/colibre_svg/cmd/es/sc_italic.svg deleted file mode 100644 index c428b6ac2d10..000000000000 --- a/icon-themes/colibre_svg/cmd/es/sc_italic.svg +++ /dev/null @@ -1 +0,0 @@ -/&gt; \ No newline at end of file diff --git a/icon-themes/elementary/links.txt b/icon-themes/elementary/links.txt index e091041398ee..879500ccd53b 100644 --- a/icon-themes/elementary/links.txt +++ b/icon-themes/elementary/links.txt @@ -404,7 +404,7 @@ cmd/32/bg/underlinedouble.png cmd/32/hu/underlinedouble.png cmd/32/bg/underlinesimple.png cmd/32/hu/underline.png cmd/32/ca/underlinesimple.png cmd/32/ca/underline.png cmd/32/es/bold.png cmd/32/ca/bold.png -cmd/32/es/italic.png cmd/32/ca/italic.png +cmd/32/es/italic.png cmd/32/de/italic.png cmd/32/es/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png cmd/32/es/numberformatdecimal.png cmd/32/de/numberformatdecimal.png cmd/32/es/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png @@ -550,7 +550,7 @@ cmd/bg/sc_underlinesimple.png cmd/hu/sc_underline.png cmd/ca/lc_underlinesimple.png cmd/ca/lc_underline.png cmd/ca/sc_underlinesimple.png cmd/ca/sc_underline.png cmd/es/lc_bold.png cmd/ca/lc_bold.png -cmd/es/lc_italic.png cmd/ca/lc_italic.png +cmd/es/lc_italic.png cmd/de/lc_italic.png cmd/es/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png cmd/es/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png cmd/es/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png @@ -559,7 +559,7 @@ cmd/es/lc_underline.png cmd/ca/lc_underline.png cmd/es/lc_underlinedouble.png cmd/ca/lc_underlinedouble.png cmd/es/lc_underlinesimple.png cmd/ca/lc_underline.png cmd/es/sc_bold.png cmd/ca/sc_bold.png -cmd/es/sc_italic.png cmd/ca/sc_italic.png +cmd/es/sc_italic.png cmd/de/sc_italic.png cmd/es/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png cmd/es/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png cmd/es/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png diff --git a/icon-themes/karasa_jaga/links.txt b/icon-themes/karasa_jaga/links.txt index b5c662054dfd..1cc9ee2f11c8 100644 --- a/icon-themes/karasa_jaga/links.txt +++ b/icon-themes/karasa_jaga/links.txt @@ -117,7 +117,7 @@ cmd/32/editshapehyperlink.png cmd/32/inserthyperlink.png cmd/32/ellipse.png cmd/32/basicshapes.ellipse.png cmd/32/ellipsetoolbox.png cmd/32/basicshapes.ellipse.png cmd/32/es/bold.png cmd/32/ca/bold.png -cmd/32/es/italic.png cmd/32/ca/italic.png +cmd/32/es/italic.png cmd/32/de/italic.png cmd/32/es/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png cmd/32/es/numberformatdecimal.png cmd/32/de/numberformatdecimal.png cmd/32/es/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png @@ -509,7 +509,7 @@ cmd/bg/sc_underlinesimple.png cmd/hu/sc_underline.png cmd/ca/lc_underlinesimple.png cmd/ca/lc_underline.png cmd/ca/sc_underlinesimple.png cmd/ca/sc_underline.png cmd/es/lc_bold.png cmd/ca/lc_bold.png -cmd/es/lc_italic.png cmd/ca/lc_italic.png +cmd/es/lc_italic.png cmd/de/lc_italic.png cmd/es/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png cmd/es/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png cmd/es/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png @@ -518,7 +518,7 @@ cmd/es/lc_underline.png cmd/ca/lc_underline.png cmd/es/lc_underlinedouble.png cmd/ca/lc_underlinedouble.png cmd/es/lc_underlinesimple.png cmd/ca/lc_underline.png cmd/es/sc_bold.png cmd/ca/sc_bold.png -cmd/es/sc_italic.png cmd/ca/sc_italic.png +cmd/es/sc_italic.png cmd/de/sc_italic.png cmd/es/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png cmd/es/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png cmd/es/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png -- cgit v1.2.3 From af8927b6aa210095bbf3b693ec56b4adb90e9d1d Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Fri, 28 Feb 2020 17:02:30 +0200 Subject: tdf#130348: Add special case for ChartDeck, too Change-Id: Idf6cc1469f074debfc4351a58826a3a7411391ca Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89722 Tested-by: Jenkins CollaboraOffice Reviewed-by: Tor Lillqvist (cherry picked from commit 6a031edca26cadd5917a94de2d3b6a706197a8fc) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89783 Tested-by: Jenkins Reviewed-by: Ashod Nakashian --- sfx2/source/sidebar/SidebarController.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sfx2/source/sidebar/SidebarController.cxx b/sfx2/source/sidebar/SidebarController.cxx index 794cfef82b81..5c69f97d0b59 100644 --- a/sfx2/source/sidebar/SidebarController.cxx +++ b/sfx2/source/sidebar/SidebarController.cxx @@ -435,7 +435,9 @@ void SidebarController::NotifyResize() // it's the PropertyDeck that really has many panes // that can collapse or expand. For others, limit // the height to something sensible. - const sal_Int32 nExtHeight = (msCurrentDeckId == "PropertyDeck" ? 2000 : 600); + // tdf#130348: Add special case for ChartDeck, too. + const sal_Int32 nExtHeight = (msCurrentDeckId == "PropertyDeck" ? 2000 : + (msCurrentDeckId == "ChartDeck" ? 1200 : 600)); // No TabBar in LOK (use nWidth in full). mpCurrentDeck->setPosSizePixel(nDeckX, 0, nWidth, nExtHeight); } -- cgit v1.2.3 From 3d264dc8742733a797a3e315033851d0bda3bffd Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Thu, 12 Mar 2020 19:44:34 +0100 Subject: tdf#131273: fix crash when pasting quotes with fixed width MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See bt https://bugs.documentfoundation.org/show_bug.cgi?id=131273#c2 Change-Id: I78f592bb2ee59b50e7301fe4e6f282e53c4eeb7e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90438 Tested-by: Jenkins Reviewed-by: Julien Nabet (cherry picked from commit cf3fec9e7cadd0a6c4f42a4015df429d9e32b7e8) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90398 Reviewed-by: Xisco Faulí --- sc/source/ui/docshell/impex.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc/source/ui/docshell/impex.cxx b/sc/source/ui/docshell/impex.cxx index 1f3e733809cd..0e03fddc8b2e 100644 --- a/sc/source/ui/docshell/impex.cxx +++ b/sc/source/ui/docshell/impex.cxx @@ -1264,7 +1264,7 @@ static OUString lcl_GetFixed( const OUString& rLine, sal_Int32 nStart, sal_Int32 bool bFits = (nSpace - nStart - 3 <= SAL_MAX_UINT16); OSL_ENSURE( bFits, "lcl_GetFixed: line doesn't fit into data"); if (bFits) - return rLine.copy(nStart+1, nSpace-nStart-2); + return rLine.copy(nStart+1, std::max< sal_Int32 >(0, nSpace-nStart-2)); else { rbOverflowCell = true; -- cgit v1.2.3 From 0185241456971f06a7795fb4f304317027f50db9 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 12 Mar 2020 12:43:10 +0000 Subject: ofz#21168 sw,writerfilter: limit writerfilter hack to writerfilter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The problem is that at the end of WW8 import, a delete redline is inserted that ends up calling DeleteAndJoin from inside AppendRedline(). A fly is anchored AT_CHAR at (node 46, offset 0) and the deletion goes from (node 46, offset 0) to (node 48, offset 13) hence the special case check in IsDestroyFrameAnchoredAtChar() for the IsInReading() prevents it from being deleted, and then its anchor is still registered at the node 46 when it gets deleted. So try to restrict the WriterfilterHack to writerfilter, so it won't affect WW8 import. Unfortunately this is far less obvious than expected, because import can happen for creating a new file, in which case it's all done via UNO in writerfilter, or when inserting into an existing file, in which case SwReader::Read() is used. The SwDocShell's pMedium can't be used becuse in insert file case it will be the loaded file, not the inserted file. There isn't any obvious alternative to adding a silly UNO property for the writerfilter to use. Change-Id: Ia7fdc9bb1925202f6692ebee6e4b6b1fe50e5345 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90384 Tested-by: Jenkins Reviewed-by: Caolán McNamara (cherry picked from commit c4dab726caaa73be9f9c731312080143b0a0b89d) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90951 --- sw/inc/doc.hxx | 3 +++ sw/inc/unomap.hxx | 1 + sw/qa/core/data/ww6/pass/ofz21168-1.doc | Bin 0 -> 35098 bytes sw/source/core/doc/docnew.cxx | 1 + sw/source/core/undo/undobj.cxx | 4 ++-- sw/source/core/unocore/unomap.cxx | 1 + sw/source/filter/basflt/shellio.cxx | 7 +++++++ sw/source/uibase/uno/unotxdoc.cxx | 12 ++++++++++++ writerfilter/source/filter/RtfFilter.cxx | 14 ++++++++++++++ writerfilter/source/filter/WriterFilter.cxx | 5 +++++ 10 files changed, 46 insertions(+), 2 deletions(-) create mode 100644 sw/qa/core/data/ww6/pass/ofz21168-1.doc diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx index c5075b20f844..b80e1157a7c9 100644 --- a/sw/inc/doc.hxx +++ b/sw/inc/doc.hxx @@ -301,6 +301,7 @@ private: bool mbInReading : 1; //< TRUE: Document is in the process of being read. bool mbInMailMerge : 1; //< TRUE: Document is in the process of being written by mail merge. bool mbInXMLImport : 1; //< TRUE: During xml import, attribute portion building is not necessary. + bool mbInWriterfilterImport : 1; //< TRUE: writerfilter import (DOCX,RTF) bool mbUpdateTOX : 1; //< TRUE: After loading document, update TOX. bool mbInLoadAsynchron : 1; //< TRUE: Document is in the process of being loaded asynchronously. bool mbIsAutoFormatRedline : 1; //< TRUE: Redlines are recorded by Autoformat. @@ -962,6 +963,8 @@ public: bool IsInXMLImport() const { return mbInXMLImport; } void SetInXMLImport( bool bNew ) { mbInXMLImport = bNew; } + bool IsInWriterfilterImport() const { return mbInWriterfilterImport; } + void SetInWriterfilterImport(bool const b) { mbInWriterfilterImport = b; } // Manage types of tables/indices sal_uInt16 GetTOXTypeCount( TOXTypes eTyp ) const; diff --git a/sw/inc/unomap.hxx b/sw/inc/unomap.hxx index 36f8766e0e03..caee6bc5c209 100644 --- a/sw/inc/unomap.hxx +++ b/sw/inc/unomap.hxx @@ -245,6 +245,7 @@ struct SfxItemPropertyMapEntry; #define WID_DOC_LOCK_UPDATES 1016 #define WID_DOC_HAS_VALID_SIGNATURES 1017 #define WID_DOC_INTEROP_GRAB_BAG 1018 +#define WID_DOC_WRITERFILTER 1019 #define WID_DOC_BUILDID 1024 #define WID_DOC_ISTEMPLATEID 1025 #define WID_DOC_DEFAULT_PAGE_MODE 1069 diff --git a/sw/qa/core/data/ww6/pass/ofz21168-1.doc b/sw/qa/core/data/ww6/pass/ofz21168-1.doc new file mode 100644 index 000000000000..3bafb1d36bf7 Binary files /dev/null and b/sw/qa/core/data/ww6/pass/ofz21168-1.doc differ diff --git a/sw/source/core/doc/docnew.cxx b/sw/source/core/doc/docnew.cxx index 21d250ce59c3..984f2335bc45 100644 --- a/sw/source/core/doc/docnew.cxx +++ b/sw/source/core/doc/docnew.cxx @@ -242,6 +242,7 @@ SwDoc::SwDoc() mbInReading(false), mbInMailMerge(false), mbInXMLImport(false), + mbInWriterfilterImport(false), mbUpdateTOX(false), mbInLoadAsynchron(false), mbIsAutoFormatRedline(false), diff --git a/sw/source/core/undo/undobj.cxx b/sw/source/core/undo/undobj.cxx index 378df9595e50..3b3f8f2fd583 100644 --- a/sw/source/core/undo/undobj.cxx +++ b/sw/source/core/undo/undobj.cxx @@ -1555,7 +1555,7 @@ bool IsDestroyFrameAnchoredAtChar(SwPosition const & rAnchorPos, } if ((nDelContentType & DelContentType::WriterfilterHack) - && rAnchorPos.GetDoc()->IsInReading()) + && rAnchorPos.GetDoc()->IsInWriterfilterImport()) { // FIXME hack for writerfilter RemoveLastParagraph() and MakeFlyAndMove(); can't test file format more specific? return (rStart < rAnchorPos) && (rAnchorPos < rEnd); } @@ -1592,7 +1592,7 @@ bool IsSelectFrameAnchoredAtPara(SwPosition const & rAnchorPos, } if ((nDelContentType & DelContentType::WriterfilterHack) - && rAnchorPos.GetDoc()->IsInReading()) + && rAnchorPos.GetDoc()->IsInWriterfilterImport()) { // FIXME hack for writerfilter RemoveLastParagraph() and MakeFlyAndMove(); can't test file format more specific? // but it MUST NOT be done during the SetRedlineFlags at the end of ODF // import, where the IsInXMLImport() cannot be checked because the diff --git a/sw/source/core/unocore/unomap.cxx b/sw/source/core/unocore/unomap.cxx index 4bba72a38fee..05695e8585b2 100644 --- a/sw/source/core/unocore/unomap.cxx +++ b/sw/source/core/unocore/unomap.cxx @@ -672,6 +672,7 @@ const SfxItemPropertyMapEntry* SwUnoPropertyMapProvider::GetPropertyMapEntries(s { OUString(UNO_NAME_APPLY_FORM_DESIGN_MODE), WID_DOC_APPLY_FORM_DESIGN_MODE, cppu::UnoType::get(), PROPERTY_NONE, 0}, { OUString(UNO_NAME_RUNTIME_UID), WID_DOC_RUNTIME_UID, cppu::UnoType::get(), PropertyAttribute::READONLY, 0}, { OUString(UNO_NAME_LOCK_UPDATES), WID_DOC_LOCK_UPDATES, cppu::UnoType::get(), PROPERTY_NONE, 0}, + { OUString("UndocumentedWriterfilterHack"), WID_DOC_WRITERFILTER, cppu::UnoType::get(), PROPERTY_NONE, 0}, { OUString(UNO_NAME_HAS_VALID_SIGNATURES), WID_DOC_HAS_VALID_SIGNATURES, cppu::UnoType::get(), PropertyAttribute::READONLY, 0}, { OUString(UNO_NAME_BUILDID), WID_DOC_BUILDID, cppu::UnoType::get(), 0, 0}, { OUString(UNO_NAME_DOC_INTEROP_GRAB_BAG), WID_DOC_INTEROP_GRAB_BAG, cppu::UnoType< cppu::UnoSequenceType >::get(), PROPERTY_NONE, 0 }, diff --git a/sw/source/filter/basflt/shellio.cxx b/sw/source/filter/basflt/shellio.cxx index 708e13c2535b..cba064de3e09 100644 --- a/sw/source/filter/basflt/shellio.cxx +++ b/sw/source/filter/basflt/shellio.cxx @@ -25,6 +25,7 @@ #include #include #include +#include #include #include #include @@ -36,6 +37,7 @@ #include #include #include +#include #include #include #include @@ -104,6 +106,10 @@ ErrCode SwReader::Read( const Reader& rOptions ) mxDoc->SetInReading( true ); mxDoc->SetInXMLImport( dynamic_cast< XMLReader* >(po) != nullptr ); + mxDoc->SetInWriterfilterImport(pMedium && pMedium->GetFilter() + && (pMedium->GetFilter()->GetUserData() == FILTER_RTF + || pMedium->GetFilter()->GetUserData() == sRtfWH + || pMedium->GetFilter()->GetUserData() == FILTER_DOCX)); SwPaM *pPam; if( pCursor ) @@ -341,6 +347,7 @@ ErrCode SwReader::Read( const Reader& rOptions ) mxDoc->SetInReading( false ); mxDoc->SetInXMLImport( false ); + mxDoc->SetInWriterfilterImport(false); mxDoc->InvalidateNumRules(); mxDoc->UpdateNumRule(); diff --git a/sw/source/uibase/uno/unotxdoc.cxx b/sw/source/uibase/uno/unotxdoc.cxx index 9060ac40172a..2e172dbf6488 100644 --- a/sw/source/uibase/uno/unotxdoc.cxx +++ b/sw/source/uibase/uno/unotxdoc.cxx @@ -1979,7 +1979,19 @@ void SwXTextDocument::setPropertyValue(const OUString& rPropertyName, const Any& SwDoc* pDoc = pDocShell->GetDoc(); bool bBool (false); if( aValue >>= bBool ) + { pDoc->SetInReading( bBool ); + } + } + break; + case WID_DOC_WRITERFILTER: + { + SwDoc* pDoc = pDocShell->GetDoc(); + bool bBool = {}; + if (aValue >>= bBool) + { // HACK: writerfilter has to use API to set this :( + pDoc->SetInWriterfilterImport(bBool); + } } break; case WID_DOC_BUILDID: diff --git a/writerfilter/source/filter/RtfFilter.cxx b/writerfilter/source/filter/RtfFilter.cxx index 3cb4b3579d65..d9e5aa27788e 100644 --- a/writerfilter/source/filter/RtfFilter.cxx +++ b/writerfilter/source/filter/RtfFilter.cxx @@ -19,6 +19,7 @@ #include +#include #include #include #include @@ -98,6 +99,13 @@ sal_Bool RtfFilter::filter(const uno::Sequence< beans::PropertyValue >& rDescrip bool bResult(false); uno::Reference xStatusIndicator; + uno::Reference xDocProps; + if (m_xDstDoc.is()) // not in cppunittest? + { + xDocProps.set(m_xDstDoc, uno::UNO_QUERY); + xDocProps->setPropertyValue("UndocumentedWriterfilterHack", uno::makeAny(true)); + } + try { utl::MediaDescriptor aMediaDesc(rDescriptor); @@ -159,6 +167,12 @@ sal_Bool RtfFilter::filter(const uno::Sequence< beans::PropertyValue >& rDescrip TOOLS_INFO_EXCEPTION("writerfilter", "Exception caught"); } + if (m_xDstDoc.is()) // not in cppunittest? + { + // note: pStream.clear calls RemoveLastParagraph() + xDocProps->setPropertyValue("UndocumentedWriterfilterHack", uno::makeAny(false)); + } + if (xStatusIndicator.is()) xStatusIndicator->end(); return bResult; diff --git a/writerfilter/source/filter/WriterFilter.cxx b/writerfilter/source/filter/WriterFilter.cxx index 266367b4ac2b..3b2405867aad 100644 --- a/writerfilter/source/filter/WriterFilter.cxx +++ b/writerfilter/source/filter/WriterFilter.cxx @@ -151,6 +151,8 @@ sal_Bool WriterFilter::filter(const uno::Sequence< beans::PropertyValue >& rDesc } if (m_xDstDoc.is()) { + uno::Reference const xDocProps(m_xDstDoc, uno::UNO_QUERY); + xDocProps->setPropertyValue("UndocumentedWriterfilterHack", uno::makeAny(true)); utl::MediaDescriptor aMediaDesc(rDescriptor); bool bRepairStorage = aMediaDesc.getUnpackedValueOrDefault("RepairPackage", false); bool bSkipImages = aMediaDesc.getUnpackedValueOrDefault("FilterOptions", OUString()) == "SkipImages"; @@ -264,6 +266,9 @@ sal_Bool WriterFilter::filter(const uno::Sequence< beans::PropertyValue >& rDesc pStream.clear(); + // note: pStream.clear calls RemoveLastParagraph() + xDocProps->setPropertyValue("UndocumentedWriterfilterHack", uno::makeAny(false)); + return true; } return false; -- cgit v1.2.3 From 730369b8670590cb9625691fa2c0008e904fb4e1 Mon Sep 17 00:00:00 2001 From: Tünde Tóth Date: Thu, 20 Feb 2020 14:39:11 +0100 Subject: tdf#123268 fix lost chart if all legend entries are hidden MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See also commit 19b2ed4dee1ec33ad55473d43bfcd0bfa194cbee (related tdf#51671, add UI options for new "hide legend entry" feature) Change-Id: If20ab167d867d2845fa414ba0bbc490bed09f61c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89123 Tested-by: László Németh Reviewed-by: László Németh (cherry picked from commit 300e65cc47f3d6ae1563350757dbfadc080d7452) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90387 Tested-by: Jenkins Reviewed-by: Xisco Faulí --- chart2/source/view/main/VLegend.cxx | 2 ++ sw/qa/extras/layout/data/tdf123268.odt | Bin 0 -> 12629 bytes sw/qa/extras/layout/layout.cxx | 18 ++++++++++++++++++ 3 files changed, 20 insertions(+) create mode 100644 sw/qa/extras/layout/data/tdf123268.odt diff --git a/chart2/source/view/main/VLegend.cxx b/chart2/source/view/main/VLegend.cxx index df5ca49cea74..8272696ea102 100644 --- a/chart2/source/view/main/VLegend.cxx +++ b/chart2/source/view/main/VLegend.cxx @@ -951,6 +951,8 @@ void VLegend::createShapes( std::vector aNewEntries = pLegendEntryProvider->createLegendEntries( aMaxSymbolExtent, eExpansion, xLegendProp, xLegendContainer, m_xShapeFactory, m_xContext, mrModel); + if (aNewEntries.size() == 0) + return; aViewEntries.insert( aViewEntries.end(), aNewEntries.begin(), aNewEntries.end() ); } } diff --git a/sw/qa/extras/layout/data/tdf123268.odt b/sw/qa/extras/layout/data/tdf123268.odt new file mode 100644 index 000000000000..e68c8139f52c Binary files /dev/null and b/sw/qa/extras/layout/data/tdf123268.odt differ diff --git a/sw/qa/extras/layout/layout.cxx b/sw/qa/extras/layout/layout.cxx index 7752f2e53e1d..58b98a602e1a 100644 --- a/sw/qa/extras/layout/layout.cxx +++ b/sw/qa/extras/layout/layout.cxx @@ -2331,6 +2331,24 @@ CPPUNIT_TEST_FIXTURE(SwLayoutWriter, testTdf75659) // These failed, if the legend names are empty strings. } +CPPUNIT_TEST_FIXTURE(SwLayoutWriter, testTdf123268) +{ + SwDoc* pDoc = createDoc("tdf123268.odt"); + SwDocShell* pShell = pDoc->GetDocShell(); + + // Dump the rendering of the first page as an XML file. + std::shared_ptr xMetaFile = pShell->GetPreviewMetaFile(); + MetafileXmlDump dumper; + xmlDocPtr pXmlDoc = dumpAndParse(dumper, *xMetaFile); + CPPUNIT_ASSERT(pXmlDoc); + // Without the accompanying fix in place, this test would have failed with: + // - Expected: 41 + // - Actual : 0 + // i.e. the chart lost. + assertXPath(pXmlDoc, "/metafile/push[1]/push[1]/push[1]/push[3]/push[1]/push[1]/push[1]/push", + 41); +} + CPPUNIT_TEST_FIXTURE(SwLayoutWriter, testTdf115630) { SwDoc* pDoc = createDoc("tdf115630.docx"); -- cgit v1.2.3 From ee2f51cd43ef4e5fbda33918daee26e06ab38580 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Mon, 9 Mar 2020 18:59:29 +0100 Subject: tdf#130334: Firebird deal with array fields MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://bugs.documentfoundation.org/show_bug.cgi?id=130334#c11 See https://firebirdsql.org/file/documentation/reference_manuals/fblangref25-en/html/fblangref25-datatypes-bnrytypes.html#fblangref25-datatypes-array Change-Id: I27c53b9c771fcdb3b89e66af325a8234c7de08bb Change-Id: I7b9d27f78e351eda611d13f5a07ef3c80ff00e3a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90239 Tested-by: Jenkins Reviewed-by: Julien Nabet (cherry picked from commit 2ede753a8b7adecbf6ca78745e43e23c7498e289) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90042 Reviewed-by: Xisco Faulí --- connectivity/source/drivers/firebird/Util.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/connectivity/source/drivers/firebird/Util.cxx b/connectivity/source/drivers/firebird/Util.cxx index c4d6eeece4d1..572767851770 100644 --- a/connectivity/source/drivers/firebird/Util.cxx +++ b/connectivity/source/drivers/firebird/Util.cxx @@ -304,12 +304,12 @@ void firebird::mallocSQLVAR(XSQLDA* pSqlda) case SQL_TIMESTAMP: pVar->sqldata = static_cast(malloc(sizeof(ISC_TIMESTAMP))); break; + // an ARRAY is in fact a BLOB of a specialized type + // See https://firebirdsql.org/file/documentation/reference_manuals/fblangref25-en/html/fblangref25-datatypes-bnrytypes.html#fblangref25-datatypes-array + case SQL_ARRAY: case SQL_BLOB: pVar->sqldata = static_cast(malloc(sizeof(ISC_QUAD))); break; - case SQL_ARRAY: - assert(false); // TODO: implement - break; case SQL_TYPE_TIME: pVar->sqldata = static_cast(malloc(sizeof(ISC_TIME))); break; @@ -353,6 +353,9 @@ void firebird::freeSQLVAR(XSQLDA* pSqlda) case SQL_DOUBLE: case SQL_D_FLOAT: case SQL_TIMESTAMP: + // an ARRAY is in fact a BLOB of a specialized type + // See https://firebirdsql.org/file/documentation/reference_manuals/fblangref25-en/html/fblangref25-datatypes-bnrytypes.html#fblangref25-datatypes-array + case SQL_ARRAY: case SQL_BLOB: case SQL_INT64: case SQL_TYPE_TIME: @@ -364,9 +367,6 @@ void firebird::freeSQLVAR(XSQLDA* pSqlda) pVar->sqldata = nullptr; } break; - case SQL_ARRAY: - assert(false); // TODO: implement - break; case SQL_NULL: assert(false); // TODO: implement break; -- cgit v1.2.3 From 1911e5eac88984e5ae171594a1702c01fb138ddf Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Mon, 23 Mar 2020 11:32:36 +0100 Subject: configure,gbuild: gla11y fails on Fedora 31 The problem is that the LD_LIBRARY_PATH on the command line causes /usr/bin/python to find LO's libpython*.so*: 18269: find library=libpython3.7m.so.1.0 [0]; searching 18269: search path=.../instdir/program (LD_LIBRARY_PATH) 18269: trying file=.../instdir/program/libpython3.7m.so.1.0 Presumably LD_LIBRARY_PATH is used to find bundled libxml/libxslt. So let's try to disable the broken case where a bundled lxml is used with system python and bundled libxml/libxslt; this cannot work. (regression from 84ef6d82546b044990f4efd57e51e29c6c6565c8) Change-Id: I67aa8250691cae8f899d65f674aa9da23a9d1d7a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90906 Reviewed-by: Samuel Thibault Reviewed-by: Michael Stahl Tested-by: Jenkins (cherry picked from commit 190f81e34d918da289310a90416f9b6b7be7295f) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90823 Reviewed-by: Stephan Bergmann --- configure.ac | 8 ++++++-- solenv/gbuild/platform/com_GCC_class.mk | 2 +- solenv/gbuild/platform/com_MSC_class.mk | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index a33302329280..f0ec1f413ce0 100644 --- a/configure.ac +++ b/configure.ac @@ -8745,8 +8745,12 @@ if test "$with_lxml" != no; then ;; *) if test "$cross_compiling" != yes -a "x$ac_cv_header_Python_h" = "xyes"; then - BUILD_TYPE="$BUILD_TYPE LXML" - AC_MSG_RESULT([no, using internal lxml]) + if test -n ${SYSTEM_LIBXSLT} -o -n ${SYSTEM_LIBXML}; then + AC_MSG_RESULT([no, and no system libxml/libxslt, gla11y will only report widget classes and ids]) + else + BUILD_TYPE="$BUILD_TYPE LXML" + AC_MSG_RESULT([no, using internal lxml]) + fi else AC_MSG_RESULT([no, and system does not provide python development headers, gla11y will only report widget classes and ids]) fi diff --git a/solenv/gbuild/platform/com_GCC_class.mk b/solenv/gbuild/platform/com_GCC_class.mk index 25142f70625c..d5dcb8e345c1 100644 --- a/solenv/gbuild/platform/com_GCC_class.mk +++ b/solenv/gbuild/platform/com_GCC_class.mk @@ -194,7 +194,7 @@ endef define gb_UIConfig__gla11y_command $(call gb_Helper_abbreviate_dirs,\ - $(gb_UIConfig_LXML_PATH) $(gb_Helper_set_ld_path) \ + $(gb_UIConfig_LXML_PATH) $(if $(SYSTEM_LIBXML)$(SYSTEM_LIBXSLT),,$(gb_Helper_set_ld_path)) \ $(call gb_ExternalExecutable_get_command,python) \ $(gb_UIConfig_gla11y_SCRIPT) $(gb_UIConfig_gla11y_PARAMETERS) -o $@ $(UIFILES) ) diff --git a/solenv/gbuild/platform/com_MSC_class.mk b/solenv/gbuild/platform/com_MSC_class.mk index 3c41c945a559..143847fb66f4 100644 --- a/solenv/gbuild/platform/com_MSC_class.mk +++ b/solenv/gbuild/platform/com_MSC_class.mk @@ -644,7 +644,7 @@ define gb_UIConfig__gla11y_command $(call gb_ExternalExecutale__check_registration,python) $(call gb_Helper_abbreviate_dirs,\ FILES=$(call var2file,$(shell $(gb_MKTEMP)),100,$(UIFILES)) && \ - $(gb_UIConfig_LXML_PATH) $(gb_Helper_set_ld_path) \ + $(gb_UIConfig_LXML_PATH) $(if $(SYSTEM_LIBXML)$(SYSTEM_LIBXSLT),,$(gb_Helper_set_ld_path)) \ $(call gb_ExternalExecutable_get_command,python) \ $(gb_UIConfig_gla11y_SCRIPT) $(gb_UIConfig_gla11y_PARAMETERS) -o $@ -L $$FILES ) -- cgit v1.2.3 From ddcdf14bf6c771e82ffb0fbae3025610892887a1 Mon Sep 17 00:00:00 2001 From: Rizal Muttaqin Date: Wed, 25 Mar 2020 17:50:13 +0700 Subject: Sifr: :Fix for tdf#131509 Change italic in Spanish from C to K Change-Id: I5b1da84983827a17565143bda984d7ae3b5e0518 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91040 Tested-by: Jenkins Reviewed-by: Rizal Muttaqin (cherry picked from commit e0ce7b5148a31f5463f2341dc179e0b105c4f4b7) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90954 --- icon-themes/sifr/cmd/32/ca/bold.png | Bin 0 -> 413 bytes icon-themes/sifr/cmd/32/ca/underline.png | Bin 0 -> 411 bytes icon-themes/sifr/cmd/32/ca/underlinedouble.png | Bin 0 -> 427 bytes icon-themes/sifr/cmd/32/de/italic.png | Bin 0 -> 624 bytes icon-themes/sifr/links.txt | 6 +++--- icon-themes/sifr_dark/cmd/32/ca/bold.png | Bin 0 -> 413 bytes icon-themes/sifr_dark/cmd/32/ca/underline.png | Bin 0 -> 411 bytes icon-themes/sifr_dark/cmd/32/ca/underlinedouble.png | Bin 0 -> 427 bytes icon-themes/sifr_dark/cmd/32/de/italic.png | Bin 0 -> 624 bytes icon-themes/sifr_dark/links.txt | 6 +++--- icon-themes/sifr_dark_svg/cmd/32/ca/bold.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/ca/underline.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/ca/underlinedouble.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/de/italic.svg | 1 + icon-themes/sifr_svg/cmd/32/ca/bold.svg | 1 + icon-themes/sifr_svg/cmd/32/ca/underline.svg | 1 + icon-themes/sifr_svg/cmd/32/ca/underlinedouble.svg | 1 + icon-themes/sifr_svg/cmd/32/de/italic.svg | 1 + 18 files changed, 14 insertions(+), 6 deletions(-) create mode 100644 icon-themes/sifr/cmd/32/ca/bold.png create mode 100644 icon-themes/sifr/cmd/32/ca/underline.png create mode 100644 icon-themes/sifr/cmd/32/ca/underlinedouble.png create mode 100644 icon-themes/sifr/cmd/32/de/italic.png create mode 100644 icon-themes/sifr_dark/cmd/32/ca/bold.png create mode 100644 icon-themes/sifr_dark/cmd/32/ca/underline.png create mode 100644 icon-themes/sifr_dark/cmd/32/ca/underlinedouble.png create mode 100644 icon-themes/sifr_dark/cmd/32/de/italic.png create mode 100644 icon-themes/sifr_dark_svg/cmd/32/ca/bold.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/ca/underline.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/ca/underlinedouble.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/de/italic.svg create mode 100644 icon-themes/sifr_svg/cmd/32/ca/bold.svg create mode 100644 icon-themes/sifr_svg/cmd/32/ca/underline.svg create mode 100644 icon-themes/sifr_svg/cmd/32/ca/underlinedouble.svg create mode 100644 icon-themes/sifr_svg/cmd/32/de/italic.svg diff --git a/icon-themes/sifr/cmd/32/ca/bold.png b/icon-themes/sifr/cmd/32/ca/bold.png new file mode 100644 index 000000000000..d628b41340a6 Binary files /dev/null and b/icon-themes/sifr/cmd/32/ca/bold.png differ diff --git a/icon-themes/sifr/cmd/32/ca/underline.png b/icon-themes/sifr/cmd/32/ca/underline.png new file mode 100644 index 000000000000..be1f777ac373 Binary files /dev/null and b/icon-themes/sifr/cmd/32/ca/underline.png differ diff --git a/icon-themes/sifr/cmd/32/ca/underlinedouble.png b/icon-themes/sifr/cmd/32/ca/underlinedouble.png new file mode 100644 index 000000000000..99585ea95c72 Binary files /dev/null and b/icon-themes/sifr/cmd/32/ca/underlinedouble.png differ diff --git a/icon-themes/sifr/cmd/32/de/italic.png b/icon-themes/sifr/cmd/32/de/italic.png new file mode 100644 index 000000000000..59657fd6a061 Binary files /dev/null and b/icon-themes/sifr/cmd/32/de/italic.png differ diff --git a/icon-themes/sifr/links.txt b/icon-themes/sifr/links.txt index 22b6e3225ea0..6ee87c8d8f2d 100644 --- a/icon-themes/sifr/links.txt +++ b/icon-themes/sifr/links.txt @@ -412,7 +412,7 @@ cmd/32/bg/underlinedouble.png cmd/32/hu/underlinedouble.png cmd/32/bg/underlinesimple.png cmd/32/hu/underline.png cmd/32/ca/underlinesimple.png cmd/32/ca/underline.png cmd/32/es/bold.png cmd/32/ca/bold.png -cmd/32/es/italic.png cmd/32/ca/italic.png +cmd/32/es/italic.png cmd/32/de/italic.png cmd/32/es/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png cmd/32/es/numberformatdecimal.png cmd/32/de/numberformatdecimal.png cmd/32/es/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png @@ -530,7 +530,7 @@ cmd/bg/sc_underlinesimple.png cmd/hu/sc_underline.png cmd/ca/lc_underlinesimple.png cmd/ca/lc_underline.png cmd/ca/sc_underlinesimple.png cmd/ca/sc_underline.png cmd/es/lc_bold.png cmd/ca/lc_bold.png -cmd/es/lc_italic.png cmd/ca/lc_italic.png +cmd/es/lc_italic.png cmd/de/lc_italic.png cmd/es/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png cmd/es/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png cmd/es/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png @@ -539,7 +539,7 @@ cmd/es/lc_underline.png cmd/ca/lc_underline.png cmd/es/lc_underlinedouble.png cmd/ca/lc_underlinedouble.png cmd/es/lc_underlinesimple.png cmd/ca/lc_underline.png cmd/es/sc_bold.png cmd/ca/sc_bold.png -cmd/es/sc_italic.png cmd/ca/sc_italic.png +cmd/es/sc_italic.png cmd/de/sc_italic.png cmd/es/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png cmd/es/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png cmd/es/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png diff --git a/icon-themes/sifr_dark/cmd/32/ca/bold.png b/icon-themes/sifr_dark/cmd/32/ca/bold.png new file mode 100644 index 000000000000..46e002cbd9b0 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/ca/bold.png differ diff --git a/icon-themes/sifr_dark/cmd/32/ca/underline.png b/icon-themes/sifr_dark/cmd/32/ca/underline.png new file mode 100644 index 000000000000..babcd8f21397 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/ca/underline.png differ diff --git a/icon-themes/sifr_dark/cmd/32/ca/underlinedouble.png b/icon-themes/sifr_dark/cmd/32/ca/underlinedouble.png new file mode 100644 index 000000000000..22353d7e29df Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/ca/underlinedouble.png differ diff --git a/icon-themes/sifr_dark/cmd/32/de/italic.png b/icon-themes/sifr_dark/cmd/32/de/italic.png new file mode 100644 index 000000000000..932726724d54 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/de/italic.png differ diff --git a/icon-themes/sifr_dark/links.txt b/icon-themes/sifr_dark/links.txt index 22b6e3225ea0..6ee87c8d8f2d 100644 --- a/icon-themes/sifr_dark/links.txt +++ b/icon-themes/sifr_dark/links.txt @@ -412,7 +412,7 @@ cmd/32/bg/underlinedouble.png cmd/32/hu/underlinedouble.png cmd/32/bg/underlinesimple.png cmd/32/hu/underline.png cmd/32/ca/underlinesimple.png cmd/32/ca/underline.png cmd/32/es/bold.png cmd/32/ca/bold.png -cmd/32/es/italic.png cmd/32/ca/italic.png +cmd/32/es/italic.png cmd/32/de/italic.png cmd/32/es/numberformatdecdecimals.png cmd/32/de/numberformatdecdecimals.png cmd/32/es/numberformatdecimal.png cmd/32/de/numberformatdecimal.png cmd/32/es/numberformatincdecimals.png cmd/32/de/numberformatincdecimals.png @@ -530,7 +530,7 @@ cmd/bg/sc_underlinesimple.png cmd/hu/sc_underline.png cmd/ca/lc_underlinesimple.png cmd/ca/lc_underline.png cmd/ca/sc_underlinesimple.png cmd/ca/sc_underline.png cmd/es/lc_bold.png cmd/ca/lc_bold.png -cmd/es/lc_italic.png cmd/ca/lc_italic.png +cmd/es/lc_italic.png cmd/de/lc_italic.png cmd/es/lc_numberformatdecdecimals.png cmd/de/lc_numberformatdecdecimals.png cmd/es/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png cmd/es/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png @@ -539,7 +539,7 @@ cmd/es/lc_underline.png cmd/ca/lc_underline.png cmd/es/lc_underlinedouble.png cmd/ca/lc_underlinedouble.png cmd/es/lc_underlinesimple.png cmd/ca/lc_underline.png cmd/es/sc_bold.png cmd/ca/sc_bold.png -cmd/es/sc_italic.png cmd/ca/sc_italic.png +cmd/es/sc_italic.png cmd/de/sc_italic.png cmd/es/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png cmd/es/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png cmd/es/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png diff --git a/icon-themes/sifr_dark_svg/cmd/32/ca/bold.svg b/icon-themes/sifr_dark_svg/cmd/32/ca/bold.svg new file mode 100644 index 000000000000..195c064bfc5e --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/ca/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/ca/underline.svg b/icon-themes/sifr_dark_svg/cmd/32/ca/underline.svg new file mode 100644 index 000000000000..876b2560d083 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/ca/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/ca/underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/32/ca/underlinedouble.svg new file mode 100644 index 000000000000..192e91325d5e --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/ca/underlinedouble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/de/italic.svg b/icon-themes/sifr_dark_svg/cmd/32/de/italic.svg new file mode 100644 index 000000000000..e23be55e3e98 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/de/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/ca/bold.svg b/icon-themes/sifr_svg/cmd/32/ca/bold.svg new file mode 100644 index 000000000000..f2537fde6757 --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/ca/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/ca/underline.svg b/icon-themes/sifr_svg/cmd/32/ca/underline.svg new file mode 100644 index 000000000000..3ea680e25f11 --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/ca/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/ca/underlinedouble.svg b/icon-themes/sifr_svg/cmd/32/ca/underlinedouble.svg new file mode 100644 index 000000000000..f2ee5a5994d7 --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/ca/underlinedouble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/de/italic.svg b/icon-themes/sifr_svg/cmd/32/de/italic.svg new file mode 100644 index 000000000000..3d546df3328d --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/de/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file -- cgit v1.2.3 From dc78bbbdbe5aa3a7304607876231e01f17878eab Mon Sep 17 00:00:00 2001 From: Samuel Mehrbrodt Date: Wed, 25 Mar 2020 14:08:14 +0100 Subject: tdf#131280 Fix endless invalidation loop on documents with form controls MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Restores a condition which was removed in 8de98e61fbc96bf523b3dec7e1e52eb7e2d7693e Change-Id: I68a9f8a362d2ded9975e7c73e2a0533aa5ad9e94 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91053 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt (cherry picked from commit 4af18ebae9d74b43fcd114d5fa5b145586651bc2) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90957 Reviewed-by: Xisco Faulí --- vcl/source/window/window2.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcl/source/window/window2.cxx b/vcl/source/window/window2.cxx index 6f32ea52eafd..9183ded20184 100644 --- a/vcl/source/window/window2.cxx +++ b/vcl/source/window/window2.cxx @@ -1335,7 +1335,7 @@ void Window::queue_resize(StateChangedType eReason) if (VclPtr pParent = GetParentWithLOKNotifier()) { - if (!pParent->IsInInitShow()) + if (GetParentDialog() && !pParent->IsInInitShow()) LogicInvalidate(nullptr); } } -- cgit v1.2.3 From 21f2b8cfd9ec01f58b468c4c9a4d4d1f721d8bee Mon Sep 17 00:00:00 2001 From: Justin Luth Date: Tue, 10 Mar 2020 21:38:50 +0300 Subject: tdf#106843 docxexport: don't write double docProtect MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit regression from LO 6.4 commit 2756ed9317e3474003c11ffe7d1e2f087c1412bf Change-Id: Iaf32974c7282d11bcd9572ed75cf1233ad3f0008 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90321 Tested-by: Jenkins Reviewed-by: Justin Luth Reviewed-by: Miklos Vajna (cherry picked from commit b2471b8ab62abaa7f0c2c8342b4fa61c18f013c6) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90953 Reviewed-by: Xisco Faulí --- sw/qa/extras/ooxmlexport/data/sectionprot2.odt | Bin 0 -> 8568 bytes sw/qa/extras/ooxmlexport/ooxmlexport5.cxx | 14 ++++++++++++ sw/source/filter/ww8/docxexport.cxx | 30 ++++++++++++------------- writerfilter/source/dmapper/SettingsTable.cxx | 3 +++ 4 files changed, 32 insertions(+), 15 deletions(-) create mode 100644 sw/qa/extras/ooxmlexport/data/sectionprot2.odt diff --git a/sw/qa/extras/ooxmlexport/data/sectionprot2.odt b/sw/qa/extras/ooxmlexport/data/sectionprot2.odt new file mode 100644 index 000000000000..8f4a283f847a Binary files /dev/null and b/sw/qa/extras/ooxmlexport/data/sectionprot2.odt differ diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx index cb4b0ad2e3e7..87795d6ba6c6 100644 --- a/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx +++ b/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx @@ -1064,6 +1064,20 @@ DECLARE_OOXMLEXPORT_TEST(testSectionProtection, "sectionprot.odt") CPPUNIT_ASSERT_EQUAL_MESSAGE("Section1 is protected", false, getProperty(xSect, "IsProtected")); } +DECLARE_OOXMLEXPORT_EXPORTONLY_TEST(testSectionProtection2, "sectionprot2.odt") +{ + if (xmlDocPtr pXmlSettings = parseExport("word/settings.xml")) + { + assertXPath(pXmlSettings, "/w:settings/w:documentProtection", "enforcement", "true"); + assertXPath(pXmlSettings, "/w:settings/w:documentProtection", "edit", "forms"); + } + + uno::Reference xTextSectionsSupplier(mxComponent, uno::UNO_QUERY); + uno::Reference xSections(xTextSectionsSupplier->getTextSections(), uno::UNO_QUERY); + uno::Reference xSect(xSections->getByIndex(0), uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL_MESSAGE("TextSection is protected", true, getProperty(xSect, "IsProtected")); +} + DECLARE_OOXMLEXPORT_TEST(tdf66398_permissions, "tdf66398_permissions.docx") { // check document permission settings for the whole document diff --git a/sw/source/filter/ww8/docxexport.cxx b/sw/source/filter/ww8/docxexport.cxx index d025d6b712ec..7fed578100d1 100644 --- a/sw/source/filter/ww8/docxexport.cxx +++ b/sw/source/filter/ww8/docxexport.cxx @@ -1142,12 +1142,13 @@ void DocxExport::WriteSettings() // we have document protection from input DOCX file // and in the case of change tracking protection, we didn't modify it - - sax_fastparser::XFastAttributeListRef xAttributeList(pAttributeList); - if (!bIsProtectionTrackChanges || bHasDummyRedlineProtectionKey) + hasProtectionProperties = !bIsProtectionTrackChanges || bHasDummyRedlineProtectionKey; + if ( hasProtectionProperties ) + { + sax_fastparser::XFastAttributeListRef xAttributeList(pAttributeList); pFS->singleElementNS(XML_w, XML_documentProtection, xAttributeList); + } - hasProtectionProperties = true; } } else if (rProp.Name == "HyphenationZone") @@ -1161,10 +1162,10 @@ void DocxExport::WriteSettings() } } - // Protect form - // Section-specific write protection if (! hasProtectionProperties) { + // Protect form - highest priority + // Section-specific write protection if (m_pDoc->getIDocumentSettingAccess().get(DocumentSettingId::PROTECT_FORM) || m_pSections->DocumentIsProtected()) { @@ -1174,16 +1175,15 @@ void DocxExport::WriteSettings() FSNS(XML_w, XML_edit), "forms", FSNS(XML_w, XML_enforcement), "true"); } - } - - // Protect Change Tracking - if ( bHasRedlineProtectionKey && !bHasDummyRedlineProtectionKey ) - { - // we have change tracking protection from Writer or from input ODT file + // Protect Change Tracking - next priority + else if ( bHasRedlineProtectionKey && !bHasDummyRedlineProtectionKey ) + { + // we have change tracking protection from Writer or from input ODT file - pFS->singleElementNS(XML_w, XML_documentProtection, - FSNS(XML_w, XML_edit), "trackedChanges", - FSNS(XML_w, XML_enforcement), "1"); + pFS->singleElementNS(XML_w, XML_documentProtection, + FSNS(XML_w, XML_edit), "trackedChanges", + FSNS(XML_w, XML_enforcement), "1"); + } } // finish settings.xml diff --git a/writerfilter/source/dmapper/SettingsTable.cxx b/writerfilter/source/dmapper/SettingsTable.cxx index 7852547945e7..58399cf0a151 100644 --- a/writerfilter/source/dmapper/SettingsTable.cxx +++ b/writerfilter/source/dmapper/SettingsTable.cxx @@ -357,6 +357,9 @@ void SettingsTable::lcl_attribute(Id nName, Value & val) break; case NS_ooxml::LN_CT_DocProtect_edit: // 92037 m_pImpl->m_DocumentProtection.m_nEdit = nIntValue; + // multiple DocProtect_edits should not exist. If they do, last one wins + m_pImpl->m_bRedlineProtection = false; + m_pImpl->m_bProtectForm = false; switch (nIntValue) { case NS_ooxml::LN_Value_doc_ST_DocProtect_trackedChanges: -- cgit v1.2.3 From 9bcce713ed2b10e7e272d6c3a0abc7e54e3b1c5e Mon Sep 17 00:00:00 2001 From: Xisco Fauli Date: Wed, 25 Mar 2020 18:03:10 +0100 Subject: bump product version to 6.4.4.0.0+ Change-Id: I6a2dd266ac9b1f048ed4ab9258a0b14c759a4e63 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index f0ec1f413ce0..3211ee370802 100644 --- a/configure.ac +++ b/configure.ac @@ -9,7 +9,7 @@ dnl in order to create a configure script. # several non-alphanumeric characters, those are split off and used only for the # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no idea. -AC_INIT([LibreOffice],[6.4.3.0.0+],[],[],[http://documentfoundation.org/]) +AC_INIT([LibreOffice],[6.4.4.0.0+],[],[],[http://documentfoundation.org/]) dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just fine if it is installed dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails hard -- cgit v1.2.3 From 3dfba081a2b495fae8f069863764638b1248fead Mon Sep 17 00:00:00 2001 From: Rizal Muttaqin Date: Wed, 25 Mar 2020 18:45:10 +0700 Subject: Sifr: Fix for tdf#130864: Enlarge the border Change-Id: I62811de63906401194c85ac215d5fe74b50b5b56 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91047 Tested-by: Jenkins Reviewed-by: Rizal Muttaqin (cherry picked from commit 2c2aa45234f12de355228af185760440d8720661) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90960 --- icon-themes/sifr/sd/cmd/transition-fall.png | Bin 512 -> 584 bytes icon-themes/sifr/sd/cmd/transition-uncover.png | Bin 251 -> 250 bytes icon-themes/sifr/sd/cmd/transition-vortex.png | Bin 243 -> 245 bytes icon-themes/sifr_dark/sd/cmd/transition-fall.png | Bin 511 -> 595 bytes icon-themes/sifr_dark/sd/cmd/transition-uncover.png | Bin 251 -> 250 bytes icon-themes/sifr_dark/sd/cmd/transition-vortex.png | Bin 243 -> 245 bytes icon-themes/sifr_dark_svg/sd/cmd/transition-fall.svg | 2 +- icon-themes/sifr_dark_svg/sd/cmd/transition-uncover.svg | 2 +- icon-themes/sifr_dark_svg/sd/cmd/transition-vortex.svg | 2 +- icon-themes/sifr_svg/sd/cmd/transition-fall.svg | 2 +- icon-themes/sifr_svg/sd/cmd/transition-uncover.svg | 2 +- icon-themes/sifr_svg/sd/cmd/transition-vortex.svg | 2 +- 12 files changed, 6 insertions(+), 6 deletions(-) diff --git a/icon-themes/sifr/sd/cmd/transition-fall.png b/icon-themes/sifr/sd/cmd/transition-fall.png index 5780dce39b1b..f6fdbe4c7114 100644 Binary files a/icon-themes/sifr/sd/cmd/transition-fall.png and b/icon-themes/sifr/sd/cmd/transition-fall.png differ diff --git a/icon-themes/sifr/sd/cmd/transition-uncover.png b/icon-themes/sifr/sd/cmd/transition-uncover.png index 3100e06b46dc..08b4f0d1b2d3 100644 Binary files a/icon-themes/sifr/sd/cmd/transition-uncover.png and b/icon-themes/sifr/sd/cmd/transition-uncover.png differ diff --git a/icon-themes/sifr/sd/cmd/transition-vortex.png b/icon-themes/sifr/sd/cmd/transition-vortex.png index ace3e324e65d..008c84edfc5f 100644 Binary files a/icon-themes/sifr/sd/cmd/transition-vortex.png and b/icon-themes/sifr/sd/cmd/transition-vortex.png differ diff --git a/icon-themes/sifr_dark/sd/cmd/transition-fall.png b/icon-themes/sifr_dark/sd/cmd/transition-fall.png index 6ee3b71d8d92..bd49892aff8f 100644 Binary files a/icon-themes/sifr_dark/sd/cmd/transition-fall.png and b/icon-themes/sifr_dark/sd/cmd/transition-fall.png differ diff --git a/icon-themes/sifr_dark/sd/cmd/transition-uncover.png b/icon-themes/sifr_dark/sd/cmd/transition-uncover.png index 39b61e51aef9..134ea1dac315 100644 Binary files a/icon-themes/sifr_dark/sd/cmd/transition-uncover.png and b/icon-themes/sifr_dark/sd/cmd/transition-uncover.png differ diff --git a/icon-themes/sifr_dark/sd/cmd/transition-vortex.png b/icon-themes/sifr_dark/sd/cmd/transition-vortex.png index e0074387fb09..2066bfd60cff 100644 Binary files a/icon-themes/sifr_dark/sd/cmd/transition-vortex.png and b/icon-themes/sifr_dark/sd/cmd/transition-vortex.png differ diff --git a/icon-themes/sifr_dark_svg/sd/cmd/transition-fall.svg b/icon-themes/sifr_dark_svg/sd/cmd/transition-fall.svg index 010aa05c0e79..7cb00420c94e 100644 --- a/icon-themes/sifr_dark_svg/sd/cmd/transition-fall.svg +++ b/icon-themes/sifr_dark_svg/sd/cmd/transition-fall.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/sd/cmd/transition-uncover.svg b/icon-themes/sifr_dark_svg/sd/cmd/transition-uncover.svg index a6527698bbc7..ca49ee41ee30 100644 --- a/icon-themes/sifr_dark_svg/sd/cmd/transition-uncover.svg +++ b/icon-themes/sifr_dark_svg/sd/cmd/transition-uncover.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/sd/cmd/transition-vortex.svg b/icon-themes/sifr_dark_svg/sd/cmd/transition-vortex.svg index 82bb293d4b57..e84dbd19c392 100644 --- a/icon-themes/sifr_dark_svg/sd/cmd/transition-vortex.svg +++ b/icon-themes/sifr_dark_svg/sd/cmd/transition-vortex.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_svg/sd/cmd/transition-fall.svg b/icon-themes/sifr_svg/sd/cmd/transition-fall.svg index 0d025f52a233..d30b747fe7b1 100644 --- a/icon-themes/sifr_svg/sd/cmd/transition-fall.svg +++ b/icon-themes/sifr_svg/sd/cmd/transition-fall.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_svg/sd/cmd/transition-uncover.svg b/icon-themes/sifr_svg/sd/cmd/transition-uncover.svg index ba6f34ab56af..f30f4956b766 100644 --- a/icon-themes/sifr_svg/sd/cmd/transition-uncover.svg +++ b/icon-themes/sifr_svg/sd/cmd/transition-uncover.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_svg/sd/cmd/transition-vortex.svg b/icon-themes/sifr_svg/sd/cmd/transition-vortex.svg index e969811dbe32..b445d77516d3 100644 --- a/icon-themes/sifr_svg/sd/cmd/transition-vortex.svg +++ b/icon-themes/sifr_svg/sd/cmd/transition-vortex.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file -- cgit v1.2.3 From 3142872bcba19b6c4d60b464fc9b14293860348d Mon Sep 17 00:00:00 2001 From: nd101 Date: Wed, 25 Mar 2020 13:43:32 +0800 Subject: tdf#131553 a null pointer crashes Impress MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When constructing a shape object from property EmbeddedObject, it may return null object. Check the returned value first. Change-Id: I9d7a2d9c0c919007ae2a34a0af86dea5639b1bd6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91024 Tested-by: Jenkins Reviewed-by: Noel Grandin (cherry picked from commit df1be683ab935fe5362750360508ba69eb415afb) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90959 Reviewed-by: Xisco Faulí --- oox/source/drawingml/shape.cxx | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/oox/source/drawingml/shape.cxx b/oox/source/drawingml/shape.cxx index f1da411ec4af..cce8b9ba7bbc 100644 --- a/oox/source/drawingml/shape.cxx +++ b/oox/source/drawingml/shape.cxx @@ -944,11 +944,14 @@ Reference< XShape > const & Shape::createAndInsert( xSet->setPropertyValue("CLSID", uno::makeAny(name.GetHexName())); uno::Reference const xObj( xSet->getPropertyValue("EmbeddedObject"), uno::UNO_QUERY); - uno::Reference const xMathModel(xObj->getComponent()); - oox::FormulaImportBase *const pMagic( - dynamic_cast(xMathModel.get())); - assert(pMagic); - pMagic->readFormulaOoxml(*pMathXml); + if (xObj.is()) + { + uno::Reference const xMathModel(xObj->getComponent()); + oox::FormulaImportBase *const pMagic( + dynamic_cast(xMathModel.get())); + assert(pMagic); + pMagic->readFormulaOoxml(*pMathXml); + } } const GraphicHelper& rGraphicHelper = rFilterBase.getGraphicHelper(); -- cgit v1.2.3 From c57bbc91c0eab82d6c6d676f28016432a4074f3b Mon Sep 17 00:00:00 2001 From: Rizal Muttaqin Date: Thu, 26 Mar 2020 00:24:56 +0700 Subject: Sifr: Fix for tdf#131566: Add extra large localized icons - Delete similar icons to move them to links.txt - Add Place Holder for Impress Change-Id: I3893989d97c83cfea1ba3943acb7bf6c80e3b774 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91064 Tested-by: Jenkins Reviewed-by: Rizal Muttaqin (cherry picked from commit bc0a111295701ffc940d3e16e0e8b1536af21d8b) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90964 Tested-by: Rizal Muttaqin --- icon-themes/sifr/cmd/32/bg/bold.png | Bin 0 -> 392 bytes icon-themes/sifr/cmd/32/bg/italic.png | Bin 0 -> 547 bytes icon-themes/sifr/cmd/32/bg/strikeout.png | Bin 0 -> 364 bytes icon-themes/sifr/cmd/32/ca/bold.png | Bin 413 -> 413 bytes icon-themes/sifr/cmd/32/ca/italic.png | Bin 0 -> 657 bytes icon-themes/sifr/cmd/32/de/bold.png | Bin 0 -> 741 bytes icon-themes/sifr/cmd/32/fr/bold.png | Bin 0 -> 633 bytes icon-themes/sifr/cmd/32/hu/italic.png | Bin 0 -> 623 bytes icon-themes/sifr/cmd/32/hu/underline.png | Bin 0 -> 371 bytes icon-themes/sifr/cmd/32/hu/underlinedouble.png | Bin 0 -> 378 bytes icon-themes/sifr/cmd/32/italic.png | Bin 335 -> 456 bytes icon-themes/sifr/cmd/32/km/bold.png | Bin 0 -> 593 bytes icon-themes/sifr/cmd/32/km/italic.png | Bin 0 -> 918 bytes icon-themes/sifr/cmd/32/km/underline.png | Bin 0 -> 523 bytes icon-themes/sifr/cmd/32/km/underlinedouble.png | Bin 0 -> 478 bytes icon-themes/sifr/cmd/32/nl/bold.png | Bin 0 -> 717 bytes icon-themes/sifr/cmd/32/nl/underline.png | Bin 0 -> 392 bytes icon-themes/sifr/cmd/32/nl/underlinedouble.png | Bin 0 -> 340 bytes icon-themes/sifr/cmd/32/pl/underline.png | Bin 0 -> 337 bytes icon-themes/sifr/cmd/32/pl/underlinedouble.png | Bin 0 -> 338 bytes icon-themes/sifr/cmd/32/ru/bold.png | Bin 0 -> 835 bytes icon-themes/sifr/cmd/32/ru/underline.png | Bin 0 -> 387 bytes icon-themes/sifr/cmd/32/ru/underlinedouble.png | Bin 0 -> 387 bytes icon-themes/sifr/cmd/32/sl/bold.png | Bin 0 -> 339 bytes icon-themes/sifr/cmd/32/sl/italic.png | Bin 0 -> 491 bytes icon-themes/sifr/cmd/32/tr/italic.png | Bin 0 -> 476 bytes icon-themes/sifr/cmd/bg/lc_bold.png | Bin 0 -> 391 bytes icon-themes/sifr/cmd/bg/lc_italic.png | Bin 0 -> 492 bytes icon-themes/sifr/cmd/bg/lc_strikeout.png | Bin 0 -> 325 bytes icon-themes/sifr/cmd/bg/sc_bold.png | Bin 0 -> 292 bytes icon-themes/sifr/cmd/bg/sc_italic.png | Bin 0 -> 375 bytes icon-themes/sifr/cmd/bg/sc_strikeout.png | Bin 0 -> 222 bytes icon-themes/sifr/cmd/es/lc_bold.png | Bin 357 -> 0 bytes icon-themes/sifr/cmd/es/lc_italic.png | Bin 515 -> 0 bytes icon-themes/sifr/cmd/es/lc_numberformatdecimal.png | Bin 347 -> 0 bytes .../sifr/cmd/es/lc_numberformatthousands.png | Bin 344 -> 0 bytes icon-themes/sifr/cmd/es/lc_underline.png | Bin 345 -> 0 bytes icon-themes/sifr/cmd/es/lc_underlinedouble.png | Bin 337 -> 0 bytes icon-themes/sifr/cmd/es/sc_bold.png | Bin 265 -> 0 bytes icon-themes/sifr/cmd/es/sc_italic.png | Bin 390 -> 0 bytes icon-themes/sifr/cmd/es/sc_numberformatdecimal.png | Bin 253 -> 0 bytes .../sifr/cmd/es/sc_numberformatthousands.png | Bin 274 -> 0 bytes icon-themes/sifr/cmd/es/sc_underline.png | Bin 260 -> 0 bytes icon-themes/sifr/cmd/es/sc_underlinedouble.png | Bin 239 -> 0 bytes icon-themes/sifr/cmd/fr/lc_underline.png | Bin 345 -> 0 bytes icon-themes/sifr/cmd/fr/lc_underlinedouble.png | Bin 337 -> 0 bytes icon-themes/sifr/cmd/fr/sc_underline.png | Bin 260 -> 0 bytes icon-themes/sifr/cmd/fr/sc_underlinedouble.png | Bin 239 -> 0 bytes icon-themes/sifr/cmd/hu/lc_italic.png | Bin 415 -> 528 bytes icon-themes/sifr/cmd/hu/sc_italic.png | Bin 323 -> 322 bytes icon-themes/sifr/cmd/it/lc_bold.png | Bin 429 -> 0 bytes icon-themes/sifr/cmd/it/lc_italic.png | Bin 515 -> 0 bytes icon-themes/sifr/cmd/it/lc_underline.png | Bin 345 -> 0 bytes icon-themes/sifr/cmd/it/lc_underlinedouble.png | Bin 337 -> 0 bytes icon-themes/sifr/cmd/it/sc_bold.png | Bin 337 -> 0 bytes icon-themes/sifr/cmd/it/sc_italic.png | Bin 390 -> 0 bytes icon-themes/sifr/cmd/it/sc_underline.png | Bin 260 -> 0 bytes icon-themes/sifr/cmd/it/sc_underlinedouble.png | Bin 239 -> 0 bytes icon-themes/sifr/cmd/nl/lc_italic.png | Bin 515 -> 0 bytes icon-themes/sifr/cmd/nl/sc_italic.png | Bin 390 -> 0 bytes icon-themes/sifr/cmd/pl/lc_bold.png | Bin 429 -> 0 bytes icon-themes/sifr/cmd/pl/lc_italic.png | Bin 387 -> 0 bytes icon-themes/sifr/cmd/pl/lc_underline.png | Bin 298 -> 297 bytes icon-themes/sifr/cmd/pl/lc_underlinedouble.png | Bin 297 -> 298 bytes icon-themes/sifr/cmd/pl/sc_bold.png | Bin 337 -> 0 bytes icon-themes/sifr/cmd/pl/sc_italic.png | Bin 348 -> 0 bytes icon-themes/sifr/cmd/pt-BR/lc_bold.png | Bin 357 -> 0 bytes icon-themes/sifr/cmd/pt-BR/lc_underline.png | Bin 345 -> 0 bytes icon-themes/sifr/cmd/pt-BR/lc_underlinedouble.png | Bin 337 -> 0 bytes icon-themes/sifr/cmd/pt-BR/sc_bold.png | Bin 265 -> 0 bytes icon-themes/sifr/cmd/pt-BR/sc_underline.png | Bin 260 -> 0 bytes icon-themes/sifr/cmd/pt-BR/sc_underlinedouble.png | Bin 239 -> 0 bytes icon-themes/sifr/cmd/pt/lc_bold.png | Bin 357 -> 0 bytes icon-themes/sifr/cmd/pt/lc_underline.png | Bin 345 -> 0 bytes icon-themes/sifr/cmd/pt/lc_underlinedouble.png | Bin 337 -> 0 bytes icon-themes/sifr/cmd/pt/sc_bold.png | Bin 265 -> 0 bytes icon-themes/sifr/cmd/pt/sc_underline.png | Bin 260 -> 0 bytes icon-themes/sifr/cmd/pt/sc_underlinedouble.png | Bin 239 -> 0 bytes icon-themes/sifr/cmd/ru/lc_italic.png | Bin 387 -> 0 bytes icon-themes/sifr/cmd/ru/sc_italic.png | Bin 348 -> 0 bytes icon-themes/sifr/cmd/sl/lc_underline.png | Bin 298 -> 0 bytes icon-themes/sifr/cmd/sl/lc_underlinedouble.png | Bin 297 -> 0 bytes icon-themes/sifr/cmd/sl/sc_underline.png | Bin 228 -> 0 bytes icon-themes/sifr/cmd/sl/sc_underlinedouble.png | Bin 225 -> 0 bytes icon-themes/sifr/cmd/sv/lc_bold.png | Bin 528 -> 0 bytes icon-themes/sifr/cmd/sv/lc_italic.png | Bin 387 -> 0 bytes icon-themes/sifr/cmd/sv/sc_bold.png | Bin 273 -> 0 bytes icon-themes/sifr/cmd/sv/sc_italic.png | Bin 348 -> 0 bytes icon-themes/sifr/cmd/tr/lc_bold.png | Bin 319 -> 0 bytes icon-themes/sifr/cmd/tr/lc_underline.png | Bin 335 -> 0 bytes icon-themes/sifr/cmd/tr/lc_underlinedouble.png | Bin 348 -> 0 bytes icon-themes/sifr/cmd/tr/sc_bold.png | Bin 294 -> 0 bytes icon-themes/sifr/cmd/tr/sc_underline.png | Bin 248 -> 0 bytes icon-themes/sifr/cmd/tr/sc_underlinedouble.png | Bin 239 -> 0 bytes icon-themes/sifr/links.txt | 64 +++++++++++++++++++++ .../sifr/sd/res/placeholder_chart_large.png | Bin 0 -> 630 bytes .../sifr/sd/res/placeholder_chart_large_hover.png | Bin 0 -> 578 bytes .../sifr/sd/res/placeholder_chart_small.png | Bin 0 -> 403 bytes .../sifr/sd/res/placeholder_chart_small_hover.png | Bin 0 -> 381 bytes .../sifr/sd/res/placeholder_image_large.png | Bin 0 -> 560 bytes .../sifr/sd/res/placeholder_image_large_hover.png | Bin 0 -> 511 bytes .../sifr/sd/res/placeholder_image_small.png | Bin 0 -> 338 bytes .../sifr/sd/res/placeholder_image_small_hover.png | Bin 0 -> 320 bytes .../sifr/sd/res/placeholder_movie_large.png | Bin 0 -> 524 bytes .../sifr/sd/res/placeholder_movie_large_hover.png | Bin 0 -> 489 bytes .../sifr/sd/res/placeholder_movie_small.png | Bin 0 -> 330 bytes .../sifr/sd/res/placeholder_movie_small_hover.png | Bin 0 -> 317 bytes .../sifr/sd/res/placeholder_table_large.png | Bin 0 -> 260 bytes .../sifr/sd/res/placeholder_table_large_hover.png | Bin 0 -> 268 bytes .../sifr/sd/res/placeholder_table_small.png | Bin 0 -> 221 bytes .../sifr/sd/res/placeholder_table_small_hover.png | Bin 0 -> 224 bytes icon-themes/sifr_dark/cmd/32/bg/bold.png | Bin 0 -> 392 bytes icon-themes/sifr_dark/cmd/32/bg/italic.png | Bin 0 -> 547 bytes icon-themes/sifr_dark/cmd/32/bg/strikeout.png | Bin 0 -> 364 bytes icon-themes/sifr_dark/cmd/32/ca/bold.png | Bin 413 -> 413 bytes icon-themes/sifr_dark/cmd/32/ca/italic.png | Bin 0 -> 657 bytes icon-themes/sifr_dark/cmd/32/de/bold.png | Bin 0 -> 741 bytes icon-themes/sifr_dark/cmd/32/fr/bold.png | Bin 0 -> 619 bytes icon-themes/sifr_dark/cmd/32/hu/italic.png | Bin 0 -> 623 bytes icon-themes/sifr_dark/cmd/32/hu/underline.png | Bin 0 -> 371 bytes .../sifr_dark/cmd/32/hu/underlinedouble.png | Bin 0 -> 378 bytes icon-themes/sifr_dark/cmd/32/italic.png | Bin 335 -> 456 bytes icon-themes/sifr_dark/cmd/32/km/bold.png | Bin 0 -> 593 bytes icon-themes/sifr_dark/cmd/32/km/italic.png | Bin 0 -> 918 bytes icon-themes/sifr_dark/cmd/32/km/underline.png | Bin 0 -> 523 bytes .../sifr_dark/cmd/32/km/underlinedouble.png | Bin 0 -> 478 bytes icon-themes/sifr_dark/cmd/32/nl/bold.png | Bin 0 -> 717 bytes icon-themes/sifr_dark/cmd/32/nl/underline.png | Bin 0 -> 392 bytes .../sifr_dark/cmd/32/nl/underlinedouble.png | Bin 0 -> 340 bytes icon-themes/sifr_dark/cmd/32/pl/underline.png | Bin 0 -> 337 bytes .../sifr_dark/cmd/32/pl/underlinedouble.png | Bin 0 -> 338 bytes icon-themes/sifr_dark/cmd/32/ru/bold.png | Bin 0 -> 835 bytes icon-themes/sifr_dark/cmd/32/ru/underline.png | Bin 0 -> 392 bytes .../sifr_dark/cmd/32/ru/underlinedouble.png | Bin 0 -> 395 bytes icon-themes/sifr_dark/cmd/32/sl/bold.png | Bin 0 -> 339 bytes icon-themes/sifr_dark/cmd/32/sl/italic.png | Bin 0 -> 491 bytes icon-themes/sifr_dark/cmd/32/tr/italic.png | Bin 0 -> 485 bytes icon-themes/sifr_dark/cmd/bg/lc_bold.png | Bin 0 -> 391 bytes icon-themes/sifr_dark/cmd/bg/lc_italic.png | Bin 0 -> 492 bytes icon-themes/sifr_dark/cmd/bg/lc_strikeout.png | Bin 0 -> 325 bytes icon-themes/sifr_dark/cmd/bg/sc_bold.png | Bin 0 -> 292 bytes icon-themes/sifr_dark/cmd/bg/sc_italic.png | Bin 0 -> 375 bytes icon-themes/sifr_dark/cmd/bg/sc_strikeout.png | Bin 0 -> 222 bytes icon-themes/sifr_dark/cmd/es/lc_bold.png | Bin 357 -> 0 bytes icon-themes/sifr_dark/cmd/es/lc_italic.png | Bin 515 -> 0 bytes .../sifr_dark/cmd/es/lc_numberformatdecimal.png | Bin 347 -> 0 bytes .../sifr_dark/cmd/es/lc_numberformatthousands.png | Bin 339 -> 0 bytes icon-themes/sifr_dark/cmd/es/lc_underline.png | Bin 345 -> 0 bytes .../sifr_dark/cmd/es/lc_underlinedouble.png | Bin 337 -> 0 bytes icon-themes/sifr_dark/cmd/es/sc_bold.png | Bin 265 -> 0 bytes icon-themes/sifr_dark/cmd/es/sc_italic.png | Bin 390 -> 0 bytes .../sifr_dark/cmd/es/sc_numberformatdecimal.png | Bin 253 -> 0 bytes .../sifr_dark/cmd/es/sc_numberformatthousands.png | Bin 289 -> 0 bytes icon-themes/sifr_dark/cmd/es/sc_underline.png | Bin 260 -> 0 bytes .../sifr_dark/cmd/es/sc_underlinedouble.png | Bin 239 -> 0 bytes icon-themes/sifr_dark/cmd/fr/lc_underline.png | Bin 345 -> 0 bytes .../sifr_dark/cmd/fr/lc_underlinedouble.png | Bin 337 -> 0 bytes icon-themes/sifr_dark/cmd/fr/sc_underline.png | Bin 260 -> 0 bytes .../sifr_dark/cmd/fr/sc_underlinedouble.png | Bin 239 -> 0 bytes icon-themes/sifr_dark/cmd/hu/lc_italic.png | Bin 415 -> 528 bytes icon-themes/sifr_dark/cmd/hu/sc_italic.png | Bin 323 -> 322 bytes icon-themes/sifr_dark/cmd/it/lc_bold.png | Bin 429 -> 0 bytes icon-themes/sifr_dark/cmd/it/lc_italic.png | Bin 515 -> 0 bytes icon-themes/sifr_dark/cmd/it/lc_underline.png | Bin 345 -> 0 bytes .../sifr_dark/cmd/it/lc_underlinedouble.png | Bin 337 -> 0 bytes icon-themes/sifr_dark/cmd/it/sc_bold.png | Bin 337 -> 0 bytes icon-themes/sifr_dark/cmd/it/sc_italic.png | Bin 390 -> 0 bytes icon-themes/sifr_dark/cmd/it/sc_underline.png | Bin 260 -> 0 bytes .../sifr_dark/cmd/it/sc_underlinedouble.png | Bin 239 -> 0 bytes icon-themes/sifr_dark/cmd/nl/lc_italic.png | Bin 515 -> 0 bytes icon-themes/sifr_dark/cmd/nl/sc_italic.png | Bin 390 -> 0 bytes icon-themes/sifr_dark/cmd/pl/lc_bold.png | Bin 429 -> 0 bytes icon-themes/sifr_dark/cmd/pl/lc_italic.png | Bin 387 -> 0 bytes icon-themes/sifr_dark/cmd/pl/lc_underline.png | Bin 298 -> 297 bytes .../sifr_dark/cmd/pl/lc_underlinedouble.png | Bin 297 -> 298 bytes icon-themes/sifr_dark/cmd/pl/sc_bold.png | Bin 337 -> 0 bytes icon-themes/sifr_dark/cmd/pl/sc_italic.png | Bin 348 -> 0 bytes icon-themes/sifr_dark/cmd/pt-BR/lc_bold.png | Bin 357 -> 0 bytes icon-themes/sifr_dark/cmd/pt-BR/lc_underline.png | Bin 345 -> 0 bytes .../sifr_dark/cmd/pt-BR/lc_underlinedouble.png | Bin 337 -> 0 bytes icon-themes/sifr_dark/cmd/pt-BR/sc_bold.png | Bin 265 -> 0 bytes icon-themes/sifr_dark/cmd/pt-BR/sc_underline.png | Bin 260 -> 0 bytes .../sifr_dark/cmd/pt-BR/sc_underlinedouble.png | Bin 239 -> 0 bytes icon-themes/sifr_dark/cmd/pt/lc_bold.png | Bin 357 -> 0 bytes icon-themes/sifr_dark/cmd/pt/lc_underline.png | Bin 345 -> 0 bytes .../sifr_dark/cmd/pt/lc_underlinedouble.png | Bin 337 -> 0 bytes icon-themes/sifr_dark/cmd/pt/sc_bold.png | Bin 265 -> 0 bytes icon-themes/sifr_dark/cmd/pt/sc_underline.png | Bin 260 -> 0 bytes .../sifr_dark/cmd/pt/sc_underlinedouble.png | Bin 239 -> 0 bytes icon-themes/sifr_dark/cmd/ru/lc_italic.png | Bin 387 -> 0 bytes icon-themes/sifr_dark/cmd/ru/sc_italic.png | Bin 348 -> 0 bytes icon-themes/sifr_dark/cmd/sl/lc_underline.png | Bin 298 -> 0 bytes .../sifr_dark/cmd/sl/lc_underlinedouble.png | Bin 297 -> 0 bytes icon-themes/sifr_dark/cmd/sl/sc_underline.png | Bin 228 -> 0 bytes .../sifr_dark/cmd/sl/sc_underlinedouble.png | Bin 225 -> 0 bytes icon-themes/sifr_dark/cmd/sv/lc_bold.png | Bin 528 -> 0 bytes icon-themes/sifr_dark/cmd/sv/lc_italic.png | Bin 387 -> 0 bytes icon-themes/sifr_dark/cmd/sv/sc_bold.png | Bin 273 -> 0 bytes icon-themes/sifr_dark/cmd/sv/sc_italic.png | Bin 348 -> 0 bytes icon-themes/sifr_dark/cmd/tr/lc_bold.png | Bin 319 -> 0 bytes icon-themes/sifr_dark/cmd/tr/lc_underline.png | Bin 335 -> 0 bytes .../sifr_dark/cmd/tr/lc_underlinedouble.png | Bin 348 -> 0 bytes icon-themes/sifr_dark/cmd/tr/sc_bold.png | Bin 294 -> 0 bytes icon-themes/sifr_dark/cmd/tr/sc_underline.png | Bin 248 -> 0 bytes .../sifr_dark/cmd/tr/sc_underlinedouble.png | Bin 239 -> 0 bytes icon-themes/sifr_dark/links.txt | 64 +++++++++++++++++++++ .../sifr_dark/sd/res/placeholder_chart_large.png | Bin 0 -> 587 bytes .../sd/res/placeholder_chart_large_hover.png | Bin 0 -> 578 bytes .../sifr_dark/sd/res/placeholder_chart_small.png | Bin 0 -> 408 bytes .../sd/res/placeholder_chart_small_hover.png | Bin 0 -> 380 bytes .../sifr_dark/sd/res/placeholder_image_large.png | Bin 0 -> 552 bytes .../sd/res/placeholder_image_large_hover.png | Bin 0 -> 511 bytes .../sifr_dark/sd/res/placeholder_image_small.png | Bin 0 -> 338 bytes .../sd/res/placeholder_image_small_hover.png | Bin 0 -> 320 bytes .../sifr_dark/sd/res/placeholder_movie_large.png | Bin 0 -> 520 bytes .../sd/res/placeholder_movie_large_hover.png | Bin 0 -> 488 bytes .../sifr_dark/sd/res/placeholder_movie_small.png | Bin 0 -> 330 bytes .../sd/res/placeholder_movie_small_hover.png | Bin 0 -> 317 bytes .../sifr_dark/sd/res/placeholder_table_large.png | Bin 0 -> 269 bytes .../sd/res/placeholder_table_large_hover.png | Bin 0 -> 268 bytes .../sifr_dark/sd/res/placeholder_table_small.png | Bin 0 -> 225 bytes .../sd/res/placeholder_table_small_hover.png | Bin 0 -> 224 bytes icon-themes/sifr_dark_svg/cmd/32/bg/bold.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/bg/italic.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/bg/strikeout.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/ca/bold.svg | 2 +- icon-themes/sifr_dark_svg/cmd/32/ca/italic.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/ca/underline.svg | 2 +- .../sifr_dark_svg/cmd/32/ca/underlinedouble.svg | 2 +- icon-themes/sifr_dark_svg/cmd/32/de/bold.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/fr/bold.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/hu/italic.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/hu/underline.svg | 1 + .../sifr_dark_svg/cmd/32/hu/underlinedouble.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/italic.svg | 2 +- icon-themes/sifr_dark_svg/cmd/32/km/bold.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/km/italic.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/km/underline.svg | 1 + .../sifr_dark_svg/cmd/32/km/underlinedouble.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/nl/bold.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/nl/underline.svg | 1 + .../sifr_dark_svg/cmd/32/nl/underlinedouble.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/pl/underline.svg | 1 + .../sifr_dark_svg/cmd/32/pl/underlinedouble.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/ru/bold.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/ru/underline.svg | 1 + .../sifr_dark_svg/cmd/32/ru/underlinedouble.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/sl/bold.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/sl/italic.svg | 1 + icon-themes/sifr_dark_svg/cmd/32/tr/italic.svg | 1 + icon-themes/sifr_dark_svg/cmd/bg/lc_bold.svg | 1 + icon-themes/sifr_dark_svg/cmd/bg/lc_italic.svg | 1 + icon-themes/sifr_dark_svg/cmd/bg/lc_strikeout.svg | 1 + icon-themes/sifr_dark_svg/cmd/bg/sc_bold.svg | 1 + icon-themes/sifr_dark_svg/cmd/bg/sc_italic.svg | 1 + icon-themes/sifr_dark_svg/cmd/bg/sc_strikeout.svg | 1 + icon-themes/sifr_dark_svg/cmd/es/lc_bold.svg | 1 - icon-themes/sifr_dark_svg/cmd/es/lc_italic.svg | 1 - .../cmd/es/lc_numberformatdecimal.svg | 1 - .../cmd/es/lc_numberformatthousands.svg | 1 - icon-themes/sifr_dark_svg/cmd/es/lc_underline.svg | 1 - .../sifr_dark_svg/cmd/es/lc_underlinedouble.svg | 1 - icon-themes/sifr_dark_svg/cmd/es/sc_bold.svg | 1 - icon-themes/sifr_dark_svg/cmd/es/sc_italic.svg | 1 - .../cmd/es/sc_numberformatdecimal.svg | 1 - .../cmd/es/sc_numberformatthousands.svg | 1 - icon-themes/sifr_dark_svg/cmd/es/sc_underline.svg | 1 - .../sifr_dark_svg/cmd/es/sc_underlinedouble.svg | 1 - icon-themes/sifr_dark_svg/cmd/fr/lc_underline.svg | 1 - .../sifr_dark_svg/cmd/fr/lc_underlinedouble.svg | 1 - icon-themes/sifr_dark_svg/cmd/fr/sc_underline.svg | 1 - .../sifr_dark_svg/cmd/fr/sc_underlinedouble.svg | 1 - icon-themes/sifr_dark_svg/cmd/hu/lc_italic.svg | 2 +- icon-themes/sifr_dark_svg/cmd/hu/sc_italic.svg | 2 +- icon-themes/sifr_dark_svg/cmd/it/lc_bold.svg | 1 - icon-themes/sifr_dark_svg/cmd/it/lc_italic.svg | 1 - icon-themes/sifr_dark_svg/cmd/it/lc_underline.svg | 1 - .../sifr_dark_svg/cmd/it/lc_underlinedouble.svg | 1 - icon-themes/sifr_dark_svg/cmd/it/sc_bold.svg | 1 - icon-themes/sifr_dark_svg/cmd/it/sc_italic.svg | 1 - icon-themes/sifr_dark_svg/cmd/it/sc_underline.svg | 1 - .../sifr_dark_svg/cmd/it/sc_underlinedouble.svg | 1 - icon-themes/sifr_dark_svg/cmd/nl/lc_italic.svg | 1 - icon-themes/sifr_dark_svg/cmd/nl/sc_italic.svg | 1 - icon-themes/sifr_dark_svg/cmd/pl/lc_bold.svg | 1 - icon-themes/sifr_dark_svg/cmd/pl/lc_italic.svg | 1 - icon-themes/sifr_dark_svg/cmd/pl/lc_underline.svg | 2 +- .../sifr_dark_svg/cmd/pl/lc_underlinedouble.svg | 2 +- icon-themes/sifr_dark_svg/cmd/pl/sc_bold.svg | 1 - icon-themes/sifr_dark_svg/cmd/pl/sc_italic.svg | 1 - icon-themes/sifr_dark_svg/cmd/pt-BR/lc_bold.svg | 1 - .../sifr_dark_svg/cmd/pt-BR/lc_underline.svg | 1 - .../sifr_dark_svg/cmd/pt-BR/lc_underlinedouble.svg | 1 - icon-themes/sifr_dark_svg/cmd/pt-BR/sc_bold.svg | 1 - .../sifr_dark_svg/cmd/pt-BR/sc_underline.svg | 1 - .../sifr_dark_svg/cmd/pt-BR/sc_underlinedouble.svg | 1 - icon-themes/sifr_dark_svg/cmd/pt/lc_bold.svg | 1 - icon-themes/sifr_dark_svg/cmd/pt/lc_underline.svg | 1 - .../sifr_dark_svg/cmd/pt/lc_underlinedouble.svg | 1 - icon-themes/sifr_dark_svg/cmd/pt/sc_bold.svg | 1 - icon-themes/sifr_dark_svg/cmd/pt/sc_underline.svg | 1 - .../sifr_dark_svg/cmd/pt/sc_underlinedouble.svg | 1 - icon-themes/sifr_dark_svg/cmd/ru/lc_italic.svg | 1 - icon-themes/sifr_dark_svg/cmd/ru/sc_italic.svg | 1 - icon-themes/sifr_dark_svg/cmd/sl/lc_underline.svg | 1 - .../sifr_dark_svg/cmd/sl/lc_underlinedouble.svg | 1 - icon-themes/sifr_dark_svg/cmd/sl/sc_underline.svg | 1 - .../sifr_dark_svg/cmd/sl/sc_underlinedouble.svg | 1 - icon-themes/sifr_dark_svg/cmd/sv/lc_bold.svg | 1 - icon-themes/sifr_dark_svg/cmd/sv/lc_italic.svg | 1 - icon-themes/sifr_dark_svg/cmd/sv/sc_bold.svg | 1 - icon-themes/sifr_dark_svg/cmd/sv/sc_italic.svg | 1 - icon-themes/sifr_dark_svg/cmd/tr/lc_bold.svg | 1 - icon-themes/sifr_dark_svg/cmd/tr/lc_underline.svg | 1 - .../sifr_dark_svg/cmd/tr/lc_underlinedouble.svg | 1 - icon-themes/sifr_dark_svg/cmd/tr/sc_bold.svg | 1 - icon-themes/sifr_dark_svg/cmd/tr/sc_underline.svg | 1 - .../sifr_dark_svg/cmd/tr/sc_underlinedouble.svg | 1 - .../sd/res/placeholder_chart_large.svg | 1 + .../sd/res/placeholder_chart_large_hover.svg | 1 + .../sd/res/placeholder_chart_small.svg | 1 + .../sd/res/placeholder_chart_small_hover.svg | 1 + .../sd/res/placeholder_image_large.svg | 1 + .../sd/res/placeholder_image_large_hover.svg | 1 + .../sd/res/placeholder_image_small.svg | 1 + .../sd/res/placeholder_image_small_hover.svg | 1 + .../sd/res/placeholder_movie_large.svg | 1 + .../sd/res/placeholder_movie_large_hover.svg | 1 + .../sd/res/placeholder_movie_small.svg | 1 + .../sd/res/placeholder_movie_small_hover.svg | 1 + .../sd/res/placeholder_table_large.svg | 1 + .../sd/res/placeholder_table_large_hover.svg | 1 + .../sd/res/placeholder_table_small.svg | 1 + .../sd/res/placeholder_table_small_hover.svg | 1 + icon-themes/sifr_svg/cmd/32/bg/bold.svg | 1 + icon-themes/sifr_svg/cmd/32/bg/italic.svg | 1 + icon-themes/sifr_svg/cmd/32/bg/strikeout.svg | 1 + icon-themes/sifr_svg/cmd/32/ca/bold.svg | 2 +- icon-themes/sifr_svg/cmd/32/ca/italic.svg | 1 + icon-themes/sifr_svg/cmd/32/ca/underline.svg | 2 +- icon-themes/sifr_svg/cmd/32/ca/underlinedouble.svg | 2 +- icon-themes/sifr_svg/cmd/32/de/bold.svg | 1 + icon-themes/sifr_svg/cmd/32/fr/bold.svg | 1 + icon-themes/sifr_svg/cmd/32/hu/italic.svg | 1 + icon-themes/sifr_svg/cmd/32/hu/underline.svg | 1 + icon-themes/sifr_svg/cmd/32/hu/underlinedouble.svg | 1 + icon-themes/sifr_svg/cmd/32/italic.svg | 2 +- icon-themes/sifr_svg/cmd/32/km/bold.svg | 1 + icon-themes/sifr_svg/cmd/32/km/italic.svg | 1 + icon-themes/sifr_svg/cmd/32/km/underline.svg | 1 + icon-themes/sifr_svg/cmd/32/km/underlinedouble.svg | 1 + icon-themes/sifr_svg/cmd/32/nl/bold.svg | 1 + icon-themes/sifr_svg/cmd/32/nl/underline.svg | 1 + icon-themes/sifr_svg/cmd/32/nl/underlinedouble.svg | 1 + icon-themes/sifr_svg/cmd/32/pl/underline.svg | 1 + icon-themes/sifr_svg/cmd/32/pl/underlinedouble.svg | 1 + icon-themes/sifr_svg/cmd/32/ru/bold.svg | 1 + icon-themes/sifr_svg/cmd/32/ru/underline.svg | 1 + icon-themes/sifr_svg/cmd/32/ru/underlinedouble.svg | 1 + icon-themes/sifr_svg/cmd/32/sl/bold.svg | 1 + icon-themes/sifr_svg/cmd/32/sl/italic.svg | 1 + icon-themes/sifr_svg/cmd/32/tr/italic.svg | 1 + icon-themes/sifr_svg/cmd/bg/lc_bold.svg | 1 + icon-themes/sifr_svg/cmd/bg/lc_italic.svg | 1 + icon-themes/sifr_svg/cmd/bg/lc_strikeout.svg | 1 + icon-themes/sifr_svg/cmd/bg/sc_bold.svg | 1 + icon-themes/sifr_svg/cmd/bg/sc_italic.svg | 1 + icon-themes/sifr_svg/cmd/bg/sc_strikeout.svg | 1 + icon-themes/sifr_svg/cmd/es/lc_bold.svg | 1 - icon-themes/sifr_svg/cmd/es/lc_italic.svg | 1 - .../sifr_svg/cmd/es/lc_numberformatdecimal.svg | 1 - .../sifr_svg/cmd/es/lc_numberformatthousands.svg | 1 - icon-themes/sifr_svg/cmd/es/lc_underline.svg | 1 - icon-themes/sifr_svg/cmd/es/lc_underlinedouble.svg | 1 - icon-themes/sifr_svg/cmd/es/sc_bold.svg | 1 - icon-themes/sifr_svg/cmd/es/sc_italic.svg | 1 - .../sifr_svg/cmd/es/sc_numberformatdecimal.svg | 1 - .../sifr_svg/cmd/es/sc_numberformatthousands.svg | 1 - icon-themes/sifr_svg/cmd/es/sc_underline.svg | 1 - icon-themes/sifr_svg/cmd/es/sc_underlinedouble.svg | 1 - icon-themes/sifr_svg/cmd/fr/lc_underline.svg | 1 - icon-themes/sifr_svg/cmd/fr/lc_underlinedouble.svg | 1 - icon-themes/sifr_svg/cmd/fr/sc_underline.svg | 1 - icon-themes/sifr_svg/cmd/fr/sc_underlinedouble.svg | 1 - icon-themes/sifr_svg/cmd/hu/lc_italic.svg | 2 +- icon-themes/sifr_svg/cmd/hu/sc_italic.svg | 2 +- icon-themes/sifr_svg/cmd/it/lc_bold.svg | 1 - icon-themes/sifr_svg/cmd/it/lc_italic.svg | 1 - icon-themes/sifr_svg/cmd/it/lc_underline.svg | 1 - icon-themes/sifr_svg/cmd/it/lc_underlinedouble.svg | 1 - icon-themes/sifr_svg/cmd/it/sc_bold.svg | 1 - icon-themes/sifr_svg/cmd/it/sc_italic.svg | 1 - icon-themes/sifr_svg/cmd/it/sc_underline.svg | 1 - icon-themes/sifr_svg/cmd/it/sc_underlinedouble.svg | 1 - icon-themes/sifr_svg/cmd/nl/lc_italic.svg | 1 - icon-themes/sifr_svg/cmd/nl/sc_italic.svg | 1 - icon-themes/sifr_svg/cmd/pl/lc_bold.svg | 1 - icon-themes/sifr_svg/cmd/pl/lc_italic.svg | 1 - icon-themes/sifr_svg/cmd/pl/lc_underline.svg | 2 +- icon-themes/sifr_svg/cmd/pl/lc_underlinedouble.svg | 2 +- icon-themes/sifr_svg/cmd/pl/sc_bold.svg | 1 - icon-themes/sifr_svg/cmd/pl/sc_italic.svg | 1 - icon-themes/sifr_svg/cmd/pt-BR/lc_bold.svg | 1 - icon-themes/sifr_svg/cmd/pt-BR/lc_underline.svg | 1 - .../sifr_svg/cmd/pt-BR/lc_underlinedouble.svg | 1 - icon-themes/sifr_svg/cmd/pt-BR/sc_bold.svg | 1 - icon-themes/sifr_svg/cmd/pt-BR/sc_underline.svg | 1 - .../sifr_svg/cmd/pt-BR/sc_underlinedouble.svg | 1 - icon-themes/sifr_svg/cmd/pt/lc_bold.svg | 1 - icon-themes/sifr_svg/cmd/pt/lc_underline.svg | 1 - icon-themes/sifr_svg/cmd/pt/lc_underlinedouble.svg | 1 - icon-themes/sifr_svg/cmd/pt/sc_bold.svg | 1 - icon-themes/sifr_svg/cmd/pt/sc_underline.svg | 1 - icon-themes/sifr_svg/cmd/pt/sc_underlinedouble.svg | 1 - icon-themes/sifr_svg/cmd/ru/lc_italic.svg | 1 - icon-themes/sifr_svg/cmd/ru/sc_italic.svg | 1 - icon-themes/sifr_svg/cmd/sl/lc_underline.svg | 1 - icon-themes/sifr_svg/cmd/sl/lc_underlinedouble.svg | 1 - icon-themes/sifr_svg/cmd/sl/sc_underline.svg | 1 - icon-themes/sifr_svg/cmd/sl/sc_underlinedouble.svg | 1 - icon-themes/sifr_svg/cmd/sv/lc_bold.svg | 1 - icon-themes/sifr_svg/cmd/sv/lc_italic.svg | 1 - icon-themes/sifr_svg/cmd/sv/sc_bold.svg | 1 - icon-themes/sifr_svg/cmd/sv/sc_italic.svg | 1 - icon-themes/sifr_svg/cmd/tr/lc_bold.svg | 1 - icon-themes/sifr_svg/cmd/tr/lc_underline.svg | 1 - icon-themes/sifr_svg/cmd/tr/lc_underlinedouble.svg | 1 - icon-themes/sifr_svg/cmd/tr/sc_bold.svg | 1 - icon-themes/sifr_svg/cmd/tr/sc_underline.svg | 1 - icon-themes/sifr_svg/cmd/tr/sc_underlinedouble.svg | 1 - .../sifr_svg/sd/res/placeholder_chart_large.svg | 1 + .../sd/res/placeholder_chart_large_hover.svg | 1 + .../sifr_svg/sd/res/placeholder_chart_small.svg | 1 + .../sd/res/placeholder_chart_small_hover.svg | 1 + .../sifr_svg/sd/res/placeholder_image_large.svg | 1 + .../sd/res/placeholder_image_large_hover.svg | 1 + .../sifr_svg/sd/res/placeholder_image_small.svg | 1 + .../sd/res/placeholder_image_small_hover.svg | 1 + .../sifr_svg/sd/res/placeholder_movie_large.svg | 1 + .../sd/res/placeholder_movie_large_hover.svg | 1 + .../sifr_svg/sd/res/placeholder_movie_small.svg | 1 + .../sd/res/placeholder_movie_small_hover.svg | 1 + .../sifr_svg/sd/res/placeholder_table_large.svg | 1 + .../sd/res/placeholder_table_large_hover.svg | 1 + .../sifr_svg/sd/res/placeholder_table_small.svg | 1 + .../sd/res/placeholder_table_small_hover.svg | 1 + 446 files changed, 236 insertions(+), 132 deletions(-) create mode 100644 icon-themes/sifr/cmd/32/bg/bold.png create mode 100644 icon-themes/sifr/cmd/32/bg/italic.png create mode 100644 icon-themes/sifr/cmd/32/bg/strikeout.png create mode 100644 icon-themes/sifr/cmd/32/ca/italic.png create mode 100644 icon-themes/sifr/cmd/32/de/bold.png create mode 100644 icon-themes/sifr/cmd/32/fr/bold.png create mode 100644 icon-themes/sifr/cmd/32/hu/italic.png create mode 100644 icon-themes/sifr/cmd/32/hu/underline.png create mode 100644 icon-themes/sifr/cmd/32/hu/underlinedouble.png create mode 100644 icon-themes/sifr/cmd/32/km/bold.png create mode 100644 icon-themes/sifr/cmd/32/km/italic.png create mode 100644 icon-themes/sifr/cmd/32/km/underline.png create mode 100644 icon-themes/sifr/cmd/32/km/underlinedouble.png create mode 100644 icon-themes/sifr/cmd/32/nl/bold.png create mode 100644 icon-themes/sifr/cmd/32/nl/underline.png create mode 100644 icon-themes/sifr/cmd/32/nl/underlinedouble.png create mode 100644 icon-themes/sifr/cmd/32/pl/underline.png create mode 100644 icon-themes/sifr/cmd/32/pl/underlinedouble.png create mode 100644 icon-themes/sifr/cmd/32/ru/bold.png create mode 100644 icon-themes/sifr/cmd/32/ru/underline.png create mode 100644 icon-themes/sifr/cmd/32/ru/underlinedouble.png create mode 100644 icon-themes/sifr/cmd/32/sl/bold.png create mode 100644 icon-themes/sifr/cmd/32/sl/italic.png create mode 100644 icon-themes/sifr/cmd/32/tr/italic.png create mode 100644 icon-themes/sifr/cmd/bg/lc_bold.png create mode 100644 icon-themes/sifr/cmd/bg/lc_italic.png create mode 100644 icon-themes/sifr/cmd/bg/lc_strikeout.png create mode 100644 icon-themes/sifr/cmd/bg/sc_bold.png create mode 100644 icon-themes/sifr/cmd/bg/sc_italic.png create mode 100644 icon-themes/sifr/cmd/bg/sc_strikeout.png delete mode 100644 icon-themes/sifr/cmd/es/lc_bold.png delete mode 100644 icon-themes/sifr/cmd/es/lc_italic.png delete mode 100644 icon-themes/sifr/cmd/es/lc_numberformatdecimal.png delete mode 100644 icon-themes/sifr/cmd/es/lc_numberformatthousands.png delete mode 100644 icon-themes/sifr/cmd/es/lc_underline.png delete mode 100644 icon-themes/sifr/cmd/es/lc_underlinedouble.png delete mode 100644 icon-themes/sifr/cmd/es/sc_bold.png delete mode 100644 icon-themes/sifr/cmd/es/sc_italic.png delete mode 100644 icon-themes/sifr/cmd/es/sc_numberformatdecimal.png delete mode 100644 icon-themes/sifr/cmd/es/sc_numberformatthousands.png delete mode 100644 icon-themes/sifr/cmd/es/sc_underline.png delete mode 100644 icon-themes/sifr/cmd/es/sc_underlinedouble.png delete mode 100644 icon-themes/sifr/cmd/fr/lc_underline.png delete mode 100644 icon-themes/sifr/cmd/fr/lc_underlinedouble.png delete mode 100644 icon-themes/sifr/cmd/fr/sc_underline.png delete mode 100644 icon-themes/sifr/cmd/fr/sc_underlinedouble.png delete mode 100644 icon-themes/sifr/cmd/it/lc_bold.png delete mode 100644 icon-themes/sifr/cmd/it/lc_italic.png delete mode 100644 icon-themes/sifr/cmd/it/lc_underline.png delete mode 100644 icon-themes/sifr/cmd/it/lc_underlinedouble.png delete mode 100644 icon-themes/sifr/cmd/it/sc_bold.png delete mode 100644 icon-themes/sifr/cmd/it/sc_italic.png delete mode 100644 icon-themes/sifr/cmd/it/sc_underline.png delete mode 100644 icon-themes/sifr/cmd/it/sc_underlinedouble.png delete mode 100644 icon-themes/sifr/cmd/nl/lc_italic.png delete mode 100644 icon-themes/sifr/cmd/nl/sc_italic.png delete mode 100644 icon-themes/sifr/cmd/pl/lc_bold.png delete mode 100644 icon-themes/sifr/cmd/pl/lc_italic.png delete mode 100644 icon-themes/sifr/cmd/pl/sc_bold.png delete mode 100644 icon-themes/sifr/cmd/pl/sc_italic.png delete mode 100644 icon-themes/sifr/cmd/pt-BR/lc_bold.png delete mode 100644 icon-themes/sifr/cmd/pt-BR/lc_underline.png delete mode 100644 icon-themes/sifr/cmd/pt-BR/lc_underlinedouble.png delete mode 100644 icon-themes/sifr/cmd/pt-BR/sc_bold.png delete mode 100644 icon-themes/sifr/cmd/pt-BR/sc_underline.png delete mode 100644 icon-themes/sifr/cmd/pt-BR/sc_underlinedouble.png delete mode 100644 icon-themes/sifr/cmd/pt/lc_bold.png delete mode 100644 icon-themes/sifr/cmd/pt/lc_underline.png delete mode 100644 icon-themes/sifr/cmd/pt/lc_underlinedouble.png delete mode 100644 icon-themes/sifr/cmd/pt/sc_bold.png delete mode 100644 icon-themes/sifr/cmd/pt/sc_underline.png delete mode 100644 icon-themes/sifr/cmd/pt/sc_underlinedouble.png delete mode 100644 icon-themes/sifr/cmd/ru/lc_italic.png delete mode 100644 icon-themes/sifr/cmd/ru/sc_italic.png delete mode 100644 icon-themes/sifr/cmd/sl/lc_underline.png delete mode 100644 icon-themes/sifr/cmd/sl/lc_underlinedouble.png delete mode 100644 icon-themes/sifr/cmd/sl/sc_underline.png delete mode 100644 icon-themes/sifr/cmd/sl/sc_underlinedouble.png delete mode 100644 icon-themes/sifr/cmd/sv/lc_bold.png delete mode 100644 icon-themes/sifr/cmd/sv/lc_italic.png delete mode 100644 icon-themes/sifr/cmd/sv/sc_bold.png delete mode 100644 icon-themes/sifr/cmd/sv/sc_italic.png delete mode 100644 icon-themes/sifr/cmd/tr/lc_bold.png delete mode 100644 icon-themes/sifr/cmd/tr/lc_underline.png delete mode 100644 icon-themes/sifr/cmd/tr/lc_underlinedouble.png delete mode 100644 icon-themes/sifr/cmd/tr/sc_bold.png delete mode 100644 icon-themes/sifr/cmd/tr/sc_underline.png delete mode 100644 icon-themes/sifr/cmd/tr/sc_underlinedouble.png create mode 100644 icon-themes/sifr/sd/res/placeholder_chart_large.png create mode 100644 icon-themes/sifr/sd/res/placeholder_chart_large_hover.png create mode 100644 icon-themes/sifr/sd/res/placeholder_chart_small.png create mode 100644 icon-themes/sifr/sd/res/placeholder_chart_small_hover.png create mode 100644 icon-themes/sifr/sd/res/placeholder_image_large.png create mode 100644 icon-themes/sifr/sd/res/placeholder_image_large_hover.png create mode 100644 icon-themes/sifr/sd/res/placeholder_image_small.png create mode 100644 icon-themes/sifr/sd/res/placeholder_image_small_hover.png create mode 100644 icon-themes/sifr/sd/res/placeholder_movie_large.png create mode 100644 icon-themes/sifr/sd/res/placeholder_movie_large_hover.png create mode 100644 icon-themes/sifr/sd/res/placeholder_movie_small.png create mode 100644 icon-themes/sifr/sd/res/placeholder_movie_small_hover.png create mode 100644 icon-themes/sifr/sd/res/placeholder_table_large.png create mode 100644 icon-themes/sifr/sd/res/placeholder_table_large_hover.png create mode 100644 icon-themes/sifr/sd/res/placeholder_table_small.png create mode 100644 icon-themes/sifr/sd/res/placeholder_table_small_hover.png create mode 100644 icon-themes/sifr_dark/cmd/32/bg/bold.png create mode 100644 icon-themes/sifr_dark/cmd/32/bg/italic.png create mode 100644 icon-themes/sifr_dark/cmd/32/bg/strikeout.png create mode 100644 icon-themes/sifr_dark/cmd/32/ca/italic.png create mode 100644 icon-themes/sifr_dark/cmd/32/de/bold.png create mode 100644 icon-themes/sifr_dark/cmd/32/fr/bold.png create mode 100644 icon-themes/sifr_dark/cmd/32/hu/italic.png create mode 100644 icon-themes/sifr_dark/cmd/32/hu/underline.png create mode 100644 icon-themes/sifr_dark/cmd/32/hu/underlinedouble.png create mode 100644 icon-themes/sifr_dark/cmd/32/km/bold.png create mode 100644 icon-themes/sifr_dark/cmd/32/km/italic.png create mode 100644 icon-themes/sifr_dark/cmd/32/km/underline.png create mode 100644 icon-themes/sifr_dark/cmd/32/km/underlinedouble.png create mode 100644 icon-themes/sifr_dark/cmd/32/nl/bold.png create mode 100644 icon-themes/sifr_dark/cmd/32/nl/underline.png create mode 100644 icon-themes/sifr_dark/cmd/32/nl/underlinedouble.png create mode 100644 icon-themes/sifr_dark/cmd/32/pl/underline.png create mode 100644 icon-themes/sifr_dark/cmd/32/pl/underlinedouble.png create mode 100644 icon-themes/sifr_dark/cmd/32/ru/bold.png create mode 100644 icon-themes/sifr_dark/cmd/32/ru/underline.png create mode 100644 icon-themes/sifr_dark/cmd/32/ru/underlinedouble.png create mode 100644 icon-themes/sifr_dark/cmd/32/sl/bold.png create mode 100644 icon-themes/sifr_dark/cmd/32/sl/italic.png create mode 100644 icon-themes/sifr_dark/cmd/32/tr/italic.png create mode 100644 icon-themes/sifr_dark/cmd/bg/lc_bold.png create mode 100644 icon-themes/sifr_dark/cmd/bg/lc_italic.png create mode 100644 icon-themes/sifr_dark/cmd/bg/lc_strikeout.png create mode 100644 icon-themes/sifr_dark/cmd/bg/sc_bold.png create mode 100644 icon-themes/sifr_dark/cmd/bg/sc_italic.png create mode 100644 icon-themes/sifr_dark/cmd/bg/sc_strikeout.png delete mode 100644 icon-themes/sifr_dark/cmd/es/lc_bold.png delete mode 100644 icon-themes/sifr_dark/cmd/es/lc_italic.png delete mode 100644 icon-themes/sifr_dark/cmd/es/lc_numberformatdecimal.png delete mode 100644 icon-themes/sifr_dark/cmd/es/lc_numberformatthousands.png delete mode 100644 icon-themes/sifr_dark/cmd/es/lc_underline.png delete mode 100644 icon-themes/sifr_dark/cmd/es/lc_underlinedouble.png delete mode 100644 icon-themes/sifr_dark/cmd/es/sc_bold.png delete mode 100644 icon-themes/sifr_dark/cmd/es/sc_italic.png delete mode 100644 icon-themes/sifr_dark/cmd/es/sc_numberformatdecimal.png delete mode 100644 icon-themes/sifr_dark/cmd/es/sc_numberformatthousands.png delete mode 100644 icon-themes/sifr_dark/cmd/es/sc_underline.png delete mode 100644 icon-themes/sifr_dark/cmd/es/sc_underlinedouble.png delete mode 100644 icon-themes/sifr_dark/cmd/fr/lc_underline.png delete mode 100644 icon-themes/sifr_dark/cmd/fr/lc_underlinedouble.png delete mode 100644 icon-themes/sifr_dark/cmd/fr/sc_underline.png delete mode 100644 icon-themes/sifr_dark/cmd/fr/sc_underlinedouble.png delete mode 100644 icon-themes/sifr_dark/cmd/it/lc_bold.png delete mode 100644 icon-themes/sifr_dark/cmd/it/lc_italic.png delete mode 100644 icon-themes/sifr_dark/cmd/it/lc_underline.png delete mode 100644 icon-themes/sifr_dark/cmd/it/lc_underlinedouble.png delete mode 100644 icon-themes/sifr_dark/cmd/it/sc_bold.png delete mode 100644 icon-themes/sifr_dark/cmd/it/sc_italic.png delete mode 100644 icon-themes/sifr_dark/cmd/it/sc_underline.png delete mode 100644 icon-themes/sifr_dark/cmd/it/sc_underlinedouble.png delete mode 100644 icon-themes/sifr_dark/cmd/nl/lc_italic.png delete mode 100644 icon-themes/sifr_dark/cmd/nl/sc_italic.png delete mode 100644 icon-themes/sifr_dark/cmd/pl/lc_bold.png delete mode 100644 icon-themes/sifr_dark/cmd/pl/lc_italic.png delete mode 100644 icon-themes/sifr_dark/cmd/pl/sc_bold.png delete mode 100644 icon-themes/sifr_dark/cmd/pl/sc_italic.png delete mode 100644 icon-themes/sifr_dark/cmd/pt-BR/lc_bold.png delete mode 100644 icon-themes/sifr_dark/cmd/pt-BR/lc_underline.png delete mode 100644 icon-themes/sifr_dark/cmd/pt-BR/lc_underlinedouble.png delete mode 100644 icon-themes/sifr_dark/cmd/pt-BR/sc_bold.png delete mode 100644 icon-themes/sifr_dark/cmd/pt-BR/sc_underline.png delete mode 100644 icon-themes/sifr_dark/cmd/pt-BR/sc_underlinedouble.png delete mode 100644 icon-themes/sifr_dark/cmd/pt/lc_bold.png delete mode 100644 icon-themes/sifr_dark/cmd/pt/lc_underline.png delete mode 100644 icon-themes/sifr_dark/cmd/pt/lc_underlinedouble.png delete mode 100644 icon-themes/sifr_dark/cmd/pt/sc_bold.png delete mode 100644 icon-themes/sifr_dark/cmd/pt/sc_underline.png delete mode 100644 icon-themes/sifr_dark/cmd/pt/sc_underlinedouble.png delete mode 100644 icon-themes/sifr_dark/cmd/ru/lc_italic.png delete mode 100644 icon-themes/sifr_dark/cmd/ru/sc_italic.png delete mode 100644 icon-themes/sifr_dark/cmd/sl/lc_underline.png delete mode 100644 icon-themes/sifr_dark/cmd/sl/lc_underlinedouble.png delete mode 100644 icon-themes/sifr_dark/cmd/sl/sc_underline.png delete mode 100644 icon-themes/sifr_dark/cmd/sl/sc_underlinedouble.png delete mode 100644 icon-themes/sifr_dark/cmd/sv/lc_bold.png delete mode 100644 icon-themes/sifr_dark/cmd/sv/lc_italic.png delete mode 100644 icon-themes/sifr_dark/cmd/sv/sc_bold.png delete mode 100644 icon-themes/sifr_dark/cmd/sv/sc_italic.png delete mode 100644 icon-themes/sifr_dark/cmd/tr/lc_bold.png delete mode 100644 icon-themes/sifr_dark/cmd/tr/lc_underline.png delete mode 100644 icon-themes/sifr_dark/cmd/tr/lc_underlinedouble.png delete mode 100644 icon-themes/sifr_dark/cmd/tr/sc_bold.png delete mode 100644 icon-themes/sifr_dark/cmd/tr/sc_underline.png delete mode 100644 icon-themes/sifr_dark/cmd/tr/sc_underlinedouble.png create mode 100644 icon-themes/sifr_dark/sd/res/placeholder_chart_large.png create mode 100644 icon-themes/sifr_dark/sd/res/placeholder_chart_large_hover.png create mode 100644 icon-themes/sifr_dark/sd/res/placeholder_chart_small.png create mode 100644 icon-themes/sifr_dark/sd/res/placeholder_chart_small_hover.png create mode 100644 icon-themes/sifr_dark/sd/res/placeholder_image_large.png create mode 100644 icon-themes/sifr_dark/sd/res/placeholder_image_large_hover.png create mode 100644 icon-themes/sifr_dark/sd/res/placeholder_image_small.png create mode 100644 icon-themes/sifr_dark/sd/res/placeholder_image_small_hover.png create mode 100644 icon-themes/sifr_dark/sd/res/placeholder_movie_large.png create mode 100644 icon-themes/sifr_dark/sd/res/placeholder_movie_large_hover.png create mode 100644 icon-themes/sifr_dark/sd/res/placeholder_movie_small.png create mode 100644 icon-themes/sifr_dark/sd/res/placeholder_movie_small_hover.png create mode 100644 icon-themes/sifr_dark/sd/res/placeholder_table_large.png create mode 100644 icon-themes/sifr_dark/sd/res/placeholder_table_large_hover.png create mode 100644 icon-themes/sifr_dark/sd/res/placeholder_table_small.png create mode 100644 icon-themes/sifr_dark/sd/res/placeholder_table_small_hover.png create mode 100644 icon-themes/sifr_dark_svg/cmd/32/bg/bold.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/bg/italic.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/bg/strikeout.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/ca/italic.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/de/bold.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/fr/bold.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/hu/italic.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/hu/underline.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/hu/underlinedouble.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/km/bold.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/km/italic.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/km/underline.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/km/underlinedouble.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/nl/bold.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/nl/underline.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/nl/underlinedouble.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/pl/underline.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/pl/underlinedouble.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/ru/bold.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/ru/underline.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/ru/underlinedouble.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/sl/bold.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/sl/italic.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/32/tr/italic.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/bg/lc_bold.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/bg/lc_italic.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/bg/lc_strikeout.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/bg/sc_bold.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/bg/sc_italic.svg create mode 100644 icon-themes/sifr_dark_svg/cmd/bg/sc_strikeout.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/es/lc_bold.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/es/lc_italic.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/es/lc_numberformatdecimal.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/es/lc_numberformatthousands.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/es/lc_underline.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/es/lc_underlinedouble.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/es/sc_bold.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/es/sc_italic.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/es/sc_numberformatdecimal.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/es/sc_numberformatthousands.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/es/sc_underline.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/es/sc_underlinedouble.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/fr/lc_underline.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/fr/lc_underlinedouble.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/fr/sc_underline.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/fr/sc_underlinedouble.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/it/lc_bold.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/it/lc_italic.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/it/lc_underline.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/it/lc_underlinedouble.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/it/sc_bold.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/it/sc_italic.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/it/sc_underline.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/it/sc_underlinedouble.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/nl/lc_italic.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/nl/sc_italic.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/pl/lc_bold.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/pl/lc_italic.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/pl/sc_bold.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/pl/sc_italic.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/pt-BR/lc_bold.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/pt-BR/lc_underline.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/pt-BR/lc_underlinedouble.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/pt-BR/sc_bold.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/pt-BR/sc_underline.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/pt-BR/sc_underlinedouble.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/pt/lc_bold.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/pt/lc_underline.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/pt/lc_underlinedouble.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/pt/sc_bold.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/pt/sc_underline.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/pt/sc_underlinedouble.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/ru/lc_italic.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/ru/sc_italic.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/sl/lc_underline.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/sl/lc_underlinedouble.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/sl/sc_underline.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/sl/sc_underlinedouble.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/sv/lc_bold.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/sv/lc_italic.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/sv/sc_bold.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/sv/sc_italic.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/tr/lc_bold.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/tr/lc_underline.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/tr/lc_underlinedouble.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/tr/sc_bold.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/tr/sc_underline.svg delete mode 100644 icon-themes/sifr_dark_svg/cmd/tr/sc_underlinedouble.svg create mode 100644 icon-themes/sifr_dark_svg/sd/res/placeholder_chart_large.svg create mode 100644 icon-themes/sifr_dark_svg/sd/res/placeholder_chart_large_hover.svg create mode 100644 icon-themes/sifr_dark_svg/sd/res/placeholder_chart_small.svg create mode 100644 icon-themes/sifr_dark_svg/sd/res/placeholder_chart_small_hover.svg create mode 100644 icon-themes/sifr_dark_svg/sd/res/placeholder_image_large.svg create mode 100644 icon-themes/sifr_dark_svg/sd/res/placeholder_image_large_hover.svg create mode 100644 icon-themes/sifr_dark_svg/sd/res/placeholder_image_small.svg create mode 100644 icon-themes/sifr_dark_svg/sd/res/placeholder_image_small_hover.svg create mode 100644 icon-themes/sifr_dark_svg/sd/res/placeholder_movie_large.svg create mode 100644 icon-themes/sifr_dark_svg/sd/res/placeholder_movie_large_hover.svg create mode 100644 icon-themes/sifr_dark_svg/sd/res/placeholder_movie_small.svg create mode 100644 icon-themes/sifr_dark_svg/sd/res/placeholder_movie_small_hover.svg create mode 100644 icon-themes/sifr_dark_svg/sd/res/placeholder_table_large.svg create mode 100644 icon-themes/sifr_dark_svg/sd/res/placeholder_table_large_hover.svg create mode 100644 icon-themes/sifr_dark_svg/sd/res/placeholder_table_small.svg create mode 100644 icon-themes/sifr_dark_svg/sd/res/placeholder_table_small_hover.svg create mode 100644 icon-themes/sifr_svg/cmd/32/bg/bold.svg create mode 100644 icon-themes/sifr_svg/cmd/32/bg/italic.svg create mode 100644 icon-themes/sifr_svg/cmd/32/bg/strikeout.svg create mode 100644 icon-themes/sifr_svg/cmd/32/ca/italic.svg create mode 100644 icon-themes/sifr_svg/cmd/32/de/bold.svg create mode 100644 icon-themes/sifr_svg/cmd/32/fr/bold.svg create mode 100644 icon-themes/sifr_svg/cmd/32/hu/italic.svg create mode 100644 icon-themes/sifr_svg/cmd/32/hu/underline.svg create mode 100644 icon-themes/sifr_svg/cmd/32/hu/underlinedouble.svg create mode 100644 icon-themes/sifr_svg/cmd/32/km/bold.svg create mode 100644 icon-themes/sifr_svg/cmd/32/km/italic.svg create mode 100644 icon-themes/sifr_svg/cmd/32/km/underline.svg create mode 100644 icon-themes/sifr_svg/cmd/32/km/underlinedouble.svg create mode 100644 icon-themes/sifr_svg/cmd/32/nl/bold.svg create mode 100644 icon-themes/sifr_svg/cmd/32/nl/underline.svg create mode 100644 icon-themes/sifr_svg/cmd/32/nl/underlinedouble.svg create mode 100644 icon-themes/sifr_svg/cmd/32/pl/underline.svg create mode 100644 icon-themes/sifr_svg/cmd/32/pl/underlinedouble.svg create mode 100644 icon-themes/sifr_svg/cmd/32/ru/bold.svg create mode 100644 icon-themes/sifr_svg/cmd/32/ru/underline.svg create mode 100644 icon-themes/sifr_svg/cmd/32/ru/underlinedouble.svg create mode 100644 icon-themes/sifr_svg/cmd/32/sl/bold.svg create mode 100644 icon-themes/sifr_svg/cmd/32/sl/italic.svg create mode 100644 icon-themes/sifr_svg/cmd/32/tr/italic.svg create mode 100644 icon-themes/sifr_svg/cmd/bg/lc_bold.svg create mode 100644 icon-themes/sifr_svg/cmd/bg/lc_italic.svg create mode 100644 icon-themes/sifr_svg/cmd/bg/lc_strikeout.svg create mode 100644 icon-themes/sifr_svg/cmd/bg/sc_bold.svg create mode 100644 icon-themes/sifr_svg/cmd/bg/sc_italic.svg create mode 100644 icon-themes/sifr_svg/cmd/bg/sc_strikeout.svg delete mode 100644 icon-themes/sifr_svg/cmd/es/lc_bold.svg delete mode 100644 icon-themes/sifr_svg/cmd/es/lc_italic.svg delete mode 100644 icon-themes/sifr_svg/cmd/es/lc_numberformatdecimal.svg delete mode 100644 icon-themes/sifr_svg/cmd/es/lc_numberformatthousands.svg delete mode 100644 icon-themes/sifr_svg/cmd/es/lc_underline.svg delete mode 100644 icon-themes/sifr_svg/cmd/es/lc_underlinedouble.svg delete mode 100644 icon-themes/sifr_svg/cmd/es/sc_bold.svg delete mode 100644 icon-themes/sifr_svg/cmd/es/sc_italic.svg delete mode 100644 icon-themes/sifr_svg/cmd/es/sc_numberformatdecimal.svg delete mode 100644 icon-themes/sifr_svg/cmd/es/sc_numberformatthousands.svg delete mode 100644 icon-themes/sifr_svg/cmd/es/sc_underline.svg delete mode 100644 icon-themes/sifr_svg/cmd/es/sc_underlinedouble.svg delete mode 100644 icon-themes/sifr_svg/cmd/fr/lc_underline.svg delete mode 100644 icon-themes/sifr_svg/cmd/fr/lc_underlinedouble.svg delete mode 100644 icon-themes/sifr_svg/cmd/fr/sc_underline.svg delete mode 100644 icon-themes/sifr_svg/cmd/fr/sc_underlinedouble.svg delete mode 100644 icon-themes/sifr_svg/cmd/it/lc_bold.svg delete mode 100644 icon-themes/sifr_svg/cmd/it/lc_italic.svg delete mode 100644 icon-themes/sifr_svg/cmd/it/lc_underline.svg delete mode 100644 icon-themes/sifr_svg/cmd/it/lc_underlinedouble.svg delete mode 100644 icon-themes/sifr_svg/cmd/it/sc_bold.svg delete mode 100644 icon-themes/sifr_svg/cmd/it/sc_italic.svg delete mode 100644 icon-themes/sifr_svg/cmd/it/sc_underline.svg delete mode 100644 icon-themes/sifr_svg/cmd/it/sc_underlinedouble.svg delete mode 100644 icon-themes/sifr_svg/cmd/nl/lc_italic.svg delete mode 100644 icon-themes/sifr_svg/cmd/nl/sc_italic.svg delete mode 100644 icon-themes/sifr_svg/cmd/pl/lc_bold.svg delete mode 100644 icon-themes/sifr_svg/cmd/pl/lc_italic.svg delete mode 100644 icon-themes/sifr_svg/cmd/pl/sc_bold.svg delete mode 100644 icon-themes/sifr_svg/cmd/pl/sc_italic.svg delete mode 100644 icon-themes/sifr_svg/cmd/pt-BR/lc_bold.svg delete mode 100644 icon-themes/sifr_svg/cmd/pt-BR/lc_underline.svg delete mode 100644 icon-themes/sifr_svg/cmd/pt-BR/lc_underlinedouble.svg delete mode 100644 icon-themes/sifr_svg/cmd/pt-BR/sc_bold.svg delete mode 100644 icon-themes/sifr_svg/cmd/pt-BR/sc_underline.svg delete mode 100644 icon-themes/sifr_svg/cmd/pt-BR/sc_underlinedouble.svg delete mode 100644 icon-themes/sifr_svg/cmd/pt/lc_bold.svg delete mode 100644 icon-themes/sifr_svg/cmd/pt/lc_underline.svg delete mode 100644 icon-themes/sifr_svg/cmd/pt/lc_underlinedouble.svg delete mode 100644 icon-themes/sifr_svg/cmd/pt/sc_bold.svg delete mode 100644 icon-themes/sifr_svg/cmd/pt/sc_underline.svg delete mode 100644 icon-themes/sifr_svg/cmd/pt/sc_underlinedouble.svg delete mode 100644 icon-themes/sifr_svg/cmd/ru/lc_italic.svg delete mode 100644 icon-themes/sifr_svg/cmd/ru/sc_italic.svg delete mode 100644 icon-themes/sifr_svg/cmd/sl/lc_underline.svg delete mode 100644 icon-themes/sifr_svg/cmd/sl/lc_underlinedouble.svg delete mode 100644 icon-themes/sifr_svg/cmd/sl/sc_underline.svg delete mode 100644 icon-themes/sifr_svg/cmd/sl/sc_underlinedouble.svg delete mode 100644 icon-themes/sifr_svg/cmd/sv/lc_bold.svg delete mode 100644 icon-themes/sifr_svg/cmd/sv/lc_italic.svg delete mode 100644 icon-themes/sifr_svg/cmd/sv/sc_bold.svg delete mode 100644 icon-themes/sifr_svg/cmd/sv/sc_italic.svg delete mode 100644 icon-themes/sifr_svg/cmd/tr/lc_bold.svg delete mode 100644 icon-themes/sifr_svg/cmd/tr/lc_underline.svg delete mode 100644 icon-themes/sifr_svg/cmd/tr/lc_underlinedouble.svg delete mode 100644 icon-themes/sifr_svg/cmd/tr/sc_bold.svg delete mode 100644 icon-themes/sifr_svg/cmd/tr/sc_underline.svg delete mode 100644 icon-themes/sifr_svg/cmd/tr/sc_underlinedouble.svg create mode 100644 icon-themes/sifr_svg/sd/res/placeholder_chart_large.svg create mode 100644 icon-themes/sifr_svg/sd/res/placeholder_chart_large_hover.svg create mode 100644 icon-themes/sifr_svg/sd/res/placeholder_chart_small.svg create mode 100644 icon-themes/sifr_svg/sd/res/placeholder_chart_small_hover.svg create mode 100644 icon-themes/sifr_svg/sd/res/placeholder_image_large.svg create mode 100644 icon-themes/sifr_svg/sd/res/placeholder_image_large_hover.svg create mode 100644 icon-themes/sifr_svg/sd/res/placeholder_image_small.svg create mode 100644 icon-themes/sifr_svg/sd/res/placeholder_image_small_hover.svg create mode 100644 icon-themes/sifr_svg/sd/res/placeholder_movie_large.svg create mode 100644 icon-themes/sifr_svg/sd/res/placeholder_movie_large_hover.svg create mode 100644 icon-themes/sifr_svg/sd/res/placeholder_movie_small.svg create mode 100644 icon-themes/sifr_svg/sd/res/placeholder_movie_small_hover.svg create mode 100644 icon-themes/sifr_svg/sd/res/placeholder_table_large.svg create mode 100644 icon-themes/sifr_svg/sd/res/placeholder_table_large_hover.svg create mode 100644 icon-themes/sifr_svg/sd/res/placeholder_table_small.svg create mode 100644 icon-themes/sifr_svg/sd/res/placeholder_table_small_hover.svg diff --git a/icon-themes/sifr/cmd/32/bg/bold.png b/icon-themes/sifr/cmd/32/bg/bold.png new file mode 100644 index 000000000000..01252a001b34 Binary files /dev/null and b/icon-themes/sifr/cmd/32/bg/bold.png differ diff --git a/icon-themes/sifr/cmd/32/bg/italic.png b/icon-themes/sifr/cmd/32/bg/italic.png new file mode 100644 index 000000000000..d8f84813a7b4 Binary files /dev/null and b/icon-themes/sifr/cmd/32/bg/italic.png differ diff --git a/icon-themes/sifr/cmd/32/bg/strikeout.png b/icon-themes/sifr/cmd/32/bg/strikeout.png new file mode 100644 index 000000000000..f57a0f916b79 Binary files /dev/null and b/icon-themes/sifr/cmd/32/bg/strikeout.png differ diff --git a/icon-themes/sifr/cmd/32/ca/bold.png b/icon-themes/sifr/cmd/32/ca/bold.png index d628b41340a6..902fbb31d5ac 100644 Binary files a/icon-themes/sifr/cmd/32/ca/bold.png and b/icon-themes/sifr/cmd/32/ca/bold.png differ diff --git a/icon-themes/sifr/cmd/32/ca/italic.png b/icon-themes/sifr/cmd/32/ca/italic.png new file mode 100644 index 000000000000..060ab8af29ac Binary files /dev/null and b/icon-themes/sifr/cmd/32/ca/italic.png differ diff --git a/icon-themes/sifr/cmd/32/de/bold.png b/icon-themes/sifr/cmd/32/de/bold.png new file mode 100644 index 000000000000..82c768baf15f Binary files /dev/null and b/icon-themes/sifr/cmd/32/de/bold.png differ diff --git a/icon-themes/sifr/cmd/32/fr/bold.png b/icon-themes/sifr/cmd/32/fr/bold.png new file mode 100644 index 000000000000..4bd55eb69fe0 Binary files /dev/null and b/icon-themes/sifr/cmd/32/fr/bold.png differ diff --git a/icon-themes/sifr/cmd/32/hu/italic.png b/icon-themes/sifr/cmd/32/hu/italic.png new file mode 100644 index 000000000000..705155e0eed9 Binary files /dev/null and b/icon-themes/sifr/cmd/32/hu/italic.png differ diff --git a/icon-themes/sifr/cmd/32/hu/underline.png b/icon-themes/sifr/cmd/32/hu/underline.png new file mode 100644 index 000000000000..e55d729bbbd2 Binary files /dev/null and b/icon-themes/sifr/cmd/32/hu/underline.png differ diff --git a/icon-themes/sifr/cmd/32/hu/underlinedouble.png b/icon-themes/sifr/cmd/32/hu/underlinedouble.png new file mode 100644 index 000000000000..712d437f895a Binary files /dev/null and b/icon-themes/sifr/cmd/32/hu/underlinedouble.png differ diff --git a/icon-themes/sifr/cmd/32/italic.png b/icon-themes/sifr/cmd/32/italic.png index d9d4dcc84503..e9e35fed5804 100644 Binary files a/icon-themes/sifr/cmd/32/italic.png and b/icon-themes/sifr/cmd/32/italic.png differ diff --git a/icon-themes/sifr/cmd/32/km/bold.png b/icon-themes/sifr/cmd/32/km/bold.png new file mode 100644 index 000000000000..8b9c6f1d92dd Binary files /dev/null and b/icon-themes/sifr/cmd/32/km/bold.png differ diff --git a/icon-themes/sifr/cmd/32/km/italic.png b/icon-themes/sifr/cmd/32/km/italic.png new file mode 100644 index 000000000000..c0e68e8659d8 Binary files /dev/null and b/icon-themes/sifr/cmd/32/km/italic.png differ diff --git a/icon-themes/sifr/cmd/32/km/underline.png b/icon-themes/sifr/cmd/32/km/underline.png new file mode 100644 index 000000000000..2bbf301d6129 Binary files /dev/null and b/icon-themes/sifr/cmd/32/km/underline.png differ diff --git a/icon-themes/sifr/cmd/32/km/underlinedouble.png b/icon-themes/sifr/cmd/32/km/underlinedouble.png new file mode 100644 index 000000000000..8e16bef98dc2 Binary files /dev/null and b/icon-themes/sifr/cmd/32/km/underlinedouble.png differ diff --git a/icon-themes/sifr/cmd/32/nl/bold.png b/icon-themes/sifr/cmd/32/nl/bold.png new file mode 100644 index 000000000000..0ffcc7e9a217 Binary files /dev/null and b/icon-themes/sifr/cmd/32/nl/bold.png differ diff --git a/icon-themes/sifr/cmd/32/nl/underline.png b/icon-themes/sifr/cmd/32/nl/underline.png new file mode 100644 index 000000000000..a163de6c2b9b Binary files /dev/null and b/icon-themes/sifr/cmd/32/nl/underline.png differ diff --git a/icon-themes/sifr/cmd/32/nl/underlinedouble.png b/icon-themes/sifr/cmd/32/nl/underlinedouble.png new file mode 100644 index 000000000000..fcfd003a5256 Binary files /dev/null and b/icon-themes/sifr/cmd/32/nl/underlinedouble.png differ diff --git a/icon-themes/sifr/cmd/32/pl/underline.png b/icon-themes/sifr/cmd/32/pl/underline.png new file mode 100644 index 000000000000..bbcaab9f664a Binary files /dev/null and b/icon-themes/sifr/cmd/32/pl/underline.png differ diff --git a/icon-themes/sifr/cmd/32/pl/underlinedouble.png b/icon-themes/sifr/cmd/32/pl/underlinedouble.png new file mode 100644 index 000000000000..810f22b6043e Binary files /dev/null and b/icon-themes/sifr/cmd/32/pl/underlinedouble.png differ diff --git a/icon-themes/sifr/cmd/32/ru/bold.png b/icon-themes/sifr/cmd/32/ru/bold.png new file mode 100644 index 000000000000..40eae784dbb3 Binary files /dev/null and b/icon-themes/sifr/cmd/32/ru/bold.png differ diff --git a/icon-themes/sifr/cmd/32/ru/underline.png b/icon-themes/sifr/cmd/32/ru/underline.png new file mode 100644 index 000000000000..22f424e076db Binary files /dev/null and b/icon-themes/sifr/cmd/32/ru/underline.png differ diff --git a/icon-themes/sifr/cmd/32/ru/underlinedouble.png b/icon-themes/sifr/cmd/32/ru/underlinedouble.png new file mode 100644 index 000000000000..0f9181056239 Binary files /dev/null and b/icon-themes/sifr/cmd/32/ru/underlinedouble.png differ diff --git a/icon-themes/sifr/cmd/32/sl/bold.png b/icon-themes/sifr/cmd/32/sl/bold.png new file mode 100644 index 000000000000..7c078b0ce3d8 Binary files /dev/null and b/icon-themes/sifr/cmd/32/sl/bold.png differ diff --git a/icon-themes/sifr/cmd/32/sl/italic.png b/icon-themes/sifr/cmd/32/sl/italic.png new file mode 100644 index 000000000000..beb194c9104a Binary files /dev/null and b/icon-themes/sifr/cmd/32/sl/italic.png differ diff --git a/icon-themes/sifr/cmd/32/tr/italic.png b/icon-themes/sifr/cmd/32/tr/italic.png new file mode 100644 index 000000000000..316b936ba4e7 Binary files /dev/null and b/icon-themes/sifr/cmd/32/tr/italic.png differ diff --git a/icon-themes/sifr/cmd/bg/lc_bold.png b/icon-themes/sifr/cmd/bg/lc_bold.png new file mode 100644 index 000000000000..67da1f717ef8 Binary files /dev/null and b/icon-themes/sifr/cmd/bg/lc_bold.png differ diff --git a/icon-themes/sifr/cmd/bg/lc_italic.png b/icon-themes/sifr/cmd/bg/lc_italic.png new file mode 100644 index 000000000000..ddea4eaf73e6 Binary files /dev/null and b/icon-themes/sifr/cmd/bg/lc_italic.png differ diff --git a/icon-themes/sifr/cmd/bg/lc_strikeout.png b/icon-themes/sifr/cmd/bg/lc_strikeout.png new file mode 100644 index 000000000000..e6c55e3e4afb Binary files /dev/null and b/icon-themes/sifr/cmd/bg/lc_strikeout.png differ diff --git a/icon-themes/sifr/cmd/bg/sc_bold.png b/icon-themes/sifr/cmd/bg/sc_bold.png new file mode 100644 index 000000000000..36a8d652166d Binary files /dev/null and b/icon-themes/sifr/cmd/bg/sc_bold.png differ diff --git a/icon-themes/sifr/cmd/bg/sc_italic.png b/icon-themes/sifr/cmd/bg/sc_italic.png new file mode 100644 index 000000000000..9fc11b00269e Binary files /dev/null and b/icon-themes/sifr/cmd/bg/sc_italic.png differ diff --git a/icon-themes/sifr/cmd/bg/sc_strikeout.png b/icon-themes/sifr/cmd/bg/sc_strikeout.png new file mode 100644 index 000000000000..41bb3ad5649f Binary files /dev/null and b/icon-themes/sifr/cmd/bg/sc_strikeout.png differ diff --git a/icon-themes/sifr/cmd/es/lc_bold.png b/icon-themes/sifr/cmd/es/lc_bold.png deleted file mode 100644 index 9527679c3d4a..000000000000 Binary files a/icon-themes/sifr/cmd/es/lc_bold.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/es/lc_italic.png b/icon-themes/sifr/cmd/es/lc_italic.png deleted file mode 100644 index 793113d6cd7b..000000000000 Binary files a/icon-themes/sifr/cmd/es/lc_italic.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/es/lc_numberformatdecimal.png b/icon-themes/sifr/cmd/es/lc_numberformatdecimal.png deleted file mode 100644 index dcdfc3c48866..000000000000 Binary files a/icon-themes/sifr/cmd/es/lc_numberformatdecimal.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/es/lc_numberformatthousands.png b/icon-themes/sifr/cmd/es/lc_numberformatthousands.png deleted file mode 100644 index 2c8049818464..000000000000 Binary files a/icon-themes/sifr/cmd/es/lc_numberformatthousands.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/es/lc_underline.png b/icon-themes/sifr/cmd/es/lc_underline.png deleted file mode 100644 index 6e7f9ba9b5aa..000000000000 Binary files a/icon-themes/sifr/cmd/es/lc_underline.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/es/lc_underlinedouble.png b/icon-themes/sifr/cmd/es/lc_underlinedouble.png deleted file mode 100644 index c0dce7709efb..000000000000 Binary files a/icon-themes/sifr/cmd/es/lc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/es/sc_bold.png b/icon-themes/sifr/cmd/es/sc_bold.png deleted file mode 100644 index 716fa891c1fb..000000000000 Binary files a/icon-themes/sifr/cmd/es/sc_bold.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/es/sc_italic.png b/icon-themes/sifr/cmd/es/sc_italic.png deleted file mode 100644 index 90fa362b5352..000000000000 Binary files a/icon-themes/sifr/cmd/es/sc_italic.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/es/sc_numberformatdecimal.png b/icon-themes/sifr/cmd/es/sc_numberformatdecimal.png deleted file mode 100644 index c6151d0c1564..000000000000 Binary files a/icon-themes/sifr/cmd/es/sc_numberformatdecimal.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/es/sc_numberformatthousands.png b/icon-themes/sifr/cmd/es/sc_numberformatthousands.png deleted file mode 100644 index b9f61a288b26..000000000000 Binary files a/icon-themes/sifr/cmd/es/sc_numberformatthousands.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/es/sc_underline.png b/icon-themes/sifr/cmd/es/sc_underline.png deleted file mode 100644 index 0fc793428bc7..000000000000 Binary files a/icon-themes/sifr/cmd/es/sc_underline.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/es/sc_underlinedouble.png b/icon-themes/sifr/cmd/es/sc_underlinedouble.png deleted file mode 100644 index b93e22f022d7..000000000000 Binary files a/icon-themes/sifr/cmd/es/sc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/fr/lc_underline.png b/icon-themes/sifr/cmd/fr/lc_underline.png deleted file mode 100644 index 6e7f9ba9b5aa..000000000000 Binary files a/icon-themes/sifr/cmd/fr/lc_underline.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/fr/lc_underlinedouble.png b/icon-themes/sifr/cmd/fr/lc_underlinedouble.png deleted file mode 100644 index c0dce7709efb..000000000000 Binary files a/icon-themes/sifr/cmd/fr/lc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/fr/sc_underline.png b/icon-themes/sifr/cmd/fr/sc_underline.png deleted file mode 100644 index 0fc793428bc7..000000000000 Binary files a/icon-themes/sifr/cmd/fr/sc_underline.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/fr/sc_underlinedouble.png b/icon-themes/sifr/cmd/fr/sc_underlinedouble.png deleted file mode 100644 index b93e22f022d7..000000000000 Binary files a/icon-themes/sifr/cmd/fr/sc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/hu/lc_italic.png b/icon-themes/sifr/cmd/hu/lc_italic.png index 1b9f55bfa5b9..bfbd83bcef04 100644 Binary files a/icon-themes/sifr/cmd/hu/lc_italic.png and b/icon-themes/sifr/cmd/hu/lc_italic.png differ diff --git a/icon-themes/sifr/cmd/hu/sc_italic.png b/icon-themes/sifr/cmd/hu/sc_italic.png index 409827f0c7ef..751594179a57 100644 Binary files a/icon-themes/sifr/cmd/hu/sc_italic.png and b/icon-themes/sifr/cmd/hu/sc_italic.png differ diff --git a/icon-themes/sifr/cmd/it/lc_bold.png b/icon-themes/sifr/cmd/it/lc_bold.png deleted file mode 100644 index e4e73f512624..000000000000 Binary files a/icon-themes/sifr/cmd/it/lc_bold.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/it/lc_italic.png b/icon-themes/sifr/cmd/it/lc_italic.png deleted file mode 100644 index 793113d6cd7b..000000000000 Binary files a/icon-themes/sifr/cmd/it/lc_italic.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/it/lc_underline.png b/icon-themes/sifr/cmd/it/lc_underline.png deleted file mode 100644 index 6e7f9ba9b5aa..000000000000 Binary files a/icon-themes/sifr/cmd/it/lc_underline.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/it/lc_underlinedouble.png b/icon-themes/sifr/cmd/it/lc_underlinedouble.png deleted file mode 100644 index c0dce7709efb..000000000000 Binary files a/icon-themes/sifr/cmd/it/lc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/it/sc_bold.png b/icon-themes/sifr/cmd/it/sc_bold.png deleted file mode 100644 index f9df59b99a72..000000000000 Binary files a/icon-themes/sifr/cmd/it/sc_bold.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/it/sc_italic.png b/icon-themes/sifr/cmd/it/sc_italic.png deleted file mode 100644 index 90fa362b5352..000000000000 Binary files a/icon-themes/sifr/cmd/it/sc_italic.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/it/sc_underline.png b/icon-themes/sifr/cmd/it/sc_underline.png deleted file mode 100644 index 0fc793428bc7..000000000000 Binary files a/icon-themes/sifr/cmd/it/sc_underline.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/it/sc_underlinedouble.png b/icon-themes/sifr/cmd/it/sc_underlinedouble.png deleted file mode 100644 index b93e22f022d7..000000000000 Binary files a/icon-themes/sifr/cmd/it/sc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/nl/lc_italic.png b/icon-themes/sifr/cmd/nl/lc_italic.png deleted file mode 100644 index 793113d6cd7b..000000000000 Binary files a/icon-themes/sifr/cmd/nl/lc_italic.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/nl/sc_italic.png b/icon-themes/sifr/cmd/nl/sc_italic.png deleted file mode 100644 index 90fa362b5352..000000000000 Binary files a/icon-themes/sifr/cmd/nl/sc_italic.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/pl/lc_bold.png b/icon-themes/sifr/cmd/pl/lc_bold.png deleted file mode 100644 index e4e73f512624..000000000000 Binary files a/icon-themes/sifr/cmd/pl/lc_bold.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/pl/lc_italic.png b/icon-themes/sifr/cmd/pl/lc_italic.png deleted file mode 100644 index e3febd456ba4..000000000000 Binary files a/icon-themes/sifr/cmd/pl/lc_italic.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/pl/lc_underline.png b/icon-themes/sifr/cmd/pl/lc_underline.png index eb6100f4aa21..1fb255fcd1ef 100644 Binary files a/icon-themes/sifr/cmd/pl/lc_underline.png and b/icon-themes/sifr/cmd/pl/lc_underline.png differ diff --git a/icon-themes/sifr/cmd/pl/lc_underlinedouble.png b/icon-themes/sifr/cmd/pl/lc_underlinedouble.png index 1fb255fcd1ef..eb6100f4aa21 100644 Binary files a/icon-themes/sifr/cmd/pl/lc_underlinedouble.png and b/icon-themes/sifr/cmd/pl/lc_underlinedouble.png differ diff --git a/icon-themes/sifr/cmd/pl/sc_bold.png b/icon-themes/sifr/cmd/pl/sc_bold.png deleted file mode 100644 index f9df59b99a72..000000000000 Binary files a/icon-themes/sifr/cmd/pl/sc_bold.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/pl/sc_italic.png b/icon-themes/sifr/cmd/pl/sc_italic.png deleted file mode 100644 index 6cb27170c404..000000000000 Binary files a/icon-themes/sifr/cmd/pl/sc_italic.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/pt-BR/lc_bold.png b/icon-themes/sifr/cmd/pt-BR/lc_bold.png deleted file mode 100644 index 9527679c3d4a..000000000000 Binary files a/icon-themes/sifr/cmd/pt-BR/lc_bold.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/pt-BR/lc_underline.png b/icon-themes/sifr/cmd/pt-BR/lc_underline.png deleted file mode 100644 index 6e7f9ba9b5aa..000000000000 Binary files a/icon-themes/sifr/cmd/pt-BR/lc_underline.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/pt-BR/lc_underlinedouble.png b/icon-themes/sifr/cmd/pt-BR/lc_underlinedouble.png deleted file mode 100644 index c0dce7709efb..000000000000 Binary files a/icon-themes/sifr/cmd/pt-BR/lc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/pt-BR/sc_bold.png b/icon-themes/sifr/cmd/pt-BR/sc_bold.png deleted file mode 100644 index 716fa891c1fb..000000000000 Binary files a/icon-themes/sifr/cmd/pt-BR/sc_bold.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/pt-BR/sc_underline.png b/icon-themes/sifr/cmd/pt-BR/sc_underline.png deleted file mode 100644 index 0fc793428bc7..000000000000 Binary files a/icon-themes/sifr/cmd/pt-BR/sc_underline.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/pt-BR/sc_underlinedouble.png b/icon-themes/sifr/cmd/pt-BR/sc_underlinedouble.png deleted file mode 100644 index b93e22f022d7..000000000000 Binary files a/icon-themes/sifr/cmd/pt-BR/sc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/pt/lc_bold.png b/icon-themes/sifr/cmd/pt/lc_bold.png deleted file mode 100644 index 9527679c3d4a..000000000000 Binary files a/icon-themes/sifr/cmd/pt/lc_bold.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/pt/lc_underline.png b/icon-themes/sifr/cmd/pt/lc_underline.png deleted file mode 100644 index 6e7f9ba9b5aa..000000000000 Binary files a/icon-themes/sifr/cmd/pt/lc_underline.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/pt/lc_underlinedouble.png b/icon-themes/sifr/cmd/pt/lc_underlinedouble.png deleted file mode 100644 index c0dce7709efb..000000000000 Binary files a/icon-themes/sifr/cmd/pt/lc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/pt/sc_bold.png b/icon-themes/sifr/cmd/pt/sc_bold.png deleted file mode 100644 index 716fa891c1fb..000000000000 Binary files a/icon-themes/sifr/cmd/pt/sc_bold.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/pt/sc_underline.png b/icon-themes/sifr/cmd/pt/sc_underline.png deleted file mode 100644 index 0fc793428bc7..000000000000 Binary files a/icon-themes/sifr/cmd/pt/sc_underline.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/pt/sc_underlinedouble.png b/icon-themes/sifr/cmd/pt/sc_underlinedouble.png deleted file mode 100644 index b93e22f022d7..000000000000 Binary files a/icon-themes/sifr/cmd/pt/sc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/ru/lc_italic.png b/icon-themes/sifr/cmd/ru/lc_italic.png deleted file mode 100644 index e3febd456ba4..000000000000 Binary files a/icon-themes/sifr/cmd/ru/lc_italic.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/ru/sc_italic.png b/icon-themes/sifr/cmd/ru/sc_italic.png deleted file mode 100644 index 6cb27170c404..000000000000 Binary files a/icon-themes/sifr/cmd/ru/sc_italic.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/sl/lc_underline.png b/icon-themes/sifr/cmd/sl/lc_underline.png deleted file mode 100644 index eb6100f4aa21..000000000000 Binary files a/icon-themes/sifr/cmd/sl/lc_underline.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/sl/lc_underlinedouble.png b/icon-themes/sifr/cmd/sl/lc_underlinedouble.png deleted file mode 100644 index 1fb255fcd1ef..000000000000 Binary files a/icon-themes/sifr/cmd/sl/lc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/sl/sc_underline.png b/icon-themes/sifr/cmd/sl/sc_underline.png deleted file mode 100644 index f46071c6e51e..000000000000 Binary files a/icon-themes/sifr/cmd/sl/sc_underline.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/sl/sc_underlinedouble.png b/icon-themes/sifr/cmd/sl/sc_underlinedouble.png deleted file mode 100644 index 36308544eaab..000000000000 Binary files a/icon-themes/sifr/cmd/sl/sc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/sv/lc_bold.png b/icon-themes/sifr/cmd/sv/lc_bold.png deleted file mode 100644 index dc5108a159db..000000000000 Binary files a/icon-themes/sifr/cmd/sv/lc_bold.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/sv/lc_italic.png b/icon-themes/sifr/cmd/sv/lc_italic.png deleted file mode 100644 index e3febd456ba4..000000000000 Binary files a/icon-themes/sifr/cmd/sv/lc_italic.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/sv/sc_bold.png b/icon-themes/sifr/cmd/sv/sc_bold.png deleted file mode 100644 index b6d13d19f209..000000000000 Binary files a/icon-themes/sifr/cmd/sv/sc_bold.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/sv/sc_italic.png b/icon-themes/sifr/cmd/sv/sc_italic.png deleted file mode 100644 index 6cb27170c404..000000000000 Binary files a/icon-themes/sifr/cmd/sv/sc_italic.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/tr/lc_bold.png b/icon-themes/sifr/cmd/tr/lc_bold.png deleted file mode 100644 index bd3ce269cfda..000000000000 Binary files a/icon-themes/sifr/cmd/tr/lc_bold.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/tr/lc_underline.png b/icon-themes/sifr/cmd/tr/lc_underline.png deleted file mode 100644 index ccb58a484549..000000000000 Binary files a/icon-themes/sifr/cmd/tr/lc_underline.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/tr/lc_underlinedouble.png b/icon-themes/sifr/cmd/tr/lc_underlinedouble.png deleted file mode 100644 index 52971ad7de9b..000000000000 Binary files a/icon-themes/sifr/cmd/tr/lc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/tr/sc_bold.png b/icon-themes/sifr/cmd/tr/sc_bold.png deleted file mode 100644 index 85fc7de21dab..000000000000 Binary files a/icon-themes/sifr/cmd/tr/sc_bold.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/tr/sc_underline.png b/icon-themes/sifr/cmd/tr/sc_underline.png deleted file mode 100644 index 54ab46e86953..000000000000 Binary files a/icon-themes/sifr/cmd/tr/sc_underline.png and /dev/null differ diff --git a/icon-themes/sifr/cmd/tr/sc_underlinedouble.png b/icon-themes/sifr/cmd/tr/sc_underlinedouble.png deleted file mode 100644 index a405f717725f..000000000000 Binary files a/icon-themes/sifr/cmd/tr/sc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr/links.txt b/icon-themes/sifr/links.txt index 6ee87c8d8f2d..43579901a8e6 100644 --- a/icon-themes/sifr/links.txt +++ b/icon-themes/sifr/links.txt @@ -582,11 +582,17 @@ cmd/fr/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png cmd/fr/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png cmd/fr/lc_numberformatthousands.png cmd/de/lc_numberformatthousands.png cmd/fr/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png +cmd/fr/lc_underline.png cmd/ca/lc_underline.png +cmd/fr/lc_underlinedouble.png cmd/ca/lc_underlinedouble.png +cmd/fr/lc_underlinesimple.png cmd/ca/lc_underline.png cmd/fr/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png cmd/fr/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png cmd/fr/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png cmd/fr/sc_numberformatthousands.png cmd/de/sc_numberformatthousands.png cmd/fr/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png +cmd/fr/sc_underline.png cmd/ca/sc_underline.png +cmd/fr/sc_underlinedouble.png cmd/ca/sc_underlinedouble.png +cmd/fr/sc_underlinesimple.png cmd/ca/sc_underline.png cmd/he/lc_alphaliststyle.png cmd/ar/lc_alphaliststyle.png cmd/he/lc_alphalowliststyle.png cmd/ar/lc_alphalowliststyle.png cmd/he/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png @@ -629,8 +635,66 @@ cmd/id/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png cmd/id/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png cmd/id/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png cmd/id/sc_numberformatthousands.png cmd/de/sc_numberformatthousands.png +cmd/it/lc_bold.png cmd/fr/lc_bold.png +cmd/it/lc_italic.png cmd/ca/lc_italic.png +cmd/it/lc_underline.png cmd/ca/lc_underline.png +cmd/it/lc_underlinedouble.png cmd/ca/lc_underlinedouble.png +cmd/it/lc_underlinesimple.png cmd/ca/lc_underline.png +cmd/it/sc_bold.png cmd/fr/sc_bold.png +cmd/it/sc_italic.png cmd/ca/sc_italic.png +cmd/it/sc_underline.png cmd/ca/sc_underline.png +cmd/it/sc_underlinedouble.png cmd/ca/sc_underlinedouble.png +cmd/it/sc_underlinesimple.png cmd/ca/sc_underline.png cmd/lc_underlinesimple.png cmd/lc_underline.png +cmd/nl/lc_italic.png cmd/ca/lc_italic.png +cmd/nl/lc_underlinesimple.png cmd/nl/lc_underline.png +cmd/nl/sc_italic.png cmd/ca/sc_italic.png +cmd/nl/sc_underlinesimple.png cmd/nl/sc_underline.png +cmd/pl/lc_bold.png cmd/fr/lc_bold.png +cmd/pl/lc_italic.png cmd/de/lc_italic.png +cmd/pl/lc_underlinesimple.png cmd/pl/lc_underline.png +cmd/pl/sc_bold.png cmd/fr/sc_bold.png +cmd/pl/sc_italic.png cmd/de/sc_italic.png +cmd/pl/sc_underlinesimple.png cmd/pl/sc_underline.png +cmd/pt-BR/lc_bold.png cmd/ca/lc_bold.png +cmd/pt-BR/lc_underline.png cmd/ca/lc_underline.png +cmd/pt-BR/lc_underlinedouble.png cmd/ca/lc_underlinedouble.png +cmd/pt-BR/lc_underlinesimple.png cmd/ca/lc_underline.png +cmd/pt-BR/sc_bold.png cmd/ca/sc_bold.png +cmd/pt-BR/sc_underline.png cmd/ca/sc_underline.png +cmd/pt-BR/sc_underlinedouble.png cmd/ca/sc_underlinedouble.png +cmd/pt-BR/sc_underlinesimple.png cmd/ca/sc_underline.png +cmd/pt/lc_bold.png cmd/ca/lc_bold.png +cmd/pt/lc_underline.png cmd/ca/lc_underline.png +cmd/pt/lc_underlinedouble.png cmd/ca/lc_underlinedouble.png +cmd/pt/lc_underlinesimple.png cmd/ca/lc_underline.png +cmd/pt/sc_bold.png cmd/ca/sc_bold.png +cmd/pt/sc_underline.png cmd/ca/sc_underline.png +cmd/pt/sc_underlinedouble.png cmd/ca/sc_underlinedouble.png +cmd/pt/sc_underlinesimple.png cmd/ca/sc_underline.png +cmd/ru/lc_italic.png cmd/de/lc_italic.png +cmd/ru/lc_underlinesimple.png cmd/ru/lc_underline.png +cmd/ru/sc_italic.png cmd/de/sc_italic.png +cmd/ru/sc_underlinesimple.png cmd/ru/sc_underline.png cmd/sc_underlinesimple.png cmd/sc_underline.png +cmd/sl/lc_underline.png cmd/pl/lc_underline.png +cmd/sl/lc_underlinedouble.png cmd/pl/lc_underlinedouble.png +cmd/sl/lc_underlinesimple.png cmd/pl/lc_underline.png +cmd/sl/sc_underline.png cmd/pl/sc_underline.png +cmd/sl/sc_underlinedouble.png cmd/pl/sc_underlinedouble.png +cmd/sl/sc_underlinesimple.png cmd/pl/sc_underline.png +cmd/sv/lc_bold.png cmd/de/lc_bold.png +cmd/sv/lc_italic.png cmd/de/lc_italic.png +cmd/sv/sc_bold.png cmd/de/sc_bold.png +cmd/sv/sc_italic.png cmd/de/sc_italic.png +cmd/tr/lc_bold.png cmd/sl/lc_bold.png +cmd/tr/lc_underline.png cmd/hu/lc_underline.png +cmd/tr/lc_underlinedouble.png cmd/hu/lc_underlinedouble.png +cmd/tr/lc_underlinesimple.png cmd/hu/lc_underline.png +cmd/tr/sc_bold.png cmd/sl/sc_bold.png +cmd/tr/sc_underline.png cmd/hu/sc_underline.png +cmd/tr/sc_underlinedouble.png cmd/hu/sc_underlinedouble.png +cmd/tr/sc_underlinesimple.png cmd/hu/sc_underline.png cmd/ur/lc_alphaliststyle.png cmd/ar/lc_alphaliststyle.png cmd/ur/lc_alphalowliststyle.png cmd/ar/lc_alphalowliststyle.png cmd/ur/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png diff --git a/icon-themes/sifr/sd/res/placeholder_chart_large.png b/icon-themes/sifr/sd/res/placeholder_chart_large.png new file mode 100644 index 000000000000..871763317dab Binary files /dev/null and b/icon-themes/sifr/sd/res/placeholder_chart_large.png differ diff --git a/icon-themes/sifr/sd/res/placeholder_chart_large_hover.png b/icon-themes/sifr/sd/res/placeholder_chart_large_hover.png new file mode 100644 index 000000000000..ebba20b2ac41 Binary files /dev/null and b/icon-themes/sifr/sd/res/placeholder_chart_large_hover.png differ diff --git a/icon-themes/sifr/sd/res/placeholder_chart_small.png b/icon-themes/sifr/sd/res/placeholder_chart_small.png new file mode 100644 index 000000000000..a715e3cbd3fb Binary files /dev/null and b/icon-themes/sifr/sd/res/placeholder_chart_small.png differ diff --git a/icon-themes/sifr/sd/res/placeholder_chart_small_hover.png b/icon-themes/sifr/sd/res/placeholder_chart_small_hover.png new file mode 100644 index 000000000000..5a023069bf2f Binary files /dev/null and b/icon-themes/sifr/sd/res/placeholder_chart_small_hover.png differ diff --git a/icon-themes/sifr/sd/res/placeholder_image_large.png b/icon-themes/sifr/sd/res/placeholder_image_large.png new file mode 100644 index 000000000000..d2a814a7dc3d Binary files /dev/null and b/icon-themes/sifr/sd/res/placeholder_image_large.png differ diff --git a/icon-themes/sifr/sd/res/placeholder_image_large_hover.png b/icon-themes/sifr/sd/res/placeholder_image_large_hover.png new file mode 100644 index 000000000000..73025cc06ab4 Binary files /dev/null and b/icon-themes/sifr/sd/res/placeholder_image_large_hover.png differ diff --git a/icon-themes/sifr/sd/res/placeholder_image_small.png b/icon-themes/sifr/sd/res/placeholder_image_small.png new file mode 100644 index 000000000000..6982c7231112 Binary files /dev/null and b/icon-themes/sifr/sd/res/placeholder_image_small.png differ diff --git a/icon-themes/sifr/sd/res/placeholder_image_small_hover.png b/icon-themes/sifr/sd/res/placeholder_image_small_hover.png new file mode 100644 index 000000000000..649f70ec287b Binary files /dev/null and b/icon-themes/sifr/sd/res/placeholder_image_small_hover.png differ diff --git a/icon-themes/sifr/sd/res/placeholder_movie_large.png b/icon-themes/sifr/sd/res/placeholder_movie_large.png new file mode 100644 index 000000000000..cd5be82153a4 Binary files /dev/null and b/icon-themes/sifr/sd/res/placeholder_movie_large.png differ diff --git a/icon-themes/sifr/sd/res/placeholder_movie_large_hover.png b/icon-themes/sifr/sd/res/placeholder_movie_large_hover.png new file mode 100644 index 000000000000..613596942f10 Binary files /dev/null and b/icon-themes/sifr/sd/res/placeholder_movie_large_hover.png differ diff --git a/icon-themes/sifr/sd/res/placeholder_movie_small.png b/icon-themes/sifr/sd/res/placeholder_movie_small.png new file mode 100644 index 000000000000..56d81d13e4a2 Binary files /dev/null and b/icon-themes/sifr/sd/res/placeholder_movie_small.png differ diff --git a/icon-themes/sifr/sd/res/placeholder_movie_small_hover.png b/icon-themes/sifr/sd/res/placeholder_movie_small_hover.png new file mode 100644 index 000000000000..bf62702d5287 Binary files /dev/null and b/icon-themes/sifr/sd/res/placeholder_movie_small_hover.png differ diff --git a/icon-themes/sifr/sd/res/placeholder_table_large.png b/icon-themes/sifr/sd/res/placeholder_table_large.png new file mode 100644 index 000000000000..87b13927fa63 Binary files /dev/null and b/icon-themes/sifr/sd/res/placeholder_table_large.png differ diff --git a/icon-themes/sifr/sd/res/placeholder_table_large_hover.png b/icon-themes/sifr/sd/res/placeholder_table_large_hover.png new file mode 100644 index 000000000000..67e9b6ff0ed0 Binary files /dev/null and b/icon-themes/sifr/sd/res/placeholder_table_large_hover.png differ diff --git a/icon-themes/sifr/sd/res/placeholder_table_small.png b/icon-themes/sifr/sd/res/placeholder_table_small.png new file mode 100644 index 000000000000..12c06326edb7 Binary files /dev/null and b/icon-themes/sifr/sd/res/placeholder_table_small.png differ diff --git a/icon-themes/sifr/sd/res/placeholder_table_small_hover.png b/icon-themes/sifr/sd/res/placeholder_table_small_hover.png new file mode 100644 index 000000000000..409f0d1c9c10 Binary files /dev/null and b/icon-themes/sifr/sd/res/placeholder_table_small_hover.png differ diff --git a/icon-themes/sifr_dark/cmd/32/bg/bold.png b/icon-themes/sifr_dark/cmd/32/bg/bold.png new file mode 100644 index 000000000000..0540c29cd518 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/bg/bold.png differ diff --git a/icon-themes/sifr_dark/cmd/32/bg/italic.png b/icon-themes/sifr_dark/cmd/32/bg/italic.png new file mode 100644 index 000000000000..04d2345936f5 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/bg/italic.png differ diff --git a/icon-themes/sifr_dark/cmd/32/bg/strikeout.png b/icon-themes/sifr_dark/cmd/32/bg/strikeout.png new file mode 100644 index 000000000000..8835139740fb Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/bg/strikeout.png differ diff --git a/icon-themes/sifr_dark/cmd/32/ca/bold.png b/icon-themes/sifr_dark/cmd/32/ca/bold.png index 46e002cbd9b0..f1aaa8245b99 100644 Binary files a/icon-themes/sifr_dark/cmd/32/ca/bold.png and b/icon-themes/sifr_dark/cmd/32/ca/bold.png differ diff --git a/icon-themes/sifr_dark/cmd/32/ca/italic.png b/icon-themes/sifr_dark/cmd/32/ca/italic.png new file mode 100644 index 000000000000..288f83899bb1 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/ca/italic.png differ diff --git a/icon-themes/sifr_dark/cmd/32/de/bold.png b/icon-themes/sifr_dark/cmd/32/de/bold.png new file mode 100644 index 000000000000..e3497718f193 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/de/bold.png differ diff --git a/icon-themes/sifr_dark/cmd/32/fr/bold.png b/icon-themes/sifr_dark/cmd/32/fr/bold.png new file mode 100644 index 000000000000..78db3e5e2da0 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/fr/bold.png differ diff --git a/icon-themes/sifr_dark/cmd/32/hu/italic.png b/icon-themes/sifr_dark/cmd/32/hu/italic.png new file mode 100644 index 000000000000..a961d8e352fc Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/hu/italic.png differ diff --git a/icon-themes/sifr_dark/cmd/32/hu/underline.png b/icon-themes/sifr_dark/cmd/32/hu/underline.png new file mode 100644 index 000000000000..b5aef991ad04 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/hu/underline.png differ diff --git a/icon-themes/sifr_dark/cmd/32/hu/underlinedouble.png b/icon-themes/sifr_dark/cmd/32/hu/underlinedouble.png new file mode 100644 index 000000000000..51dfb305f655 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/hu/underlinedouble.png differ diff --git a/icon-themes/sifr_dark/cmd/32/italic.png b/icon-themes/sifr_dark/cmd/32/italic.png index e2f62c76000f..9e18cb2f7ed0 100644 Binary files a/icon-themes/sifr_dark/cmd/32/italic.png and b/icon-themes/sifr_dark/cmd/32/italic.png differ diff --git a/icon-themes/sifr_dark/cmd/32/km/bold.png b/icon-themes/sifr_dark/cmd/32/km/bold.png new file mode 100644 index 000000000000..624ed9520ec9 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/km/bold.png differ diff --git a/icon-themes/sifr_dark/cmd/32/km/italic.png b/icon-themes/sifr_dark/cmd/32/km/italic.png new file mode 100644 index 000000000000..e765d9441fcc Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/km/italic.png differ diff --git a/icon-themes/sifr_dark/cmd/32/km/underline.png b/icon-themes/sifr_dark/cmd/32/km/underline.png new file mode 100644 index 000000000000..297586b0a028 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/km/underline.png differ diff --git a/icon-themes/sifr_dark/cmd/32/km/underlinedouble.png b/icon-themes/sifr_dark/cmd/32/km/underlinedouble.png new file mode 100644 index 000000000000..09a2fd8a27fd Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/km/underlinedouble.png differ diff --git a/icon-themes/sifr_dark/cmd/32/nl/bold.png b/icon-themes/sifr_dark/cmd/32/nl/bold.png new file mode 100644 index 000000000000..128f0e62aabc Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/nl/bold.png differ diff --git a/icon-themes/sifr_dark/cmd/32/nl/underline.png b/icon-themes/sifr_dark/cmd/32/nl/underline.png new file mode 100644 index 000000000000..0c3a1a697229 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/nl/underline.png differ diff --git a/icon-themes/sifr_dark/cmd/32/nl/underlinedouble.png b/icon-themes/sifr_dark/cmd/32/nl/underlinedouble.png new file mode 100644 index 000000000000..66430bcf8fc4 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/nl/underlinedouble.png differ diff --git a/icon-themes/sifr_dark/cmd/32/pl/underline.png b/icon-themes/sifr_dark/cmd/32/pl/underline.png new file mode 100644 index 000000000000..e0c6f30c56b6 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/pl/underline.png differ diff --git a/icon-themes/sifr_dark/cmd/32/pl/underlinedouble.png b/icon-themes/sifr_dark/cmd/32/pl/underlinedouble.png new file mode 100644 index 000000000000..1b35f0fbc903 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/pl/underlinedouble.png differ diff --git a/icon-themes/sifr_dark/cmd/32/ru/bold.png b/icon-themes/sifr_dark/cmd/32/ru/bold.png new file mode 100644 index 000000000000..19a6e1432f5e Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/ru/bold.png differ diff --git a/icon-themes/sifr_dark/cmd/32/ru/underline.png b/icon-themes/sifr_dark/cmd/32/ru/underline.png new file mode 100644 index 000000000000..7b6cea1970f6 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/ru/underline.png differ diff --git a/icon-themes/sifr_dark/cmd/32/ru/underlinedouble.png b/icon-themes/sifr_dark/cmd/32/ru/underlinedouble.png new file mode 100644 index 000000000000..7e7b89304691 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/ru/underlinedouble.png differ diff --git a/icon-themes/sifr_dark/cmd/32/sl/bold.png b/icon-themes/sifr_dark/cmd/32/sl/bold.png new file mode 100644 index 000000000000..6db07bd13393 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/sl/bold.png differ diff --git a/icon-themes/sifr_dark/cmd/32/sl/italic.png b/icon-themes/sifr_dark/cmd/32/sl/italic.png new file mode 100644 index 000000000000..c3bc4f4d3a30 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/sl/italic.png differ diff --git a/icon-themes/sifr_dark/cmd/32/tr/italic.png b/icon-themes/sifr_dark/cmd/32/tr/italic.png new file mode 100644 index 000000000000..ce5ae3bfc128 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/32/tr/italic.png differ diff --git a/icon-themes/sifr_dark/cmd/bg/lc_bold.png b/icon-themes/sifr_dark/cmd/bg/lc_bold.png new file mode 100644 index 000000000000..3a1794ac2777 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/bg/lc_bold.png differ diff --git a/icon-themes/sifr_dark/cmd/bg/lc_italic.png b/icon-themes/sifr_dark/cmd/bg/lc_italic.png new file mode 100644 index 000000000000..ab842d4ef34d Binary files /dev/null and b/icon-themes/sifr_dark/cmd/bg/lc_italic.png differ diff --git a/icon-themes/sifr_dark/cmd/bg/lc_strikeout.png b/icon-themes/sifr_dark/cmd/bg/lc_strikeout.png new file mode 100644 index 000000000000..dce58bb2694e Binary files /dev/null and b/icon-themes/sifr_dark/cmd/bg/lc_strikeout.png differ diff --git a/icon-themes/sifr_dark/cmd/bg/sc_bold.png b/icon-themes/sifr_dark/cmd/bg/sc_bold.png new file mode 100644 index 000000000000..ffdfe0bba5f2 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/bg/sc_bold.png differ diff --git a/icon-themes/sifr_dark/cmd/bg/sc_italic.png b/icon-themes/sifr_dark/cmd/bg/sc_italic.png new file mode 100644 index 000000000000..5ed347c68e97 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/bg/sc_italic.png differ diff --git a/icon-themes/sifr_dark/cmd/bg/sc_strikeout.png b/icon-themes/sifr_dark/cmd/bg/sc_strikeout.png new file mode 100644 index 000000000000..9afb713a73d7 Binary files /dev/null and b/icon-themes/sifr_dark/cmd/bg/sc_strikeout.png differ diff --git a/icon-themes/sifr_dark/cmd/es/lc_bold.png b/icon-themes/sifr_dark/cmd/es/lc_bold.png deleted file mode 100644 index c8e33b0c68d9..000000000000 Binary files a/icon-themes/sifr_dark/cmd/es/lc_bold.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/es/lc_italic.png b/icon-themes/sifr_dark/cmd/es/lc_italic.png deleted file mode 100644 index 8befa82e73a6..000000000000 Binary files a/icon-themes/sifr_dark/cmd/es/lc_italic.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/es/lc_numberformatdecimal.png b/icon-themes/sifr_dark/cmd/es/lc_numberformatdecimal.png deleted file mode 100644 index 56075e694394..000000000000 Binary files a/icon-themes/sifr_dark/cmd/es/lc_numberformatdecimal.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/es/lc_numberformatthousands.png b/icon-themes/sifr_dark/cmd/es/lc_numberformatthousands.png deleted file mode 100644 index d2c4f8e21570..000000000000 Binary files a/icon-themes/sifr_dark/cmd/es/lc_numberformatthousands.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/es/lc_underline.png b/icon-themes/sifr_dark/cmd/es/lc_underline.png deleted file mode 100644 index 94008bb6701f..000000000000 Binary files a/icon-themes/sifr_dark/cmd/es/lc_underline.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/es/lc_underlinedouble.png b/icon-themes/sifr_dark/cmd/es/lc_underlinedouble.png deleted file mode 100644 index 7f32572f81e6..000000000000 Binary files a/icon-themes/sifr_dark/cmd/es/lc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/es/sc_bold.png b/icon-themes/sifr_dark/cmd/es/sc_bold.png deleted file mode 100644 index 58a055dd6a4d..000000000000 Binary files a/icon-themes/sifr_dark/cmd/es/sc_bold.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/es/sc_italic.png b/icon-themes/sifr_dark/cmd/es/sc_italic.png deleted file mode 100644 index c91a30e398fd..000000000000 Binary files a/icon-themes/sifr_dark/cmd/es/sc_italic.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/es/sc_numberformatdecimal.png b/icon-themes/sifr_dark/cmd/es/sc_numberformatdecimal.png deleted file mode 100644 index 105871a2e52e..000000000000 Binary files a/icon-themes/sifr_dark/cmd/es/sc_numberformatdecimal.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/es/sc_numberformatthousands.png b/icon-themes/sifr_dark/cmd/es/sc_numberformatthousands.png deleted file mode 100644 index ec7c14e5d8bf..000000000000 Binary files a/icon-themes/sifr_dark/cmd/es/sc_numberformatthousands.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/es/sc_underline.png b/icon-themes/sifr_dark/cmd/es/sc_underline.png deleted file mode 100644 index 377fd2e1373f..000000000000 Binary files a/icon-themes/sifr_dark/cmd/es/sc_underline.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/es/sc_underlinedouble.png b/icon-themes/sifr_dark/cmd/es/sc_underlinedouble.png deleted file mode 100644 index b9d2343df712..000000000000 Binary files a/icon-themes/sifr_dark/cmd/es/sc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/fr/lc_underline.png b/icon-themes/sifr_dark/cmd/fr/lc_underline.png deleted file mode 100644 index 94008bb6701f..000000000000 Binary files a/icon-themes/sifr_dark/cmd/fr/lc_underline.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/fr/lc_underlinedouble.png b/icon-themes/sifr_dark/cmd/fr/lc_underlinedouble.png deleted file mode 100644 index 7f32572f81e6..000000000000 Binary files a/icon-themes/sifr_dark/cmd/fr/lc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/fr/sc_underline.png b/icon-themes/sifr_dark/cmd/fr/sc_underline.png deleted file mode 100644 index 377fd2e1373f..000000000000 Binary files a/icon-themes/sifr_dark/cmd/fr/sc_underline.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/fr/sc_underlinedouble.png b/icon-themes/sifr_dark/cmd/fr/sc_underlinedouble.png deleted file mode 100644 index b9d2343df712..000000000000 Binary files a/icon-themes/sifr_dark/cmd/fr/sc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/hu/lc_italic.png b/icon-themes/sifr_dark/cmd/hu/lc_italic.png index ba984193c583..d1311a99c43d 100644 Binary files a/icon-themes/sifr_dark/cmd/hu/lc_italic.png and b/icon-themes/sifr_dark/cmd/hu/lc_italic.png differ diff --git a/icon-themes/sifr_dark/cmd/hu/sc_italic.png b/icon-themes/sifr_dark/cmd/hu/sc_italic.png index 5ce9d9ca889c..3097756c9787 100644 Binary files a/icon-themes/sifr_dark/cmd/hu/sc_italic.png and b/icon-themes/sifr_dark/cmd/hu/sc_italic.png differ diff --git a/icon-themes/sifr_dark/cmd/it/lc_bold.png b/icon-themes/sifr_dark/cmd/it/lc_bold.png deleted file mode 100644 index b209204b4dcf..000000000000 Binary files a/icon-themes/sifr_dark/cmd/it/lc_bold.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/it/lc_italic.png b/icon-themes/sifr_dark/cmd/it/lc_italic.png deleted file mode 100644 index 8befa82e73a6..000000000000 Binary files a/icon-themes/sifr_dark/cmd/it/lc_italic.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/it/lc_underline.png b/icon-themes/sifr_dark/cmd/it/lc_underline.png deleted file mode 100644 index 94008bb6701f..000000000000 Binary files a/icon-themes/sifr_dark/cmd/it/lc_underline.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/it/lc_underlinedouble.png b/icon-themes/sifr_dark/cmd/it/lc_underlinedouble.png deleted file mode 100644 index 7f32572f81e6..000000000000 Binary files a/icon-themes/sifr_dark/cmd/it/lc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/it/sc_bold.png b/icon-themes/sifr_dark/cmd/it/sc_bold.png deleted file mode 100644 index dd7ce21dd542..000000000000 Binary files a/icon-themes/sifr_dark/cmd/it/sc_bold.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/it/sc_italic.png b/icon-themes/sifr_dark/cmd/it/sc_italic.png deleted file mode 100644 index c91a30e398fd..000000000000 Binary files a/icon-themes/sifr_dark/cmd/it/sc_italic.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/it/sc_underline.png b/icon-themes/sifr_dark/cmd/it/sc_underline.png deleted file mode 100644 index 377fd2e1373f..000000000000 Binary files a/icon-themes/sifr_dark/cmd/it/sc_underline.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/it/sc_underlinedouble.png b/icon-themes/sifr_dark/cmd/it/sc_underlinedouble.png deleted file mode 100644 index b9d2343df712..000000000000 Binary files a/icon-themes/sifr_dark/cmd/it/sc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/nl/lc_italic.png b/icon-themes/sifr_dark/cmd/nl/lc_italic.png deleted file mode 100644 index 8befa82e73a6..000000000000 Binary files a/icon-themes/sifr_dark/cmd/nl/lc_italic.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/nl/sc_italic.png b/icon-themes/sifr_dark/cmd/nl/sc_italic.png deleted file mode 100644 index c91a30e398fd..000000000000 Binary files a/icon-themes/sifr_dark/cmd/nl/sc_italic.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/pl/lc_bold.png b/icon-themes/sifr_dark/cmd/pl/lc_bold.png deleted file mode 100644 index b209204b4dcf..000000000000 Binary files a/icon-themes/sifr_dark/cmd/pl/lc_bold.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/pl/lc_italic.png b/icon-themes/sifr_dark/cmd/pl/lc_italic.png deleted file mode 100644 index ba25d7973830..000000000000 Binary files a/icon-themes/sifr_dark/cmd/pl/lc_italic.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/pl/lc_underline.png b/icon-themes/sifr_dark/cmd/pl/lc_underline.png index 6311288ab794..22b7313d974a 100644 Binary files a/icon-themes/sifr_dark/cmd/pl/lc_underline.png and b/icon-themes/sifr_dark/cmd/pl/lc_underline.png differ diff --git a/icon-themes/sifr_dark/cmd/pl/lc_underlinedouble.png b/icon-themes/sifr_dark/cmd/pl/lc_underlinedouble.png index 22b7313d974a..6311288ab794 100644 Binary files a/icon-themes/sifr_dark/cmd/pl/lc_underlinedouble.png and b/icon-themes/sifr_dark/cmd/pl/lc_underlinedouble.png differ diff --git a/icon-themes/sifr_dark/cmd/pl/sc_bold.png b/icon-themes/sifr_dark/cmd/pl/sc_bold.png deleted file mode 100644 index dd7ce21dd542..000000000000 Binary files a/icon-themes/sifr_dark/cmd/pl/sc_bold.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/pl/sc_italic.png b/icon-themes/sifr_dark/cmd/pl/sc_italic.png deleted file mode 100644 index bc789ac7ab70..000000000000 Binary files a/icon-themes/sifr_dark/cmd/pl/sc_italic.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/pt-BR/lc_bold.png b/icon-themes/sifr_dark/cmd/pt-BR/lc_bold.png deleted file mode 100644 index c8e33b0c68d9..000000000000 Binary files a/icon-themes/sifr_dark/cmd/pt-BR/lc_bold.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/pt-BR/lc_underline.png b/icon-themes/sifr_dark/cmd/pt-BR/lc_underline.png deleted file mode 100644 index 94008bb6701f..000000000000 Binary files a/icon-themes/sifr_dark/cmd/pt-BR/lc_underline.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/pt-BR/lc_underlinedouble.png b/icon-themes/sifr_dark/cmd/pt-BR/lc_underlinedouble.png deleted file mode 100644 index 7f32572f81e6..000000000000 Binary files a/icon-themes/sifr_dark/cmd/pt-BR/lc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/pt-BR/sc_bold.png b/icon-themes/sifr_dark/cmd/pt-BR/sc_bold.png deleted file mode 100644 index 58a055dd6a4d..000000000000 Binary files a/icon-themes/sifr_dark/cmd/pt-BR/sc_bold.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/pt-BR/sc_underline.png b/icon-themes/sifr_dark/cmd/pt-BR/sc_underline.png deleted file mode 100644 index 377fd2e1373f..000000000000 Binary files a/icon-themes/sifr_dark/cmd/pt-BR/sc_underline.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/pt-BR/sc_underlinedouble.png b/icon-themes/sifr_dark/cmd/pt-BR/sc_underlinedouble.png deleted file mode 100644 index b9d2343df712..000000000000 Binary files a/icon-themes/sifr_dark/cmd/pt-BR/sc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/pt/lc_bold.png b/icon-themes/sifr_dark/cmd/pt/lc_bold.png deleted file mode 100644 index c8e33b0c68d9..000000000000 Binary files a/icon-themes/sifr_dark/cmd/pt/lc_bold.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/pt/lc_underline.png b/icon-themes/sifr_dark/cmd/pt/lc_underline.png deleted file mode 100644 index 94008bb6701f..000000000000 Binary files a/icon-themes/sifr_dark/cmd/pt/lc_underline.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/pt/lc_underlinedouble.png b/icon-themes/sifr_dark/cmd/pt/lc_underlinedouble.png deleted file mode 100644 index 7f32572f81e6..000000000000 Binary files a/icon-themes/sifr_dark/cmd/pt/lc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/pt/sc_bold.png b/icon-themes/sifr_dark/cmd/pt/sc_bold.png deleted file mode 100644 index 58a055dd6a4d..000000000000 Binary files a/icon-themes/sifr_dark/cmd/pt/sc_bold.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/pt/sc_underline.png b/icon-themes/sifr_dark/cmd/pt/sc_underline.png deleted file mode 100644 index 377fd2e1373f..000000000000 Binary files a/icon-themes/sifr_dark/cmd/pt/sc_underline.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/pt/sc_underlinedouble.png b/icon-themes/sifr_dark/cmd/pt/sc_underlinedouble.png deleted file mode 100644 index b9d2343df712..000000000000 Binary files a/icon-themes/sifr_dark/cmd/pt/sc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/ru/lc_italic.png b/icon-themes/sifr_dark/cmd/ru/lc_italic.png deleted file mode 100644 index ba25d7973830..000000000000 Binary files a/icon-themes/sifr_dark/cmd/ru/lc_italic.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/ru/sc_italic.png b/icon-themes/sifr_dark/cmd/ru/sc_italic.png deleted file mode 100644 index bc789ac7ab70..000000000000 Binary files a/icon-themes/sifr_dark/cmd/ru/sc_italic.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/sl/lc_underline.png b/icon-themes/sifr_dark/cmd/sl/lc_underline.png deleted file mode 100644 index 6311288ab794..000000000000 Binary files a/icon-themes/sifr_dark/cmd/sl/lc_underline.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/sl/lc_underlinedouble.png b/icon-themes/sifr_dark/cmd/sl/lc_underlinedouble.png deleted file mode 100644 index 22b7313d974a..000000000000 Binary files a/icon-themes/sifr_dark/cmd/sl/lc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/sl/sc_underline.png b/icon-themes/sifr_dark/cmd/sl/sc_underline.png deleted file mode 100644 index f709ef8d391a..000000000000 Binary files a/icon-themes/sifr_dark/cmd/sl/sc_underline.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/sl/sc_underlinedouble.png b/icon-themes/sifr_dark/cmd/sl/sc_underlinedouble.png deleted file mode 100644 index 5745dd791ee3..000000000000 Binary files a/icon-themes/sifr_dark/cmd/sl/sc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/sv/lc_bold.png b/icon-themes/sifr_dark/cmd/sv/lc_bold.png deleted file mode 100644 index 4bc9434bc58c..000000000000 Binary files a/icon-themes/sifr_dark/cmd/sv/lc_bold.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/sv/lc_italic.png b/icon-themes/sifr_dark/cmd/sv/lc_italic.png deleted file mode 100644 index ba25d7973830..000000000000 Binary files a/icon-themes/sifr_dark/cmd/sv/lc_italic.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/sv/sc_bold.png b/icon-themes/sifr_dark/cmd/sv/sc_bold.png deleted file mode 100644 index d6703883a119..000000000000 Binary files a/icon-themes/sifr_dark/cmd/sv/sc_bold.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/sv/sc_italic.png b/icon-themes/sifr_dark/cmd/sv/sc_italic.png deleted file mode 100644 index bc789ac7ab70..000000000000 Binary files a/icon-themes/sifr_dark/cmd/sv/sc_italic.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/tr/lc_bold.png b/icon-themes/sifr_dark/cmd/tr/lc_bold.png deleted file mode 100644 index 0474695f11a0..000000000000 Binary files a/icon-themes/sifr_dark/cmd/tr/lc_bold.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/tr/lc_underline.png b/icon-themes/sifr_dark/cmd/tr/lc_underline.png deleted file mode 100644 index ab3e7dd9f918..000000000000 Binary files a/icon-themes/sifr_dark/cmd/tr/lc_underline.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/tr/lc_underlinedouble.png b/icon-themes/sifr_dark/cmd/tr/lc_underlinedouble.png deleted file mode 100644 index 02c897628a83..000000000000 Binary files a/icon-themes/sifr_dark/cmd/tr/lc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/tr/sc_bold.png b/icon-themes/sifr_dark/cmd/tr/sc_bold.png deleted file mode 100644 index c5b041f11989..000000000000 Binary files a/icon-themes/sifr_dark/cmd/tr/sc_bold.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/tr/sc_underline.png b/icon-themes/sifr_dark/cmd/tr/sc_underline.png deleted file mode 100644 index 35319742f250..000000000000 Binary files a/icon-themes/sifr_dark/cmd/tr/sc_underline.png and /dev/null differ diff --git a/icon-themes/sifr_dark/cmd/tr/sc_underlinedouble.png b/icon-themes/sifr_dark/cmd/tr/sc_underlinedouble.png deleted file mode 100644 index d73be034137d..000000000000 Binary files a/icon-themes/sifr_dark/cmd/tr/sc_underlinedouble.png and /dev/null differ diff --git a/icon-themes/sifr_dark/links.txt b/icon-themes/sifr_dark/links.txt index 6ee87c8d8f2d..43579901a8e6 100644 --- a/icon-themes/sifr_dark/links.txt +++ b/icon-themes/sifr_dark/links.txt @@ -582,11 +582,17 @@ cmd/fr/lc_numberformatdecimal.png cmd/de/lc_numberformatdecimal.png cmd/fr/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png cmd/fr/lc_numberformatthousands.png cmd/de/lc_numberformatthousands.png cmd/fr/lc_numberformatincdecimals.png cmd/de/lc_numberformatincdecimals.png +cmd/fr/lc_underline.png cmd/ca/lc_underline.png +cmd/fr/lc_underlinedouble.png cmd/ca/lc_underlinedouble.png +cmd/fr/lc_underlinesimple.png cmd/ca/lc_underline.png cmd/fr/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png cmd/fr/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png cmd/fr/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png cmd/fr/sc_numberformatthousands.png cmd/de/sc_numberformatthousands.png cmd/fr/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png +cmd/fr/sc_underline.png cmd/ca/sc_underline.png +cmd/fr/sc_underlinedouble.png cmd/ca/sc_underlinedouble.png +cmd/fr/sc_underlinesimple.png cmd/ca/sc_underline.png cmd/he/lc_alphaliststyle.png cmd/ar/lc_alphaliststyle.png cmd/he/lc_alphalowliststyle.png cmd/ar/lc_alphalowliststyle.png cmd/he/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png @@ -629,8 +635,66 @@ cmd/id/sc_numberformatdecdecimals.png cmd/de/sc_numberformatdecdecimals.png cmd/id/sc_numberformatdecimal.png cmd/de/sc_numberformatdecimal.png cmd/id/sc_numberformatincdecimals.png cmd/de/sc_numberformatincdecimals.png cmd/id/sc_numberformatthousands.png cmd/de/sc_numberformatthousands.png +cmd/it/lc_bold.png cmd/fr/lc_bold.png +cmd/it/lc_italic.png cmd/ca/lc_italic.png +cmd/it/lc_underline.png cmd/ca/lc_underline.png +cmd/it/lc_underlinedouble.png cmd/ca/lc_underlinedouble.png +cmd/it/lc_underlinesimple.png cmd/ca/lc_underline.png +cmd/it/sc_bold.png cmd/fr/sc_bold.png +cmd/it/sc_italic.png cmd/ca/sc_italic.png +cmd/it/sc_underline.png cmd/ca/sc_underline.png +cmd/it/sc_underlinedouble.png cmd/ca/sc_underlinedouble.png +cmd/it/sc_underlinesimple.png cmd/ca/sc_underline.png cmd/lc_underlinesimple.png cmd/lc_underline.png +cmd/nl/lc_italic.png cmd/ca/lc_italic.png +cmd/nl/lc_underlinesimple.png cmd/nl/lc_underline.png +cmd/nl/sc_italic.png cmd/ca/sc_italic.png +cmd/nl/sc_underlinesimple.png cmd/nl/sc_underline.png +cmd/pl/lc_bold.png cmd/fr/lc_bold.png +cmd/pl/lc_italic.png cmd/de/lc_italic.png +cmd/pl/lc_underlinesimple.png cmd/pl/lc_underline.png +cmd/pl/sc_bold.png cmd/fr/sc_bold.png +cmd/pl/sc_italic.png cmd/de/sc_italic.png +cmd/pl/sc_underlinesimple.png cmd/pl/sc_underline.png +cmd/pt-BR/lc_bold.png cmd/ca/lc_bold.png +cmd/pt-BR/lc_underline.png cmd/ca/lc_underline.png +cmd/pt-BR/lc_underlinedouble.png cmd/ca/lc_underlinedouble.png +cmd/pt-BR/lc_underlinesimple.png cmd/ca/lc_underline.png +cmd/pt-BR/sc_bold.png cmd/ca/sc_bold.png +cmd/pt-BR/sc_underline.png cmd/ca/sc_underline.png +cmd/pt-BR/sc_underlinedouble.png cmd/ca/sc_underlinedouble.png +cmd/pt-BR/sc_underlinesimple.png cmd/ca/sc_underline.png +cmd/pt/lc_bold.png cmd/ca/lc_bold.png +cmd/pt/lc_underline.png cmd/ca/lc_underline.png +cmd/pt/lc_underlinedouble.png cmd/ca/lc_underlinedouble.png +cmd/pt/lc_underlinesimple.png cmd/ca/lc_underline.png +cmd/pt/sc_bold.png cmd/ca/sc_bold.png +cmd/pt/sc_underline.png cmd/ca/sc_underline.png +cmd/pt/sc_underlinedouble.png cmd/ca/sc_underlinedouble.png +cmd/pt/sc_underlinesimple.png cmd/ca/sc_underline.png +cmd/ru/lc_italic.png cmd/de/lc_italic.png +cmd/ru/lc_underlinesimple.png cmd/ru/lc_underline.png +cmd/ru/sc_italic.png cmd/de/sc_italic.png +cmd/ru/sc_underlinesimple.png cmd/ru/sc_underline.png cmd/sc_underlinesimple.png cmd/sc_underline.png +cmd/sl/lc_underline.png cmd/pl/lc_underline.png +cmd/sl/lc_underlinedouble.png cmd/pl/lc_underlinedouble.png +cmd/sl/lc_underlinesimple.png cmd/pl/lc_underline.png +cmd/sl/sc_underline.png cmd/pl/sc_underline.png +cmd/sl/sc_underlinedouble.png cmd/pl/sc_underlinedouble.png +cmd/sl/sc_underlinesimple.png cmd/pl/sc_underline.png +cmd/sv/lc_bold.png cmd/de/lc_bold.png +cmd/sv/lc_italic.png cmd/de/lc_italic.png +cmd/sv/sc_bold.png cmd/de/sc_bold.png +cmd/sv/sc_italic.png cmd/de/sc_italic.png +cmd/tr/lc_bold.png cmd/sl/lc_bold.png +cmd/tr/lc_underline.png cmd/hu/lc_underline.png +cmd/tr/lc_underlinedouble.png cmd/hu/lc_underlinedouble.png +cmd/tr/lc_underlinesimple.png cmd/hu/lc_underline.png +cmd/tr/sc_bold.png cmd/sl/sc_bold.png +cmd/tr/sc_underline.png cmd/hu/sc_underline.png +cmd/tr/sc_underlinedouble.png cmd/hu/sc_underlinedouble.png +cmd/tr/sc_underlinesimple.png cmd/hu/sc_underline.png cmd/ur/lc_alphaliststyle.png cmd/ar/lc_alphaliststyle.png cmd/ur/lc_alphalowliststyle.png cmd/ar/lc_alphalowliststyle.png cmd/ur/lc_bulletliststyle.png cmd/ar/lc_defaultbullet.png diff --git a/icon-themes/sifr_dark/sd/res/placeholder_chart_large.png b/icon-themes/sifr_dark/sd/res/placeholder_chart_large.png new file mode 100644 index 000000000000..f19f340af39d Binary files /dev/null and b/icon-themes/sifr_dark/sd/res/placeholder_chart_large.png differ diff --git a/icon-themes/sifr_dark/sd/res/placeholder_chart_large_hover.png b/icon-themes/sifr_dark/sd/res/placeholder_chart_large_hover.png new file mode 100644 index 000000000000..1ee3ab9640c6 Binary files /dev/null and b/icon-themes/sifr_dark/sd/res/placeholder_chart_large_hover.png differ diff --git a/icon-themes/sifr_dark/sd/res/placeholder_chart_small.png b/icon-themes/sifr_dark/sd/res/placeholder_chart_small.png new file mode 100644 index 000000000000..464fb92ee0cf Binary files /dev/null and b/icon-themes/sifr_dark/sd/res/placeholder_chart_small.png differ diff --git a/icon-themes/sifr_dark/sd/res/placeholder_chart_small_hover.png b/icon-themes/sifr_dark/sd/res/placeholder_chart_small_hover.png new file mode 100644 index 000000000000..488b5a900a53 Binary files /dev/null and b/icon-themes/sifr_dark/sd/res/placeholder_chart_small_hover.png differ diff --git a/icon-themes/sifr_dark/sd/res/placeholder_image_large.png b/icon-themes/sifr_dark/sd/res/placeholder_image_large.png new file mode 100644 index 000000000000..ba14b065b6a5 Binary files /dev/null and b/icon-themes/sifr_dark/sd/res/placeholder_image_large.png differ diff --git a/icon-themes/sifr_dark/sd/res/placeholder_image_large_hover.png b/icon-themes/sifr_dark/sd/res/placeholder_image_large_hover.png new file mode 100644 index 000000000000..1c25f8b909f0 Binary files /dev/null and b/icon-themes/sifr_dark/sd/res/placeholder_image_large_hover.png differ diff --git a/icon-themes/sifr_dark/sd/res/placeholder_image_small.png b/icon-themes/sifr_dark/sd/res/placeholder_image_small.png new file mode 100644 index 000000000000..3185a6e22927 Binary files /dev/null and b/icon-themes/sifr_dark/sd/res/placeholder_image_small.png differ diff --git a/icon-themes/sifr_dark/sd/res/placeholder_image_small_hover.png b/icon-themes/sifr_dark/sd/res/placeholder_image_small_hover.png new file mode 100644 index 000000000000..da286745f1d9 Binary files /dev/null and b/icon-themes/sifr_dark/sd/res/placeholder_image_small_hover.png differ diff --git a/icon-themes/sifr_dark/sd/res/placeholder_movie_large.png b/icon-themes/sifr_dark/sd/res/placeholder_movie_large.png new file mode 100644 index 000000000000..e3b748f0ac29 Binary files /dev/null and b/icon-themes/sifr_dark/sd/res/placeholder_movie_large.png differ diff --git a/icon-themes/sifr_dark/sd/res/placeholder_movie_large_hover.png b/icon-themes/sifr_dark/sd/res/placeholder_movie_large_hover.png new file mode 100644 index 000000000000..2bcfc77bed31 Binary files /dev/null and b/icon-themes/sifr_dark/sd/res/placeholder_movie_large_hover.png differ diff --git a/icon-themes/sifr_dark/sd/res/placeholder_movie_small.png b/icon-themes/sifr_dark/sd/res/placeholder_movie_small.png new file mode 100644 index 000000000000..62166909bb20 Binary files /dev/null and b/icon-themes/sifr_dark/sd/res/placeholder_movie_small.png differ diff --git a/icon-themes/sifr_dark/sd/res/placeholder_movie_small_hover.png b/icon-themes/sifr_dark/sd/res/placeholder_movie_small_hover.png new file mode 100644 index 000000000000..3b35d4c15539 Binary files /dev/null and b/icon-themes/sifr_dark/sd/res/placeholder_movie_small_hover.png differ diff --git a/icon-themes/sifr_dark/sd/res/placeholder_table_large.png b/icon-themes/sifr_dark/sd/res/placeholder_table_large.png new file mode 100644 index 000000000000..b9e1c25165c9 Binary files /dev/null and b/icon-themes/sifr_dark/sd/res/placeholder_table_large.png differ diff --git a/icon-themes/sifr_dark/sd/res/placeholder_table_large_hover.png b/icon-themes/sifr_dark/sd/res/placeholder_table_large_hover.png new file mode 100644 index 000000000000..1b51f39c271d Binary files /dev/null and b/icon-themes/sifr_dark/sd/res/placeholder_table_large_hover.png differ diff --git a/icon-themes/sifr_dark/sd/res/placeholder_table_small.png b/icon-themes/sifr_dark/sd/res/placeholder_table_small.png new file mode 100644 index 000000000000..c53d862db109 Binary files /dev/null and b/icon-themes/sifr_dark/sd/res/placeholder_table_small.png differ diff --git a/icon-themes/sifr_dark/sd/res/placeholder_table_small_hover.png b/icon-themes/sifr_dark/sd/res/placeholder_table_small_hover.png new file mode 100644 index 000000000000..358cff51a046 Binary files /dev/null and b/icon-themes/sifr_dark/sd/res/placeholder_table_small_hover.png differ diff --git a/icon-themes/sifr_dark_svg/cmd/32/bg/bold.svg b/icon-themes/sifr_dark_svg/cmd/32/bg/bold.svg new file mode 100644 index 000000000000..8cef04f7c432 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/bg/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/bg/italic.svg b/icon-themes/sifr_dark_svg/cmd/32/bg/italic.svg new file mode 100644 index 000000000000..bb8912c44244 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/bg/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/bg/strikeout.svg b/icon-themes/sifr_dark_svg/cmd/32/bg/strikeout.svg new file mode 100644 index 000000000000..4f0ac709169a --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/bg/strikeout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/ca/bold.svg b/icon-themes/sifr_dark_svg/cmd/32/ca/bold.svg index 195c064bfc5e..e6a02690fc2a 100644 --- a/icon-themes/sifr_dark_svg/cmd/32/ca/bold.svg +++ b/icon-themes/sifr_dark_svg/cmd/32/ca/bold.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/ca/italic.svg b/icon-themes/sifr_dark_svg/cmd/32/ca/italic.svg new file mode 100644 index 000000000000..adaaf39ff4e4 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/ca/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/ca/underline.svg b/icon-themes/sifr_dark_svg/cmd/32/ca/underline.svg index 876b2560d083..ca3fb29c50da 100644 --- a/icon-themes/sifr_dark_svg/cmd/32/ca/underline.svg +++ b/icon-themes/sifr_dark_svg/cmd/32/ca/underline.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/ca/underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/32/ca/underlinedouble.svg index 192e91325d5e..520f9ee4b526 100644 --- a/icon-themes/sifr_dark_svg/cmd/32/ca/underlinedouble.svg +++ b/icon-themes/sifr_dark_svg/cmd/32/ca/underlinedouble.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/de/bold.svg b/icon-themes/sifr_dark_svg/cmd/32/de/bold.svg new file mode 100644 index 000000000000..b54c964014d0 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/de/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/fr/bold.svg b/icon-themes/sifr_dark_svg/cmd/32/fr/bold.svg new file mode 100644 index 000000000000..6432ae5bdf22 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/fr/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/hu/italic.svg b/icon-themes/sifr_dark_svg/cmd/32/hu/italic.svg new file mode 100644 index 000000000000..3f93d51240c0 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/hu/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/hu/underline.svg b/icon-themes/sifr_dark_svg/cmd/32/hu/underline.svg new file mode 100644 index 000000000000..f4b8bfaf194b --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/hu/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/hu/underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/32/hu/underlinedouble.svg new file mode 100644 index 000000000000..37c251f5a8a6 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/hu/underlinedouble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/italic.svg b/icon-themes/sifr_dark_svg/cmd/32/italic.svg index 0f6d499259ea..43f85bf9bc09 100644 --- a/icon-themes/sifr_dark_svg/cmd/32/italic.svg +++ b/icon-themes/sifr_dark_svg/cmd/32/italic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/km/bold.svg b/icon-themes/sifr_dark_svg/cmd/32/km/bold.svg new file mode 100644 index 000000000000..07b1c8fd6117 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/km/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/km/italic.svg b/icon-themes/sifr_dark_svg/cmd/32/km/italic.svg new file mode 100644 index 000000000000..a5853ee2a549 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/km/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/km/underline.svg b/icon-themes/sifr_dark_svg/cmd/32/km/underline.svg new file mode 100644 index 000000000000..5346db361978 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/km/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/km/underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/32/km/underlinedouble.svg new file mode 100644 index 000000000000..8efcad462660 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/km/underlinedouble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/nl/bold.svg b/icon-themes/sifr_dark_svg/cmd/32/nl/bold.svg new file mode 100644 index 000000000000..4a059da966e6 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/nl/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/nl/underline.svg b/icon-themes/sifr_dark_svg/cmd/32/nl/underline.svg new file mode 100644 index 000000000000..8c618558ba8e --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/nl/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/nl/underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/32/nl/underlinedouble.svg new file mode 100644 index 000000000000..e0f7249a3a4f --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/nl/underlinedouble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/pl/underline.svg b/icon-themes/sifr_dark_svg/cmd/32/pl/underline.svg new file mode 100644 index 000000000000..deb3138a2094 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/pl/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/pl/underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/32/pl/underlinedouble.svg new file mode 100644 index 000000000000..ea6e824be742 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/pl/underlinedouble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/ru/bold.svg b/icon-themes/sifr_dark_svg/cmd/32/ru/bold.svg new file mode 100644 index 000000000000..9b9318ad93d5 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/ru/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/ru/underline.svg b/icon-themes/sifr_dark_svg/cmd/32/ru/underline.svg new file mode 100644 index 000000000000..0c6be455bf11 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/ru/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/ru/underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/32/ru/underlinedouble.svg new file mode 100644 index 000000000000..c41239b63970 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/ru/underlinedouble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/sl/bold.svg b/icon-themes/sifr_dark_svg/cmd/32/sl/bold.svg new file mode 100644 index 000000000000..5029afae117a --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/sl/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/sl/italic.svg b/icon-themes/sifr_dark_svg/cmd/32/sl/italic.svg new file mode 100644 index 000000000000..01890a859bf4 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/sl/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/32/tr/italic.svg b/icon-themes/sifr_dark_svg/cmd/32/tr/italic.svg new file mode 100644 index 000000000000..7aa8415b0019 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/32/tr/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/bg/lc_bold.svg b/icon-themes/sifr_dark_svg/cmd/bg/lc_bold.svg new file mode 100644 index 000000000000..b1af18a92a49 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/bg/lc_bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/bg/lc_italic.svg b/icon-themes/sifr_dark_svg/cmd/bg/lc_italic.svg new file mode 100644 index 000000000000..3eaceee2acde --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/bg/lc_italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/bg/lc_strikeout.svg b/icon-themes/sifr_dark_svg/cmd/bg/lc_strikeout.svg new file mode 100644 index 000000000000..01a80d6eacc9 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/bg/lc_strikeout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/bg/sc_bold.svg b/icon-themes/sifr_dark_svg/cmd/bg/sc_bold.svg new file mode 100644 index 000000000000..db9d00dd8103 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/bg/sc_bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/bg/sc_italic.svg b/icon-themes/sifr_dark_svg/cmd/bg/sc_italic.svg new file mode 100644 index 000000000000..269ac87935ba --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/bg/sc_italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/bg/sc_strikeout.svg b/icon-themes/sifr_dark_svg/cmd/bg/sc_strikeout.svg new file mode 100644 index 000000000000..b39780ec4725 --- /dev/null +++ b/icon-themes/sifr_dark_svg/cmd/bg/sc_strikeout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/es/lc_bold.svg b/icon-themes/sifr_dark_svg/cmd/es/lc_bold.svg deleted file mode 100644 index c4e9565ccf2d..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/es/lc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/es/lc_italic.svg b/icon-themes/sifr_dark_svg/cmd/es/lc_italic.svg deleted file mode 100644 index 3f64a0659881..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/es/lc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/es/lc_numberformatdecimal.svg b/icon-themes/sifr_dark_svg/cmd/es/lc_numberformatdecimal.svg deleted file mode 100644 index eed90da1c430..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/es/lc_numberformatdecimal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/es/lc_numberformatthousands.svg b/icon-themes/sifr_dark_svg/cmd/es/lc_numberformatthousands.svg deleted file mode 100644 index a617c58a57b8..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/es/lc_numberformatthousands.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/es/lc_underline.svg b/icon-themes/sifr_dark_svg/cmd/es/lc_underline.svg deleted file mode 100644 index 34231acfa6f9..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/es/lc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/es/lc_underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/es/lc_underlinedouble.svg deleted file mode 100644 index d1234f0cf6e7..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/es/lc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/es/sc_bold.svg b/icon-themes/sifr_dark_svg/cmd/es/sc_bold.svg deleted file mode 100644 index b813a234ad67..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/es/sc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/es/sc_italic.svg b/icon-themes/sifr_dark_svg/cmd/es/sc_italic.svg deleted file mode 100644 index e5516c373fc9..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/es/sc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/es/sc_numberformatdecimal.svg b/icon-themes/sifr_dark_svg/cmd/es/sc_numberformatdecimal.svg deleted file mode 100644 index da3deac944d2..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/es/sc_numberformatdecimal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/es/sc_numberformatthousands.svg b/icon-themes/sifr_dark_svg/cmd/es/sc_numberformatthousands.svg deleted file mode 100644 index 33347449778a..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/es/sc_numberformatthousands.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/es/sc_underline.svg b/icon-themes/sifr_dark_svg/cmd/es/sc_underline.svg deleted file mode 100644 index 40ab3d28ed8b..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/es/sc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/es/sc_underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/es/sc_underlinedouble.svg deleted file mode 100644 index 1b832bf5bf38..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/es/sc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/fr/lc_underline.svg b/icon-themes/sifr_dark_svg/cmd/fr/lc_underline.svg deleted file mode 100644 index 34231acfa6f9..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/fr/lc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/fr/lc_underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/fr/lc_underlinedouble.svg deleted file mode 100644 index d1234f0cf6e7..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/fr/lc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/fr/sc_underline.svg b/icon-themes/sifr_dark_svg/cmd/fr/sc_underline.svg deleted file mode 100644 index 40ab3d28ed8b..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/fr/sc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/fr/sc_underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/fr/sc_underlinedouble.svg deleted file mode 100644 index 1b832bf5bf38..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/fr/sc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/hu/lc_italic.svg b/icon-themes/sifr_dark_svg/cmd/hu/lc_italic.svg index 5c9e69713bb5..55f3d2d2f207 100644 --- a/icon-themes/sifr_dark_svg/cmd/hu/lc_italic.svg +++ b/icon-themes/sifr_dark_svg/cmd/hu/lc_italic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/hu/sc_italic.svg b/icon-themes/sifr_dark_svg/cmd/hu/sc_italic.svg index bcdcd651cd0d..4cccd7e51129 100644 --- a/icon-themes/sifr_dark_svg/cmd/hu/sc_italic.svg +++ b/icon-themes/sifr_dark_svg/cmd/hu/sc_italic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/it/lc_bold.svg b/icon-themes/sifr_dark_svg/cmd/it/lc_bold.svg deleted file mode 100644 index 9043e8581f74..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/it/lc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/it/lc_italic.svg b/icon-themes/sifr_dark_svg/cmd/it/lc_italic.svg deleted file mode 100644 index 3f64a0659881..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/it/lc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/it/lc_underline.svg b/icon-themes/sifr_dark_svg/cmd/it/lc_underline.svg deleted file mode 100644 index 34231acfa6f9..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/it/lc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/it/lc_underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/it/lc_underlinedouble.svg deleted file mode 100644 index d1234f0cf6e7..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/it/lc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/it/sc_bold.svg b/icon-themes/sifr_dark_svg/cmd/it/sc_bold.svg deleted file mode 100644 index c6bf332c5e50..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/it/sc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/it/sc_italic.svg b/icon-themes/sifr_dark_svg/cmd/it/sc_italic.svg deleted file mode 100644 index 6754bbd927fc..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/it/sc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/it/sc_underline.svg b/icon-themes/sifr_dark_svg/cmd/it/sc_underline.svg deleted file mode 100644 index 40ab3d28ed8b..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/it/sc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/it/sc_underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/it/sc_underlinedouble.svg deleted file mode 100644 index 1b832bf5bf38..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/it/sc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/nl/lc_italic.svg b/icon-themes/sifr_dark_svg/cmd/nl/lc_italic.svg deleted file mode 100644 index 3f64a0659881..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/nl/lc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/nl/sc_italic.svg b/icon-themes/sifr_dark_svg/cmd/nl/sc_italic.svg deleted file mode 100644 index e5516c373fc9..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/nl/sc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/pl/lc_bold.svg b/icon-themes/sifr_dark_svg/cmd/pl/lc_bold.svg deleted file mode 100644 index 9043e8581f74..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/pl/lc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/pl/lc_italic.svg b/icon-themes/sifr_dark_svg/cmd/pl/lc_italic.svg deleted file mode 100644 index a190bed12c51..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/pl/lc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/pl/lc_underline.svg b/icon-themes/sifr_dark_svg/cmd/pl/lc_underline.svg index 195817acbad1..880118c67d08 100644 --- a/icon-themes/sifr_dark_svg/cmd/pl/lc_underline.svg +++ b/icon-themes/sifr_dark_svg/cmd/pl/lc_underline.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/pl/lc_underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/pl/lc_underlinedouble.svg index 880118c67d08..195817acbad1 100644 --- a/icon-themes/sifr_dark_svg/cmd/pl/lc_underlinedouble.svg +++ b/icon-themes/sifr_dark_svg/cmd/pl/lc_underlinedouble.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/pl/sc_bold.svg b/icon-themes/sifr_dark_svg/cmd/pl/sc_bold.svg deleted file mode 100644 index c6bf332c5e50..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/pl/sc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/pl/sc_italic.svg b/icon-themes/sifr_dark_svg/cmd/pl/sc_italic.svg deleted file mode 100644 index 7f3a15d5194a..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/pl/sc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/pt-BR/lc_bold.svg b/icon-themes/sifr_dark_svg/cmd/pt-BR/lc_bold.svg deleted file mode 100644 index c4e9565ccf2d..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/pt-BR/lc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/pt-BR/lc_underline.svg b/icon-themes/sifr_dark_svg/cmd/pt-BR/lc_underline.svg deleted file mode 100644 index 34231acfa6f9..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/pt-BR/lc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/pt-BR/lc_underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/pt-BR/lc_underlinedouble.svg deleted file mode 100644 index d1234f0cf6e7..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/pt-BR/lc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/pt-BR/sc_bold.svg b/icon-themes/sifr_dark_svg/cmd/pt-BR/sc_bold.svg deleted file mode 100644 index b813a234ad67..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/pt-BR/sc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/pt-BR/sc_underline.svg b/icon-themes/sifr_dark_svg/cmd/pt-BR/sc_underline.svg deleted file mode 100644 index 40ab3d28ed8b..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/pt-BR/sc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/pt-BR/sc_underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/pt-BR/sc_underlinedouble.svg deleted file mode 100644 index 1b832bf5bf38..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/pt-BR/sc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/pt/lc_bold.svg b/icon-themes/sifr_dark_svg/cmd/pt/lc_bold.svg deleted file mode 100644 index c4e9565ccf2d..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/pt/lc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/pt/lc_underline.svg b/icon-themes/sifr_dark_svg/cmd/pt/lc_underline.svg deleted file mode 100644 index 34231acfa6f9..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/pt/lc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/pt/lc_underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/pt/lc_underlinedouble.svg deleted file mode 100644 index d1234f0cf6e7..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/pt/lc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/pt/sc_bold.svg b/icon-themes/sifr_dark_svg/cmd/pt/sc_bold.svg deleted file mode 100644 index b813a234ad67..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/pt/sc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/pt/sc_underline.svg b/icon-themes/sifr_dark_svg/cmd/pt/sc_underline.svg deleted file mode 100644 index 40ab3d28ed8b..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/pt/sc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/pt/sc_underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/pt/sc_underlinedouble.svg deleted file mode 100644 index 1b832bf5bf38..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/pt/sc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/ru/lc_italic.svg b/icon-themes/sifr_dark_svg/cmd/ru/lc_italic.svg deleted file mode 100644 index a190bed12c51..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/ru/lc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/ru/sc_italic.svg b/icon-themes/sifr_dark_svg/cmd/ru/sc_italic.svg deleted file mode 100644 index 7f3a15d5194a..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/ru/sc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/sl/lc_underline.svg b/icon-themes/sifr_dark_svg/cmd/sl/lc_underline.svg deleted file mode 100644 index 195817acbad1..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/sl/lc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/sl/lc_underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/sl/lc_underlinedouble.svg deleted file mode 100644 index 880118c67d08..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/sl/lc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/sl/sc_underline.svg b/icon-themes/sifr_dark_svg/cmd/sl/sc_underline.svg deleted file mode 100644 index 83ef643170ee..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/sl/sc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/sl/sc_underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/sl/sc_underlinedouble.svg deleted file mode 100644 index c46741a10075..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/sl/sc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/sv/lc_bold.svg b/icon-themes/sifr_dark_svg/cmd/sv/lc_bold.svg deleted file mode 100644 index 18bc466bdd77..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/sv/lc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/sv/lc_italic.svg b/icon-themes/sifr_dark_svg/cmd/sv/lc_italic.svg deleted file mode 100644 index a190bed12c51..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/sv/lc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/sv/sc_bold.svg b/icon-themes/sifr_dark_svg/cmd/sv/sc_bold.svg deleted file mode 100644 index f11c55285910..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/sv/sc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/sv/sc_italic.svg b/icon-themes/sifr_dark_svg/cmd/sv/sc_italic.svg deleted file mode 100644 index 7f3a15d5194a..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/sv/sc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/tr/lc_bold.svg b/icon-themes/sifr_dark_svg/cmd/tr/lc_bold.svg deleted file mode 100644 index 4cbe9291581d..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/tr/lc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/tr/lc_underline.svg b/icon-themes/sifr_dark_svg/cmd/tr/lc_underline.svg deleted file mode 100644 index 8d45c7c2469e..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/tr/lc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/tr/lc_underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/tr/lc_underlinedouble.svg deleted file mode 100644 index 96052b0454a3..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/tr/lc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/tr/sc_bold.svg b/icon-themes/sifr_dark_svg/cmd/tr/sc_bold.svg deleted file mode 100644 index 6a90d71fe48a..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/tr/sc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/tr/sc_underline.svg b/icon-themes/sifr_dark_svg/cmd/tr/sc_underline.svg deleted file mode 100644 index a67177d58009..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/tr/sc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/cmd/tr/sc_underlinedouble.svg b/icon-themes/sifr_dark_svg/cmd/tr/sc_underlinedouble.svg deleted file mode 100644 index 7f908664eb70..000000000000 --- a/icon-themes/sifr_dark_svg/cmd/tr/sc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/sd/res/placeholder_chart_large.svg b/icon-themes/sifr_dark_svg/sd/res/placeholder_chart_large.svg new file mode 100644 index 000000000000..b12ea9e75b4f --- /dev/null +++ b/icon-themes/sifr_dark_svg/sd/res/placeholder_chart_large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/sd/res/placeholder_chart_large_hover.svg b/icon-themes/sifr_dark_svg/sd/res/placeholder_chart_large_hover.svg new file mode 100644 index 000000000000..6e0c08446bf8 --- /dev/null +++ b/icon-themes/sifr_dark_svg/sd/res/placeholder_chart_large_hover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/sd/res/placeholder_chart_small.svg b/icon-themes/sifr_dark_svg/sd/res/placeholder_chart_small.svg new file mode 100644 index 000000000000..d0f8b03e5b7b --- /dev/null +++ b/icon-themes/sifr_dark_svg/sd/res/placeholder_chart_small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/sd/res/placeholder_chart_small_hover.svg b/icon-themes/sifr_dark_svg/sd/res/placeholder_chart_small_hover.svg new file mode 100644 index 000000000000..d1723d6670d3 --- /dev/null +++ b/icon-themes/sifr_dark_svg/sd/res/placeholder_chart_small_hover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/sd/res/placeholder_image_large.svg b/icon-themes/sifr_dark_svg/sd/res/placeholder_image_large.svg new file mode 100644 index 000000000000..1c92f7bd95fe --- /dev/null +++ b/icon-themes/sifr_dark_svg/sd/res/placeholder_image_large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/sd/res/placeholder_image_large_hover.svg b/icon-themes/sifr_dark_svg/sd/res/placeholder_image_large_hover.svg new file mode 100644 index 000000000000..d6b61d3338db --- /dev/null +++ b/icon-themes/sifr_dark_svg/sd/res/placeholder_image_large_hover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/sd/res/placeholder_image_small.svg b/icon-themes/sifr_dark_svg/sd/res/placeholder_image_small.svg new file mode 100644 index 000000000000..8128e20b9937 --- /dev/null +++ b/icon-themes/sifr_dark_svg/sd/res/placeholder_image_small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/sd/res/placeholder_image_small_hover.svg b/icon-themes/sifr_dark_svg/sd/res/placeholder_image_small_hover.svg new file mode 100644 index 000000000000..83355a40533d --- /dev/null +++ b/icon-themes/sifr_dark_svg/sd/res/placeholder_image_small_hover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/sd/res/placeholder_movie_large.svg b/icon-themes/sifr_dark_svg/sd/res/placeholder_movie_large.svg new file mode 100644 index 000000000000..ebbfbfaeb0b8 --- /dev/null +++ b/icon-themes/sifr_dark_svg/sd/res/placeholder_movie_large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/sd/res/placeholder_movie_large_hover.svg b/icon-themes/sifr_dark_svg/sd/res/placeholder_movie_large_hover.svg new file mode 100644 index 000000000000..d5d725bac960 --- /dev/null +++ b/icon-themes/sifr_dark_svg/sd/res/placeholder_movie_large_hover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/sd/res/placeholder_movie_small.svg b/icon-themes/sifr_dark_svg/sd/res/placeholder_movie_small.svg new file mode 100644 index 000000000000..d6db9363fd65 --- /dev/null +++ b/icon-themes/sifr_dark_svg/sd/res/placeholder_movie_small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/sd/res/placeholder_movie_small_hover.svg b/icon-themes/sifr_dark_svg/sd/res/placeholder_movie_small_hover.svg new file mode 100644 index 000000000000..ed061888add2 --- /dev/null +++ b/icon-themes/sifr_dark_svg/sd/res/placeholder_movie_small_hover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/sd/res/placeholder_table_large.svg b/icon-themes/sifr_dark_svg/sd/res/placeholder_table_large.svg new file mode 100644 index 000000000000..3634e0f06acf --- /dev/null +++ b/icon-themes/sifr_dark_svg/sd/res/placeholder_table_large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/sd/res/placeholder_table_large_hover.svg b/icon-themes/sifr_dark_svg/sd/res/placeholder_table_large_hover.svg new file mode 100644 index 000000000000..219907817013 --- /dev/null +++ b/icon-themes/sifr_dark_svg/sd/res/placeholder_table_large_hover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/sd/res/placeholder_table_small.svg b/icon-themes/sifr_dark_svg/sd/res/placeholder_table_small.svg new file mode 100644 index 000000000000..81188d59a615 --- /dev/null +++ b/icon-themes/sifr_dark_svg/sd/res/placeholder_table_small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_dark_svg/sd/res/placeholder_table_small_hover.svg b/icon-themes/sifr_dark_svg/sd/res/placeholder_table_small_hover.svg new file mode 100644 index 000000000000..5ee3a271298b --- /dev/null +++ b/icon-themes/sifr_dark_svg/sd/res/placeholder_table_small_hover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/bg/bold.svg b/icon-themes/sifr_svg/cmd/32/bg/bold.svg new file mode 100644 index 000000000000..53f6dab0e652 --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/bg/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/bg/italic.svg b/icon-themes/sifr_svg/cmd/32/bg/italic.svg new file mode 100644 index 000000000000..05bc2de314bb --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/bg/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/bg/strikeout.svg b/icon-themes/sifr_svg/cmd/32/bg/strikeout.svg new file mode 100644 index 000000000000..a5acc09baf12 --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/bg/strikeout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/ca/bold.svg b/icon-themes/sifr_svg/cmd/32/ca/bold.svg index f2537fde6757..74cb25664799 100644 --- a/icon-themes/sifr_svg/cmd/32/ca/bold.svg +++ b/icon-themes/sifr_svg/cmd/32/ca/bold.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/ca/italic.svg b/icon-themes/sifr_svg/cmd/32/ca/italic.svg new file mode 100644 index 000000000000..a000bf69e0f2 --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/ca/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/ca/underline.svg b/icon-themes/sifr_svg/cmd/32/ca/underline.svg index 3ea680e25f11..8e76294d3417 100644 --- a/icon-themes/sifr_svg/cmd/32/ca/underline.svg +++ b/icon-themes/sifr_svg/cmd/32/ca/underline.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/ca/underlinedouble.svg b/icon-themes/sifr_svg/cmd/32/ca/underlinedouble.svg index f2ee5a5994d7..1c7bd8897d5b 100644 --- a/icon-themes/sifr_svg/cmd/32/ca/underlinedouble.svg +++ b/icon-themes/sifr_svg/cmd/32/ca/underlinedouble.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/de/bold.svg b/icon-themes/sifr_svg/cmd/32/de/bold.svg new file mode 100644 index 000000000000..b19b9586774c --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/de/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/fr/bold.svg b/icon-themes/sifr_svg/cmd/32/fr/bold.svg new file mode 100644 index 000000000000..2e40a524969a --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/fr/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/hu/italic.svg b/icon-themes/sifr_svg/cmd/32/hu/italic.svg new file mode 100644 index 000000000000..5323dcce76bd --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/hu/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/hu/underline.svg b/icon-themes/sifr_svg/cmd/32/hu/underline.svg new file mode 100644 index 000000000000..f2eb302c9d5b --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/hu/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/hu/underlinedouble.svg b/icon-themes/sifr_svg/cmd/32/hu/underlinedouble.svg new file mode 100644 index 000000000000..b9462c5b6c05 --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/hu/underlinedouble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/italic.svg b/icon-themes/sifr_svg/cmd/32/italic.svg index 736fd6ae1607..09b3b279e146 100644 --- a/icon-themes/sifr_svg/cmd/32/italic.svg +++ b/icon-themes/sifr_svg/cmd/32/italic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/km/bold.svg b/icon-themes/sifr_svg/cmd/32/km/bold.svg new file mode 100644 index 000000000000..54d22115732b --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/km/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/km/italic.svg b/icon-themes/sifr_svg/cmd/32/km/italic.svg new file mode 100644 index 000000000000..80768d29e57f --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/km/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/km/underline.svg b/icon-themes/sifr_svg/cmd/32/km/underline.svg new file mode 100644 index 000000000000..049b35ef136b --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/km/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/km/underlinedouble.svg b/icon-themes/sifr_svg/cmd/32/km/underlinedouble.svg new file mode 100644 index 000000000000..3724c49feeae --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/km/underlinedouble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/nl/bold.svg b/icon-themes/sifr_svg/cmd/32/nl/bold.svg new file mode 100644 index 000000000000..731d0763a061 --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/nl/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/nl/underline.svg b/icon-themes/sifr_svg/cmd/32/nl/underline.svg new file mode 100644 index 000000000000..3ff2943fed89 --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/nl/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/nl/underlinedouble.svg b/icon-themes/sifr_svg/cmd/32/nl/underlinedouble.svg new file mode 100644 index 000000000000..c6cfe44ee03b --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/nl/underlinedouble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/pl/underline.svg b/icon-themes/sifr_svg/cmd/32/pl/underline.svg new file mode 100644 index 000000000000..41a42c3f17fb --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/pl/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/pl/underlinedouble.svg b/icon-themes/sifr_svg/cmd/32/pl/underlinedouble.svg new file mode 100644 index 000000000000..2438d748e30d --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/pl/underlinedouble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/ru/bold.svg b/icon-themes/sifr_svg/cmd/32/ru/bold.svg new file mode 100644 index 000000000000..dc2da1aa3bb0 --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/ru/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/ru/underline.svg b/icon-themes/sifr_svg/cmd/32/ru/underline.svg new file mode 100644 index 000000000000..0d9b7170a9fe --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/ru/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/ru/underlinedouble.svg b/icon-themes/sifr_svg/cmd/32/ru/underlinedouble.svg new file mode 100644 index 000000000000..256b53d6054f --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/ru/underlinedouble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/sl/bold.svg b/icon-themes/sifr_svg/cmd/32/sl/bold.svg new file mode 100644 index 000000000000..3eb6790f0124 --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/sl/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/sl/italic.svg b/icon-themes/sifr_svg/cmd/32/sl/italic.svg new file mode 100644 index 000000000000..b8598a475541 --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/sl/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/32/tr/italic.svg b/icon-themes/sifr_svg/cmd/32/tr/italic.svg new file mode 100644 index 000000000000..b13d8b3c0ec1 --- /dev/null +++ b/icon-themes/sifr_svg/cmd/32/tr/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/bg/lc_bold.svg b/icon-themes/sifr_svg/cmd/bg/lc_bold.svg new file mode 100644 index 000000000000..ad219cc90a70 --- /dev/null +++ b/icon-themes/sifr_svg/cmd/bg/lc_bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/bg/lc_italic.svg b/icon-themes/sifr_svg/cmd/bg/lc_italic.svg new file mode 100644 index 000000000000..b3081e9af1b1 --- /dev/null +++ b/icon-themes/sifr_svg/cmd/bg/lc_italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/bg/lc_strikeout.svg b/icon-themes/sifr_svg/cmd/bg/lc_strikeout.svg new file mode 100644 index 000000000000..ca3b956611b9 --- /dev/null +++ b/icon-themes/sifr_svg/cmd/bg/lc_strikeout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/bg/sc_bold.svg b/icon-themes/sifr_svg/cmd/bg/sc_bold.svg new file mode 100644 index 000000000000..bc0844f61c6c --- /dev/null +++ b/icon-themes/sifr_svg/cmd/bg/sc_bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/bg/sc_italic.svg b/icon-themes/sifr_svg/cmd/bg/sc_italic.svg new file mode 100644 index 000000000000..fb2395933d20 --- /dev/null +++ b/icon-themes/sifr_svg/cmd/bg/sc_italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/bg/sc_strikeout.svg b/icon-themes/sifr_svg/cmd/bg/sc_strikeout.svg new file mode 100644 index 000000000000..4204f91c0319 --- /dev/null +++ b/icon-themes/sifr_svg/cmd/bg/sc_strikeout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/es/lc_bold.svg b/icon-themes/sifr_svg/cmd/es/lc_bold.svg deleted file mode 100644 index bbed0b346b7f..000000000000 --- a/icon-themes/sifr_svg/cmd/es/lc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/es/lc_italic.svg b/icon-themes/sifr_svg/cmd/es/lc_italic.svg deleted file mode 100644 index aa4a710c8a46..000000000000 --- a/icon-themes/sifr_svg/cmd/es/lc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/es/lc_numberformatdecimal.svg b/icon-themes/sifr_svg/cmd/es/lc_numberformatdecimal.svg deleted file mode 100644 index 357ef109fc5a..000000000000 --- a/icon-themes/sifr_svg/cmd/es/lc_numberformatdecimal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/es/lc_numberformatthousands.svg b/icon-themes/sifr_svg/cmd/es/lc_numberformatthousands.svg deleted file mode 100644 index 69d7ebb33194..000000000000 --- a/icon-themes/sifr_svg/cmd/es/lc_numberformatthousands.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/es/lc_underline.svg b/icon-themes/sifr_svg/cmd/es/lc_underline.svg deleted file mode 100644 index 7a4cb0443fd5..000000000000 --- a/icon-themes/sifr_svg/cmd/es/lc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/es/lc_underlinedouble.svg b/icon-themes/sifr_svg/cmd/es/lc_underlinedouble.svg deleted file mode 100644 index 681e210075b3..000000000000 --- a/icon-themes/sifr_svg/cmd/es/lc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/es/sc_bold.svg b/icon-themes/sifr_svg/cmd/es/sc_bold.svg deleted file mode 100644 index 48f5b45b0cde..000000000000 --- a/icon-themes/sifr_svg/cmd/es/sc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/es/sc_italic.svg b/icon-themes/sifr_svg/cmd/es/sc_italic.svg deleted file mode 100644 index ffbe66af33fe..000000000000 --- a/icon-themes/sifr_svg/cmd/es/sc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/es/sc_numberformatdecimal.svg b/icon-themes/sifr_svg/cmd/es/sc_numberformatdecimal.svg deleted file mode 100644 index 6d4820de93eb..000000000000 --- a/icon-themes/sifr_svg/cmd/es/sc_numberformatdecimal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/es/sc_numberformatthousands.svg b/icon-themes/sifr_svg/cmd/es/sc_numberformatthousands.svg deleted file mode 100644 index b330474c0baa..000000000000 --- a/icon-themes/sifr_svg/cmd/es/sc_numberformatthousands.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/es/sc_underline.svg b/icon-themes/sifr_svg/cmd/es/sc_underline.svg deleted file mode 100644 index 3d7245d3f4a4..000000000000 --- a/icon-themes/sifr_svg/cmd/es/sc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/es/sc_underlinedouble.svg b/icon-themes/sifr_svg/cmd/es/sc_underlinedouble.svg deleted file mode 100644 index a728004d00bb..000000000000 --- a/icon-themes/sifr_svg/cmd/es/sc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/fr/lc_underline.svg b/icon-themes/sifr_svg/cmd/fr/lc_underline.svg deleted file mode 100644 index 7a4cb0443fd5..000000000000 --- a/icon-themes/sifr_svg/cmd/fr/lc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/fr/lc_underlinedouble.svg b/icon-themes/sifr_svg/cmd/fr/lc_underlinedouble.svg deleted file mode 100644 index 681e210075b3..000000000000 --- a/icon-themes/sifr_svg/cmd/fr/lc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/fr/sc_underline.svg b/icon-themes/sifr_svg/cmd/fr/sc_underline.svg deleted file mode 100644 index 3d7245d3f4a4..000000000000 --- a/icon-themes/sifr_svg/cmd/fr/sc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/fr/sc_underlinedouble.svg b/icon-themes/sifr_svg/cmd/fr/sc_underlinedouble.svg deleted file mode 100644 index a728004d00bb..000000000000 --- a/icon-themes/sifr_svg/cmd/fr/sc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/hu/lc_italic.svg b/icon-themes/sifr_svg/cmd/hu/lc_italic.svg index 86e6a49381ee..e07e524efcec 100644 --- a/icon-themes/sifr_svg/cmd/hu/lc_italic.svg +++ b/icon-themes/sifr_svg/cmd/hu/lc_italic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/hu/sc_italic.svg b/icon-themes/sifr_svg/cmd/hu/sc_italic.svg index 25725a49ff06..ef14d06813d5 100644 --- a/icon-themes/sifr_svg/cmd/hu/sc_italic.svg +++ b/icon-themes/sifr_svg/cmd/hu/sc_italic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/it/lc_bold.svg b/icon-themes/sifr_svg/cmd/it/lc_bold.svg deleted file mode 100644 index 126528d68767..000000000000 --- a/icon-themes/sifr_svg/cmd/it/lc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/it/lc_italic.svg b/icon-themes/sifr_svg/cmd/it/lc_italic.svg deleted file mode 100644 index aa4a710c8a46..000000000000 --- a/icon-themes/sifr_svg/cmd/it/lc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/it/lc_underline.svg b/icon-themes/sifr_svg/cmd/it/lc_underline.svg deleted file mode 100644 index 7a4cb0443fd5..000000000000 --- a/icon-themes/sifr_svg/cmd/it/lc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/it/lc_underlinedouble.svg b/icon-themes/sifr_svg/cmd/it/lc_underlinedouble.svg deleted file mode 100644 index 681e210075b3..000000000000 --- a/icon-themes/sifr_svg/cmd/it/lc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/it/sc_bold.svg b/icon-themes/sifr_svg/cmd/it/sc_bold.svg deleted file mode 100644 index 407c6f2d6c12..000000000000 --- a/icon-themes/sifr_svg/cmd/it/sc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/it/sc_italic.svg b/icon-themes/sifr_svg/cmd/it/sc_italic.svg deleted file mode 100644 index 9d0b80d88d4b..000000000000 --- a/icon-themes/sifr_svg/cmd/it/sc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/it/sc_underline.svg b/icon-themes/sifr_svg/cmd/it/sc_underline.svg deleted file mode 100644 index 3d7245d3f4a4..000000000000 --- a/icon-themes/sifr_svg/cmd/it/sc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/it/sc_underlinedouble.svg b/icon-themes/sifr_svg/cmd/it/sc_underlinedouble.svg deleted file mode 100644 index a728004d00bb..000000000000 --- a/icon-themes/sifr_svg/cmd/it/sc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/nl/lc_italic.svg b/icon-themes/sifr_svg/cmd/nl/lc_italic.svg deleted file mode 100644 index aa4a710c8a46..000000000000 --- a/icon-themes/sifr_svg/cmd/nl/lc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/nl/sc_italic.svg b/icon-themes/sifr_svg/cmd/nl/sc_italic.svg deleted file mode 100644 index ffbe66af33fe..000000000000 --- a/icon-themes/sifr_svg/cmd/nl/sc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/pl/lc_bold.svg b/icon-themes/sifr_svg/cmd/pl/lc_bold.svg deleted file mode 100644 index 126528d68767..000000000000 --- a/icon-themes/sifr_svg/cmd/pl/lc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/pl/lc_italic.svg b/icon-themes/sifr_svg/cmd/pl/lc_italic.svg deleted file mode 100644 index 0ca5d08ac922..000000000000 --- a/icon-themes/sifr_svg/cmd/pl/lc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/pl/lc_underline.svg b/icon-themes/sifr_svg/cmd/pl/lc_underline.svg index a5308b61f1ee..4156d803dade 100644 --- a/icon-themes/sifr_svg/cmd/pl/lc_underline.svg +++ b/icon-themes/sifr_svg/cmd/pl/lc_underline.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/pl/lc_underlinedouble.svg b/icon-themes/sifr_svg/cmd/pl/lc_underlinedouble.svg index 4156d803dade..a5308b61f1ee 100644 --- a/icon-themes/sifr_svg/cmd/pl/lc_underlinedouble.svg +++ b/icon-themes/sifr_svg/cmd/pl/lc_underlinedouble.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/pl/sc_bold.svg b/icon-themes/sifr_svg/cmd/pl/sc_bold.svg deleted file mode 100644 index 407c6f2d6c12..000000000000 --- a/icon-themes/sifr_svg/cmd/pl/sc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/pl/sc_italic.svg b/icon-themes/sifr_svg/cmd/pl/sc_italic.svg deleted file mode 100644 index 8eb514198b0a..000000000000 --- a/icon-themes/sifr_svg/cmd/pl/sc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/pt-BR/lc_bold.svg b/icon-themes/sifr_svg/cmd/pt-BR/lc_bold.svg deleted file mode 100644 index bbed0b346b7f..000000000000 --- a/icon-themes/sifr_svg/cmd/pt-BR/lc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/pt-BR/lc_underline.svg b/icon-themes/sifr_svg/cmd/pt-BR/lc_underline.svg deleted file mode 100644 index 7a4cb0443fd5..000000000000 --- a/icon-themes/sifr_svg/cmd/pt-BR/lc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/pt-BR/lc_underlinedouble.svg b/icon-themes/sifr_svg/cmd/pt-BR/lc_underlinedouble.svg deleted file mode 100644 index 681e210075b3..000000000000 --- a/icon-themes/sifr_svg/cmd/pt-BR/lc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/pt-BR/sc_bold.svg b/icon-themes/sifr_svg/cmd/pt-BR/sc_bold.svg deleted file mode 100644 index 48f5b45b0cde..000000000000 --- a/icon-themes/sifr_svg/cmd/pt-BR/sc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/pt-BR/sc_underline.svg b/icon-themes/sifr_svg/cmd/pt-BR/sc_underline.svg deleted file mode 100644 index 3d7245d3f4a4..000000000000 --- a/icon-themes/sifr_svg/cmd/pt-BR/sc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/pt-BR/sc_underlinedouble.svg b/icon-themes/sifr_svg/cmd/pt-BR/sc_underlinedouble.svg deleted file mode 100644 index a728004d00bb..000000000000 --- a/icon-themes/sifr_svg/cmd/pt-BR/sc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/pt/lc_bold.svg b/icon-themes/sifr_svg/cmd/pt/lc_bold.svg deleted file mode 100644 index bbed0b346b7f..000000000000 --- a/icon-themes/sifr_svg/cmd/pt/lc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/pt/lc_underline.svg b/icon-themes/sifr_svg/cmd/pt/lc_underline.svg deleted file mode 100644 index 7a4cb0443fd5..000000000000 --- a/icon-themes/sifr_svg/cmd/pt/lc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/pt/lc_underlinedouble.svg b/icon-themes/sifr_svg/cmd/pt/lc_underlinedouble.svg deleted file mode 100644 index 681e210075b3..000000000000 --- a/icon-themes/sifr_svg/cmd/pt/lc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/pt/sc_bold.svg b/icon-themes/sifr_svg/cmd/pt/sc_bold.svg deleted file mode 100644 index 48f5b45b0cde..000000000000 --- a/icon-themes/sifr_svg/cmd/pt/sc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/pt/sc_underline.svg b/icon-themes/sifr_svg/cmd/pt/sc_underline.svg deleted file mode 100644 index 3d7245d3f4a4..000000000000 --- a/icon-themes/sifr_svg/cmd/pt/sc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/pt/sc_underlinedouble.svg b/icon-themes/sifr_svg/cmd/pt/sc_underlinedouble.svg deleted file mode 100644 index a728004d00bb..000000000000 --- a/icon-themes/sifr_svg/cmd/pt/sc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/ru/lc_italic.svg b/icon-themes/sifr_svg/cmd/ru/lc_italic.svg deleted file mode 100644 index 0ca5d08ac922..000000000000 --- a/icon-themes/sifr_svg/cmd/ru/lc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/ru/sc_italic.svg b/icon-themes/sifr_svg/cmd/ru/sc_italic.svg deleted file mode 100644 index 8eb514198b0a..000000000000 --- a/icon-themes/sifr_svg/cmd/ru/sc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/sl/lc_underline.svg b/icon-themes/sifr_svg/cmd/sl/lc_underline.svg deleted file mode 100644 index a5308b61f1ee..000000000000 --- a/icon-themes/sifr_svg/cmd/sl/lc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/sl/lc_underlinedouble.svg b/icon-themes/sifr_svg/cmd/sl/lc_underlinedouble.svg deleted file mode 100644 index 4156d803dade..000000000000 --- a/icon-themes/sifr_svg/cmd/sl/lc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/sl/sc_underline.svg b/icon-themes/sifr_svg/cmd/sl/sc_underline.svg deleted file mode 100644 index 00cda1e78d2e..000000000000 --- a/icon-themes/sifr_svg/cmd/sl/sc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/sl/sc_underlinedouble.svg b/icon-themes/sifr_svg/cmd/sl/sc_underlinedouble.svg deleted file mode 100644 index 7f9d1fca4e50..000000000000 --- a/icon-themes/sifr_svg/cmd/sl/sc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/sv/lc_bold.svg b/icon-themes/sifr_svg/cmd/sv/lc_bold.svg deleted file mode 100644 index 0ac822f3a5d2..000000000000 --- a/icon-themes/sifr_svg/cmd/sv/lc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/sv/lc_italic.svg b/icon-themes/sifr_svg/cmd/sv/lc_italic.svg deleted file mode 100644 index 0ca5d08ac922..000000000000 --- a/icon-themes/sifr_svg/cmd/sv/lc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/sv/sc_bold.svg b/icon-themes/sifr_svg/cmd/sv/sc_bold.svg deleted file mode 100644 index 85db088ed15b..000000000000 --- a/icon-themes/sifr_svg/cmd/sv/sc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/sv/sc_italic.svg b/icon-themes/sifr_svg/cmd/sv/sc_italic.svg deleted file mode 100644 index 8eb514198b0a..000000000000 --- a/icon-themes/sifr_svg/cmd/sv/sc_italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/tr/lc_bold.svg b/icon-themes/sifr_svg/cmd/tr/lc_bold.svg deleted file mode 100644 index 73f3ec86b268..000000000000 --- a/icon-themes/sifr_svg/cmd/tr/lc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/tr/lc_underline.svg b/icon-themes/sifr_svg/cmd/tr/lc_underline.svg deleted file mode 100644 index 28dec8a515f8..000000000000 --- a/icon-themes/sifr_svg/cmd/tr/lc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/tr/lc_underlinedouble.svg b/icon-themes/sifr_svg/cmd/tr/lc_underlinedouble.svg deleted file mode 100644 index ebe0f5b2838e..000000000000 --- a/icon-themes/sifr_svg/cmd/tr/lc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/tr/sc_bold.svg b/icon-themes/sifr_svg/cmd/tr/sc_bold.svg deleted file mode 100644 index 025a4b75068f..000000000000 --- a/icon-themes/sifr_svg/cmd/tr/sc_bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/tr/sc_underline.svg b/icon-themes/sifr_svg/cmd/tr/sc_underline.svg deleted file mode 100644 index 232b82caceae..000000000000 --- a/icon-themes/sifr_svg/cmd/tr/sc_underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/cmd/tr/sc_underlinedouble.svg b/icon-themes/sifr_svg/cmd/tr/sc_underlinedouble.svg deleted file mode 100644 index f98f6cb15024..000000000000 --- a/icon-themes/sifr_svg/cmd/tr/sc_underlinedouble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icon-themes/sifr_svg/sd/res/placeholder_chart_large.svg b/icon-themes/sifr_svg/sd/res/placeholder_chart_large.svg new file mode 100644 index 000000000000..0bd34b532ed2 --- /dev/null +++ b/icon-themes/sifr_svg/sd/res/placeholder_chart_large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/sd/res/placeholder_chart_large_hover.svg b/icon-themes/sifr_svg/sd/res/placeholder_chart_large_hover.svg new file mode 100644 index 000000000000..7a88401a09fe --- /dev/null +++ b/icon-themes/sifr_svg/sd/res/placeholder_chart_large_hover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/sd/res/placeholder_chart_small.svg b/icon-themes/sifr_svg/sd/res/placeholder_chart_small.svg new file mode 100644 index 000000000000..8916bf1fbd89 --- /dev/null +++ b/icon-themes/sifr_svg/sd/res/placeholder_chart_small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/sd/res/placeholder_chart_small_hover.svg b/icon-themes/sifr_svg/sd/res/placeholder_chart_small_hover.svg new file mode 100644 index 000000000000..90fa7711c885 --- /dev/null +++ b/icon-themes/sifr_svg/sd/res/placeholder_chart_small_hover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/sd/res/placeholder_image_large.svg b/icon-themes/sifr_svg/sd/res/placeholder_image_large.svg new file mode 100644 index 000000000000..259cd5e5eb49 --- /dev/null +++ b/icon-themes/sifr_svg/sd/res/placeholder_image_large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/sd/res/placeholder_image_large_hover.svg b/icon-themes/sifr_svg/sd/res/placeholder_image_large_hover.svg new file mode 100644 index 000000000000..1b5ae0d62093 --- /dev/null +++ b/icon-themes/sifr_svg/sd/res/placeholder_image_large_hover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/sd/res/placeholder_image_small.svg b/icon-themes/sifr_svg/sd/res/placeholder_image_small.svg new file mode 100644 index 000000000000..f97e5db016e5 --- /dev/null +++ b/icon-themes/sifr_svg/sd/res/placeholder_image_small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/sd/res/placeholder_image_small_hover.svg b/icon-themes/sifr_svg/sd/res/placeholder_image_small_hover.svg new file mode 100644 index 000000000000..bf7e1e751f1a --- /dev/null +++ b/icon-themes/sifr_svg/sd/res/placeholder_image_small_hover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/sd/res/placeholder_movie_large.svg b/icon-themes/sifr_svg/sd/res/placeholder_movie_large.svg new file mode 100644 index 000000000000..bb16a808a73e --- /dev/null +++ b/icon-themes/sifr_svg/sd/res/placeholder_movie_large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/sd/res/placeholder_movie_large_hover.svg b/icon-themes/sifr_svg/sd/res/placeholder_movie_large_hover.svg new file mode 100644 index 000000000000..5e1e906fd7c8 --- /dev/null +++ b/icon-themes/sifr_svg/sd/res/placeholder_movie_large_hover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/sd/res/placeholder_movie_small.svg b/icon-themes/sifr_svg/sd/res/placeholder_movie_small.svg new file mode 100644 index 000000000000..3186ed398064 --- /dev/null +++ b/icon-themes/sifr_svg/sd/res/placeholder_movie_small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/sd/res/placeholder_movie_small_hover.svg b/icon-themes/sifr_svg/sd/res/placeholder_movie_small_hover.svg new file mode 100644 index 000000000000..8d4dbf45dbf8 --- /dev/null +++ b/icon-themes/sifr_svg/sd/res/placeholder_movie_small_hover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/sd/res/placeholder_table_large.svg b/icon-themes/sifr_svg/sd/res/placeholder_table_large.svg new file mode 100644 index 000000000000..01717f8456a0 --- /dev/null +++ b/icon-themes/sifr_svg/sd/res/placeholder_table_large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/sd/res/placeholder_table_large_hover.svg b/icon-themes/sifr_svg/sd/res/placeholder_table_large_hover.svg new file mode 100644 index 000000000000..ee1e20ce8aa2 --- /dev/null +++ b/icon-themes/sifr_svg/sd/res/placeholder_table_large_hover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/sd/res/placeholder_table_small.svg b/icon-themes/sifr_svg/sd/res/placeholder_table_small.svg new file mode 100644 index 000000000000..54c5417f254e --- /dev/null +++ b/icon-themes/sifr_svg/sd/res/placeholder_table_small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon-themes/sifr_svg/sd/res/placeholder_table_small_hover.svg b/icon-themes/sifr_svg/sd/res/placeholder_table_small_hover.svg new file mode 100644 index 000000000000..7765854b2aed --- /dev/null +++ b/icon-themes/sifr_svg/sd/res/placeholder_table_small_hover.svg @@ -0,0 +1 @@ + \ No newline at end of file -- cgit v1.2.3 From 206e1ec3813a2d2765a206de75c70edd3b39f091 Mon Sep 17 00:00:00 2001 From: ilhan Date: Wed, 25 Mar 2020 14:01:57 +0100 Subject: tdf#130310 Load Sidebar Icons for extensions Changed else statement to include load of extension icons. Change-Id: I76ad068825ad1406329ca3807b2a919988091cbd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91108 Tested-by: Jenkins Reviewed-by: Michael Meeks --- sfx2/source/sidebar/Tools.cxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sfx2/source/sidebar/Tools.cxx b/sfx2/source/sidebar/Tools.cxx index cebfc93013d9..dcd90eb29d3b 100644 --- a/sfx2/source/sidebar/Tools.cxx +++ b/sfx2/source/sidebar/Tools.cxx @@ -53,12 +53,10 @@ Image Tools::GetImage ( { if (rsURL.getLength() > 0) { - OUString sPath; - if (rsURL.startsWith(".uno:")) return vcl::CommandInfoProvider::GetImageForCommand(rsURL, rxFrame); - else if (rsURL.startsWith("private:graphicrepository/", &sPath)) + else return Image(rsURL); } return Image(); -- cgit v1.2.3 From 9c36592a068443e22f67bd290306b6f2771a8195 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 26 Mar 2020 10:09:03 +0000 Subject: ofz#21385 SwFltAnchor FrameFormat deleted Change-Id: If2beeb112c98d65355714f0946001d3738eddded Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91090 Tested-by: Jenkins Reviewed-by: Michael Stahl (cherry picked from commit dbf6468764879ef05fc2492b82a31299668c27b4) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91114 --- sw/qa/core/data/ww6/pass/ofz21385-1.doc | Bin 0 -> 481786 bytes sw/source/filter/basflt/fltshell.cxx | 6 ++++++ 2 files changed, 6 insertions(+) create mode 100644 sw/qa/core/data/ww6/pass/ofz21385-1.doc diff --git a/sw/qa/core/data/ww6/pass/ofz21385-1.doc b/sw/qa/core/data/ww6/pass/ofz21385-1.doc new file mode 100644 index 000000000000..311c6ed5fe8a Binary files /dev/null and b/sw/qa/core/data/ww6/pass/ofz21385-1.doc differ diff --git a/sw/source/filter/basflt/fltshell.cxx b/sw/source/filter/basflt/fltshell.cxx index b95c9fa232ae..e6e0517a0489 100644 --- a/sw/source/filter/basflt/fltshell.cxx +++ b/sw/source/filter/basflt/fltshell.cxx @@ -998,6 +998,12 @@ void SwFltAnchorListener::Notify(const SfxHint& rHint) if(pFrameFormat) m_pFltAnchor->SetFrameFormat(pFrameFormat); } + else if (auto pDrawFrameFormatHint = dynamic_cast(&rHint)) + { + if (pDrawFrameFormatHint->m_eId != sw::DrawFrameFormatHintId::DYING) + return; + m_pFltAnchor->SetFrameFormat(nullptr); + } } // methods of SwFltRedline follow -- cgit v1.2.3 From 9ad9c9b869d8ead906283ed363ce0067d5570e06 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 26 Mar 2020 15:46:07 +0000 Subject: tdf#131380 crash on loading specific xlsx document mpPerIdx is null, because bEDS is true, assume 0 in this case Change-Id: I44c2433b0de57a28cece6b9b01ba543bdc3cb8d3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91145 Tested-by: Jenkins Reviewed-by: Eike Rathke (cherry picked from commit 0f5e930fffbe2151ffadc8461449e55015617f65) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91166 --- sc/source/core/tool/interpr8.cxx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sc/source/core/tool/interpr8.cxx b/sc/source/core/tool/interpr8.cxx index 9738c2ce7421..ce4234d0853e 100644 --- a/sc/source/core/tool/interpr8.cxx +++ b/sc/source/core/tool/interpr8.cxx @@ -993,17 +993,18 @@ void ScETSForecastCalculation::GetETSPredictionIntervals( const ScMatrixRef& rTM // fill array with forecasts, with RandDev() added to xScenRange if ( bAdditive ) { + double nPIdx = !bEDS ? mpPerIdx[mnCount - mnSmplInPrd] : 0.0; // calculation based on additive model xScenRange[ 0 ] = mpBase[ mnCount - 1 ] + mpTrend[ mnCount - 1 ] + - mpPerIdx[ mnCount - mnSmplInPrd ] + + nPIdx + RandDev(); aPredictions[ 0 ][ k ] = xScenRange[ 0 ]; - xScenBase[ 0 ] = mfAlpha * ( xScenRange[ 0 ] - mpPerIdx[ mnCount - mnSmplInPrd ] ) + + xScenBase[ 0 ] = mfAlpha * ( xScenRange[ 0 ] - nPIdx ) + ( 1 - mfAlpha ) * ( mpBase[ mnCount - 1 ] + mpTrend[ mnCount - 1 ] ); xScenTrend[ 0 ] = mfGamma * ( xScenBase[ 0 ] - mpBase[ mnCount - 1 ] ) + ( 1 - mfGamma ) * mpTrend[ mnCount - 1 ]; xScenPerIdx[ 0 ] = mfBeta * ( xScenRange[ 0 ] - xScenBase[ 0 ] ) + - ( 1 - mfBeta ) * mpPerIdx[ mnCount - mnSmplInPrd ]; + ( 1 - mfBeta ) * nPIdx; for ( SCSIZE i = 1; i < nSize; i++ ) { double fPerIdx; -- cgit v1.2.3