diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-03-08 20:09:43 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-03-08 20:09:43 +0000 |
commit | 26fb8c94226ef87cd4788315ba609f47b18ff6eb (patch) | |
tree | de26856c536f86b912daba6adf4f7f28cf4f2f97 /plugins/Dropbox/src | |
parent | ebbc20d1aabb7c462251e126929a4b2c7d3c3753 (diff) |
Dropbox: resource cosmetics
git-svn-id: http://svn.miranda-ng.org/main/trunk@8480 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox/src')
-rw-r--r-- | plugins/Dropbox/src/dropbox.h | 1 | ||||
-rw-r--r-- | plugins/Dropbox/src/dropbox_dialogs.cpp | 56 | ||||
-rw-r--r-- | plugins/Dropbox/src/resource.h | 6 | ||||
-rw-r--r-- | plugins/Dropbox/src/version.h | 2 |
4 files changed, 3 insertions, 62 deletions
diff --git a/plugins/Dropbox/src/dropbox.h b/plugins/Dropbox/src/dropbox.h index c920e79e7b..783297ad44 100644 --- a/plugins/Dropbox/src/dropbox.h +++ b/plugins/Dropbox/src/dropbox.h @@ -110,7 +110,6 @@ private: static void Menu_DisableItem(HGENMENU hMenuItem, BOOL bDisable);
// dialogs
- static INT_PTR CALLBACK TokenRequestProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
static INT_PTR CALLBACK MainOptionsProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
// utils
diff --git a/plugins/Dropbox/src/dropbox_dialogs.cpp b/plugins/Dropbox/src/dropbox_dialogs.cpp index c649c3e60e..07bd42c5dd 100644 --- a/plugins/Dropbox/src/dropbox_dialogs.cpp +++ b/plugins/Dropbox/src/dropbox_dialogs.cpp @@ -1,61 +1,5 @@ #include "common.h"
-INT_PTR CALLBACK CDropbox::TokenRequestProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
-{
- char *token = reinterpret_cast<char*>(::GetWindowLongPtr(hwndDlg, GWLP_USERDATA));
-
- switch (msg)
- {
- case WM_INITDIALOG:
- TranslateDialogDefault(hwndDlg);
-
- token = (char*)lParam;
- SetWindowLongPtr(hwndDlg, GWLP_USERDATA, lParam);
- {
- //::SendMessage(hwndDlg, WM_SETICON, ICON_BIG, (LPARAM)CSkypeProto::IconList[0].Handle);
- //::SendMessage(hwndDlg, WM_SETICON, ICON_SMALL, (LPARAM)CSkypeProto::IconList[0].Handle);
-
- /*wchar_t title[MAX_PATH];
- ::mir_sntprintf(
- title,
- MAX_PATH,
- ::TranslateT("Enter a password for %s:"),
- param->login);*/
- //::SetDlgItemText(hwndDlg, IDC_INSTRUCTION, title);
-
- SendDlgItemMessage(hwndDlg, IDC_TOKEN, EM_LIMITTEXT, 128 - 1, 0);
- }
- break;
-
- case WM_CLOSE:
- EndDialog(hwndDlg, 0);
- break;
-
- case WM_COMMAND:
- {
- switch (LOWORD(wParam))
- {
- case IDOK:
- {
- char data[128];
- GetDlgItemTextA(hwndDlg, IDC_TOKEN, data, SIZEOF(data));
- strcpy(token, data);
-
- EndDialog(hwndDlg, IDOK);
- }
- break;
-
- case IDCANCEL:
- EndDialog(hwndDlg, IDCANCEL);
- break;
- }
- }
- break;
- }
-
- return FALSE;
-}
-
INT_PTR CALLBACK CDropbox::MainOptionsProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{
CDropbox *instance = (CDropbox*)GetWindowLongPtr(hwndDlg, GWLP_USERDATA);
diff --git a/plugins/Dropbox/src/resource.h b/plugins/Dropbox/src/resource.h index 6f36825cec..bd27208c23 100644 --- a/plugins/Dropbox/src/resource.h +++ b/plugins/Dropbox/src/resource.h @@ -2,7 +2,6 @@ // Microsoft Visual C++ generated include file.
// Used by e:\Projects\C++\MirandaNG\plugins\Dropbox\res\resource.rc
//
-#define IDD_TOKEN_REQUEST 17
#define IDI_DROPBOX 102
#define IDD_OPTIONS_MAIN 109
#define IDC_REQUEST_CODE 1001
@@ -10,8 +9,7 @@ #define IDC_CHECK2 1004
#define IDC_USE_SHORT_LINKS 1004
#define IDC_AUTH_STATUS 1005
-#define IDC_TOKEN 1006
-#define IDC_TOKEN_LABEL 1007
+#define IDC_GET_AUTH_LINK 1006
#define IDC_GETAUTH 1200
// Next default values for new objects
@@ -20,7 +18,7 @@ #ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 103
#define _APS_NEXT_COMMAND_VALUE 40001
-#define _APS_NEXT_CONTROL_VALUE 1006
+#define _APS_NEXT_CONTROL_VALUE 1007
#define _APS_NEXT_SYMED_VALUE 101
#endif
#endif
diff --git a/plugins/Dropbox/src/version.h b/plugins/Dropbox/src/version.h index c15caf348c..9fd0181274 100644 --- a/plugins/Dropbox/src/version.h +++ b/plugins/Dropbox/src/version.h @@ -8,7 +8,7 @@ #define __PLUGIN_NAME "Dropbox"
#define __INTERNAL_NAME "Dropbox"
#define __FILENAME "Dropbox.dll"
-#define __DESCRIPTION "Provides ability to upload files on Dropbox."
+#define __DESCRIPTION "Allows to transfer files via Dropbox"
#define __AUTHOR "unsane"
#define __AUTHOREMAIL ""
#define __AUTHORWEB "http://miranda-ng.org/p/Dropbox/"
|