diff options
author | Michael Meeks <michael.meeks@suse.com> | 2013-05-08 17:10:02 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2013-05-15 09:37:39 +0100 |
commit | 22ca7c45b91d6f32de9f9b48c72d5b9d2374234d (patch) | |
tree | 7749e667b9aeb118ef0be94b4582c46d4009f5e6 /include/svx | |
parent | bb6b011fbbafb93d47620d5b4d05a721343147f5 (diff) |
galleries: implement first self-built sound gallery
Change-Id: Ibbf8f1f8b1590af461dfa5885adb1027580f8f15
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/galtheme.hxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/svx/galtheme.hxx b/include/svx/galtheme.hxx index d1b1461b491b..818d63085c32 100644 --- a/include/svx/galtheme.hxx +++ b/include/svx/galtheme.hxx @@ -91,6 +91,7 @@ private: GalleryObjectList aObjectList; String m_aDestDir; + bool m_bDestDirRelative; SotStorageRef aSvDrawStorageRef; Gallery* pParent; GalleryThemeEntry* pThm; @@ -140,8 +141,10 @@ public: SVX_DLLPUBLIC const OUString& GetName() const; const OUString& GetRealName() const; + // used for building gallery themes during compilation: const String& GetDestDir() const { return m_aDestDir; } - void SetDestDir(const String& rDestDir) { m_aDestDir = rDestDir; } + void SetDestDir(const String& rDestDir, bool bRelative = true) + { m_aDestDir = rDestDir; m_bDestDirRelative = bRelative; } const INetURLObject& GetThmURL() const; SVX_DLLPUBLIC const INetURLObject& GetSdgURL() const; |