Kaydet (Commit) 5833c182 authored tarafından Caolán McNamara's avatar Caolán McNamara

callcatcher: update list

üst 7c74443e
...@@ -789,24 +789,6 @@ SbiExprNode* SbiExpression::VBA_Eqv() ...@@ -789,24 +789,6 @@ SbiExprNode* SbiExpression::VBA_Eqv()
return pNd; return pNd;
} }
SbiExprNode* SbiExpression::VBA_Imp()
{
SbiExprNode* pNd = VBA_Eqv();
if( m_eMode != EXPRMODE_EMPTY_PAREN )
{
for( ;; )
{
SbiToken eTok = pParser->Peek();
if( eTok != IMP )
break;
eTok = pParser->Next();
pNd = new SbiExprNode( pParser, pNd, eTok, VBA_Eqv() );
}
}
return pNd;
}
SbiExprNode* SbiExpression::Like() SbiExprNode* SbiExpression::Like()
{ {
SbiExprNode* pNd = pParser->IsVBASupportOn() ? VBA_Not() : Comp(); SbiExprNode* pNd = pParser->IsVBASupportOn() ? VBA_Not() : Comp();
......
...@@ -193,7 +193,6 @@ protected: ...@@ -193,7 +193,6 @@ protected:
SbiExprNode* VBA_Or(); SbiExprNode* VBA_Or();
SbiExprNode* VBA_Xor(); SbiExprNode* VBA_Xor();
SbiExprNode* VBA_Eqv(); SbiExprNode* VBA_Eqv();
SbiExprNode* VBA_Imp();
SbiExprNode* Comp(); SbiExprNode* Comp();
SbiExprNode* Boolean(); SbiExprNode* Boolean();
public: public:
......
...@@ -177,7 +177,6 @@ friend class SfxOrganizeListBox_Impl; ...@@ -177,7 +177,6 @@ friend class SfxOrganizeListBox_Impl;
DECL_LINK( AddFilesHdl, sfx2::FileDialogHelper* ); DECL_LINK( AddFilesHdl, sfx2::FileDialogHelper* );
sal_Bool DontDelete_Impl( SvLBoxEntry* pEntry ); sal_Bool DontDelete_Impl( SvLBoxEntry* pEntry );
void OkHdl( Button* );
public: public:
SfxOrganizeDlg_Impl( SfxTemplateOrganizeDlg* pParent, SfxDocumentTemplates* pTempl ); SfxOrganizeDlg_Impl( SfxTemplateOrganizeDlg* pParent, SfxDocumentTemplates* pTempl );
...@@ -1993,17 +1992,6 @@ IMPL_LINK( SfxOrganizeDlg_Impl, AccelSelect_Impl, Accelerator *, pAccel ) ...@@ -1993,17 +1992,6 @@ IMPL_LINK( SfxOrganizeDlg_Impl, AccelSelect_Impl, Accelerator *, pAccel )
Dispatch_Impl( pAccel->GetCurItemId(), NULL ) : 0; Dispatch_Impl( pAccel->GetCurItemId(), NULL ) : 0;
} }
//-------------------------------------------------------------------------
void SfxOrganizeDlg_Impl::OkHdl(Button *pButton)
{
if(pFocusBox && pFocusBox->IsEditingActive())
pFocusBox->EndEditing(sal_False);
pButton->Click();
}
IMPL_LINK( SfxOrganizeDlg_Impl, MenuActivate_Impl, Menu *, pMenu ) IMPL_LINK( SfxOrganizeDlg_Impl, MenuActivate_Impl, Menu *, pMenu )
/* [Description] /* [Description]
......
...@@ -61,7 +61,6 @@ public: ...@@ -61,7 +61,6 @@ public:
class SVT_DLLPUBLIC SvtResId: public ResId class SVT_DLLPUBLIC SvtResId: public ResId
{ {
public: public:
SvtResId(sal_uInt16 nId, const ::com::sun::star::lang::Locale aLocale);
SvtResId(sal_uInt16 nId); SvtResId(sal_uInt16 nId);
// VCL dependant, only available in SVT, not in SVL! // VCL dependant, only available in SVT, not in SVL!
}; };
......
...@@ -69,9 +69,6 @@ ImpSvtData & ImpSvtData::GetSvtData() ...@@ -69,9 +69,6 @@ ImpSvtData & ImpSvtData::GetSvtData()
return *static_cast<ImpSvtData *>(*pAppData); return *static_cast<ImpSvtData *>(*pAppData);
} }
SvtResId::SvtResId(sal_uInt16 nId, const ::com::sun::star::lang::Locale aLocale):
ResId(nId, *ImpSvtData::GetSvtData().GetResMgr(aLocale)) {}
SvtResId::SvtResId(sal_uInt16 nId): ResId(nId, *ImpSvtData::GetSvtData().GetResMgr()) {} SvtResId::SvtResId(sal_uInt16 nId): ResId(nId, *ImpSvtData::GetSvtData().GetResMgr()) {}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
...@@ -1399,7 +1399,7 @@ bool SvxShapePolyPolygonBezier::getPropertyValueImpl( const ::rtl::OUString& rNa ...@@ -1399,7 +1399,7 @@ bool SvxShapePolyPolygonBezier::getPropertyValueImpl( const ::rtl::OUString& rNa
} }
case OWN_ATTR_VALUE_POLYGONKIND: case OWN_ATTR_VALUE_POLYGONKIND:
{ {
rValue <<= mePolygonKind; rValue <<= GetPolygonKind();
break; break;
} }
default: default:
......
...@@ -122,10 +122,8 @@ SalGraphics::DrawNativeControlText(unsigned int, unsigned int, Rectangle const&, ...@@ -122,10 +122,8 @@ SalGraphics::DrawNativeControlText(unsigned int, unsigned int, Rectangle const&,
SalGraphics::drawAlphaBitmap(SalTwoRect const&, SalBitmap const&, SalBitmap const&) SalGraphics::drawAlphaBitmap(SalTwoRect const&, SalBitmap const&, SalBitmap const&)
SalGraphics::drawPolyLine(basegfx::B2DPolygon const&, double, basegfx::B2DVector const&, basegfx::B2DLineJoin) SalGraphics::drawPolyLine(basegfx::B2DPolygon const&, double, basegfx::B2DVector const&, basegfx::B2DLineJoin)
SalGraphics::drawPolyPolygon(basegfx::B2DPolyPolygon const&, double) SalGraphics::drawPolyPolygon(basegfx::B2DPolyPolygon const&, double)
SanExtensionImpl::extractCertExt()
SanExtensionImpl::setCertExtn(com::sun::star::uno::Sequence<signed char>, com::sun::star::uno::Sequence<signed char>, unsigned char) SanExtensionImpl::setCertExtn(com::sun::star::uno::Sequence<signed char>, com::sun::star::uno::Sequence<signed char>, unsigned char)
SanExtensionImpl::setCertExtn(unsigned char*, unsigned int, unsigned char*, unsigned int, unsigned char) SanExtensionImpl::setCertExtn(unsigned char*, unsigned int, unsigned char*, unsigned int, unsigned char)
SbiExpression::VBA_Imp()
SbiRuntime::GetParams() SbiRuntime::GetParams()
SbiSymPool::Clear() SbiSymPool::Clear()
SbxDecimal::getByte(unsigned char&) SbxDecimal::getByte(unsigned char&)
...@@ -278,7 +276,6 @@ SfxModuleArr_Impl::DeleteAndDestroy(unsigned short, unsigned short) ...@@ -278,7 +276,6 @@ SfxModuleArr_Impl::DeleteAndDestroy(unsigned short, unsigned short)
SfxNavigatorWrapper::GetChildWindowId() SfxNavigatorWrapper::GetChildWindowId()
SfxOleDateProperty::SfxOleDateProperty(int, com::sun::star::util::Date const&) SfxOleDateProperty::SfxOleDateProperty(int, com::sun::star::util::Date const&)
SfxOleString16Property::SfxOleString16Property(int, String const&) SfxOleString16Property::SfxOleString16Property(int, String const&)
SfxOrganizeDlg_Impl::OkHdl(Button*)
SfxPartChildWnd_Impl::GetChildWindowId() SfxPartChildWnd_Impl::GetChildWindowId()
SfxPasswordDialog::SetMaxLen(unsigned short) SfxPasswordDialog::SetMaxLen(unsigned short)
SfxPopupWindow::LinkStubDelete(void*, void*) SfxPopupWindow::LinkStubDelete(void*, void*)
...@@ -384,9 +381,6 @@ SvXMLTokenMap_Impl::Insert(SvXMLTokenMapEntry_Impl* const*, unsigned short) ...@@ -384,9 +381,6 @@ SvXMLTokenMap_Impl::Insert(SvXMLTokenMapEntry_Impl* const*, unsigned short)
SvXMLTokenMap_Impl::Insert(SvXMLTokenMap_Impl const*, unsigned short, unsigned short) SvXMLTokenMap_Impl::Insert(SvXMLTokenMap_Impl const*, unsigned short, unsigned short)
SvXMLTokenMap_Impl::Remove(SvXMLTokenMapEntry_Impl* const&, unsigned short) SvXMLTokenMap_Impl::Remove(SvXMLTokenMapEntry_Impl* const&, unsigned short)
SvXMLTokenMap_Impl::Remove(unsigned short, unsigned short) SvXMLTokenMap_Impl::Remove(unsigned short, unsigned short)
SvXMLUnitConverter::GetCoreMeasureUnit() const
SvXMLUnitConverter::convertEnum(rtl::OUStringBuffer&, unsigned short, SvXMLEnumStringMapEntry const*, char*)
SvXMLUnitConverter::convertMeasureToXML(rtl::OUStringBuffer&, int, short) const
SvpSalInstance::CancelEvent(SalFrame const*, void*, unsigned short) SvpSalInstance::CancelEvent(SalFrame const*, void*, unsigned short)
SvtBroadcaster::Forward(SvtBroadcaster&, SfxHint const&) SvtBroadcaster::Forward(SvtBroadcaster&, SfxHint const&)
SvtIconChoiceCtrl::SvtIconChoiceCtrl(Window*, ResId const&) SvtIconChoiceCtrl::SvtIconChoiceCtrl(Window*, ResId const&)
...@@ -396,7 +390,6 @@ SvtListenerIter::GoEnd() ...@@ -396,7 +390,6 @@ SvtListenerIter::GoEnd()
SvtListenerIter::GoPrev() SvtListenerIter::GoPrev()
SvtListenerIter::GoRoot() SvtListenerIter::GoRoot()
SvtListenerIter::Next() SvtListenerIter::Next()
SvtResId::SvtResId(unsigned short, com::sun::star::lang::Locale)
SvtScriptedTextHelper::GetText() const SvtScriptedTextHelper::GetText() const
SvtScriptedTextHelper::GetTextHeight() const SvtScriptedTextHelper::GetTextHeight() const
SvtScriptedTextHelper::GetTextWidth() const SvtScriptedTextHelper::GetTextWidth() const
...@@ -478,7 +471,6 @@ SvxSearchDialog::GetReplaceItems(SfxItemSet&) ...@@ -478,7 +471,6 @@ SvxSearchDialog::GetReplaceItems(SfxItemSet&)
SvxSearchDialog::GetSearchItems(SfxItemSet&) SvxSearchDialog::GetSearchItems(SfxItemSet&)
SvxSearchDialog::SvxSearchDialog(Window*, SfxBindings&) SvxSearchDialog::SvxSearchDialog(Window*, SfxBindings&)
SvxSelectionModeControl::GetDefItemWidth(StatusBar const&) SvxSelectionModeControl::GetDefItemWidth(StatusBar const&)
SvxShapePolyPolygonBezier::GetPolygonKind() const
SvxShapeText::SvxShapeText() SvxShapeText::SvxShapeText()
SvxSimpleTable::SvxSimpleTable(SvxSimpleTableContainer&, ResId const&) SvxSimpleTable::SvxSimpleTable(SvxSimpleTableContainer&, ResId const&)
SvxTabStopArr::Insert(SvxTabStop const&, unsigned short&) SvxTabStopArr::Insert(SvxTabStop const&, unsigned short&)
...@@ -1256,6 +1248,9 @@ comphelper::PropertySetHelper::setInfo(comphelper::PropertySetInfo*) ...@@ -1256,6 +1248,9 @@ comphelper::PropertySetHelper::setInfo(comphelper::PropertySetInfo*)
comphelper::PropertySetInfo::add(comphelper::PropertyMapEntry*, int) comphelper::PropertySetInfo::add(comphelper::PropertyMapEntry*, int)
comphelper::ResourceBasedEventLogger::ResourceBasedEventLogger(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&, rtl::OUString const&, rtl::OUString const&) comphelper::ResourceBasedEventLogger::ResourceBasedEventLogger(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&, rtl::OUString const&, rtl::OUString const&)
comphelper::ServiceInfoHelper::concatSequences(com::sun::star::uno::Sequence<rtl::OUString> const&, com::sun::star::uno::Sequence<rtl::OUString> const&) comphelper::ServiceInfoHelper::concatSequences(com::sun::star::uno::Sequence<rtl::OUString> const&, com::sun::star::uno::Sequence<rtl::OUString> const&)
comphelper::detail::ConfigurationWrapper::getGroupReadWrite(boost::shared_ptr<comphelper::ConfigurationChanges> const&, rtl::OUString const&) const
comphelper::detail::ConfigurationWrapper::getLocalizedPropertyValue(rtl::OUString const&) const
comphelper::detail::ConfigurationWrapper::setLocalizedPropertyValue(boost::shared_ptr<comphelper::ConfigurationChanges> const&, rtl::OUString const&, com::sun::star::uno::Any const&) const
comphelper::findProperty(com::sun::star::beans::Property&, com::sun::star::uno::Sequence<com::sun::star::beans::Property>&, rtl::OUString const&) comphelper::findProperty(com::sun::star::beans::Property&, com::sun::star::uno::Sequence<com::sun::star::beans::Property>&, rtl::OUString const&)
comphelper::string::isalnumAsciiString(rtl::OUString const&) comphelper::string::isalnumAsciiString(rtl::OUString const&)
comphelper::string::islowerAsciiString(rtl::OUString const&) comphelper::string::islowerAsciiString(rtl::OUString const&)
...@@ -1359,8 +1354,6 @@ jfw_plugin::VendorBase::createInstance() ...@@ -1359,8 +1354,6 @@ jfw_plugin::VendorBase::createInstance()
jfw_plugin::VendorBase::getJavaExePaths(int*) jfw_plugin::VendorBase::getJavaExePaths(int*)
jvmaccess::ClassPath::doLoadClass(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&, void*, rtl::OUString const&, rtl::OUString const&) jvmaccess::ClassPath::doLoadClass(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&, void*, rtl::OUString const&, rtl::OUString const&)
libcdr::CDRDocument::generateSVG(WPXInputStream*, WPXString&) libcdr::CDRDocument::generateSVG(WPXInputStream*, WPXString&)
libcdr::CDRInternalStream::CDRInternalStream(unsigned char const*, unsigned long)
libcdr::readDouble(WPXInputStream*)
libcmis::SessionFactory::getRepositories(std::__debug::map<int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::less<int>, std::allocator<std::pair<int const, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >) libcmis::SessionFactory::getRepositories(std::__debug::map<int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::less<int>, std::allocator<std::pair<int const, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >)
libvisio::VisioDocument::generateSVG(WPXInputStream*, WPXString&) libvisio::VisioDocument::generateSVG(WPXInputStream*, WPXString&)
libwpg::WPGraphics::generateSVG(unsigned char const*, unsigned long, WPXString&, libwpg::WPGFileFormat) libwpg::WPGraphics::generateSVG(unsigned char const*, unsigned long, WPXString&, libwpg::WPGFileFormat)
...@@ -1631,9 +1624,6 @@ unicode::isBase(unsigned short) ...@@ -1631,9 +1624,6 @@ unicode::isBase(unsigned short)
unicode::isPunctuation(unsigned short) unicode::isPunctuation(unsigned short)
unicode::isTitle(unsigned short) unicode::isTitle(unsigned short)
unographic::GraphicDescriptor::isValid() const unographic::GraphicDescriptor::isValid() const
unotools::detail::ConfigurationWrapper::getGroupReadWrite(boost::shared_ptr<unotools::ConfigurationChanges> const&, rtl::OUString const&) const
unotools::detail::ConfigurationWrapper::getLocalizedPropertyValue(rtl::OUString const&) const
unotools::detail::ConfigurationWrapper::setLocalizedPropertyValue(boost::shared_ptr<unotools::ConfigurationChanges> const&, rtl::OUString const&, com::sun::star::uno::Any const&) const
utl::NodeValueAccessor::bind(com::sun::star::uno::Any*) utl::NodeValueAccessor::bind(com::sun::star::uno::Any*)
utl::OConfigurationNode::appendNode(rtl::OUString const&, utl::OConfigurationNode const&) const utl::OConfigurationNode::appendNode(rtl::OUString const&, utl::OConfigurationNode const&) const
utl::OConfigurationValueContainer::getServiceFactory() const utl::OConfigurationValueContainer::getServiceFactory() const
......
...@@ -115,9 +115,6 @@ public: ...@@ -115,9 +115,6 @@ public:
/** sets the default unit for numerical measures */ /** sets the default unit for numerical measures */
void SetCoreMeasureUnit( sal_Int16 const eCoreMeasureUnit ); void SetCoreMeasureUnit( sal_Int16 const eCoreMeasureUnit );
/** gets the default unit for numerical measures */
sal_Int16 GetCoreMeasureUnit() const;
/** sets the default unit for textual measures */ /** sets the default unit for textual measures */
void SetXMLMeasureUnit( sal_Int16 const eXMLMeasureUnit ); void SetXMLMeasureUnit( sal_Int16 const eXMLMeasureUnit );
...@@ -139,12 +136,6 @@ public: ...@@ -139,12 +136,6 @@ public:
void convertMeasureToXML( ::rtl::OUStringBuffer& rBuffer, void convertMeasureToXML( ::rtl::OUStringBuffer& rBuffer,
sal_Int32 nMeasure ) const; sal_Int32 nMeasure ) const;
/** convert measure with given unit to string with meXMLMeasureUnit */
void convertMeasureToXML( ::rtl::OUStringBuffer&,
sal_Int32 nMeasure,
sal_Int16 eSrcUnit ) const;
/** convert string to enum using given enum map, if the enum is /** convert string to enum using given enum map, if the enum is
not found in the map, this method will return false */ not found in the map, this method will return false */
static sal_Bool convertEnum( sal_uInt16& rEnum, static sal_Bool convertEnum( sal_uInt16& rEnum,
...@@ -167,16 +158,6 @@ public: ...@@ -167,16 +158,6 @@ public:
enum ::xmloff::token::XMLTokenEnum eDefault = enum ::xmloff::token::XMLTokenEnum eDefault =
::xmloff::token::XML_TOKEN_INVALID ); ::xmloff::token::XML_TOKEN_INVALID );
/** convert enum to string using given token map with an optional
default token. If the enum is not found in the map,
this method will either use the given default or return
false if not default is set */
static sal_Bool convertEnum( ::rtl::OUStringBuffer& rBuffer,
sal_uInt16 nValue,
const SvXMLEnumStringMapEntry *pMap,
sal_Char* pDefault = NULL );
/** convert double number to string (using ::rtl::math) and DO /** convert double number to string (using ::rtl::math) and DO
convert to export MapUnit using meCoreMeasureUnit/meXMLMeasureUnit */ convert to export MapUnit using meCoreMeasureUnit/meXMLMeasureUnit */
void convertDouble(::rtl::OUStringBuffer& rBuffer, void convertDouble(::rtl::OUStringBuffer& rBuffer,
......
...@@ -117,11 +117,6 @@ void SvXMLUnitConverter::SetCoreMeasureUnit(sal_Int16 const eCoreMeasureUnit) ...@@ -117,11 +117,6 @@ void SvXMLUnitConverter::SetCoreMeasureUnit(sal_Int16 const eCoreMeasureUnit)
m_pImpl->m_eCoreMeasureUnit = eCoreMeasureUnit; m_pImpl->m_eCoreMeasureUnit = eCoreMeasureUnit;
} }
sal_Int16 SvXMLUnitConverter::GetCoreMeasureUnit() const
{
return m_pImpl->m_eCoreMeasureUnit;
}
void SvXMLUnitConverter::SetXMLMeasureUnit(sal_Int16 const eXMLMeasureUnit) void SvXMLUnitConverter::SetXMLMeasureUnit(sal_Int16 const eXMLMeasureUnit)
{ {
m_pImpl->m_eXMLMeasureUnit = eXMLMeasureUnit; m_pImpl->m_eXMLMeasureUnit = eXMLMeasureUnit;
...@@ -195,16 +190,6 @@ void SvXMLUnitConverter::convertMeasureToXML( OUStringBuffer& rString, ...@@ -195,16 +190,6 @@ void SvXMLUnitConverter::convertMeasureToXML( OUStringBuffer& rString,
m_pImpl->m_eXMLMeasureUnit ); m_pImpl->m_eXMLMeasureUnit );
} }
/** convert measure with given unit to string */
void SvXMLUnitConverter::convertMeasureToXML( OUStringBuffer& rString,
sal_Int32 nMeasure,
sal_Int16 eSrcUnit ) const
{
::sax::Converter::convertMeasure( rString, nMeasure,
eSrcUnit,
m_pImpl->m_eXMLMeasureUnit );
}
/** convert string to enum using given enum map, if the enum is /** convert string to enum using given enum map, if the enum is
not found in the map, this method will return false not found in the map, this method will return false
*/ */
...@@ -244,37 +229,6 @@ sal_Bool SvXMLUnitConverter::convertEnum( ...@@ -244,37 +229,6 @@ sal_Bool SvXMLUnitConverter::convertEnum(
return sal_False; return sal_False;
} }
/** convert enum to string using given enum map with optional
default string. If the enum is not found in the map,
this method will either use the given default or return
false if not default is set
*/
sal_Bool SvXMLUnitConverter::convertEnum( OUStringBuffer& rBuffer,
sal_uInt16 nValue,
const SvXMLEnumStringMapEntry *pMap,
sal_Char * pDefault /* = NULL */ )
{
const sal_Char *pStr = pDefault;
while( pMap->pName )
{
if( pMap->nValue == nValue )
{
pStr = pMap->pName;
break;
}
++pMap;
}
if( NULL == pStr )
pStr = pDefault;
if( NULL != pStr )
rBuffer.appendAscii( pStr );
return NULL != pStr;
}
/** convert enum to string using given token map with an optional /** convert enum to string using given token map with an optional
default token. If the enum is not found in the map, default token. If the enum is not found in the map,
this method will either use the given default or return this method will either use the given default or return
......
...@@ -176,7 +176,4 @@ void SanExtensionImpl :: setCertExtn( unsigned char* value, unsigned int vlen, u ...@@ -176,7 +176,4 @@ void SanExtensionImpl :: setCertExtn( unsigned char* value, unsigned int vlen, u
m_critical = critical ; m_critical = critical ;
} }
void SanExtensionImpl :: extractCertExt () {
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
...@@ -77,8 +77,6 @@ class SanExtensionImpl : public ::cppu::WeakImplHelper1< ...@@ -77,8 +77,6 @@ class SanExtensionImpl : public ::cppu::WeakImplHelper1<
void setCertExtn( ::com::sun::star::uno::Sequence< sal_Int8 > extnId, ::com::sun::star::uno::Sequence< sal_Int8 > extnValue, sal_Bool critical ) ; void setCertExtn( ::com::sun::star::uno::Sequence< sal_Int8 > extnId, ::com::sun::star::uno::Sequence< sal_Int8 > extnValue, sal_Bool critical ) ;
void setCertExtn( unsigned char* value, unsigned int vlen, unsigned char* id, unsigned int idlen, sal_Bool critical ) ; void setCertExtn( unsigned char* value, unsigned int vlen, unsigned char* id, unsigned int idlen, sal_Bool critical ) ;
void extractCertExt() ;
} ; } ;
#endif // _CERTIFICATEEXTENSION_XMLSECIMPL_HXX_ #endif // _CERTIFICATEEXTENSION_XMLSECIMPL_HXX_
......
...@@ -238,7 +238,4 @@ void SanExtensionImpl :: setCertExtn( unsigned char* value, unsigned int vlen, u ...@@ -238,7 +238,4 @@ void SanExtensionImpl :: setCertExtn( unsigned char* value, unsigned int vlen, u
m_critical = critical ; m_critical = critical ;
} }
void SanExtensionImpl :: extractCertExt () {
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
...@@ -70,8 +70,6 @@ class SanExtensionImpl : public ::cppu::WeakImplHelper1< ...@@ -70,8 +70,6 @@ class SanExtensionImpl : public ::cppu::WeakImplHelper1<
void setCertExtn( ::com::sun::star::uno::Sequence< sal_Int8 > extnId, ::com::sun::star::uno::Sequence< sal_Int8 > extnValue, sal_Bool critical ) ; void setCertExtn( ::com::sun::star::uno::Sequence< sal_Int8 > extnId, ::com::sun::star::uno::Sequence< sal_Int8 > extnValue, sal_Bool critical ) ;
void setCertExtn( unsigned char* value, unsigned int vlen, unsigned char* id, unsigned int idlen, sal_Bool critical ) ; void setCertExtn( unsigned char* value, unsigned int vlen, unsigned char* id, unsigned int idlen, sal_Bool critical ) ;
void extractCertExt() ;
} ; } ;
#endif // _CERTIFICATEEXTENSION_XMLSECIMPL_HXX_ #endif // _CERTIFICATEEXTENSION_XMLSECIMPL_HXX_
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment