summaryrefslogtreecommitdiffstats
path: root/source/cWebPlugin_Lua.h
diff options
context:
space:
mode:
authorfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-02-01 01:02:48 +0100
committerfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-02-01 01:02:48 +0100
commit28bc14e267daff85d66efc9467f40ce87bfcb858 (patch)
treea2ab38d5f8805c64294905a4b65b694d6dfeacf7 /source/cWebPlugin_Lua.h
parentChanged how Lua handles the (Post)Params in the HTTPRequest of a WebPlugin (diff)
downloadcuberite-28bc14e267daff85d66efc9467f40ce87bfcb858.tar
cuberite-28bc14e267daff85d66efc9467f40ce87bfcb858.tar.gz
cuberite-28bc14e267daff85d66efc9467f40ce87bfcb858.tar.bz2
cuberite-28bc14e267daff85d66efc9467f40ce87bfcb858.tar.lz
cuberite-28bc14e267daff85d66efc9467f40ce87bfcb858.tar.xz
cuberite-28bc14e267daff85d66efc9467f40ce87bfcb858.tar.zst
cuberite-28bc14e267daff85d66efc9467f40ce87bfcb858.zip
Diffstat (limited to '')
-rw-r--r--source/cWebPlugin_Lua.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cWebPlugin_Lua.h b/source/cWebPlugin_Lua.h
index 98080e855..0444fb44f 100644
--- a/source/cWebPlugin_Lua.h
+++ b/source/cWebPlugin_Lua.h
@@ -17,9 +17,9 @@ public: //tolua_export
virtual std::string HandleRequest( HTTPRequest* a_Request );
virtual void Initialize();
- std::string GetTabNameForRequest( HTTPRequest* a_Request );
+ std::pair< std::string, std::string > GetTabNameForRequest( HTTPRequest* a_Request );
- std::list< std::string > GetTabNames();
+ std::list< std::pair<std::string, std::string> > GetTabNames();
private:
cPlugin_NewLua* m_Plugin;