summaryrefslogtreecommitdiff
path: root/core/fxge/win32/win32_int.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/fxge/win32/win32_int.h')
-rw-r--r--core/fxge/win32/win32_int.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/fxge/win32/win32_int.h b/core/fxge/win32/win32_int.h
index d4f2597033..8bc8290845 100644
--- a/core/fxge/win32/win32_int.h
+++ b/core/fxge/win32/win32_int.h
@@ -323,7 +323,7 @@ class CPSPrinterDriver : public IFX_RenderDeviceDriver {
uint32_t color) override;
HDC m_hDC;
- bool m_bCmykOutput;
+ const bool m_bCmykOutput;
int m_Width;
int m_Height;
int m_nBitsPerPixel;
@@ -386,11 +386,11 @@ class CTextOnlyPrinterDriver : public IFX_RenderDeviceDriver {
uint32_t color) override;
HDC m_hDC;
- int m_Width;
- int m_Height;
+ const int m_Width;
+ const int m_Height;
int m_nBitsPerPixel;
- int m_HorzSize;
- int m_VertSize;
+ const int m_HorzSize;
+ const int m_VertSize;
float m_OriginY;
bool m_SetOrigin;
};