comparison plugins/tcl/tcl.c @ 13817:ad8ddfa756ad

[gaim-migrate @ 16249] This has no functional effect, but it should eliminate some compiler crying. committer: Tailor Script <tailor@pidgin.im>
author Ethan Blanton <elb@pidgin.im>
date Sat, 10 Jun 2006 19:51:32 +0000
parents 724e4c08391a
children e5e07c996c56
comparison
equal deleted inserted replaced
13816:1b783830ca06 13817:ad8ddfa756ad
51 }; 51 };
52 52
53 GaimStringref *GaimTclRefAccount; 53 GaimStringref *GaimTclRefAccount;
54 GaimStringref *GaimTclRefConnection; 54 GaimStringref *GaimTclRefConnection;
55 GaimStringref *GaimTclRefConversation; 55 GaimStringref *GaimTclRefConversation;
56 GaimStringref *GaimTclRefPointer;
56 GaimStringref *GaimTclRefStatus; 57 GaimStringref *GaimTclRefStatus;
57 GaimStringref *GaimTclRefStatusAttr; 58 GaimStringref *GaimTclRefStatusAttr;
58 GaimStringref *GaimTclRefStatusType; 59 GaimStringref *GaimTclRefStatusType;
59 60
60 static GHashTable *tcl_plugins = NULL; 61 static GHashTable *tcl_plugins = NULL;
342 gaim_tcl_ref_init(); 343 gaim_tcl_ref_init();
343 344
344 GaimTclRefAccount = gaim_stringref_new("Account"); 345 GaimTclRefAccount = gaim_stringref_new("Account");
345 GaimTclRefConnection = gaim_stringref_new("Connection"); 346 GaimTclRefConnection = gaim_stringref_new("Connection");
346 GaimTclRefConversation = gaim_stringref_new("Conversation"); 347 GaimTclRefConversation = gaim_stringref_new("Conversation");
348 GaimTclRefPointer = gaim_stringref_new("Pointer");
347 GaimTclRefStatus = gaim_stringref_new("Status"); 349 GaimTclRefStatus = gaim_stringref_new("Status");
348 GaimTclRefStatusAttr = gaim_stringref_new("StatusAttr"); 350 GaimTclRefStatusAttr = gaim_stringref_new("StatusAttr");
349 GaimTclRefStatusType = gaim_stringref_new("StatusType"); 351 GaimTclRefStatusType = gaim_stringref_new("StatusType");
350 352
351 tcl_plugins = g_hash_table_new(g_direct_hash, g_direct_equal); 353 tcl_plugins = g_hash_table_new(g_direct_hash, g_direct_equal);
363 tcl_plugins = NULL; 365 tcl_plugins = NULL;
364 366
365 gaim_stringref_unref(GaimTclRefAccount); 367 gaim_stringref_unref(GaimTclRefAccount);
366 gaim_stringref_unref(GaimTclRefConnection); 368 gaim_stringref_unref(GaimTclRefConnection);
367 gaim_stringref_unref(GaimTclRefConversation); 369 gaim_stringref_unref(GaimTclRefConversation);
370 gaim_stringref_unref(GaimTclRefPointer);
368 gaim_stringref_unref(GaimTclRefStatus); 371 gaim_stringref_unref(GaimTclRefStatus);
369 gaim_stringref_unref(GaimTclRefStatusAttr); 372 gaim_stringref_unref(GaimTclRefStatusAttr);
370 gaim_stringref_unref(GaimTclRefStatusType); 373 gaim_stringref_unref(GaimTclRefStatusType);
371 374
372 return TRUE; 375 return TRUE;