Browse Source

Set TextBox::InputMode fixed values

Marc Plano-Lesay 12 years ago
parent
commit
7d8a86fc7e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      gameplay/src/TextBox.h

+ 2 - 2
gameplay/src/TextBox.h

@@ -47,12 +47,12 @@ public:
 		/**
 		/**
 		 * Text: Text is displayed directly.
 		 * Text: Text is displayed directly.
 		 */
 		 */
-		TEXT,
+		TEXT = 0x01,
 
 
 		/**
 		/**
 		 * Password: Text is replaced by _passwordChar, which is '*' by default.
 		 * Password: Text is replaced by _passwordChar, which is '*' by default.
 		 */
 		 */
-		PASSWORD
+		PASSWORD = 0x02
 	};
 	};
 
 
     /**
     /**