-rw-r--r-- | libopie2/opiecore/oresource.cpp | 3 | ||||
-rw-r--r-- | libopie2/opiecore/oresource.h | 10 |
2 files changed, 7 insertions, 6 deletions
diff --git a/libopie2/opiecore/oresource.cpp b/libopie2/opiecore/oresource.cpp index 88058d0..0d6e60a 100644 --- a/libopie2/opiecore/oresource.cpp +++ b/libopie2/opiecore/oresource.cpp | |||
@@ -39,6 +39,9 @@ | |||
39 | namespace Opie { | 39 | namespace Opie { |
40 | namespace Core { | 40 | namespace Core { |
41 | 41 | ||
42 | static int smallIconSize = -1; // Size of small icons (width & height) | ||
43 | static int bigIconSize = -1; // Size of large icons (width & height) | ||
44 | |||
42 | QImage OResource::loadImage( const QString &name, Scale scale ) | 45 | QImage OResource::loadImage( const QString &name, Scale scale ) |
43 | { | 46 | { |
44 | // Load image | 47 | // Load image |
diff --git a/libopie2/opiecore/oresource.h b/libopie2/opiecore/oresource.h index 8c67ced..87b2abd 100644 --- a/libopie2/opiecore/oresource.h +++ b/libopie2/opiecore/oresource.h | |||
@@ -39,10 +39,6 @@ | |||
39 | namespace Opie { | 39 | namespace Opie { |
40 | namespace Core { | 40 | namespace Core { |
41 | 41 | ||
42 | static int smallIconSize = -1; // Size of small icons (width & height) | ||
43 | static int bigIconSize = -1; // Size of large icons (width & height) | ||
44 | |||
45 | |||
46 | class OResource | 42 | class OResource |
47 | { | 43 | { |
48 | public: | 44 | public: |
@@ -66,7 +62,8 @@ class OResource | |||
66 | OResource() {} | 62 | OResource() {} |
67 | 63 | ||
68 | /** | 64 | /** |
69 | * Load specified image. | 65 | * @fn loadImage( const QString &name, Scale scale = NoScale ) |
66 | * @brief Load specified image. | ||
70 | * | 67 | * |
71 | * @param name - name of pixmap image to load | 68 | * @param name - name of pixmap image to load |
72 | * @param scale - scaling (if any) to preform on image | 69 | * @param scale - scaling (if any) to preform on image |
@@ -76,7 +73,8 @@ class OResource | |||
76 | static QImage loadImage( const QString &name, Scale scale = NoScale ); | 73 | static QImage loadImage( const QString &name, Scale scale = NoScale ); |
77 | 74 | ||
78 | /** | 75 | /** |
79 | * Load specified image. | 76 | * @fn loadPixmap( const QString &name, Scale scale = NoScale ) |
77 | * @brief Load specified image. | ||
80 | * | 78 | * |
81 | * @param name - name of pixmap image to load | 79 | * @param name - name of pixmap image to load |
82 | * @param scale - scaling (if any) to preform on image | 80 | * @param scale - scaling (if any) to preform on image |