Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/consoleinterface.h')
-rw-r--r--src/sys/consoleinterface.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sys/consoleinterface.h b/src/sys/consoleinterface.h
index 3a7d3ed..2eae1d8 100644
--- a/src/sys/consoleinterface.h
+++ b/src/sys/consoleinterface.h
@@ -95,14 +95,14 @@ public:
/// enable or disable rcon
void set_rcon(bool enable = true);
- typedef std::deque<std::string> Text;
+ typedef std::deque<std::string> Queue;
- inline Text & rconbuf()
+ inline Queue & rconbuf()
{
return consoleinterface_rconbuf;
}
- inline Text & log()
+ inline Queue & log()
{
return consoleinterface_log;
}
@@ -126,9 +126,9 @@ private:
static ConsoleInterface *consoleinterface_instance;
bool consoleinterface_rcon;
- Text consoleinterface_rconbuf;
+ Queue consoleinterface_rconbuf;
- Text consoleinterface_log;
+ Queue consoleinterface_log;
size_t consoleinterface_logsize;
};