summaryrefslogtreecommitdiff
path: root/telepathy-logger/action-chain.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix action chain not to free result in finishNicolas Dufresne2011-06-271-2/+5
| | | | | | Freeing result in finish would lead to use after free since GLib push and pop default thread context in complete() calls. Also, it's very bad pratice as _finish() calls are optional.
* Removed broken editor instructionNicolas Dufresne2011-03-251-1/+0
|
* Change TplChannel into an interface and portNicolas Dufresne2011-03-151-15/+24
| | | | | | This change will allow TplTextChannel to inherit TpTextChannel, choose what feature it wants to be prepared. It also slightly change the action chain API to better fit GAsync normal signature.
* Rename 'link' to 'l' to fix build warningXavier Claessens2010-06-191-15/+15
|
* rename _tpl_action_chain_new to fit async/finish conventionsGuillaume Desmottes2010-05-261-4/+4
|
* Internalize action-chainSimon McVittie2010-04-231-12/+12
|
* tpl_actionchain_* -> tpl_action_chain_* -- make methods consistent with typeDanielle Madeley2010-03-191-11/+11
|
* Clean up channel reference counting, fix reference leak in TplActionChainDanielle Madeley2010-03-191-8/+32
|
* Fix the signature of link_free() and use it more consistently.Travis Reitter2010-02-251-5/+4
|
* Extend the TplActionChain API to support passing arbitrary data to the ↵Travis Reitter2010-02-251-6/+37
| | | | chained functions.
* include config.hCosimo Alfarano2010-02-151-0/+1
| | | | Also alphabetic ordering for TPL_DEBUG_XXX constant and GDebugKey array
* Action chain module createdCosimo Alfarano2010-02-121-0/+106
* moved action-chain related funcs to action-chain module * remove action-chain related funcs from utils * included action-chain.h where needed and added to Makefile.am