diff options
author | Perberos <[email protected]> | 2011-11-09 18:44:56 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-11-09 18:44:56 -0300 |
commit | da7bb154d27d3b872867223a5df60df8f5fb6e7d (patch) | |
tree | c1a40fbb481956cf2fda2263bf78389622eba0a5 /libdocument/ev-module.c | |
parent | 342e9e9bf91625bf6f0102fb7bbc652dea222064 (diff) | |
download | atril-da7bb154d27d3b872867223a5df60df8f5fb6e7d.tar.bz2 atril-da7bb154d27d3b872867223a5df60df8f5fb6e7d.tar.xz |
renaming evince to atril
Diffstat (limited to 'libdocument/ev-module.c')
-rw-r--r-- | libdocument/ev-module.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libdocument/ev-module.c b/libdocument/ev-module.c index 330da2cc..1a147eff 100644 --- a/libdocument/ev-module.c +++ b/libdocument/ev-module.c @@ -1,6 +1,6 @@ /* * ev-module.c - * This file is part of Evince + * This file is part of Atril * * Copyright (C) 2005 - Paolo Maggi * @@ -36,7 +36,7 @@ * $Id: gedit-module.c 5367 2006-12-17 14:29:49Z pborelli $ */ -/* Modified by evince team */ +/* Modified by atril team */ #include "config.h" @@ -82,7 +82,7 @@ ev_module_load (GTypeModule *gmodule) } /* extract symbols from the lib */ - if (!g_module_symbol (module->library, "register_evince_backend", + if (!g_module_symbol (module->library, "register_atril_backend", (void *) ®ister_func)) { g_warning ("%s", g_module_error ()); g_module_close (module->library); @@ -93,7 +93,7 @@ ev_module_load (GTypeModule *gmodule) /* symbol can still be NULL even though g_module_symbol * returned TRUE */ if (!register_func) { - g_warning ("Symbol 'register_evince_backend' should not be NULL"); + g_warning ("Symbol 'register_atril_backend' should not be NULL"); g_module_close (module->library); return FALSE; @@ -102,7 +102,7 @@ ev_module_load (GTypeModule *gmodule) module->type = register_func (gmodule); if (module->type == 0) { - g_warning ("Invalid evince backend contained by module %s", module->path); + g_warning ("Invalid atril backend contained by module %s", module->path); return FALSE; } |