#ifndef MINIKDE_KLINEEDIT_H #define MINIKDE_KLINEEDIT_H #include #ifndef DESKTOP_VERSION #include #endif class KLineEdit : public QLineEdit { public: KLineEdit( QWidget *parent=0, const char *name=0 ) : QLineEdit( parent, name ) { #ifndef DESKTOP_VERSION QPEApplication::setStylusOperation( this, QPEApplication::RightOnHold ); #endif } void setTrapReturnKey( bool ) {} }; #endif