Pārlūkot izejas kodu

* fields after objects methods.

git-svn-id: trunk@13340 -
marco 16 gadi atpakaļ
vecāks
revīzija
10c67a4ad5
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      ide/fpdebug.pas

+ 2 - 2
ide/fpdebug.pas

@@ -201,6 +201,8 @@ type
 
 
     PWatch = ^TWatch;
     PWatch = ^TWatch;
     TWatch =  Object(TObject)
     TWatch =  Object(TObject)
+      expr : pstring;
+      last_value,current_value : pchar;
       constructor Init(s : string);
       constructor Init(s : string);
       constructor Load(var S: TStream);
       constructor Load(var S: TStream);
       procedure   Store(var S: TStream);
       procedure   Store(var S: TStream);
@@ -208,8 +210,6 @@ type
       procedure Get_new_value;
       procedure Get_new_value;
       procedure Force_new_value;
       procedure Force_new_value;
       destructor done;virtual;
       destructor done;virtual;
-      expr : pstring;
-      last_value,current_value : pchar;
     private
     private
       GDBRunCount : longint;
       GDBRunCount : longint;
     end;
     end;