Commit 258df8b2 authored by Shawn Rutledge's avatar Shawn Rutledge Committed by The Qt Project
Browse files

Dialogs: fix compiler warning


StandardButton is a 32-bit type again.

Change-Id: I8aba4150cee169ef837891e9d72a64d48db32346
Reviewed-by: default avatarLiang Qi <liang.qi@digia.com>
parent 743e5ff9
Tags
Showing with 1 addition and 1 deletion
...@@ -212,7 +212,7 @@ void QQuickDialog::click(QPlatformDialogHelper::StandardButton button, QPlatform ...@@ -212,7 +212,7 @@ void QQuickDialog::click(QPlatformDialogHelper::StandardButton button, QPlatform
emit reset(); emit reset();
break; break;
default: default:
qWarning("unhandled MessageDialog button %d with role %ld", button, role); qWarning("unhandled MessageDialog button %d with role %d", (int)button, (int)role);
} }
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment