src/hbservers/hbthemeserver/hbdoublelinkedlist_p.h
branchGCC_SURGE
changeset 15 f378acbc9cfb
parent 3 11d3954df52a
--- a/src/hbservers/hbthemeserver/hbdoublelinkedlist_p.h	Thu Jul 15 14:03:49 2010 +0100
+++ b/src/hbservers/hbthemeserver/hbdoublelinkedlist_p.h	Thu Jul 22 16:36:53 2010 +0100
@@ -45,9 +45,9 @@
 
     inline HbDLink();
 
-    inline ElemType* next() const;
+    inline ElemType *next() const;
 
-    inline ElemType* prev() const;
+    inline ElemType *prev() const;
 
     inline void setNext(ElemType *element);
 
@@ -55,8 +55,8 @@
 
 private:
 
-    ElemType* mNext;
-    ElemType* mPrev;
+    ElemType *mNext;
+    ElemType *mPrev;
 
 };
 
@@ -85,7 +85,6 @@
 class HbDLinkList
 {
 public:
-
     inline explicit HbDLinkList(HbDLink<ElemType> ElemType:: *dLink);
     inline ~HbDLinkList();
     inline void insertBack(ElemType *item);
@@ -101,11 +100,9 @@
     inline void insertAfter(ElemType *newItem, ElemType *lastItem);
 
 private:
-
     ElemType *listFront;
     ElemType *listBack;
-    HbDLink<ElemType>  ElemType:: *mDLink;
-
+    HbDLink<ElemType> ElemType:: *mDLink;
 };
 
 #include "hbdoublelinkedlistinline_p.h"