diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-09 22:07:19 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-10 11:25:48 +0200 |
commit | 67e82c48e1729a2ea939ffacb6b237a64cefa763 (patch) | |
tree | 4bb06e2ded7e1f6759d8e30e825616b5137fdc04 /fpicker | |
parent | 4f00dce2b3f08aea41390786ffdaa29179598dec (diff) |
No more need for EMPTYARG in C++11
Change-Id: I8a6abc563fa80a801d1907100d0b1138d260c36e
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/PlacesListBox.cxx | 2 | ||||
-rw-r--r-- | fpicker/source/office/iodlg.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/fpicker/source/office/PlacesListBox.cxx b/fpicker/source/office/PlacesListBox.cxx index 7235c1b8244f..dcbc676e900f 100644 --- a/fpicker/source/office/PlacesListBox.cxx +++ b/fpicker/source/office/PlacesListBox.cxx @@ -175,7 +175,7 @@ Image PlacesListBox::getEntryIcon( PlacePtr pPlace ) return theImage; } -IMPL_LINK( PlacesListBox, Selection, void* , EMPTYARG ) +IMPL_LINK( PlacesListBox, Selection, void* , ) { sal_uInt32 nSelected = mpImpl->GetCurrRow(); PlacePtr pPlace = maPlaces[nSelected]; diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx index cfb4ce423de2..1e7e818fea57 100644 --- a/fpicker/source/office/iodlg.cxx +++ b/fpicker/source/office/iodlg.cxx @@ -674,7 +674,7 @@ void SvtFileDialog::Init_Impl Resize(); } -IMPL_LINK( SvtFileDialog, NewFolderHdl_Impl, PushButton*, EMPTYARG ) +IMPL_LINK( SvtFileDialog, NewFolderHdl_Impl, PushButton*, ) { _pFileView->EndInplaceEditing( false ); @@ -1222,7 +1222,7 @@ IMPL_LINK_NOARG( SvtFileDialog, FilterSelectHdl_Impl ) } IMPL_LINK_TYPED( - SvtFileDialog, FilterSelectTimerHdl_Impl, Timer*, EMPTYARG, void) + SvtFileDialog, FilterSelectTimerHdl_Impl, Timer*,, void) { // filter the view again ExecuteFilter(); |