Changeset 15507 for S60/trunk/S60WebUi

Show
Ignore:
Timestamp:
07/18/06 13:22:45 (2 years ago)
Author:
brmorris
Message:

2006-07-17 Bradley <bradley.morrison@nokia.com>

Reviewed by Sachin/Zalan.

Various fixes - see ChangeLogs for details.
Part 1 of 4.

Location:
S60/trunk/S60WebUi
Files:
3 added
6 modified

Legend:

Unmodified
Added
Removed
  • S60/trunk/S60WebUi/ChangeLog

    r15432 r15507  
     12006-07-18  brmorris  <bradley.morrison@nokia.com> 
     2 
     3        (on behalf of Wei). Reviewed by Zalan/Sachin. 
     4 
     5        * WebUi/data/WebUi.rss: Session info menu item 
     6        * WebUi/data/icons/reindeer.bmp: Added. 
     7        * WebUi/data/icons/reindeer_mask_soft.bmp: Added. 
     8        * WebUi/group/bld.inf: Added new reindeer bitmaps 
     9        * WebUi/inc/WebUi.hrh: Added EWmlCmdInfoSession 
     10        * WebUi/src/WebUiLoadObserver.cpp:  
     11        (CWebUiLoadObserver::HandleBrowserLoadEventL): pop stack if title undef 
     12        * WebUi/src/WebUiSettings.cpp:  
     13        (CWebUiSettings::SetEngineSettingL): Added missing break in case  
     14 
    1152006-07-10  David Carson  <david.carson@nokia.com> 
    216 
  • S60/trunk/S60WebUi/WebUi/data/WebUi.rss

    r15311 r15507  
    181181 
    182182                MENU_ITEM { command = ECmdPageInfo; txt = "Page info"; }, 
     183                MENU_ITEM { command = EWmlCmdInfoSession; txt = "Session info"; }, 
    183184                MENU_ITEM { command = EWmlCmdInfoSecurity; txt = "Security info"; } 
    184185        }; 
  • S60/trunk/S60WebUi/WebUi/group/bld.inf

    r14549 r15507  
    4141 
    4242PRJ_EXPORTS 
    43  
     43..\data\icons\reindeer.bmp              \epoc32\s60\icons\reindeer.bmp 
     44..\data\icons\reindeer_mask_soft.bmp    \epoc32\s60\icons\reindeer_mask_soft.bmp 
    4445 
    4546PRJ_MMPFILES 
  • S60/trunk/S60WebUi/WebUi/inc/WebUi.hrh

    r15311 r15507  
    7878    ECmdPageInfo, 
    7979    ECmdNewWindow, 
     80    EWmlCmdInfoSession, 
    8081    EWmlCmdInfoSecurity, 
    8182    ECmdCloseAll, 
  • S60/trunk/S60WebUi/WebUi/src/WebUiLoadObserver.cpp

    r14648 r15507  
    204204                { 
    205205                HBufC* title = Engine()->PageInfoLC( TBrCtlDefs::EPageInfoTitle ); 
    206                 if (title) 
    207                     { 
    208206                    // Title added to cleanup stack, by PageInfoLC, increment count 
    209207                    cleanupCount++; 
    210                     } 
    211                 else 
     208                if (!title) 
    212209                    { 
     210                    CleanupStack::Check(title); 
     211                    CleanupStack::Pop(title); 
     212                    cleanupCount--;  
    213213                    // Set url as title 
    214214                    title = url->Des().AllocLC(); 
  • S60/trunk/S60WebUi/WebUi/src/WebUiSettings.cpp

    r14648 r15507  
    405405                    } 
    406406                } 
     407            break; 
    407408            } 
    408409