Changeset 21665 in webkit


Ignore:
Timestamp:
May 23, 2007 4:07:17 AM (17 years ago)
Author:
lars
Message:

Reviewed by Zack and Valgrind

Initialize variable.

Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r21664 r21665  
     12007-05-23  Lars Knoll <lars@trolltech.com>
     2
     3        Reviewed by Zack and Valgrind
     4
     5        Initialize variable.
     6
     7        * platform/qt/PlatformMouseEventQt.cpp:
     8        (WebCore::PlatformMouseEvent::PlatformMouseEvent):
     9
    1102007-05-23  Rob Buis  <buis@kde.org>
    211
  • trunk/WebCore/platform/qt/PlatformMouseEventQt.cpp

    r20753 r21665  
    6161    else if (event->button() == Qt::MidButton || (event->buttons() & Qt::MidButton))
    6262        m_button = MiddleButton;
     63    else
     64        m_button = NoButton;
    6365
    6466    m_clickCount = clickCount;
Note: See TracChangeset for help on using the changeset viewer.