From 12065e70d56bd1ecd2ca31bc2d9a63bda5941da2 Mon Sep 17 00:00:00 2001 From: hjk Date: Thu, 21 Dec 2023 14:12:46 +0100 Subject: [PATCH] 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 --- src/libs/utils/pathchooser.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libs/utils/pathchooser.h b/src/libs/utils/pathchooser.h index b7b4a040f31..a91a853938f 100644 --- a/src/libs/utils/pathchooser.h +++ b/src/libs/utils/pathchooser.h @@ -44,8 +44,8 @@ public: enum Kind { ExistingDirectory, Directory, // A directory, doesn't need to exist - File, - SaveFile, + File, // An existing file + SaveFile, // A file that does not need to exist 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) Any