Commit 51fc073e authored by dickelbeck's avatar dickelbeck

added first item

parent 68b78506
...@@ -3,6 +3,15 @@ Here are some source code maintenance tasks that need to be done, and maybe some ...@@ -3,6 +3,15 @@ Here are some source code maintenance tasks that need to be done, and maybe some
folks will see these items and volunteer to do them. folks will see these items and volunteer to do them.
*** make the ADD_MENUITEM macros in include/macros.h be static inline functions instead
of macros. e.g. w/o argument types:
static inline void ADD_MENUITEM(menu, id, text, icon)
{
wxMenuItem * l_item;
l_item = new wxMenuItem(menu, id, text);
l_item->SetBitmap(icon); menu->Append(l_item);
}
*** Add hierarchical menu to right mouse click in PCBNEW for the case when *** Add hierarchical menu to right mouse click in PCBNEW for the case when
multiple items are under the mouse cursor. multiple items are under the mouse cursor.
......
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