Update README.md (fixed type issue #11)

This commit is contained in:
Rick Blommers 2015-11-15 21:16:29 +01:00
parent 587c833b84
commit 9b3209925d

View File

@ -175,7 +175,7 @@ A workaround for this problem is converting it to a Pixmap icon like this:
```c++
QAction* menuAction = new QAction("test");
menuAction->setIcon( awesome->icon(fa::beer).pixmap(32,32)) );
menuAction->setIcon( awesome->icon(fa::beer).pixmap(32,32) );
```