~ubuntu-branches/ubuntu/saucy/evolution-data-server/saucy

« back to all changes in this revision

Viewing changes to libedataserver/e-data-server-util.h

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-10-08 12:58:16 UTC
  • mfrom: (181.1.7 quantal)
  • Revision ID: package-import@ubuntu.com-20121008125816-i3n76e8c0m64e7xp
Tags: 3.6.0-0ubuntu2
* Fix LP: #1038047 part 1 - Don't abort in e_source_registry_new* when a
  problem occurs connecting to the Dbus service
  - add debian/patches/dont-abort-in-e_source_registry_new.patch
  - update debian/patches/series
* Fix LP: #1038047 part 2 - libedataserver depends on
  evolution-data-server-common to ensure that the GSettings schemas are
  present
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
                                                 const gchar *s2);
51
51
gchar *         e_util_utf8_remove_accents      (const gchar *str);
52
52
gchar *         e_util_utf8_make_valid          (const gchar *str);
 
53
gchar *         e_util_utf8_data_make_valid     (const gchar *data,
 
54
                                                 gsize data_bytes);
53
55
const gchar *   e_util_ensure_gdbus_string      (const gchar *str,
54
56
                                                 gchar **gdbus_str);
55
57
guint64         e_util_gthread_id               (GThread *thread);
123
125
void            e_data_server_util_set_dbus_call_timeout
124
126
                                                (gint timeout_msec);
125
127
 
126
 
/**
127
 
 * e_pointer_tracker_track:
128
 
 *
129
 
 * FIXME: Document me.
130
 
 *
131
 
 * Since: 3.2
132
 
 **/
133
 
#define e_pointer_tracker_track(ptr) \
134
 
        (e_pointer_tracker_track_with_info ((ptr), G_STRFUNC))
135
 
 
136
 
void            e_pointer_tracker_track_with_info (gpointer ptr, const gchar *info);
137
 
void            e_pointer_tracker_untrack (gpointer ptr);
138
 
void            e_pointer_tracker_dump (void);
139
 
 
140
128
G_END_DECLS
141
129
 
142
130
#endif /* E_DATA_SERVER_UTIL_H */