Ignore:
Timestamp:
Jun 20, 2009, 12:25:08 AM (16 years ago)
Author:
gumby
Message:

Fixed bugs:
Missing globalize code on start
possibly fixed adv option menu
type "Step33/36"
const thing in struct ModPackage

File:
1 edited

Legend:

Unmodified
Added
Removed
  • AE/Installer/trunk/source/aeinstallerapp.cpp

    r356 r358  
    99// Licence:     
    1010/////////////////////////////////////////////////////////////////////////////
     11#include "boost/thread.hpp"
     12#include <boost/thread/mutex.hpp>
    1113
    1214#include "boost/filesystem.hpp" // includes all needed Boost.Filesystem declarations
     
    117119                }
    118120                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();
    120139                }
    121140        }
Note: See TracChangeset for help on using the changeset viewer.