Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: Enrico Tröger enrico.troeger@uvena.de Date: Sun, 01 Oct 2017 22:51:12 UTC Commit: 779493cb8a7580de9f6246c2001ce75b36002f3e https://github.com/geany/geany-plugins/commit/779493cb8a7580de9f6246c2001ce7...
Log Message: ----------- Workbench: Replace deprecated tm_get_real_path()
Modified Paths: -------------- workbench/src/wb_project.c
Modified: workbench/src/wb_project.c 6 lines changed, 3 insertions(+), 3 deletions(-) =================================================================== @@ -229,7 +229,7 @@ static GSList *wb_project_dir_get_file_list(WB_PROJECT_DIR *root, const gchar *u GSList *list = NULL; GDir *dir; 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)) @@ -518,8 +518,8 @@ static gint wb_project_dir_comparator(WB_PROJECT_DIR *a, WB_PROJECT_DIR *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