Abdelrazak Younes <[EMAIL PROTECTED]> writes:
> Either CMake does it right or maybe it is delegating that stuff to
> MSVC... in the first case, then you can maybe borrow some idea from it?
>
> Here is what's written in the "Command line" section of the project
> properties (in one line):
>
> /nologo /out:".\lyx-qt4.dir\Debug\lyx-qt4.exe.embed.manifest" /notify_update
It's good to see you guys are doing this embedding stuff, but it won't resolve
Uwe's problem that the daughter dialogs don't display the icon. Looking at the
sources, I think that qt4/GuiView.C needs only to set the icon of the global
QApplication here:
176 FileName const iconname = libFileSearch("images", "lyx", "xpm");
177 if (!iconname.empty())
178 setWindowIcon(QPixmap(toqstr(iconname.absFilename())));
Maybe I read the Qt documentation wrongly?
Regards,
Angus