summaryrefslogtreecommitdiff
path: root/thunarx
diff options
context:
space:
mode:
authorYongha Hwang <mshrimp@sogang.ac.kr>2022-02-23 20:21:44 +0000
committerAlexander Schwinn <alexxcons@xfce.org>2022-02-23 20:21:44 +0000
commitda2a16874d4548dfada0c1da3b81bfa71aaf85c0 (patch)
treee4eb7dbe9d680bde1f538f3431ba59995bfb42d0 /thunarx
parent19894a7615fbd743e942a4d13d3a403e63f1ea8f (diff)
downloadthunar-da2a16874d4548dfada0c1da3b81bfa71aaf85c0.tar.gz
Replace exo- functions with xfce-string
Related: exo#82, libxfce4util!24
Diffstat (limited to 'thunarx')
-rw-r--r--thunarx/Makefile.am4
-rw-r--r--thunarx/thunarx-file-info.c2
-rw-r--r--thunarx/thunarx-menu-provider.c2
-rw-r--r--thunarx/thunarx-preferences-provider.c2
-rw-r--r--thunarx/thunarx-private.h2
-rw-r--r--thunarx/thunarx-property-page-provider.c2
-rw-r--r--thunarx/thunarx-provider-plugin.c2
-rw-r--r--thunarx/thunarx-renamer-provider.c2
-rw-r--r--thunarx/thunarx-renamer.c2
9 files changed, 17 insertions, 3 deletions
diff --git a/thunarx/Makefile.am b/thunarx/Makefile.am
index 234c8b10..8482b25d 100644
--- a/thunarx/Makefile.am
+++ b/thunarx/Makefile.am
@@ -53,6 +53,7 @@ libthunarx_3_la_CFLAGS = \
$(GIO_CFLAGS) \
$(GTK_CFLAGS) \
$(GMODULE_CFLAGS) \
+ $(LIBXFCE4UTIL_CFLAGS) \
$(PLATFORM_CFLAGS)
libthunarx_3_la_LDFLAGS = \
@@ -66,7 +67,8 @@ libthunarx_3_la_LIBADD = \
$(GLIB_LIBS) \
$(GMODULE_LIBS) \
$(GIO_LIBS) \
- $(GTK_LIBS)
+ $(GTK_LIBS) \
+ $(LIBXFCE4UTIL_LIBS)
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = thunarx-3.pc
diff --git a/thunarx/thunarx-file-info.c b/thunarx/thunarx-file-info.c
index 4305f2ea..4061bdce 100644
--- a/thunarx/thunarx-file-info.c
+++ b/thunarx/thunarx-file-info.c
@@ -23,6 +23,8 @@
#include <config.h>
#endif
+#include <libxfce4util/libxfce4util.h>
+
#include <thunarx/thunarx-file-info.h>
#include <thunarx/thunarx-private.h>
diff --git a/thunarx/thunarx-menu-provider.c b/thunarx/thunarx-menu-provider.c
index 6fa48a1f..1123ab74 100644
--- a/thunarx/thunarx-menu-provider.c
+++ b/thunarx/thunarx-menu-provider.c
@@ -22,6 +22,8 @@
#include <config.h>
#endif
+#include <libxfce4util/libxfce4util.h>
+
#include <thunarx/thunarx-menu-provider.h>
#include <thunarx/thunarx-private.h>
diff --git a/thunarx/thunarx-preferences-provider.c b/thunarx/thunarx-preferences-provider.c
index 13f5075d..1a00454b 100644
--- a/thunarx/thunarx-preferences-provider.c
+++ b/thunarx/thunarx-preferences-provider.c
@@ -22,6 +22,8 @@
#include <config.h>
#endif
+#include <libxfce4util/libxfce4util.h>
+
#include <thunarx/thunarx-preferences-provider.h>
#include <thunarx/thunarx-private.h>
diff --git a/thunarx/thunarx-private.h b/thunarx/thunarx-private.h
index d0658cc5..a8ab3b06 100644
--- a/thunarx/thunarx-private.h
+++ b/thunarx/thunarx-private.h
@@ -39,8 +39,6 @@ G_GNUC_END_IGNORE_DEPRECATIONS
G_BEGIN_DECLS
-#define I_(string) (g_intern_static_string ((string)))
-
G_GNUC_INTERNAL
void thunarx_object_list_take_reference (GList *object_list,
gpointer target);
diff --git a/thunarx/thunarx-property-page-provider.c b/thunarx/thunarx-property-page-provider.c
index 8b623ee7..7dd86f80 100644
--- a/thunarx/thunarx-property-page-provider.c
+++ b/thunarx/thunarx-property-page-provider.c
@@ -22,6 +22,8 @@
#include <config.h>
#endif
+#include <libxfce4util/libxfce4util.h>
+
#include <thunarx/thunarx-private.h>
#include <thunarx/thunarx-property-page-provider.h>
diff --git a/thunarx/thunarx-provider-plugin.c b/thunarx/thunarx-provider-plugin.c
index d39b2d67..1e0c3d71 100644
--- a/thunarx/thunarx-provider-plugin.c
+++ b/thunarx/thunarx-provider-plugin.c
@@ -24,6 +24,8 @@
#include <glib/gi18n-lib.h>
+#include <libxfce4util/libxfce4util.h>
+
#include <thunarx/thunarx-private.h>
#include <thunarx/thunarx-provider-plugin.h>
diff --git a/thunarx/thunarx-renamer-provider.c b/thunarx/thunarx-renamer-provider.c
index aed1771c..ddd265ca 100644
--- a/thunarx/thunarx-renamer-provider.c
+++ b/thunarx/thunarx-renamer-provider.c
@@ -22,6 +22,8 @@
#include <config.h>
#endif
+#include <libxfce4util/libxfce4util.h>
+
#include <thunarx/thunarx-renamer-provider.h>
#include <thunarx/thunarx-private.h>
diff --git a/thunarx/thunarx-renamer.c b/thunarx/thunarx-renamer.c
index 34094e0e..53ae5d69 100644
--- a/thunarx/thunarx-renamer.c
+++ b/thunarx/thunarx-renamer.c
@@ -24,6 +24,8 @@
#include <glib/gi18n-lib.h>
+#include <libxfce4util/libxfce4util.h>
+
#include <thunarx/thunarx-renamer.h>
#include <thunarx/thunarx-private.h>