comparison finch/gntidle.c @ 15852:c5487dd19e61

merge of '31ed92ba1b530f050510b4958686e3013ba4176c' and '41f65a78d919384ad599d73c656a367d92292a41'
author Evan Schoenberg <evan.s@dreskin.net>
date Tue, 20 Mar 2007 14:37:22 +0000
parents 32c366eeeb99
children 66dff3dfdea6
comparison
equal deleted inserted replaced
15851:5198bd455160 15852:c5487dd19e61
1 /* 1 /*
2 * gaim 2 * purple
3 * 3 *
4 * Gaim is the legal property of its developers, whose names are too numerous 4 * Purple is the legal property of its developers, whose names are too numerous
5 * to list here. Please refer to the COPYRIGHT file distributed with this 5 * to list here. Please refer to the COPYRIGHT file distributed with this
6 * source distribution. 6 * source distribution.
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
31 finch_get_idle_time() 31 finch_get_idle_time()
32 { 32 {
33 return gnt_wm_get_idle_time(); 33 return gnt_wm_get_idle_time();
34 } 34 }
35 35
36 static GaimIdleUiOps ui_ops = 36 static PurpleIdleUiOps ui_ops =
37 { 37 {
38 finch_get_idle_time 38 finch_get_idle_time
39 }; 39 };
40 40
41 GaimIdleUiOps * 41 PurpleIdleUiOps *
42 finch_idle_get_ui_ops() 42 finch_idle_get_ui_ops()
43 { 43 {
44 return &ui_ops; 44 return &ui_ops;
45 } 45 }