]> www.fi.muni.cz Git - evince.git/blobdiff - libdocument/ev-document-find.c
[dualscreen] fix crash on ctrl+w and fix control window closing
[evince.git] / libdocument / ev-document-find.c
index 59b8755a700959812e2bfa4b543eab741fe41d5e..0b5fac011ce70dbe20641628d0045ddda89a485a 100644 (file)
@@ -14,7 +14,7 @@
  *
  *  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 "ev-document-find.h"
 
-GType
-ev_document_find_get_type (void)
-{
-       static GType type = 0;
-
-       if (G_UNLIKELY (type == 0))
-       {
-               const GTypeInfo our_info =
-               {
-                       sizeof (EvDocumentFindIface),
-                       NULL,
-                       NULL,
-               };
+G_DEFINE_INTERFACE (EvDocumentFind, ev_document_find, 0)
 
-               type = g_type_register_static (G_TYPE_INTERFACE,
-                                              "EvDocumentFind",
-                                              &our_info, (GTypeFlags)0);
-       }
-
-       return type;
+static void
+ev_document_find_default_init (EvDocumentFindInterface *klass)
+{
 }
 
 GList *
@@ -50,7 +35,7 @@ ev_document_find_find_text (EvDocumentFind *document_find,
                            const gchar    *text,
                            gboolean        case_sensitive)
 {
-       EvDocumentFindIface *iface = EV_DOCUMENT_FIND_GET_IFACE (document_find);
+       EvDocumentFindInterface *iface = EV_DOCUMENT_FIND_GET_IFACE (document_find);
        
        return iface->find_text (document_find, page, text, case_sensitive);
 }