QTfrontend/CocoaInitializer.h
author nemo
Sun, 02 Aug 2009 17:37:45 +0000
changeset 2294 2e6ffb3ef304
parent 2261 57e99c908e7c
child 2377 f3fab2b09e0c
permissions -rw-r--r--
For people's consideration. Restore the .11 behaviour of not initialising sound if music is turned off. Reason. I still get 100% CPU useage in frontend due to sucky sound daemon setups *cough*pulseaudio*cough* so this offers an easy workaround for people (turn off music). Disadvantage, this removes Smaxx' code to disable sound-related buttons on failure to init sound.

/*
 * Copyright (C) 2008 Remko Troncon
 */

#ifndef COCOAINITIALIZER_H
#define COCOAINITIALIZER_H

class CocoaInitializer
{
	public:
		CocoaInitializer();
		~CocoaInitializer();
	
	private:
		class Private;
		Private* d;
};

#endif