Browse Source

Changed TextBox "space" function so luagen doesn't tyr to generate a binding for it

Rcmaniac25 12 years ago
parent
commit
a2dfcdd90d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gameplay/src/TextBox.cpp

+ 1 - 1
gameplay/src/TextBox.cpp

@@ -4,7 +4,7 @@
 namespace gameplay
 {
 
-bool space(char c) {
+static bool space(char c) {
     return isspace(c);
 }