Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/18/12 16:47:59 (12 years ago)
Author:
ascheibe
Message:

#1648 some cleanups in preparation for the access service trunk integration

Location:
branches/ClientUserManagement/HeuristicLab.Clients.Access.Views/3.3
Files:
2 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • branches/ClientUserManagement/HeuristicLab.Clients.Access.Views/3.3/HeuristicLab.Clients.Access.Views-3.3.csproj

    r7611 r8039  
    106106  </ItemGroup>
    107107  <ItemGroup>
    108     <Compile Include="ClientViews\AdminClientView.cs">
    109       <SubType>UserControl</SubType>
    110     </Compile>
    111     <Compile Include="ClientViews\AdminClientView.Designer.cs">
    112       <DependentUpon>AdminClientView.cs</DependentUpon>
    113     </Compile>
    114108    <Compile Include="ClientViews\ClientInformationDialog.cs">
    115109      <SubType>Form</SubType>
  • branches/ClientUserManagement/HeuristicLab.Clients.Access.Views/3.3/UserViews/LightweightUserGroupSelectionView.cs

    r7555 r8039  
    6262
    6363    void Instance_Refreshed(object sender, EventArgs e) {
    64       //TODO: show loading bar
    6564      if (AccessClient.Instance.UsersAndGroups != null)
    6665        this.itemsListView.Enabled = true;
  • branches/ClientUserManagement/HeuristicLab.Clients.Access.Views/3.3/UserViews/RefreshableLightweightUserInformationView.cs

    r7982 r8039  
    2424
    2525namespace HeuristicLab.Clients.Access.Views {
    26 
    2726  public partial class RefreshableLightweightUserInformationView : RefreshableView {
    2827    public RefreshableLightweightUserInformationView() {
     
    6059        lightweightUserInformationView.Enabled = true;
    6160        if (!UserInformation.Instance.UserExists) {
    62           MessageBox.Show("Couldn't fetch user information from the server." + Environment.NewLine + "Please verify that you have an existing user and that your user name and password is correct. ", "HeuristicLab Access Service", MessageBoxButtons.OK, MessageBoxIcon.Error);
     61          MessageBox.Show("Couldn't fetch user information from the server." + Environment.NewLine +
     62            "Please verify that you have an existing user and that your user name and password is correct. ", "HeuristicLab Access Service", MessageBoxButtons.OK, MessageBoxIcon.Error);
    6363          lightweightUserInformationView.Content = null;
    6464        } else {
Note: See TracChangeset for help on using the changeset viewer.