diff options
author | Mathias Bauer <mba@openoffice.org> | 2010-07-21 17:46:37 +0200 |
---|---|---|
committer | Mathias Bauer <mba@openoffice.org> | 2010-07-21 17:46:37 +0200 |
commit | 70146da8808a0aeb48bda3bb837711fa3a812042 (patch) | |
tree | b66a56c74c47d465ad693ea2cd009966424ab334 | |
parent | a929816d90303defcded933ef0337f2191fa2cec (diff) |
CWS changehid: #i111784#: rework keyword search
-rw-r--r-- | vcl/inc/vcl/help.hxx | 3 | ||||
-rw-r--r-- | vcl/source/app/help.cxx | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/vcl/inc/vcl/help.hxx b/vcl/inc/vcl/help.hxx index baafb92b4b03..1f4ba36d8f43 100644 --- a/vcl/inc/vcl/help.hxx +++ b/vcl/inc/vcl/help.hxx @@ -71,7 +71,8 @@ public: void SetHelpFile( const String& rFileName ) { maHelpFile = rFileName; } const String& GetHelpFile() const { return maHelpFile; } - virtual BOOL Start( const XubString& rKeyWord, const Window* pWindow ); + virtual BOOL Start( const XubString& rHelpId, const Window* pWindow ); + virtual BOOL SearchKeyword( const XubString& rKeyWord ); virtual void OpenHelpAgent( const rtl::OString& rHelpId ); virtual XubString GetHelpText( const String& aHelpURL, const Window* pWindow ); diff --git a/vcl/source/app/help.cxx b/vcl/source/app/help.cxx index b09e7746a886..4c2d43e0edff 100644 --- a/vcl/source/app/help.cxx +++ b/vcl/source/app/help.cxx @@ -73,6 +73,11 @@ BOOL Help::Start( const XubString&, const Window* ) return FALSE; } +BOOL Help::SearchKeyword( const XubString& ) +{ + return FALSE; +} + // ----------------------------------------------------------------------- XubString Help::GetHelpText( const String&, const Window* ) |