summaryrefslogtreecommitdiffstats
path: root/gobject
diff options
context:
space:
mode:
authorJohan Dahlin <johan@src.gnome.org>2008-07-28 09:11:48 +0000
committerJohan Dahlin <johan@src.gnome.org>2008-07-28 09:11:48 +0000
commit0d3124f83bd18e420c3beb1b354c41b07c478882 (patch)
treeb9f8f7a48a4e7e0d225218c035e250897891dab2 /gobject
parentfca788c706317aa371e81c1c070c888ad245b31f (diff)
downloadpygobject-0d3124f83bd18e420c3beb1b354c41b07c478882.tar.gz
pygobject-0d3124f83bd18e420c3beb1b354c41b07c478882.tar.xz
pygobject-0d3124f83bd18e420c3beb1b354c41b07c478882.zip
Remove unnecessary spacing
svn path=/trunk/; revision=888
Diffstat (limited to 'gobject')
-rw-r--r--gobject/pygflags.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gobject/pygflags.c b/gobject/pygflags.c
index 34b328f..1857bb3 100644
--- a/gobject/pygflags.c
+++ b/gobject/pygflags.c
@@ -470,10 +470,10 @@ static PyNumberMethods pyg_flags_as_number = {
void
pygobject_flags_register_types(PyObject *d)
{
- pygflags_class_key = g_quark_from_static_string("PyGFlags::class");
+ pygflags_class_key = g_quark_from_static_string("PyGFlags::class");
PyGFlags_Type.tp_base = &_PyLong_Type;
- PyGFlags_Type.tp_repr = (reprfunc)pyg_flags_repr;
+ PyGFlags_Type.tp_repr = (reprfunc)pyg_flags_repr;
PyGFlags_Type.tp_as_number = &pyg_flags_as_number;
PyGFlags_Type.tp_str = (reprfunc)pyg_flags_repr;
PyGFlags_Type.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE;