Kaydet (Commit) a5e8f26a authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Replace IMPL_STATIC_LINK[_TYPED] with more useful variants

Change-Id: I1a8a07623c264154451d36b55db1986be4a6f54c
üst 5735f58c
......@@ -174,9 +174,9 @@ namespace bib
mpBibView->Resize();
}
IMPL_STATIC_LINK( BibView, CallMappingHdl, BibView*, EMPTYARG )
IMPL_LINK( BibView, CallMappingHdl, BibView*, EMPTYARG )
{
pThis->m_pDatMan->CreateMappingDialog( pThis );
m_pDatMan->CreateMappingDialog( this );
return 0;
}
......
......@@ -63,7 +63,7 @@ namespace bib
BibViewFormControlContainer m_aFormControlContainer;
private:
DECL_STATIC_LINK(BibView, CallMappingHdl, BibView*);
DECL_LINK(CallMappingHdl, BibView*);
public:
// Window overridables
......
......@@ -630,9 +630,9 @@ void BibFrameController_Impl::dispatch(const util::URL& _rURL, const uno::Sequen
}
}
}
IMPL_STATIC_LINK( BibFrameController_Impl, DisposeHdl, void*, EMPTYARG )
IMPL_LINK_NOARG( BibFrameController_Impl, DisposeHdl )
{
pThis->xFrame->dispose();
xFrame->dispose();
return 0;
};
......
......@@ -69,7 +69,7 @@ friend class BibFrameCtrl_Impl;
BibDataManager* pDatMan;
HdlBibModul pBibMod;
DECL_STATIC_LINK( BibFrameController_Impl, DisposeHdl, void* );
DECL_LINK( DisposeHdl, void* );
static bool SaveModified(const ::com::sun::star::uno::Reference< ::com::sun::star::form::runtime::XFormController>& xController);
public:
......
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