diff options
author | hjk <[email protected]> | 2024-12-11 11:46:34 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2025-01-06 09:20:58 +0000 |
commit | bcdf7d71b6e23c17f3a9963264c6025b8747fa93 (patch) | |
tree | 9e9d958e742cfeb7a5326e57bbfed85a116c4beb /src/plugins/remotelinux/sshkeycreationdialog.cpp | |
parent | 0c5c42a6d68a3a77b5761204298926a18407cc26 (diff) |
Utils: Remove parent argument from FileUtils dialogs
Some were using ICore::dialogParent() directly and the 'nullptr' users
were using that implicitly, but quite a few actually effectively changed
now from some local widget to (implicit) ICore::dialogParent().
Change-Id: Ibb2767b1289221dd26757361235ee88df4a1695e
Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/plugins/remotelinux/sshkeycreationdialog.cpp')
-rw-r--r-- | src/plugins/remotelinux/sshkeycreationdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/remotelinux/sshkeycreationdialog.cpp b/src/plugins/remotelinux/sshkeycreationdialog.cpp index a94a56cf61e..aed27946b3a 100644 --- a/src/plugins/remotelinux/sshkeycreationdialog.cpp +++ b/src/plugins/remotelinux/sshkeycreationdialog.cpp @@ -129,7 +129,7 @@ void SshKeyCreationDialog::generateKeys() void SshKeyCreationDialog::handleBrowseButtonClicked() { - const FilePath filePath = FileUtils::getSaveFilePath(this, Tr::tr("Choose Private Key File Name")); + const FilePath filePath = FileUtils::getSaveFilePath(Tr::tr("Choose Private Key File Name")); if (!filePath.isEmpty()) setPrivateKeyFile(filePath); } |