Skip to content

Commit

Permalink
Refs #1579. Make comments commensurate with new config location.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Reuter committed May 17, 2013
1 parent d9145ef commit b987e72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/MantidQt/API/src/HelpWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -379,11 +379,11 @@ void HelpWindowImpl::determineFileLocs()
Poco::Path path (dataLoc.toStdString(), m_cacheFile);
m_cacheFile = path.absolute().toString();
}
else if (dataLoc.endsWith("MantidPlot")) // understood to end in "ISIS/MantidPlot"
else if (dataLoc.endsWith("MantidPlot")) // understood to end in "Mantid/MantidPlot"
{
Poco::Path path(dataLoc.toStdString());
path = path.parent(); // drop off "MantidPlot"
path = path.parent(); // drop off "ISIS"
path = path.parent(); // drop off "Mantid"
path = Poco::Path(path, "mantidproject");
path = Poco::Path(path, m_cacheFile);
m_cacheFile = path.absolute().toString();
Expand Down

0 comments on commit b987e72

Please sign in to comment.