summaryrefslogtreecommitdiff
path: root/noncore/styles/theme
Side-by-side diff
Diffstat (limited to 'noncore/styles/theme') (more/less context) (show whitespace changes)
-rw-r--r--noncore/styles/theme/othemebase.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/noncore/styles/theme/othemebase.h b/noncore/styles/theme/othemebase.h
index e691692..5519798 100644
--- a/noncore/styles/theme/othemebase.h
+++ b/noncore/styles/theme/othemebase.h
@@ -15,12 +15,17 @@
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#ifndef __OTHEMEBASE_H
#define __OTHEMEBASE_H
+/* OPIE */
+#include <opie2/odebug.h>
+using namespace Opie::Core;
+
+/* QT */
#include <qdatetime.h>
#include <qtimer.h>
#include <qwindowsstyle.h>
#include <qpixmap.h>
#include <qpe/config.h>
#include <qimage.h>
@@ -63,13 +68,13 @@ inline QPixmap* OThemePixmap::border( BorderType type )
return ( b[ type ] );
}
inline void OThemePixmap::setBorder( BorderType type, const QPixmap &p )
{
if ( b[ type ] ) {
- qWarning( "OThemePixmap: Overwriting existing border!" );
+ owarn << "OThemePixmap: Overwriting existing border!" << oendl;
delete( b[ type ] );
}
b[ type ] = new QPixmap( p );
}
inline void OThemePixmap::updateAccessed()