uifw/AvKon/src/aknnoteattributes.cpp
branchRCL_3
changeset 51 fcdfafb36fe7
parent 0 2f259fa3e83a
child 55 aecbbf00d063
equal deleted inserted replaced
50:a1caeb42b3a3 51:fcdfafb36fe7
  1027 
  1027 
  1028             iNoteControl->Window().EndRedraw();
  1028             iNoteControl->Window().EndRedraw();
  1029             iNoteControl->DeactivateGc();
  1029             iNoteControl->DeactivateGc();
  1030 
  1030 
  1031             // Redraw the label after the background
  1031             // Redraw the label after the background
  1032             iNoteText->Line( i )->ActivateL(); // Never leaves
  1032             TRAPD(err, iNoteText->Line( i )->ActivateL()); // Never leaves
  1033             iNoteText->Line( i )->DrawNow();
  1033             if (err == KErrNone)
       
  1034                 {
       
  1035                 iNoteText->Line( i )->DrawNow();
       
  1036                 }
  1034             iNoteText->SetLineModified( i, EFalse );
  1037             iNoteText->SetLineModified( i, EFalse );
  1035             }
  1038             }
  1036         }
  1039         }
  1037     }
  1040     }
  1038 
  1041