From 0848b6e8ad61c6074c73b0be2933a2c943e5fc51 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Fri, 08 Jul 2005 11:36:16 +0000 Subject: Do not try to create the object if type is invalid. 2005-07-08 Marco Pesenti Gritti * backend/ev-document-factory.c: (ev_document_factory_get_document): Do not try to create the object if type is invalid. --- (limited to 'backend') diff --git a/backend/ev-document-factory.c b/backend/ev-document-factory.c index 251ede3..e73344a 100644 --- a/backend/ev-document-factory.c +++ b/backend/ev-document-factory.c @@ -138,7 +138,7 @@ ev_document_factory_get_document (const char *mime_type) type = ev_document_type_get_from_mime (mime_type); - if (type != G_TYPE_NONE) { + if (type != G_TYPE_INVALID) { return g_object_new (type, NULL); } -- cgit v0.9.1