Changeset 83067 in webkit


Ignore:
Timestamp:
Apr 6, 2011 10:19:29 AM (13 years ago)
Author:
benjamin.poulain@nokia.com
Message:

2011-04-06 Benjamin Poulain <benjamin.poulain@nokia.com>

Reviewed by Darin Adler.

ClipboardWin has unused variables "ExceptionCode ec"
https://bugs.webkit.org/show_bug.cgi?id=57952

Remove the unused variable.

  • platform/win/ClipboardWin.cpp: (WebCore::ClipboardWin::declareAndWriteDragImage): (WebCore::ClipboardWin::writePlainText):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r83066 r83067  
     12011-04-06  Benjamin Poulain  <benjamin.poulain@nokia.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        ClipboardWin has unused variables "ExceptionCode ec"
     6        https://bugs.webkit.org/show_bug.cgi?id=57952
     7
     8        Remove the unused variable.
     9
     10        * platform/win/ClipboardWin.cpp:
     11        (WebCore::ClipboardWin::declareAndWriteDragImage):
     12        (WebCore::ClipboardWin::writePlainText):
     13
    1142011-04-06  Ryosuke Niwa  <rniwa@webkit.org>
    215
  • trunk/Source/WebCore/platform/win/ClipboardWin.cpp

    r79434 r83067  
    704704    STGMEDIUM medium = {0};
    705705    medium.tymed = TYMED_HGLOBAL;
    706     ExceptionCode ec = 0;
    707706
    708707    // Put img tag on the clipboard referencing the image
     
    792791    STGMEDIUM medium = {0};
    793792    medium.tymed = TYMED_HGLOBAL;
    794     ExceptionCode ec = 0;
    795793   
    796794    String str = text;
Note: See TracChangeset for help on using the changeset viewer.