mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-01 07:45:36 +00:00
13 lines
208 B
C++
13 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
|