summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-05-29 12:40:06 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-05-29 12:58:47 +0100
commit54054514403a3e9bc45a71b20eb5e58befbb5508 (patch)
treecf667b0170451adcf0cbf75683d439978b1d80b0 /basic
parentac66cb60b09b16b3a280e7cea5f2f01e852dfc85 (diff)
bogus TRUE/FALSE -> sal_False/sal_True
Change-Id: I72e0b6b3261422bd5fc47445d38cc64241d62362
Diffstat (limited to 'basic')
-rw-r--r--basic/source/runtime/methods.cxx10
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
};