comparison pidgin/gtkmain.c @ 19567:b99a158ea85e

disapproval of revision 'c672802b647f1230fbd9b0edf383fb3d558cf719'
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Sun, 02 Sep 2007 00:03:43 +0000
parents 57d350900136
children 1c5d0f2c2d4e aa3920f45ff3
comparison
equal deleted inserted replaced
19566:57d350900136 19567:b99a158ea85e
875 winpidgin_cleanup(); 875 winpidgin_cleanup();
876 #endif 876 #endif
877 877
878 return 0; 878 return 0;
879 } 879 }
880
881 #undef g_file_test
882 gboolean my_g_file_test(const char *file, int test)
883 {
884 g_printerr("XXX: checking for %s (%d)\n", file, test);
885 return g_file_test(file, test);
886 }
887