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
/
control.cpp
diff --git
a/src/motif/control.cpp
b/src/motif/control.cpp
index 18f8bbeb686c1aca9453b273173c9cbaeb164913..4026913541173fafbe2439ee4d5103e2c4527fff 100644
(file)
--- a/
src/motif/control.cpp
+++ b/
src/motif/control.cpp
@@
-13,8
+13,11
@@
#include "wx/wxprec.h"
#include "wx/control.h"
#include "wx/wxprec.h"
#include "wx/control.h"
-#include "wx/panel.h"
-#include "wx/utils.h"
+
+#ifndef WX_PRECOMP
+ #include "wx/utils.h"
+ #include "wx/panel.h"
+#endif
#ifdef __VMS__
#pragma message disable nosimpint
#ifdef __VMS__
#pragma message disable nosimpint
@@
-82,7
+85,7
@@
void wxControl::SetLabel(const wxString& label)
if (!widget)
return;
if (!widget)
return;
- wxXmString label_str(
wxStripMenuCodes
(label));
+ wxXmString label_str(
GetLabelText
(label));
XtVaSetValues (widget,
XmNlabelString, label_str(),
XtVaSetValues (widget,
XmNlabelString, label_str(),