aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2007-10-13 19:47:48 +0800
committerxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2007-10-13 19:47:48 +0800
commit72e5841e61bbbe883e407bf8d16868d99ab847cb (patch)
treee3b4078a2ee06cd777a50399771a2fca7263898d /tests
parent7fe39120a7aeef04f41105eee5173cd10b423474 (diff)
downloadgsoc2013-empathy-72e5841e61bbbe883e407bf8d16868d99ab847cb.tar
gsoc2013-empathy-72e5841e61bbbe883e407bf8d16868d99ab847cb.tar.gz
gsoc2013-empathy-72e5841e61bbbe883e407bf8d16868d99ab847cb.tar.bz2
gsoc2013-empathy-72e5841e61bbbe883e407bf8d16868d99ab847cb.tar.lz
gsoc2013-empathy-72e5841e61bbbe883e407bf8d16868d99ab847cb.tar.xz
gsoc2013-empathy-72e5841e61bbbe883e407bf8d16868d99ab847cb.tar.zst
gsoc2013-empathy-72e5841e61bbbe883e407bf8d16868d99ab847cb.zip
2007-10-13 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-main-window.c: * libempathy-gtk/empathy-presence-chooser.c: * libempathy-gtk/empathy-contact-list-view.c: * libempathy-gtk/empathy-contact-widget.c: * libempathy-gtk/empathy-chat.c: * libempathy-gtk/empathy-contact-list-store.c: * libempathy-gtk/empathy-chat-window.c: * libempathy/empathy-idle.c: * tests/contact-manager.c: Use g_timeout_add_seconds when appropriated to avoid weaking the process too much. git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@370 4ee84921-47dd-4033-b63a-18d7a039a3e4
Diffstat (limited to 'tests')
-rw-r--r--tests/contact-manager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/contact-manager.c b/tests/contact-manager.c
index a8831a971..75bfc7fae 100644
--- a/tests/contact-manager.c
+++ b/tests/contact-manager.c
@@ -22,7 +22,7 @@ main (int argc, char **argv)
main_loop = g_main_loop_new (NULL, FALSE);
manager = empathy_contact_manager_new ();
- g_timeout_add (5000, time_out, main_loop);
+ g_timeout_add_seconds (5, time_out, main_loop);
g_main_loop_run (main_loop);