diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-17 19:43:37 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-17 19:43:37 +0000 |
commit | cddc946657bc64cbd80c93ee04e043a248e333e7 (patch) | |
tree | c91b8c58cca3e48e5cc8426abbd95391037d4986 /plugins/TabSRMM | |
parent | 7b5154bf115390af3374eed0709bff7f9b00a4da (diff) |
the duplicated field 'next' removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@7695 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM')
-rw-r--r-- | plugins/TabSRMM/src/chat/chat.h | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/plugins/TabSRMM/src/chat/chat.h b/plugins/TabSRMM/src/chat/chat.h index 60b1a4598b..8dbc004450 100644 --- a/plugins/TabSRMM/src/chat/chat.h +++ b/plugins/TabSRMM/src/chat/chat.h @@ -67,17 +67,13 @@ struct MODULEINFO : public GCModuleInfoBase struct SESSION_INFO : public GCSessionInfoBase
{
- TCHAR pszLogFileName[MAX_PATH + 50];
-
- int iLogTrayFlags, iLogPopupFlags;
-
- int iSearchItem;
- TCHAR szSearch[255];
+ TWindowData *dat;
+ TContainerData *pContainer;
+ int iLogTrayFlags, iLogPopupFlags, iSearchItem;
CMUCHighlight *Highlight;
- TContainerData *pContainer;
- TWindowData *dat;
- SESSION_INFO *next;
+ TCHAR szSearch[255];
+ TCHAR pszLogFileName[MAX_PATH + 50];
};
struct LOGSTREAMDATA : public GCLogStreamDataBase
|