summaryrefslogtreecommitdiff
path: root/include/svx
diff options
context:
space:
mode:
authorAditya <adityasahu1511@gmail.com>2020-08-27 00:24:00 +0530
committerTomaž Vajngerl <quikee@gmail.com>2020-09-04 11:26:46 +0200
commitbc8c29bea9393cd0f1a6cbff30291ccdfe1ccea0 (patch)
tree06f1b1186f0e254fb8fb7302bd488fbdf051114e /include/svx
parentb2d3cb906aa49ca2d83393712b9ed01d93826168 (diff)
svx: Rename GalleryTheme::mpGalleryBinaryEngine
Rename mpGalleryBinaryEngine to mpGalleryStorageEngine because GalleryTheme will have 2 engines: GalleryBinaryEngine and GalleryXMLEngine. Change-Id: I990a3655121b4e4e5735c6a8d5e5afe13c674b20 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101427 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include/svx')
-rw-r--r--include/svx/galtheme.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/galtheme.hxx b/include/svx/galtheme.hxx
index cb8e7c1e1869..985ce51e04bd 100644
--- a/include/svx/galtheme.hxx
+++ b/include/svx/galtheme.hxx
@@ -57,7 +57,7 @@ class SVXCORE_DLLPUBLIC GalleryTheme : public SfxBroadcaster
private:
- std::unique_ptr<GalleryBinaryEngine> mpGalleryBinaryEngine;
+ std::unique_ptr<GalleryBinaryEngine> mpGalleryStorageEngine;
GalleryObjectCollection maGalleryObjectCollection;
Gallery* pParent;
GalleryThemeEntry* pThm;
@@ -67,8 +67,8 @@ private:
bool bDragging;
bool bAbortActualize;
- std::unique_ptr<GalleryBinaryEngine> createGalleryBinaryEngine(bool bReadOnly);
- const std::unique_ptr<GalleryBinaryEngine>& getGalleryBinaryEngine() const { return mpGalleryBinaryEngine; }
+ std::unique_ptr<GalleryBinaryEngine> createGalleryStorageEngine(bool bReadOnly);
+ const std::unique_ptr<GalleryBinaryEngine>& getGalleryStorageEngine() const { return mpGalleryStorageEngine; }
SAL_DLLPRIVATE void ImplSetModified( bool bModified );
SAL_DLLPRIVATE void ImplBroadcast(sal_uInt32 nUpdatePos);