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/alignedtextblock.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/alignedtextblock.cc')
-rw-r--r-- | dw/alignedtextblock.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dw/alignedtextblock.cc b/dw/alignedtextblock.cc index ec39e2f0..dde408b2 100644 --- a/dw/alignedtextblock.cc +++ b/dw/alignedtextblock.cc @@ -26,8 +26,8 @@ namespace dw { AlignedTextblock::List::List () { - textblocks = new misc::SimpleVector <AlignedTextblock*> (4); - values = new misc::SimpleVector <int> (4); + textblocks = new lout::misc::SimpleVector <AlignedTextblock*> (4); + values = new lout::misc::SimpleVector <int> (4); maxValue = 0; refCount = 0; } |