| 927 |
927 |
| 928 i += count; |
928 i += count; |
| 929 } |
929 } |
| 930 |
930 |
| 931 return g_string_free(string, FALSE); |
931 return g_string_free(string, FALSE); |
| 932 } |
|
| 933 |
|
| 934 |
|
| 935 /**************************************************************************/ |
|
| 936 /* GLib Event Loop Functions */ |
|
| 937 /**************************************************************************/ |
|
| 938 |
|
| 939 void purple_timeout_reset(GSource *source, gint64 seconds_from_now) |
|
| 940 { |
|
| 941 g_source_set_ready_time(source, g_get_monotonic_time() + (seconds_from_now * G_USEC_PER_SEC)); |
|
| 942 } |
932 } |
| 943 |
933 |
| 944 |
934 |
| 945 /************************************************************************** |
935 /************************************************************************** |
| 946 * Markup Functions |
936 * Markup Functions |