#ifndef MICROKDE_KCOMBOBOX_H #define MICROKDE_KCOMBOBOX_H #include <qcombobox.h> class KComboBox : public QComboBox { public: KComboBox( QWidget *parent ) : QComboBox( parent ) {} }; #endif