diff options
author | George Hazan <george.hazan@gmail.com> | 2013-09-22 13:55:39 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-09-22 13:55:39 +0000 |
commit | 1dad958015778d3486838bf3c93fff1793aa5406 (patch) | |
tree | 16ddb8957ac62d3ccb20cf070f0bdace203072d2 /plugins/BasicHistory/src/Searcher.h | |
parent | d1963a84cf69f801100367871744a4e1092d2bbc (diff) |
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@6182 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/BasicHistory/src/Searcher.h')
-rw-r--r-- | plugins/BasicHistory/src/Searcher.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/BasicHistory/src/Searcher.h b/plugins/BasicHistory/src/Searcher.h index 2f5aff6e8b..274f738082 100644 --- a/plugins/BasicHistory/src/Searcher.h +++ b/plugins/BasicHistory/src/Searcher.h @@ -61,13 +61,13 @@ public: }
void SetOnlyIn(bool val){
onlyIn = val;
- if(val && onlyOut)
+ if (val && onlyOut)
onlyOut = false;
ClearFind();
}
void SetOnlyOut(bool val){
onlyOut = val;
- if(val && onlyIn)
+ if (val && onlyIn)
onlyIn = false;
ClearFind();
}
@@ -79,7 +79,7 @@ public: }
void SetOnlyGroup(bool val){
onlyGroup = val;
- if(onlyGroup)
+ if (onlyGroup)
allUsers = false;
ClearFind();
}
@@ -88,7 +88,7 @@ public: }
void SetAllUsers(bool val){
allUsers = val;
- if(allUsers)
+ if (allUsers)
onlyGroup = false;
ClearFind();
}
@@ -96,14 +96,14 @@ public: return allUsers;
}
void SetSearchForInLG(bool val){
- if(searchForInLG != val)
+ if (searchForInLG != val)
{
searchForInLG = val;
ClearFind();
}
}
void SetSearchForInMes(bool val){
- if(searchForInMes != val)
+ if (searchForInMes != val)
{
searchForInMes = val;
ClearFind();
|