Browse Source

Fixed small naming issue.

cib 12 years ago
parent
commit
d3d17c13ea
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Core/Contents/Include/PolyObject.h

+ 1 - 1
Core/Contents/Include/PolyObject.h

@@ -80,7 +80,7 @@ namespace Polycode {
 		 * @param out A pointer to the value to write the number value to.
 		 * @param out A pointer to the value to write the number value to.
 		 * @return true if this[key] is a number, false otherwise.
 		 * @return true if this[key] is a number, false otherwise.
 		 */
 		 */
-		bool readNumberAttribute(String key, Number *out) {
+		bool readNumber(String key, Number *out) {
 			ObjectEntry *child = this->operator[](key);
 			ObjectEntry *child = this->operator[](key);
 
 
 			if(!child) {
 			if(!child) {