summaryrefslogtreecommitdiff
path: root/dmagick/Geometry.d
diff options
context:
space:
mode:
Diffstat (limited to 'dmagick/Geometry.d')
-rw-r--r--dmagick/Geometry.d4
1 files changed, 2 insertions, 2 deletions
diff --git a/dmagick/Geometry.d b/dmagick/Geometry.d
index c093f91..2ccab99 100644
--- a/dmagick/Geometry.d
+++ b/dmagick/Geometry.d
@@ -7,7 +7,7 @@
module dmagick.Geometry;
import std.conv;
-import std.ctype;
+import std.ascii;
import std.string;
import core.sys.posix.sys.types;
@@ -39,7 +39,7 @@ struct Geometry
MagickStatusType flags;
//If the string starts with a letter assume it's a Page Geometry.
- if ( isalpha(geometry[0]) )
+ if ( isAlpha(geometry[0]) )
{
char* geo = GetPageGeometry(toStringz(geometry));