~ubuntu-branches/ubuntu/precise/gnome-games/precise-proposed

« back to all changes in this revision

Viewing changes to gnobots2/src/gnobots.c

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2012-02-06 22:22:58 UTC
  • mfrom: (1.1.103)
  • Revision ID: package-import@ubuntu.com-20120206222258-28gah1dnl2ij0kw0
Tags: 1:3.3.5-0ubuntu1
* New upstream release.
  - Performance was improved in Iagno, Mahjongg & Mines
  - Statusbar was removed from Iagno and Mines
  - Mines has a new game screen
  - Quadrapassel was ported to Vala
  - Quadrapassel has a new option to show where block
    will land
* debian/control.in:
  - Bump vala to valac-0.16 and GTK to 3.3.11
  - Build-Depend on yelp-tools instead of gnome-doc-utils
* Update install files for new help install location
* debian/patches/01_lpi.patch: Refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <sys/time.h>
25
25
#include <string.h>
26
26
#include <stdlib.h>
 
27
#include <locale.h>
27
28
 
28
29
#include <glib/gi18n.h>
29
30
#include <glib.h>
143
144
  gboolean retval;
144
145
  GError *error = NULL;
145
146
 
 
147
  setlocale (LC_ALL, "");
 
148
  bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
 
149
  bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
 
150
  textdomain (GETTEXT_PACKAGE);
 
151
 
146
152
  games_scores_startup ();
147
153
 
148
154
  gettimeofday (&tv, NULL);