diff options
author | mhofmann <borim7@web.de> | 2013-03-24 15:12:27 +0100 |
---|---|---|
committer | Thorsten Behrens <tbehrens@suse.com> | 2013-03-25 00:09:06 +0000 |
commit | 4d05ee2411e4baf13eb9639ffdfd9ce896665396 (patch) | |
tree | 7353a08a9bffa5ff2f2c61453f30fba8748cddfb /vcl | |
parent | c724ad3de3c053cd482cd107a4ade4065980acb9 (diff) |
remove unused member maHelpFile and its getter/setter
Change-Id: I97b53be0a6110c6ca736de657cba48baa0445a12
Reviewed-on: https://gerrit.libreoffice.org/2965
Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Reviewed-by: Thorsten Behrens <tbehrens@suse.com>
Tested-by: Thorsten Behrens <tbehrens@suse.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/inc/vcl/help.hxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/vcl/inc/vcl/help.hxx b/vcl/inc/vcl/help.hxx index 2ee33c5a74d0..b74d8023f75c 100644 --- a/vcl/inc/vcl/help.hxx +++ b/vcl/inc/vcl/help.hxx @@ -59,16 +59,10 @@ class Window; class VCL_DLLPUBLIC Help { -private: - OUString maHelpFile; - public: Help(); virtual ~Help(); - void SetHelpFile( const OUString& rFileName ) { maHelpFile = rFileName; } - const OUString& GetHelpFile() const { return maHelpFile; } - virtual sal_Bool Start( const OUString& rHelpId, const Window* pWindow ); virtual sal_Bool SearchKeyword( const OUString& rKeyWord ); virtual void OpenHelpAgent( const OString& rHelpId ); |