Skip to content

Commit

Permalink
Fix doxygen warnings. Refs #9026.
Browse files Browse the repository at this point in the history
  • Loading branch information
jawrainey committed Feb 25, 2014
1 parent f74cf6f commit 119503d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Code/Mantid/Framework/ICat/src/ICat3/ICat3Catalog.cpp
Expand Up @@ -85,19 +85,19 @@ namespace Mantid
* @param fileID :: The id of the file to search for.
* @return The location of the datafile stored on the archives.
*/
const std::string ICat3Catalog::getFileLocation(const long long &fileid)
const std::string ICat3Catalog::getFileLocation(const long long &fileID)
{
return m_helper->getlocationString(fileid);
return m_helper->getlocationString(fileID);
}

/**
* Downloads a file from the given url if not downloaded from archive.
* @param fileID :: The id of the file to search for.
* @return A URL to download the datafile from.
*/
const std::string ICat3Catalog::getDownloadURL(const long long &fileid)
const std::string ICat3Catalog::getDownloadURL(const long long &fileID)
{
return m_helper->getdownloadURL(fileid);
return m_helper->getdownloadURL(fileID);
}

/**
Expand Down

0 comments on commit 119503d

Please sign in to comment.