File: xyzplaintextedit.cpp

package info (click to toggle)
qsstv 9.5.8-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,928 kB
  • sloc: cpp: 47,579; makefile: 4
file content (14 lines) | stat: -rw-r--r-- 262 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "xyzplaintextedit.h"
#include <QDebug>

xyzPlainTextEdit::xyzPlainTextEdit(QWidget *parent) :
  QPlainTextEdit(parent)
{

}

void xyzPlainTextEdit::focusOutEvent(QFocusEvent * event)
{
  emit editingFinished();
  QPlainTextEdit::focusOutEvent(event);
}