]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
curses: Remove initial “w” from some Window method names for consistency
authorReuben Thomas <rrt@sc3d.org>
Wed, 21 Oct 2020 19:59:41 +0000 (21:59 +0200)
committerRico Tzschichholz <ricotz@ubuntu.com>
Wed, 21 Oct 2020 19:59:41 +0000 (21:59 +0200)
vapi/curses.vapi

index 6dcc78e4339dc60ea6e2cd502c4d7527fd823618..8e20a1b4df9464e3b5716498fce62b5bb54aadf0 100644 (file)
@@ -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")]