You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "enter_combo.h"
|
|
|
|
void EnterCombo::keyPressEvent( TQKeyEvent *e ){
|
|
if(e->key() == Key_Return || e->key() == Key_Enter)
|
|
emit(enterPressed());
|
|
else
|
|
TQComboBox::keyPressEvent(e);
|
|
}
|
|
|
|
#include "enter_combo.moc"
|