diff options
author | Aditya <adityasahu1511@gmail.com> | 2020-07-20 17:13:13 +0530 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2020-07-30 07:30:05 +0200 |
commit | 104f7027ea3bea45849cb5d88a1893e69bf3606c (patch) | |
tree | fd81f655d3748852b2b4c279aabee32d7eff6ed3 /include/comphelper | |
parent | 1486f96317aa6eac34ddb7ef4e1c64824bb269b4 (diff) |
svx: GalleryObjectCollection shared class and related refactoring work
Add GalleryObjectCollection, a shared class primarily owned by GalleryTheme
which contains object list to be used by GalleryTheme and GalleryBinaryEngine.
Refactor ImplCreateUniqueURL, InsertGraphic()
Implement comphelper::GraphicMimeTypeHelper::GetExtensionForConvertDataFormat()
Refactor Actualize(), implement updateSvDrawObject(), updateTheme()
Move ImplCreateSvDrawStorage into constructor instead of calling in directly.
Change-Id: I6a8c552268628b4e192f45112ac9e8789c6e1609
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99035
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include/comphelper')
-rw-r--r-- | include/comphelper/graphicmimetype.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/comphelper/graphicmimetype.hxx b/include/comphelper/graphicmimetype.hxx index 5380c43a4cb0..53ffd49888e4 100644 --- a/include/comphelper/graphicmimetype.hxx +++ b/include/comphelper/graphicmimetype.hxx @@ -36,6 +36,7 @@ public: static OUString GetMimeTypeForImageStream(const css::uno::Reference<css::io::XInputStream>& xInputStream); static OUString GetMimeTypeForConvertDataFormat(ConvertDataFormat convertDataFormat); + static char const* GetExtensionForConvertDataFormat(ConvertDataFormat nFormat); }; } |