Skip to content

Commit

Permalink
Re #6953. Fixing stupid unused variable bug in HelpWindow.
Browse files Browse the repository at this point in the history
  • Loading branch information
peterfpeterson committed Apr 30, 2013
1 parent aa0fb7a commit e871396
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 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 @@ -56,8 +56,8 @@ void HelpWindowImpl::showURL(const string &url)
this->start(url);
m_process->waitForStarted(); // REMOVE

m_log.debug() << "open help url \"" << url << "\"\n";
string temp("setSource " + url + "\n");
m_log.debug() << "open help url \"" << urlToShow << "\"\n";
string temp("setSource " + urlToShow + "\n");
QByteArray ba;
ba.append(QLatin1String(temp.c_str()));
m_process->write(ba);
Expand Down
3 changes: 2 additions & 1 deletion Code/Mantid/docs/qtassistant/src/mantidplot.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@

<h2>Useful links</h2>
<ul>
<li><a href="http://www.mantidproject.org/">http://www.mantidproject.org</a> (wiki)</li>
<li><a href="http://www.mantidproject.org/">http://www.mantidproject.org/</a> (wiki homepage)</li>
<li><a href="http://www.mantidproject.org/MantidPlot">http://www.mantidproject.org/MantidPlot</a> (wiki help main page)</li>
</ul>
</body>
</html>

0 comments on commit e871396

Please sign in to comment.