comparison plugins/timestamp.c @ 5227:6d1707dc8c3d

[gaim-migrate @ 5597] debug_printf -> gaim_debug committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 26 Apr 2003 17:36:52 +0000
parents fefad67de2c7
children 1f901484599d
comparison
equal deleted inserted replaced
5226:a2199ef77cbc 5227:6d1707dc8c3d
48 int tm; 48 int tm;
49 49
50 tm = 0; 50 tm = 0;
51 51
52 tm = CLAMP(gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spinner)), 1, G_MAXINT); 52 tm = CLAMP(gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spinner)), 1, G_MAXINT);
53 debug_printf("setting time to %d mins\n", tm); 53 gaim_debug(GAIM_DEBUG_MISC, "timestamp", "setting time to %d mins\n", tm);
54 54
55 tm = tm * 60 * 1000; 55 tm = tm * 60 * 1000;
56 56
57 timestamp = tm; 57 timestamp = tm;
58 } 58 }