aboutsummaryrefslogtreecommitdiff
path: root/src/qt
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-12-14 13:23:32 +0100
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-12-14 16:22:40 +0100
commit66667130416b86208e01a0eb5541a15ea805ac26 (patch)
tree2e0f7522d76a64613ec1e834e9cf1929613d71cf /src/qt
parent856c88776f8486446602476a1c9e133ac0cff510 (diff)
refactor: Rename fs::path::u8string() to fs::path::utf8string()
Diffstat (limited to 'src/qt')
-rw-r--r--src/qt/guiutil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp
index b8ac187ff9..ebfd14cc25 100644
--- a/src/qt/guiutil.cpp
+++ b/src/qt/guiutil.cpp
@@ -669,7 +669,7 @@ fs::path QStringToPath(const QString &path)
QString PathToQString(const fs::path &path)
{
- return QString::fromStdString(path.u8string());
+ return QString::fromStdString(path.utf8string());
}
QString NetworkToQString(Network net)