partially revert commit 9fd2f3dd8a

No need to add Linux sillyness in Windows file... (Hopefully close #323)
This commit is contained in:
Gregory Hainaut 2014-10-04 11:33:34 +02:00
parent 6fe9ee387d
commit fa3db52cf7
1 changed files with 3 additions and 10 deletions

View File

@ -32,17 +32,10 @@ static LRESULT WINAPI AboutProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lPar
wchar_t outstr[256];
if( IsDevBuild )
swprintf_s( outstr, L"Build %lld"
#ifndef openSUSE
"-- Compiled on " _T(__DATE__)
#endif
, SVN_REV );
swprintf_s( outstr, L"Build %lld -- Compiled on " _T(__DATE__), SVN_REV );
else
swprintf_s( outstr, L"Release v%d.%d"
#ifndef openSUSE
"-- Compiled on " _T(__DATE__)
#endif
, VersionInfo::Release, VersionInfo::Revision );
swprintf_s( outstr, L"Release v%d.%d -- Compiled on " _T(__DATE__),
VersionInfo::Release, VersionInfo::Revision );
SetWindowText( GetDlgItem(hDlg, IDC_LABEL_VERSION_INFO), outstr );
ShowWindow( hDlg, true );