From 55329845de3aceef8b3672779f3930cee18e2298 Mon Sep 17 00:00:00 2001 From: WBoerenkamps Date: Thu, 12 Dec 2024 21:47:46 +0100 Subject: added const std::string& --- src/crepe/api/Text.cpp | 4 ++-- src/crepe/api/Text.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/crepe/api/Text.cpp b/src/crepe/api/Text.cpp index b30ccf6..c072ee7 100644 --- a/src/crepe/api/Text.cpp +++ b/src/crepe/api/Text.cpp @@ -2,8 +2,8 @@ using namespace crepe; -Text::Text(game_object_id_t id, const vec2 & dimensions, const vec2 & offset, std::string text, - std::string font_family) +Text::Text(game_object_id_t id, const vec2 & dimensions, const vec2 & offset, const std::string & text, + const std::string & font_family) : UIObject(id, dimensions, offset), text(text), font_family(font_family) {} diff --git a/src/crepe/api/Text.h b/src/crepe/api/Text.h index f8ce845..2ad1db3 100644 --- a/src/crepe/api/Text.h +++ b/src/crepe/api/Text.h @@ -15,8 +15,8 @@ namespace crepe { */ class Text : public UIObject { public: - Text(game_object_id_t id, const vec2 & dimensions, const vec2 & offset, std::string text, - std::string font_family); + Text(game_object_id_t id, const vec2 & dimensions, const vec2 & offset, const std::string &, + const std::string & font_family); //! Text data that does not have to be set in the constructor struct Data { /** -- cgit v1.2.3