Changeset 167682 in webkit


Ignore:
Timestamp:
Apr 22, 2014 1:51:14 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Remove unused local variable
https://bugs.webkit.org/show_bug.cgi?id=132020

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2014-04-22
Reviewed by Alexey Proskuryakov.

  • UIProcess/ios/forms/WKFormSelectPopover.mm:

(-[WKSelectPopover initWithView:hasGroups:]):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r167674 r167682  
     12014-04-22  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Remove unused local variable
     4        https://bugs.webkit.org/show_bug.cgi?id=132020
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * UIProcess/ios/forms/WKFormSelectPopover.mm:
     9        (-[WKSelectPopover initWithView:hasGroups:]):
     10
    1112014-04-22  Brady Eidson  <beidson@apple.com>
    212
  • trunk/Source/WebKit2/UIProcess/ios/forms/WKFormSelectPopover.mm

    r165554 r167682  
    391391    UINavigationController *navController = nil;
    392392    NSString *title = view.assistedNodeInformation.title;
    393     CGFloat titleHeight = 0;
    394393    BOOL needsNavigationController = (_view && _UIApplicationUsesLegacyUI()) || [title length];
    395394    if (needsNavigationController) {
     
    399398        if (_view.assistedNodeInformation.isMultiSelect && _UIApplicationUsesLegacyUI())
    400399            _tableViewController.get().navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(_userActionDismissedPopover:)] autorelease];
    401        
    402         titleHeight = navController.navigationBar.bounds.size.height;
    403400    }
    404401   
Note: See TracChangeset for help on using the changeset viewer.