Index: src/plugin/PluginUtil.cpp |
=================================================================== |
--- a/src/plugin/PluginUtil.cpp |
+++ b/src/plugin/PluginUtil.cpp |
@@ -24,12 +24,12 @@ |
std::wstring UserSettingsFileUrl() |
{ |
- return FileUrl(GetDllDir() + L"html\\templates\\index.html"); |
+ return FileUrl( Location::html_dir() + L"templates\\index.html" ); |
} |
std::wstring UserSettingsFirstRunPageUrl() |
{ |
- return FileUrl(GetDllDir() + L"html\\templates\\firstRun.html"); |
+ return FileUrl( Location::html_dir() + L"templates\\firstRun.html"); |
} |
std::wstring FileUrl(const std::wstring& path) |
@@ -38,4 +38,3 @@ |
std::replace(url.begin(), url.end(), L'\\', L'/'); |
return L"file:///" + url; |
} |
- |