QX11EmbedContainer をアプリに入れようとしていて、その中でターミナルを起動する必要があります (konsolepart では実質的に何もできないため)。
QX11EmbedContainer* container = new QX11EmbedContainer(this); // with or without "this" I got the same result
container->show();
QProcess process(container);
QString executable("xterm -into ");
QStringList arguments;
arguments << QString::number(container->winId());
process.start(executable, arguments);
コンパイルはうまくいきますが、次のメッセージが表示されました。
QProcess: Destroyed while process is still running.
コンテナを見ることができません、提案?????? ありがとう