diff options
author | René Schümann <white06tiger@gmail.com> | 2014-12-25 00:30:09 +0000 |
---|---|---|
committer | René Schümann <white06tiger@gmail.com> | 2014-12-25 00:30:09 +0000 |
commit | f1854df3ba57b0358c893884d56d6826e25f344d (patch) | |
tree | c78083d6fc677729fc86f895ab4695c899ed86e3 /plugins/SendScreenshotPlus/src/UAboutForm.cpp | |
parent | e5c1ba56b7f6ef24279b5e7cda3759b2e68e4c8d (diff) |
SendSS:
* global.h is now more global
removed Main.h dependency
removed MODNAME define (just a dupe of SZ_SENDSS)
hInst -> g_hSendSS
myGlobals -> g_myGlobals
hNetlibUser -> g_hNetlibUser
* restructured Main.cpp by reordering functions to be more logically placed
* Main.h now only holds DLL_EXPORT functions
git-svn-id: http://svn.miranda-ng.org/main/trunk@11608 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SendScreenshotPlus/src/UAboutForm.cpp')
-rw-r--r-- | plugins/SendScreenshotPlus/src/UAboutForm.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/SendScreenshotPlus/src/UAboutForm.cpp b/plugins/SendScreenshotPlus/src/UAboutForm.cpp index e587697bdd..987b24c847 100644 --- a/plugins/SendScreenshotPlus/src/UAboutForm.cpp +++ b/plugins/SendScreenshotPlus/src/UAboutForm.cpp @@ -107,9 +107,9 @@ LRESULT TfrmAbout::wmInitdialog(WPARAM wParam, LPARAM lParam) { { mir_tcsadd(pszTitle ,_T(__COPYRIGHT)); mir_tcsadd(pszTitle ,_T("\r\n\r\n")); - hResInfo = FindResource(hInst,MAKEINTRESOURCE(IDR_LICENSE),_T("TEXT")); - ResSize = SizeofResource(hInst,hResInfo); - pszMsg = (char*)LockResource(LoadResource(hInst,hResInfo)); + hResInfo = FindResource(g_hSendSS,MAKEINTRESOURCE(IDR_LICENSE),_T("TEXT")); + ResSize = SizeofResource(g_hSendSS,hResInfo); + pszMsg = (char*)LockResource(LoadResource(g_hSendSS,hResInfo)); temp = mir_a2t(pszMsg); temp [ResSize] = 0; //LockResource is not NULL terminatet !! mir_tcsadd(pszTitle ,temp); @@ -120,9 +120,9 @@ LRESULT TfrmAbout::wmInitdialog(WPARAM wParam, LPARAM lParam) { //Credit { - hResInfo = FindResource(hInst,MAKEINTRESOURCE(IDR_CREDIT),_T("TEXT")); - ResSize = SizeofResource(hInst,hResInfo); - pszMsg = (char*)LockResource(LoadResource(hInst,hResInfo)); + hResInfo = FindResource(g_hSendSS,MAKEINTRESOURCE(IDR_CREDIT),_T("TEXT")); + ResSize = SizeofResource(g_hSendSS,hResInfo); + pszMsg = (char*)LockResource(LoadResource(g_hSendSS,hResInfo)); temp = mir_a2t(pszMsg); temp [ResSize] = 0; //LockResource is not NULL terminatet !! mir_tcsadd(pszTitle ,temp); @@ -176,7 +176,7 @@ LRESULT TfrmAbout::wmClose(WPARAM wParam, LPARAM lParam) { TfrmAbout::TfrmAbout(HWND Owner) { m_hWndOwner = Owner; // create window - m_hWnd = CreateDialogParam(hInst, MAKEINTRESOURCE(IDD_UAboutForm),0, DlgTfrmAbout,(LPARAM)this); + m_hWnd = CreateDialogParam(g_hSendSS, MAKEINTRESOURCE(IDD_UAboutForm),0, DlgTfrmAbout,(LPARAM)this); //register object _HandleMapping.insert(CHandleMapping::value_type(m_hWnd, this)); //init page |