Changeset 100061 in webkit
- Timestamp:
- Nov 11, 2011, 6:58:11 PM (15 years ago)
- Location:
- trunk/Source/WebKit/qt
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebCoreSupport/PopupMenuQt.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/qt/ChangeLog
r100053 r100061 1 2011-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 1 14 2011-11-11 Bruno de Oliveira Abinader <bruno.abinader@basyskom.com> 2 15 -
trunk/Source/WebKit/qt/WebCoreSupport/PopupMenuQt.cpp
r99903 r100061 30 30 #include "FrameView.h" 31 31 #include "PopupMenuClient.h" 32 #include "QtFallbackWebPopup.h"33 32 34 33 #include "qwebkitplatformplugin.h" … … 98 97 void PopupMenuQt::show(const IntRect& rect, FrameView* view, int index) 99 98 { 100 #ifndef QT_NO_COMBOBOX101 99 if (!m_popupClient) 102 100 return; … … 115 113 m_selectData = adoptPtr(new SelectData(m_popupClient)); 116 114 m_popup->show(*m_selectData.get()); 117 #endif118 115 } 119 116
Note:
See TracChangeset
for help on using the changeset viewer.