Removed SELECTION_TOOL::EditModules()

as there is already PCB_TOOL::SetEditModules() and
SELECTION_TOOL::m_editModules shadows PCB_TOOL::m_editModules.
This commit is contained in:
Maciej Suminski 2016-05-12 13:54:14 +02:00
parent a5b7a7ca0a
commit b661993427
1 changed files with 0 additions and 15 deletions

View File

@ -137,18 +137,6 @@ public:
*/
const SELECTION& GetSelection();
/**
* Function EditModules()
*
* Toggles edit module mode. When enabled, one may select parts of modules individually
* (graphics, pads, etc.), so they can be modified.
* @param aEnabled decides if the mode should be enabled.
*/
inline void EditModules( bool aEnabled )
{
m_editModules = aEnabled;
}
inline CONDITIONAL_MENU& GetMenu()
{
return m_menu;
@ -339,9 +327,6 @@ private:
/// Flag saying if multiple selection mode is active.
bool m_multiple;
/// Edit module mode flag.
bool m_editModules;
/// Can other tools modify locked items.
bool m_locked;