X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=libdocument%2Fev-document-security.c;h=7ae88f7f39bc106e43736f8657cb570d97c4616f;hb=d4139205b010ed06310d14284e63114e88ec6de2;hp=1e9ed8ba8a383b9a40455fde25f21e8fc37ff9cd;hpb=ab26fbf217460c766111850bf40725e5e65a5533;p=evince.git diff --git a/libdocument/ev-document-security.c b/libdocument/ev-document-security.c index 1e9ed8ba..7ae88f7f 100644 --- a/libdocument/ev-document-security.c +++ b/libdocument/ev-document-security.c @@ -18,24 +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" -EV_DEFINE_INTERFACE (EvDocumentSecurity, ev_document_security, 0) +G_DEFINE_INTERFACE (EvDocumentSecurity, ev_document_security, 0) static void -ev_document_security_class_init (EvDocumentSecurityIface *klass) +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); } @@ -43,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); }