diff options
author | Tobias Hunger <tobias.hunger@qt.io> | 2017-07-25 13:51:36 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@qt.io> | 2017-07-27 09:15:05 +0000 |
commit | 5d8b0e63527c1876865a2bddb9c3180ff943be9e (patch) | |
tree | 13339eeba3fc9e86dad9e40d3727fda07c11a907 /src/plugins/android | |
parent | 400da9def881ef7e51d952d513f63472584656f7 (diff) | |
download | qt-creator-5d8b0e63527c1876865a2bddb9c3180ff943be9e.tar.gz |
Utils: Separate rendering out of ProgressIndicator
I want to reuse the rendering of the progress indicator outside
of a widget.
Change-Id: Icaeeb798578ad838693b68556bf2193c4ba45cfa
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
Diffstat (limited to 'src/plugins/android')
-rw-r--r-- | src/plugins/android/androiddevicedialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/android/androiddevicedialog.cpp b/src/plugins/android/androiddevicedialog.cpp index 451abf2dc5..a874466e15 100644 --- a/src/plugins/android/androiddevicedialog.cpp +++ b/src/plugins/android/androiddevicedialog.cpp @@ -462,7 +462,7 @@ AndroidDeviceDialog::AndroidDeviceDialog(int apiLevel, const QString &abi, Andro m_ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false); - m_progressIndicator = new Utils::ProgressIndicator(Utils::ProgressIndicator::Large, this); + m_progressIndicator = new Utils::ProgressIndicator(Utils::ProgressIndicatorSize::Large, this); m_progressIndicator->attachToWidget(m_ui->deviceView); if (serialNumber.isEmpty()) { |