9 lines
139 B
C++
9 lines
139 B
C++
#include "prompt.h"
|
|
|
|
void Prompt::confirmationPerformed()
|
|
{
|
|
QString str = text();
|
|
clear();
|
|
emit sendMsg(str.append("\r\n"));
|
|
}
|