Hello,
I created some QAction objects like this:

Qt Code:
  1. moveFractalUp = new QAction(QIcon(":/img/res/img/go-up.svg"), "Move up", this);
  2. connect(moveFractalUp, SIGNAL(triggered()), this, SLOT(MoveFractalUp()));
To copy to clipboard, switch view to plain text mode 

And I added this actions to my toolbar, like this:
Qt Code:
  1. navigationToolBar = addToolBar("Navigation");
  2. navigationToolBar->addAction(moveFractalDown);
To copy to clipboard, switch view to plain text mode 

This works well. The actions-icons are shown in the toolbar. But now I create a menu like this:
Qt Code:
  1. fractalNavigationMenu = menuBar()->addMenu("Fractal &navigation");
  2. fractalNavigationMenu->addAction(moveFractalDown);
To copy to clipboard, switch view to plain text mode 

The menu entries are created and they are functional, but the icons are not shown.
What am I doing wrong?

greeting eumel1990