/+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-09 17:15:02 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20150709171502-k3jplqlsvpxxbdas
* Moved GegoWebApplication out of the way
* Added clean_docs script
* Added LIBRARY_PATH to build_doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
  GCallback callback;
57
57
};
58
58
 
59
 
G_DEFINE_TYPE_WITH_PRIVATE (GegoGlobalNotify, gego_global_notify, G_TYPE_OBJECT);
 
59
G_DEFINE_TYPE_WITH_PRIVATE (GegoGlobalNotify, gego_global_notify, G_TYPE_OBJECT)
60
60
 
61
61
/**
62
62
 * gego_global_notify_new: (skip)
141
141
    g_set_error (err, GEGO_GLOBAL_NOTIFY_ERROR,
142
142
                 GEGO_GLOBAL_NOTIFY_ERROR_ALREADY_INITALIZED,
143
143
                 "The Global Notify system is already initialized.");
144
 
    return;
 
144
    return FALSE;
145
145
  }
146
146
  _gego_global_notify_instance = gego_global_notify_new ();
 
147
  return TRUE;
147
148
}
148
149
 
149
150
/**