~ubuntu-branches/ubuntu/quantal/gnome-panel/quantal

« back to all changes in this revision

Viewing changes to applets/clock/system-timezone.h

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2012-02-08 00:17:11 UTC
  • mfrom: (1.13.15)
  • Revision ID: package-import@ubuntu.com-20120208001711-npwmthl0c6iy3s9a
Tags: 1:3.3.5-0ubuntu1
* New upstream release.
* debian/control.in:
  - Bump minimum glib to 2.31.14
* debian/patches/13_disable_missing_help.patch:
  Updated patch from bugzilla
* debian/patches/14_revert-timedate-change.patch:
  - Revert switch to systemd timedate protocol until ubuntu-system-
    services supports it

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
const char *system_timezone_get (SystemTimezone *systz);
62
62
const char *system_timezone_get_env (SystemTimezone *systz);
63
63
 
64
 
/* Functions to set the timezone. They won't be used by the applet, but
65
 
 * by a program with more privileges */
66
 
 
67
 
#define SYSTEM_TIMEZONE_ERROR system_timezone_error_quark ()
68
 
GQuark system_timezone_error_quark (void);
69
 
 
70
 
typedef enum
71
 
{
72
 
        SYSTEM_TIMEZONE_ERROR_GENERAL,
73
 
        SYSTEM_TIMEZONE_ERROR_INVALID_TIMEZONE_FILE,
74
 
        SYSTEM_TIMEZONE_NUM_ERRORS
75
 
} SystemTimezoneError;
76
 
 
77
 
gboolean system_timezone_set_from_file (const char  *zone_file,
78
 
                                        GError     **error);
79
 
gboolean system_timezone_set (const char  *tz,
80
 
                              GError     **error);
81
 
 
82
64
G_END_DECLS
83
65
#endif /* __SYSTEM_TIMEZONE_H__ */