Show
Ignore:
Timestamp:
08/04/08 12:23:14 (5 months ago)
Author:
mbensi
Message:

merge with webkit revision 35534

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/WebCore/platform/win/CursorWin.cpp

    r288 r429  
    282282} 
    283283 
     284const Cursor& middlePanningCursor() 
     285{ 
     286    static const Cursor c = loadCursorByName("panIcon", 7, 7); 
     287    return c; 
     288} 
     289 
     290const Cursor& eastPanningCursor() 
     291{ 
     292    static const Cursor c = loadCursorByName("panEastCursor", 7, 7); 
     293    return c; 
     294} 
     295 
     296const Cursor& northPanningCursor() 
     297{ 
     298    static const Cursor c = loadCursorByName("panNorthCursor", 7, 7); 
     299    return c; 
     300} 
     301 
     302const Cursor& northEastPanningCursor() 
     303{ 
     304    static const Cursor c = loadCursorByName("panNorthEastCursor", 7, 7); 
     305    return c; 
     306} 
     307 
     308const Cursor& northWestPanningCursor() 
     309{ 
     310    static const Cursor c = loadCursorByName("panNorthWestCursor", 7, 7); 
     311    return c; 
     312} 
     313 
     314const Cursor& southPanningCursor() 
     315{ 
     316    static const Cursor c = loadCursorByName("panSouthCursor", 7, 7); 
     317    return c; 
     318} 
     319 
     320const Cursor& southEastPanningCursor() 
     321{ 
     322    static const Cursor c = loadCursorByName("panSouthEastCursor", 7, 7); 
     323    return c; 
     324} 
     325 
     326const Cursor& southWestPanningCursor() 
     327{ 
     328    static const Cursor c = loadCursorByName("panSouthWestCursor", 7, 7); 
     329    return c; 
     330} 
     331 
     332const Cursor& westPanningCursor() 
     333{ 
     334    static const Cursor c = loadCursorByName("panWestCursor", 7, 7); 
     335    return c; 
     336} 
     337 
    284338const Cursor& moveCursor()  
    285339{