/+junk/libgego

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/libgego

« back to all changes in this revision

Viewing changes to src/gego_global_notify.c

  • Committer: Gustav Hartvigsson
  • Date: 2015-07-08 16:20:14 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20150708162014-z9dm9494n08fbvr5
* Fixed build... sort of

Show diffs side-by-side

added added

removed removed

Lines of Context:
261
261
 * return: #TRUE if Global Notify is initialized, otherwise #FALSE
262
262
 */
263
263
gboolean
264
 
gego_global_notify_is_initialized () {
 
264
gego_global_notify_is_initialized (void) {
265
265
  if (_gego_global_notify_instance == 0) {
266
266
    return TRUE;
267
267
  } else {
273
273
 * gego_global_notify_error_quark: (skip)
274
274
 */
275
275
GQuark
276
 
gego_global_notify_error_quark () {
 
276
gego_global_notify_error_quark (void) {
277
277
  return g_quark_from_static_string ("gego-global-notify-error-quark");
278
278
}
279
279