summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-05-14 01:05:06 +0200
committerCarl Hetherington <cth@carlh.net>2025-05-24 00:43:55 +0200
commit09fbc3882ea919d67427ec7c90c8051871145074 (patch)
tree260ce0bb8372bd93c367d006062783f7fd7374e8 /src/lib
parent16944d92529c44848c03b7b9c00f797550489493 (diff)
Make method name more accurate.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/util.cc2
-rw-r--r--src/lib/util.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/util.cc b/src/lib/util.cc
index cab361e78..fc8cf114d 100644
--- a/src/lib/util.cc
+++ b/src/lib/util.cc
@@ -554,7 +554,7 @@ mo_path()
void
-dcpomatic_setup_gettext_i18n(string lang)
+dcpomatic_setup_c_and_gettext_i18n(string lang)
{
#ifdef DCPOMATIC_LINUX
if (!lang.empty()) {
diff --git a/src/lib/util.h b/src/lib/util.h
index fefb9d0a3..ace26b98f 100644
--- a/src/lib/util.h
+++ b/src/lib/util.h
@@ -67,7 +67,7 @@ extern std::string seconds_to_approximate_hms(int);
extern double seconds(struct timeval);
extern void dcpomatic_setup();
extern void dcpomatic_setup_path_encoding();
-extern void dcpomatic_setup_gettext_i18n(std::string);
+extern void dcpomatic_setup_c_and_gettext_i18n(std::string);
extern std::string digest_head_tail(std::vector<boost::filesystem::path>, boost::uintmax_t size);
extern std::string simple_digest(std::vector<boost::filesystem::path> paths);
extern void ensure_ui_thread();