comparison libpurple/protocols/jabber/buddy.c @ 19489:b0733d5d7621

Fixed code indenting, some spaces were still left and now replaced by tabs.
author Andreas Monitzer <pidgin@monitzer.com>
date Tue, 28 Aug 2007 19:03:07 +0000
parents b5546f8f8c71
children 481749fc0b6b
comparison
equal deleted inserted replaced
19488:ebe2d2e71223 19489:b0733d5d7621
127 } 127 }
128 jbr->priority = priority; 128 jbr->priority = priority;
129 jbr->state = state; 129 jbr->state = state;
130 if(jbr->status) 130 if(jbr->status)
131 g_free(jbr->status); 131 g_free(jbr->status);
132 if (status) 132 if (status)
133 jbr->status = g_markup_escape_text(status, -1); 133 jbr->status = g_markup_escape_text(status, -1);
134 else 134 else
135 jbr->status = NULL; 135 jbr->status = NULL;
136 136
137 return jbr; 137 return jbr;
2277 * 2277 *
2278 * See discussion thread "Search comment for Jabber is not translatable" 2278 * See discussion thread "Search comment for Jabber is not translatable"
2279 * in purple-i18n@lists.sourceforge.net (March 2006) 2279 * in purple-i18n@lists.sourceforge.net (March 2006)
2280 */ 2280 */
2281 static const char * jabber_user_dir_comments [] = { 2281 static const char * jabber_user_dir_comments [] = {
2282 /* current comment from Jabber User Directory users.jabber.org */ 2282 /* current comment from Jabber User Directory users.jabber.org */
2283 N_("Find a contact by entering the search criteria in the given fields. " 2283 N_("Find a contact by entering the search criteria in the given fields. "
2284 "Note: Each field supports wild card searches (%)"), 2284 "Note: Each field supports wild card searches (%)"),
2285 NULL 2285 NULL
2286 }; 2286 };
2287 #endif 2287 #endif
2288 2288
2289 static void user_search_fields_result_cb(JabberStream *js, xmlnode *packet, gpointer data) 2289 static void user_search_fields_result_cb(JabberStream *js, xmlnode *packet, gpointer data)
2290 { 2290 {