Changeset 7463 for branches/1.4x/gtk/util.c
- Timestamp:
- Dec 22, 2008, 5:39:02 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.4x/gtk/util.c
r6873 r7463 642 642 } 643 643 644 /*** 645 **** 646 ***/ 647 648 guint 649 gtr_timeout_add_seconds( guint interval, 650 GSourceFunc function, 651 gpointer data ) 652 { 653 #if GLIB_CHECK_VERSION( 2,14,0 ) 654 return g_timeout_add_seconds( interval, function, data ); 655 #else 656 return g_timeout_add( interval*1000, function, data ); 657 #endif 658 }
Note: See TracChangeset
for help on using the changeset viewer.