diff options
author | Dennis Syrovatsky <dennis@tightvnc.com> | 2005-12-14 07:58:29 +0000 |
---|---|---|
committer | Dennis Syrovatsky <dennis@tightvnc.com> | 2005-12-14 07:58:29 +0000 |
commit | 95a01ff9542b778e38de8853ec968401788509de (patch) | |
tree | 305de47f5e93bb37195f6972ee3edc40c7e7b9c2 /vncviewer/FTDialog.cxx | |
parent | 1f86851b2dae48d2535b73547b7545940e939f57 (diff) | |
download | tigervnc-95a01ff9542b778e38de8853ec968401788509de.tar.gz tigervnc-95a01ff9542b778e38de8853ec968401788509de.zip |
Added status strings for copy operation.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@442 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'vncviewer/FTDialog.cxx')
-rw-r--r-- | vncviewer/FTDialog.cxx | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/vncviewer/FTDialog.cxx b/vncviewer/FTDialog.cxx index 8e18d033..99c9ca20 100644 --- a/vncviewer/FTDialog.cxx +++ b/vncviewer/FTDialog.cxx @@ -28,7 +28,6 @@ using namespace rfb::win32; const char FTDialog::szCheckDeleteQueueText[] = "TightVNC.Viewer.CheckDeleteQueue.Msg"; const char FTDialog::szCheckTransferQueueText[] = "TightVNC.Viewer.CheckTransferQueue.Msg"; -const char FTDialog::szDownloadFilePortionText[] = "TightVNC.Viewer.DownloadFilePortion.Msg"; const char FTDialog::szUploadFilePortionText[] = "TightVNC.Viewer.UploadFilePortion.Msg"; FTDialog::FTDialog(HINSTANCE hInst, FileTransfer *pFT) @@ -130,10 +129,10 @@ FTDialog::initFTWndMsgs() m_msgCheckDeleteQueue = RegisterWindowMessage(szCheckDeleteQueueText); m_msgCheckTransferQueue = RegisterWindowMessage(szCheckTransferQueueText); m_msgUploadFilePortion = RegisterWindowMessage(szUploadFilePortionText); - m_msgDownloadFilePortion = RegisterWindowMessage(szDownloadFilePortionText); - if ((m_msgCheckDeleteQueue) && (m_msgCheckTransferQueue) && - (m_msgUploadFilePortion) && (m_msgDownloadFilePortion)) return true; + if ((m_msgCheckDeleteQueue) && + (m_msgCheckTransferQueue) && + (m_msgUploadFilePortion)) return true; return false; } @@ -289,9 +288,6 @@ FTDialog::FTDialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) if (uMsg == _this->m_msgUploadFilePortion) _this->m_pFileTransfer->uploadFilePortion(); - if (uMsg == _this->m_msgDownloadFilePortion) - _this->m_pFileTransfer->downloadFilePortion(); - if (uMsg == _this->m_msgCheckDeleteQueue) _this->m_pFileTransfer->checkDeleteQueue(); } @@ -707,12 +703,6 @@ FTDialog::postUploadFilePortionMsg() } void -FTDialog::postDownloadFilePortionMsg() -{ - PostMessage(m_hwndFTDialog, m_msgDownloadFilePortion, 0, 0); -} - -void FTDialog::postCheckDeleteQueueMsg() { PostMessage(m_hwndFTDialog, m_msgCheckDeleteQueue, 0, 0); |