diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-06 18:08:16 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-07 11:05:05 +0200 |
commit | 7df89ec7a2ccfc9b448ea33d0a9d4412062dee67 (patch) | |
tree | 7a5a54587481bb80458d0593af1695fca49b0f08 /svx/source/gallery2 | |
parent | 0241519f323b2b29db747467b8c3d9590c33f0df (diff) |
Remove unnecessary includes of sot/storage.hxx from include/
Change-Id: I242cd126814bbebdb99ea38d9e66513189c313d9
Diffstat (limited to 'svx/source/gallery2')
-rw-r--r-- | svx/source/gallery2/galmisc.cxx | 2 | ||||
-rw-r--r-- | svx/source/gallery2/galtheme.cxx | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/svx/source/gallery2/galmisc.cxx b/svx/source/gallery2/galmisc.cxx index 46dfae05b25c..cf2a75f1d920 100644 --- a/svx/source/gallery2/galmisc.cxx +++ b/svx/source/gallery2/galmisc.cxx @@ -17,7 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <sal/config.h> +#include <sot/storage.hxx> #include <unotools/streamwrap.hxx> #include <unotools/ucbstreamhelper.hxx> #include <comphelper/processfactory.hxx> diff --git a/svx/source/gallery2/galtheme.cxx b/svx/source/gallery2/galtheme.cxx index 76030e7e1e3d..047b4cc355ec 100644 --- a/svx/source/gallery2/galtheme.cxx +++ b/svx/source/gallery2/galtheme.cxx @@ -1533,6 +1533,12 @@ bool GalleryTheme::IsThemeNameFromResource() const { return pThm->IsNameFromReso bool GalleryTheme::IsReadOnly() const { return pThm->IsReadOnly(); } bool GalleryTheme::IsDefault() const { return pThm->IsDefault(); } bool GalleryTheme::IsModified() const { return pThm->IsModified(); } + +tools::SvRef<SotStorage> GalleryTheme::GetSvDrawStorage() const +{ + return aSvDrawStorageRef; +} + const OUString& GalleryTheme::GetName() const { return pThm->GetThemeName(); } void GalleryTheme::InsertAllThemes( ListBox& rListBox ) |