Engine:
* Small tweaks to English and German locales
Frontend:
* Added a new default locale choice ("system default") that uses Qt's guessing to determine the preferred language
* Updated ts/qm files
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef COCOAINITIALIZER_H
#define COCOAINITIALIZER_H
class CocoaInitializer
{
public:
CocoaInitializer();
~CocoaInitializer();
private:
class Private;
Private* d;
Private* c;
};
#endif