| Summary: | Hide/Show JavaScript Console menu item not updated correctly | ||
|---|---|---|---|
| Product: | [Applications] kst | Reporter: | Andrew Walker <arwalker> |
| Component: | general | Assignee: | kst |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.x | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | Proposed patch | ||
|
Description
Andrew Walker
2007-03-19 20:58:19 UTC
Created attachment 20071 [details]
Proposed patch
No longer use an invalid signal
Fine with me. -- George Staikos KDE Developer http://www.kde.org/ Staikos Computing Services Inc. http://www.staikos.net/ SVN commit 645470 by arwalker:
BUG:143232 Do not use an invalid signal to notify of the closure of the JavaScript console
M +1 -1 js.cpp
--- trunk/extragear/graphics/kst/src/extensions/js/js.cpp #645469:645470
@@ -254,7 +254,7 @@
_splitter->moveToLast(p->widget());
app()->setCentralWidget(_splitter);
- connect(p, SIGNAL(processExited()), this, SLOT(shellExited()));
+ connect(p, SIGNAL(destroyed()), this, SLOT(shellExited()));
_konsolePart = p;
}
_splitter->show();
|