Skip to content

Commit

Permalink
updated de.po + gtkmm fix to build on ubuntu 18.04 to be discussed with
Browse files Browse the repository at this point in the history
  • Loading branch information
giuspen committed Jul 11, 2019
1 parent 3ca038e commit ff366fb
Show file tree
Hide file tree
Showing 2 changed files with 207 additions and 203 deletions.
6 changes: 3 additions & 3 deletions future/src/ct/ct_misc_utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include "ct_app.h"
#include <ctime>
#include <regex>
#include <filesystem>
#include <experimental/filesystem>

CtDocType CtMiscUtil::getDocType(std::string fileName)
{
Expand Down Expand Up @@ -844,12 +844,12 @@ Glib::ustring CtFileSystem::get_proper_platform_filepath(Glib::ustring filepath)

bool CtFileSystem::isdir(const Glib::ustring& path)
{
return std::filesystem::is_directory(std::filesystem::path(path));
return std::experimental::filesystem::is_directory(std::experimental::filesystem::path(path));
}

bool CtFileSystem::isfile(const Glib::ustring& path)
{
return std::filesystem::is_regular_file(std::filesystem::path(path));
return std::experimental::filesystem::is_regular_file(std::experimental::filesystem::path(path));
}

Glib::ustring CtFileSystem::join(const Glib::ustring& path1, const Glib::ustring& path2)
Expand Down
Loading

0 comments on commit ff366fb

Please sign in to comment.