| Index: src/plugin/PluginUtil.cpp |
| =================================================================== |
| --- a/src/plugin/PluginUtil.cpp |
| +++ b/src/plugin/PluginUtil.cpp |
| @@ -22,9 +22,19 @@ |
| return value; |
| } |
| +std::wstring HtmlFolderPath() |
| +{ |
| + return GetDllDir() + L"html\\templates\\"; |
| +} |
| + |
| std::wstring UserSettingsFileUrl() |
| { |
| - return FileUrl(GetDllDir() + L"html\\templates\\index.html"); |
| + return FileUrl(HtmlFolderPath() + L"index.html"); |
| +} |
| + |
| +std::wstring FirstRunPageFileUrl() |
| +{ |
| + return FileUrl(HtmlFolderPath() + L"firstRun.html"); |
| } |
| std::wstring FileUrl(const std::wstring& path) |