| Summary: | KSnake: address of temporary | ||
|---|---|---|---|
| Product: | [Unmaintained] ksnake | Reporter: | Marcin Garski <mgarski> |
| Component: | general | Assignee: | Andrew Chant <andrew.chant> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Marcin Garski
2004-10-19 18:34:34 UTC
CVS commit by aacid:
One warning less
BUG: 91699
M +2 -1 rattler.cpp 1.47
--- kdegames/ksnake/rattler.cpp #1.46:1.47
@@ -158,5 +158,6 @@ void Rattler::timerEvent( QTimerEvent *
levelUp();
- bitBlt(this, 0, 0, &pix->levelPix(), 0, 0, rect().width(), rect().height());
+ QPixmap levelPix = pix->levelPix();
+ bitBlt(this, 0, 0, &levelPix, 0, 0, rect().width(), rect().height());
}
|