I did the tutorial 2 of the designer, than tried to modify the resulting
code to do what I want.

I'm not sure which files I should try to modify, though... On some of
them it says "all changes made here will be lost" which doesn't sound
very promising.

So I tried to modify the configuration file mainform.ui .

<widget class="QMainWindow">
<property name="name">
<cstring>MainForm</cstring>
</property>
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>500</width>
<height>400</height>
</rect>
</property>
<property name="caption">
<string>Maze</string>
</property>

I added (copied from a configuration file which didn't compile but which
corresponding form previewed nicely):
<property name="icon">
<pixmap>seagull.png</pixmap>
</property>

I ran qmake and make again, but the icon didn't appear...



Mariane