mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	QPref has only static functions. There seems to be no point in instantiating a singleton of this object. Remove the instance() method and remove the Q_OBJECT macro. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			415 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			415 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef QPREF_H
 | |
| #define QPREF_H
 | |
| #include "core/pref.h"
 | |
| 
 | |
| #include <QObject>
 | |
| #include <QQmlEngine>
 | |
| 
 | |
| class qPref {
 | |
| public:
 | |
| 	// Load/Sync local settings (disk) and struct preference
 | |
| 	static void load() { loadSync(false); }
 | |
| 	static void sync() { loadSync(true); }
 | |
| 
 | |
| 	// Register QML
 | |
| 	static void registerQML(QQmlEngine *engine);
 | |
| 
 | |
| private:
 | |
| 	static void loadSync(bool doSync);
 | |
| };
 | |
| #endif
 |