mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 22:48:11 +00:00
Change String&& arguments to const String& in a couple of places.
String&& is more nuisance than anything, and the codegen improvement is basically negligible since the underlying type is already retainable.
This commit is contained in:
parent
23e6c45e87
commit
dddf45f563
11 changed files with 18 additions and 18 deletions
|
@ -15,7 +15,7 @@ class Font;
|
|||
|
||||
class WSMenu final : public CObject {
|
||||
public:
|
||||
WSMenu(WSClientConnection*, int menu_id, String&& name);
|
||||
WSMenu(WSClientConnection*, int menu_id, const String& name);
|
||||
virtual ~WSMenu() override;
|
||||
|
||||
WSClientConnection* client() { return m_client; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue