summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-05-06 00:07:18 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-05-06 00:07:18 (GMT)
commitd76e89e102aacfe945b44eb3150cb9f4bbf7b613 (patch)
tree7dda55fabeddcd0dbd1813d9ceef4b905a056c7f /plugins
parent2c6e4f3f3f15d1568e9dae407e32a217d8f7ab19 (diff)
Displayed a tooltip for strings or code symbols in buffer views.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@530 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'plugins')
-rw-r--r--plugins/pychrysa/glibext/codebuffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/pychrysa/glibext/codebuffer.c b/plugins/pychrysa/glibext/codebuffer.c
index ddead68..6368ee7 100644
--- a/plugins/pychrysa/glibext/codebuffer.c
+++ b/plugins/pychrysa/glibext/codebuffer.c
@@ -66,7 +66,7 @@ static PyObject *py_code_buffer_find_line_by_addr(PyObject *self, PyObject *args
ret = PyArg_ParseTuple(args, "K", &addr);
if (!ret) Py_RETURN_NONE;
- line = g_code_buffer_find_line_by_addr(buffer, addr);
+ line = g_code_buffer_find_line_by_addr(buffer, addr, 0, NULL);
if (line == NULL) Py_RETURN_NONE;
result = pygobject_new(G_OBJECT(line));