[haiku-commits] r38124 - haiku/trunk/src/preferences/time

  • From: zooey@xxxxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sun, 15 Aug 2010 19:53:04 +0200 (CEST)

Author: zooey
Date: 2010-08-15 19:53:04 +0200 (Sun, 15 Aug 2010)
New Revision: 38124
Changeset: http://dev.haiku-os.org/changeset/38124

Modified:
   haiku/trunk/src/preferences/time/DateTimeEdit.h
Log:
* style adjustments - no functional change

Modified: haiku/trunk/src/preferences/time/DateTimeEdit.h
===================================================================
--- haiku/trunk/src/preferences/time/DateTimeEdit.h     2010-08-15 17:13:12 UTC 
(rev 38123)
+++ haiku/trunk/src/preferences/time/DateTimeEdit.h     2010-08-15 17:53:04 UTC 
(rev 38124)
@@ -14,7 +14,6 @@
 
 #include "SectionEdit.h"
 
-
 #include <DateTime.h>
 
 
@@ -47,44 +46,45 @@
                        int32                           _SectionValue(int32 
index) const;
 
 private:
-                       BDateTime               fTime;
-                       bigtime_t               fLastKeyDownTime;
-                       int32                   fLastKeyDownInt;
+                       BDateTime                       fTime;
+                       bigtime_t                       fLastKeyDownTime;
+                       int32                           fLastKeyDownInt;
 };
 
 
 class TDateEdit : public TSectionEdit {
-       public:
-                                               TDateEdit(BRect frame, const 
char *name,
-                                                       uint32 sections);
-               virtual                 ~TDateEdit();
-               virtual void    KeyDown(const char* bytes, int32 numBytes);
+public:
+                                                               TDateEdit(BRect 
frame, const char* name,
+                                                                       uint32 
sections);
+       virtual                                         ~TDateEdit();
+       virtual void                            KeyDown(const char* bytes, 
int32 numBytes);
 
-               virtual void    InitView();
-               virtual void    DrawSection(uint32 index, bool isfocus);
-               virtual void    DrawSeparator(uint32 index);
+       virtual void                            InitView();
+       virtual void                            DrawSection(uint32 index, bool 
isfocus);
+       virtual void                            DrawSeparator(uint32 index);
 
-               virtual void    SetSections(BRect area);
-               virtual void    SectionFocus(uint32 index);
-               virtual float   SeparatorWidth() const;
+       virtual void                            SetSections(BRect area);
+       virtual void                            SectionFocus(uint32 index);
+       virtual float                           SeparatorWidth() const;
 
-               virtual void    DoUpPress();
-               virtual void    DoDownPress();
+       virtual void                            DoUpPress();
+       virtual void                            DoDownPress();
 
-               virtual void    BuildDispatch(BMessage *message);
+       virtual void                            BuildDispatch(BMessage* 
message);
 
-               void                    SetDate(int32 year, int32 month, int32 
day);
+                       void                            SetDate(int32 year, 
int32 month, int32 day);
 
-       private:
-               void                    _CheckRange();
-               bool                    _IsValidDoubleDigi(int32 value);
-               int32                   _SectionValue(int32 index) const;
+private:
+                       void                            _CheckRange();
+                       bool                            
_IsValidDoubleDigi(int32 value);
+                       int32                           _SectionValue(int32 
index) const;
 
-       private:
-               BDate                   fDate;
-               bigtime_t               fLastKeyDownTime;
-               int32                   fLastKeyDownInt;
+private:
+                       BDate                           fDate;
+                       bigtime_t                       fLastKeyDownTime;
+                       int32                           fLastKeyDownInt;
 };
 
+
 #endif // _DATE_TIME_EDIT_H
 


Other related posts:

  • » [haiku-commits] r38124 - haiku/trunk/src/preferences/time - zooey