Changeset 45669 in webkit for trunk/JavaScriptCore/wtf/OwnPtrWin.cpp
- Timestamp:
- Jul 9, 2009, 1:00:04 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/OwnPtrWin.cpp
r30907 r45669 1 1 /* 2 2 * Copyright (C) 2007 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009 Torch Mobile, Inc. 3 4 * 4 5 * Redistribution and use in source and binary forms, with or without … … 43 44 } 44 45 46 void deleteOwnedPtr(HDC ptr) 47 { 48 if (ptr) 49 DeleteDC(ptr); 50 } 51 45 52 void deleteOwnedPtr(HFONT ptr) 46 53 {
Note:
See TracChangeset
for help on using the changeset viewer.