[vala] curses: make stdscr curscr and newscr not constant



commit 4dbb835737eb9adbfbe579e1af71f60fd6a02ee1
Author: inter <interflug1 gmx net>
Date:   Sat Aug 1 22:27:03 2009 +0200

    curses: make stdscr curscr and newscr not constant
    
    Curses example on wiki compiles again

 vapi/curses.vapi |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/vapi/curses.vapi b/vapi/curses.vapi
index 87afe20..1a2ba36 100644
--- a/vapi/curses.vapi
+++ b/vapi/curses.vapi
@@ -45,9 +45,9 @@ namespace Curses {
 		SBSS, SSSB, SSBS, BSSS, BSBS, SBSB, SSSS
 	}
 
-	public const Window stdscr;
-	public const Window curscr;
-	public const Window newscr;
+	public Window stdscr;
+	public Window curscr;
+	public Window newscr;
 
 	public const int LINES;
 	public const int COLS;



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