summaryrefslogtreecommitdiff
path: root/src/glib-utils.c
diff options
context:
space:
mode:
authorzhuyaliang <[email protected]>2023-05-04 20:31:32 +0800
committerraveit65 <[email protected]>2023-05-09 10:14:21 +0200
commitfcaf6442f0085d728de9e295208afbb2aff6c1e9 (patch)
tree90cb42590ec5bc5f6889917236cc6cb0350b0b77 /src/glib-utils.c
parent6f49d2c72ea1ade71df33a301d5192c2a127e790 (diff)
downloadengrampa-fcaf6442f0085d728de9e295208afbb2aff6c1e9.tar.bz2
engrampa-fcaf6442f0085d728de9e295208afbb2aff6c1e9.tar.xz
Replace deprecated functions and fix compilation warnings
Replacing GtkAction with GAction Replacing GtkUIManager with GtkBuilder
Diffstat (limited to 'src/glib-utils.c')
-rw-r--r--src/glib-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glib-utils.c b/src/glib-utils.c
index 88b90c9..c7cb78c 100644
--- a/src/glib-utils.c
+++ b/src/glib-utils.c
@@ -240,7 +240,7 @@ g_utf8_strchug (char *string)
c = g_utf8_get_char (scan);
}
- g_memmove (string, scan, strlen (scan) + 1);
+ memmove (string, scan, strlen (scan) + 1);
return string;
}