author | drw <drw> | 2005-04-05 22:34:33 (UTC) |
---|---|---|
committer | drw <drw> | 2005-04-05 22:34:33 (UTC) |
commit | 327e938f58125a52482b9a6543dd1aa4243bb5d3 (patch) (side-by-side diff) | |
tree | c17fa46fe9c37c08f37cfdb9d3eaea6560161c2d | |
parent | b9730df31f0941857a4f2cbe3507231e49897f09 (diff) | |
download | opie-327e938f58125a52482b9a6543dd1aa4243bb5d3.zip opie-327e938f58125a52482b9a6543dd1aa4243bb5d3.tar.gz opie-327e938f58125a52482b9a6543dd1aa4243bb5d3.tar.bz2 |
Eliminate compiler warnings and doc updates
-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 @@ -36,12 +36,15 @@ #include "oresource.h" namespace Opie { namespace Core { +static int smallIconSize = -1; // Size of small icons (width & height) +static int bigIconSize = -1; // Size of large icons (width & height) + QImage OResource::loadImage( const QString &name, Scale scale ) { // Load image QString filename; filename.sprintf( "%spics/%s.png", (const char*) oApp->qpeDir(), (const char*) name ); QImage image( filename ); 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 @@ -36,16 +36,12 @@ #include <qimage.h> #include <qpixmap.h> namespace Opie { namespace Core { -static int smallIconSize = -1; // Size of small icons (width & height) -static int bigIconSize = -1; // Size of large icons (width & height) - - class OResource { public: /** * Image scaling options. * @@ -63,23 +59,25 @@ class OResource /** * Constructor */ OResource() {} /** - * Load specified image. + * @fn loadImage( const QString &name, Scale scale = NoScale ) + * @brief Load specified image. * * @param name - name of pixmap image to load * @param scale - scaling (if any) to preform on image * * @return QImage containing image loaded (and scaled if appropriate) **/ static QImage loadImage( const QString &name, Scale scale = NoScale ); /** - * Load specified image. + * @fn loadPixmap( const QString &name, Scale scale = NoScale ) + * @brief Load specified image. * * @param name - name of pixmap image to load * @param scale - scaling (if any) to preform on image * * @return QPixmap containing image loaded (and scaled if appropriate) **/ |