diff options
author | Saturneric <[email protected]> | 2022-02-05 09:35:55 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-02-05 09:35:55 +0000 |
commit | 260bb5426b6621d409f4e68981e49c936cb313bb (patch) | |
tree | 48a9b97c891d2bd8a02a43ce25dc5b725fe9a115 /src/main.cpp | |
parent | <refactor>(ui, core, project): Move Key Package logic into core (diff) | |
download | GpgFrontend-260bb5426b6621d409f4e68981e49c936cb313bb.tar.gz GpgFrontend-260bb5426b6621d409f4e68981e49c936cb313bb.zip |
<refactor>(ui, core, project): Use std::filesystem instead of boost::filesystem
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 949ec949..7e65a847 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -132,7 +132,7 @@ int main(int argc, char* argv[]) { #if !defined(RELEASE) && defined(WINDOWS) // css - boost::filesystem::path css_path = + std::filesystem::path css_path = GpgFrontend::UI::GlobalSettingStation::GetInstance().GetResourceDir() / "css" / "default.qss"; QFile file(css_path.string().c_str()); |