ProjectExplorer: Rename ToolChain to Toolchain

Change-Id: Ibb520f14ff3e2a6147ca5d419b9351c50c141063
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
hjk
2023-11-24 15:53:31 +01:00
parent 2d4867e73f
commit c28fb1fdbe
78 changed files with 533 additions and 533 deletions

View File

@@ -15,7 +15,7 @@ QT_END_NAMESPACE
namespace ProjectExplorer {
class ToolChain;
class Toolchain;
// --------------------------------------------------------------------------
// ToolChainConfigWidget
@@ -26,9 +26,9 @@ class PROJECTEXPLORER_EXPORT ToolchainConfigWidget : public QScrollArea
Q_OBJECT
public:
explicit ToolchainConfigWidget(ToolChain *tc);
explicit ToolchainConfigWidget(Toolchain *tc);
ToolChain *toolChain() const;
Toolchain *toolChain() const;
void apply();
void discard();
@@ -53,7 +53,7 @@ protected:
QLineEdit *m_nameLineEdit;
private:
ToolChain *m_toolChain;
Toolchain *m_toolChain;
QLabel *m_errorLabel = nullptr;
};