Loading todo.txt +9 −0 Original line number Diff line number Diff line Loading @@ -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. *** 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 multiple items are under the mouse cursor. Loading Loading
todo.txt +9 −0 Original line number Diff line number Diff line Loading @@ -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. *** 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 multiple items are under the mouse cursor. Loading