- Timestamp:
- 01/05/11 08:30:51 (14 years ago)
- Location:
- trunk/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.CodeEditor/3.3/CodeEditor.cs
r4068 r5218 245 245 foreach (CompilerError error in compilerErrors) { 246 246 if (!error.FileName.EndsWith(filename)) { 247 errorLabel.Text = " error in generated code";247 errorLabel.Text = "Error in generated code"; 248 248 errorLabel.ToolTipText = string.Format("{0}{1}:{2} -> {3}", 249 249 errorLabel.ToolTipText != null ? (errorLabel.ToolTipText + "\n\n") : "", -
trunk/sources/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperatorView.Designer.cs
r5042 r5218 201 201 this.compileButton.TabIndex = 1; 202 202 this.compileButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; 203 this.toolTip.SetToolTip(this.compileButton, "Compile ");203 this.toolTip.SetToolTip(this.compileButton, "Compile (F6)"); 204 204 this.compileButton.UseVisualStyleBackColor = true; 205 205 this.compileButton.Click += new System.EventHandler(this.compileButton_Click); … … 279 279 this.compilationLabel.Size = new System.Drawing.Size(67, 13); 280 280 this.compilationLabel.TabIndex = 3; 281 this.compilationLabel.Text = " not compiled";281 this.compilationLabel.Text = "Not compiled"; 282 282 // 283 283 // ProgrammableOperatorView -
trunk/sources/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperatorView.cs
r5214 r5218 104 104 if (ProgrammableOperator.CompileErrors == null) { 105 105 compilationLabel.ForeColor = SystemColors.ControlDarkDark; 106 compilationLabel.Text = " not compiled";106 compilationLabel.Text = "Not compiled"; 107 107 } else if (ProgrammableOperator.CompileErrors.HasErrors) { 108 108 compilationLabel.ForeColor = Color.DarkRed; 109 compilationLabel.Text = " compilation failed";109 compilationLabel.Text = "Compilation failed"; 110 110 } else { 111 111 compilationLabel.ForeColor = Color.DarkGreen; 112 compilationLabel.Text = " compilation successful";112 compilationLabel.Text = "Compilation successful"; 113 113 } 114 114
Note: See TracChangeset
for help on using the changeset viewer.