mirror of https://github.com/adamdruppe/arsd.git
const spam
This commit is contained in:
parent
665c7037fe
commit
4a2fffe5e6
|
@ -1908,11 +1908,11 @@ class SimpleWindow : CapableOfHandlingNativeEvent, CapableOfBeingDrawnUpon {
|
|||
|
||||
/// Width of the window's drawable client area, in pixels.
|
||||
@scriptable
|
||||
final @property int width() { return _width; }
|
||||
final @property int width() const pure nothrow @safe @nogc { return _width; }
|
||||
|
||||
/// Height of the window's drawable client area, in pixels.
|
||||
@scriptable
|
||||
final @property int height() { return _height; }
|
||||
final @property int height() const pure nothrow @safe @nogc { return _height; }
|
||||
|
||||
private int _width;
|
||||
private int _height;
|
||||
|
|
Loading…
Reference in New Issue