diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-05-29 12:40:06 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-05-29 12:58:47 +0100 |
commit | 54054514403a3e9bc45a71b20eb5e58befbb5508 (patch) | |
tree | cf667b0170451adcf0cbf75683d439978b1d80b0 /basic/source/runtime | |
parent | ac66cb60b09b16b3a280e7cea5f2f01e852dfc85 (diff) |
bogus TRUE/FALSE -> sal_False/sal_True
Change-Id: I72e0b6b3261422bd5fc47445d38cc64241d62362
Diffstat (limited to 'basic/source/runtime')
-rw-r--r-- | basic/source/runtime/methods.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx index 2fd3eb5aae07..118c80a356d0 100644 --- a/basic/source/runtime/methods.cxx +++ b/basic/source/runtime/methods.cxx @@ -4381,11 +4381,11 @@ RTLFUNC(MsgBox) }; static const sal_Int16 nButtonMap[] = { - 2, // #define RET_CANCEL sal_False - 1, // #define RET_OK sal_True - 6, // #define RET_YES 2 - 7, // #define RET_NO 3 - 4 // #define RET_RETRY 4 + 2, // RET_CANCEL is 0 + 1, // RET_OK is 1 + 6, // RET_YES is 2 + 7, // RET_NO is 3 + 4 // RET_RETRY is 4 }; |