Files
storyWriter/cradiobutton.cpp
T
Herwig Birke 519e63ffc5 added doxygen
2018-05-04 12:56:54 +02:00

25 lines
356 B
C++

/*!
\file cradiobutton.cpp
*/
#include "cradiobutton.h"
cRadioButton::cRadioButton(QWidget* parent) :
QRadioButton(parent)
{
}
void cRadioButton::focusInEvent(QFocusEvent* event)
{
gotFocus(this);
QRadioButton::focusInEvent(event);
}
void cRadioButton::focusOutEvent(QFocusEvent* event)
{
lostFocus(this);
QRadioButton::focusOutEvent(event);
}