From c83a1cbd4df40fbe098b1e1e28bfd0616f170310 Mon Sep 17 00:00:00 2001 From: Vincent St-Amour Date: Tue, 18 Aug 2015 14:56:32 -0500 Subject: [PATCH] Export using framework naming conventions. --- gui-lib/framework/notify.rkt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/gui-lib/framework/notify.rkt b/gui-lib/framework/notify.rkt index 863ed367..c3b290f4 100644 --- a/gui-lib/framework/notify.rkt +++ b/gui-lib/framework/notify.rkt @@ -3,11 +3,12 @@ (require racket/class racket/gui/base "private/notify.rkt") -(provide (all-from-out "private/notify.rkt") - menu-option/notify-box - menu-group/notify-box - check-box/notify-box - choice/notify-box) +(provide (prefix-out notify: + (all-from-out "private/notify.rkt") + menu-option/notify-box + menu-group/notify-box + check-box/notify-box + choice/notify-box)) ;; GUI elements tied to notify-boxes ;; See private/notify.rkt for the non-gui parts of notify-boxes.