Skip to content

Commit c7d2a55

Browse files
author
cage
committed
- added package qualificator to croatoan's classes symbols.
1 parent d9a8d03 commit c7d2a55

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/windows.lisp

+5-5
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ list of strings (the text lines)."
526526
(max-message-height (- (win-height-no-border parent)
527527
4))
528528
(message (join-with-strings lines (format nil "~%")))
529-
(dialog-window (make-instance 'dialog-window
529+
(dialog-window (make-instance 'c:dialog-window
530530
:stacked nil
531531
:center t
532532
:message-text message
@@ -602,22 +602,22 @@ insetred by the user"
602602
(/ window-height 2)))
603603
(truncate (- (/ (win-width parent) 2)
604604
(/ window-width 2)))))
605-
(button-cancel (make-instance 'button
605+
(button-cancel (make-instance 'c:button
606606
:name :b-cancel
607607
:title (_ "Cancel")
608608
:position (list (truncate (1+ (* window-height
609609
3/4)))
610610
2)))
611-
(button-accept (make-instance 'button
611+
(button-accept (make-instance 'c:button
612612
:name :b-accept
613613
:title (_ "OK")
614614
:position (list (truncate (* window-height 3/4))
615615
2)))
616-
(field (make-instance 'field
616+
(field (make-instance 'c:field
617617
:position (list (truncate (* window-height 1/2))
618618
2)
619619
:width field-width))
620-
(low-level-window (make-instance 'form-window
620+
(low-level-window (make-instance 'c:form-window
621621
:stacked nil
622622
:input-blocking t
623623
:width window-width

0 commit comments

Comments
 (0)