diff options
author | Oliver Specht <os@openoffice.org> | 2001-01-22 08:04:09 +0000 |
---|---|---|
committer | Oliver Specht <os@openoffice.org> | 2001-01-22 08:04:09 +0000 |
commit | 0118714f19669872e01dbf6ff689002fe829c0f3 (patch) | |
tree | 9c0ca0302a15c394eee7026a3522f000c06285fc /svtools | |
parent | 3de00914aa0cef059fbb005efeeff73165163b2a (diff) |
Prefix 'Star' in configuration entries removed
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/config/securityoptions.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svtools/source/config/securityoptions.cxx b/svtools/source/config/securityoptions.cxx index 3f23fb413e58..c3b4c328dd6f 100644 --- a/svtools/source/config/securityoptions.cxx +++ b/svtools/source/config/securityoptions.cxx @@ -2,9 +2,9 @@ * * $RCSfile: securityoptions.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: as $ $Date: 2000-12-04 13:23:53 $ + * last change: $Author: os $ $Date: 2001-01-22 09:01:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -113,7 +113,7 @@ using namespace ::com::sun::star::uno ; #define DEFAULT_STAROFFICEBASIC eALWAYS_EXECUTE #define PROPERTYNAME_SECUREURL OUString(RTL_CONSTASCII_USTRINGPARAM("SecureURL" )) -#define PROPERTYNAME_STAROFFICEBASIC OUString(RTL_CONSTASCII_USTRINGPARAM("StarOfficeBasic" )) +#define PROPERTYNAME_STAROFFICEBASIC OUString(RTL_CONSTASCII_USTRINGPARAM("OfficeBasic" )) #define PROPERTYHANDLE_SECUREURL 0 #define PROPERTYHANDLE_STAROFFICEBASIC 1 @@ -268,7 +268,7 @@ SvtSecurityOptions_Impl::SvtSecurityOptions_Impl() break; case PROPERTYHANDLE_STAROFFICEBASIC : { - DBG_ASSERT(!(seqValues[nProperty].getValueTypeClass()!=TypeClass_LONG), "SvtSecurityOptions_Impl::SvtSecurityOptions_Impl()\nWho has changed the value type of \"Security\\StarOfficeBasic\"?" ); + DBG_ASSERT(!(seqValues[nProperty].getValueTypeClass()!=TypeClass_LONG), "SvtSecurityOptions_Impl::SvtSecurityOptions_Impl()\nWho has changed the value type of \"Security\\OfficeBasic\"?" ); sal_Int32 nMode; seqValues[nProperty] >>= nMode; m_eBasicMode = (EBasicSecurityMode)nMode; @@ -316,7 +316,7 @@ void SvtSecurityOptions_Impl::Notify( const Sequence< OUString >& seqPropertyNam else if( seqPropertyNames[nProperty] == PROPERTYNAME_STAROFFICEBASIC ) { - DBG_ASSERT(!(seqValues[nProperty].getValueTypeClass()!=TypeClass_LONG), "SvtSecurityOptions_Impl::Notify()\nWho has changed the value type of \"Security\\StarOfficeBasic\"?" ); + DBG_ASSERT(!(seqValues[nProperty].getValueTypeClass()!=TypeClass_LONG), "SvtSecurityOptions_Impl::Notify()\nWho has changed the value type of \"Security\\OfficeBasic\"?" ); sal_Int32 nMode; seqValues[nProperty] >>= nMode; m_eBasicMode = (EBasicSecurityMode)nMode; |