Revision f2e17508 qdict.c

b/qdict.c
204 204
}
205 205

  
206 206
/**
207
 * qdict_get_qlist(): Get the QList mapped by 'key'
208
 *
209
 * This function assumes that 'key' exists and it stores a
210
 * QList object.
211
 *
212
 * Return QList mapped by 'key'.
213
 */
214
QList *qdict_get_qlist(const QDict *qdict, const char *key)
215
{
216
    return qobject_to_qlist(qdict_get_obj(qdict, key, QTYPE_QLIST));
217
}
218

  
219
/**
207 220
 * qdict_get_str(): Get a pointer to the stored string mapped
208 221
 * by 'key'
209 222
 *

Also available in: Unified diff