Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 17:19:35 (7 years ago)
Author:
gkronber
Message:

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

Location:
branches/PersistenceReintegration/HeuristicLab.Clients.Access.Views/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.Clients.Access.Views/3.3/ClientViews/ClientRegistrationDialog.cs

    r14185 r14927  
    3434        using (Stream stream = Assembly.GetExecutingAssembly().GetManifestResourceStream(typeof(ClientRegistrationDialog), "Documents.ClientRegistrationInfo.rtf"))
    3535          richTextBox1.LoadFile(stream, RichTextBoxStreamType.RichText);
    36       }
    37       catch (Exception) { }
     36      } catch (Exception) { }
    3837    }
    3938
  • branches/PersistenceReintegration/HeuristicLab.Clients.Access.Views/3.3/UserViews/ChangePasswordDialog.cs

    r14185 r14927  
    9191
    9292    public void ExecuteActionAsync(Action action) {
    93       var call = new Func<Exception>(delegate() {
     93      var call = new Func<Exception>(delegate () {
    9494        try {
    9595          action();
    96         }
    97         catch (Exception ex) {
     96        } catch (Exception ex) {
    9897          return ex;
    99         }
    100         finally {
     98        } finally {
    10199          HideProgressBar();
    102100        }
    103101        return null;
    104102      });
    105       call.BeginInvoke(delegate(IAsyncResult result) {
     103      call.BeginInvoke(delegate (IAsyncResult result) {
    106104        Exception ex = call.EndInvoke(result);
    107105        if (ex != null) PluginInfrastructure.ErrorHandling.ShowErrorDialog(ex);
Note: See TracChangeset for help on using the changeset viewer.