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 /dbaccess/source | |
parent | a8e7b4966846dc1005898add66a965eba9409840 (diff) |
Dialog::EndDialog nResult param is of type long/VclResponseType
Change-Id: I31f1941daf158676518fcf259ef8a9e84863473e
Diffstat (limited to 'dbaccess/source')
-rw-r--r-- | dbaccess/source/ui/dlg/CollectionView.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/dlg/CollectionView.cxx b/dbaccess/source/ui/dlg/CollectionView.cxx index f437d31d9f58..aa50eb9bc4ca 100644 --- a/dbaccess/source/ui/dlg/CollectionView.cxx +++ b/dbaccess/source/ui/dlg/CollectionView.cxx @@ -174,7 +174,7 @@ IMPL_LINK_NOARG(OCollectionView, Save_Click) return 0; } m_pName->SetText(sName); - EndDialog( sal_True ); + EndDialog( RET_OK ); } } catch( const Exception& ) |