From 67e82c48e1729a2ea939ffacb6b237a64cefa763 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sat, 9 May 2015 22:07:19 +0200 Subject: No more need for EMPTYARG in C++11 Change-Id: I8a6abc563fa80a801d1907100d0b1138d260c36e --- svtools/source/dialogs/PlaceEditDialog.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'svtools/source/dialogs') diff --git a/svtools/source/dialogs/PlaceEditDialog.cxx b/svtools/source/dialogs/PlaceEditDialog.cxx index 2db914235d80..90fdea7b0a92 100644 --- a/svtools/source/dialogs/PlaceEditDialog.cxx +++ b/svtools/source/dialogs/PlaceEditDialog.cxx @@ -146,13 +146,13 @@ void PlaceEditDialog::InitDetails( ) SelectTypeHdl( m_pLBServerType ); } -IMPL_LINK ( PlaceEditDialog, OKHdl, Button *, EMPTYARG ) +IMPL_LINK ( PlaceEditDialog, OKHdl, Button *, ) { EndDialog( RET_OK ); return 1; } -IMPL_LINK ( PlaceEditDialog, DelHdl, Button *, EMPTYARG ) +IMPL_LINK ( PlaceEditDialog, DelHdl, Button *, ) { // ReUsing existing symbols... EndDialog( RET_NO ); -- cgit