mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 21:23:52 +00:00
14 lines
208 B
C++
14 lines
208 B
C++
|
#ifndef TEXT_SLOT_MSG_BOX
|
||
|
#define TEXT_SLOT_MSG_BOX
|
||
|
|
||
|
#include <QMessageBox>
|
||
|
|
||
|
class TextSlotMsgBox : public QMessageBox
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public slots:
|
||
|
void setTextSlot(const QString& string);
|
||
|
};
|
||
|
|
||
|
#endif
|