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

loplugin:staticmethods

Change-Id: I8eb65173d7bf71a829b8c1d8451dbbc7d81a8d38
üst 022331e8
......@@ -4749,7 +4749,6 @@ SvxNewToolbarDialog::SvxNewToolbarDialog(vcl::Window* pWindow, const OUString& r
get(m_pSaveInListBox, "savein");
m_pEdtName->SetText( rName );
m_pEdtName->SetSelection(Selection(SELECTION_MIN, SELECTION_MAX));
ModifyHdl(m_pEdtName);
m_pEdtName->SetModifyHdl(LINK(this, SvxNewToolbarDialog, ModifyHdl));
}
......@@ -4767,10 +4766,8 @@ void SvxNewToolbarDialog::dispose()
}
IMPL_LINK(SvxNewToolbarDialog, ModifyHdl, Edit*, pEdit)
IMPL_STATIC_LINK_NOARG(SvxNewToolbarDialog, ModifyHdl)
{
(void)pEdit;
return 0;
}
......
......@@ -666,7 +666,7 @@ private:
VclPtr<Edit> m_pEdtName;
VclPtr<OKButton> m_pBtnOK;
DECL_LINK(ModifyHdl, Edit*);
DECL_STATIC_LINK(SvxNewToolbarDialog, ModifyHdl, void *);
public:
SvxNewToolbarDialog(vcl::Window* pWindow, const OUString& rName);
......
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