blob: 197f8f21cd6b83487dc29819a25046de64667227 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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"
|