From b4f798d002bebc62a308dcc73bddc695e37ce03d Mon Sep 17 00:00:00 2001 From: Jarek Kobus Date: Wed, 19 Jun 2024 11:55:03 +0200 Subject: [PATCH] CodingStyle: Fix Utils::QtcProcess -> Utils::Process rename Change-Id: Iabcfcdea47bf6372904b5a0f89c568790df90023 Reviewed-by: Eike Ziller --- doc/qtcreatordev/src/coding-style.qdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/qtcreatordev/src/coding-style.qdoc b/doc/qtcreatordev/src/coding-style.qdoc index 49e99a8e8bc..33a2189aaf6 100644 --- a/doc/qtcreatordev/src/coding-style.qdoc +++ b/doc/qtcreatordev/src/coding-style.qdoc @@ -637,8 +637,8 @@ \li Use Utils::FilePath for any QString that semantically is a file or directory, see also \l{Passing File Names}. \li Prefer using Utils::FilePath over any use of QDir and QFileInfo. - \li Prefer using Utils::QtcProcess over QProcess. - \li If Utils::FilePath or Utils::QtcProcess functionality is not sufficient + \li Prefer using Utils::Process over QProcess. + \li If Utils::FilePath or Utils::Process functionality is not sufficient for your purpose, prefer enhancing them over falling back to QString or QProcess. \li Avoid platform #ifdefs unless they are absolutely needed for locally