mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 03:19:44 +00:00
16 lines
254 B
C++
16 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
|