fix recursion in QDesignerDialogGuiInterface::getOpenImageFileNames

Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
Ivailo Monev 2019-05-07 05:18:39 +00:00
parent 6af0946c92
commit 0d455eee29
2 changed files with 1 additions and 3 deletions

View file

@ -148,7 +148,7 @@ QString QDesignerDialogGuiInterface::getOpenImageFileName(QWidget *parent, const
QStringList QDesignerDialogGuiInterface::getOpenImageFileNames(QWidget *parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedFilter, QFileDialog::Options options) QStringList QDesignerDialogGuiInterface::getOpenImageFileNames(QWidget *parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedFilter, QFileDialog::Options options)
{ {
return getOpenImageFileNames(parent, caption, dir, filter, selectedFilter, options); return getOpenFileNames(parent, caption, dir, filter, selectedFilter, options);
} }
/*! /*!

View file

@ -61,8 +61,6 @@ QT_BEGIN_HEADER
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
class QWidget;
class QDESIGNER_SDK_EXPORT QDesignerDialogGuiInterface class QDESIGNER_SDK_EXPORT QDesignerDialogGuiInterface
{ {
Q_DISABLE_COPY(QDesignerDialogGuiInterface) Q_DISABLE_COPY(QDesignerDialogGuiInterface)