diff options
Diffstat (limited to 'searchtimer.h')
-rw-r--r-- | searchtimer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searchtimer.h b/searchtimer.h index 2bca222..2494996 100644 --- a/searchtimer.h +++ b/searchtimer.h @@ -83,7 +83,7 @@ public: bool UseInFavorites(void) { return useInFavorites; };
//SETTER
void SetSearchString(std::string searchString) { this->searchString = searchString; };
- void SetSearchMode(int searchMode) { mode = searchMode; };
+ void SetSearchMode(int mode) { this->mode = mode; };
void SetFuzzyTolerance(int fuzzyTolerance) { this->fuzzyTolerance = fuzzyTolerance; };
void SetUseCase(bool useCase) { this->useCase = useCase; };
void SetUseTitle(bool useTitle) { this->useTitle = useTitle; };
|