~ubuntu-branches/ubuntu/hardy/epiphany-extensions/hardy-updates

« back to all changes in this revision

Viewing changes to extensions/auto-scroller/extension.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2008-02-11 12:07:10 UTC
  • mfrom: (1.1.25 upstream)
  • Revision ID: james.westby@ubuntu.com-20080211120710-mene00j2jh4ddwnz
Tags: 2.20.1svn20080211-0ubuntu1
* New SVN snapshot:
  - work with the hardy epiphany-browser version (lp: #178117)
* debian/control.in:
  - build using xulrunner
  - updated epiphany-browser requirement
* debian/patches/ephy-extensions.xul.1.9.patch:
  - patch from Alexander Sack to build using xulrunner1.9
* debian/patches/delicious.diff:
  - dropped, the change is in the svn version
* debian/rules:
  - build using libxul
  - updated installation directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 *  along with this program; if not, write to the Free Software
17
17
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
18
 *
19
 
 *  $Id: extension.c 1376 2006-09-13 19:01:42Z chpe $
 
19
 *  $Id: extension.c 1623 2007-11-03 23:19:45Z cyrilbois $
20
20
 */
21
21
 
22
22
#include "config.h"
37
37
 
38
38
#ifdef ENABLE_NLS
39
39
       /* Initialise the i18n stuff */
40
 
        bindtextdomain (GETTEXT_PACKAGE, EPHY_EXTENSIONS_LOCALEDIR);
41
 
        bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");     
 
40
        bindtextdomain (GETTEXT_PACKAGE, EPHY_EXTENSIONS_LOCALEDIR);
 
41
        bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
42
42
#endif /* ENABLE_NLS */
43
43
 
44
 
        ephy_auto_scroller_register_type (module);
 
44
        ephy_auto_scroller_register_type (module);
45
45
 
46
46
        return ephy_auto_scroller_extension_register_type (module);
47
47
}