changeset 15:5c244d50e532

StyledTextTab doesn't crash anymore on windows.
author Frank Benoit <benoit@tionex.de>
date Sat, 23 Feb 2008 00:57:51 +0100
parents 36b4efb34027
children f9c0133912fc
files dwtexamples/controlexample/CustomControlExample.d
diffstat 1 files changed, 0 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/dwtexamples/controlexample/CustomControlExample.d	Thu Feb 21 18:08:51 2008 +0100
+++ b/dwtexamples/controlexample/CustomControlExample.d	Sat Feb 23 00:57:51 2008 +0100
@@ -54,15 +54,6 @@
      * Answers the set of example Tabs
      */
     Tab[] createTabs() {
-        version(Windows){
-        return [ cast(Tab)
-            new CComboTab (this),
-            new CLabelTab (this),
-            new CTabFolderTab (this),
-            new SashFormTab (this)/+,
-            new StyledTextTab (this)+/
-        ];
-        } else {
         return [ cast(Tab)
             new CComboTab (this),
             new CLabelTab (this),
@@ -70,7 +61,6 @@
             new SashFormTab (this),
             new StyledTextTab (this)
         ];
-        }
     }
 
     /**