Added parent window handle to the creation method
of the file transfer dialog.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@409 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/vncviewer/FileTransfer.cxx b/vncviewer/FileTransfer.cxx
index 77ebe0a..8997ebc 100644
--- a/vncviewer/FileTransfer.cxx
+++ b/vncviewer/FileTransfer.cxx
@@ -58,11 +58,11 @@
}
bool
-FileTransfer::show()
+FileTransfer::show(HWND hwndParent)
{
if (!m_bInitialized) return false;
- m_bFTDlgShown = m_pFTDialog->createFTDialog();
+ m_bFTDlgShown = m_pFTDialog->createFTDialog(hwndParent);
return m_bFTDlgShown;
}