Skip to content

Commit

Permalink
Update accessType variable name. Refs #9223.
Browse files Browse the repository at this point in the history
  • Loading branch information
jawrainey committed Apr 2, 2014
1 parent 7b210cc commit d288de0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Code/Mantid/Framework/ICat/src/ICat4/ICat4Catalog.cpp
Expand Up @@ -801,9 +801,9 @@ namespace Mantid
std::string sessionID = m_session->getSessionId();
request.sessionId = &sessionID;

ns1__accessType_ a;
a.__item = ns1__accessType__UPDATE;
request.accessType = &a.__item;
ns1__accessType_ acessType;
acessType.__item = ns1__accessType__READ;
request.accessType = &acessType.__item;

// Remove each investigation returned from `myData`
// were the user does not have create/write access.
Expand Down

0 comments on commit d288de0

Please sign in to comment.