diff options
author | George Hazan <george.hazan@gmail.com> | 2013-08-06 08:33:44 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-08-06 08:33:44 +0000 |
commit | fbed4e49ff41a49e2b8b09e0ccc1268aeffbada1 (patch) | |
tree | 54c8ef840bbbbc2f12faf3c00700adb1b2741ff9 /plugins/TabSRMM/src/chat/muchighlight.h | |
parent | e2a9e8224e94127cc73cf62ebfb2a8dfee078c0c (diff) |
- DoTrimMessage removed and replaced with rtrim()
- contactcache.cpp moved from a linked list to a sorted list
git-svn-id: http://svn.miranda-ng.org/main/trunk@5598 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src/chat/muchighlight.h')
-rw-r--r-- | plugins/TabSRMM/src/chat/muchighlight.h | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/plugins/TabSRMM/src/chat/muchighlight.h b/plugins/TabSRMM/src/chat/muchighlight.h index c552468577..8e9018778e 100644 --- a/plugins/TabSRMM/src/chat/muchighlight.h +++ b/plugins/TabSRMM/src/chat/muchighlight.h @@ -58,26 +58,26 @@ public: cleanup();
}
- void init ();
- void cleanup ();
- int match (const GCEVENT *pgce, const SESSION_INFO *psi,
- DWORD dwFlags = MATCH_NICKNAME);
+ void init();
+ void cleanup();
+ int match(const GCEVENT *pgce, const SESSION_INFO *psi, DWORD dwFlags = MATCH_NICKNAME);
+
+ static INT_PTR CALLBACK dlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam); // option page dlg proc
+ static INT_PTR CALLBACK dlgProcAdd(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam); // for the "add to" dialog
- static INT_PTR CALLBACK dlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam); // option page dlg proc
- static INT_PTR CALLBACK dlgProcAdd (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam); // for the "add to" dialog
private:
- void tokenize(TCHAR *tszString, TCHAR**& patterns, UINT& nr);
- int wildmatch (const TCHAR *pattern, const TCHAR *tszString);
- DWORD m_dwFlags;
- bool m_fInitialized;
- TCHAR** m_NickPatterns;
- TCHAR** m_TextPatterns;
- UINT m_iNickPatterns;
- UINT m_iTextPatterns;
- TCHAR * m_NickPatternString;
- TCHAR * m_TextPatternString;
- bool m_Valid;
- bool m_fHighlightMe;
+ void tokenize(TCHAR *tszString, TCHAR**& patterns, UINT& nr);
+ int wildmatch (const TCHAR *pattern, const TCHAR *tszString);
+ DWORD m_dwFlags;
+ bool m_fInitialized;
+ TCHAR** m_NickPatterns;
+ TCHAR** m_TextPatterns;
+ UINT m_iNickPatterns;
+ UINT m_iTextPatterns;
+ TCHAR *m_NickPatternString;
+ TCHAR *m_TextPatternString;
+ bool m_Valid;
+ bool m_fHighlightMe;
};
struct THighLightEdit
@@ -87,8 +87,8 @@ struct THighLightEdit CMD_EDIT = 2
};
- UINT uCmd;
- SESSION_INFO *si;
- USERINFO *ui;
+ UINT uCmd;
+ SESSION_INFO *si;
+ USERINFO *ui;
};
|