~ubuntu-branches/ubuntu/karmic/ibus/karmic-updates

« back to all changes in this revision

Viewing changes to src/ibustext.c

  • Committer: Bazaar Package Importer
  • Author(s): LI Daobing
  • Date: 2009-07-23 20:22:09 UTC
  • mfrom: (1.1.4 upstream) (6.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20090723202209-bmgqa80g1umg8l2p
Tags: 1.2.0.20090723-1
new upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
 
134
134
    retval = ibus_message_iter_get (iter, G_TYPE_STRING, &str);
135
135
    g_return_val_if_fail (retval, FALSE);
 
136
    ibus_message_iter_next (iter);
136
137
 
137
138
    text->is_static = FALSE;
138
139
    text->text = g_strdup (str);
144
145
 
145
146
    retval = ibus_message_iter_get (iter, IBUS_TYPE_ATTR_LIST, &text->attrs);
146
147
    g_return_val_if_fail (retval, FALSE);
 
148
    ibus_message_iter_next (iter);
147
149
 
148
150
    return TRUE;
149
151
}