diff options
author | Cédric Bosdonnat <cedric.bosdonnat@free.fr> | 2012-12-12 22:33:49 +0100 |
---|---|---|
committer | Cédric Bosdonnat <cedric.bosdonnat@free.fr> | 2012-12-12 22:46:56 +0100 |
commit | 35211d334e36dc970624705dd9a663b5be8c2479 (patch) | |
tree | 8146afd5e1c8095cab50da630c39738ef241879b /sfx2/inc | |
parent | a5bfc2c6be6795dea5d615a7c3b5c6018354ace0 (diff) |
Template manager: filter on extensions, file type is localized
Change-Id: I4b4a4f8aaf253e663bbeb4f061c6aa87411b730f
Diffstat (limited to 'sfx2/inc')
-rw-r--r-- | sfx2/inc/sfx2/templateabstractview.hxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sfx2/inc/sfx2/templateabstractview.hxx b/sfx2/inc/sfx2/templateabstractview.hxx index 9194b8e7f6b6..276b38952cf6 100644 --- a/sfx2/inc/sfx2/templateabstractview.hxx +++ b/sfx2/inc/sfx2/templateabstractview.hxx @@ -45,9 +45,13 @@ public: : mApp(App) {} - bool operator () (const ThumbnailViewItem *pItem); + virtual ~ViewFilter_Application () {} -private: + virtual bool operator () (const ThumbnailViewItem *pItem); + + bool isValid (const rtl::OUString& rPath) const; + +protected: FILTER_APPLICATION mApp; }; |