Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/giscanner/girwriter.py
diff options
context:
space:
mode:
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')