diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-10-15 20:12:37 +0200 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-10-15 20:12:37 +0200 |
commit | 214f4d073de54ed1d7960210b41b1e9d0dc538da (patch) | |
tree | b99cc28c4d023c2bb991ab301af7d4f89dacb5e3 /dw/fltkimgbuf.cc | |
parent | 5d4f5b8d2c471ef679f4929836e889f4ee9982fa (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/fltkimgbuf.cc')
-rw-r--r-- | dw/fltkimgbuf.cc | 6 |
1 files changed, 3 insertions, 3 deletions
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 <FltkImgbuf> (true); + scaledBuffers = new lout::container::typed::List <FltkImgbuf> (true); else scaledBuffers = NULL; |