Cocoa: Remove unused qt_mac_is_sheet() function
The static qt_mac_is_sheet() function in qcocoafiledialoghelper.mm was not called anywhere, remove it. Change-Id: I88785e15aa17ae9c9ffbc33eba30433c8834b798 Reviewed-by: Morten Johan Sørvig <morten.sorvig@nokia.com>
This commit is contained in:
parent
155d5ecf34
commit
1f61980a0f
@ -504,17 +504,6 @@ typedef QSharedPointer<QFileDialogOptions> SharedPointerFileDialogOptions;
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
static bool qt_mac_is_macsheet(const QWidget *w)
|
||||
{
|
||||
if (!w)
|
||||
return false;
|
||||
|
||||
Qt::WindowModality modality = w->windowModality();
|
||||
if (modality == Qt::ApplicationModal)
|
||||
return false;
|
||||
return w->parentWidget() && (modality == Qt::WindowModal || w->windowType() == Qt::Sheet);
|
||||
}
|
||||
|
||||
QCocoaFileDialogHelper::QCocoaFileDialogHelper()
|
||||
:mDelegate(0)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user