]> www.fi.muni.cz Git - evince.git/blobdiff - libdocument/ev-document-security.c
[l10n]Fixes on Catalan translation
[evince.git] / libdocument / ev-document-security.c
index 1e9ed8ba8a383b9a40455fde25f21e8fc37ff9cd..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"
 
-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);
 }