summaryrefslogtreecommitdiff
path: root/telepathy-glib/channel-manager.c
Commit message (Collapse)AuthorAgeFilesLines
* Prepare 0.19.1telepathy-glib-0.19.1Guillaume Desmottes2012-06-061-2/+2
|
* channel-manager: deprecate emit_new_channelsJonny Lamb2012-05-101-2/+15
| | | | | Bug: https://bugs.freedesktop.org/show_bug.cgi?id=47942 Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* Stop using TP_ERRORSSimon McVittie2012-05-021-1/+1
| | | | We deprecated this in 0.11.
* Use GLib's default marshaller everywhereSimon McVittie2012-03-011-10/+4
| | | | | | | | In contrast to the previous commit, I'm just using NULL here - telepathy-glib has an explicit dependency on GLib 2.30. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=46523 Reviewed-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* Use _unref instead of _free _destroy when possible.Xavier Claessens2011-11-161-1/+1
| | | | | | | | | | | Replace g_(ptr_)array_free (foo, TRUE) and g_hash_table_destroy with respectively g_(ptr_)array_unref (foo) and g_hash_table_unref. I used this command to generate this patch: for f in `find -name "*.c"`; do sed -i $f -re 's/g_ptr_array_free \(([^ ,]+), TRUE\)/g_ptr_array_unref \(\1\)/'; done See Danielle's blog for explanation of possible bug _free can do: http://blogs.gnome.org/danni/2011/11/16/mistakes-with-g_value_set_boxed/
* Version 0.15.5telepathy-glib-0.15.5Will Thompson2011-08-171-1/+1
|
* base-connection: ensure TargetID is untouched and present in requestsJonny Lamb2011-07-281-4/+5
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* fd.o #30644: don't 'return' a void expression from a void functionSimon McVittie2010-10-061-1/+1
| | | | | This isn't allowed by C99, but gcc accepts it as an extension and doesn't seem to offer a way to warn about it.
* Prepare version 0.11.11telepathy-glib-0.11.11Simon McVittie2010-07-261-2/+2
|
* Merge branch 'protocol3' into specSimon McVittie2010-07-201-2/+91
|\ | | | | | | | | | | | | | | | | | | | | Reviewed by Andre (partially) and Senko (the rest). Conflicts: spec/Connection_Manager.xml spec/Makefile.am spec/Protocol.xml spec/all.xml telepathy-glib/extra-gtkdoc.h
| * TpChannelManager: add type_foreach_channel_class()Simon McVittie2010-07-161-2/+91
| | | | | | | | | | Protocol objects want to iterate over all possible channel classes before a channel manager has been instantiated.
* | channel-manager: fix typo in documentationJonny Lamb2010-07-081-1/+1
|/ | | | | | The signal is called request-already-satisfied, not already-satisfied. Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* Fix various typos and cross-referencesSimon McVittie2010-03-021-6/+6
| | | | Reviewed-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* ChannelManager: correct documented return value of has_unknown_propertiesWill Thompson2008-11-181-2/+2
|
* Update spec to 0.17.12 (no code changes) and prepare 0.7.16 releasetelepathy-glib-0.7.16Simon McVittie2008-09-261-2/+4
|
* ChannelManager: add ensure_channel method to vtableWill Thompson2008-09-241-0/+36
|
* Prepare version 0.7.15telepathy-glib-0.7.15Simon McVittie2008-09-181-13/+13
| | | | Signed-Off-By: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
* ChannelManager: we don't need a better GType for channels in new-channels signalWill Thompson2008-09-181-1/+0
| | | | | | Given that request tokens are opaque pointers, the best we could do is have a GType for GHashTable<TpExportableChannel, GList<gpointer>> which wouldn't really be any better than just using G_TYPE_POINTER.
* ChannelManager: move gtkdoc to .cWill Thompson2008-09-171-0/+111
|
* ChannelManager: update list of managers in gabbleWill Thompson2008-09-151-2/+2
|
* ChannelManager: add Since: annotationsWill Thompson2008-09-151-0/+26
|
* Document TpChannelManagerWill Thompson2008-09-151-5/+74
|
* ChannelManager: refer to opaque gpointers as request tokens consistentlyWill Thompson2008-09-151-5/+6
|
* Add tp_channel_manager_asv_has_unknown_propertiesWill Thompson2008-09-151-0/+48
|
* Add TpChannelManager interfaceWill Thompson2008-09-151-0/+418