]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/control.cpp
renamed port to session for Carbon printing
[wxWidgets.git] / src / mac / control.cpp
index e3511e87a139f569c1a913ed01cd0316ebd3ed2d..f0714b067a99305774f138b94d0860d40b1c77a8 100644 (file)
@@ -13,6 +13,8 @@
 #pragma implementation "control.h"
 #endif
 
+#include "wx/defs.h"
+
 #include "wx/control.h"
 #include "wx/panel.h"
 #include "wx/app.h"
@@ -514,7 +516,8 @@ void  wxControl::DoSetSize(int x, int y,
 
                MacRepositionScrollBars() ;
                // To consider -> should the parameters be the effective or the virtual coordinates (AdjustForParent..)
-        wxMoveEvent event(wxPoint(m_x, m_y), m_windowId);
+       wxPoint point(m_x, m_y);
+        wxMoveEvent event(point, m_windowId);
         event.SetEventObject(this);
         GetEventHandler()->ProcessEvent(event);
        }               
@@ -534,7 +537,8 @@ void  wxControl::DoSetSize(int x, int y,
                }
 
                MacRepositionScrollBars() ;
-        wxSizeEvent event(wxSize(m_width, m_height), m_windowId);
+       wxSize size(m_width, m_height);
+        wxSizeEvent event(size, m_windowId);
         event.SetEventObject(this);
         GetEventHandler()->ProcessEvent(event);
        }