whitespace fix

This commit is contained in:
Ingmar Runge
2013-10-18 21:03:20 +02:00
parent b5c898eaff
commit 7a1b725958
+3 -3
View File
@@ -502,9 +502,9 @@ bool CUser::DeleteNetwork(const CString& sNetwork) {
CIRCNetwork *pNetwork = FindNetwork(sNetwork);
if (pNetwork) {
bool bCancel = false;
USERMODULECALL(OnDeleteNetwork(*pNetwork), this, NULL, &bCancel);
if (!bCancel) {
bool bCancel = false;
USERMODULECALL(OnDeleteNetwork(*pNetwork), this, NULL, &bCancel);
if (!bCancel) {
delete pNetwork;
return true;
}