diff --git a/SleepLib/machine_loader.h b/SleepLib/machine_loader.h index 17293984..52cacc5b 100644 --- a/SleepLib/machine_loader.h +++ b/SleepLib/machine_loader.h @@ -11,7 +11,14 @@ License: GPL #define MACHINE_LOADER_H #include "profiles.h" #include "machine.h" + +#ifdef Q_WS_WIN +// Windows just needs the headers +#include "../quazip/zlib.h" +#else +// use the system one #include "zlib.h" +#endif /*! \class MachineLoader \brief Base class to derive a new Machine importer from diff --git a/SleepLib/profiles.cpp b/SleepLib/profiles.cpp index 97618ffa..69ce1b6c 100644 --- a/SleepLib/profiles.cpp +++ b/SleepLib/profiles.cpp @@ -88,7 +88,6 @@ void Profile::DataFormatError(Machine *m) { QString msg=QObject::tr("Software changes have been made that require the reimporting of the following machines data:\n\n"); msg=msg+m->properties[STR_PROP_Brand]+" "+m->properties[STR_PROP_Model]+" "+m->properties[STR_PROP_Serial]; - msg=msg+QObject::tr("\n\nThis is still only alpha software and these changes are sometimes necessary.\n\n"); msg=msg+QObject::tr("I can automatically purge this data for you, or you can cancel now and continue to run in a previous version.\n\n"); msg=msg+QObject::tr("Would you like me to purge this data this for you so you can run the new version?");