[SOLVED] Error while trying to add Icon to QPushButton
-
wrote on 9 Sept 2015, 11:11 last edited by Aram 9 Sept 2015, 11:40
Hi there,
I have the following simple codemicon=new QIcon(QIcon::fromTheme("arrow-down")); button->setIcon(micon);
Where
QPushButton *button; QIcon *micon;
are described in the header file.
And when I'm trying to compile the compiler gives me an error messageERROR: no matching function for call to 'QPushButton::setIcon(QIcon*&)
But it is ok for the compiler to write
button->setIcon(QIcon::fromTheme("arrow-down"));
and don't use "micon" variable.
I am totally new to Qt so if someone can explain this to me I'll be really grateful.
Thanks :) -
Hi there,
I have the following simple codemicon=new QIcon(QIcon::fromTheme("arrow-down")); button->setIcon(micon);
Where
QPushButton *button; QIcon *micon;
are described in the header file.
And when I'm trying to compile the compiler gives me an error messageERROR: no matching function for call to 'QPushButton::setIcon(QIcon*&)
But it is ok for the compiler to write
button->setIcon(QIcon::fromTheme("arrow-down"));
and don't use "micon" variable.
I am totally new to Qt so if someone can explain this to me I'll be really grateful.
Thanks :)wrote on 9 Sept 2015, 11:23 last edited bysorry for stupid thread... I didnt think much about before posting.. fixed already...
-
@Aram
Its completely ok.
Just mark it as SOLVED and all will be happy
1/3