]> git.saurik.com Git - wxWidgets.git/commitdiff
Changed all symbols with the name "id" to "winid" to allow Objective-C++
authorDavid Elliott <dfe@tgwbd.org>
Mon, 27 Oct 2003 03:47:39 +0000 (03:47 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Mon, 27 Oct 2003 03:47:39 +0000 (03:47 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24322 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/generic/scrolwin.h
include/wx/scrolwin.h

index 73ba89b9bc76c248a43e902a32155bd7f29ee13f..faf66d635aad490cc9a6d952408a03e4b88245e1 100644 (file)
@@ -45,20 +45,20 @@ class WXDLLEXPORT wxGenericScrolledWindow : public wxPanel,
 public:
     wxGenericScrolledWindow() : wxScrollHelper(this) { }
     wxGenericScrolledWindow(wxWindow *parent,
-                     wxWindowID id = -1,
+                     wxWindowID winid = -1,
                      const wxPoint& pos = wxDefaultPosition,
                      const wxSize& size = wxDefaultSize,
                      long style = wxScrolledWindowStyle,
                      const wxString& name = wxPanelNameStr)
         : wxScrollHelper(this)
     {
-        Create(parent, id, pos, size, style, name);
+        Create(parent, winid, pos, size, style, name);
     }
 
     virtual ~wxGenericScrolledWindow();
 
     bool Create(wxWindow *parent,
-                wxWindowID id,
+                wxWindowID winid,
                 const wxPoint& pos = wxDefaultPosition,
                 const wxSize& size = wxDefaultSize,
                 long style = wxScrolledWindowStyle,
index 72c158d39264d683fca274485b35b2b9d0c37503..9ebdc14f1bb658b991cf9c91e9909a8b7adc349a 100644 (file)
@@ -219,12 +219,12 @@ protected:
     public:
         wxScrolledWindow() { }
         wxScrolledWindow(wxWindow *parent,
-                         wxWindowID id = -1,
+                         wxWindowID winid = -1,
                          const wxPoint& pos = wxDefaultPosition,
                          const wxSize& size = wxDefaultSize,
                          long style = wxScrolledWindowStyle,
                          const wxString& name = wxPanelNameStr)
-            : wxGenericScrolledWindow(parent, id, pos, size, style, name)
+            : wxGenericScrolledWindow(parent, winid, pos, size, style, name)
         {
         }