Anyone using QT3 designer from the Ubuntu &quot;Jaunty Jackalope&quot; repository (&quot;help about&quot; says V 3.3.8b).<br><br>I&#39;m workin&#39; through the tutorials (storing up QT-fu for a personal
project), and I&#39;ve found that the &quot;colorpicker&quot; example doesn&#39;t load toolbar images, even though they show up
fine in the designer itself. The stdout for the program run in terminal mode shows:<br><br>QPixmap::fromMimeSource: Cannot find pixmap &quot;filenew&quot; in the mime source factory<br>QPixmap::fromMimeSource: Cannot find pixmap &quot;fileopen&quot; in the mime source factory<br>
QPixmap::fromMimeSource: Cannot find pixmap &quot;filesave&quot; in the mime source factory<br>QPixmap::fromMimeSource: Cannot find pixmap &quot;editcut&quot; in the mime source factory<br>QPixmap::fromMimeSource: Cannot find pixmap &quot;editcopy&quot; in the mime source factory<br>
QPixmap::fromMimeSource: Cannot find pixmap &quot;editpaste&quot; in the mime source factory<br>QPixmap::fromMimeSource: Cannot find pixmap &quot;searchfind&quot; in the mime source factory<br>QPixmap::fromMimeSource: Cannot find pixmap &quot;tabwidget.png&quot; in the mime source factory<br>
QPixmap::fromMimeSource: Cannot find pixmap &quot;kdeprint_nup1.png&quot; in the mime source factory<br>QPixmap::fromMimeSource: Cannot find pixmap &quot;kdeprint_nup4.png&quot; in the mime source factory<br>QPixmap::fromMimeSource: Cannot find pixmap &quot;k3iconview.png&quot; in the mime source factory<br>
<br>The solution is to add the following lines to the &quot;main.cpp&quot; file, before it instantiates your &quot;colorpicker&quot; object:<br><br>  QMimeSourceFactory *myFactory=QMimeSourceFactory::defaultFactory();<br>
  myFactory-&gt;setFilePath(&quot;images&quot;);<br><br>This will set the file path properly so that the automagically created QMimeSourceFactory environment object will find the pixmaps it&#39;s looking for.  I suppose you could put them in your current directory as well, but that seems like a Sin. You can&#39;t put these lines into your &quot;colorpicker::init()&quot; function because init() gets run at the end of the automatically generated code in the instantiation function, after the actions have already (theoretically) received their icons. <br>
<br>Google is silent on this matter, so I&#39;m leaving a breadcrumb here for future users.<br><br><br>-- CHS<br><br>