Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tools/projmgr/src/ProjMgrRpcServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class RpcHandler : public RpcMethods {
RpcArgs::UsedItems GetUsedItems(const string& context);
RpcArgs::PacksInfo GetPacksInfo(const string& context);
RpcArgs::CtRoot GetComponentsTree(const string& context, const bool& all);
bool SelectComponent(const string& context, const string& aggregateId, int count);
bool SelectComponent(const string& context, const string& aggregateId, const int& count);
bool SelectVariant(const string& context, const string& aggregateId, const string& variantName);
bool SelectVersion(const string& context, const string& aggregateId, const string& version);
bool SelectBundle(const string& context, const string& className, const string& bundleName);
Expand Down Expand Up @@ -307,7 +307,7 @@ RpcArgs::CtRoot RpcHandler::GetComponentsTree(const string& context, const bool&
return ctRoot;
}

bool RpcHandler::SelectComponent(const string& context, const string& id, int count) {
bool RpcHandler::SelectComponent(const string& context, const string& id, const int& count) {
// first try full component ID
RteComponent* rteComponent = GetContext(context).rteActiveTarget->GetComponent(id);
if(rteComponent) {
Expand Down
Loading