| Summary: | Problem with updates in the data manager | ||
|---|---|---|---|
| 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: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Andrew Walker
2007-01-23 02:11:20 UTC
SVN commit 626380 by staikos:
update the search line when the dialog updates
BUG: 140472
M +4 -1 kstdatamanager_i.cpp
--- trunk/extragear/graphics/kst/src/libkstapp/kstdatamanager_i.cpp #626379:626380
@@ -705,7 +705,8 @@
}
-void KstDataAction::addedTo(QWidget *actionWidget, QWidget */*container*/) {
+void KstDataAction::addedTo(QWidget *actionWidget, QWidget *container) {
+ Q_UNUSED(container)
if ( ::qt_cast<QToolButton*>(actionWidget) ) {
if (!windowsStyle)
windowsStyle = QStyleFactory::create("windows");
@@ -816,6 +817,8 @@
KstObjectItem *oi = static_cast<KstObjectItem*>(i);
oi->update();
}
+
+ _searchWidget->searchLine()->updateSearch();
}
|