diff options
Diffstat (limited to 'plugins/TabSRMM/src/ImageDataObject.cpp')
-rw-r--r-- | plugins/TabSRMM/src/ImageDataObject.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TabSRMM/src/ImageDataObject.cpp b/plugins/TabSRMM/src/ImageDataObject.cpp index 9d6b6f2ddf..c3965f02e3 100644 --- a/plugins/TabSRMM/src/ImageDataObject.cpp +++ b/plugins/TabSRMM/src/ImageDataObject.cpp @@ -43,7 +43,7 @@ extern void ImageDataInsertBitmap(IRichEditOle *ole, HBITMAP hBm) CImageDataObject::InsertBitmap(ole, hBm);
}
-int CacheIconToBMP(struct TLogIcon *theIcon, HICON hIcon, COLORREF backgroundColor, int sizeX, int sizeY)
+int CacheIconToBMP(TLogIcon *theIcon, HICON hIcon, COLORREF backgroundColor, int sizeX, int sizeY)
{
bool succeeded = false;
@@ -81,7 +81,7 @@ int CacheIconToBMP(struct TLogIcon *theIcon, HICON hIcon, COLORREF backgroundCol return TRUE;
}
-void DeleteCachedIcon(struct TLogIcon *theIcon)
+void DeleteCachedIcon(TLogIcon *theIcon)
{
DeleteDC(theIcon->hdcMem);
DeleteObject(theIcon->hBmp);
|