summaryrefslogtreecommitdiff
path: root/sw/source/ui
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2014-11-09 22:24:50 +0100
committerMatteo Casalin <matteo.casalin@yahoo.com>2014-11-16 16:54:40 +0100
commitb60d741be60b0650949624fce5e234077157691e (patch)
treee0f1d5065afc3be104cce412d8a86d15e5dc04a8 /sw/source/ui
parenta080c8f34d80b8c70764e7bde934f43c2fe4a109 (diff)
EndDialog(sal_True) ==> EndDialog(RET_OK)
Change-Id: I07a822a7c03a4746fd609ca6ea743b92253cf6de
Diffstat (limited to 'sw/source/ui')
-rw-r--r--sw/source/ui/dbui/addresslistdialog.cxx2
-rw-r--r--sw/source/ui/misc/glossary.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/dbui/addresslistdialog.cxx b/sw/source/ui/dbui/addresslistdialog.cxx
index ee34ac9700dd..10a02a629ca1 100644
--- a/sw/source/ui/dbui/addresslistdialog.cxx
+++ b/sw/source/ui/dbui/addresslistdialog.cxx
@@ -637,7 +637,7 @@ IMPL_LINK(SwAddressListDialog, TableSelectHdl_Impl, PushButton*, pButton)
IMPL_LINK_NOARG(SwAddressListDialog, OKHdl_Impl)
{
- EndDialog(sal_True);
+ EndDialog(RET_OK);
return 0;
}
diff --git a/sw/source/ui/misc/glossary.cxx b/sw/source/ui/misc/glossary.cxx
index e20090f4080f..179c64a5693f 100644
--- a/sw/source/ui/misc/glossary.cxx
+++ b/sw/source/ui/misc/glossary.cxx
@@ -790,7 +790,7 @@ IMPL_LINK_NOARG(SwNewGlosNameDlg, Rename)
m_pNewShort->GrabFocus();
}
else
- EndDialog(sal_True);
+ EndDialog(RET_OK);
return 0;
}