Replace uses of unstable/gui/notify with framework/notify.
This commit is contained in:
parent
bf0c4812cd
commit
1a3dec8641
|
@ -1,7 +1,7 @@
|
|||
#lang racket/base
|
||||
(require racket/class
|
||||
racket/class/iop
|
||||
unstable/gui/notify
|
||||
framework/notify
|
||||
rackunit/private/base
|
||||
"interfaces.rkt"
|
||||
"model.rkt")
|
||||
|
@ -13,10 +13,10 @@
|
|||
|
||||
;; model-shown : (notify-box (U model<%> #f))
|
||||
;; The model currently displayed in the Details view, of #f is none.
|
||||
(define-notify selected-model (new notify-box% (value #f)))
|
||||
(notify:define-notify selected-model (new notify:notify-box% (value #f)))
|
||||
|
||||
;; locked? : (notify-box boolean)
|
||||
(define-notify locked? (new notify-box% (value #f)))
|
||||
(notify:define-notify locked? (new notify:notify-box% (value #f)))
|
||||
|
||||
;; view : #f or view<%>
|
||||
(define view #f)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#lang racket/base
|
||||
(require racket/class
|
||||
racket/class/iop
|
||||
unstable/gui/notify
|
||||
framework/notify
|
||||
racket/gui/base
|
||||
framework
|
||||
mrlib/hierlist
|
||||
|
@ -327,9 +327,9 @@ still be there, just not visible?
|
|||
(new menu%
|
||||
(label "RackUnit")
|
||||
(parent (get-menu-bar)))])
|
||||
(menu-option/notify-box rackunit-menu
|
||||
"Lock"
|
||||
(get-field locked? controller)))
|
||||
(notify:menu-option/notify-box rackunit-menu
|
||||
"Lock"
|
||||
(get-field locked? controller)))
|
||||
|
||||
(define view
|
||||
(new view%
|
||||
|
|
Loading…
Reference in New Issue
Block a user