projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Applied [ 1059554 ] patch for [1028659] fixes a couple of bugs with menus
[wxWidgets.git]
/
src
/
univ
/
radiobut.cpp
diff --git
a/src/univ/radiobut.cpp
b/src/univ/radiobut.cpp
index 6ba669f94017c5c8fcada5438db7585225b848df..6415ae32f1d7891868b25a0eb9f5e502a7586637 100644
(file)
--- a/
src/univ/radiobut.cpp
+++ b/
src/univ/radiobut.cpp
@@
-62,10
+62,10
@@
bool wxRadioButton::Create(wxWindow *parent,
if ( !wxCheckBox::Create(parent, id, label, pos, size, style,
validator, name) )
{
if ( !wxCheckBox::Create(parent, id, label, pos, size, style,
validator, name) )
{
- return
FALSE
;
+ return
false
;
}
}
- return
TRUE
;
+ return
true
;
}
// ----------------------------------------------------------------------------
}
// ----------------------------------------------------------------------------
@@
-134,7
+134,7
@@
void wxRadioButton::ClearValue()
{
if ( IsChecked() )
{
{
if ( IsChecked() )
{
- SetValue(
FALSE
);
+ SetValue(
false
);
}
}
}
}