Browse Source

--- Merging r14037 into '.':
U ide/test.pas
--- Merging r14038 into '.':
U ide/fpide.pas

# revisions: 14037,14038
------------------------------------------------------------------------
r14037 | pierre | 2009-11-04 10:25:28 +0100 (Wed, 04 Nov 2009) | 1 line
Changed paths:
M /trunk/ide/test.pas

* fix compilation failure of test.pas
------------------------------------------------------------------------
------------------------------------------------------------------------
r14038 | pierre | 2009-11-04 10:26:07 +0100 (Wed, 04 Nov 2009) | 1 line
Changed paths:
M /trunk/ide/fpide.pas

* add missing remote dialog labels
------------------------------------------------------------------------

git-svn-id: branches/fixes_2_4@14677 -

marco 15 years ago
parent
commit
eea9c6622f
2 changed files with 13 additions and 2 deletions
  1. 11 0
      ide/fpide.pas
  2. 2 2
      ide/test.pas

+ 11 - 0
ide/fpide.pas

@@ -565,6 +565,17 @@ resourcestring  menu_local_gotosource = '~G~oto source';
                 label_debugger_redirection = 'Debuggee ~R~edirection';
                 label_debugger_useanothertty = '~U~se Another tty for Debuggee';
 
+                { Remote options dialog }
+                dialog_remote = 'Remote setup';
+                label_remote_machine = 'Remote machine ~n~ame';
+                label_remote_port = 'Remote ~p~ort number';
+                label_remote_dir = 'Remote ~d~irectory';
+                label_remote_config = 'Remote config ~o~ptions';
+                label_remote_ident = 'Remote ~i~dent';
+                label_remote_command = 'Remote ~c~ommand';
+                label_remote_scp = 'Scp executable';
+                label_remote_ssh = 'Ssh executable';
+
                 {Directories dialog.}
                 dialog_directories = 'Directories';
 

+ 2 - 2
ide/test.pas

@@ -45,13 +45,13 @@ type
       end;
 
       TClass = class
-        constructor Create;
         name : string;
+        constructor Create;
       end;
 
       TClass2 = class(TClass)
-        constructor Create;
         X : longint;
+        constructor Create;
       end;
 
       EnumTyp = (enum1,enum2,enum3);