blob: 0c31ca970d8aac4df7fd9931672f33359e980e3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "kinputdialog.h"
#include <qinputdialog.h>
QString KInputDialog::getItem( const QString &caption, const QString &label,
const QStringList &items, int current,
bool editable )
{
#ifndef QT_NO_INPUTDIALOG
return QInputDialog::getItem( caption, label, items, current, editable );
#else
return QString::null;
#endif
}
|