comment out Scene_parentSelected() codes

This commit is contained in:
Garux 2018-06-10 01:27:49 +03:00
parent f0057a86f4
commit 645c2f479c
3 changed files with 4 additions and 4 deletions

View File

@ -3502,7 +3502,7 @@ void MainFrame_Construct(){
GlobalCommands_insert( "CloneSelectionAndMakeUnique", FreeCaller<Selection_Clone_MakeUnique>(), Accelerator( GDK_space, (GdkModifierType)GDK_SHIFT_MASK ) );
GlobalCommands_insert( "DeleteSelection2", FreeCaller<deleteSelection>(), Accelerator( GDK_BackSpace ) );
GlobalCommands_insert( "DeleteSelection", FreeCaller<deleteSelection>(), Accelerator( 'Z' ) );
GlobalCommands_insert( "ParentSelection", FreeCaller<Scene_parentSelected>() );
// GlobalCommands_insert( "ParentSelection", FreeCaller<Scene_parentSelected>() );
GlobalCommands_insert( "UnSelectSelection2", FreeCaller<Selection_Deselect>(), Accelerator( GDK_Escape ) );
GlobalCommands_insert( "UnSelectSelection", FreeCaller<Selection_Deselect>(), Accelerator( 'C' ) );
GlobalCommands_insert( "InvertSelection", FreeCaller<Select_Invert>(), Accelerator( 'I' ) );

View File

@ -1887,7 +1887,7 @@ std::size_t Scene_countSelectedBrushes( scene::Graph& graph ){
graph.traverse( CountSelectedBrushes( count ) );
return count;
}
#if 0
enum ENodeType
{
eNodeUnknown,
@ -1978,7 +1978,7 @@ public:
globalWarningStream() << "failed - did not find two selected nodes.\n";
}
}
#endif
void NewMap(){

View File

@ -133,7 +133,7 @@ void Scene_parentSelectedBrushesToEntity( scene::Graph& graph, scene::Node& pare
void Scene_parentSubgraphSelectedBrushesToEntity( scene::Graph& graph, scene::Node& parent, const scene::Path& start );
std::size_t Scene_countSelectedBrushes( scene::Graph& graph );
void Scene_parentSelected();
//void Scene_parentSelected();
void OnUndoSizeChanged();