diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-29 11:16:47 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-29 12:01:23 +0100 |
commit | fa551c422426962194b6bff4234f12eb5bdf57ca (patch) | |
tree | 7f6caa23f7470dc04700165626fde2fa5427015c | |
parent | 74393875bcad5890a9510c7e8fd8643f63e081c2 (diff) |
remove unused virtual method, slim this down initially
Change-Id: Ie4a912cc3c144c47a4bb59551ebb1c68f302569e
-rw-r--r-- | include/sfx2/templdlg.hxx | 1 | ||||
-rw-r--r-- | sfx2/source/inc/templdgi.hxx | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/include/sfx2/templdlg.hxx b/include/sfx2/templdlg.hxx index cc7344c60333..bc6cdc72cb1d 100644 --- a/include/sfx2/templdlg.hxx +++ b/include/sfx2/templdlg.hxx @@ -36,7 +36,6 @@ class ISfxTemplateCommon { public: virtual SfxStyleFamily GetActualFamily() const = 0; - virtual OUString GetSelectedEntry() const = 0; protected: ~ISfxTemplateCommon() {} diff --git a/sfx2/source/inc/templdgi.hxx b/sfx2/source/inc/templdgi.hxx index d313a6bc44ea..e49214b8c480 100644 --- a/sfx2/source/inc/templdgi.hxx +++ b/sfx2/source/inc/templdgi.hxx @@ -147,7 +147,6 @@ private: ISfxTemplateCommon_Impl( SfxCommonTemplateDialog_Impl* pDialogP ) : pDialog( pDialogP ) {} virtual ~ISfxTemplateCommon_Impl() {} virtual SfxStyleFamily GetActualFamily() const SAL_OVERRIDE { return pDialog->GetActualFamily(); } - virtual OUString GetSelectedEntry() const SAL_OVERRIDE { return pDialog->GetSelectedEntry(); } }; ISfxTemplateCommon_Impl aISfxTemplateCommon; |