| Index: core/fxge/include/fx_ge.h
|
| diff --git a/core/fxge/include/fx_ge.h b/core/fxge/include/fx_ge.h
|
| index 8f6b10debcb7f3b8bb6fe0c08d029ce595d4214e..6efd5177bc903fced7f56be956ab98e68b20907f 100644
|
| --- a/core/fxge/include/fx_ge.h
|
| +++ b/core/fxge/include/fx_ge.h
|
| @@ -216,7 +216,7 @@ class CFX_RenderDevice {
|
| FX_BOOL StartRendering();
|
| void EndRendering();
|
| void SaveState();
|
| - void RestoreState(FX_BOOL bKeepSaved = FALSE);
|
| + void RestoreState(bool bKeepSaved);
|
|
|
| int GetWidth() const { return m_Width; }
|
| int GetHeight() const { return m_Height; }
|
| @@ -431,7 +431,7 @@ class IFX_RenderDeviceDriver {
|
|
|
| virtual void SaveState() = 0;
|
|
|
| - virtual void RestoreState(FX_BOOL bKeepSaved = FALSE) = 0;
|
| + virtual void RestoreState(bool bKeepSaved) = 0;
|
|
|
| virtual FX_BOOL SetClip_PathFill(const CFX_PathData* pPathData,
|
| const CFX_Matrix* pObject2Device,
|
| @@ -575,7 +575,7 @@ class CFX_PSRenderer {
|
| FX_BOOL StartRendering();
|
| void EndRendering();
|
| void SaveState();
|
| - void RestoreState(FX_BOOL bKeepSaved = FALSE);
|
| + void RestoreState(bool bKeepSaved);
|
| void SetClip_PathFill(const CFX_PathData* pPathData,
|
| const CFX_Matrix* pObject2Device,
|
| int fill_mode);
|
|
|