diff -r 9986ec0e559a -r 10516539f238 UI/PixmapCache.py --- a/UI/PixmapCache.py Tue Oct 15 22:03:54 2013 +0200 +++ b/UI/PixmapCache.py Fri Oct 18 23:00:41 2013 +0200 @@ -66,6 +66,7 @@ Module function to retrieve a pixmap. @param key name of the wanted pixmap (string) + @param cache reference to the pixmap cache object (PixmapCache) @return the requested pixmap (QPixmap) """ return cache.getPixmap(key) @@ -76,6 +77,7 @@ Module function to retrieve an icon. @param key name of the wanted icon (string) + @param cache reference to the pixmap cache object (PixmapCache) @return the requested icon (QIcon) """ return QIcon(cache.getPixmap(key)) @@ -86,6 +88,7 @@ Module function to retrieve a symbolic link icon. @param key name of the wanted icon (string) + @param cache reference to the pixmap cache object (PixmapCache) @return the requested icon (QIcon) """ pix1 = QPixmap(cache.getPixmap(key)) @@ -101,5 +104,6 @@ Module function to add a path to the search path. @param path path to add (string) + @param cache reference to the pixmap cache object (PixmapCache) """ cache.addSearchPath(path)