diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/delphi/m_icolib.inc | 2 | ||||
-rw-r--r-- | include/delphi/m_skin.inc | 8 | ||||
-rw-r--r-- | include/m_icolib.h | 2 | ||||
-rw-r--r-- | include/m_skin.h | 7 |
4 files changed, 2 insertions, 17 deletions
diff --git a/include/delphi/m_icolib.inc b/include/delphi/m_icolib.inc index 57e68e57ef..a804c3c643 100644 --- a/include/delphi/m_icolib.inc +++ b/include/delphi/m_icolib.inc @@ -101,6 +101,6 @@ function IcoLib_IsManaged(icon:HICON) : THandle; stdcall; Icons change notification
}
const
- ME_SKIN2_ICONSCHANGED:PAnsiChar = 'Skin2/IconsChanged';
+ ME_SKIN_ICONSCHANGED:PAnsiChar = 'Skin/IconsChanged';
{$ENDIF}
diff --git a/include/delphi/m_skin.inc b/include/delphi/m_skin.inc index 0aa6d537e9..b1cf7e3acc 100644 --- a/include/delphi/m_skin.inc +++ b/include/delphi/m_skin.inc @@ -123,12 +123,4 @@ const }
MS_SKIN_LOADICON:PAnsiChar = 'Skin/Icons/Load';
- {
- wParam : 0
- lParam : 0
- Affect : Sent when the icons DLL has been changed in the options dialog
- and everyone should remake their image lists.
- }
- ME_SKIN_ICONSCHANGED:PAnsiChar = 'Skin/IconsChanged';
-
{$ENDIF}
diff --git a/include/m_icolib.h b/include/m_icolib.h index 497f018ae5..b63fc4abf0 100644 --- a/include/m_icolib.h +++ b/include/m_icolib.h @@ -113,7 +113,7 @@ MIR_APP_DLL(void) Window_FreeIcon_IcoLib(HWND hWnd); ///////////////////////////////////////////////////////////////////////////////
// Icons' change notification event
-#define ME_SKIN2_ICONSCHANGED "Skin2/IconsChanged"
+#define ME_SKIN_ICONSCHANGED "Skin/IconsChanged"
///////////////////////////////////////////////////////////////////////////////
diff --git a/include/m_skin.h b/include/m_skin.h index 33ab4e6e49..33f110e017 100644 --- a/include/m_skin.h +++ b/include/m_skin.h @@ -137,13 +137,6 @@ EXTERN_C MIR_APP_DLL(int) Skin_PlaySoundFile(const wchar_t *pwszFileName); EXTERN_C MIR_APP_DLL(void) KillModuleSounds(HPLUGIN);
/////////////////////////////////////////////////////////////////////////////////////////
-// sent when the icons DLL has been changed in the options dialog, and everyone
-// should re-make their image lists
-// wParam = lParam = 0
-
-#define ME_SKIN_ICONSCHANGED "Skin/IconsChanged"
-
-/////////////////////////////////////////////////////////////////////////////////////////
// wParam: 0 when playing sound (1 when sound is being previewed)
// lParam: (wchar_t*) pszSoundFile
// Affect: This hook is fired when the sound module needs to play a sound
|