various code cleanups

This commit is contained in:
Garux
2021-10-30 16:04:31 +03:00
parent e62da4c621
commit da98e8fde3
70 changed files with 1158 additions and 1276 deletions

View File

@@ -260,7 +260,7 @@ void Scene_DeleteSelected( scene::Graph& graph ){
SceneChangeNotify();
}
void Select_Delete( void ){
void Select_Delete(){
Scene_DeleteSelected( GlobalSceneGraph() );
}
@@ -903,11 +903,11 @@ void Select_FacesAndPatchesByShader(){
Scene_PatchSelectByShader( GlobalSceneGraph(), TextureBrowser_GetSelectedShader() );
}
void Select_Inside( void ){
void Select_Inside(){
SelectByBounds<SelectionPolicy_Inside>::DoSelection();
}
void Select_Touching( void ){
void Select_Touching(){
SelectByBounds<SelectionPolicy_Touching>::DoSelection( false );
}