diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-11 19:30:14 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-11 19:30:14 +0300 |
commit | ba2930d2f91417bdd34b8f38115846ef6ee8db84 (patch) | |
tree | d17d00b30b5a01154fa13bfb0f2870bb8580581f | |
parent | caf9d58899a7d059de9ebdfa7f7ee65177d265dc (diff) |
compilation fix
-rw-r--r-- | plugins/TabSRMM/src/themes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TabSRMM/src/themes.cpp b/plugins/TabSRMM/src/themes.cpp index 0031803d07..1a94eed47f 100644 --- a/plugins/TabSRMM/src/themes.cpp +++ b/plugins/TabSRMM/src/themes.cpp @@ -2027,7 +2027,7 @@ UINT CSkin::DrawRichEditFrame(HWND hwnd, const CTabBaseDlg *mwdat, UINT skinID, //
// @return COLORREF representation of the string value.
-DWORD __fastcall CSkin::HexStringToLong(const wchar_t *szSource)
+DWORD CSkin::HexStringToLong(const wchar_t *szSource)
{
wchar_t *stopped;
COLORREF clr = wcstol(szSource, &stopped, 16);
@@ -2071,7 +2071,7 @@ int CSkin::RenderText(HDC hdc, HANDLE hTheme, const wchar_t *szText, RECT *rc, D // @return bool: true if the item has been painted, false if not
// (only reason: the ignore flag in the item is set).
-bool __fastcall CSkin::DrawItem(const HDC hdc, const RECT *rc, const CSkinItem *item)
+bool CSkin::DrawItem(const HDC hdc, const RECT *rc, const CSkinItem *item)
{
if (!item->IGNORED) {
::DrawAlpha(hdc, const_cast<RECT *>(rc), item->COLOR, item->ALPHA, item->COLOR2, item->COLOR2_TRANSPARENT,
|