From c5735c0b720f02c656efd3cbb0aed83014d6f1ac Mon Sep 17 00:00:00 2001 From: sfairy <11861050+sfairy@user.noreply.gitee.com> Date: Sun, 25 Aug 2024 01:06:23 +0000 Subject: [PATCH] update Source/IO/xIO.cpp. Signed-off-by: sfairy <11861050+sfairy@user.noreply.gitee.com> --- Source/IO/xIO.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/IO/xIO.cpp b/Source/IO/xIO.cpp index c4c69504..d3e56b7a 100644 --- a/Source/IO/xIO.cpp +++ b/Source/IO/xIO.cpp @@ -1,4 +1,4 @@ -/*************************************************************************************************** +/*************************************************************************************************** * Copyright 2024 x-tools-author(x-tools@outlook.com). All rights reserved. * * The file is encoded using "utf8 with bom", it is a part of eTools project. @@ -744,7 +744,7 @@ QList xIO::supportedTransferTypes() QString xIO::transferTypeName(int type) { if (type == static_cast(TransferType::Disabled)) { - return tr("Diabled"); + return tr("Disabled"); } else if (type == static_cast(TransferType::Bidirectional)) { return tr("Bidirectional"); } else if (type == static_cast(TransferType::Unidirectional)) { -- Gitee