16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-20 07:59:18 +02:00

reformat: remove redundant qualifiers

This commit is contained in:
jerrrrycho
2026-07-04 05:34:23 +02:00
parent 20e7a99516
commit cf9fb07800
98 changed files with 2290 additions and 2290 deletions

View File

@@ -21,7 +21,7 @@ namespace scene {
node_groups Groups;
// requests creation of a new node group. returns: handle to the group
scene::group_handle
group_handle
node_groups::create() {
m_activegroup.push( create_handle() );
@@ -30,7 +30,7 @@ node_groups::create() {
}
// indicates creation of current group ended. returns: handle to the parent group or null_handle if group stack is empty
scene::group_handle
group_handle
node_groups::close()
{
if( false == m_activegroup.empty() ) {
@@ -236,7 +236,7 @@ node_groups::handle() const {
// places provided node in specified group
void
node_groups::insert( scene::group_handle const Group, scene::basic_node *Node ) {
node_groups::insert( group_handle const Group, basic_node *Node ) {
// TBD, TODO: automatically unregister the node from its current group?
Node->group( Group );
@@ -252,7 +252,7 @@ node_groups::insert( scene::group_handle const Group, scene::basic_node *Node )
// places provided event in specified group
void
node_groups::insert( scene::group_handle const Group, basic_event *Event ) {
node_groups::insert( group_handle const Group, basic_event *Event ) {
// TBD, TODO: automatically unregister the event from its current group?
Event->group( Group );