Changeset 69111 in webkit


Ignore:
Timestamp:
Oct 5, 2010 8:52:25 AM (14 years ago)
Author:
jpetsovits@rim.com
Message:

2010-10-05 Jakob Petsovits <jpetsovits@rim.com>

Reviewed by Andreas Kling.

[Qt] Make build work with QT_NO_CURSOR
https://bugs.webkit.org/show_bug.cgi?id=46097

Add a missing semicolon.

  • WebCoreSupport/ChromeClientQt.cpp: (WebCore::ChromeClientQt::setCursor):

2010-10-05 Jakob Petsovits <jpetsovits@rim.com>

Reviewed by Andreas Kling.

[Qt] Make build work with QT_NO_CURSOR
https://bugs.webkit.org/show_bug.cgi?id=46097

Add a missing include.

  • platform/qt/QWebPageClient.h:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r69110 r69111  
     12010-10-05  Jakob Petsovits  <jpetsovits@rim.com>
     2
     3        Reviewed by Andreas Kling.
     4
     5        [Qt] Make build work with QT_NO_CURSOR
     6        https://bugs.webkit.org/show_bug.cgi?id=46097
     7
     8        Add a missing include.
     9
     10        * platform/qt/QWebPageClient.h:
     11
    1122010-10-05  Jakob Petsovits  <jpetsovits@rim.com>
    213
  • trunk/WebCore/platform/qt/QWebPageClient.h

    r68510 r69111  
    3131#endif
    3232
     33#include <QPalette>
    3334#include <QRect>
    3435
  • trunk/WebKit/qt/ChangeLog

    r69104 r69111  
     12010-10-05  Jakob Petsovits  <jpetsovits@rim.com>
     2
     3        Reviewed by Andreas Kling.
     4
     5        [Qt] Make build work with QT_NO_CURSOR
     6        https://bugs.webkit.org/show_bug.cgi?id=46097
     7
     8        Add a missing semicolon.
     9
     10        * WebCoreSupport/ChromeClientQt.cpp:
     11        (WebCore::ChromeClientQt::setCursor):
     12
    1132010-10-05  Simon Hausmann  <simon.hausmann@nokia.com>
    214
  • trunk/WebKit/qt/WebCoreSupport/ChromeClientQt.cpp

    r69009 r69111  
    567567    pageClient->setCursor(*cursor.platformCursor());
    568568#else
    569     UNUSED_PARAM(cursor)
     569    UNUSED_PARAM(cursor);
    570570#endif
    571571}
Note: See TracChangeset for help on using the changeset viewer.