[Base] Widen LaunchBrowser.

This commit is contained in:
gibbed
2019-04-30 16:30:17 -05:00
parent 3b421f0811
commit 2c3207e5cc
3 changed files with 5 additions and 5 deletions

View File

@@ -13,8 +13,8 @@
namespace xe {
void LaunchBrowser(const char* url) {
auto cmd = std::string("xdg-open " + std::string(url));
void LaunchBrowser(const wchar_t* url) {
auto cmd = std::string("xdg-open " + xe::to_string(url));
system(cmd.c_str());
}