summaryrefslogtreecommitdiffstats
path: root/game/client/gui/message_box.cc
diff options
context:
space:
mode:
authoruntodesu <kirill@untode.su>2025-09-11 13:48:31 +0500
committeruntodesu <kirill@untode.su>2025-09-11 13:48:31 +0500
commitaaed751bf4430bf4b9b30cef532b8753b9f639ce (patch)
tree16bc751c272ba27ad53ec48dbdd3a6d9e6a8d4c2 /game/client/gui/message_box.cc
parent96bd73ae020ecca1f94698744c77498a89ad19f7 (diff)
downloadvoxelius-aaed751bf4430bf4b9b30cef532b8753b9f639ce.tar.bz2
voxelius-aaed751bf4430bf4b9b30cef532b8753b9f639ce.zip
Replace most of C strings with string_view
Diffstat (limited to 'game/client/gui/message_box.cc')
-rw-r--r--game/client/gui/message_box.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/game/client/gui/message_box.cc b/game/client/gui/message_box.cc
index 615281b..59e2d33 100644
--- a/game/client/gui/message_box.cc
+++ b/game/client/gui/message_box.cc
@@ -75,17 +75,17 @@ void gui::message_box::reset(void)
buttons.clear();
}
-void gui::message_box::set_title(const char* title)
+void gui::message_box::set_title(std::string_view title)
{
str_title = gui::language::resolve(title);
}
-void gui::message_box::set_subtitle(const char* subtitle)
+void gui::message_box::set_subtitle(std::string_view subtitle)
{
str_subtitle = gui::language::resolve(subtitle);
}
-void gui::message_box::add_button(const char* text, const message_box_action& action)
+void gui::message_box::add_button(std::string_view text, const message_box_action& action)
{
Button button = {};
button.str_title = std::format("{}###MessageBox_Button{}", gui::language::resolve(text), buttons.size());