rename argument

This commit is contained in:
yggverse 2024-09-15 06:17:33 +03:00
parent cda76380e8
commit a2e124b17f
2 changed files with 4 additions and 4 deletions

View File

@ -30,13 +30,13 @@ Reload::Reload(
} }
void Reload::update( void Reload::update(
const bool & ENABLED const bool & IS_ENABLED
) { ) {
set_sensitive( set_sensitive(
ENABLED IS_ENABLED
); );
action__reload->set_enabled( action__reload->set_enabled(
ENABLED IS_ENABLED
); );
} }

View File

@ -19,7 +19,7 @@ namespace app::browser::main::tab::page::navigation
); );
void update( void update(
const bool & ENABLED const bool & IS_ENABLED
); );
}; };
} }