From 9b3209925d63715975602d7fbb6172971ed3cb5a Mon Sep 17 00:00:00 2001 From: Rick Blommers Date: Sun, 15 Nov 2015 21:16:29 +0100 Subject: [PATCH] Update README.md (fixed type issue #11) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c2f2d99..319a5b1 100644 --- a/README.md +++ b/README.md @@ -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) ); ```