diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-05 15:39:50 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-05 15:39:50 +0000 |
commit | 357af8c5a3cf922818ee014a8f2b54a799917eea (patch) | |
tree | 2ed1b38f979d7b3991f9ca9a4103347f2fddfe62 /plugins/HistoryLinkListPlus | |
parent | a039e3378554f4f7b12a38722f72dfded2f4b277 (diff) |
removed old PLUGININFO. plugin info cleanup starts
git-svn-id: http://svn.miranda-ng.org/main/trunk@312 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryLinkListPlus')
-rw-r--r-- | plugins/HistoryLinkListPlus/linklist.c | 2 | ||||
-rw-r--r-- | plugins/HistoryLinkListPlus/linklist.h | 1 | ||||
-rw-r--r-- | plugins/HistoryLinkListPlus/linklist_dlg.c | 1 |
3 files changed, 1 insertions, 3 deletions
diff --git a/plugins/HistoryLinkListPlus/linklist.c b/plugins/HistoryLinkListPlus/linklist.c index cd4f59f056..4f32a7a4a9 100644 --- a/plugins/HistoryLinkListPlus/linklist.c +++ b/plugins/HistoryLinkListPlus/linklist.c @@ -260,7 +260,7 @@ static INT_PTR LinkList_Main(WPARAM wParam,LPARAM lParam) {
free(dbe.pBlob);
RemoveList(listStart);
- MessageBox(NULL, TranslateTS("Could not allocate memory!"), TranslateT("Error"), MB_OK | MB_ICONEXCLAMATION);
+ MessageBox(NULL, TranslateT("Could not allocate memory!"), TranslateT("Error"), MB_OK | MB_ICONEXCLAMATION);
return -1;
}
}
diff --git a/plugins/HistoryLinkListPlus/linklist.h b/plugins/HistoryLinkListPlus/linklist.h index 297ee3fd8f..4d56733a7d 100644 --- a/plugins/HistoryLinkListPlus/linklist.h +++ b/plugins/HistoryLinkListPlus/linklist.h @@ -131,7 +131,6 @@ typedef struct{ BOOL WINAPI DllMain(HINSTANCE ,DWORD ,LPVOID );
int __declspec(dllexport) Load(PLUGINLINK*);
-__declspec(dllexport) PLUGININFO* MirandaPluginInfo(DWORD);
int __declspec(dllexport) Unload(void);
static INT_PTR LinkList_Main(WPARAM, LPARAM);
int InitOptionsDlg(WPARAM, LPARAM);
diff --git a/plugins/HistoryLinkListPlus/linklist_dlg.c b/plugins/HistoryLinkListPlus/linklist_dlg.c index c416e0121a..150e7d7d29 100644 --- a/plugins/HistoryLinkListPlus/linklist_dlg.c +++ b/plugins/HistoryLinkListPlus/linklist_dlg.c @@ -40,7 +40,6 @@ extern HINSTANCE hInst;
extern HANDLE hWindowList;
-extern PLUGININFO pluginInfo;
extern HCURSOR splitCursor;
MYCOLOURSET colourSet;
|