You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
330 B
C++

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