summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2021-11-03 14:09:55 +0100
committerBastien Nocera <hadess@hadess.net>2022-01-11 12:59:39 +0100
commitec2329f68627d6bac40e629f0e018bb07994e1ab (patch)
treec158710cb8561df25635aed1f49600cd14038b40
parent7c2a6c9e31196d205872559efb22bc333097e9b9 (diff)
downloadtotem-ec2329f68627d6bac40e629f0e018bb07994e1ab.tar.gz
open-directory: Simplify plugin declaration
-rw-r--r--src/plugins/open-directory/totem-open-directory.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/plugins/open-directory/totem-open-directory.c b/src/plugins/open-directory/totem-open-directory.c
index cc8bd4f25..0171ab3d6 100644
--- a/src/plugins/open-directory/totem-open-directory.c
+++ b/src/plugins/open-directory/totem-open-directory.c
@@ -29,10 +29,6 @@
#define TOTEM_TYPE_OPEN_DIRECTORY_PLUGIN (totem_open_directory_plugin_get_type ())
#define TOTEM_OPEN_DIRECTORY_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TOTEM_TYPE_OPEN_DIRECTORY_PLUGIN, TotemOpenDirectoryPlugin))
-#define TOTEM_OPEN_DIRECTORY_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), TOTEM_TYPE_OPEN_DIRECTORY_PLUGIN, TotemOpenDirectoryPluginClass))
-#define TOTEM_IS_OPEN_DIRECTORY_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TOTEM_TYPE_OPEN_DIRECTORY_PLUGIN))
-#define TOTEM_IS_OPEN_DIRECTORY_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TOTEM_TYPE_OPEN_DIRECTORY_PLUGIN))
-#define TOTEM_OPEN_DIRECTORY_PLUGIN_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TOTEM_TYPE_OPEN_DIRECTORY_PLUGIN, TotemOpenDirectoryPluginClass))
typedef struct {
TotemObject *totem;