diff mde/gui/renderer/IRenderer.d @ 111:1655693702fc

Resolved ticket #4, allowing widgets to reload strings and recalculate sizes mid-run. Removed prefinalize and finalize and added setup as the new second initialization phase, which can be re-run.
author Diggory Hardy <diggory.hardy@gmail.com>
date Sat, 06 Dec 2008 17:41:42 +0000
parents 2a1428ec5344
children d28aea50c6da
line wrap: on
line diff
--- a/mde/gui/renderer/IRenderer.d	Fri Dec 05 11:29:39 2008 +0000
+++ b/mde/gui/renderer/IRenderer.d	Sat Dec 06 17:41:42 2008 +0000
@@ -170,6 +170,6 @@
     /** Get a TextAdapter to draw some text.
      *
      * If no colour is passes, a default is used (white). */
-    TextAdapter getAdapter (char[] text, int colour = 0xFFFFFF);
+    TextAdapter getAdapter (int colour = 0xFFFFFF);
     //END Methods
 }