diff src/gui/dialog/information.cpp @ 10:4b198a111713

Update things actually compile now btw qttest wants to fuck over the model but that might be my fault so /shrug
author Paper <mrpapersonic@gmail.com>
date Sat, 16 Sep 2023 02:06:01 -0400
parents 5c0397762b53
children cde8f67a7c7d
line wrap: on
line diff
--- a/src/gui/dialog/information.cpp	Sun Sep 10 03:59:16 2023 -0400
+++ b/src/gui/dialog/information.cpp	Sat Sep 16 02:06:01 2023 -0400
@@ -53,7 +53,7 @@
 
 	/* alt titles */
 	main_information_widget->layout()->addWidget(new UiUtils::SelectableTextParagraph(
-		"Alternative titles", QString::fromUtf8(StringUtils::Implode(anime.GetTitleSynonyms(), ", ").c_str()),
+		"Alternative titles", QString::fromUtf8(Strings::Implode(anime.GetTitleSynonyms(), ", ").c_str()),
 		main_information_widget));
 
 	/* details */
@@ -64,7 +64,7 @@
 				   << Translate::TranslateListStatus(anime.GetUserStatus()).c_str() << "\n"
 				   << Translate::TranslateSeriesSeason(anime.GetSeason()).c_str() << " " << anime.GetAirDate().GetYear()
 				   << "\n"
-				   << StringUtils::Implode(anime.GetGenres(), ", ").c_str() << "\n"
+				   << Strings::Implode(anime.GetGenres(), ", ").c_str() << "\n"
 				   << anime.GetAudienceScore() << "%";
 	main_information_widget->layout()->addWidget(new UiUtils::LabelledTextParagraph(
 		"Details", "Type:\nEpisodes:\nStatus:\nSeason:\nGenres:\nScore:", details_data, main_information_widget));