mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 07:56:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			254 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			254 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef TEXT_SLOT_MSG_BOX
 | 
						|
#define TEXT_SLOT_MSG_BOX
 | 
						|
 | 
						|
#include <QMessageBox>
 | 
						|
 | 
						|
namespace Launcher
 | 
						|
{
 | 
						|
    class TextSlotMsgBox : public QMessageBox
 | 
						|
    {
 | 
						|
    Q_OBJECT
 | 
						|
        public slots:
 | 
						|
            void setTextSlot(const QString& string);
 | 
						|
    };
 | 
						|
}
 | 
						|
#endif
 |