diff options
author | George Hazan <george.hazan@gmail.com> | 2012-05-19 17:35:44 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-05-19 17:35:44 +0000 |
commit | e7a776a6f5ab323cd9dd824e815846ef268fa7f1 (patch) | |
tree | da04a8498aa225d511d53cd7da66ed5d773cbab3 /plugins/NewAwaySysMod/Properties.cpp | |
parent | dd61627f93d5f40f530fa71b827716afa3c7c79e (diff) |
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@82 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NewAwaySysMod/Properties.cpp')
-rw-r--r-- | plugins/NewAwaySysMod/Properties.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewAwaySysMod/Properties.cpp b/plugins/NewAwaySysMod/Properties.cpp index 97ecf7d665..eb14d79950 100644 --- a/plugins/NewAwaySysMod/Properties.cpp +++ b/plugins/NewAwaySysMod/Properties.cpp @@ -260,7 +260,7 @@ void CProtoSettings::SetMsgFormat(int Flags, TCString Message) int RecentGroupID = GetRecentGroupID(Status);
if (RecentGroupID == -1)
{ // we didn't find the group, it also means that we're using per status messages; so we need to create it
- TreeCtrl->Value.AddElem(CTreeItem(Status ? (const TCHAR*)CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, Status, GCMDF_TCHAR) : MSGTREE_RECENT_OTHERGROUP, g_Messages_RecentRootID, RecentGroupID = TreeCtrl->GenerateID(), TIF_GROUP));
+ TreeCtrl->Value.AddElem(CTreeItem(Status ? (const TCHAR*)CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, Status, GSMDF_TCHAR) : MSGTREE_RECENT_OTHERGROUP, g_Messages_RecentRootID, RecentGroupID = TreeCtrl->GenerateID(), TIF_GROUP));
TreeCtrl->SetModified(true);
}
int I;
|