Changeset 120:d7264281cb4a
- Timestamp:
- 02/10/08 22:33:36
(1 year ago)
- Author:
- Frank Benoit <benoit@tionex.de>
- branch:
- default
- Message:
fix: compile error due to missing scope with static if
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r117 |
r120 |
|
| 210 | 210 | OS.InvalidateRect (handle, &sourceRect, true); |
|---|
| 211 | 211 | } else { |
|---|
| | 212 | { // scope for flags |
|---|
| 212 | 213 | int flags = OS.RDW_ERASE | OS.RDW_FRAME | OS.RDW_INVALIDATE; |
|---|
| 213 | 214 | if (all) flags |= OS.RDW_ALLCHILDREN; |
|---|
| 214 | 215 | OS.RedrawWindow (handle, &sourceRect, null, flags); |
|---|
| | 216 | } |
|---|
| 215 | 217 | } |
|---|
| 216 | 218 | OS.OffsetRect (&sourceRect, deltaX, deltaY); |
|---|