Changeset 72394 in webkit


Ignore:
Timestamp:
Nov 19, 2010 6:42:30 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2010-11-19 Sam Magnuson <smagnuso@gmail.com>

Reviewed by Laszlo Gombos.

[Qt] Compile with QT_NO_CLIPBOARD
https://bugs.webkit.org/show_bug.cgi?id=49742

  • platform/qt/PasteboardQt.cpp: (WebCore::Pasteboard::canSmartReplace):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r72390 r72394  
     12010-11-19  Sam Magnuson  <smagnuso@gmail.com>
     2
     3        Reviewed by Laszlo Gombos.
     4
     5        [Qt] Compile with QT_NO_CLIPBOARD
     6        https://bugs.webkit.org/show_bug.cgi?id=49742
     7
     8        * platform/qt/PasteboardQt.cpp:
     9        (WebCore::Pasteboard::canSmartReplace):
     10
    1112010-11-19  Nikolas Zimmermann  <nzimmermann@rim.com>
    212
  • trunk/WebCore/platform/qt/PasteboardQt.cpp

    r67122 r72394  
    7878bool Pasteboard::canSmartReplace()
    7979{
     80#ifndef QT_NO_CLIPBOARD
    8081    if (QApplication::clipboard()->mimeData()->hasFormat((QLatin1String("application/vnd.qtwebkit.smartpaste"))))
    8182        return true;
     83#endif
    8284    return false;
    8385}
Note: See TracChangeset for help on using the changeset viewer.