From 617609eee4ee00893dba0e610b96fa4e287d906f Mon Sep 17 00:00:00 2001 From: ShaopengLin Date: Thu, 29 Aug 2024 08:55:15 -0400 Subject: [PATCH] Make public KiwixChoiceBox typedef Public interfaces uses this typedef. --- src/kiwixchoicebox.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kiwixchoicebox.h b/src/kiwixchoicebox.h index 18cc8cb..5b3a7e2 100644 --- a/src/kiwixchoicebox.h +++ b/src/kiwixchoicebox.h @@ -24,9 +24,9 @@ class KiwixChoiceBox : public QWidget { Q_OBJECT +public: typedef QList> SelectionList; -public: explicit KiwixChoiceBox(QWidget *parent = nullptr); void setType(QString type); void setSelections(SelectionList selections, SelectionList defaultSelection);