-rw-r--r-- | libopie2/opiecore/oresource.cpp | 5 | ||||
-rw-r--r-- | libopie2/opiecore/oresource.h | 11 |
2 files changed, 16 insertions, 0 deletions
diff --git a/libopie2/opiecore/oresource.cpp b/libopie2/opiecore/oresource.cpp index 7253d56..95cf8f3 100644 --- a/libopie2/opiecore/oresource.cpp +++ b/libopie2/opiecore/oresource.cpp | |||
@@ -82,2 +82,7 @@ QPixmap OResource::loadPixmap( const QString &name, Scale scale ) | |||
82 | 82 | ||
83 | QString OResource::findPixmap( const QString &name ) | ||
84 | { | ||
85 | return Resource::findPixmap( name ); | ||
86 | } | ||
87 | |||
83 | } // namespace Core | 88 | } // namespace Core |
diff --git a/libopie2/opiecore/oresource.h b/libopie2/opiecore/oresource.h index 87b2abd..2071b87 100644 --- a/libopie2/opiecore/oresource.h +++ b/libopie2/opiecore/oresource.h | |||
@@ -84,2 +84,13 @@ class OResource | |||
84 | static QPixmap loadPixmap( const QString &name, Scale scale = NoScale ); | 84 | static QPixmap loadPixmap( const QString &name, Scale scale = NoScale ); |
85 | |||
86 | /** | ||
87 | * @fn findPixmap( const QString &name ) | ||
88 | * @brief Retrieve fully qualified filename of image. | ||
89 | * | ||
90 | * @param name - name of pixmap image to retrieve filename of | ||
91 | * | ||
92 | * @return QString containing fully qualified filename of image | ||
93 | * (Null string if image is not found) | ||
94 | **/ | ||
95 | static QString findPixmap( const QString &name ); | ||
85 | }; | 96 | }; |