summaryrefslogtreecommitdiff
path: root/plugins/PasteIt/src/Options.cpp
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2015-07-31 22:57:03 +0000
committerAlexander Lantsev <aunsane@gmail.com>2015-07-31 22:57:03 +0000
commit17bbf2601252ec49906ef7219b970342d46339b7 (patch)
tree313c099042e8d31e1ea39297e06b9073e30240aa /plugins/PasteIt/src/Options.cpp
parenta08e1cf9777b4a3766c91be2685aaf37c24fbd4e (diff)
reverted unwanted changes
git-svn-id: http://svn.miranda-ng.org/main/trunk@14776 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PasteIt/src/Options.cpp')
-rw-r--r--plugins/PasteIt/src/Options.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/PasteIt/src/Options.cpp b/plugins/PasteIt/src/Options.cpp
index 9534e3be51..65781ac2f0 100644
--- a/plugins/PasteIt/src/Options.cpp
+++ b/plugins/PasteIt/src/Options.cpp
@@ -1,6 +1,6 @@
/*
+Paste It plugin
Copyright (C) 2011 Krzysztof Kral
-Copyright (C) 2012-15 Miranda NG project (http://miranda-ng.org)
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
@@ -16,7 +16,7 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "StdAfx.h"
Options *Options::instance;
@@ -341,7 +341,7 @@ INT_PTR CALLBACK Options::DlgProcOptsPages(HWND hwndDlg, UINT msg, WPARAM wParam
OptsLoginData d;
if (DialogBoxParam(hInst, MAKEINTRESOURCE(IDD_DLG_PASTEBIN_LOGIN), hwndDlg, DlgProcOptsLogin, (LPARAM)&d) == IDOK)
{
- PastebinCom *web = (PastebinCom*)pasteToWebs[optsPagesData->lastPage];
+ PasteToWeb1 *web = (PasteToWeb1*)pasteToWebs[optsPagesData->lastPage];
Edit_SetText(GetDlgItem(hwndDlg, IDC_PASTEBIN_KEY), web->GetUserKey(d.user, d.password).c_str());
}
}