From eba0437d680eb20dc042b7f5e7f5e1a2e5dfe16f Mon Sep 17 00:00:00 2001 From: faketruth Date: Wed, 22 Aug 2012 23:29:15 +0000 Subject: Fixed WebAdmin showing tab names (thanks for pointing it out Lapayo) Changed some std::string to AString git-svn-id: http://mc-server.googlecode.com/svn/trunk@780 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cWebPlugin.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source/cWebPlugin.cpp') diff --git a/source/cWebPlugin.cpp b/source/cWebPlugin.cpp index d0f0c9a9c..47e7d9e49 100644 --- a/source/cWebPlugin.cpp +++ b/source/cWebPlugin.cpp @@ -38,12 +38,12 @@ cWebPlugin::~cWebPlugin() -std::list< std::pair > cWebPlugin::GetTabNames() +std::list< std::pair > cWebPlugin::GetTabNames() { - std::list< std::pair< std::string, std::string > > NameList; + std::list< std::pair< AString, AString > > NameList; for( TabList::iterator itr = GetTabs().begin(); itr != GetTabs().end(); ++itr ) { - std::pair< std::string, std::string > StringPair; + std::pair< AString, AString > StringPair; StringPair.first = (*itr)->Title; StringPair.second = (*itr)->SafeTitle; NameList.push_back( StringPair ); @@ -55,9 +55,9 @@ std::list< std::pair > cWebPlugin::GetTabNames() -std::pair< std::string, std::string > cWebPlugin::GetTabNameForRequest( HTTPRequest* a_Request ) +std::pair< AString, AString > cWebPlugin::GetTabNameForRequest( HTTPRequest* a_Request ) { - std::pair< std::string, std::string > Names; + std::pair< AString, AString > Names; AStringVector Split = StringSplit(a_Request->Path, "/"); if( Split.size() > 1 ) @@ -95,7 +95,7 @@ std::pair< std::string, std::string > cWebPlugin::GetTabNameForRequest( HTTPRequ AString cWebPlugin::SafeString( const AString & a_String ) { - std::string RetVal; + AString RetVal; for( unsigned int i = 0; i < a_String.size(); ++i ) { char c = a_String[i]; -- cgit v1.2.3