mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:47:35 +00:00
PixelPaint: Convert to east-const style
This commit is contained in:
parent
242742b6c2
commit
29e80178a8
23 changed files with 72 additions and 72 deletions
|
@ -14,11 +14,11 @@ class CreateNewLayerDialog final : public GUI::Dialog {
|
|||
C_OBJECT(CreateNewLayerDialog);
|
||||
|
||||
public:
|
||||
const Gfx::IntSize& layer_size() const { return m_layer_size; }
|
||||
const String& layer_name() const { return m_layer_name; }
|
||||
Gfx::IntSize const& layer_size() const { return m_layer_size; }
|
||||
String const& layer_name() const { return m_layer_name; }
|
||||
|
||||
private:
|
||||
CreateNewLayerDialog(const Gfx::IntSize& suggested_size, GUI::Window* parent_window);
|
||||
CreateNewLayerDialog(Gfx::IntSize const& suggested_size, GUI::Window* parent_window);
|
||||
|
||||
Gfx::IntSize m_layer_size;
|
||||
String m_layer_name;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue