summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorMShrimp4 <mshrimp@sogang.ac.kr>2022-02-22 19:05:26 +0900
committerAlexander Schwinn <alexxcons@xfce.org>2022-02-23 20:36:48 +0000
commit89464262b2cbf0012b7cab6548298a0100b1c5e6 (patch)
treeac19e3e8abbf6d684cd9a0398df9a4349b0c994b /plugins
parentda2a16874d4548dfada0c1da3b81bfa71aaf85c0 (diff)
downloadthunar-89464262b2cbf0012b7cab6548298a0100b1c5e6.tar.gz
xfce_append_quoted -> xfce_g_string_append_quoted
Related:libxfce4util!24
Diffstat (limited to 'plugins')
-rw-r--r--plugins/thunar-uca/thunar-uca-model.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/thunar-uca/thunar-uca-model.c b/plugins/thunar-uca/thunar-uca-model.c
index 80dde184..9cb68f48 100644
--- a/plugins/thunar-uca/thunar-uca-model.c
+++ b/plugins/thunar-uca/thunar-uca-model.c
@@ -1648,7 +1648,7 @@ thunar_uca_model_parse_argv (ThunarUcaModel *uca_model,
goto error;
dirname = g_path_get_dirname (path);
- xfce_append_quoted (command_line, dirname);
+ xfce_g_string_append_quoted (command_line, dirname);
g_free (dirname);
g_free (path);
}
@@ -1668,7 +1668,7 @@ thunar_uca_model_parse_argv (ThunarUcaModel *uca_model,
goto error;
dirname = g_path_get_dirname (path);
- xfce_append_quoted (command_line, dirname);
+ xfce_g_string_append_quoted (command_line, dirname);
g_free (dirname);
g_free (path);
}
@@ -1678,7 +1678,7 @@ thunar_uca_model_parse_argv (ThunarUcaModel *uca_model,
if (G_LIKELY (file_infos != NULL))
{
path = thunarx_file_info_get_name (file_infos->data);
- xfce_append_quoted (command_line, path);
+ xfce_g_string_append_quoted (command_line, path);
g_free (path);
}
break;
@@ -1690,7 +1690,7 @@ thunar_uca_model_parse_argv (ThunarUcaModel *uca_model,
g_string_append_c (command_line, ' ');
path = thunarx_file_info_get_name (lp->data);
- xfce_append_quoted (command_line, path);
+ xfce_g_string_append_quoted (command_line, path);
g_free (path);
}
break;