diff options
| -rw-r--r-- | dmagick/internal/Windows.d | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dmagick/internal/Windows.d b/dmagick/internal/Windows.d index 13bf3c5..53d46cd 100644 --- a/dmagick/internal/Windows.d +++ b/dmagick/internal/Windows.d @@ -17,8 +17,8 @@ class Window Image image; Image[] imageList; size_t index; - size_t height; - size_t width; + int height; + int width; WNDCLASS wndclass; HINSTANCE hInstance; @@ -35,8 +35,8 @@ class Window { this.image = image; - height = image.rows; - width = image.columns; + height = cast(int)image.rows; + width = cast(int)image.columns; hInstance = cast(HINSTANCE) GetModuleHandleA(null); |
