Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/19/19 16:52:37 (5 years ago)
Author:
dpiringe
Message:

#2924: separated PasswordDialog from HeuristicLab.Clients.Common into new Project called HeuristicLab.PasswordDialog and migrated HeuristicLab.Clients.Common to .NET Standard

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2924_DotNetCoreMigration/HeuristicLab.Optimizer/3.3/MenuItems/UsernamePasswordMenuItem.cs

    r15973 r16857  
    2222using System.Collections.Generic;
    2323using System.Windows.Forms;
    24 using HeuristicLab.Clients.Common;
     24using HeuristicLab.PasswordDialog;
    2525using HeuristicLab.MainForm;
    2626
     
    4141
    4242    public override void Execute() {
    43       using (PasswordDialog dialog = new PasswordDialog()) {
     43      using (PasswordDialog.PasswordDialog dialog = new PasswordDialog.PasswordDialog()) {
    4444        dialog.ShowDialog((IWin32Window)MainFormManager.MainForm);
    4545      }
Note: See TracChangeset for help on using the changeset viewer.