Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/giscanner/girwriter.py
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2009-02-26 21:52:42 (GMT)
committer Colin Walters <walters@verbum.org>2009-02-26 21:52:42 (GMT)
commitca21c1ce6f2fa9f8be9307121ce27a46cc9c0ed0 (patch)
treebe25649d977e3daa4d461a5359b7cef677c94975 /giscanner/girwriter.py
parente49a883d0997127cd3a0ad7e522666f30190e792 (diff)
Revert "Bug 557383 - Virtual function support"
This reverts commit 4470a24e8cf3827efaddcfe240c3271cf1a0d6c0. Needs more work as it turns out, we need to figure out the binding story.
Diffstat (limited to 'giscanner/girwriter.py')
-rw-r--r--giscanner/girwriter.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/giscanner/girwriter.py b/giscanner/girwriter.py
index 9a08aaa..df52709 100644
--- a/giscanner/girwriter.py
+++ b/giscanner/girwriter.py
@@ -167,11 +167,7 @@ and/or use gtk-doc annotations. ''')
self._write_parameters(func.parameters)
def _write_method(self, method):
- if method.is_virtual:
- tag_name = 'vfunc'
- else:
- tag_name = 'method'
- self._write_function(method, tag_name)
+ self._write_function(method, tag_name='method')
def _write_static_method(self, method):
self._write_function(method, tag_name='function')