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
@@ -76,7 +76,7 @@ struct dependency_check : public unary_function<bool, PackagedP> {
bool operator () (PackagedP package) {
return package->name() == dep->package && package->version >= dep->version;
}
private:
private:
PackageDependencyP dep;
};
@@ -268,7 +268,7 @@ DownloadableInstaller::DownloadableInstaller(const InstallerP& installer)
DownloadableInstaller::~DownloadableInstaller() {
if (!installer_file.empty()) {
wxRemoveFile(installer_file);
remove_file(installer_file);
}
}