-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 @@ | |||
1 | #ifndef MICROKDE_KCOMBOBOX_H | ||
2 | #define MICROKDE_KCOMBOBOX_H | ||
3 | |||
4 | #include <qcombobox.h> | ||
5 | |||
6 | class KComboBox : public QComboBox | ||
7 | { | ||
8 | public: | ||
9 | KComboBox( QWidget *parent ) : QComboBox( parent ) {} | ||
10 | }; | ||
11 | |||
12 | #endif | ||