From: Reuben Thomas Date: Wed, 21 Oct 2020 19:59:41 +0000 (+0200) Subject: curses: Remove initial “w” from some Window method names for consistency X-Git-Tag: 0.51.1~201 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=980cb7da20fc4cc3f733a8af1f0dc3f4a247d832;p=thirdparty%2Fvala.git curses: Remove initial “w” from some Window method names for consistency --- diff --git a/vapi/curses.vapi b/vapi/curses.vapi index 6dcc78e43..8e20a1b4d 100644 --- a/vapi/curses.vapi +++ b/vapi/curses.vapi @@ -150,9 +150,12 @@ namespace Curses { public int untouchwin(); [CCode (cname = "waddch")] public int addch(ulong ch); - public int waddchnstr([CCode (array_length = false)] ulong[] chstr, int n); - public int waddchstr([CCode (array_length = false)] ulong[] chstr); - public int waddnstr(string str, int n); + [CCode (cname = "waddchnstr")] + public int addchnstr([CCode (array_length = false)] ulong[] chstr, int n); + [CCode (cname = "waddchstr")] + public int addchstr([CCode (array_length = false)] ulong[] chstr); + [CCode (name = "waddnstr")] + public int addnstr(string str, int n); [CCode (cname = "waddstr")] public int addstr(string str); [CCode (cname = "wattron")]