Utils: Add comments to the PathChooser::Kind values

They are documented properly, but sometimes simpler to look here.

Change-Id: Ibe48a30bf0e7909c1cea1d414748a09962691615
Reviewed-by: Artem Sokolovskii <artem.sokolovskii@qt.io>
This commit is contained in:
hjk
2023-12-21 14:12:46 +01:00
parent 7443ca977b
commit 12065e70d5

View File

@@ -44,8 +44,8 @@ public:
enum Kind { enum Kind {
ExistingDirectory, ExistingDirectory,
Directory, // A directory, doesn't need to exist Directory, // A directory, doesn't need to exist
File, File, // An existing file
SaveFile, SaveFile, // A file that does not need to exist
ExistingCommand, // A command that must exist at the time of selection ExistingCommand, // A command that must exist at the time of selection
Command, // A command that may or may not exist at the time of selection (e.g. result of a build) Command, // A command that may or may not exist at the time of selection (e.g. result of a build)
Any Any