GH-1559 Fix FTB icons
This was caused by separation of GUI and logic. Now logic has an interface that GUI implements. It should be expanded upon later.
This commit is contained in:
parent
c50b3cdeec
commit
e1a530f84d
10 changed files with 86 additions and 52 deletions
|
@ -43,6 +43,16 @@ std::shared_ptr< QNetworkAccessManager > Env::qnam()
|
|||
return m_qnam;
|
||||
}
|
||||
|
||||
std::shared_ptr<IIconList> Env::icons()
|
||||
{
|
||||
return m_iconlist;
|
||||
}
|
||||
|
||||
void Env::registerIconList(std::shared_ptr<IIconList> iconlist)
|
||||
{
|
||||
m_iconlist = iconlist;
|
||||
}
|
||||
|
||||
/*
|
||||
class NullVersion : public BaseVersion
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue