summary refs log tree commit diff stats
path: root/plugins/python/python.c
diff options
context:
space:
mode:
authorTingPing <tngpng@gmail.com>2013-04-12 22:58:29 -0300
committerTingPing <tngpng@gmail.com>2013-04-12 22:58:29 -0300
commitba3f4daee865544817c7dfa82fb179b6bf80f0dd (patch)
tree747830b1bd5c4cbbe11337af98833159ed2b12a3 /plugins/python/python.c
parent2d3d4db16bec9d9ebb4b09f62f6a4d34dd23e30a (diff)
Rebrand object types
Diffstat (limited to 'plugins/python/python.c')
-rw-r--r--plugins/python/python.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/python/python.c b/plugins/python/python.c
index b5e19f0a..3305ce2c 100644
--- a/plugins/python/python.c
+++ b/plugins/python/python.c
@@ -765,7 +765,7 @@ static PyMethodDef XChatOut_methods[] = {
 statichere PyTypeObject XChatOut_Type = {
 	PyObject_HEAD_INIT(NULL)
 	0,			/*ob_size*/
-	"xchat.XChatOut",	/*tp_name*/
+	"hexchat.XChatOut",	/*tp_name*/
 	sizeof(XChatOutObject),	/*tp_basicsize*/
 	0,			/*tp_itemsize*/
 	XChatOut_dealloc,	/*tp_dealloc*/
@@ -938,7 +938,7 @@ static PyMethodDef Context_methods[] = {
 statichere PyTypeObject Context_Type = {
 	PyObject_HEAD_INIT(NULL)
 	0,			/*ob_size*/
-	"xchat.Context",	/*tp_name*/
+	"hexchat.Context",	/*tp_name*/
 	sizeof(ContextObject),	/*tp_basicsize*/
 	0,			/*tp_itemsize*/
 	Context_dealloc,        /*tp_dealloc*/
@@ -1034,7 +1034,7 @@ ListItem_repr(PyObject *self)
 statichere PyTypeObject ListItem_Type = {
 	PyObject_HEAD_INIT(NULL)
 	0,			/*ob_size*/
-	"xchat.ListItem",	/*tp_name*/
+	"hexchat.ListItem",	/*tp_name*/
 	sizeof(ListItemObject),	/*tp_basicsize*/
 	0,			/*tp_itemsize*/
 	ListItem_dealloc,	/*tp_dealloc*/
@@ -1419,7 +1419,7 @@ Plugin_dealloc(PluginObject *self)
 statichere PyTypeObject Plugin_Type = {
 	PyObject_HEAD_INIT(NULL)
 	0,			/*ob_size*/
-	"xchat.Plugin",		/*tp_name*/
+	"hexchat.Plugin",		/*tp_name*/
 	sizeof(PluginObject),	/*tp_basicsize*/
 	0,			/*tp_itemsize*/
 	(destructor)Plugin_dealloc, /*tp_dealloc*/