summaryrefslogtreecommitdiffstats
path: root/win/tkWinDraw.c
diff options
context:
space:
mode:
Diffstat (limited to 'win/tkWinDraw.c')
-rw-r--r--win/tkWinDraw.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/win/tkWinDraw.c b/win/tkWinDraw.c
index e13a5e5..2c35d3b 100644
--- a/win/tkWinDraw.c
+++ b/win/tkWinDraw.c
@@ -644,7 +644,7 @@ XFillRectangles(
TkWinDCState state;
HBRUSH brush, oldBrush;
- if (d == None) {
+ if (!d) {
return BadDrawable;
}
@@ -654,7 +654,7 @@ XFillRectangles(
if ((gc->fill_style == FillStippled
|| gc->fill_style == FillOpaqueStippled)
- && gc->stipple != None) {
+ && gc->stipple) {
TkWinDrawable *twdPtr = (TkWinDrawable *)gc->stipple;
HBRUSH stipple;
HBITMAP oldBitmap, bitmap;
@@ -818,7 +818,7 @@ RenderObject(
if ((gc->fill_style == FillStippled
|| gc->fill_style == FillOpaqueStippled)
- && gc->stipple != None) {
+ && gc->stipple) {
TkWinDrawable *twdPtr = (TkWinDrawable *)gc->stipple;
HDC dcMem;
@@ -942,7 +942,7 @@ XDrawLines(
TkWinDCState state;
HDC dc;
- if (d == None) {
+ if (!d) {
return BadDrawable;
}
@@ -987,7 +987,7 @@ XFillPolygon(
TkWinDCState state;
HDC dc;
- if (d == None) {
+ if (!d) {
return BadDrawable;
}
@@ -1029,7 +1029,7 @@ XDrawRectangle(
HBRUSH oldBrush;
HDC dc;
- if (d == None) {
+ if (!d) {
return BadDrawable;
}
@@ -1214,7 +1214,7 @@ DrawOrFillArc(
int xstart, ystart, xend, yend;
double radian_start, radian_end, xr, yr;
- if (d == None) {
+ if (!d) {
return BadDrawable;
}