From d3ea9485ee3ac7987f81660c868dd70f0c16f4cc Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Tue, 13 Dec 2022 16:06:53 +0200 Subject: [PATCH] kemu: consistent format Signed-off-by: Ivailo Monev --- kemu/kemumainwindow.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/kemu/kemumainwindow.cpp b/kemu/kemumainwindow.cpp index 77fbc8a2..f7c30a5f 100644 --- a/kemu/kemumainwindow.cpp +++ b/kemu/kemumainwindow.cpp @@ -169,8 +169,10 @@ void KEmuMainWindow::createHardDisk() const QString diskPath = KFileDialog::getSaveFileName(KUrl(), QString(), this, i18n("Hard Disk path")); if (!diskPath.isEmpty()) { bool ok = false; - const int diskSize = KInputDialog::getInteger(i18n("Hard Disk size"), - i18n("Hard Disk size in MegaBytes"), 10, 10, INT_MAX, 1, 10, &ok, this); + const int diskSize = KInputDialog::getInteger( + i18n("Hard Disk size"), + i18n("Hard Disk size in MegaBytes"), 10, 10, INT_MAX, 1, 10, &ok, this + ); if (ok) { QProcess imageProcess(this); imageProcess.setProcessChannelMode(QProcess::MergedChannels);