diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-27 17:15:51 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-28 10:21:05 +0200 |
commit | 93fed09bfbeae299aa56c7c6d929d57607ac087b (patch) | |
tree | aa90672b1496a1d1497e19e658a5892fb79792ee /fpicker | |
parent | a8e7b4966846dc1005898add66a965eba9409840 (diff) |
Dialog::EndDialog nResult param is of type long/VclResponseType
Change-Id: I31f1941daf158676518fcf259ef8a9e84863473e
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/iodlg.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx index 2a4b1fa7b7d4..93ace60721cd 100644 --- a/fpicker/source/office/iodlg.cxx +++ b/fpicker/source/office/iodlg.cxx @@ -806,7 +806,7 @@ IMPL_LINK_NOARG(SvtFileDialog, CancelHdl_Impl) } else { - EndDialog( sal_False ); + EndDialog( RET_CANCEL ); } return 1L; } @@ -1113,7 +1113,7 @@ IMPL_STATIC_LINK( SvtFileDialog, OpenHdl_Impl, void*, pVoid ) if ( nRet ) { - pThis->EndDialog( sal_True ); + pThis->EndDialog( RET_OK ); } return nRet; @@ -1380,7 +1380,7 @@ void SvtFileDialog::OpenMultiSelection_Impl() nRet = 1; if ( nRet ) - EndDialog( sal_True ); + EndDialog( RET_OK ); } |