From 1362743a2c9006d6b4a6b64d2d3610434d5791e4 Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Thu, 21 Oct 2021 18:57:35 +0200 Subject: [PATCH] channellist.h: fix type conversion Wconversion Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/11ae1615cf62d82dc9dbccb87407e88274aab0b9 Author: Thilo Graf Date: 2021-10-21 (Thu, 21 Oct 2021) --- src/gui/channellist.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/channellist.h b/src/gui/channellist.h index edb403b74..73a036fad 100644 --- a/src/gui/channellist.h +++ b/src/gui/channellist.h @@ -257,7 +257,7 @@ public: SORT_CH_NUMBER, SORT_MAX }; - unsigned Size() { return (*chanlist).size(); } + size_t Size() { return (*chanlist).size(); } ZapitChannelList &getChannels() { return channels; }; bool checkLockStatus(neutrino_msg_data_t data, bool pip = false); CComponentsHeader* getHeaderObject();