[gnome-commander] History: make pos member private



commit af8d3097b21e628eb8334a5be75e35360979e000
Author: Piotr Eljasiak <epiotr src gnome org>
Date:   Fri Jun 10 19:26:28 2011 +0200

    History: make pos member private

 src/history.h |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/src/history.h b/src/history.h
index f59be04..7452bd3 100644
--- a/src/history.h
+++ b/src/history.h
@@ -26,12 +26,13 @@ class History
     gint max;
     gboolean is_locked;
 
+    GList *pos;
+
   public:
 
     GList *ents;
-    GList *pos;
 
-    History(gint max): is_locked(FALSE), ents(NULL), pos(NULL)       {  this->max = max;  }
+    History(gint max): is_locked(FALSE), pos(NULL), ents(NULL)       {  this->max = max;  }
     ~History();
 
     History &operator = (GList *list);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]