From: Drakier D. <dra...@us...> - 2004-03-02 22:49:14
|
Log Message: ----------- moved another line into its proper code block (and removed some un-needed comments) Modified Files: -------------- /cvsroot/decaldev/source/DenAgent: ExportDlg.cpp Revision Data ------------- Index: ExportDlg.cpp =================================================================== RCS file: /cvsroot/decaldev/source/DenAgent/ExportDlg.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- ExportDlg.cpp 1 Mar 2004 19:08:10 -0000 1.5 +++ ExportDlg.cpp 2 Mar 2004 22:29:14 -0000 1.6 @@ -115,7 +115,6 @@ if ( ::SendMessage( GetDlgItem( IDC_CHKCLSID )->m_hWnd, BM_GETCHECK, 0, 0 ) ) szOutput += "clsid"; szOutput += "\r\n"; - //::SendMessage( GetDlgItem( IDC_EDITEXPORT )->m_hWnd, WM_SETTEXT, 0, (LPARAM)szOutput.c_str() ); AppendExportText(szOutput.c_str()); // Go through all the groups exporting their sub-lists @@ -189,7 +188,6 @@ szOutput += "<No CLSID>"; } szOutput += "\r\n"; - //::SendMessage( GetDlgItem( IDC_EDITEXPORT )->m_hWnd, WM_SETTEXT, 0, (LPARAM)szOutput.c_str() ); AppendExportText(szOutput.c_str()); } } @@ -377,7 +375,6 @@ szOutput += "Microsoft Win32s\r\n"; break; } - //::SendMessage( GetDlgItem( IDC_EDITEXPORT )->m_hWnd, WM_SETTEXT, 0, (LPARAM)szOutput.c_str() ); AppendExportText(szOutput.c_str()); // Drakier: Check the Protected Storage @@ -402,12 +399,10 @@ } } key.Close(); + AppendExportText(szOutput.c_str()); } - //::SendMessage( GetDlgItem( IDC_EDITEXPORT )->m_hWnd, WM_SETTEXT, 0, (LPARAM)szOutput.c_str() ); - AppendExportText(szOutput.c_str()); // Drakier: Get the Injection Mode - if( key.Create( HKEY_LOCAL_MACHINE, _T( "SOFTWARE\\Decal" )) == ERROR_SUCCESS ) { DWORD dwViewMode; @@ -428,7 +423,6 @@ key.Close(); AppendExportText(szOutput.c_str()); } - //::SendMessage( GetDlgItem( IDC_EDITEXPORT )->m_hWnd, WM_SETTEXT, 0, (LPARAM)szOutput.c_str() ); // Drakier: Get the Runtime versions (if installed). szOutput = "\r\nRuntime Libraries\r\n"; @@ -631,7 +625,6 @@ } ::FreeLibrary(hLib); AppendExportText(szOutput.c_str()); - //::SendMessage( GetDlgItem( IDC_EDITEXPORT )->m_hWnd, WM_SETTEXT, 0, (LPARAM)szOutput.c_str() ); // Drakier: Get the MSXML Versions szOutput = "\r\nMicrosoft XML Libraries\r\n"; @@ -679,7 +672,6 @@ } ::FreeLibrary(hLib); AppendExportText(szOutput.c_str()); - //::SendMessage( GetDlgItem( IDC_EDITEXPORT )->m_hWnd, WM_SETTEXT, 0, (LPARAM)szOutput.c_str() ); // Drakier: Get the Compat Mode Layers and display them. if (key.Open( HKEY_CURRENT_USER, "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\AppCompatFlags\\Layers" ) == ERROR_SUCCESS) |