Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/25/15 10:30:06 (9 years ago)
Author:
mkommend
Message:

#2025: Changed categories for all creatables.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Scripting/3.3/Scripts/CSharp/CSharpScript.cs

    r12012 r12504  
    3030namespace HeuristicLab.Scripting {
    3131  [Item("C# Script", "An empty C# script.")]
    32   [Creatable("Scripts")]
     32  [Creatable(CreatableAttribute.Categories.Scripts, Priority = 100)]
    3333  [StorableClass]
    3434  public class CSharpScript : Script, IStorableContent {
     
    102102          OnScriptExecutionStarted();
    103103          compiledScript.Execute(VariableStore);
    104         } catch (Exception e) {
     104        }
     105        catch (Exception e) {
    105106          ex = e;
    106         } finally {
     107        }
     108        finally {
    107109          scriptThread = null;
    108110          OnScriptExecutionFinished(ex);
Note: See TracChangeset for help on using the changeset viewer.