]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-performer.cc
release: 0.1.11
[lilypond.git] / lily / note-performer.cc
index dd2ac9da14b8d063210cf06fc7975565e4265a33..9ae829f7ff37f1673a9cdedf62af86decb0b921d 100644 (file)
@@ -26,7 +26,7 @@ void
 Note_performer::do_print() const
 {
 #ifndef NPRINT
-  if ( note_req_l_) 
+  if (note_req_l_) 
     {
        note_req_l_->print();
     }
@@ -37,20 +37,20 @@ void
 Note_performer::process_requests() 
 {
   // this is _really_ braindead, but it generates some output
-  if ( !note_req_l_ || !note_req_l_->melodic()  || !note_req_l_->rhythmic ())
+  if (!note_req_l_ || !note_req_l_->melodic()  || !note_req_l_->rhythmic ())
        return;
 
-  play (new Audio_note (note_req_l_) );
+  play (new Audio_note (note_req_l_));
   note_req_l_ = 0;
 }
 
 bool 
 Note_performer::do_try_request (Request* req_l)
 {
-  if ( note_req_l_)
+  if (note_req_l_)
        return false;
   
-  if ( !req_l->musical() || !req_l->musical ()->note ())
+  if (!req_l->musical() || !req_l->musical ()->note ())
        return false;
 
   note_req_l_ = req_l->musical()->melodic ();