diff options
author | Mathias Bauer <mba@openoffice.org> | 2009-12-11 00:02:35 +0100 |
---|---|---|
committer | Mathias Bauer <mba@openoffice.org> | 2009-12-11 00:02:35 +0100 |
commit | 8c63f1db383e5956f188b1320fd9cf6c7671b094 (patch) | |
tree | e9344d7ee7e3c5f4ac9e2f2d7c57265965ecdfdf | |
parent | a86a21b2081c7ed00c36e9ea0d8986fcce6b8b12 (diff) |
#i107450#: HelpAgent now can be started without linking against sfx2
-rw-r--r-- | vcl/inc/vcl/help.hxx | 1 | ||||
-rw-r--r-- | vcl/source/app/help.cxx | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/vcl/inc/vcl/help.hxx b/vcl/inc/vcl/help.hxx index 3c02616c89de..6302ab594a73 100644 --- a/vcl/inc/vcl/help.hxx +++ b/vcl/inc/vcl/help.hxx @@ -75,6 +75,7 @@ public: virtual BOOL Start( ULONG nHelpId, const Window* pWindow ); virtual BOOL Start( const XubString& rKeyWord, const Window* pWindow ); + virtual void OpenHelpAgent( ULONG nHelpId ); virtual XubString GetHelpText( ULONG nHelpId, const Window* pWindow ); virtual XubString GetHelpText( const String& aHelpURL, const Window* pWindow ); diff --git a/vcl/source/app/help.cxx b/vcl/source/app/help.cxx index 51f07b060c76..b23ef36f1a6b 100644 --- a/vcl/source/app/help.cxx +++ b/vcl/source/app/help.cxx @@ -70,6 +70,10 @@ BOOL Help::Start( ULONG, const Window* ) return FALSE; } +void Help::OpenHelpAgent( ULONG ) +{ +} + // ----------------------------------------------------------------------- BOOL Help::Start( const XubString&, const Window* ) |