Sha256: 36662820680465c762c044c16d62b8beb745d4c578f78227d9ed267428aced38
Contents?: true
Size: 703 Bytes
Versions: 6
Compression:
Stored size: 703 Bytes
Contents
#include "StdAfx.h" #include "SyncStatusDlg.h" #include "logging/RhoLog.h" LRESULT CSyncStatusDlg::OnInitDialog(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { SetDlgItemText(IDC_SYNCSTATUS, m_strStatus ); bHandled = TRUE; return 1; // Let the system set the focus } void CSyncStatusDlg::setStatusText(LPCWSTR szStatus) { m_strStatus = szStatus; if ( m_hWnd ) SetDlgItemText(IDC_SYNCSTATUS, m_strStatus ); } LRESULT CSyncStatusDlg::OnOK(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled) { return 0; } LRESULT CSyncStatusDlg::OnCancel(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled) { ShowWindow(SW_HIDE); bHandled = TRUE; return 0; }
Version data entries
6 entries across 6 versions & 1 rubygems