aboutsummaryrefslogtreecommitdiff
path: root/dw/imgbuf.hh
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-10-15 20:12:37 +0200
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-10-15 20:12:37 +0200
commit214f4d073de54ed1d7960210b41b1e9d0dc538da (patch)
treeb99cc28c4d023c2bb991ab301af7d4f89dacb5e3 /dw/imgbuf.hh
parent5d4f5b8d2c471ef679f4929836e889f4ee9982fa (diff)
remove "using namespace" statements from header files
"using namespace" in headers also affects all files that include the header which is unwanted and unexpected in most cases.
Diffstat (limited to 'dw/imgbuf.hh')
-rw-r--r--dw/imgbuf.hh4
1 files changed, 1 insertions, 3 deletions
diff --git a/dw/imgbuf.hh b/dw/imgbuf.hh
index 1e49db68..150bf165 100644
--- a/dw/imgbuf.hh
+++ b/dw/imgbuf.hh
@@ -8,8 +8,6 @@
namespace dw {
namespace core {
-using namespace lout;
-
/**
* \brief The platform independent interface for image buffers.
*
@@ -158,7 +156,7 @@ using namespace lout;
*
* \sa \ref dw-images-and-backgrounds
*/
-class Imgbuf: public object::Object, public lout::signal::ObservedObject
+class Imgbuf: public lout::object::Object, public lout::signal::ObservedObject
{
public:
enum Type { RGB, RGBA, GRAY, INDEXED, INDEXED_ALPHA };