1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-01 03:21:41 +00:00
OpenMW/apps/launcher/textslotmsgbox.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
250 B
C++
Raw Normal View History

2013-08-17 21:56:50 +00:00
#ifndef TEXT_SLOT_MSG_BOX
#define TEXT_SLOT_MSG_BOX
#include <QMessageBox>
2013-10-25 16:17:26 +00:00
namespace Launcher
2013-08-17 21:56:50 +00:00
{
2013-10-25 16:17:26 +00:00
class TextSlotMsgBox : public QMessageBox
{
2022-09-22 18:26:05 +00:00
Q_OBJECT
public slots:
void setTextSlot(const QString& string);
2013-10-25 16:17:26 +00:00
};
}
2013-08-17 21:56:50 +00:00
#endif