summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
Diffstat (limited to 'svtools')
-rw-r--r--svtools/inc/svtools/helpopt.hxx14
-rw-r--r--svtools/source/config/helpopt.cxx21
2 files changed, 0 insertions, 35 deletions
diff --git a/svtools/inc/svtools/helpopt.hxx b/svtools/inc/svtools/helpopt.hxx
index 0e149117305f..a22a10e97ac7 100644
--- a/svtools/inc/svtools/helpopt.hxx
+++ b/svtools/inc/svtools/helpopt.hxx
@@ -62,20 +62,6 @@ public:
const String& GetHelpStyleSheet()const;
void SetHelpStyleSheet(const String& rStyleSheet);
- /** retrieves the help agent's ignore counter for the given URL.
- <p> If the counter returned 0, the agent should silently drop any requests for this URL.<br/>
- If the counter is greater 0, the agent should display the URL and, if the user ignores it,
- decrement the counter by 1.
- </p>
- */
- sal_Int32 getAgentIgnoreURLCounter( const ::rtl::OUString& _rURL );
- /** decrements the help agent's ignore counter for the given URL
- @see getAgentIgnoreURLCounter
- */
- void decAgentIgnoreURLCounter( const ::rtl::OUString& _rURL );
- /** resets the help agent's ignore counter for the given URL
- */
- void resetAgentIgnoreURLCounter( const ::rtl::OUString& _rURL );
/** resets the help agent's ignore counter for all URL's
*/
void resetAgentIgnoreURLCounter();
diff --git a/svtools/source/config/helpopt.cxx b/svtools/source/config/helpopt.cxx
index 6e1eb8bcff89..a871975f9b1d 100644
--- a/svtools/source/config/helpopt.cxx
+++ b/svtools/source/config/helpopt.cxx
@@ -674,27 +674,6 @@ sal_Bool SvtHelpOptions::IsHelpAgentAutoStartMode() const
// -----------------------------------------------------------------------
-sal_Int32 SvtHelpOptions::getAgentIgnoreURLCounter( const ::rtl::OUString& _rURL )
-{
- return pImp->getAgentIgnoreURLCounter( _rURL );
-}
-
-// -----------------------------------------------------------------------
-
-void SvtHelpOptions::decAgentIgnoreURLCounter( const ::rtl::OUString& _rURL )
-{
- pImp->decAgentIgnoreURLCounter( _rURL );
-}
-
-// -----------------------------------------------------------------------
-
-void SvtHelpOptions::resetAgentIgnoreURLCounter( const ::rtl::OUString& _rURL )
-{
- pImp->resetAgentIgnoreURLCounter( _rURL );
-}
-
-// -----------------------------------------------------------------------
-
void SvtHelpOptions::resetAgentIgnoreURLCounter()
{
pImp->resetAgentIgnoreURLCounter();