summaryrefslogtreecommitdiff
path: root/libopie2/opieui
authormickeyl <mickeyl>2004-04-06 10:00:32 (UTC)
committer mickeyl <mickeyl>2004-04-06 10:00:32 (UTC)
commit2a4ec8132bea9c4c8308038d555755eabc1eee46 (patch) (side-by-side diff)
tree88f378ee59a2a701c86657752eb1b94f24b329e4 /libopie2/opieui
parentdde22f9a9bfcb4c6bcb6c7c6d07fdabb16b399cc (diff)
downloadopie-2a4ec8132bea9c4c8308038d555755eabc1eee46.zip
opie-2a4ec8132bea9c4c8308038d555755eabc1eee46.tar.gz
opie-2a4ec8132bea9c4c8308038d555755eabc1eee46.tar.bz2
s/;;/;
Diffstat (limited to 'libopie2/opieui') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opieui/oresource.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie2/opieui/oresource.cpp b/libopie2/opieui/oresource.cpp
index 03b9d51..9559210 100644
--- a/libopie2/opieui/oresource.cpp
+++ b/libopie2/opieui/oresource.cpp
@@ -24,35 +24,35 @@
  -_. . .   )=.  = Library General Public License along with
    --        :-=` this library; see the file COPYING.LIB.
If not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#include <opie2/oapplication.h>
#include <opie2/odebug.h>
#include "oresource.h"
#ifdef QWS
namespace Resource
{
QPixmap loadPixmap( const QString& pix )
{
QString filename;
filename.sprintf( "%s/%s.png", (const char*) oApp->qpeDir(), (const char*) pix );
QPixmap pixmap( filename );
if ( pixmap.isNull() )
{
- odebug << "libopie2 resource: can't find pixmap " << filename << oendl;;
+ odebug << "libopie2 resource: can't find pixmap " << filename << oendl;
}
return pixmap;
};
};
#endif