Skip to content

Commit

Permalink
Fix for Issue #8
Browse files Browse the repository at this point in the history
  • Loading branch information
fpoussin committed Jul 8, 2016
1 parent 9a47ad9 commit c87905f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doxygenplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -331,8 +331,8 @@ void DoxygenPlugin::processExited(int returnCode, QProcess::ExitStatus exitStatu
{
DoxygenResponse response;
response.error = true;
response.stdErr = m_process->readAllStandardError();
response.stdOut = m_process->readAllStandardOutput();
response.stdErr = QLatin1String(m_process->readAllStandardError());
response.stdOut = QLatin1String(m_process->readAllStandardOutput());
switch (exitStatus)
{
case QProcess::NormalExit:
Expand All @@ -350,7 +350,7 @@ void DoxygenPlugin::processExited(int returnCode, QProcess::ExitStatus exitStatu

void DoxygenPlugin::readProcessOutput()
{
externalString(m_process->readAll());
externalString(QLatin1String(m_process->readAll()));
}

DoxygenSettingsStruct DoxygenPlugin::settings() const
Expand Down

0 comments on commit c87905f

Please sign in to comment.