uifw/AknGlobalUI/OldStyleNotif/Src/AknSystemListPopup.cpp
branchRCL_3
changeset 18 fcdfafb36fe7
parent 10 3d340a0166ff
child 19 aecbbf00d063
equal deleted inserted replaced
17:a1caeb42b3a3 18:fcdfafb36fe7
    38 
    38 
    39 const TInt KListQueryItemLength = 64;
    39 const TInt KListQueryItemLength = 64;
    40 const TInt KCharsInTInt = 4; // TInt32 takes 4 chars.
    40 const TInt KCharsInTInt = 4; // TInt32 takes 4 chars.
    41 const TInt KArrayGranularity = 3;
    41 const TInt KArrayGranularity = 3;
    42 
    42 
    43 CAknGlobalListQuerySubject* CAknGlobalListQuerySubject::NewL()
    43 CAknGlobalListQuerySubject* CAknGlobalListQuerySubject::NewL(MAknKeyLockController* aKeyLockController)
    44     {
    44     {
    45     CAknGlobalListQuerySubject* self = new (ELeave) CAknGlobalListQuerySubject(); 
    45     CAknGlobalListQuerySubject* self = new (ELeave) CAknGlobalListQuerySubject(aKeyLockController); 
    46     CleanupStack::PushL(self);
    46     CleanupStack::PushL(self);
    47     self->ConstructL(); 
    47     self->ConstructL(); 
    48     CleanupStack::Pop(self);
    48     CleanupStack::Pop(self);
    49     return self;
    49     return self;
    50     }
    50     }
    51 
    51 
    52 CAknGlobalListQuerySubject::CAknGlobalListQuerySubject()
    52 CAknGlobalListQuerySubject::CAknGlobalListQuerySubject(MAknKeyLockController* aKeyLockController)
    53 : iPending(EFalse)
    53 :iPending(EFalse),iKeyLockController(aKeyLockController)
    54     {
    54     {
    55     iStoredEikonEnv = CEikonEnv::Static();
    55     iStoredEikonEnv = CEikonEnv::Static();
    56     }
    56     }
    57 
    57 
    58 void CAknGlobalListQuerySubject::ConstructL()
    58 void CAknGlobalListQuerySubject::ConstructL()