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 /uui | |
parent | 4f00dce2b3f08aea41390786ffdaa29179598dec (diff) |
No more need for EMPTYARG in C++11
Change-Id: I8a6abc563fa80a801d1907100d0b1138d260c36e
Diffstat (limited to 'uui')
-rw-r--r-- | uui/source/authfallbackdlg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uui/source/authfallbackdlg.cxx b/uui/source/authfallbackdlg.cxx index 58362cb24494..e801c746890c 100644 --- a/uui/source/authfallbackdlg.cxx +++ b/uui/source/authfallbackdlg.cxx @@ -47,13 +47,13 @@ void AuthFallbackDlg::dispose() ModalDialog::dispose(); } -IMPL_LINK ( AuthFallbackDlg, OKHdl, Button *, EMPTYARG ) +IMPL_LINK ( AuthFallbackDlg, OKHdl, Button *, ) { EndDialog( RET_OK ); return 1; } -IMPL_LINK ( AuthFallbackDlg, CancelHdl, Button *, EMPTYARG ) +IMPL_LINK ( AuthFallbackDlg, CancelHdl, Button *, ) { EndDialog( RET_CANCEL ); return 0; |