diff options
author | aunsane <aunsane@gmail.com> | 2017-04-09 17:38:37 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2017-04-09 17:39:06 +0300 |
commit | 6481053a2d97d73902b4ba86b7a06812cff48ae1 (patch) | |
tree | 903ba40ce35761b32084951aede67c6eee9dd2c1 /plugins/Dropbox/src/dropbox_options.cpp | |
parent | 3f6bdf928ebf7e7e70d999905eb363386db2868a (diff) |
Dropbox: temporary url option
Diffstat (limited to 'plugins/Dropbox/src/dropbox_options.cpp')
-rw-r--r-- | plugins/Dropbox/src/dropbox_options.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Dropbox/src/dropbox_options.cpp b/plugins/Dropbox/src/dropbox_options.cpp index 1105d3e71a..a4fe771dad 100644 --- a/plugins/Dropbox/src/dropbox_options.cpp +++ b/plugins/Dropbox/src/dropbox_options.cpp @@ -5,10 +5,10 @@ CDropboxOptionsMain::CDropboxOptionsMain(CDropbox *instance) m_instance(instance),
m_auth(this, IDC_GETAUTH, DROPBOX_WWW_URL "/oauth2/authorize?response_type=code&client_id=" DROPBOX_APP_KEY),
m_requestCode(this, IDC_REQUEST_CODE), m_authorize(this, IDC_AUTHORIZE), m_authStatus(this, IDC_AUTH_STATUS),
- m_useShortUrl(this, IDC_USE_SHORT_LINKS), m_urlAutoSend(this, IDC_URL_AUTOSEND),
+ m_urlIsTemporary(this, IDC_URL_ISTEMPORARY), m_urlAutoSend(this, IDC_URL_AUTOSEND),
m_urlPasteToMessageInputArea(this, IDC_URL_COPYTOMIA), m_urlCopyToClipboard(this, IDC_URL_COPYTOCB)
{
- CreateLink(m_useShortUrl, "UseSortLinks", DBVT_BYTE, 1);
+ CreateLink(m_urlIsTemporary, "UrlIsTemporary", DBVT_BYTE, 0);
CreateLink(m_urlAutoSend, "UrlAutoSend", DBVT_BYTE, 1);
CreateLink(m_urlPasteToMessageInputArea, "UrlPasteToMessageInputArea", DBVT_BYTE, 0);
CreateLink(m_urlCopyToClipboard, "UrlCopyToClipboard", DBVT_BYTE, 0);
|