diff dwt/graphics/Device.d @ 81:e10cbfc977d2

switch default cases
author Frank Benoit <benoit@tionex.de>
date Wed, 06 Feb 2008 15:12:11 +0100
parents 41dbc4d9faab
children 00a333240696
line wrap: on
line diff
--- a/dwt/graphics/Device.d	Wed Feb 06 12:09:44 2008 +0100
+++ b/dwt/graphics/Device.d	Wed Feb 06 15:12:11 2008 +0100
@@ -612,6 +612,7 @@
         case DWT.COLOR_DARK_CYAN:           pixel = 0x00808000;  break;
         case DWT.COLOR_GRAY:                pixel = 0x00C0C0C0;  break;
         case DWT.COLOR_DARK_GRAY:           pixel = 0x00808080;  break;
+        default:
     }
     return Color.win32_new (this, pixel);
 }