Coding style fixes
This commit is contained in:
parent
18a9f037d2
commit
966052272f
|
@ -151,6 +151,7 @@ public:
|
|||
T* FirstOfKind() const
|
||||
{
|
||||
auto refType = T( nullptr ).Type();
|
||||
|
||||
for( auto item : m_items )
|
||||
{
|
||||
if( item->Type() == refType )
|
||||
|
|
|
@ -319,11 +319,13 @@ int SELECTION_TOOL::Main( const TOOL_EVENT& aEvent )
|
|||
return 0;
|
||||
}
|
||||
|
||||
|
||||
SELECTION& SELECTION_TOOL::GetSelection()
|
||||
{
|
||||
return m_selection;
|
||||
}
|
||||
|
||||
|
||||
SELECTION& SELECTION_TOOL::RequestSelection( int aFlags )
|
||||
{
|
||||
if ( m_selection.Empty() )
|
||||
|
|
Loading…
Reference in New Issue