summaryrefslogtreecommitdiff
path: root/include/mode.h
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-09-03 14:30:04 +0200
committerAttila Molnar <attilamolnar@hush.com>2014-09-03 14:30:04 +0200
commit626005fe124d547119a113cd8c3c408a81c2f32e (patch)
treecf1f9d9494989eb159d5716882c75741d91074ca /include/mode.h
parentbc889c6e866e0570ecb44b6fe030e030bc0715f0 (diff)
Remove ModeParser::LastParseParams and GetLastParseParams()
Diffstat (limited to 'include/mode.h')
-rw-r--r--include/mode.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/mode.h b/include/mode.h
index 5bf8dc204..f286805c8 100644
--- a/include/mode.h
+++ b/include/mode.h
@@ -577,7 +577,6 @@ class CoreExport ModeParser : public fakederef<ModeParser>
* Use GetLastParse() to get this value, to be used for display purposes.
*/
std::string LastParse;
- std::vector<std::string> LastParseParams;
std::vector<TranslateType> LastParseTranslate;
unsigned int sent[256];
@@ -642,7 +641,6 @@ class CoreExport ModeParser : public fakederef<ModeParser>
* @return Last parsed string, as seen by users.
*/
const std::string& GetLastParse() const { return LastParse; }
- const std::vector<std::string>& GetLastParseParams() { return LastParseParams; }
const std::vector<TranslateType>& GetLastParseTranslate() { return LastParseTranslate; }
/** Add a mode to the mode parser.