X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=src%2FTortoiseShell%2FSVNPropertyPage.cpp;h=078d52d8c22d17a9079fca1dec96aca7ac837daa;hb=8540c9607bece3f8c35a3edd7740a686ef0c0892;hp=f59322f09f0b2abce7c5787f24831afedfbb1f67;hpb=a7ae8504456db8abe0389f80a6a06a9425d87fd2;p=tortoisegit%2FTortoiseGitJp.git diff --git a/src/TortoiseShell/SVNPropertyPage.cpp b/src/TortoiseShell/SVNPropertyPage.cpp index f59322f..078d52d 100644 --- a/src/TortoiseShell/SVNPropertyPage.cpp +++ b/src/TortoiseShell/SVNPropertyPage.cpp @@ -281,7 +281,7 @@ void CGitPropertyPage::InitWorkfileView() SetDlgItemText(m_hwnd,IDC_SHELL_CURRENT_BRANCH,branch); SetDlgItemText(m_hwnd,IDC_SHELL_REMOTE_BRANCH,remotebranch); - SetDlgItemText(m_hwnd,IDC_HEAD_HASH,rev.m_CommitHash); + SetDlgItemText(m_hwnd,IDC_HEAD_HASH,rev.m_CommitHash.ToString()); SetDlgItemText(m_hwnd,IDC_HEAD_SUBJECT,rev.m_Subject); SetDlgItemText(m_hwnd,IDC_HEAD_AUTHOR,rev.m_AuthorName); SetDlgItemText(m_hwnd,IDC_HEAD_DATE,rev.m_AuthorDate.Format(_T("%Y-%m-%d %H:%M:%S"))); @@ -313,7 +313,7 @@ void CGitPropertyPage::InitWorkfileView() rev.Clear(); rev.ParserFromLog(logout); - SetDlgItemText(m_hwnd,IDC_LAST_HASH,rev.m_CommitHash); + SetDlgItemText(m_hwnd,IDC_LAST_HASH,rev.m_CommitHash.ToString()); SetDlgItemText(m_hwnd,IDC_LAST_SUBJECT,rev.m_Subject); SetDlgItemText(m_hwnd,IDC_LAST_AUTHOR,rev.m_AuthorName); SetDlgItemText(m_hwnd,IDC_LAST_DATE,rev.m_AuthorDate.Format(_T("%Y-%m-%d %H:%M:%S")));