gio/: fully remove gioalias hacks
[platform/upstream/glib.git] / gio / gsimplepermission.c
index a46f209..54cc00e 100644 (file)
  * Author: Ryan Lortie <desrt@desrt.ca>
  */
 
+#include "config.h"
+
 #include "gsimplepermission.h"
 #include "gpermission.h"
 
-#include "gioalias.h"
 
 /**
  * SECTION:gsimplepermission
  * @title: GSimplePermission
- * @short_description: a #GPermission that doesn't change value
+ * @short_description: a GPermission that doesn't change value
  *
  * #GSimplePermission is a trivial implementation of #GPermission that
  * represents a permission that is either always or never allowed.  The
@@ -69,6 +70,8 @@ g_simple_permission_class_init (GSimplePermissionClass *class)
  *
  * Creates a new #GPermission instance that represents an action that is
  * either always or never allowed.
+ *
+ * Since: 2.26
  **/
 GPermission *
 g_simple_permission_new (gboolean allowed)
@@ -79,6 +82,3 @@ g_simple_permission_new (gboolean allowed)
 
   return permission;
 }
-
-#define __G_SIMPLE_PERMISSION_C__
-#include "gioaliasdef.c"