VirtualBox

Ignore:
Timestamp:
Jun 4, 2008 3:04:10 PM (17 years ago)
Author:
vboxsync
Message:

FE/Qt4: typo

Location:
trunk/src/VBox/Frontends/VirtualBox4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox4/include/QILabel_p.h

    r9391 r9392  
    131131    static QRegExp mElideRegExp;
    132132    QSize mOwnSizeHint;
    133     bool mStartDraging;
     133    bool mStartDragging;
    134134};
    135135
  • trunk/src/VBox/Frontends/VirtualBox4/src/QILabel.cpp

    r9391 r9392  
    288288        geometry().contains (aEvent->pos()) &&
    289289        mFullSizeSeclection)
    290         mStartDraging = true;
     290        mStartDragging = true;
    291291    else
    292292        QLabel::mousePressEvent (aEvent);
     
    295295void QILabelPrivate::mouseReleaseEvent (QMouseEvent *aEvent)
    296296{
    297     mStartDraging = false;
     297    mStartDragging = false;
    298298    QLabel::mouseReleaseEvent (aEvent);
    299299}
     
    301301void QILabelPrivate::mouseMoveEvent (QMouseEvent *aEvent)
    302302{
    303     if (mStartDraging)
    304     {
    305         mStartDraging = false;
     303    if (mStartDragging)
     304    {
     305        mStartDragging = false;
    306306        /* Create a drag object out of the given data. */
    307307        QDrag *drag = new QDrag (this);
     
    338338void QILabelPrivate::init()
    339339{
    340     mStartDraging = false;
     340    mStartDragging = false;
    341341    setFullSizeSelection (false);
    342342    /* Open links with the QDesktopService */
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette