From 6e1d62955c7a7f39bc9126d709a42a70e02a1d30 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Wed, 30 Oct 2024 19:59:38 +0100 Subject: create backend string class --- backend/LocationFactory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backend/LocationFactory.cpp') diff --git a/backend/LocationFactory.cpp b/backend/LocationFactory.cpp index 6e0b6b8..106867d 100644 --- a/backend/LocationFactory.cpp +++ b/backend/LocationFactory.cpp @@ -1,6 +1,6 @@ #include "LocationFactory.h" -Location * LocationFactory::create_location(const char * name, const char * description) { +Location * LocationFactory::create_location(const String & name, const String & description) { return new Location(name, description); } -- cgit v1.2.3