mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
8 lines
129 B
C++
8 lines
129 B
C++
|
#include "textedit.h"
|
||
|
|
||
|
void TextEdit::focusOutEvent(QFocusEvent *ev)
|
||
|
{
|
||
|
QTextEdit::focusOutEvent(ev);
|
||
|
emit editingFinished();
|
||
|
}
|