Changeset 358 for AE/Installer/trunk/source/aeinstallerapp.cpp
- Timestamp:
- Jun 20, 2009, 12:25:08 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
AE/Installer/trunk/source/aeinstallerapp.cpp
r356 r358 9 9 // Licence: 10 10 ///////////////////////////////////////////////////////////////////////////// 11 #include "boost/thread.hpp" 12 #include <boost/thread/mutex.hpp> 11 13 12 14 #include "boost/filesystem.hpp" // includes all needed Boost.Filesystem declarations … … 117 119 } 118 120 else { 119 //globalize... 121 TheWindow->InstallButton->Disable(); 122 TheWindow->ReglobalizeButton->Disable(); 123 124 #ifdef WIN32 125 126 boost::thread thrd3(globalizeData); 127 //globalizeData(); 128 //boost::thread::create_thread(&globalizeData); 129 // boost::thread_group Tg; 130 // Tg.create_thread( &globalizeData(), this ); 131 #else 132 globalizeData(); 133 setProgressBar(1000); 134 setStatusArea("Done!"); 135 #endif 136 137 TheWindow->InstallButton->Enable(); 138 TheWindow->ReglobalizeButton->Enable(); 120 139 } 121 140 }
Note:
See TracChangeset
for help on using the changeset viewer.