Files
qt-creator/src/plugins/bazaar/branchinfo.cpp
hjk ded6500922 Bazaar: Convert to Tr::tr
Change-Id: If49e9ccf9426f049bff842b1facbd408d1d54d4e
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
2022-09-26 06:00:44 +00:00

13 lines
343 B
C++

// Copyright (C) 2016 Hugues Delorme
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#include "branchinfo.h"
namespace Bazaar::Internal {
BranchInfo::BranchInfo(const QString &branchLoc, bool isBound) : branchLocation(branchLoc),
isBoundToBranch(isBound)
{ }
} // Bazaar::Internal