Changeset 21140 in webkit


Ignore:
Timestamp:
Apr 27, 2007 12:52:27 AM (17 years ago)
Author:
bdash
Message:

2007-04-25 Lars Naesbye Christensen <lars@naesbye.dk>

Reviewed by Timothy Hatcher.

http://bugs.webkit.org/show_bug.cgi?id=13477
Bug 13477: Help and context menu cursors need dropshadows.

  • Resources/cellCursor.png:
  • Resources/contextMenuCursor.png:
  • Resources/helpCursor.png:
  • platform/mac/CursorMac.mm: (WebCore::contextMenuCursor): (WebCore::copyCursor): (WebCore::progressCursor): (WebCore::noDropCursor):
Location:
trunk/WebCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r21138 r21140  
     12007-04-25  Lars Naesbye Christensen <lars@naesbye.dk>
     2
     3        Reviewed by Timothy Hatcher.
     4
     5        http://bugs.webkit.org/show_bug.cgi?id=13477
     6        Bug 13477: Help and context menu cursors need dropshadows.
     7
     8        * Resources/cellCursor.png:
     9        * Resources/contextMenuCursor.png:
     10        * Resources/helpCursor.png:
     11        * platform/mac/CursorMac.mm:
     12        (WebCore::contextMenuCursor):
     13        (WebCore::copyCursor):
     14        (WebCore::progressCursor):
     15        (WebCore::noDropCursor):
     16
    1172007-04-27  Holger Freyther <freyther@kde.org>
    218
  • trunk/WebCore/platform/mac/CursorMac.mm

    r20930 r21140  
    142142const Cursor& contextMenuCursor()
    143143{
    144     static Cursor c = leakNamedCursor("contextMenuCursor", 1, 1);
     144    static Cursor c = leakNamedCursor("contextMenuCursor", 3, 2);
    145145    return c;
    146146}
     
    154154const Cursor& copyCursor()
    155155{
    156     static Cursor c = leakNamedCursor("copyCursor", 1, 1);
     156    static Cursor c = leakNamedCursor("copyCursor", 3, 2);
    157157    return c;
    158158}
     
    166166const Cursor& progressCursor()
    167167{
    168     static Cursor c = leakNamedCursor("progressCursor", 1, 1);
     168    static Cursor c = leakNamedCursor("progressCursor", 3, 2);
    169169    return c;
    170170}
     
    172172const Cursor& noDropCursor()
    173173{
    174     static Cursor c = leakNamedCursor("noDropCursor", 1, 1);
     174    static Cursor c = leakNamedCursor("noDropCursor", 3, 1);
    175175    return c;
    176176}
Note: See TracChangeset for help on using the changeset viewer.