summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-12-20 14:47:23 +0000
committerDana Jansens <danakj@orodu.net>2002-12-20 14:47:23 +0000
commit711d4a342f9f459383ad59ceb624fcb853a41512 (patch)
treedfaa653181353dd81a9433e5771a7dd6cbc302ff /src
parentb12b1cb7848d590be57281fa6ee68b9f05a57c30 (diff)
more typesafety
Diffstat (limited to 'src')
-rw-r--r--src/openbox.hh2
-rw-r--r--src/python_client.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/openbox.hh b/src/openbox.hh
index 2c26aaa1..e929f122 100644
--- a/src/openbox.hh
+++ b/src/openbox.hh
@@ -171,7 +171,7 @@ public:
//! Returns the mouse cursors used throughout Openbox
inline const Cursors &cursors() const { return _cursors; }
- inline PyObject *pyclients() const { return _pyclients; }
+ inline PyDictObject *pyclients() const { return _pyclients; }
//! The main function of the Openbox class
/*!
diff --git a/src/python_client.cc b/src/python_client.cc
index 3758e427..5ab86b6c 100644
--- a/src/python_client.cc
+++ b/src/python_client.cc
@@ -15,7 +15,7 @@ PyObject *get_client_dict(PyObject* self, PyObject* args)
{
if (!PyArg_ParseTuple(args, ":get_client_dict"))
return NULL;
- return PyDictProxy_New(Openbox::instance->pyclients());
+ return PyDictProxy_New((PyObject*)Openbox::instance->pyclients());
}