From 2a797e436d958395a862c25e675a889066490824 Mon Sep 17 00:00:00 2001 From: Martchus Date: Mon, 29 Jan 2018 16:22:26 +0100 Subject: [PATCH] Improve documentation of value completion behaviour --- application/argumentparser.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/application/argumentparser.h b/application/argumentparser.h index 45501fa..2b9b5cf 100644 --- a/application/argumentparser.h +++ b/application/argumentparser.h @@ -753,6 +753,9 @@ inline bool Argument::isMainArgument() const /*! * \brief Returns the items to be considered when generating completion for the values. + * + * By default, files and directories are considered, unless pre-defined values have been + * specified using setPreDefinedCompletionValues(). */ inline ValueCompletionBehavior Argument::valueCompletionBehaviour() const { @@ -761,6 +764,9 @@ inline ValueCompletionBehavior Argument::valueCompletionBehaviour() const /*! * \brief Sets the items to be considered when generating completion for the values. + * + * By default, files and directories are considered, unless pre-defined values have been + * specified using setPreDefinedCompletionValues(). */ inline void Argument::setValueCompletionBehavior(ValueCompletionBehavior completionValues) {