From 214f4d073de54ed1d7960210b41b1e9d0dc538da Mon Sep 17 00:00:00 2001 From: Johannes Hofmann Date: Thu, 15 Oct 2009 20:12:37 +0200 Subject: 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. --- dw/fltkimgbuf.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dw/fltkimgbuf.cc') diff --git a/dw/fltkimgbuf.cc b/dw/fltkimgbuf.cc index 48339b51..6ba7ff1d 100644 --- a/dw/fltkimgbuf.cc +++ b/dw/fltkimgbuf.cc @@ -33,7 +33,7 @@ using namespace fltk; namespace dw { namespace fltk { -using namespace container::typed; +using namespace lout::container::typed; FltkImgbuf::FltkImgbuf (Type type, int width, int height) { @@ -67,11 +67,11 @@ void FltkImgbuf::init (Type type, int width, int height, FltkImgbuf *root) refCount = 1; deleteOnUnref = true; - copiedRows = new misc::BitSet (height); + copiedRows = new lout::misc::BitSet (height); // The list is only used for root buffers. if (isRoot()) - scaledBuffers = new container::typed::List (true); + scaledBuffers = new lout::container::typed::List (true); else scaledBuffers = NULL; -- cgit v1.2.3