diff examples/controlexample/CustomControlExample.d @ 161:eb84f9418bbf

Change module names to this not have examples in the FQN.
author Frank Benoit <benoit@tionex.de>
date Mon, 01 Sep 2008 22:24:27 +0200
parents 4a04b6759f98
children
line wrap: on
line diff
--- a/examples/controlexample/CustomControlExample.d	Fri Aug 22 20:58:23 2008 +0200
+++ b/examples/controlexample/CustomControlExample.d	Mon Sep 01 22:24:27 2008 +0200
@@ -10,7 +10,7 @@
  * Port to the D programming language:
  *     Frank Benoit <benoit@tionex.de>
  *******************************************************************************/
-module examples.controlexample.CustomControlExample;
+module controlexample.CustomControlExample;
 
 import dwt.layout.FillLayout;
 import dwt.widgets.Composite;
@@ -19,13 +19,15 @@
 
 import tango.io.Stdout;
 
-import examples.controlexample.ControlExample;
-import examples.controlexample.CComboTab;
-import examples.controlexample.CLabelTab;
-import examples.controlexample.CTabFolderTab;
-import examples.controlexample.SashFormTab;
-import examples.controlexample.StyledTextTab;
-import examples.controlexample.Tab;
+import controlexample.ControlExample;
+import controlexample.CComboTab;
+import controlexample.CLabelTab;
+import controlexample.CTabFolderTab;
+import controlexample.SashFormTab;
+import controlexample.StyledTextTab;
+import controlexample.Tab;
+
+version(JIVE) import jive.stacktrace;
 
 public class CustomControlExampleFactory : IControlExampleFactory {
     CustomControlExample create(Shell shell, char[] title) {
@@ -60,11 +62,11 @@
      */
     Tab[] createTabs() {
         return [ cast(Tab)
-            new CComboTab (this),
-            new CLabelTab (this),
-            new CTabFolderTab (this),
-            new SashFormTab (this),
-            new StyledTextTab (this)
+            //new CComboTab (this),
+            //new CLabelTab (this),
+            new CTabFolderTab (this)
+            //new SashFormTab (this),
+            //new StyledTextTab (this)
         ];
     }
 }