Commit 5f198fb0 authored by stambaughw's avatar stambaughw

Fix class method syntax that caused MSVC compiler errors.

parent c7187652
...@@ -64,7 +64,7 @@ void PICKED_ITEMS_LIST::PushItem( ITEM_PICKER& aItem ) ...@@ -64,7 +64,7 @@ void PICKED_ITEMS_LIST::PushItem( ITEM_PICKER& aItem )
* @return the picker from the top of the list * @return the picker from the top of the list
* the picker is removed from the list * the picker is removed from the list
*/ */
ITEM_PICKER PICKED_ITEMS_LIST::PICKED_ITEMS_LIST::PopItem() ITEM_PICKER PICKED_ITEMS_LIST::PopItem()
{ {
ITEM_PICKER item; ITEM_PICKER item;
...@@ -80,7 +80,7 @@ ITEM_PICKER PICKED_ITEMS_LIST::PICKED_ITEMS_LIST::PopItem() ...@@ -80,7 +80,7 @@ ITEM_PICKER PICKED_ITEMS_LIST::PICKED_ITEMS_LIST::PopItem()
/** Function ClearItemsList /** Function ClearItemsList
* delete only the list of pickers, NOT the picked data itself * delete only the list of pickers, NOT the picked data itself
*/ */
void PICKED_ITEMS_LIST::PICKED_ITEMS_LIST::ClearItemsList() void PICKED_ITEMS_LIST::ClearItemsList()
{ {
m_ItemsList.clear(); m_ItemsList.clear();
} }
...@@ -150,8 +150,7 @@ void PICKED_ITEMS_LIST::ClearListAndDeleteItems() ...@@ -150,8 +150,7 @@ void PICKED_ITEMS_LIST::ClearListAndDeleteItems()
default: default:
{ {
wxString msg; wxString msg;
msg.Printf( wxT( msg.Printf( wxT( "ClearUndoORRedoList() error: unknown command type %d" ),
"ClearUndoORRedoList() error: unknown command type %d" ),
wrapper.m_UndoRedoStatus ); wrapper.m_UndoRedoStatus );
wxMessageBox( msg ); wxMessageBox( msg );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment