diff --git a/src/core/paths/paths-linux.cpp b/src/core/paths/paths-linux.cpp index 7dd122b18..06cdab9fb 100644 --- a/src/core/paths/paths-linux.cpp +++ b/src/core/paths/paths-linux.cpp @@ -26,14 +26,15 @@ LINPHONE_BEGIN_NAMESPACE +static std::string dataPath = "~/.local/share/linphone"; +static std::string configPath = "~/.config/linphone"; + std::string SysPaths::getDataPath (PlatformHelpers *platformHelper) { - //TODO. - return Utils::getEmptyConstRefObject(); + return dataPath; } std::string SysPaths::getConfigPath (PlatformHelpers *platformHelper) { - //TODO. - return Utils::getEmptyConstRefObject(); + return configPath; } LINPHONE_END_NAMESPACE