i made an app in the tray bar with an icon with qt, this is the way i make the icon;
trayIcon->setIcon(QIcon("favicon.ico"));
but it only show the icon on my pc, when i give the project to somebody else its just invisible. even if i do the next thing;
trayIcon->setIcon(QIcon(QDir::currentPath() + "/favicon.ico"));
does somebody know this problem? / how to solve it? THNX!!!