Cleanup: indentation of public/protected/private keywords

This commit is contained in:
Twan van Laarhoven
2020-05-12 21:57:37 +02:00
parent 86aec577a2
commit 0c3712b61a
167 changed files with 751 additions and 752 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ DECLARE_POINTER_TYPE(TextValue);
/// Information for search/replace
class FindInfo {
public:
public:
FindInfo(wxFindReplaceData& what) : what(what) {}
virtual ~FindInfo() {}
@@ -39,7 +39,7 @@ class FindInfo {
/// String to look for
inline const String& findString() const { return what.GetFindString(); }
protected:
protected:
wxFindReplaceData& what; ///< What to search for, the direction to search in
};