~ubuntu-branches/ubuntu/quantal/cantor/quantal

« back to all changes in this revision

Viewing changes to src/backends/sage/sagesession.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-15 14:17:54 UTC
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: package-import@ubuntu.com-20111215141754-mpepwpmr42120lpf
Tags: upstream-4.7.90
ImportĀ upstreamĀ versionĀ 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
232
232
            command=("help("+command.mid(1)+')');
233
233
 
234
234
        kDebug()<<"writing "<<command<<" to the process";
235
 
        m_process->pty()->write((command+'\n').toUtf8());
 
235
        m_process->pty()->write(QString(command+'\n').toUtf8());
236
236
    }
237
237
}
238
238