mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:35:47 +00:00
[MSPAINT] Add const to ToolsModel methods (#4190)
Add const keywords to some methods of ToolsModel class. CORE-17931
This commit is contained in:
parent
b5536e448a
commit
102898191d
2 changed files with 14 additions and 14 deletions
|
@ -28,19 +28,19 @@ private:
|
|||
|
||||
public:
|
||||
ToolsModel();
|
||||
int GetLineWidth();
|
||||
int GetLineWidth() const;
|
||||
void SetLineWidth(int nLineWidth);
|
||||
int GetShapeStyle();
|
||||
int GetShapeStyle() const;
|
||||
void SetShapeStyle(int nShapeStyle);
|
||||
int GetBrushStyle();
|
||||
int GetBrushStyle() const;
|
||||
void SetBrushStyle(int nBrushStyle);
|
||||
int GetActiveTool();
|
||||
int GetActiveTool() const;
|
||||
void SetActiveTool(int nActiveTool);
|
||||
int GetAirBrushWidth();
|
||||
int GetAirBrushWidth() const;
|
||||
void SetAirBrushWidth(int nAirBrushWidth);
|
||||
int GetRubberRadius();
|
||||
int GetRubberRadius() const;
|
||||
void SetRubberRadius(int nRubberRadius);
|
||||
BOOL IsBackgroundTransparent();
|
||||
BOOL IsBackgroundTransparent() const;
|
||||
void SetBackgroundTransparent(BOOL bTransparent);
|
||||
int GetZoom() const;
|
||||
void SetZoom(int nZoom);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue