From 85ba2fde280fdf9782b2e0ebc358113b75a7bce1 Mon Sep 17 00:00:00 2001 From: Nathan Woods Date: Mon, 3 Oct 2016 23:20:25 -0400 Subject: Bulk renaming of Windows string conversion functions utf8_from_[a|w|t]string ==> osd::text::from_[a|w|t]string [a|w|t]string_from_utf8 ==> osd::text::to_[a|w|t]string --- src/osd/modules/debugger/win/debugviewinfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/osd/modules/debugger/win/debugviewinfo.cpp') diff --git a/src/osd/modules/debugger/win/debugviewinfo.cpp b/src/osd/modules/debugger/win/debugviewinfo.cpp index d23a666adf8..be786b33fa2 100644 --- a/src/osd/modules/debugger/win/debugviewinfo.cpp +++ b/src/osd/modules/debugger/win/debugviewinfo.cpp @@ -268,7 +268,7 @@ HWND debugview_info::create_source_combobox(HWND parent, LONG_PTR userdata) int const length = strlen(source->name()); if (length > maxlength) maxlength = length; - auto t_name = tstring_from_utf8(source->name()); + auto t_name = osd::text::to_tstring(source->name()); SendMessage(result, CB_ADDSTRING, 0, (LPARAM)t_name.c_str()); } if (cursource != nullptr) -- cgit v1.2.3