summaryrefslogtreecommitdiff
path: root/vala/valaerrordomain.vala
diff options
context:
space:
mode:
Diffstat (limited to 'vala/valaerrordomain.vala')
-rw-r--r--vala/valaerrordomain.vala8
1 files changed, 1 insertions, 7 deletions
diff --git a/vala/valaerrordomain.vala b/vala/valaerrordomain.vala
index 713e452ed..eecd97c8e 100644
--- a/vala/valaerrordomain.vala
+++ b/vala/valaerrordomain.vala
@@ -148,13 +148,7 @@ public class Vala.ErrorDomain : TypeSymbol {
this.cname = cname;
}
- /**
- * Returns the string to be prepended to the name of members of this
- * error domain when used in C code.
- *
- * @return the prefix to be used in C code
- */
- public string get_cprefix () {
+ public override string get_cprefix () {
if (cprefix == null) {
cprefix = "%s_".printf (get_upper_case_cname (null));
}