Branch: refs/heads/master Author: Frank Lanitz frank@frank.uvena.de Committer: GitHub noreply@github.com Date: Tue, 03 Oct 2017 07:48:55 UTC Commit: a5e36d0dc69ade3ec7683fdeddceac93338146fa https://github.com/geany/geany-plugins/commit/a5e36d0dc69ade3ec7683fdeddceac...
Log Message: ----------- Merge pull request #609 from LarsGit223/prjorg_dep_real_path
projectorganizer: Replace deprecated tm_get_real_path().
Modified Paths: -------------- projectorganizer/src/prjorg-project.c
Modified: projectorganizer/src/prjorg-project.c 6 lines changed, 3 insertions(+), 3 deletions(-) =================================================================== @@ -78,7 +78,7 @@ static GSList *get_file_list(const gchar *utf8_path, GSList *patterns, GSList *child; GSList *children = NULL; gchar *locale_path = utils_get_locale_from_utf8(utf8_path); - gchar *real_path = tm_get_real_path(locale_path); + gchar *real_path = utils_get_real_path(locale_path);
dir = g_dir_open(locale_path, 0, NULL); if (!dir || !real_path || g_hash_table_lookup(visited_paths, real_path)) @@ -412,8 +412,8 @@ static gint root_comparator(PrjOrgRoot *a, PrjOrgRoot *b)
a_locale_base_dir = utils_get_locale_from_utf8(a->base_dir); b_locale_base_dir = utils_get_locale_from_utf8(b->base_dir); - a_realpath = tm_get_real_path(a_locale_base_dir); - b_realpath = tm_get_real_path(b_locale_base_dir); + a_realpath = utils_get_real_path(a_locale_base_dir); + b_realpath = utils_get_real_path(b_locale_base_dir);
res = g_strcmp0(a_realpath, b_realpath);
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
plugins-commits@lists.geany.org