projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Declarations missing from VC++ 5
[wxWidgets.git]
/
src
/
motif
/
button.cpp
diff --git
a/src/motif/button.cpp
b/src/motif/button.cpp
index af7a37ac49308a07ca2de03b7d2916935b921e9f..77ce5c024229cbd2b219e9c8c1f45c5b10ad15fc 100644
(file)
--- a/
src/motif/button.cpp
+++ b/
src/motif/button.cpp
@@
-27,6
+27,11
@@
#pragma message enable nosimpint
#endif
#pragma message enable nosimpint
#endif
+
+#ifndef WX_PRECOMP
+ #include "wx/toplevel.h"
+#endif
+
#include "wx/stockitem.h"
#include "wx/motif/private.h"
#include "wx/sysopt.h"
#include "wx/stockitem.h"
#include "wx/motif/private.h"
#include "wx/sysopt.h"
@@
-53,8
+58,7
@@
bool wxButton::Create(wxWindow *parent, wxWindowID id, const wxString& lbl,
if( !CreateControl( parent, id, pos, size, style, validator, name ) )
return false;
if( !CreateControl( parent, id, pos, size, style, validator, name ) )
return false;
- wxString label1(wxStripMenuCodes(label));
- wxXmString text( label1 );
+ wxXmString text( GetLabelText(label) );
Widget parentWidget = (Widget) parent->GetClientWidget();
Widget parentWidget = (Widget) parent->GetClientWidget();
@@
-123,9
+127,9
@@
void wxButton::SetDefaultShadowThicknessAndResize()
void wxButton::SetDefault()
{
void wxButton::SetDefault()
{
- wx
Window *parent = GetParent(
);
- if (
parent
)
-
parent
->SetDefaultItem(this);
+ wx
TopLevelWindow *tlw = wxDynamicCast(wxGetTopLevelParent(this), wxTopLevelWindow
);
+ if (
tlw
)
+
tlw
->SetDefaultItem(this);
// We initially do not set XmNdefaultShadowThickness, to have
// small buttons. Unfortunately, buttons are now mis-aligned. We
// We initially do not set XmNdefaultShadowThickness, to have
// small buttons. Unfortunately, buttons are now mis-aligned. We
@@
-134,6
+138,7
@@
void wxButton::SetDefault()
// wxButton in the same row, correction is straighforward: we set
// resource for all wxButton in this parent (but not sub panels)
// wxButton in the same row, correction is straighforward: we set
// resource for all wxButton in this parent (but not sub panels)
+ wxWindow *parent = GetParent();
for (wxWindowList::compatibility_iterator node = parent->GetChildren().GetFirst ();
node; node = node->GetNext ())
{
for (wxWindowList::compatibility_iterator node = parent->GetChildren().GetFirst ();
node; node = node->GetNext ())
{