Fix a few style violations from my previous commit. (thanks Axel!)

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28974 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rene Gollent 2009-01-21 01:22:30 +00:00
parent 23ce8ab1da
commit 2409f4caa6

View File

@ -106,7 +106,7 @@ CDPlayer::~CDPlayer()
bool
CDPlayer::InitCheck()
{
return (fCDDrive.CountDrives() > 0);
return fCDDrive.CountDrives() > 0;
}
@ -649,8 +649,7 @@ CDPlayerApplication::CDPlayerApplication()
window->ResizeTo(view->Bounds().Width(), view->Bounds().Height());
window->AddChild(view);
window->Show();
}
else
} else
PostMessage(B_QUIT_REQUESTED);
}