diff mde/gui/widget/AChildWidget.d @ 170:e45226d3deae

Context menu services not applicable to the current type can now be hidden. Added files missing from previous commits.
author Diggory Hardy <diggory.hardy@gmail.com>
date Mon, 29 Jun 2009 21:20:16 +0200
parents bc1cf73dc835
children 0dd49f333189
line wrap: on
line diff
--- a/mde/gui/widget/AChildWidget.d	Mon Jun 29 18:55:50 2009 +0200
+++ b/mde/gui/widget/AChildWidget.d	Mon Jun 29 21:20:16 2009 +0200
@@ -22,7 +22,7 @@
 module mde.gui.widget.AChildWidget;
 
 public import mde.gui.widget.Ifaces;
-import mde.content.Content;
+import mde.content.IContent;
 import mde.gui.exception;
 
 debug {
@@ -206,7 +206,7 @@
     /** Hook this function to a Content callback to cause redraws.
      *
      * mgr.requestRedraw could be hooked in directly if the prototype changed. */
-    void contentRedraw (Content) {
+    void contentRedraw (IContent) {
         mgr.requestRedraw;
     }