Easier code

svn path=/trunk/KDE/kdebase/apps/; revision=750473
This commit is contained in:
Rafael Fernández López 2007-12-19 11:19:04 +00:00
parent 38b45d4c52
commit 40744e5404

View file

@ -62,20 +62,7 @@ void TerminalSidebarPage::terminalExited()
{
emit hideTerminalSidebarPage();
KPluginFactory* factory = KPluginLoader("libkonsolepart").factory();
KParts::ReadOnlyPart* part = factory ? (factory->create<KParts::ReadOnlyPart>(this)) : 0;
if (part != 0) {
connect(part, SIGNAL(destroyed(QObject*)), this, SLOT(terminalExited()));
m_terminalWidget = part->widget();
m_layout->addWidget(m_terminalWidget);
m_terminal = qobject_cast<TerminalInterface *>(part);
m_terminal->showShellInDir(url().path());
}
if (m_terminal != 0) {
m_terminal->sendInput("cd " + KShell::quoteArg(url().path()) + '\n');
m_terminal->sendInput("clear\n");
m_terminalWidget->setFocus();
}
m_terminal = 0;
}
void TerminalSidebarPage::showEvent(QShowEvent* event)