summaryrefslogtreecommitdiffabout
path: root/microkde/kcombobox.h
blob: 1a21344512c427b6772cd5435bb16fca1940ced3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef MICROKDE_KCOMBOBOX_H
#define MICROKDE_KCOMBOBOX_H

#include <qcombobox.h>

class KComboBox : public QComboBox
{
  public:
    KComboBox( QWidget *parent ) : QComboBox( parent ) {}
};

#endif