~ubuntu-branches/ubuntu/dapper/lasso/dapper

« back to all changes in this revision

Viewing changes to lasso/xml/dst_query_item.c

  • Committer: Bazaar Package Importer
  • Author(s): Loic Pefferkorn
  • Date: 2005-11-25 19:20:59 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051125192059-m4894lhpynmkrmwr
Tags: 0.6.3-4ubuntu1
Resynchronise with Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: dst_query_item.c,v 1.10 2005/01/22 15:57:55 eraviart Exp $ 
 
1
/* $Id: dst_query_item.c,v 1.11 2005/08/12 15:02:54 fpeters Exp $ 
2
2
 *
3
3
 * Lasso - A free implementation of the Liberty Alliance specifications.
4
4
 *
119
119
}
120
120
 
121
121
LassoDstQueryItem*
122
 
lasso_dst_query_item_new(const char *select)
 
122
lasso_dst_query_item_new(const char *select, const char *item_id)
123
123
{
124
124
        LassoDstQueryItem *node;
125
125
 
128
128
        node = g_object_new(LASSO_TYPE_DST_QUERY_ITEM, NULL);
129
129
 
130
130
        node->Select = g_strdup(select);
 
131
        node->itemID = g_strdup(item_id);
131
132
 
132
133
        return node;
133
134
}