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