-rw-r--r-- | microkde/kcombobox.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/microkde/kcombobox.h b/microkde/kcombobox.h new file mode 100644 index 0000000..1a21344 --- a/dev/null +++ b/microkde/kcombobox.h @@ -0,0 +1,12 @@ +#ifndef MICROKDE_KCOMBOBOX_H +#define MICROKDE_KCOMBOBOX_H + +#include <qcombobox.h> + +class KComboBox : public QComboBox +{ + public: + KComboBox( QWidget *parent ) : QComboBox( parent ) {} +}; + +#endif |