UI/PixmapCache.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2525
8b507a9a2d40
parent 2965
d133c7edd88a
child 3145
a9de05d4a22f
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)

eric ide

mercurial