Index: weather.cpp
===================================================================
RCS file: /var/lib/mythcvs/mythweather/mythweather/weather.cpp,v
retrieving revision 1.46
diff -u -d -r1.46 weather.cpp
--- weather.cpp	6 Nov 2004 15:15:19 -0000	1.46
+++ weather.cpp	28 Dec 2004 14:52:48 -0000
@@ -2326,7 +2326,7 @@
             if (wt[i].toInt() == wData[j].typeNum)
             {
                 wt[i] = tr(wData[j].typeName);
-                weatherIcon[i] = wData[j].typeIcon;
+                weatherIcon[i] = "weather/" + wData[j].typeIcon;
                 isSet = true;
                 j = 128;
             }
@@ -2335,7 +2335,7 @@
         if (isSet == false)
         {
             wt[i] = tr("Unknown") + " [" + wt[i] + "]";
-            weatherIcon[i] = "unknown.png";
+            weatherIcon[i] = "weather/unknown.png";
         }
     }
 }
@@ -2360,7 +2360,7 @@
         }
     }
     
-    curIcon = "unknown.png";
+    curIcon = "weather/unknown.png";
 }
 
 QString Weather::GetString(QString tag)
