OpenMW
apps/launcher/textslotmsgbox.hpp
Go to the documentation of this file.
00001 #ifndef TEXT_SLOT_MSG_BOX
00002 #define TEXT_SLOT_MSG_BOX
00003 
00004 #include <QMessageBox>
00005 
00006 namespace Launcher
00007 {
00008     class TextSlotMsgBox : public QMessageBox
00009     {
00010     Q_OBJECT
00011         public slots:
00012             void setTextSlot(const QString& string);
00013     };
00014 }
00015 #endif