projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
mention wxTreeCtrl::SelectItem() fix of r60921
[wxWidgets.git]
/
src
/
palmos
/
button.cpp
diff --git
a/src/palmos/button.cpp
b/src/palmos/button.cpp
index fc794449adf4724cef6b81d823b475bad9a007eb..93fd0d6690e478d9b57c724a195e1b7682e8b16b 100644
(file)
--- a/
src/palmos/button.cpp
+++ b/
src/palmos/button.cpp
@@
-196,12
+196,16
@@
wxSize wxButtonBase::GetDefaultSize()
return wxSize(36,12);
}
return wxSize(36,12);
}
-
void
wxButton::SetDefault()
+
wxWindow *
wxButton::SetDefault()
{
FormType* form = (FormType* )GetParentForm();
if(form==NULL)
{
FormType* form = (FormType* )GetParentForm();
if(form==NULL)
- return;
+ return NULL;
+#ifdef __WXPALMOS6__
FrmSetDefaultButtonID(form,GetId());
FrmSetDefaultButtonID(form,GetId());
+#endif // __WXPALMOS6__
+
+ return wxButtonBase::SetDefault();
}
void wxButton::SetTmpDefault()
}
void wxButton::SetTmpDefault()