Update of /cvsroot/sharedaemon/ui-wx/src
In directory sc8-pr-cvs1:/tmp/cvs-serv26888
Modified Files:
Images.cpp
Log Message:
Whops, forgot to ifdef GenImage
Index: Images.cpp
===================================================================
RCS file: /cvsroot/sharedaemon/ui-wx/src/Images.cpp,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- Images.cpp 27 Dec 2003 08:39:04 -0000 1.44
+++ Images.cpp 27 Dec 2003 14:27:51 -0000 1.45
@@ -273,9 +273,11 @@
GetImage(parent->GetName())
);
}
+#ifndef __WXMSW__
if (parent->GetClassInfo()->IsKindOf(CLASSINFO(MBitmapButton))) {
((MBitmapButton*)parent)->GenImage();
}
+#endif
wxWindowList controls;
controls = parent->GetChildren();
for (unsigned int i=0;i<controls.GetCount();i++) {
|