Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/10/10 18:15:09 (14 years ago)
Author:
gkronber
Message:

Cleaned up unnecessary .resx files in plugin infrastructure. #989

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/InstallationManagerForm.cs

    r3627 r3752  
    3737    private string pluginDir;
    3838
    39     public InstallationManagerForm(PluginManager pluginManager) {
     39    public InstallationManagerForm(PluginManager pluginManager) : base() {
    4040      InitializeComponent();
    4141      FileVersionInfo pluginInfrastructureVersion = FileVersionInfo.GetVersionInfo(GetType().Assembly.Location);
     
    143143    #region button events
    144144    private void connectionSettingsToolStripMenuItem_Click(object sender, EventArgs e) {
    145       new ConnectionSetupView().ShowDialog();
     145      new ConnectionSetupView().ShowDialog(this);
    146146    }
    147147    private void tabControl_SelectedIndexChanged(object sender, EventArgs e) {
     
    158158        }
    159159      }
    160       return (new ConfirmationDialog("Confirm Delete", "Do you want to delete following files?", strBuilder.ToString())).ShowDialog() == DialogResult.OK;
     160      return (new ConfirmationDialog("Confirm Delete", "Do you want to delete following files?", strBuilder.ToString())).ShowDialog(this) == DialogResult.OK;
    161161    }
    162162
     
    166166        strBuilder.AppendLine(plugin.ToString());
    167167      }
    168       return (new ConfirmationDialog("Confirm Update", "Do you want to update following plugins?", strBuilder.ToString())).ShowDialog() == DialogResult.OK;
     168      return (new ConfirmationDialog("Confirm Update", "Do you want to update following plugins?", strBuilder.ToString())).ShowDialog(this) == DialogResult.OK;
    169169    }
    170170
     
    173173        if (!string.IsNullOrEmpty(plugin.LicenseText)) {
    174174          var licenseConfirmationBox = new LicenseConfirmationDialog(plugin);
    175           if (licenseConfirmationBox.ShowDialog() != DialogResult.OK)
     175          if (licenseConfirmationBox.ShowDialog(this) != DialogResult.OK)
    176176            return false;
    177177        }
Note: See TracChangeset for help on using the changeset viewer.