diff options
author | Aditya <adityasahu1511@gmail.com> | 2020-08-27 02:20:53 +0530 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2020-09-04 11:27:13 +0200 |
commit | 6ccd883409e4799aa334bbe1047f42c795c9457b (patch) | |
tree | 09985ecc51e25ff5d62fe259faf4a529b6a95d9e /include | |
parent | bc8c29bea9393cd0f1a6cbff30291ccdfe1ccea0 (diff) |
svx: Rename GalleryThemeEntry::mpGalleryBinaryEngineEntry
Rename mpGalleryBinaryEngineEntry to mpGalleryStorageEngineEntry because
GalleryThemeEntry will have 2 engines: GalleryBinaryEngineEntry and
GalleryXMLEngineEntry.
Change-Id: I348d8df111f33cceacdbfe746bc484802fc18d13
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101431
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/gallery1.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/svx/gallery1.hxx b/include/svx/gallery1.hxx index 9fa13929f4dd..f74a5b5882fb 100644 --- a/include/svx/gallery1.hxx +++ b/include/svx/gallery1.hxx @@ -38,7 +38,7 @@ class GalleryThemeEntry { private: - std::unique_ptr<GalleryBinaryEngineEntry> mpGalleryBinaryEngineEntry; + std::unique_ptr<GalleryBinaryEngineEntry> mpGalleryStorageEngineEntry; GalleryStorageLocations maGalleryStorageLocations; OUString aName; sal_uInt32 nId; @@ -53,17 +53,17 @@ public: bool bReadOnly, bool bNewFile, sal_uInt32 nId, bool bThemeNameFromResource ); - std::unique_ptr<GalleryBinaryEngineEntry> createGalleryBinaryEngineEntry(); - const std::unique_ptr<GalleryBinaryEngineEntry>& getGalleryBinaryEngineEntry() const { return mpGalleryBinaryEngineEntry; } + std::unique_ptr<GalleryBinaryEngineEntry> createGalleryStorageEngineEntry(); + const std::unique_ptr<GalleryBinaryEngineEntry>& getGalleryStorageEngineEntry() const { return mpGalleryStorageEngineEntry; } const GalleryStorageLocations& getGalleryStorageLocations() const { return maGalleryStorageLocations; } const OUString& GetThemeName() const { return aName; } - const INetURLObject& GetThmURL() const { return mpGalleryBinaryEngineEntry->GetThmURL(); } - const INetURLObject& GetSdgURL() const { return mpGalleryBinaryEngineEntry->GetSdgURL(); } - const INetURLObject& GetSdvURL() const { return mpGalleryBinaryEngineEntry->GetSdvURL(); } - const INetURLObject& GetStrURL() const { return mpGalleryBinaryEngineEntry->GetStrURL(); } + const INetURLObject& GetThmURL() const { return mpGalleryStorageEngineEntry->GetThmURL(); } + const INetURLObject& GetSdgURL() const { return mpGalleryStorageEngineEntry->GetSdgURL(); } + const INetURLObject& GetSdvURL() const { return mpGalleryStorageEngineEntry->GetSdvURL(); } + const INetURLObject& GetStrURL() const { return mpGalleryStorageEngineEntry->GetStrURL(); } bool IsReadOnly() const { return bReadOnly; } bool IsDefault() const; |