summaryrefslogtreecommitdiffstats
path: root/src/objects/notifylist-object.c
diff options
context:
space:
mode:
authorPaul W. Frields <stickster@gmail.com>2012-03-02 20:11:55 -0500
committerPaul W. Frields <stickster@gmail.com>2012-03-02 20:11:55 -0500
commit29637ceae35271c44a44a671b86caa149ef1880e (patch)
treee39723162c15c4e1d27c526a72f42c722a6e250d /src/objects/notifylist-object.c
parent1ef5e9d11c6fa9300738946bb0fa28c01d9c12a3 (diff)
downloadirssi-python-29637ceae35271c44a44a671b86caa149ef1880e.tar.gz
irssi-python-29637ceae35271c44a44a671b86caa149ef1880e.tar.xz
irssi-python-29637ceae35271c44a44a671b86caa149ef1880e.zip
Patch to build against 0.8.15
For more information, refer to: http://sector-5.net/archives/irssi-python-for-irssi-0-8-15/
Diffstat (limited to 'src/objects/notifylist-object.c')
-rw-r--r--src/objects/notifylist-object.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/objects/notifylist-object.c b/src/objects/notifylist-object.c
index 3fc464d..50804f7 100644
--- a/src/objects/notifylist-object.c
+++ b/src/objects/notifylist-object.c
@@ -77,23 +77,12 @@ static PyObject *PyNotifylist_away_check_get(PyNotifylist *self, void *closure)
return PyBool_FromLong(NOTIFYLIST(self->data)->away_check);
}
-PyDoc_STRVAR(PyNotifylist_idle_check_time_doc,
- "Notify when idle time is reset and idle was bigger than this (seconds)"
-);
-static PyObject *PyNotifylist_idle_check_time_get(PyNotifylist *self, void *closure)
-{
- RET_NULL_IF_INVALID(self->data);
- return PyLong_FromUnsignedLong(NOTIFYLIST(self->data)->idle_check_time);
-}
-
/* specialized getters/setters */
static PyGetSetDef PyNotifylist_getseters[] = {
{"mask", (getter)PyNotifylist_mask_get, NULL,
PyNotifylist_mask_doc, NULL},
{"away_check", (getter)PyNotifylist_away_check_get, NULL,
PyNotifylist_away_check_doc, NULL},
- {"idle_check_time", (getter)PyNotifylist_idle_check_time_get, NULL,
- PyNotifylist_idle_check_time_doc, NULL},
{NULL}
};