summaryrefslogtreecommitdiff
path: root/src/stringfilter_type.h
diff options
context:
space:
mode:
authorHenry Wilson <m3henry@googlemail.com>2018-09-23 12:23:54 +0100
committerPeterN <peter@fuzzle.org>2019-03-26 20:15:57 +0000
commita690936ed75e96627be0e2ecafee2360a71e8d3c (patch)
tree1221c131b8fe3a51cf43a6bd7d89a51c431c559d /src/stringfilter_type.h
parent56ae855dc20b27593c9a454d5a09d8f892a6c71f (diff)
downloadopenttd-a690936ed75e96627be0e2ecafee2360a71e8d3c.tar.xz
Codechange: Replace SmallVector::Length() with std::vector::size()
Diffstat (limited to 'src/stringfilter_type.h')
-rw-r--r--src/stringfilter_type.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stringfilter_type.h b/src/stringfilter_type.h
index f78b133cb..4dad55aaa 100644
--- a/src/stringfilter_type.h
+++ b/src/stringfilter_type.h
@@ -58,7 +58,7 @@ public:
* Check whether any filter words were entered.
* @return true if no words were entered.
*/
- bool IsEmpty() const { return this->word_index.Length() == 0; }
+ bool IsEmpty() const { return this->word_index.size() == 0; }
void ResetState();
void AddLine(const char *str);
@@ -68,7 +68,7 @@ public:
* Get the matching state of the current item.
* @return true if matched.
*/
- bool GetState() const { return this->word_matches == this->word_index.Length(); }
+ bool GetState() const { return this->word_matches == this->word_index.size(); }
};
#endif /* STRINGFILTER_TYPE_H */