1
0
mirror of https://codeberg.org/cage/tinmop/ synced 2025-02-17 08:10:36 +01:00

- fixed slot types declaration to allow compilation with newer SBCL.

This commit is contained in:
cage 2020-12-07 15:17:18 +01:00
parent e412b5905a
commit 51d414d053
2 changed files with 5 additions and 5 deletions

View File

@ -486,7 +486,7 @@ database."
:initform nil :initform nil
:initarg :id :initarg :id
:accessor id :accessor id
:type string :type (or null string)
:documentation "The conversation ID") :documentation "The conversation ID")
(status-tree (status-tree
:initform nil :initform nil
@ -498,13 +498,13 @@ database."
:initform nil :initform nil
:initarg :last-status :initarg :last-status
:accessor last-status :accessor last-status
:type tooter:status :type (or null tooter:status)
:documentation "The lastest status that forms this conversation") :documentation "The lastest status that forms this conversation")
(root (root
:initform nil :initform nil
:initarg :root :initarg :root
:accessor root :accessor root
:type tooter:status :type (or null tooter:status)
:documentation "The first status that forms this conversation")) :documentation "The first status that forms this conversation"))
(:documentation "Represents a tree of message belonging to a conversation")) (:documentation "Represents a tree of message belonging to a conversation"))

View File

@ -19,9 +19,9 @@
(defclass follow-requests-window (focus-marked-window simple-line-navigation-window) (defclass follow-requests-window (focus-marked-window simple-line-navigation-window)
((requests ((requests
:initarg :requests :initarg :requests
:initform () :initform nil
:accessor requests :accessor requests
:type tooter:account :type (or null tooter:account)
:documentation "All the accounts that request to follow you") :documentation "All the accounts that request to follow you")
(header-message-lines (header-message-lines
:initarg :header-message-lines :initarg :header-message-lines