[vala/staging] curses: Remove initial “w” from some Window method names for consistency



commit 980cb7da20fc4cc3f733a8af1f0dc3f4a247d832
Author: Reuben Thomas <rrt sc3d org>
Date:   Wed Oct 21 21:59:41 2020 +0200

    curses: Remove initial “w” from some Window method names for consistency

 vapi/curses.vapi | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)
---
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")]


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]