UI/PixmapCache.py

changeset 2965
d133c7edd88a
parent 2302
f29e9405c851
child 3057
10516539f238
child 3160
209a07d7e401
--- a/UI/PixmapCache.py	Sun Sep 29 15:54:10 2013 +0200
+++ b/UI/PixmapCache.py	Sun Sep 29 18:22:08 2013 +0200
@@ -64,6 +64,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)
@@ -74,6 +75,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))
@@ -84,6 +86,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))
@@ -99,5 +102,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