Branch: refs/heads/master Author: LarsDW223 lars_paulsen@web.de Committer: LarsDW223 lars_paulsen@web.de Date: Mon, 02 Oct 2017 17:18:49 UTC Commit: 9588eb76dfa22f5a845883d473842395fb234f66 https://github.com/geany/geany-plugins/commit/9588eb76dfa22f5a845883d4738423...
Log Message: ----------- 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).