Style update

This commit is contained in:
John Scipione
2013-04-16 01:32:24 -04:00
parent 41cec3e6d4
commit 6e22ba05d6
+2 -2
View File
@@ -298,14 +298,14 @@ IsWindowOK(const window_info* windowInfo)
bool bool
OKToUse(const TTeamGroup* teamGroup) OKToUse(const TTeamGroup* teamGroup)
{ {
if (!teamGroup) if (teamGroup == NULL)
return false; return false;
// skip background applications // skip background applications
if ((teamGroup->Flags() & B_BACKGROUND_APP) != 0) if ((teamGroup->Flags() & B_BACKGROUND_APP) != 0)
return false; return false;
// skip the Deskbar itself // skip Deskbar itself
if (strcasecmp(teamGroup->Signature(), kDeskbarSignature) == 0) if (strcasecmp(teamGroup->Signature(), kDeskbarSignature) == 0)
return false; return false;