summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-06-06 14:20:21 +0100
committerAndras Timar <atimar@suse.com>2013-06-09 20:04:54 +0200
commit28db167bee89f5b749f3853cdfd8cc1d21a058d2 (patch)
treeb7a660f43b9b181e33ce381a912a3d9a7d285971 /sc
parente85b47e5ade19718d935dc543e48487e30e095b9 (diff)
Remove remnants of help agent
it was removed with 66714f1888eaccef4eb5341971278ae7dfafa16b but gobs of code (and UI) still existed to collect the help id and give it to the missing help agent with various UI visible options and buttons to control the help agent which isn't there Change-Id: I625da27b3046d481e43f4d35d32cc7063a1c6291
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/vba/vbaassistant.cxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/sc/source/ui/vba/vbaassistant.cxx b/sc/source/ui/vba/vbaassistant.cxx
index bcc590bf522f..8796fa04a853 100644
--- a/sc/source/ui/vba/vbaassistant.cxx
+++ b/sc/source/ui/vba/vbaassistant.cxx
@@ -54,15 +54,11 @@ void SAL_CALL ScVbaAssistant::setVisible( sal_Bool bVisible ) throw (uno::Runtim
sal_Bool SAL_CALL ScVbaAssistant::getOn() throw (uno::RuntimeException)
{
- if( SvtHelpOptions().IsHelpAgentAutoStartMode() )
- return sal_True;
- else
- return false;
+ return false;
}
void SAL_CALL ScVbaAssistant::setOn( sal_Bool bOn ) throw (uno::RuntimeException)
{
- SvtHelpOptions().SetHelpAgentAutoStartMode( bOn );
setVisible( bOn );
}