src/commands.cpp

changeset 135
8b9132fea327
parent 133
dbbdb870c835
child 138
a426c1039655
--- a/src/commands.cpp	Sun Jul 20 17:25:36 2014 +0300
+++ b/src/commands.cpp	Mon Jul 21 17:14:42 2014 +0300
@@ -30,30 +30,34 @@
 #include <stdio.h>
 #include <string.h>
 #include "main.h"
-#include "string.h"
+#include "stringClass.h"
 #include "commands.h"
 #include "lexer.h"
 
-static List<CommandInfo*> gCommands;
+static List<CommandInfo*> Commands;
 
 // ============================================================================
 //
 void addCommandDefinition (CommandInfo* comm)
 {
 	// Ensure that there is no conflicts
-	for (CommandInfo* it : gCommands)
+	for (CommandInfo* it : Commands)
+	{
 		if (it->number == comm->number)
+		{
 			error ("Attempted to redefine command #%1 (%2) as %3",
-				   gCommands[comm->number]->name, comm->name);
+				   Commands[comm->number]->name, comm->name);
+		}
+	}
 
-	gCommands << comm;
+	Commands << comm;
 }
 
 // ============================================================================
 // Finds a command by name
 CommandInfo* findCommandByName (String fname)
 {
-	for (CommandInfo* comm : gCommands)
+	for (CommandInfo* comm : Commands)
 	{
 		if (fname.toUppercase() == comm->name.toUppercase())
 			return comm;
@@ -119,5 +123,5 @@
 
 const List<CommandInfo*>& getCommands()
 {
-	return gCommands;
+	return Commands;
 }

mercurial