aboutsummaryrefslogtreecommitdiff
path: root/dw/layout.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/layout.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/layout.hh')
-rw-r--r--dw/layout.hh10
1 files changed, 5 insertions, 5 deletions
diff --git a/dw/layout.hh b/dw/layout.hh
index bd7e191d..36a5f17b 100644
--- a/dw/layout.hh
+++ b/dw/layout.hh
@@ -13,7 +13,7 @@ namespace core {
*
* \sa\ref dw-overview, \ref dw-layout-widgets, \ref dw-layout-views
*/
-class Layout: public object::Object
+class Layout: public lout::object::Object
{
friend class Widget;
@@ -47,7 +47,7 @@ private:
Emitter emitter;
- class Anchor: public object::Object
+ class Anchor: public lout::object::Object
{
public:
char *name;
@@ -58,7 +58,7 @@ private:
};
Platform *platform;
- container::typed::List <View> *views;
+ lout::container::typed::List <View> *views;
Widget *topLevel, *widgetAtPoint;
/* The state, which must be projected into the views. */
@@ -80,7 +80,7 @@ private:
bool scrollIdleNotInterrupted;
/* Anchors of the widget tree */
- container::typed::HashTable <object::String, Anchor> *anchorsTable;
+ lout::container::typed::HashTable <lout::object::String, Anchor> *anchorsTable;
SelectionState selectionState;
FindtextState findtextState;
@@ -141,7 +141,7 @@ public:
Layout (Platform *platform);
~Layout ();
- misc::ZoneAllocator *textZone;
+ lout::misc::ZoneAllocator *textZone;
void addWidget (Widget *widget);
void setWidget (Widget *widget);