~charlesk/indicator-datetime/lp-1251460

« back to all changes in this revision

Viewing changes to src/utils.c

  • Committer: Tarmac
  • Author(s): Charles Kerr
  • Date: 2013-10-30 23:49:58 UTC
  • mfrom: (277.3.13 cmakeify)
  • Revision ID: tarmac-20131030234958-jpw5u72656f8mdf2
Switch the build system to cmake. Fixes: https://bugs.launchpad.net/bugs/1237509.

Approved by Ted Gould, PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
with this program.  If not, see <http://www.gnu.org/licenses/>.
21
21
*/
22
22
 
23
 
#ifdef HAVE_CONFIG_H
24
 
#include "config.h"
25
 
#endif
26
 
 
27
23
#include <glib/gi18n-lib.h>
28
24
#include <gio/gio.h>
29
25
#include <locale.h>
104
100
  split_settings_location (tz_name, &old_zone, &old_name);
105
101
  g_free (tz_name);
106
102
 
107
 
  // new_name is always just a sanitized version of a timezone.
108
 
  // old_name is potentially a saved "pretty" version of a timezone name from
109
 
  // geonames.  So we prefer to use it if available and the zones match.
 
103
  /* new_name is always just a sanitized version of a timezone.
 
104
     old_name is potentially a saved "pretty" version of a timezone name from
 
105
     geonames.  So we prefer to use it if available and the zones match. */
110
106
 
111
107
  if (g_strcmp0 (old_zone, new_zone) == 0) {
112
108
    rv = old_name;