equal
deleted
inserted
replaced
52 #include <CMessageData.h> |
52 #include <CMessageData.h> |
53 #include <eikenv.h> |
53 #include <eikenv.h> |
54 #include <akntitle.h> |
54 #include <akntitle.h> |
55 #include <eikspane.h> |
55 #include <eikspane.h> |
56 #include <avkon.hrh> |
56 #include <avkon.hrh> |
57 |
57 #include <avkon.rsg> |
|
58 #include <layoutmetadata.cdl.h> |
58 // Debugging headers |
59 // Debugging headers |
59 #include <Pbk2Debug.h> |
60 #include <Pbk2Debug.h> |
60 |
61 |
61 /// Unnamed namespace for local definitions |
62 /// Unnamed namespace for local definitions |
62 namespace { |
63 namespace { |
377 title = titlePane->Text()->AllocLC(); |
378 title = titlePane->Text()->AllocLC(); |
378 |
379 |
379 Phonebook2::Pbk2AppUi()->ApplicationServices().SendUiL()-> |
380 Phonebook2::Pbk2AppUi()->ApplicationServices().SendUiL()-> |
380 CreateAndSendMessageL( iMtmUid, iMessageData ); |
381 CreateAndSendMessageL( iMtmUid, iMessageData ); |
381 |
382 |
382 // Sets title pane for tile which was save |
383 if( !Layout_Meta_Data::IsLandscapeOrientation() ) |
383 titlePane->SetText( title ); |
384 { |
|
385 sp->SwitchLayoutL( R_AVKON_STATUS_PANE_LAYOUT_USUAL ); |
|
386 sp->MakeVisible( ETrue ); |
|
387 |
|
388 // Sets title pane for tile which was save |
|
389 titlePane->SetText( title ); |
|
390 sp->DrawNow(); |
|
391 } |
|
392 else |
|
393 { |
|
394 // Sets title pane for tile which was save |
|
395 titlePane->SetText( title ); |
|
396 } |
384 CleanupStack::Pop(); |
397 CleanupStack::Pop(); |
385 |
398 |
386 iState = EStopping; |
399 iState = EStopping; |
387 IssueRequest(); |
400 IssueRequest(); |
388 } |
401 } |