-rw-r--r-- | libopie2/opieui/oresource.cpp | 2 |
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 |