diff options
author | Aditya <adityasahu1511@gmail.com> | 2020-05-14 23:54:59 +0530 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2020-05-25 13:02:48 +0200 |
commit | 94181db5c3ed607042dd1b0ea029f54ac8238cf1 (patch) | |
tree | 94b99613d76d1a1c76e02c151e196d4efab3155c /include/svx | |
parent | 88bd1509bf12e668a3a4107af42e8918171a7690 (diff) |
svx:unit tests for theme count, gallery theme entry functions in gallery
Change-Id: I7ff7f6f5607348e8ff135614d7de1957741a11fc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93305
Tested-by: Tomaž Vajngerl <quikee@gmail.com>
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/gallery1.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
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; |