]> www.fi.muni.cz Git - evince.git/blobdiff - libdocument/ev-file-exporter.c
[docs] More grammar fixes
[evince.git] / libdocument / ev-file-exporter.c
index 9b2bc6933ee732f2ce9d08051078fb8fb92e5ead..43f563bf143cfa1333df25e60085bd06c0a062c8 100644 (file)
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  */
 
+#include <config.h>
 #include "ev-file-exporter.h"
+#include "ev-document.h"
 
-GType
-ev_file_exporter_get_type (void)
-{
-        static GType type = 0;
-
-        if (G_UNLIKELY (type == 0)) {
-                const GTypeInfo our_info =
-                {
-                        sizeof (EvFileExporterIface),
-                        NULL,
-                        NULL,
-                };
+EV_DEFINE_INTERFACE (EvFileExporter, ev_file_exporter, 0)
 
-                type = g_type_register_static (G_TYPE_INTERFACE,
-                                               "EvFileExporter",
-                                               &our_info, (GTypeFlags)0);
-        }
-
-        return type;
+static void
+ev_file_exporter_class_init (EvFileExporterIface *klass)
+{
 }
 
 void