uifw/AvKon/src/aknnoteattributes.cpp
branchRCL_3
changeset 56 d48ab3b357f1
parent 55 aecbbf00d063
child 72 a5e7a4f63858
equal deleted inserted replaced
55:aecbbf00d063 56:d48ab3b357f1
  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