From 94181db5c3ed607042dd1b0ea029f54ac8238cf1 Mon Sep 17 00:00:00 2001 From: Aditya Date: Thu, 14 May 2020 23:54:59 +0530 Subject: svx:unit tests for theme count, gallery theme entry functions in gallery MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I7ff7f6f5607348e8ff135614d7de1957741a11fc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93305 Tested-by: Tomaž Vajngerl Reviewed-by: Tomaž Vajngerl --- include/svx/gallery1.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/svx') diff --git a/include/svx/gallery1.hxx b/include/svx/gallery1.hxx index dc2631beb70e..aa3e986f9e78 100644 --- a/include/svx/gallery1.hxx +++ b/include/svx/gallery1.hxx @@ -112,10 +112,10 @@ public: static Gallery* GetGalleryInstance(); - SAL_DLLPRIVATE size_t GetThemeCount() const { return aThemeList.size(); } + size_t GetThemeCount() const { return aThemeList.size(); } SAL_DLLPRIVATE const GalleryThemeEntry* GetThemeInfo( size_t nPos ) { return nPos < aThemeList.size() ? aThemeList[ nPos ].get() : nullptr; } - SAL_DLLPRIVATE const GalleryThemeEntry* GetThemeInfo( const OUString& rThemeName ) { return ImplGetThemeEntry( rThemeName ); } + const GalleryThemeEntry* GetThemeInfo( const OUString& rThemeName ) { return ImplGetThemeEntry( rThemeName ); } bool HasTheme( const OUString& rThemeName ); SAL_DLLPRIVATE OUString GetThemeName( sal_uInt32 nThemeId ) const; -- cgit