Changeset 52340 in webkit


Ignore:
Timestamp:
Dec 18, 2009 1:55:40 PM (14 years ago)
Author:
ariya@webkit.org
Message:

2009-12-18 Ariya Hidayat <ariya.hidayat@gmail.com>

Build fix, not reviewed.

  • QtLauncher/main.cpp: (MainWindow::setTouchMocking): Leave setTouchMocking as an empty function for Qt < 4.6 so that moc still creates a slot for that. Otherwise, it would have generated a linker error.
Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/ChangeLog

    r52321 r52340  
     12009-12-18  Ariya Hidayat  <ariya.hidayat@gmail.com>
     2
     3        Build fix, not reviewed.
     4
     5        * QtLauncher/main.cpp:
     6        (MainWindow::setTouchMocking): Leave setTouchMocking as an empty
     7        function for Qt < 4.6 so that moc still creates a slot for that.
     8        Otherwise, it would have generated a linker error.
     9
    1102009-12-18  Adam Roben  <aroben@apple.com>
    211
  • trunk/WebKit/qt/QtLauncher/main.cpp

    r52307 r52340  
    465465    }
    466466
     467    void setTouchMocking(bool on)
     468    {
    467469#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0)
    468     void setTouchMocking(bool on)
    469     {
    470470        touchMocking = on;
    471     }
    472 #endif
     471#endif
     472    }
    473473
    474474public slots:
Note: See TracChangeset for help on using the changeset viewer.