Skip to content

Commit

Permalink
Fixed actionevent.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
midwan committed Sep 12, 2024
1 parent f880a52 commit c5ffaf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/actionevent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@

namespace gcn
{
ActionEvent::ActionEvent(Widget* source, const std::string& id)
ActionEvent::ActionEvent(Widget* source, std::string id)
:Event(source),
mId(id)
mId(std::move(id))
{

}
Expand Down

0 comments on commit c5ffaf8

Please sign in to comment.