diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-10-21 20:53:02 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-10-22 21:40:03 +0200 |
commit | 32f35ba5f01c580016e327a3fcceb88cb07164ed (patch) | |
tree | ba5d3c2b280cf9f96575e5101cb89e6100aa805c /include | |
parent | 1002675c64315b75d5a2ff75431d8de8d52459d9 (diff) |
rename SfxTemplateLocalView back to TemplateLocalView
Change-Id: Ib5221799604886120f498313ffd37c0a80987bc5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104646
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/templatedlg.hxx | 2 | ||||
-rw-r--r-- | include/sfx2/templatelocalview.hxx | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/sfx2/templatedlg.hxx b/include/sfx2/templatedlg.hxx index 9d2f637ad51c..b9544652e540 100644 --- a/include/sfx2/templatedlg.hxx +++ b/include/sfx2/templatedlg.hxx @@ -134,7 +134,7 @@ protected: std::unique_ptr<weld::CheckButton> mxCBXHideDlg; std::unique_ptr<weld::MenuButton> mxActionBar; std::unique_ptr<TemplateSearchView> mxSearchView; - std::unique_ptr<SfxTemplateLocalView> mxLocalView; + std::unique_ptr<TemplateLocalView> mxLocalView; std::unique_ptr<weld::Menu> mxTemplateDefaultMenu; std::unique_ptr<weld::CustomWeld> mxSearchViewWeld; std::unique_ptr<weld::CustomWeld> mxLocalViewWeld; diff --git a/include/sfx2/templatelocalview.hxx b/include/sfx2/templatelocalview.hxx index cd2efb89db8f..d77a7c781eb4 100644 --- a/include/sfx2/templatelocalview.hxx +++ b/include/sfx2/templatelocalview.hxx @@ -63,16 +63,16 @@ private: FILTER_APPLICATION mApp; }; -class SfxTemplateLocalView : public ThumbnailView +class TemplateLocalView : public ThumbnailView { typedef bool (*selection_cmp_fn)(const ThumbnailViewItem*,const ThumbnailViewItem*); public: - SfxTemplateLocalView(std::unique_ptr<weld::ScrolledWindow> xWindow, + TemplateLocalView(std::unique_ptr<weld::ScrolledWindow> xWindow, std::unique_ptr<weld::Menu> xMenu); - virtual ~SfxTemplateLocalView () override; + virtual ~TemplateLocalView () override; // Fill view with new item list void insertItems (const std::vector<TemplateItemProperties> &rTemplates, bool isRegionSelected = true, bool bShowCategoryInTooltip = false); |