diff options
author | Ondrej Holy <oholy@redhat.com> | 2018-03-27 10:57:25 +0200 |
---|---|---|
committer | Ondrej Holy <oholy@redhat.com> | 2018-04-03 17:54:23 +0200 |
commit | 9d845f7b9aef9795984a7659d228d66b36b7be5a (patch) | |
tree | bb7e0c6ee922879d597db3035e05397840cacb89 /client | |
parent | f45605210db66306ed32f9a0c6057bf095e81bb3 (diff) | |
download | gvfs-9d845f7b9aef9795984a7659d228d66b36b7be5a.tar.gz |
Remove redundant gmodule.h includes
Our codes don't use GModule APIs directly, so there is no need for
gmodule.h includes. GModule has been replaced by GIOModule in our codes
long time ago. gmodule.h is included indirectly over gio.h anyway.
https://bugzilla.gnome.org/show_bug.cgi?id=794365
Diffstat (limited to 'client')
-rw-r--r-- | client/gdaemonvfs.c | 1 | ||||
-rw-r--r-- | client/gvfsurimapper.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/client/gdaemonvfs.c b/client/gdaemonvfs.c index 632538a1..bae13eb3 100644 --- a/client/gdaemonvfs.c +++ b/client/gdaemonvfs.c @@ -31,7 +31,6 @@ #include "gdaemonfile.h" #include <gio/gio.h> #include <gvfsdaemonprotocol.h> -#include <gmodule.h> #include "gmountspec.h" #include "gvfsurimapper.h" #include "gdaemonvolumemonitor.h" diff --git a/client/gvfsurimapper.c b/client/gvfsurimapper.c index cb8426c3..af4c4cfc 100644 --- a/client/gvfsurimapper.c +++ b/client/gvfsurimapper.c @@ -22,7 +22,6 @@ #include <config.h> #include <string.h> -#include <gmodule.h> #include "gvfsurimapper.h" G_DEFINE_DYNAMIC_TYPE (GVfsUriMapper, g_vfs_uri_mapper, G_TYPE_OBJECT) |