00001 #ifndef MINIKDE_KLINEEDIT_H 00002 #define MINIKDE_KLINEEDIT_H 00003 00004 #include <qlineedit.h> 00005 00006 class KLineEdit : public QLineEdit 00007 { 00008 public: 00009 KLineEdit( QWidget *parent=0, const char *name=0 ) : 00010 QLineEdit( parent, name ) {} 00011 }; 00012 00013 #endif
1.4.2