diff options
author | George Hazan <george.hazan@gmail.com> | 2013-07-07 13:20:17 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-07-07 13:20:17 +0000 |
commit | 7cb44a3c4447a149004189b046a67def1b65a356 (patch) | |
tree | 2d7e0b08597167d5d9e24a99602a49c83492b631 /plugins/TabSRMM/src/chat/message.cpp | |
parent | 5801a85ed970b55b2041c588914f982039dc8031 (diff) |
- SM cleaning;
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@5256 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src/chat/message.cpp')
-rw-r--r-- | plugins/TabSRMM/src/chat/message.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/TabSRMM/src/chat/message.cpp b/plugins/TabSRMM/src/chat/message.cpp index c42710c406..7195c26567 100644 --- a/plugins/TabSRMM/src/chat/message.cpp +++ b/plugins/TabSRMM/src/chat/message.cpp @@ -23,7 +23,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "..\commonheaders.h"
-static int RTFColorToIndex(int *pIndex, int iCol, SESSION_INFO* si)
+static int RTFColorToIndex(int *pIndex, int iCol, SESSION_INFO *si)
{
int i;
MODULEINFO * pMod = MM_FindModule(si->pszModule);
@@ -35,7 +35,7 @@ static int RTFColorToIndex(int *pIndex, int iCol, SESSION_INFO* si) return -1;
}
-static void CreateColorMap(char* Text, int *pIndex, SESSION_INFO* si)
+static void CreateColorMap(char* Text, int *pIndex, SESSION_INFO *si)
{
char *p1, *p2, *pEnd;
int iIndex = 1;
@@ -79,7 +79,7 @@ static int ReadInteger(const char* p, int* result) return i;
}
-TCHAR* Chat_DoRtfToTags(char* pszText, SESSION_INFO* si)
+TCHAR* Chat_DoRtfToTags(char* pszText, SESSION_INFO *si)
{
int i, iRemoveChars, cp = CP_ACP;
char InsertThis[50];
@@ -314,7 +314,7 @@ static DWORD CALLBACK Chat_Message_StreamCallback(DWORD_PTR dwCookie, LPBYTE pbB return 0;
}
-char* Chat_Message_GetFromStream(HWND hwndDlg, SESSION_INFO* si)
+char* Chat_Message_GetFromStream(HWND hwndDlg, SESSION_INFO *si)
{
EDITSTREAM stream;
char* pszText = NULL;
|