⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 100061 in webkit


Ignore:
Timestamp:
Nov 11, 2011, 6:58:11 PM (15 years ago)
Author:
commit-queue@webkit.org
Message:

[Qt] Removing unneeded #ifdef from PopupMenuQt.cpp
https://bugs.webkit.org/show_bug.cgi?id=72193

Patch by Luiz Agostini <luiz.agostini@palm.com> on 2011-11-11
Reviewed by Noam Rosenthal.

Part of PopupMenuQt.cpp code is guarded by #ifndef QT_NO_COMBOBOX although that
code is not related to the class QComboBox.

  • WebCoreSupport/PopupMenuQt.cpp:

(WebCore::PopupMenuQt::show):

Location:
trunk/Source/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/qt/ChangeLog

    r100053 r100061  
     12011-11-11  Luiz Agostini  <luiz.agostini@palm.com>
     2
     3        [Qt] Removing unneeded #ifdef from PopupMenuQt.cpp
     4        https://bugs.webkit.org/show_bug.cgi?id=72193
     5
     6        Reviewed by Noam Rosenthal.
     7
     8        Part of PopupMenuQt.cpp code is guarded by #ifndef QT_NO_COMBOBOX although that
     9        code is not related to the class QComboBox.
     10
     11        * WebCoreSupport/PopupMenuQt.cpp:
     12        (WebCore::PopupMenuQt::show):
     13
    1142011-11-11  Bruno de Oliveira Abinader  <bruno.abinader@basyskom.com>
    215
  • trunk/Source/WebKit/qt/WebCoreSupport/PopupMenuQt.cpp

    r99903 r100061  
    3030#include "FrameView.h"
    3131#include "PopupMenuClient.h"
    32 #include "QtFallbackWebPopup.h"
    3332
    3433#include "qwebkitplatformplugin.h"
     
    9897void PopupMenuQt::show(const IntRect& rect, FrameView* view, int index)
    9998{
    100 #ifndef QT_NO_COMBOBOX
    10199    if (!m_popupClient)
    102100        return;
     
    115113    m_selectData = adoptPtr(new SelectData(m_popupClient));
    116114    m_popup->show(*m_selectData.get());
    117 #endif
    118115}
    119116
Note: See TracChangeset for help on using the changeset viewer.