Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/src/sys
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-10-16 16:34:15 +0000
committerStijn Buys <ingar@osirion.org>2008-10-16 16:34:15 +0000
commit1a28393dabf4f4696bf433ddde52e7a25253c955 (patch)
tree4d4fa4034f30fc882a78ab6ea148a32e83b9e88c /src/sys
parent1e0df536c2fae85c317ce9c3cc17603d5f98c911 (diff)
various user interface related updates
Diffstat (limited to 'src/sys')
-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;
};