]> git.saurik.com Git - wxWidgets.git/commitdiff
corrected wxList::Node declarations
authorGilles Depeyrot <gilles_depeyrot@mac.com>
Tue, 21 Jan 2003 19:44:23 +0000 (19:44 +0000)
committerGilles Depeyrot <gilles_depeyrot@mac.com>
Tue, 21 Jan 2003 19:44:23 +0000 (19:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18850 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/accel.cpp
src/mac/carbon/accel.cpp
src/mac/carbon/menu.cpp
src/mac/carbon/toolbar.cpp
src/mac/menu.cpp
src/mac/toolbar.cpp

index ebd4580eb1d2fead2552186cedf4f7735a656d0e..0623dc8dd504af42b604a1d22f89b4f6dbe7dd85 100644 (file)
@@ -88,7 +88,7 @@ int wxAcceleratorTable::GetCommand( wxKeyEvent &event )
 {
     if (!Ok()) return -1;
 
-    wxwxAccelListNode *node = M_ACCELDATA->m_accels.GetFirst();
+    wxAccelList::Node *node = M_ACCELDATA->m_accels.GetFirst();
     while (node)
     {
         wxAcceleratorEntry *entry = (wxAcceleratorEntry*)node->GetData();
index ebd4580eb1d2fead2552186cedf4f7735a656d0e..0623dc8dd504af42b604a1d22f89b4f6dbe7dd85 100644 (file)
@@ -88,7 +88,7 @@ int wxAcceleratorTable::GetCommand( wxKeyEvent &event )
 {
     if (!Ok()) return -1;
 
-    wxwxAccelListNode *node = M_ACCELDATA->m_accels.GetFirst();
+    wxAccelList::Node *node = M_ACCELDATA->m_accels.GetFirst();
     while (node)
     {
         wxAcceleratorEntry *entry = (wxAcceleratorEntry*)node->GetData();
index 7064cf06a3eec4110d86e9626bbf464f6798ed27..2b39df62fcaaf29a005d98fbc7c87799041e2ab6 100644 (file)
@@ -560,7 +560,7 @@ void wxMenuBar::MacInstallMenuBar()
        for (size_t i = 0; i < m_menus.GetCount(); i++)
        {
         Str255         label;
-        wxwxMenuItemListNode *node;
+        wxMenuItemList::Node *node;
         wxMenuItem *item;
         int pos ;
        wxMenu* menu = m_menus[i] , *subMenu = NULL ;
@@ -642,7 +642,7 @@ void wxMenuBar::MacInstallMenuBar()
                        for ( size_t i = 0 ; i < submenus.GetCount() ; ++i )
                        {
                            wxMenu* submenu = (wxMenu*) submenus[i] ;
-               wxwxMenuItemListNode *subnode;
+               wxMenuItemList::Node *subnode;
                wxMenuItem *subitem;
                int subpos ;
                 for ( subpos = 0 , subnode = submenu->GetMenuItems().GetFirst(); subnode; subnode = subnode->GetNext(), subpos++) 
index 3f85d6b4f00c11c88ca2d562f38e41e01e3389e0..aa01c95226560b477e361c8684164ad25aaf1fe2 100644 (file)
@@ -195,7 +195,7 @@ bool wxToolBar::Realize()
     controlstyle.flags = kControlUseFontMask ;
     controlstyle.font = kControlFontSmallSystemFont ;
     
-    wxwxToolBarToolsListNode *node = m_tools.GetFirst();
+    wxToolBarToolsList::Node *node = m_tools.GetFirst();
     int noButtons = 0;
     int x = 0 ;
     int y = 0 ;
@@ -385,7 +385,7 @@ void wxToolBar::MacSuperChangedPosition()
     controlstyle.flags = kControlUseFontMask ;
     controlstyle.font = kControlFontSmallSystemFont ;
     
-    wxwxToolBarToolsListNode *node = m_tools.GetFirst();
+    wxToolBarToolsList::Node *node = m_tools.GetFirst();
     int noButtons = 0;
     int x = 0 ;
     wxSize toolSize = GetToolSize() ;
index 7064cf06a3eec4110d86e9626bbf464f6798ed27..2b39df62fcaaf29a005d98fbc7c87799041e2ab6 100644 (file)
@@ -560,7 +560,7 @@ void wxMenuBar::MacInstallMenuBar()
        for (size_t i = 0; i < m_menus.GetCount(); i++)
        {
         Str255         label;
-        wxwxMenuItemListNode *node;
+        wxMenuItemList::Node *node;
         wxMenuItem *item;
         int pos ;
        wxMenu* menu = m_menus[i] , *subMenu = NULL ;
@@ -642,7 +642,7 @@ void wxMenuBar::MacInstallMenuBar()
                        for ( size_t i = 0 ; i < submenus.GetCount() ; ++i )
                        {
                            wxMenu* submenu = (wxMenu*) submenus[i] ;
-               wxwxMenuItemListNode *subnode;
+               wxMenuItemList::Node *subnode;
                wxMenuItem *subitem;
                int subpos ;
                 for ( subpos = 0 , subnode = submenu->GetMenuItems().GetFirst(); subnode; subnode = subnode->GetNext(), subpos++) 
index 3f85d6b4f00c11c88ca2d562f38e41e01e3389e0..aa01c95226560b477e361c8684164ad25aaf1fe2 100644 (file)
@@ -195,7 +195,7 @@ bool wxToolBar::Realize()
     controlstyle.flags = kControlUseFontMask ;
     controlstyle.font = kControlFontSmallSystemFont ;
     
-    wxwxToolBarToolsListNode *node = m_tools.GetFirst();
+    wxToolBarToolsList::Node *node = m_tools.GetFirst();
     int noButtons = 0;
     int x = 0 ;
     int y = 0 ;
@@ -385,7 +385,7 @@ void wxToolBar::MacSuperChangedPosition()
     controlstyle.flags = kControlUseFontMask ;
     controlstyle.font = kControlFontSmallSystemFont ;
     
-    wxwxToolBarToolsListNode *node = m_tools.GetFirst();
+    wxToolBarToolsList::Node *node = m_tools.GetFirst();
     int noButtons = 0;
     int x = 0 ;
     wxSize toolSize = GetToolSize() ;