mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	While investigating Qt 5.9.2 problems, I found this unused code. Just remove it. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			252 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			252 B
		
	
	
	
		
			C
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef QT_GUI_H
 | |
| #define QT_GUI_H
 | |
| 
 | |
| void init_qt_late();
 | |
| void init_ui();
 | |
| 
 | |
| void run_ui();
 | |
| void exit_ui();
 | |
| void set_non_bt_addresses();
 | |
| 
 | |
| #if defined(SUBSURFACE_MOBILE)
 | |
| #include <QQuickWindow>
 | |
| #endif
 | |
| 
 | |
| #endif // QT_GUI_H
 |