]> www.fi.muni.cz Git - evince.git/blobdiff - libdocument/ev-document-security.c
[dualscreen] fix crash on ctrl+w and fix control window closing
[evince.git] / libdocument / ev-document-security.c
index 49ded87365ea75046bba774fcac312ccb35aa436..7ae88f7f39bc106e43736f8657cb570d97c4616f 100644 (file)
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 #include "config.h"
 
 #include "ev-document-security.h"
 
-GType
-ev_document_security_get_type (void)
-{
-       static GType type = 0;
-       
-       if (G_UNLIKELY (type == 0))
-       {
-               const GTypeInfo our_info =
-               {
-                       sizeof (EvDocumentSecurityIface),
-                       NULL,
-                       NULL,
-               };
-
-               type = g_type_register_static (G_TYPE_INTERFACE,
-                                              "EvDocumentSecurity",
-                                              &our_info, (GTypeFlags)0);
-       }
+G_DEFINE_INTERFACE (EvDocumentSecurity, ev_document_security, 0)
 
-       return type;
+static void
+ev_document_security_default_init (EvDocumentSecurityInterface *klass)
+{
 }
 
 gboolean
 ev_document_security_has_document_security (EvDocumentSecurity *document_security)
 {
-       EvDocumentSecurityIface *iface = EV_DOCUMENT_SECURITY_GET_IFACE (document_security);
+       EvDocumentSecurityInterface *iface = EV_DOCUMENT_SECURITY_GET_IFACE (document_security);
        return iface->has_document_security (document_security);
 }
 
@@ -58,6 +43,6 @@ void
 ev_document_security_set_password (EvDocumentSecurity *document_security,
                                   const char         *password)
 {
-       EvDocumentSecurityIface *iface = EV_DOCUMENT_SECURITY_GET_IFACE (document_security);
+       EvDocumentSecurityInterface *iface = EV_DOCUMENT_SECURITY_GET_IFACE (document_security);
        iface->set_password (document_security, password);
 }