summaryrefslogtreecommitdiff
path: root/libopie2
authormickeyl <mickeyl>2004-04-04 17:02:15 (UTC)
committer mickeyl <mickeyl>2004-04-04 17:02:15 (UTC)
commit100def2936503dedc8138d738d68b69d5de66766 (patch) (side-by-side diff)
tree5d35c8a0a5b10941cc17bb44df10dd851b81d06c /libopie2
parentfd9146de7698a796659b68606429da490f817138 (diff)
downloadopie-100def2936503dedc8138d738d68b69d5de66766.zip
opie-100def2936503dedc8138d738d68b69d5de66766.tar.gz
opie-100def2936503dedc8138d738d68b69d5de66766.tar.bz2
fix #defines, so that you never have to say
Opie::Core::odebug << "bla", but just odebug << "bla". (I fear otherwise people wouldn't want to use it ;)
Diffstat (limited to 'libopie2') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/odebug.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libopie2/opiecore/odebug.h b/libopie2/opiecore/odebug.h
index a5c9ded..b040166 100644
--- a/libopie2/opiecore/odebug.h
+++ b/libopie2/opiecore/odebug.h
@@ -61,10 +61,10 @@ class ondbgstream;
#define o_lineinfo "[" << __FILE__ << ":" << __LINE__ << "] "
-#define owarn odWarning()
-#define oerr odError()
-#define odebug odDebug()
-#define ofatal odFatal()
+#define owarn Opie::Core::odWarning()
+#define oerr Opie::Core::odError()
+#define odebug Opie::Core::odDebug()
+#define ofatal Opie::Core::odFatal()
#define oendl "\n"
class odbgstreamprivate;