diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-17 15:14:41 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-17 15:14:41 +0000 |
commit | 81cc0996f38dca205fe283e24d64df6e9cea7c10 (patch) | |
tree | 4c09ebfb8966e30ee84b2f1d8e4f84d5795fb8e0 /plugins/Scriver/src | |
parent | d7d4fc4e61b3b0271a4dac9d04283f5237ed514e (diff) |
- icons management also moved to core;
- forced ReloadSettings() after initialization
git-svn-id: http://svn.miranda-ng.org/main/trunk@7690 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Scriver/src')
-rw-r--r-- | plugins/Scriver/src/chat/chat.h | 1 | ||||
-rw-r--r-- | plugins/Scriver/src/chat/main.cpp | 27 | ||||
-rw-r--r-- | plugins/Scriver/src/statusicon.cpp | 2 |
3 files changed, 1 insertions, 29 deletions
diff --git a/plugins/Scriver/src/chat/chat.h b/plugins/Scriver/src/chat/chat.h index ffe9f804bb..323f8cf9ea 100644 --- a/plugins/Scriver/src/chat/chat.h +++ b/plugins/Scriver/src/chat/chat.h @@ -82,7 +82,6 @@ typedef struct{ COLORCHOOSER;
//main.c
-void LoadChatIcons(void);
void UpgradeCheck(void);
//colorchooser.c
diff --git a/plugins/Scriver/src/chat/main.cpp b/plugins/Scriver/src/chat/main.cpp index 6a54c7b865..fab57d653a 100644 --- a/plugins/Scriver/src/chat/main.cpp +++ b/plugins/Scriver/src/chat/main.cpp @@ -116,30 +116,6 @@ static void OnCreateModule(MODULEINFO *mi) mi->hOfflineIconBig = LoadSkinnedProtoIconBig(mi->pszModule, ID_STATUS_OFFLINE);
}
-void LoadChatIcons(void)
-{
- pci->hIcons[ICON_ACTION] = GetCachedIcon("chat_log_action");
- pci->hIcons[ICON_ADDSTATUS] = GetCachedIcon("chat_log_addstatus");
- pci->hIcons[ICON_HIGHLIGHT] = GetCachedIcon("chat_log_highlight");
- pci->hIcons[ICON_INFO] = GetCachedIcon("chat_log_info");
- pci->hIcons[ICON_JOIN] = GetCachedIcon("chat_log_join");
- pci->hIcons[ICON_KICK] = GetCachedIcon("chat_log_kick");
- pci->hIcons[ICON_MESSAGE] = GetCachedIcon("chat_log_message_in");
- pci->hIcons[ICON_MESSAGEOUT] = GetCachedIcon("chat_log_message_out");
- pci->hIcons[ICON_NICK] = GetCachedIcon("chat_log_nick");
- pci->hIcons[ICON_NOTICE] = GetCachedIcon("chat_log_notice");
- pci->hIcons[ICON_PART] = GetCachedIcon("chat_log_part");
- pci->hIcons[ICON_QUIT] = GetCachedIcon("chat_log_quit");
- pci->hIcons[ICON_REMSTATUS] = GetCachedIcon("chat_log_removestatus");
- pci->hIcons[ICON_TOPIC] = GetCachedIcon("chat_log_topic");
- pci->hIcons[ICON_STATUS1] = GetCachedIcon("chat_status1");
- pci->hIcons[ICON_STATUS2] = GetCachedIcon("chat_status2");
- pci->hIcons[ICON_STATUS3] = GetCachedIcon("chat_status3");
- pci->hIcons[ICON_STATUS4] = GetCachedIcon("chat_status4");
- pci->hIcons[ICON_STATUS0] = GetCachedIcon("chat_status0");
- pci->hIcons[ICON_STATUS5] = GetCachedIcon("chat_status5");
-}
-
int Chat_Load()
{
CHAT_MANAGER_INITDATA data = { &g_Settings, sizeof(MODULEINFO), sizeof(SESSION_INFO), LPGENT("Messaging")_T("/")LPGENT("Group chats") };
@@ -160,8 +136,7 @@ int Chat_Load() pci->OnSetStatusBar = OnSetStatusBar;
pci->OnFlashWindow = OnFlashWindow;
pci->ShowRoom = ShowRoom;
-
- LoadChatIcons();
+ pci->ReloadSettings();
g_hMenu = LoadMenu(g_hInst, MAKEINTRESOURCE(IDR_MENU));
TranslateMenu(g_hMenu);
diff --git a/plugins/Scriver/src/statusicon.cpp b/plugins/Scriver/src/statusicon.cpp index fa56859f67..f9c3d02936 100644 --- a/plugins/Scriver/src/statusicon.cpp +++ b/plugins/Scriver/src/statusicon.cpp @@ -71,8 +71,6 @@ static int OnSrmmIconChanged(WPARAM wParam, LPARAM) if (hwnd != NULL)
PostMessage(GetParent(hwnd), DM_STATUSICONCHANGE, 0, 0);
}
-
- LoadChatIcons();
return 0;
}
|