X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;ds=sidebyside;f=libdocument%2Fev-document-security.c;h=7ae88f7f39bc106e43736f8657cb570d97c4616f;hb=aeadd8e191190c43e94999fef077ebea69e966c9;hp=49ded87365ea75046bba774fcac312ccb35aa436;hpb=13a06349251874bd35d2f03c3fc93217cee749a2;p=evince.git diff --git a/libdocument/ev-document-security.c b/libdocument/ev-document-security.c index 49ded873..7ae88f7f 100644 --- a/libdocument/ev-document-security.c +++ b/libdocument/ev-document-security.c @@ -18,39 +18,24 @@ * * 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); }