| Summary: | Tie Box 'current plot' indicator don't get cleared | ||
|---|---|---|---|
| Product: | [Applications] kst | Reporter: | Netterfield <netterfield> |
| 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
Netterfield
2005-12-06 03:26:58 UTC
SVN commit 485929 by staikos:
A relic of the KstPainter conversion
BUG: 117771
M +1 -1 kst2dplot.cpp
M +1 -1 kst2dplot.h
--- trunk/extragear/graphics/kst/kst/kst2dplot.cpp #485928:485929
@@ -3348,7 +3348,7 @@
}
-void Kst2DPlot::removeFocus(QPainter& p) {
+void Kst2DPlot::removeFocus(KstPainter& p) {
_mouse.tracker = _mouse.lastLocation = QPoint(-1, -1);
p.setClipRegion(_lastClipRegion);
setHasFocus(false);
--- trunk/extragear/graphics/kst/kst/kst2dplot.h #485928:485929
@@ -211,7 +211,7 @@
virtual void keyReleaseEvent(QWidget *view, QKeyEvent *e);
virtual void wheelEvent(QWidget *view, QWheelEvent *e);
virtual void setHasFocus(bool hasFocus);
- virtual void removeFocus(QPainter& p);
+ virtual void removeFocus(KstPainter& p);
void cancelZoom(QWidget *view);
void zoomSelfYLocalMax(bool unused);
|