diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-15 11:58:39 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-15 11:58:39 +0000 |
commit | e11ecaaf2df6c1e50429f5a43f2346795cfce721 (patch) | |
tree | c49341a282d1526a6c4727b97504e08973c42233 /src/modules/chat/tools.cpp | |
parent | f507f067b0559d3e9e3d9764fd9ae94284432577 (diff) |
local StdChat structure moved back to StdChat
git-svn-id: http://svn.miranda-ng.org/main/trunk@7663 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/chat/tools.cpp')
-rw-r--r-- | src/modules/chat/tools.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/chat/tools.cpp b/src/modules/chat/tools.cpp index 9c8de54419..665bd61ecb 100644 --- a/src/modules/chat/tools.cpp +++ b/src/modules/chat/tools.cpp @@ -370,7 +370,7 @@ BOOL DoSoundsFlashPopupTrayStuff(SESSION_INFO *si, GCEVENT *gce, BOOL bHighlight return TRUE;
}
-int GetColorIndex(const char* pszModule, COLORREF cr)
+int GetColorIndex(const char *pszModule, COLORREF cr)
{
MODULEINFO *pMod = ci.MM_FindModule(pszModule);
int i = 0;
@@ -390,7 +390,7 @@ int GetColorIndex(const char* pszModule, COLORREF cr) // in the messagebox. THis is to vvercome limitations in the richedit
// that I do not know currently how to fix
-void CheckColorsInModule(const char* pszModule)
+void CheckColorsInModule(const char *pszModule)
{
MODULEINFO *pMod = ci.MM_FindModule(pszModule);
int i = 0;
@@ -671,7 +671,7 @@ BOOL LogToFile(SESSION_INFO *si, GCEVENT *gce) return FALSE;
}
-BOOL DoEventHookAsync(HWND hwnd, const TCHAR *pszID, const char* pszModule, int iType, TCHAR* pszUID, TCHAR* pszText, DWORD dwItem)
+BOOL DoEventHookAsync(HWND hwnd, const TCHAR *pszID, const char *pszModule, int iType, TCHAR* pszUID, TCHAR* pszText, DWORD dwItem)
{
SESSION_INFO *si = ci.SM_FindSession(pszID, pszModule);
if (si == NULL)
@@ -691,7 +691,7 @@ BOOL DoEventHookAsync(HWND hwnd, const TCHAR *pszID, const char* pszModule, int return TRUE;
}
-BOOL DoEventHook(const TCHAR *pszID, const char* pszModule, int iType, const TCHAR* pszUID, const TCHAR* pszText, DWORD dwItem)
+BOOL DoEventHook(const TCHAR *pszID, const char *pszModule, int iType, const TCHAR *pszUID, const TCHAR* pszText, DWORD dwItem)
{
SESSION_INFO *si = ci.SM_FindSession(pszID, pszModule);
if (si == NULL)
|