From d7fb268aba8321399abe0d56a05c9c9268ae5fda Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Sun, 4 May 2008 01:23:22 +0000 Subject: [PATCH] removed dependency on string-constants svn: r9637 original commit: d8ee46457d8baf4e4f09b589d47959259f2e6ed4 --- collects/mrlib/switchable-button.ss | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/collects/mrlib/switchable-button.ss b/collects/mrlib/switchable-button.ss index e7fdd06a..bc78a9b1 100644 --- a/collects/mrlib/switchable-button.ss +++ b/collects/mrlib/switchable-button.ss @@ -2,7 +2,6 @@ (require scheme/gui/base scheme/class) -(require string-constants/string-constant) (provide switchable-button%) (define gap 2) (define margin 2) @@ -174,7 +173,7 @@ (define f (new frame% [label ""])) (define p (new horizontal-panel% [parent f] [alignment '(right top)])) - (define label (string-constant execute-button-label)) + (define label "Execute") (define bitmap (make-object bitmap% (build-path (collection-path "icons") "run.png") 'png/mask)) (define b1 (new switchable-button% [parent p] [label label] [bitmap bitmap] [callback void]))